/* The example armour.. */
inherit "/obj/armour";
void setup()
{
/* THIS HAS TO BE THE FIRST LINE !!!! */
set_base_armour("helmet");/*Will set up most of the armour for you */
set_name("helmet"); /* The name is an identifier **/
add_alias("helm");
set_short("helmet"); /* What the players see */
set_main_plural("helmets");
set_long("This is a stell helm.\n");
}