//Coded by Wyk-Patron of Legends
inherit "/obj/monster";
#include "path.h"
void setup()
{
set_name("Shaggy Dog");
set_short("Shaggy Dog");
add_alias("dog");
set_main_plural("Shaggy Dogs");
add_plural("dogs");
set_long(""
"Twitching its ears, the dog runs towards you, "
"rubbing its head against your hand before "
"you are able to pull it away. Brown, black, "
"and beige fur covers its skin and masks its face "
"and ears, hiding its eyes from you. Although "
"thorns and briars are nestled deep within the long fur "
", suggesting that the mutt has lived quite a while in these "
"woods, the dog remains friendly and open to strangers.\n");
set_race("monster");
set_level(2+random(2));
set_move_after(10,10);
set_al(0);
set_wimpy(0);
set_gender(random(2)+1);
}