/* The example armour.. */
inherit "/obj/armour";
void setup()
{
/* THIS HAS TO BE THE FIRST LINE !!!! */
set_base_armour("field plate"); /* Will set up most of the armour for you */
set_name("field plate"); /* The name is an identifier **/
set_short("field platemail"); /* What the players see */
set_main_plural("field platemails"); /* What the the players see if there
are more than one of that armour */
add_alias("plate");
add_alias("platemail");
add_adjective("field");
add_plural("plates");
add_plural("platemails");
set_long("This is a suit of field platemail consisting of shaped "
"and riveted metal plates riveted and interlocked to cover "
"the whole body.\n");
}