inherit "/obj/weapon";
void setup()
{
// the Table look up, it HAS to be the first line in setup() !!!
set_base_weapon("mace");
// set_name:
set_name("mace");
// The name the player sees.
set_short("mace");
// plural of set_short.
set_main_plural("maces");
}