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