mud/lib/domains/Praxis/obj/misc/bag.c
2020-09-06 05:43:07 -07:00

23 lines
501 B
C

/* /d/Praxis/obj/misc/bag.c
* from Nightmare IV
* a simple bag
* created by Descartes of Borg 940212
*/
#include <lib.h>
inherit LIB_STORAGE;
void create() {
::create();
SetKeyName("bag");
SetId( ({ "bag" }) );
SetAdjectives( ({ "small", "cloth", "a" }) );
SetShort("a small cloth bag");
SetLong("It is a simple cloth bag used to hold things.");
SetMass(274);
SetValue(50);
SetMaxCarry(500);
SetPreventPut("You cannot put this in there!");
}