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

20 lines
359 B
C

#include <lib.h>
inherit LIB_ITEM;
static void create() {
item::create();
SetKeyName("key");
SetId( ({ "key", "cavetroll key" }) );
SetAdjectives( ({ "metal" }) );
SetShort("a metal key");
SetLong("It is a key made of metal.");
SetMass(10);
SetBaseCost("silver",1);
SetDisableChance(100);
}
void init(){
::init();
}