/* The example armour.. */
inherit "/obj/armour";
void setup()
{
/* THIS HAS TO BE THE FIRST LINE !!!! */
set_base_armour("bronze plate"); /* Will set up most of the armour for you */
set_name("bronze plate"); /* The name is an identifier **/
set_short("bronze plate"); /* What the players see */
set_main_plural("bronze plates"); /* What the players see if there
are more than one of that armour */
add_alias("plate"); /*This sets another name the player can call
the armour besides typing out bronze plate
Added by Arawn: 5/4/94 */
add_plural("plates"); /*This is like add_alias, but it adds another
plural word that can be used in place of bronze
plates. Added by Arawn: 5/4/94 */
set_long("This armour is a made of bronze plates overlaid a top a shirt "
"of chain mesh and leather and padding.\n");
}