mud/lib/domains/Ylsrim/etc/chest.c
2020-09-06 05:43:07 -07:00

26 lines
683 B
C

/* /domains/Ylsrim/etc/chest.c
* from the Dead Souls Mud Library
* created by Descartes of Borg 951028
*/
#include <lib.h>
inherit LIB_STORAGE;
static void create() {
storage::create();
SetKeyName("chest");
SetId( ({ "chest" }) );
SetAdjectives( ({ "wooden" }) );
SetShort("a wooden chest");
SetLong("This chest is made from an ancient forest far from "
"Ylsrim. You can feel the age in touching it.");
SetMass(1200);
SetValue(300);
SetInventory( ([ DIR_STANDARD_DOMAIN "/etc/shovel" : -10,
DIR_STANDARD_DOMAIN "/etc/heal_scroll" : 1 ]) );
SetCanClose(1);
SetClosed(1);
SetMaxCarry(2000);
}