/
LIB3/
LIB3/D/ADMIN/
LIB3/D/ADMIN/OBJ/
LIB3/D/ADMIN/ROOM/W/
LIB3/D/HOME/
LIB3/D/HOME/CITY/ARENA/
LIB3/D/HOME/CITY/ITEMS/
LIB3/D/HOME/CITY/POSTOFFI/
LIB3/DOC/
LIB3/GLOBAL/SPECIAL/
LIB3/GLOBAL/VIRTUAL/
LIB3/NET/
LIB3/NET/CONFIG/
LIB3/NET/DAEMON/CHARS/
LIB3/NET/GOPHER/
LIB3/NET/INHERIT/
LIB3/NET/OBJ/
LIB3/NET/SAVE/
LIB3/NET/VIRTUAL/
LIB3/OBJ/B_DAY/
LIB3/OBJ/HANDLERS/TERM_TYP/
LIB3/PLAYERS/B/
LIB3/PLAYERS/N/
LIB3/ROOM/
LIB3/SAVE/
LIB3/SAVE/BOARDS/
LIB3/SAVE/ENVIRON/
LIB3/SAVE/POST/
LIB3/STD/COMMANDS/SHADOWS/
LIB3/STD/CREATOR/
LIB3/STD/DOM/
LIB3/STD/EFFECTS/
LIB3/STD/EFFECTS/HEALING/
LIB3/STD/EFFECTS/OTHER/
LIB3/STD/EFFECTS/POISONS/
LIB3/STD/ENVIRON/
LIB3/STD/GUILDS/
LIB3/STD/LIQUIDS/
LIB3/STD/ROOM/
LIB3/STD/TRIGGER/SHADOW/
LIB3/W/
LIB3/W/BANNOR/
LIB3/W/NEWSTYLE/
/* Coded by Worzel ..using newstyles code for special attacks*/

inherit "/obj/monster";

setup()
{
  set_level(20+random(10));
  add_skill_level("combat.offence.unarmed",50);
  add_skill_level("combat.stamina",20+random(10));
  set_name("fire-eater");
  set_short("Fire-eater");
  add_adjective("large");
  set_long("This is a rather large circus performer. His act is to eat and "+
           "breathe fire. You watch in amazement as he breathes out a 10ft stream "+
           "of flames.\n");
  set_race("human");
  set_class("fighter");
  set_al(25);
  set_gender(1);
  set_aggressive(0);
"/std/weapon.mess"->add_weapon_mess("flame",
({
10,
({     "You breathe fire and heat things up for $hname$.\n",
       "$mcname$ starts to heat things up for you as he breathes flames.\n",
       "$mcname$ breathes flames close $hname$.\n"
}),
40,
({     "You singe $hname$ with your flames.\n",
       "$mcname$ singes you.\n",
       "$mcname$ cooks $hname$ a little.\n"
}),
60,
({     "You roast $hname$ with your breathe.\n",
       "$mcname$ roasts you.\n",
       "$mcname$ roasts $hname$.\n"
}),
80,
({     "You charcol-grill $hname$ all over.\n",
       "$mcname$ grills you to a crisp.\n",
       "$mcname$ charcol-grills $hname$ all over.\n"
}),
0,
({ "You incinerate $hname$ with a raging inferno.\n",
   "$mcname$ incinerates you with a raging inferno.\n",
  "$mcnames$ incinerates $hname$ with a raging inferno of fire.\n"
})
})
);

 add_attack( "fire_attack", 0, 50,
        ({20, 2, 30}), 50, 10, "flame");

load_a_chat(20, ({
        1, ":lights his breathe.\n",
        1, "'Your toast, little man..\n",
        1, ":spits out some fire.\n",
      }));
}