//Coded by Wyk-Patron of Legends
inherit "/obj/monster";
#include "path.h"
void setup()
{
set_name("Gnoll");
set_short("Gnoll");
add_alias("gnoll");
set_main_plural("Gnolls");
add_plural("gnolls");
set_long(""
"Scuttling out of the darkness, the small, hunched over "
"creature snivels its large nose at you before "
"quickly shuffling into the large shadows."
"\n");
set_race("monster");
set_level(random(2)+1);
set_al(-100);
set_wimpy(0);
set_move_after(10,10);
set_gender(random(2)+1);
}