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

20 lines
396 B
C

#include <lib.h>
inherit LIB_ITEM;
static void create() {
item::create();
SetKeyName("silver key");
SetId( ({ "key", "mansion key" }) );
SetAdjectives( ({ "brilliant", "silver" }) );
SetShort("a silver key");
SetLong("It is a brilliant silver key with no markings.");
SetMass(1);
SetBaseCost("silver",1);
SetDisableChance(5);
}
void init(){
::init();
}