/* The example armour.. */
inherit "/obj/armour";
void setup()
{
/* THIS HAS TO BE THE FIRST LINE !!!! */
set_base_armour("cowl");/*Will set up most of the armour for you */
set_name("cowl"); /* The name is an identifier **/
set_short("cowls"); /* What the players see */
set_main_plural("cowls"); /* What the the players see if there
are more than one of that armour */
set_long("This is a cowl.\n");
}