/* /d/Praxis/obj/misc/bag.c
* from Nightmare IV
* a simple bag
* created by Descartes of Borg 940212
*/
#include <std.h>
inherit STORAGE;
void create() {
::create();
set_name("bag");
set_id( ({ "bag" }) );
set_adjectives( ({ "small", "cloth", "a" }) );
set_short("a small cloth bag");
set_long("It is a simple cloth bag used to hold things.");
set_mass(274);
set_value(50);
set_max_encumbrance(500);
set_prevent_put("You cannot put this in there!");
}