// Autogenned file inherit CLOTHING_OBJ; void setup(){ set_name("satchel" ); set_short("small satchel" ); add_adjective(({ "small" }) ); set_main_plural("small satchels" ); set_long("This is a small satchel made of leather with a nice long " "strap so that it can be worn across the torso. It won't " "hold much, but could be handy for those small items you " "might need to get at in a hurry.\n" ); set_material("leather" ); set_weight(10 ); set_value(600 ); set_type("sash" ); setup_clothing(400 ); set_damage_chance(15 ); add_pocket("main", 40 ); add_pocket("side", 10); } /* setup() */