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