/* The example armour.. */
inherit "/obj/armour";
void setup()
{
/* THIS HAS TO BE THE FIRST LINE !!!! */
set_base_armour("ring");/*Will set up most of the armour for you */
set_name("crown"); /* The name is an identifier **/
set_short("crown"); /* What the players see */
add_alias("crown");
add_alias("ornate crown");
set_main_plural("crowns");
add_plural("crowns");
add_plural("ornate crowns");
set_long("This is a ornate crown, probably worn by a former "
"ruler. Before being displaced like so many other rulers.\n\n");
}