mud/lib/obj/deed.c
2020-09-06 05:43:07 -07:00

19 lines
450 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);
SetBaseCost("silver",10);
SetVendorType(VT_TREASURE);
}
void init(){
::init();
}