mud/lib/domains/campus/obj/flashlight.c
2020-09-06 05:43:07 -07:00

15 lines
413 B
C

#include <lib.h>
#include <vendor_types.h>
inherit LIB_ITEM;
void create(){
::create();
SetKeyName("generic thing");
SetId( ({"thing","item","thang","dingus"}) );
SetAdjectives( ({"generic","sample","template"}) );
SetShort("a generic thing");
SetLong("This is an object of indeterminate nature and proportions.");
SetMass(20);
SetDollarCost(10);
SetVendorType(VT_TREASURE);
}