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

20 lines
417 B
C

#include <lib.h>
inherit LIB_ITEM;
static void create() {
item::create();
SetKeyName("complex key");
SetId( ({ "key", "mansion safe key" }) );
SetAdjectives( ({ "complex", "complicated", "complicated looking" }) );
SetShort("a complex key");
SetLong("It is a complicated-looking key.");
SetMass(1);
SetBaseCost("silver",1);
SetDisableChance(100);
}
void init(){
::init();
}