inherit CLOTHING_OBJ;
int group_object() { return 1; }
void setup() {
set_name("socks");
set_short("pair of white socks");
add_adjective( ({"pair", "of", "white"}) );
add_plural("socks");
set_long("This is a pair of droopy, white cotton socks with holes "
"in the toes.\n");
set_weight(3);
set_value(60);
set_type("sock");
setup_clothing(30);
set_damage_chance(20);
set_material("cotton");
} /* setup() */