inherit "/obj/weapon";
void setup() {
set_base_weapon("quarterstaff");
set_name("quarterstaff");
set_short("quarterstaff");
add_alias("staff");
set_long("This is a fine wooden quarterstaff.\n");
set_main_plural("quarterstaves");
add_plural("staves");
/* I added the incorrect spelling of the plural below because it is
often misspelled that way. Arawn */
add_plural("quarterstaffs");
add_plural("staffs");
}