/* The example armour.. */
inherit "/obj/armour";
void setup()
{
/* THIS HAS TO BE THE FIRST LINE !!!! */
set_base_armour("banded mail"); /* Will set up most of the armour for you */
set_name("banded"); /* The name is an identifier **/
add_alias("banded mail");
set_short("banded mail"); /* What the players see */
set_main_plural("banded mails"); /* What the the players see if there
are more than one of that armour */
set_long("This armor is made of overlapping strips of metal "
"sewn upon a chain mail and leather mesh backing.\n");
}