/* The example armour.. */
inherit "/obj/armour";
void setup()
{
/* THIS HAS TO BE THE FIRST LINE !!!! */
set_base_armour("plate mail"); /* Will set up most of the armour for you */
set_name("platemail"); /* The name is an identifier **/
set_short("platemail"); /* What the players see */
set_main_plural("platemails"); /* What the the players see if there
are more than one of that armour */
add_alias("plate");
add_plural("plates");
set_long("This armor is built out of a chain-mesh shirt with "
"metal plates covering the vital parts.\n");
}