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

22 lines
427 B
C

#include <lib.h>
inherit LIB_STORAGE;
void create() {
::create();
SetKeyName("box");
SetId( ({ "box" }) );
SetAdjectives( ({ "wooden","wood" }) );
SetShort("a wooden box");
SetLong("It is a wooden box used to hold things.");
SetMass(274);
SetMaxCarry(500);
SetInventory( ([
"/domains/cave/meals/jerky" : random(100)+1,
]) );
}
void init(){
::init();
}