/* The example armour.. */
inherit "/obj/armour";
void setup()
{
/* THIS HAS TO BE THE FIRST LINE !!!! */
set_base_armour("ring mail"); /* Will set up most of the armour for you */
set_name("ringmail"); /* The name is an identifier **/
set_short("ringmail"); /* What the players see */
set_main_plural("ringmails"); /* What the the players see if there
are more than one of that armour */
set_long("This is a base form of chainmail where the chain links are sewn "
"directly upon a leather backing.\n");
}