// Petrarch
#include
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(10);
set_value(50);
set_max_encumbrance(75);
set_prevent_put("You cannot put this in there!");
set_material(({"cloth"}));
}