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

25 lines
508 B
C

/* /domains/Midian/etc/key.c
* from the Dead Souls Object Library
* created by Descartes of Borg 960512
*/
#include <lib.h>
inherit LIB_ITEM;
static void create() {
item::create();
SetKeyName("key");
SetId( ({ "key", "special_key_id" }) );
SetAdjectives( ({ "brilliant", "silver" }) );
SetShort("a silver key");
SetLong("It is a brilliant silver key with no markings.");
SetMass(50);
SetDollarCost(15);
SetDisableChance(90);
}
void init(){
::init();
}