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

15 lines
324 B
C

#include <lib.h>
inherit LIB_STORAGE;
void create() {
::create();
SetKeyName("box");
SetId( ({ "box" }) );
SetAdjectives( ({ "small", "plastic","green", "a" }) );
SetShort("a small plastic box");
SetLong("It is a simple plastic box used to hold things.");
SetMass(274);
SetMaxCarry(500);
}