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