inherit "/obj/monster";
void setup()
{
set_random_stats(2,5);
set_name("animal");
add_alias("squirrel");
set_main_plural("squirrels");
set_short("Squirrel");
set_long("This is a small squirrel. As you stare at the little "
"beast, you realize you HATE squirrels with their twitchy "
"little noses and stupid bushy tails.\n");
set_gender(random(3));
set_level(2);
set_al( - (random(50)));
set_race("squirrel");
set_guild("animals");
}