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

19 lines
393 B
C

#include <lib.h>
#include <vendor_types.h>
inherit LIB_ITEM;
void create(){
::create();
SetKeyName("pull-pin");
SetId(({"pin","ring"}));
SetAdjectives(({"pull","grenade","fuse"}));
SetShort("a grenade pin");
SetLong("This is the pull pin from a hand grenade fuse.");
SetMass(1);
SetDollarCost(0);
SetVendorType(VT_TREASURE);
}
void init(){
::init();
}