inherit "/obj/monster";
void setup()
{
    set_random_stats(2,5);
    set_name("animal");
    add_alias("birdie");
   set_main_plural("birdies");
    set_short("Birdie");
set_main_plural("birdies");
add_plural("birdies");
   set_long("A small forest bird, it is pecking at something on the ground. "
      "from the look of its dusty plumage, it seems to have recently "
      "enjoyed a dirt bath. "
      "\n\n");
    set_gender(random(3));
    set_level(1);
    set_al( - (random(50)));
    set_race("birdie");
    set_guild("animals");
}