//Coded by Wyk-Patron of Legends
inherit "/obj/monster";
#include "path.h"
void setup()
{
set_name("Minotaur");
set_short("Minotaur");
add_alias("minotaur");
set_main_plural("Minotaurs");
add_plural("minotaurs");
set_long(""
"This is a big ox-like humanoid. It seems that it wants "
"to challenge you to a fight. It looks incredibly brutal "
"however, so you might be better off swallowing your "
"pride and bother somebody else. "
"\n");
set_race("troll");
set_level(random(10)+3);
set_al(-100);
set_wimpy(0);
set_gender(random(2)+1);
set_move_after(20,20);
}