/*    /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!");
}