latest copy

This commit is contained in:
color.diff=auto 2021-03-22 02:59:48 -06:00
parent b3ae4e008d
commit cfc857bf80
100 changed files with 22780 additions and 56 deletions

View File

@ -1,11 +0,0 @@
<?php
/*
Enter full path to Diablo II Mod's data\excel\global directory
Or wherever your txt files are.
*/
//define('TXT_DIR', "D:\\Diablo II\\MODS\\ironman-dev\\");
define('TXT_DIR', "/home/stoned/code/d2/");

View File

@ -23,44 +23,53 @@
ini_set('display_errors', 1);
ini_set('log_errors', 1);
// Misc functions
require_once "./src/functions.php";
$filename = 'd2um.conf';
// Configuration Options & Constants
require_once "./config.php";
if (file_exists($filename)) {
$p = file_get_contents($filename);
if(is_dir($p)) {
$path = $p;
define('TXT_PATH', $p);
} else {
$path = DIRECTORY_SEPARATOR."txt".DIRECTORY_SEPARATOR;
// if entered mod path is incorrect, use 1.10 txt files in /txt/ folder
define('TXT_PATH', './txt/');
}
// Misc functions
require_once "./src/functions.php";
// $path is a shorter alias to writing TXT_DIR a lot.
$path = TXT_DIR;
// $path is a shorter alias to writing $path a lot.
$path = $path;
// Txt Parser
require_once './src/txtParser.php';
require_once './src/txtParser.php';
// parse txt data
$txtParser = new txtParser();
$parser = $txtParser->getData();
$armor = $parser['a'];
$weapon = $parser['w'];
$prop = $parser['p'];
$uni = $parser['u'];
$txtParser = new txtParser();
$parser = $txtParser->getData();
$armor = $parser['a'];
$weapon = $parser['w'];
$prop = $parser['p'];
$uni = $parser['u'];
$files = $txtParser->getFiles();
$u = $files['u'];
$files = $txtParser->getFiles();
$u = $files['u'];
if (!empty($_POST)) {
// Saver Object
require_once './src/saveFile.php';
$saver = new saveFile();
// save files
$saver->saveTxt($u);
$saver->saveTblEnries($path);
if (!empty($_POST)) {
// Saver Object
require_once './src/saveFile.php';
$saver = new saveFile();
// save files
$saver->saveTxt($u);
$saver->saveTblEnries($path);
}
// load app
require_once './src/D2UM.php';
} else {
header('Location: ./src/config.php');
}
// header stuff
require_once './src/D2UM.php';

View File

@ -92,3 +92,8 @@ body {
font-weight: 900;
}
footer, .options {
font-family: Lato !important;
}

View File

@ -7,7 +7,8 @@
<body>
<div class="container container-top">
<h1><img src="img/Diablo2.png" style="float:left">D2UM: Diablo 2 Unique Maker, v2. By HashCasper</h1>
<h1><img src="img/Diablo2.png" style="float:left">D2UM: Diablo 2 Unique Maker, v2. By HashCasper</h1>
<form action="/index.php" method="post">
<div class="form-group row">
@ -227,10 +228,11 @@
<input type="hidden" name="*eol" value="0">
</div>
<div class="form-group row" style="background: none;">
<div class="form-group row options" style="background: none;">
<div class="col-9" style="background: none;">
<p>Options: <br>
(Hide 'unspawnable' items) <input type="checkbox" id="op1" name="opt-hide-disabled" checked>
<a style="font-weight: bold;" class="btn" href="/src/config.php">Recofigure Mod Path</a>
</p>
</div>

30
src/config.php Normal file
View File

@ -0,0 +1,30 @@
<!doctype html>
<html lang="en">
<?php
/* Require the <head> section */
require_once "head.php";
?>
<body style="text-align: center; background: white;">
<div class="container container-top">
<h1><img src="/img/Diablo2.png" style="float:left">D2UM: Diablo 2 Unique Maker, v2. By HashCasper</h1>
<hr style="margin: 60px;">
<h2>Select Mod TXT folder</h2>
<p style="font-family: lato">Input path to D2 Mod Directory.</p>
<div style="margin-top: 20px;">
<form enctype="multipart/form-data" style="font-family: Lato; font-size: 11px;" action="" method="post">
<label for="path">Choose PATH</label>
<input id="path" style="width: 420px;" required="required" name="path" type="text">
<input type="submit" value="Write Config" name="submit">
</form>
</div>
</body>
</html>
<?php
if (!empty($_POST)) {
file_put_contents("../d2um.conf", $_POST['path'].DIRECTORY_SEPARATOR);
header('Location: /');
}

View File

@ -28,7 +28,7 @@ along with D2UM. If not, see <http://www.gnu.org/licenses/>.
<link rel="stylesheet" href="https://bootswatch.com/4/materia/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="res/style.css">
<link rel="stylesheet" href="/res/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap" rel="stylesheet">
<style>
@ -40,7 +40,7 @@ along with D2UM. If not, see <http://www.gnu.org/licenses/>.
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
<script src="res/app.js"></script>
<script src="/res/app.js"></script>
</script>
<title>Unique Maker</title>

View File

@ -22,6 +22,8 @@
class saveFile {
public $path;
public function saveTxt($file) {
$post = $_POST;
if (!empty($post['code'])) {
@ -41,27 +43,32 @@ class saveFile {
}
public function saveBackup($file){
public function saveBackup($file){
if (!is_dir(TXT_DIR."backup")) mkdir(TXT_DIR."backup", 0700);
if (!is_dir($this->path."backup")) mkdir($this->path."backup", 0777);
$newfile = TXT_DIR."backup".DIRECTORY_SEPARATOR.$file.".d2um";
$newfile = $this->path."backup".DIRECTORY_SEPARATOR.$file.".d2um";
if (!copy($file, $newfile)) {
echo "Failed to create backup of $file...\n";
}
}
public function saveTblEnries($path) {
public function saveTblEnries() {
$post = $_POST;
if (!is_dir($this->path."tblEntries")) mkdir($this->path."tblEntries", 0777);
// write for .tbl
$str[0] = $post['index'];
$str[1] = $post['index'];
$fp = fopen($path . "UniqueItemsTblEntries.txt", 'a+');
fputcsv($fp, $str, "\t");
$fp = fopen($this->path.DIRECTORY_SEPARATOR.'tblEntries'. DIRECTORY_SEPARATOR. "UniqueItemsTblEntries.txt", 'a+');
fputcsv($fp, $str, "\t");
}
public function __construct() {
$this->path = TXT_PATH;
}
}

View File

@ -25,7 +25,7 @@
class txtParser {
public $path = TXT_DIR;
public $path = TXT_PATH;
// Files specific to Unique Items
public $u = "UniqueItems.txt";
@ -38,7 +38,7 @@ class txtParser {
}
function toPHP($file) {
$file = TXT_DIR . $file;
$file = $this->path . $file;
$rows = array_map(function ($v) {
return str_getcsv($v, "\t");
}

235
txt/Aiparms.txt Normal file
View File

@ -0,0 +1,235 @@
Description of Ai Parameters
/* ================================================================ */
"Brute" Ai
Yeti
Thorn Hulk
Baboon Demon
This Ai always walks towards the player & engages in melee
if the monster is in range but decides not to strike it will circle
left or right
----------------------------------------------------------------------
P1 Pct chance to strike - set this to affect attack speed
P2 Pct chance to do Attack2 - the more powerful one
P3 -
P4 -
Missiles: None
Skills: None
/* ================================================================ */
"Conservative" Ai
Evil Spider
This Ai may not intially attack, though it will do so if it is struck
It will flee if it is hurt beyond a certain threshold
----------------------------------------------------------------------
P1 Pct chance to strike - set this to affect attack speed
P2 Pct chance to do Attack2 - the more powerful attack
P3 Chance to decide to engage in to attack
P4 Pct health to flee
/* ================================================================ */
Corrupt Rogue
----------------------------------------------------------------------
P1 Not melee - pct chance of walking towards/circle enemy else
delay
P2 Melee - pct chance of doing attack else delay
P3 Delay time
P4 -
Missiles: None
Skills: None
Spike Fiend
----------------------------------------------------------------------
P1 Not melee - distance where missile is considered
P2 Missile considered - pct chance of attack else runaway
P3 Missile considered - amt of extra missiles to fire
P4 Not melee/melee - amt to move once wandering or runaway is
done
Missiles: Spike1, Spike2, Spike3, Spike4, Spike5
Skills: None
Big Head
----------------------------------------------------------------------
P1 Pct health left before go into run and shoot mode
P2 -
P3 -
P4 -
Missiles: BigHead1, BigHead2, BigHead3, BigHead4, BigHead5
Skills: None
Zombie
----------------------------------------------------------------------
P1 Distance before they realize person
P2 If person not realize, the chance they'll walk randomly else
delay
P3 Pct chance to do Attack1 else Attack2
P4 -
Missiles: None
Skills: None
Fallen
----------------------------------------------------------------------
P1 Pct that special anim will run all in group will attack
P2 Pct Attack1 (forehand) will be run over Attack2
P3 Distance away from player that they are still in wandering
mode
P4 When melee distance from player - pct that I will attack
Missiles: None
Skills: None
Fallen Shaman
----------------------------------------------------------------------
P1 If there are dead, pct chance I'll raise them
P2 If I have a ranged enemy, pct chance I'll shoot
P3 If I don't shoot or raise, pct chance I'll move
P4 -
Missiles: ShaFire1, ShaFire2, ShaFire3, ShaFire4, ShaFire5
Skills: None
Andariel
----------------------------------------------------------------------
P1 Pct chance to shoot else attack
P2 -
P3 -
P4 -
Missiles: Andrial
Skills: None
Skeleton
----------------------------------------------------------------------
P1 If not attack distance, pct chance I'll walk to enemy else
delay
P2 If in attack distance, pct chance I'll swing else delay
P3 Delay amt
P4 If attacking, pct chance I'll do Attack1 else Attack2
Missiles: None
Skills: None
Pin Head
----------------------------------------------------------------------
P1 If attack distance, pct chance to attack
P2 If attack distance, and I don't attack, the amount of frames
I'll delay
P3 If not attack distance, pct chance I'll walk to nearest player
P4 If not attack distance, and I don't walk, the amount of frames
I'll delay
P5 If attacking, pct chance I'll do Smite
Missiles: None
Skills: Smite: Damage, (1 - 4) * SkillLvl
Serpent Demon
----------------------------------------------------------------------
P1 If attack distance, pct chance to attack
P2 If attacking, pct chance I'll do attack1 (tail poke) else
attack2 (claw swipe)
P3 If attack distance, and I don't attack, the amount of frames
I'll delay
P4 If not attack distance, pct chance I'll Zeal towards players
else I'll just walk
Missiles: None
Skills: Zeal: Damage,
(40 * (amount of time through run cycle)) / SkillLvl
Scarab
----------------------------------------------------------------------
P1 If attack distance, pct chance to attack
P2 If attacking, and not Jab skilling, pct chance I'll do attack1
(ax looking thing) else attack2 (leg poke)
P3 If attack distance, and I don't attack, the amount of frames
I'll delay
P4 If attacking, pct chance I'll do Jab Skill else I'll do
regular attack stuff
Missiles: None
Skills: Jab: DamageMin, 5 * SkillLevel; DamageMax,
DamageMin + 15; ToHit, 15 + (SkillLevel * 5)
Sand Raider
----------------------------------------------------------------------
P1 Pct health left so that I will start looking for other
monsters to retreat to
P2 If not in attack distance, pct chance I'll circle around
P3 If attack distance, pct chance I'll attack
P4 If attack distance, and I don't attack, number of frames I'll
delay
Missiles: None
Skills: FireHit: FireDamMin, 5 * SkillLevel; FireDamMax,
FireDamMin + 15; ToHit, 15 + (SkillLevel * 5)
Sand Maggot
----------------------------------------------------------------------
P1 If not damaged (< 30%), and I'm underground, I'll come up when
the player is in this distance
P2 If damaged, player farther than 7 and, I don't lay an egg, pct
chance I'll shoot else walk
P3 Max Eggs to lay.
P4 If attack distance, pct chance I'll attack else pause
P5 Time I'm going to stay up or down minimum
Missiles: GooSpit1, GooSpit2, GooSpit3, GooSpit4, GooSpit5
Skills: None
Note: Maggots now lay eggs up to their max if they haven't decided
to do anything else of interest.
Sand Maggot Baby
----------------------------------------------------------------------
P1 If attack distance, pct chance I'll attack
P2 If attack distance, and I don't attack, number of frames I'll
delay
P3 If not attack distance, pct chance I'll walk towards player
P4 If not attack distance, and I don't walk towards, number of
frames I'll delay
Missiles: None
Skills: None
Sand Maggot Egg
----------------------------------------------------------------------
P1 Frames delay before spawning
P2 Amount of maggots to spawn
P3 -
P4 -
Missiles: None
Skills: None
Greater Mummy
----------------------------------------------------------------------
P1 If player is next to me or in gas range, pct chance I'll
attack
P2 If I don't swipe or gas, pct chance if there's dead I'll
resurrect
P3 If I don't swipe, gas, or res, pct chance if there's hurt I'll
heal'em
P4 If I don't swipe, gas, res, or heal, pct chance I'll try to
shoot
Missiles: UnHolyBolt1, UnHolyBolt2, UnHolyBolt3, UnHolyBolt4,
Mummy1, Mummy2, Mummy3, Mummy4
Skills: Resurrect: none
Heal: HealMin, 5 * SkillLevel; HealMax,
HealMin + 15
Mummy
----------------------------------------------------------------------
P1 Distance before they realize person
P2 If person not realize, the chance they'll walk randomly else
delay
P3 Pct chance to do Attack1 else Attack2
P4 -

2
txt/Arena.txt Normal file
View File

@ -0,0 +1,2 @@
Arena Suicide PlayerKill PlayerKillPercent MonsterKill PlayerDeath PlayerDeathPercent MonsterDeath
Deathmatch -6 2 10 1 -2 -10 -1

4
txt/ArmType.txt Normal file
View File

@ -0,0 +1,4 @@
Name Token
Lite lit
Medium med
Heavy hvy

204
txt/Armor.txt Normal file
View File

@ -0,0 +1,204 @@
name version compactsave rarity spawnable minac maxac absorbs speed reqstr block durability nodurability level levelreq cost gamble cost code magic lvl auto prefix alternategfx OpenBetaGfx normcode ubercode ultracode spelloffset component invwidth invheight hasinv gemsockets gemapplytype flippyfile invfile uniqueinvfile setinvfile rArm lArm Torso Legs rSPad lSPad useable throwable stackable minstack maxstack type sound unique transparent transtbl quivered lightradius belt quest missiletype durwarning qntwarning mindam maxdam gemoffset bitfield1 CharsiMin CharsiMax CharsiMagicMin CharsiMagicMax CharsiMagicLvl GheedMin GheedMax GheedMagicMin GheedMagicMax GheedMagicLvl AkaraMin AkaraMax AkaraMagicMin AkaraMagicMax AkaraMagicLvl FaraMin FaraMax FaraMagicMin FaraMagicMax FaraMagicLvl LysanderMin LysanderMax LysanderMagicMin LysanderMagicMax LysanderMagicLvl DrognanMin DrognanMax DrognanMagicMin DrognanMagicMax DrognanMagicLvl HraltiMin HraltiMax HraltiMagicMin HraltiMagicMax HratliMagicLvl AlkorMin AlkorMax AlkorMagicMin AlkorMagicMax AlkorMagicLvl OrmusMin OrmusMax OrmusMagicMin OrmusMagicMax OrmusMagicLvl ElzixMin ElzixMax ElzixMagicLvl ElzixMagicMin ElzixMagicMax AshearaMin AshearaMax AshearaMagicMin AshearaMagicMax AshearaMagicLvl CainMin CainMax CainMagicMin CainMagicMax CainMagicLvl HalbuMin HalbuMax HalbuMagicMin HalbuMagicMax HalbuMagicLvl JamellaMin JamellaMax JamellaMagicMin JamellaMagicMax JamellaMagicLvl LarzukMin LarzukMax LarzukMagicMin LarzukMagicMax LarzukMagicLvl MalahMin MalahMax MalahMagicMin MalahMagicMax MalahMagicLvl DrehyaMin DrehyaMax DrehyaMagicMin DrehyaMagicMax DrehyaMagicLvl Source Art Game Art Transform InvTrans SkipName NightmareUpgrade HellUpgrade mindam maxdam nameable
Cap/hat 0 0 1 1 3 5 0 0 0 0 12 0 1 0 64 3016 cap cap cap cap xap uap 0 0 2 2 1 2 1 flpcap invcap invcapu invcapu 0 0 0 0 0 helm 6 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 1 1 1 5 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 skp ghm 0 0 1
Skull Cap 0 0 1 1 8 11 0 0 15 0 18 0 5 0 441 5551 skp skp skp skp xkp ukp 0 0 2 2 1 2 1 flpskp invskp 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 1 1 1 1 10 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 hlm crn 0 0 1
Helm 0 0 1 1 15 18 0 0 26 0 24 0 11 0 1558 12284 hlm hlm hlm hlm xlm ulm 0 0 2 2 1 2 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 fhl ghm 0 0 1
Full Helm 0 0 2 1 23 26 0 0 41 0 30 0 15 0 3095 21606 fhl fhl hlm fhl xhl uhl 0 0 2 2 1 2 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 ghm xxx 0 0 1
Great Helm 0 0 2 1 30 35 0 0 63 0 40 0 23 0 6177 49517 ghm ghm hlm ghm xhm uhm 0 0 2 2 1 3 1 flpghm invghm 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 20 0 0 0 0 1 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 8 0 crn xxx 0 0 1
Crown 0 0 2 1 25 45 0 0 55 0 50 0 29 0 8345 77501 crn crn hlm crn xrn urn 0 0 2 2 1 3 1 flpcrn invcrn 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 1 1 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Mask 0 0 3 1 9 27 0 0 23 0 20 0 19 0 2857 25570 msk msk hlm msk xsk usk 0 0 2 2 1 3 1 flpmsk invmsk 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
Quilted Armor 0 0 1 1 8 11 0 0 12 0 20 0 1 0 140 3035 qui qlt qlt qui xui uui 0 1 2 3 1 2 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 1 1 1 1 5 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 lea gth 0 0 1
Leather Armor 0 0 1 1 14 17 0 0 15 0 24 0 3 0 481 4360 lea lea lea lea xea uea 0 1 2 3 1 2 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 1 1 1 1 10 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 hla ful 0 0 1
Hard Leather Armor 0 0 1 1 21 24 0 0 20 0 28 0 5 0 1060 6325 hla hla hla hla xla ula 0 1 2 3 1 2 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 1 1 1 1 15 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 stu aar 0 0 1
Studded Leather 0 0 1 1 32 35 0 0 27 0 32 0 8 0 2385 11270 stu stu stu stu xtu utu 0 1 2 3 1 2 1 flpstu invstu 1 0 0 1 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 1 1 1 1 20 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 rng ltp 0 0 1
Ring Mail 0 0 1 1 45 48 0 5 36 0 26 0 11 0 4428 20177 rng rng rng rng xng ung 0 1 2 3 1 3 1 flprng invrng 0 0 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 1 0 1 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 scl chn 0 0 1
Scale Mail 0 0 1 1 57 60 0 10 44 0 36 0 13 0 6508 30151 scl scl scl scl xcl ucl 0 1 2 3 1 2 1 flpscl invscl 1 1 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 chn brs 0 0 1
Chain Mail 0 0 1 1 72 75 0 5 48 0 45 0 15 0 9360 45100 chn chn chn chn xhn uhn 0 1 2 3 1 2 1 flpchn invchn 1 1 1 1 2 2 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 brs spl 0 0 1
Breast Plate 0 0 2 1 65 68 1 0 30 0 50 0 18 0 10078 56851 brs brs brs brs xrs urs 0 1 2 3 1 3 1 flpbrs invbrs 0 0 2 0 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 spl plt 0 0 1
Splint Mail 0 0 1 1 90 95 0 5 51 0 30 0 20 0 15489 89945 spl spl spl spl xpl upl 0 1 2 3 1 2 1 flpspl invspl 1 1 2 1 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 1 1 0 1 1 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 2 8 0 plt fld 0 0 1
Plate Mail 0 0 1 1 108 116 0 10 65 0 60 0 24 0 22335 148510 plt plt plt plt xlt ult 0 1 2 3 1 2 1 flpplt invplt 2 2 2 2 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 1 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 2 8 0 fld xxx 0 0 1
Field Plate 0 0 3 1 101 105 2 5 55 0 48 0 28 0 23841 183387 fld fld fld fld xld uld 0 1 2 3 1 2 1 flpfld invfld 1 1 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 1 0 0 1 2 20 0 0 0 0 255 0 0 0 0 255 2 8 0 gth ful 0 0 1
Gothic Plate 0 0 3 1 128 135 0 5 70 0 55 0 32 0 34646 295668 gth gth gth gth xth uth 0 1 2 3 1 4 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 1 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 1 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 2 8 0 ful xxx 0 0 1
Full Plate Mail 0 0 1 1 150 161 2 10 80 0 70 0 37 0 47192 457526 ful ful ful ful xul uul 0 1 2 3 1 4 1 flpful invful invfulu invfulu 2 2 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 1 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 2 8 0 aar xxx 0 0 1
Ancient Armor 0 0 4 1 218 233 5 5 100 0 60 0 40 0 73864 761140 aar aar aar aar xar uar 0 1 2 3 1 4 1 flpaar invaar invaaru invaaru 1 2 2 2 2 0 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 1 1 2 20 2 8 0 ltp xxx 0 0 1
Light Plate 0 0 2 1 90 107 1 0 41 0 60 0 35 0 28327 267861 ltp ltp ltp ltp xtp utp 0 1 2 3 1 3 1 flpltp invltp 2 0 1 1 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 1 0 0 255 0 0 1 2 20 0 0 0 0 255 0 1 1 1 20 2 8 0 buc xxx 0 0 1
Buckler 0 0 1 1 4 6 0 0 12 0 12 0 1 0 68 3017 buc buc buc buc xuc uuc 0 7 2 2 1 1 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 1 3 0 3 1 1 1 1 3 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 sml tow 0 0 1
Small Shield 0 0 1 1 8 10 0 0 22 5 16 0 5 0 410 5512 sml buc buc sml xml uml 0 7 2 2 1 2 2 flpsml invsml invsmlu invsmlu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 2 3 0 3 1 1 1 1 5 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 1 1 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 5 0 lrg kit 0 0 1
Large Shield 0 0 1 1 12 14 0 5 34 12 24 0 11 0 1214 11338 lrg lrg buc lrg xrg urg 0 7 2 3 1 3 2 flplrg invlrg invlrgu invlrgu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 2 4 0 3 0 1 0 1 10 0 1 0 1 1 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 kit tow 0 0 1
Kite Shield 0 0 2 1 16 18 0 0 47 8 30 0 15 0 2129 17983 kit kit buc kit xit uit 0 7 2 3 1 3 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 2 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 tow gts 0 0 1
Tower Shield 0 0 2 1 22 25 1 10 75 24 60 0 22 0 4249 36869 tow tow buc tow xow uow 0 7 2 3 1 3 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 1 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 1 1 0 0 1 1 1 1 2 20 0 0 0 0 255 0 0 0 0 20 2 2 0 gts xxx 0 0 1
Gothic Shield 0 0 3 1 30 35 0 5 60 16 40 0 30 0 8000 77500 gts kit buc gts xts uts 0 7 2 4 1 3 2 flpgts invgts invgtsu invgtsu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 2 6 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 1 0 0 1 2 20 0 0 0 0 255 0 0 1 1 20 2 2 0 xxx xxx 0 0 1
Gloves(L) 0 0 1 1 2 3 0 0 0 0 12 0 3 0 80 4060 lgl lgl lgl lgl xlg ulg 0 16 2 2 0 0 0 flplgl invlgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 1 1 1 1 3 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 vgl hgl 0 0 1
Heavy Gloves 0 0 1 1 5 6 0 0 0 0 14 0 7 0 352 6616 vgl vgl vgl vgl xvg uvg 0 16 2 2 0 0 0 flpvgl invvgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 1 0 1 5 0 1 0 1 1 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 mgl tgl 0 0 1
Bracers(M) 0 0 2 1 8 9 0 0 25 0 16 0 12 0 859 11077 mgl mgl mgl mgl xmg umg 0 16 2 2 0 0 0 flpmgl invmgl 0 0 0 0 0 glov 35 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 1 0 0 10 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 tgl hgl 0 0 1
Light Gauntlets 0 0 2 1 9 11 0 0 45 0 18 0 20 0 1635 20675 tgl mgl mgl tgl xtg utg 0 16 2 2 0 0 0 flptgl invtgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 2 1 1 1 1 2 1 1 1 0 0 1 1 255 1 1 0 1 255 0 0 1 1 20 0 0 0 0 255 1 1 0 0 255 0 8 0 xxx xxx 0 0 1
Gaunlets(H) 0 0 3 1 12 15 0 0 60 0 24 0 27 0 2964 36007 hgl hgl hgl hgl xhg uhg 0 16 2 2 0 0 0 flphgl invhgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 1 1 0 1 255 1 1 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 1 1 20 0 8 0 xxx xxx 0 0 1
Leather Boots 0 0 1 1 2 3 0 0 0 0 12 0 3 0 80 4060 lbt lbt lbt lbt xlb ulb 0 16 2 2 0 0 0 flplbt invlbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 3 8 0 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 vbt tbt 0 0 1
Heavy Boots 0 0 1 1 5 6 0 0 18 0 14 0 7 0 334 6584 vbt vbt vbt vbt xvb uvb 0 16 2 2 0 0 0 flpvbt invvbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 4 10 0 1 0 1 0 1 1 0 1 0 1 1 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 mbt tbt 0 0 1
Chain Boots 0 0 2 1 8 9 0 0 30 0 16 0 12 0 854 11062 mbt mbt mbt mbt xmb umb 0 16 2 2 0 0 0 flpmbt invmbt 0 0 0 0 0 boot 33 0 0 5 0 0 0 0 0 6 0 6 12 0 3 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 tbt hbt 0 0 1
Light Plate Boots 0 0 2 1 9 11 0 0 50 0 18 0 20 0 1630 20650 tbt mbt mbt tbt xtb utb 0 16 2 2 0 0 0 flptbt invtbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 8 16 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 2 1 1 1 1 2 1 1 1 0 0 1 1 20 1 1 0 1 255 0 0 1 1 20 0 0 0 0 255 1 1 0 0 255 0 8 0 xxx xxx 0 0 1
Plate Boots 0 0 3 1 12 15 0 0 70 0 24 0 27 0 2954 35939 hbt hbt hbt hbt xhb uhb 0 16 2 2 0 0 0 flphbt invhbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 10 20 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 1 1 1 1 20 1 1 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 1 1 20 0 8 0 xxx xxx 0 0 1
Sash(L) 0 0 1 1 2 2 0 0 0 0 12 0 3 0 64 4048 lbl lbl lbl lbl zlb ulb 0 16 2 1 0 0 0 flplbl invlbl 0 0 0 0 0 belt 17 0 0 5 0 0 1 0 0 4 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 vbl tbl 0 0 1
Light Belt 0 0 1 1 3 3 0 0 0 0 14 0 7 0 192 6336 vbl vbl vbl vbl zvb uvb 0 16 2 1 0 0 0 flpvbl invvbl 0 0 0 0 0 belt 2 0 0 5 0 0 4 0 0 4 0 0 0 0 1 0 1 0 1 1 0 1 0 1 1 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 mbl hbl 0 0 1
Belt(M) 0 0 2 1 5 5 0 0 25 0 16 0 12 0 495 9985 mbl mbl mbl mbl zmb umb 0 16 2 1 0 0 0 flpmbl invmbl 0 0 0 0 0 belt 2 0 0 5 0 0 0 0 0 4 0 0 0 0 1 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 tbl hbl 0 0 1
Heavy Belt 0 0 2 1 6 6 0 0 45 0 18 0 20 0 963 17315 tbl mbl mbl tbl ztb utb 0 16 2 1 0 0 0 flptbl invtbl 0 0 0 0 0 belt 2 0 0 5 0 0 5 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 2 1 1 1 1 2 1 1 1 0 0 1 1 20 1 1 0 1 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 8 0 xxx xxx 0 0 1
Girdle(H) 0 0 3 1 8 11 0 0 60 0 24 0 27 0 2068 29959 hbl hbl hbl hbl zhb uhb 0 16 2 1 0 0 0 flphbl invhbl 0 0 0 0 0 belt 2 0 0 5 0 0 3 0 0 4 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 1 1 1 1 20 1 1 0 0 255 1 1 1 2 20 0 0 0 0 255 1 1 0 0 255 0 8 0 xxx xxx 0 0 1
Bone Helm 0 0 4 1 33 36 0 0 25 0 40 0 22 0 6323 48276 bhm bhm hlm bhm xh9 uh9 0 0 2 2 1 2 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm 12 0 0 5 0 2 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 3 20 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 2 8 0 xxx xxx 0 0 1
Bone Shield 0 0 4 1 10 30 0 0 25 20 40 0 19 0 3175 27081 bsh bsh buc bsh xsh ush 0 7 2 3 1 2 2 flpbsh invbsh invbshu invbshu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 3 6 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 3 20 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 2 8 0 xxx xxx 0 0 1
Spiked Shield 0 0 4 1 15 25 0 0 30 10 40 0 11 0 1890 13197 spk spk buc spk xpk upk 0 7 2 3 1 2 2 flpspk invspk invspku invspku 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 5 9 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 3 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 2 8 0 xxx xxx 0 0 1
War Hat 0 0 1 1 45 53 0 0 20 0 12 0 34 22 13560 82061 xap cap cap cap xap uap 0 0 2 2 1 2 1 flpcap invcap 0 0 0 0 0 helm 6 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Sallet 0 0 1 1 52 62 0 0 43 0 18 0 37 25 17210 113647 xkp skp skp skp xkp ukp 0 0 2 2 1 2 1 flpskp invskp invxkpu invxkpu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Casque 0 0 1 1 63 72 0 0 59 0 24 0 42 25 23075 171804 xlm hlm hlm hlm xlm ulm 0 0 2 2 1 2 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Basinet 0 0 2 1 75 84 0 0 82 0 30 0 45 25 29083 233910 xhl fhl fhl fhl xhl uhl 0 0 2 2 1 2 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Winged Helm 0 0 2 1 85 98 0 0 115 0 40 0 51 25 37846 355900 xhm ghm ghm ghm xhm uhm 0 0 2 2 1 3 1 flpghm invghm 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Grand Crown 0 0 2 1 78 113 0 0 103 0 50 0 55 25 42458 448816 xrn crn crn crn xrn urn 0 0 2 2 1 3 1 flpcrn invcrn invxrnu invxrnu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Death Mask 0 0 3 1 54 86 0 0 55 0 20 0 48 25 27190 241184 xsk msk msk msk xsk usk 0 0 2 2 1 3 1 flpmsk invmsk 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
Ghost Armor 0 0 1 1 102 117 0 0 38 0 20 0 34 22 30552 165635 xui qlt qlt qui xui uui 0 1 2 3 1 2 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Serpentskin Armor 0 0 1 1 111 126 0 0 43 0 24 0 36 24 34960 197896 xea lea lea lea xea uea 0 1 2 3 1 2 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Demonhide Armor 0 0 1 1 122 136 0 0 50 0 28 0 37 25 39090 236758 xla hla hla hla xla ula 0 1 2 3 1 2 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Trellised Armor 0 0 1 1 138 153 0 0 61 0 32 0 40 25 47582 305707 xtu stu stu stu xtu utu 0 1 2 3 1 2 1 flpstu invstu invxtuu invxtuu 1 0 0 1 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Linked Mail 0 0 1 1 158 172 0 5 74 0 26 0 42 25 56600 393748 xng rng rng rng xng ung 0 1 2 3 1 3 1 flprng invrng 0 0 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Tigulated Mail 0 0 1 1 176 190 0 10 86 0 36 0 43 25 64242 473193 xcl scl scl scl xcl ucl 0 1 2 3 1 2 1 flpscl invscl 1 1 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Mesh Armor 0 0 1 1 198 213 0 5 92 0 45 0 45 25 75440 574094 xhn chn chn chn xhn uhn 0 1 2 3 1 2 1 flpchn invchn 1 1 1 1 2 2 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Cuirass 0 0 2 1 188 202 1 0 65 0 50 0 47 25 74719 613456 xrs brs brs brs xrs urs 0 1 2 3 1 2 1 flpbrs invbrs invxrss 0 0 2 0 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Russet Armor 0 0 1 1 225 243 0 5 97 0 30 0 49 25 93404 788235 xpl spl spl spl xpl upl 0 1 2 3 1 2 1 flpspl invspl 1 1 2 1 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Templar Coat 0 0 1 1 252 274 0 10 118 0 60 0 52 25 111395 1017928 xlt plt plt plt xlt ult 0 1 2 3 1 3 1 flpplt invplt 2 2 2 2 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Sharktooth Armor 0 0 3 1 242 258 2 5 103 0 48 0 55 25 111674 1103159 xld fld fld fld xld uld 0 1 2 3 1 2 1 flpfld invfld 1 1 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Embossed Plate 0 0 3 1 282 303 0 5 125 0 55 0 58 25 137817 1457493 xth gth gth gth xth uth 0 1 2 3 1 4 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Chaos Armor 0 0 1 1 315 342 2 10 140 0 70 0 61 25 162672 1888411 xul ful ful ful xul uul 0 1 2 3 1 4 1 flpful invful 2 2 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Ornate Armor 0 0 4 1 417 450 5 5 170 0 60 0 64 25 225120 2696482 xar aar aar aar xar uar 0 1 2 3 1 4 1 flpaar invaar invxaru invxaru 1 2 2 2 2 0 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Mage Plate 0 0 2 1 225 261 1 0 55 0 60 0 60 25 118407 1327498 xtp ltp ltp ltp xtp utp 0 1 2 3 1 3 1 flpltp invltp 2 0 1 1 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Defender 0 0 1 1 41 49 0 0 38 10 68 0 34 22 12562 77123 xuc buc buc buc xuc uuc 0 7 2 2 1 1 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 8 12 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 0 0 1
Round Shield 0 0 1 1 47 55 0 0 53 12 64 0 37 25 15451 103735 xml buc buc sml xml uml 0 7 2 2 1 2 2 flpsml invsml invxmlu invxmlu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 7 14 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 5 0 xxx xxx 0 0 1
Scutum 0 0 1 1 53 61 0 5 71 14 62 0 42 25 19537 148359 xrg lrg lrg lrg xrg urg 0 7 2 3 1 3 2 flplrg invlrg invxrgu invxrgu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 11 15 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
Dragon Shield 0 0 2 1 59 67 0 0 91 18 76 0 45 25 23094 189944 xit kit kit kit xit uit 0 7 2 3 1 3 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 15 24 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
Pavise 0 0 2 1 68 78 1 10 133 24 72 0 50 25 29550 278500 xow tow tow tow xow uow 0 7 2 3 1 3 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 10 17 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
Ancient Shield 0 0 3 1 80 93 0 5 110 16 80 0 56 25 39220 422340 xts kit kit gts xts uts 0 7 2 4 1 3 2 flpgts invgts invgtsu invgtsu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 12 16 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
Demonhide Gloves 0 0 1 1 28 35 0 0 20 0 12 0 36 24 9230 64102 xlg lgl lgl lgl xlg ulg 0 16 2 2 0 0 0 flplgl invlgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Sharkskin Gloves 0 0 1 1 33 39 0 0 20 0 14 0 39 25 11420 85063 xvg vgl vgl vgl xvg uvg 0 16 2 2 0 0 0 flpvgl invvgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Heavy Bracers 0 0 2 1 37 44 0 0 58 0 16 0 43 25 14111 114806 xmg mgl mgl mgl xmg umg 0 16 2 2 0 0 0 flpmgl invmgl 0 0 0 0 0 glov 35 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Battle Gauntlets 0 0 2 1 39 47 0 0 88 0 18 0 49 25 16913 161025 xtg mgl mgl tgl xtg utg 0 16 2 2 0 0 0 flptgl invtgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
War Gauntlets 0 0 3 1 43 53 0 0 110 0 24 0 54 25 20900 223744 xhg hgl hgl hgl xhg uhg 0 16 2 2 0 0 0 flphgl invhgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Demonhide Boots 0 0 1 1 28 35 0 0 20 0 12 0 36 24 9230 64102 xlb lbt lbt lbt xlb ulb 0 16 2 2 0 0 0 flplbt invlbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 13 23 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Sharkskin Boots 0 0 1 1 33 39 0 0 47 0 14 0 39 25 11393 84859 xvb vbt vbt vbt xvb uvb 0 16 2 2 0 0 0 flpvbt invvbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 14 25 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Mesh Boots 0 0 2 1 37 44 0 0 65 0 16 0 43 25 14103 114742 xmb mbt mbt mbt xmb umb 0 16 2 2 0 0 0 flpmbt invmbt 0 0 0 0 0 boot 33 0 0 5 0 0 0 0 0 6 0 16 27 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Battle Boots 0 0 2 1 39 47 0 0 95 0 18 0 49 25 16905 160950 xtb mbt mbt tbt xtb utb 0 16 2 2 0 0 0 flptbt invtbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 18 31 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
War Boots 0 0 3 1 43 53 0 0 125 0 24 0 54 25 20885 223574 xhb hbt hbt hbt xhb uhb 0 16 2 2 0 0 0 flphbt invhbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 20 35 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Demonhide Sash 0 0 1 1 29 34 0 0 20 0 12 0 36 24 9304 64486 zlb lbl lbl lbl zlb ulc 0 16 2 1 0 0 0 flplbl invlbl 0 0 0 0 0 belt 17 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Sharkskin Belt 0 0 1 1 31 36 0 0 20 0 14 0 39 25 10700 80809 zvb vbl vbl vbl zvb uvc 0 16 2 1 0 0 0 flpvbl invvbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Mesh Belt 0 0 2 1 35 40 0 0 58 0 16 0 43 25 13143 108261 zmb mbl mbl mbl zmb umc 0 16 2 1 0 0 0 flpmbl invmbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Battle Belt 0 0 2 1 37 42 0 0 88 0 18 0 49 25 15713 151185 ztb mbl mbl tbl ztb utc 0 16 2 1 0 0 0 flptbl invtbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
War Belt 0 0 3 1 41 52 0 0 110 0 24 0 54 25 20350 218512 zhb hbl hbl hbl zhb uhc 0 16 2 1 0 0 0 flphbl invhbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Grim Helm 0 0 4 1 60 125 0 0 58 0 40 0 50 25 37683 348947 xh9 bhm bhm bhm xh9 uh9 0 0 2 2 1 2 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm 12 0 0 5 0 2 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Grim Shield 0 0 4 1 50 150 0 0 58 14 70 0 48 25 39143 337523 xsh bsh bsh bsh xsh ush 0 7 2 3 1 2 2 flpbsh invbsh invxshu invxshu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 14 20 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Barbed Shield 0 0 4 1 58 78 0 0 65 17 55 0 42 25 23155 172324 xpk spk spk spk xpk upk 0 7 2 3 1 2 2 flpspk invspk invxpku invxpku 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 18 35 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Expansion
Wolf Head 100 0 2 1 8 11 0 0 16 0 20 0 4 3 364 4868 dr1 dr1 dr1 dr1 dr6 drb 0 0 2 2 1 3 1 flpdr1 invdr1 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Hawk Helm 100 0 3 1 4 15 0 0 20 0 20 0 8 6 664 7840 dr2 dr4 dr4 dr2 dr7 drc 0 0 2 2 1 3 1 flpdr4 invdr2 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Antlers 100 0 3 1 18 24 0 0 24 0 20 0 16 12 2832 21852 dr3 dr3 dr3 dr3 dr8 drd 0 0 2 2 1 3 1 flpdr3 invdr3 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Falcon Mask 100 0 4 1 12 28 0 0 28 0 20 0 20 15 3332 29200 dr4 dr4 dr4 dr4 dr9 dre 0 0 2 2 1 3 1 flpdr4 invdr4 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Spirit Mask 100 0 5 1 22 35 0 0 30 0 20 0 24 18 5670 48550 dr5 dr1 dr1 dr5 dra drf 0 0 2 2 1 3 1 flpdr1 invdr5 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Jawbone Cap 100 0 2 1 10 15 0 0 25 0 25 0 4 3 320 4750 ba1 ba1 dr1 ba1 ba6 bab 0 0 2 2 1 3 1 flpba1 invba1 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Fanged Helm 100 0 3 1 15 20 0 0 35 0 35 0 8 6 750 8250 ba2 ba1 bhm ba2 ba7 bac 0 0 2 2 1 3 1 flpba1 invba2 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Horned Helm 100 0 3 1 25 30 0 0 45 0 45 0 16 12 2750 20750 ba3 ba3 bhm ba3 ba8 bad 0 0 2 2 1 3 1 flpba3 invba3 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Assault Helmet 100 0 4 1 30 35 0 0 55 0 50 0 20 15 3420 29360 ba4 ba5 bhm ba4 ba9 bae 0 0 2 2 1 3 1 flpba5 invba4 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Avenger Guard 100 0 5 1 35 50 0 0 65 0 55 0 24 18 5785 49280 ba5 ba5 bhm ba5 baa baf 0 0 2 2 1 3 1 flpba5 invba5 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Targe 100 0 2 1 8 12 0 0 16 10 20 0 4 3 384 6317 pa1 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 4 2 flppa1 invpa1 0 0 0 0 0 ashd 18 0 0 5 0 1 0 0 0 1 0 2 6 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
Rondache 100 0 3 1 10 18 0 0 26 15 30 0 8 6 982 10517 pa2 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 4 2 flppa1 invpa2 0 0 0 0 0 ashd 18 0 0 5 0 2 0 0 0 1 0 2 8 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
Heraldic Shield 100 0 3 1 16 26 0 0 40 20 40 0 16 12 2816 21240 pa3 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 4 2 flppa3 invpa3 0 0 0 0 0 ashd 18 0 0 5 0 3 0 0 0 1 0 3 9 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
Aerin Shield 100 0 4 1 26 36 0 0 50 22 50 0 20 15 5158 43557 pa4 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 4 2 flppa3 invpa4 0 0 0 0 0 ashd 18 0 0 5 0 4 0 0 0 1 0 4 10 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
Crown Shield 100 0 5 1 30 40 0 0 65 25 60 0 24 18 6935 82075 pa5 304 pa5 spk pa5 paa paf 0 7 2 2 1 4 2 flppa5 invpa5 0 0 0 0 0 ashd 18 0 0 5 0 5 0 0 0 1 0 4 12 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
Preserved Head 100 0 2 1 2 5 0 0 12 3 20 0 4 3 128 4628 ne1 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 2 2 flpne1 invne1 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Zombie Head 100 0 3 1 4 8 0 0 14 5 20 0 8 6 418 7336 ne2 305 ne2 bhm ne2 ne7 nec 0 10 2 2 1 2 2 flpne2 invne2 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Unraveller Head 100 0 3 1 6 10 0 0 18 8 20 0 16 12 1070 14780 ne3 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 2 2 flpne3 invne3 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Gargoyle Head 100 0 4 1 10 16 0 0 20 10 20 0 20 15 2164 23320 ne4 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 2 2 flpne3 invne4 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Demon Head 100 0 5 1 15 20 0 0 25 12 20 0 24 18 3475 35350 ne5 305 ne2 bhm ne5 nea nef 0 10 2 2 1 2 2 flpne2 invne5 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Circlet 100 0 2 1 20 30 0 0 0 0 35 0 24 16 5000 44500 ci0 10 lit lit ci0 ci2 ci3 0 0 2 2 1 2 1 flpci0 invci0 0 0 0 0 0 circ 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
Coronet 100 0 3 1 30 40 0 0 0 0 30 0 35 27 7500 85625 ci1 15 lit lit ci1 ci2 ci3 0 0 2 2 1 2 1 flpci1 invci1 0 0 0 0 0 circ 12 0 0 5 0 1 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
Tiara 100 0 4 1 40 50 0 0 0 0 25 0 45 37 60000 700000 ci2 20 lit lit ci1 ci2 ci3 0 0 2 2 1 3 1 flpci1 invci2 0 0 0 0 0 circ 12 0 0 5 0 2 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
Diadem 100 0 4 1 50 60 0 0 0 0 20 0 60 52 90000 1382500 ci3 25 lit lit ci1 ci2 ci3 0 0 2 2 1 3 1 flpci2 invci3 0 0 0 0 0 circ 12 0 0 5 0 3 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
Shako 100 0 1 1 98 141 0 0 50 0 12 0 65 57 62993 503591 uap cap cap cap xap uap 0 0 2 2 1 2 1 flpcap invcap 0 0 0 0 0 helm 6 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Hydraskull 100 0 1 1 101 145 0 0 84 0 18 0 68 60 67647 568276 ukp skp skp skp xkp ukp 0 0 2 2 1 2 1 flpskp invskp 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Armet 100 0 1 1 105 149 0 0 109 0 24 0 73 65 75016 671703 ulm hlm hlm hlm xlm ulm 0 0 2 2 1 2 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Giant Conch 100 0 2 1 110 154 0 0 142 0 30 0 54 46 57806 757863 uhl fhl fhl fhl xhl uhl 0 0 2 2 1 2 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Spired Helm 100 0 2 1 114 159 0 0 192 0 40 0 78 70 86076 920880 uhm ghm ghm ghm xhm uhm 0 0 2 2 1 3 1 flpghm invghm invuhms 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Corona 100 0 2 1 111 165 0 0 174 0 50 0 81 73 90354 1042170 urn crn crn crn xrn urn 0 0 2 2 1 3 1 flpcrn invcrn 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Demonhead 100 0 3 1 101 154 0 0 102 0 20 0 76 68 78623 799703 usk msk msk msk xsk usk 0 0 2 2 1 3 1 flpmsk invmsk 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
Dusk Shroud 100 0 1 1 361 467 0 0 77 0 20 0 66 58 221666 1685148 uui qlt qlt qui xui uui 0 1 2 3 1 4 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Wyrmhide 100 0 1 1 364 470 0 0 84 0 24 0 67 59 226927 1785276 uea lea lea lea xea uea 0 1 2 3 1 4 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Scarab Husk 100 0 1 1 369 474 0 0 95 0 28 0 68 60 232573 1891607 ula hla hla hla xla ula 0 1 2 3 1 4 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Wire Fleece 100 0 1 1 375 481 0 0 111 0 32 0 70 62 243050 2059887 utu stu stu stu xtu utu 0 1 2 3 1 4 1 flpstu invstu 1 0 0 1 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Diamond Mail 100 0 1 1 383 489 0 5 131 0 26 0 72 64 254435 2243423 ung rng rng rng xng ung 0 1 2 3 1 4 1 flprng invrng 0 0 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Loricated Mail 100 0 1 1 390 496 0 10 149 0 36 0 72 64 258621 2382039 ucl scl scl scl xcl ucl 0 1 2 3 1 4 1 flpscl invscl 1 1 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Boneweave 100 0 1 1 399 505 0 5 158 0 45 0 64 56 234934 2536340 uhn chn chn chn xhn uhn 0 1 2 3 1 4 1 flpchn invchn 1 1 1 1 2 2 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Great Hauberk 100 0 2 1 395 501 1 0 118 0 50 0 75 67 272206 2676189 urs brs brs brs xrs urs 0 1 2 3 1 4 1 flpbrs invbrs 0 0 2 0 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Balrog Skin 100 0 1 1 410 517 0 5 165 0 30 0 77 69 289059 2882894 upl spl spl spl xpl upl 0 1 2 3 1 4 1 flpspl invspl 1 1 2 1 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Hellforged Plate 100 0 1 1 421 530 0 10 196 0 60 0 79 71 303932 3197721 ult plt plt plt xlt ult 0 1 2 3 1 4 1 flpplt invplt 2 2 2 2 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Kraken Shell 100 0 3 1 417 523 2 5 174 0 48 0 81 73 308015 3411990 uld fld fld fld xld uld 0 1 2 3 1 4 1 flpfld invfld 1 1 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Lacquered Plate 100 0 3 1 433 541 0 5 208 0 55 0 84 76 330885 3803464 uth gth gth gth xth uth 0 1 2 3 1 4 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Shadow Plate 100 0 1 1 446 557 2 10 230 0 70 0 86 78 348675 4274953 uul ful ful ful xul uul 0 1 2 3 1 4 1 flpful invful 2 2 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Sacred Armor 100 0 4 1 487 600 5 5 232 0 60 0 88 80 386598 4872212 uar aar aar aar xar uar 0 1 2 3 1 4 1 flpaar invaar invaaru invaaru 1 2 2 2 2 0 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Archon Plate 100 0 2 1 410 524 1 0 103 0 60 0 85 77 321262 3851372 utp ltp ltp ltp xtp utp 0 1 2 3 1 4 1 flpltp invltp 2 0 1 1 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Heater 100 0 1 1 81 100 0 0 77 22 88 0 66 58 48163 385227 uuc buc buc buc xuc uuc 0 7 2 2 1 1 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 16 30 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 0 0 1
Luna 100 0 1 1 84 103 0 0 100 20 84 0 68 60 51237 436543 uml buc buc sml xml uml 0 7 2 2 1 2 2 flpsml invsml invsmlu invsmlu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 17 29 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 5 0 xxx xxx 0 0 1
Hyperion 100 0 1 1 87 106 0 5 127 24 82 0 72 64 55938 514278 urg lrg lrg lrg xrg urg 0 7 2 3 1 3 2 flplrg invlrg invlrgu invlrgu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 14 32 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
Monarch 100 0 2 1 90 109 0 0 156 22 86 0 74 66 59244 576154 uit kit kit kit xit uit 0 7 2 3 1 3 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 12 34 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
Aegis 100 0 2 1 94 114 1 10 219 24 92 0 78 70 65430 693568 uow tow tow tow xow uow 0 7 2 3 1 3 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 18 28 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
Ward 100 0 3 1 100 121 0 5 185 24 100 0 82 74 73270 856602 uts kit kit gts xts uts 0 7 2 4 1 3 2 flpgts invgts invgtsu invutss 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 11 35 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
Bramble Mitts 100 0 1 1 54 62 0 0 50 0 12 0 67 59 31570 269938 ulg lgl lgl lgl xlg ulg 0 16 2 2 0 0 0 flplgl invlgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Vampirebone Gloves 100 0 1 1 56 65 0 0 50 0 14 0 69 61 33760 306103 uvg vgl vgl vgl xvg uvg 0 16 2 2 0 0 0 flpvgl invvgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Vambraces 100 0 2 1 59 67 0 0 106 0 16 0 72 64 36467 352152 umg mgl mgl mgl xmg umg 0 16 2 2 0 0 0 flpmgl invmgl 0 0 0 0 0 glov 35 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Crusader Gauntlets 100 0 2 1 59 68 0 0 151 0 18 0 77 69 39629 420620 utg mgl mgl tgl xtg utg 0 16 2 2 0 0 0 flptgl invtgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Ogre Gauntlets 100 0 3 1 62 71 0 0 185 0 24 0 81 73 43357 498191 uhg hgl hgl hgl xhg uhg 0 16 2 2 0 0 0 flphgl invhgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Wyrmhide Boots 100 0 1 1 54 62 0 0 50 0 12 0 67 59 31570 269938 ulb lbt lbt lbt xlb ulb 0 16 2 2 0 0 0 flplbt invlbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 23 38 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Scarabshell Boots 100 0 1 1 56 65 0 0 91 0 14 0 69 61 33720 305620 uvb vbt vbt vbt xvb uvb 0 16 2 2 0 0 0 flpvbt invvbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 24 40 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Boneweave Boots 100 0 2 1 59 67 0 0 118 0 16 0 72 64 36456 352010 umb mbt mbt mbt xmb umb 0 16 2 2 0 0 0 flpmbt invmbt 0 0 0 0 0 boot 33 0 0 5 0 0 0 0 0 6 0 26 42 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Mirrored Boots 100 0 2 1 59 68 0 0 163 0 18 0 77 69 39618 420465 utb mbt mbt tbt xtb utb 0 16 2 2 0 0 0 flptbt invtbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 28 46 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Myrmidon Greaves 100 0 3 1 62 71 0 0 208 0 24 0 81 73 43335 497859 uhb hbt hbt hbt xhb uhb 0 16 2 2 0 0 0 flphbt invhbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 30 50 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Spiderweb Sash 100 0 1 1 55 62 0 0 50 0 12 0 67 59 31638 270466 ulc lbl lbl lbl zlb ulc 0 16 2 1 0 0 0 flplbl invlbl 0 0 0 0 0 belt 17 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Vampirefang Belt 100 0 1 1 56 63 0 0 50 0 14 0 69 61 33130 300879 uvc vbl vbl vbl zvb uvc 0 16 2 1 0 0 0 flpvbl invvbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Mithril Coil 100 0 2 1 58 65 0 0 106 0 16 0 72 64 35664 345000 umc mbl mbl mbl zmb umc 0 16 2 1 0 0 0 flpmbl invmbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Troll Belt 100 0 2 1 59 66 0 0 151 0 18 0 77 69 38693 411380 utc mbl mbl tbl ztb utc 0 16 2 1 0 0 0 flptbl invtbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Colossus Girdle 100 0 3 1 61 71 0 0 185 0 24 0 81 73 42947 493775 uhc hbl hbl hbl zhb uhc 0 16 2 1 0 0 0 flphbl invhbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
Bone Visage 100 0 4 1 70 108 0 0 106 0 40 0 78 70 55984 598161 uh9 bhm bhm bhm xh9 uh9 0 0 2 2 0 0 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm 12 0 0 5 0 2 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Troll Nest 100 0 4 1 65 120 0 0 106 20 74 0 76 68 56874 586580 ush bsh bsh bsh xsh ush 0 7 2 3 0 0 2 flpbsh invbsh invbshu invbshu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 24 38 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Blade Barrier 100 0 4 1 69 84 0 0 118 20 83 0 72 64 44413 413914 upk spk spk spk xpk upk 0 7 2 3 0 0 2 flpspk invspk invspku invspku 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 26 40 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
Alpha Helm 100 0 2 1 52 62 0 0 44 0 20 0 28 20 13122 82061 dr6 dr1 dr1 dr1 dr6 drb 0 0 2 2 1 3 1 flpdr1 invdr1 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 0 0 xxx xxx 0 0 1
Griffon Headress 100 0 3 1 46 68 0 0 50 0 20 0 31 23 14478 82062 dr7 dr4 dr4 dr2 dr7 drc 0 0 2 2 1 3 1 flpdr4 invdr2 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 0 0 xxx xxx 0 0 1
Hunter's Guise 100 0 3 1 67 81 0 0 56 0 20 0 37 29 22440 82063 dr8 dr3 dr3 dr3 dr8 drd 0 0 2 2 1 3 1 flpdr3 invdr3 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Sacred Feathers 100 0 4 1 58 87 0 0 62 0 20 0 40 32 23718 82064 dr9 dr4 dr4 dr4 dr9 dre 0 0 2 2 1 3 1 flpdr4 invdr4 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Totemic Mask 100 0 5 1 73 98 0 0 65 0 20 0 43 35 29943 82065 dra dr1 dr1 dr5 dra drf 0 0 2 2 1 3 1 flpdr1 invdr5 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Jawbone Visor 100 0 2 1 55 68 0 0 58 0 25 0 28 20 14153 82061 ba6 ba1 dr1 ba1 ba6 bab 0 0 2 2 1 3 1 flpba1 invba1 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 5 0 0 xxx xxx 0 0 1
Lion Helm 100 0 3 1 63 75 0 0 73 0 35 0 31 23 17528 82062 ba7 ba1 bhm ba2 ba7 bac 0 0 2 2 1 3 1 flpba1 invba2 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 5 0 0 xxx xxx 0 0 1
Rage Mask 100 0 3 1 78 90 0 0 88 0 45 0 37 29 25373 82063 ba8 ba3 bhm ba3 ba8 bad 0 0 2 2 1 3 1 flpba3 invba3 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Savage Helmet 100 0 4 1 85 98 0 0 103 0 50 0 40 32 29828 82064 ba9 ba5 bhm ba4 ba9 bae 0 0 2 2 1 3 1 flpba5 invba4 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Slayer Guard 100 0 5 1 93 120 0 0 118 0 55 0 43 35 37283 82065 baa ba5 bhm ba5 baa baf 0 0 2 2 1 3 1 flpba5 invba5 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Akaran Targe 100 0 2 1 47 58 0 0 44 10 20 0 28 20 12136 82065 pa6 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 4 2 flppa1 invpa1 0 0 0 0 0 ashd 18 0 0 5 0 1 0 0 0 1 0 12 16 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 xxx xxx 0 0 1
Akaran Rondache 100 0 3 1 50 67 0 0 59 15 30 0 31 23 14917 82066 pa7 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 4 2 flppa1 invpa2 0 0 0 0 0 ashd 18 0 0 5 0 2 0 0 0 1 0 15 20 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 xxx xxx 0 0 1
Protector Shield 100 0 3 1 59 79 0 0 69 20 40 0 37 29 20907 82067 pa8 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 4 2 flppa3 invpa3 0 0 0 0 0 ashd 18 0 0 5 0 3 0 0 0 1 0 18 24 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Guilded Shield 100 0 4 1 74 94 0 0 89 22 50 0 40 32 27463 82068 pa9 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 4 2 flppa3 invpa4 0 0 0 0 0 ashd 18 0 0 5 0 4 0 0 0 1 0 20 28 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Royal Shield 100 0 5 1 80 100 0 0 114 25 60 0 43 35 31566 82069 paa 304 pa5 spk pa5 paa paf 0 7 2 2 1 4 2 flppa5 invpa5 0 0 0 0 0 ashd 18 0 0 5 0 5 0 0 0 1 0 24 32 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Mummified Trophy 100 0 2 1 38 48 0 0 38 3 20 0 28 20 9880 82069 ne6 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 2 2 flpne1 invne1 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 0 0 xxx xxx 0 0 1
Fetish Trophy 100 0 3 1 41 52 0 0 41 5 20 0 31 23 11863 82070 ne7 305 ne2 bhm ne2 ne7 nec 0 10 2 2 1 2 2 flpne2 invne2 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 0 0 xxx xxx 0 0 1
Sexton Trophy 100 0 3 1 44 55 0 0 47 8 20 0 37 29 15001 82071 ne8 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 2 2 flpne3 invne3 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Cantor Trophy 100 0 4 1 50 64 0 0 50 10 20 0 40 32 18646 82072 ne9 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 2 2 flpne3 invne4 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Heirophant Trophy 100 0 5 1 58 70 0 0 58 12 20 0 43 35 22383 82073 nea 305 ne2 bhm ne5 nea nef 0 10 2 2 1 2 2 flpne2 invne5 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Blood Spirt 100 0 2 1 101 145 0 0 86 0 20 0 56 48 55865 413914 drb dr1 dr1 dr1 dr6 drb 0 0 2 2 1 3 1 flpdr1 invdr1 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Sun Spirit 100 0 3 1 98 147 0 0 95 0 20 0 58 50 58065 413915 drc dr4 dr4 dr2 dr7 drc 0 0 2 2 1 3 1 flpdr4 invdr2 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Earth Spirit 100 0 3 1 107 152 0 0 104 0 20 0 63 55 65992 413916 drd dr3 dr3 dr3 dr8 drd 0 0 2 2 1 3 1 flpdr3 invdr3 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Sky Spirit 100 0 4 1 103 155 0 0 113 0 20 0 65 57 67999 413917 dre dr4 dr4 dr4 dr9 dre 0 0 2 2 1 3 1 flpdr4 invdr4 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Dream Spirit 100 0 5 1 109 159 0 0 118 0 20 0 67 59 73101 413918 drf dr1 dr1 dr5 dra drf 0 0 2 2 1 3 1 flpdr1 invdr5 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Carnage Helm 100 0 2 1 102 147 0 0 106 0 25 0 56 48 56666 413918 bab ba1 dr1 ba1 ba6 bab 0 0 2 2 1 3 1 flpba1 invba1 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Fury Visor 100 0 3 1 105 150 0 0 129 0 35 0 58 50 60306 413919 bac ba1 bhm ba2 ba7 bac 0 0 2 2 1 3 1 flpba1 invba2 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Destroyer Helm 100 0 3 1 111 156 0 0 151 0 45 0 63 55 67934 413920 bad ba3 bhm ba3 ba8 bad 0 0 2 2 1 3 1 flpba3 invba3 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Conquerer Crown 100 0 4 1 114 159 0 0 174 0 50 0 65 57 71898 413921 bae ba5 bhm ba4 ba9 bae 0 0 2 2 1 3 1 flpba5 invba4 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Guardian Crown 100 0 5 1 117 168 0 0 196 0 55 0 67 59 77609 413922 baf ba5 bhm ba5 baa baf 0 0 2 2 1 3 1 flpba5 invba5 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
Sacred Targe 100 0 2 1 84 104 0 0 86 10 20 0 56 48 42778 82065 pab 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 4 2 flppa1 invpa1 0 0 0 0 0 ashd 18 0 0 5 0 1 0 0 0 1 0 22 70 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Sacred Rondache 100 0 3 1 85 109 0 0 109 15 30 0 58 50 45675 82066 pac 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 4 2 flppa1 invpa2 0 0 0 0 0 ashd 18 0 0 5 0 2 0 0 0 1 0 35 58 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Ancient Shield 100 0 3 1 90 115 0 0 124 20 40 0 62 55 51536 82067 pad 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 4 2 flppa3 invpa3 0 0 0 0 0 ashd 18 0 0 5 0 3 0 0 0 1 0 10 82 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Zakarum Shield 100 0 4 1 97 122 0 0 142 22 50 0 65 57 57674 82068 pae 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 4 2 flppa3 invpa4 0 0 0 0 0 ashd 18 0 0 5 0 4 0 0 0 1 0 46 46 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Vortex Shield 100 0 5 1 100 125 0 0 148 25 60 0 67 59 61052 82069 paf 304 pa5 spk pa5 paa paf 0 7 2 2 1 4 2 flppa5 invpa5 0 0 0 0 0 ashd 18 0 0 5 0 5 0 0 0 1 0 5 87 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
Minion Skull 100 0 2 1 95 139 0 0 77 3 20 0 56 48 53321 82069 neb 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 2 2 flpne1 invne1 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Hellspawn Skull 100 0 3 1 96 141 0 0 82 5 20 0 58 50 55898 82070 nec 305 ne2 bhm ne2 ne7 nec 0 10 2 2 1 2 2 flpne2 invne2 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Overseer Skull 100 0 3 1 98 142 0 0 91 8 20 0 62 55 60289 82071 ned 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 2 2 flpne3 invne3 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Succubae Skull 100 0 4 1 100 146 0 0 95 10 20 0 65 57 64743 82072 nee 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 2 2 flpne3 invne4 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
Bloodlord Skull 100 0 5 1 103 148 0 0 106 12 20 0 67 59 68166 82073 nef 305 ne2 bhm ne5 nea nef 0 10 2 2 1 2 2 flpne2 invne5 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1

3288
txt/AutoMap.txt Normal file

File diff suppressed because it is too large Load Diff

4
txt/Books.txt Normal file
View File

@ -0,0 +1,4 @@
Name Namco Completed ScrollSpellCode BookSpellCode SpellOffset SpellIcon SkillScrollOffset SkillBookOffset BaseCost CostPerCharge
unused of Town Portal 1 tsc tbk 0 -1 0 0 250 50
unused of Identify 1 isc ibk 0 0 0 0 200 40
unused of Ressurect 0 0 -1 0 0 500 100

9
txt/CharStats.txt Normal file
View File

@ -0,0 +1,9 @@
class str dex int vit tot stamina hpadd PercentStr PercentDex PercentInt PercentVit ManaRegen ToHitFactor WalkVelocity RunVelocity RunDrain Comment LifePerLevel StaminaPerLevel ManaPerLevel LifePerVitality StaminaPerVitality ManaPerMagic #walk #run #swing #spell #gethit #bow BlockFactor StartSkill baseWClass item1 item1loc item1count item2 item2loc item2count item3 item3loc item3count item4 item4loc item4count item5 item5loc item5count item6 item6loc item6count item7 item7loc item7count item8 item8loc item8count item9 item9loc item9count item10 item10loc item10count
Amazon 20 25 15 20 80 84 30 30 35 15 20 120 5 6 9 20 The following are in fourths 8 4 6 12 4 6 6 4 16 20 6 14 25 0 hth jav rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
Sorceress 10 25 35 10 80 74 30 25 30 30 15 120 -15 6 9 20 The following are in fourths 4 4 8 8 4 8 8 5 20 14 8 18 20 0 hth sst rarm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0 0 0
Necromancer 15 25 25 15 80 79 30 20 30 30 20 120 -10 6 9 20 The following are in fourths 6 4 8 8 4 8 9 5 19 16 7 17 20 0 hth wnd rarm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0 0 0
Paladin 25 20 15 25 85 89 30 30 20 20 30 120 20 6 9 20 The following are in fourths 8 4 6 12 4 6 8 5 17 18 4 17 30 0 hth ssd rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
Barbarian 30 20 10 25 85 92 30 35 30 10 25 120 20 6 9 20 The following are in fourths 8 4 4 16 4 4 7 4 15 22 5 16 25 0 hth hax rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
Expansion 0
Druid 15 20 20 25 80 84 30 20 30 30 20 120 5 6 9 20 The following are in fourths 6 4 8 8 4 8 9 5 19 16 7 17 20 222 hth clb rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
Assassin 20 20 25 20 85 95 30 25 15 35 25 120 15 6 9 15 The following are in fourths 8 5 6 12 5 7 6 4 16 20 6 14 25 254 hth ktr rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0

31
txt/CharTemplate.txt Normal file
View File

@ -0,0 +1,31 @@
Template Name Level Act Class str dex int vit tot LifePerLevel ManaPerLevel LifePerVitality ManaPerMagic Hitpoints Mana ManaRegenBonus Velocity AttackRate OtherRate RightSkill Total Skills SkillName Skill1 SkillLevel1 SkillName Skill2 SkillLevel2 SkillName Skill3 SkillLevel3 SkillName Skill4 SkillLevel4 SkillName Skill5 SkillLevel5 SkillName Skill6 SkillLevel6 SkillName Skill7 SkillLevel7 SkillName Skill8 SkillLevel8 SkillName Skill9 SkillLevel9 baseWClass item1 item1loc item1count item2 item2loc item2count item3 item3loc item3count item4 item4loc item4count item5 item5loc item5count item6 item6loc item6count item7 item7loc item7count item8 item8loc item8count item9 item9loc item9count item10 item10loc item10count item11 item11loc item11count item12 item12loc item12count item13 item13loc item13count item14 item14loc item14count item15 item15loc item15count
Amazon Bow Unwritten 3 ama 22 32 19 22 95 18 3 5 4 36 21 0 100 100 100 0 3 Fire Arrow 7 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sbw 4 1 aqv 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Amazon Spear Unwritten 3 ama 27 28 15 25 95 18 3 5 4 40 17 0 100 100 100 0 3 Jab 10 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth spr 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Amazon Javelin Unwritten 3 ama 23 32 17 23 95 18 3 5 4 37 19 0 100 100 100 0 3 Jab 10 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth jav 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Sorceress Fire Unwritten 3 sor 10 30 40 15 95 12 8 4 8 24 56 0 100 100 100 0 4 Firebolt 36 3 Warmth 37 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sst 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Sorceress Cold Unwritten 3 sor 10 30 40 15 95 12 8 4 8 24 56 0 100 100 100 0 4 Ice Bolt 39 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sst 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Sorceress Lightning Unwritten 3 sor 10 30 40 15 95 12 8 4 8 24 56 0 100 100 100 0 4 Charged Bolt 38 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sst 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Necromancer Unwritten 3 nec 17 26 35 17 95 12 6 4 8 26 50 0 100 100 100 0 4 Teeth 67 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth dgr 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Necromancer Unwritten 3 nec 17 26 35 17 95 12 6 4 8 26 50 0 100 100 100 0 4 Teeth 67 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth dgr 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Necromancer Unwritten 3 nec 17 26 35 17 95 12 6 4 8 26 50 0 100 100 100 0 4 Teeth 67 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth dgr 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Paladin fighter Unwritten 3 pal 28 20 15 42 105 24 4 8 5 67 18 0 100 100 100 0 3 Sacrifice 96 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth scm 4 1 buc 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Paladin heal Unwritten 3 pal 28 15 20 42 105 24 4 8 5 67 24 0 100 100 100 0 3 Pray 97 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth ssd 4 1 buc 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Paladin fighter Unwritten 3 pal 28 25 15 37 105 24 4 8 5 57 18 0 100 100 100 0 3 Smite 98 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sbr 4 1 buc 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barbarian axe Unwritten 3 bar 40 20 15 25 100 18 2 6 4 39 17 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth lax 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barbarian sword Unwritten 3 bar 35 25 15 25 100 18 2 6 4 39 17 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth lsd 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barbarian mace Unwritten 3 bar 35 25 15 25 100 18 2 6 4 39 17 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth mac 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Amazon Bow Unwritten 9 ama 20 25 15 20 80 18 3 5 4 61 15 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sbw 4 1 aqv 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Amazon Spear Unwritten 9 ama 20 25 15 20 80 18 3 5 4 61 15 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sbw 4 1 aqv 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Amazon Javelin Unwritten 9 ama 20 25 15 20 80 18 3 5 4 61 15 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sbw 4 1 aqv 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Sorceress Fire Unwritten 9 sor 10 30 30 10 80 12 8 4 8 37 30 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sst 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Sorceress Cold Unwritten 9 sor 10 30 30 10 80 12 8 4 8 37 30 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sst 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Sorceress Lightning Unwritten 9 sor 10 30 30 10 80 12 8 4 8 37 30 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth sst 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Necromancer Unwritten 9 nec 15 25 25 15 80 12 6 4 8 42 25 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth dgr 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Necromancer Unwritten 9 nec 15 25 25 15 80 12 6 4 8 42 25 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth dgr 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Necromancer Unwritten 9 nec 15 25 25 15 80 12 6 4 8 42 25 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth dgr 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Paladin Unwritten 9 pal 25 15 15 35 90 24 4 8 5 89 15 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth ssd 4 1 buc 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Paladin Unwritten 9 pal 25 15 15 35 90 24 4 8 5 89 15 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth ssd 4 1 buc 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Paladin Unwritten 9 pal 25 15 15 35 90 24 4 8 5 89 15 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth ssd 4 1 buc 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barbarian Unwritten 9 bar 35 15 10 25 85 18 2 6 4 66 10 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth axe 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barbarian Unwritten 9 bar 35 15 10 25 85 18 2 6 4 66 10 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth axe 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barbarian Unwritten 9 bar 35 15 10 25 85 18 2 6 4 66 10 0 100 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hth axe 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

116
txt/CompCode.txt Normal file
View File

@ -0,0 +1,116 @@
component code
nil nil
light lit
medium med
heavy hev
heavy hvy
skarmor des
roguearmor/brhead brv
axe axe
flail fla
handaxe hax
mace mac
scimitar scm
buckler buc
large shield lrg
kite shield kit
small shield sml
long sword lsd
wand wnd
short sword ssd
club clb
torch tch
battleaxe btx
halberd hal
large axe lax
maul mau
scythe scy
war hammer whm
whip whp
javelin jav
exploding pot opl
gas potion gpl
short bow sbw
long bow lbw
long battle bow lbb
short battle bow sbb
pike pik
spear spr
trident tri
falchion flc
saber sbr
glaive glv
poleaxe pax
broad sword bsd
flamberge flb
waraxe wax
warscythe wsc
warsword wsd
claymore clm
dk weapon smc
skmage fire fir
skmage ltng lht
skmage cold cld
skmage pois pos
dk rh spell rsp
dk lh spell lsp
dk unholy unh
dk part rsg
misc part 1 bld
misc part 2 shr
misc part 3 lhr
misc part 4 hbd
misc part 5 tkt
headress1 bab
headress2 pha
headress3 fan
headress4 pon
zealot head 1 hd1
zealot head 2 hd2
zealot head 3 hd3
zealot head 4 hd4
zealot torso 1 zz1
zealot torso 2 zz2
zealot torso 3 zz3
zealot torso 4 zz4
zealot torso 5 zz5
zealot torso 6 zz6
zealot torso 7 zz7
flying scim red
thornhulkhead2 th2
thornhulkhead3 th3
thornhulkhead4 th4
thornhulkhead5 th5
fetish weap 1 fbl
fetish weap 2 fsp
young npc head yng
old npc head old
bearded npc head brd
goatee npc head got
npc part 1 fez
npc part 2 rol
npc part 3 bsk
npc part 4 buk
npc part 5 sak
npc part 6 ban
npc part 7 fsh
npc part 8 snk
fem brown hair brn
fem black hair blk
fem npc leg 1 srt
fem npc leg 2 lng
fem npc leg 3 dln
fem npc tor 1 btp
fem npc tor 2 mtp
fem npc tor 3 stp
fem npc tor 4 svt
dk head 1 col
dk head 2 hod
dk head 3 hrn
siege beast tr lnk
siege beast s1 tur
siege beast s3 mlk
full helm fhm
great helm ghm
pow hand bhn
pow head hed

17
txt/Composit.txt Normal file
View File

@ -0,0 +1,17 @@
Name Token
Head HD
Torso TR
Legs LG
RightArm RA
LeftArm LA
RightHand RH
LeftHand LH
Shield SH
Special1 S1
Special2 S2
Special3 S3
Special4 S4
Special5 S5
Special6 S6
Special7 S7
Special8 S8

272
txt/CubeMain.txt Normal file
View File

@ -0,0 +1,272 @@
Description enabled numinputs min difficulty expansion start day stop day day of week playerclass require a code a number of a modifier a param1 a param2 a sockets a gem 1 a gem 2 a gem 3 a gem 4 a gem 5 a gem 6 a require b code b number of b modifier b param1 b param2 b sockets b gem 1 b gem 2 b gem 3 b gem 4 b gem 5 b gem 6 b require c code c number of c modifier c param1 c param2 c sockets c gem 1 c gem 2 c gem 3 c gem 4 c gem 5 c gem 6 c require d code d number of d modifier d param1 d param2 d sockets d gem 1 d gem 2 d gem 3 d gem 4 d gem 5 d gem 6 d require e code e number of e modifier e param1 e param2 e sockets e gem 1 e gem 2 e gem 3 e gem 4 e gem 5 e gem 6 e require f code f number of f modifier f param1 f param2 f sockets f gem 1 f gem 2 f gem 3 f gem 4 f gem 5 f gem 6 f require g code g number of g modifier g param1 g param 2 g gem 1 g gem 2 g gem 3 g gem 4 g gem 5 g gem 6 g function product a product code a mods a uses a fixedlevel a playerlevel pct a itemlevel pct a pmod1a pmod2a psocketsa mod1a mod1achance mod1aparam mod1amin mod1amax mod2a mod2achance mod2aparam mod2amin mod2amax mod3a mod3achance mod3aparam mod3amin mod3amax mod4a mod4achance mod4aparam mod4amin mod4amax mod5a mod5achance mod5aparam mod5amin mod5amax product b product code b mods b uses b fixedlevel b playerlevel pct b itemlevel pct b pmod1b pmod2b psocketsb mod1b mod1bchance mod1bparam mod1bmin mod1bmax mod2b mod2bchance mod2bparam mod2bmin mod2bmax mod3b mod3bchance mod3bparam mod3bmin mod3bmax mod4b mod4bchance mod4bparam mod4bmin mod4bmax mod5b mod5bchance mod5bparam mod5bmin mod5bmax
Staff of Kings + Viper amulet -> Horadric Staff 1 2 0 0 0 0 0 itm msf 1 0 0 0 itm vip 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 hst 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Khalim Flail + Khalim Heart + Khalim Eye + Khalim Brain -> Super Khalim Flail 1 4 0 0 0 0 0 itm qf1 1 0 0 0 itm qhr 1 0 0 0 itm qey 1 0 0 0 itm qbr 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 qf2 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
1 Wirt's leg + 1 town portal book -> portal to cow lvl 1 2 0 0 0 0 0 itm leg 1 0 0 0 itm tbk 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 non 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
3 health potions + 3 mana potions + 1 gem -> full rejuvenate potion 1 7 0 0 0 0 0 hpt 3 0 0 0 mpt 3 0 0 0 gem 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rvl 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
3 health potions + 3 mana potions -> rejuvenate potion 1 6 0 0 0 0 0 hpt 3 0 0 0 mpt 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rvs 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
3 small rejuvs -> one large 1 3 0 0 0 0 0 itm rvs 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rvl 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
1 perfect gem of each type + 1 amulet -> prismatic amulet 1 7 0 0 0 0 0 itm amu 1 0 0 0 itm gpv 1 0 0 0 itm gpr 1 0 0 0 itm gpb 1 0 0 0 itm gpy 1 0 0 0 itm gpg 1 0 0 0 itm gpw 1 0 0 0 1 amu 0 0 0 66 0 0 res-fire 0 6 36 res-cold 0 6 36 res-ltng 0 6 36 res-pois 0 6 36 res-pois 0 6 36 0 0 0 0 0 0 0 0 0
1 ring + 1 ruby + 1 exploding potions -> garnet ring 1 3 0 0 0 0 0 itm rin 1 0 0 0 gem 1 rub 0 0 0 itm opm 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 0 0 res-fire 0 6 36 0 0 0 0 0 0 0 0 0
1 ring + 1 sapphire + 1 thawing potions-> cobalt ring 1 3 0 0 0 0 0 itm rin 1 0 0 0 gem 1 sap 0 0 0 itm wms 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 0 0 res-cold 0 6 36 0 0 0 0 0 0 0 0 0
1 ring + 2 topaz -> coral ring 1 3 0 0 0 0 0 itm rin 1 0 0 0 gem 2 top 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 0 0 res-ltng 0 6 36 0 0 0 0 0 0 0 0 0
1 ring + 1 emerald + 1 antidote potions -> viridian ring 1 3 0 0 0 0 0 itm rin 1 0 0 0 gem 1 eme 0 0 0 itm yps 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 0 0 res-pois 0 6 36 0 0 0 0 0 0 0 0 0
1 axe + 1 dagger -> throwing axe 1 2 0 0 0 0 0 axe 1 0 0 0 dag 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 tax 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
1 spear + 1 arrow quiver -> javelins 1 2 0 0 0 0 0 spr 1 0 0 0 itm aqv 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 jav 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
3 rings -> amulet 1 3 0 0 0 0 0 itm rin 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 0 mag 0 0 0 0 0 0 0 0 0 0
3 amulets -> ring 1 3 0 0 0 0 0 itm amu 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 0 mag 0 0 0 0 0 0 0 0 0 0
"3 chipped gems + 1 sword -> magic, socketable long sword" 1 4 0 0 0 0 0 swr 1 0 0 0 gem 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lsd 0 0 0 75 0 mag 3 0 0 0 0 0 0 0 0 0
1 magic small shield + 1 spiked club + 2 skulls -> small shield of spikes 1 4 0 0 0 0 0 itm sml 1 mag 0 0 0 itm spc 1 0 0 0 gem 2 sku 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 sml 0 0 0 66 0 mag 1 thorns 0 1 9 0 0 0 0 0 0 0 0 0
4 health potion + 1 ruby + 1 magic sword -> long sword of the leech 1 6 0 0 0 0 0 swr 1 mag 0 0 0 gem 1 rub 0 0 0 hpt 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lsd 0 0 0 66 0 mag 1 lifesteal 0 1 9 0 0 0 0 0 0 0 0 0
1 diamond + 1 kriss + 1 staff + 1 belt -> savage bardiche 1 4 0 0 0 0 0 gem 1 dim 0 0 0 itm kri 1 0 0 0 stf 1 0 0 0 blt 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 bar 0 0 0 66 0 mag 0 dmg% 0 76 96 0 0 0 0 0 0 0 0 0
1 strangling gas potion + 1 health potion -> antidote potion 1 2 0 0 0 0 0 itm gpl 1 0 0 0 hpt 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 yps 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
2 arrows -> bolts 1 2 0 0 0 0 0 itm aqv 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 cqv 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
2 bolts -> arrows 1 2 0 0 0 0 0 itm cqv 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 aqv 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades amethyst 1 3 0 0 0 0 0 gem 3 ame 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gpv 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades amethyst 1 3 0 0 0 0 0 gem 3 ame 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gzv 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades amethyst 1 3 0 0 0 0 0 gem 3 ame 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gsv 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades amethyst 1 3 0 0 0 0 0 gem 3 ame 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gfv 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades ruby 1 3 0 0 0 0 0 gem 3 rub 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gpr 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades ruby 1 3 0 0 0 0 0 gem 3 rub 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 glr 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades ruby 1 3 0 0 0 0 0 gem 3 rub 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gsr 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades ruby 1 3 0 0 0 0 0 gem 3 rub 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gfr 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades sapphire 1 3 0 0 0 0 0 gem 3 sap 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gpb 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades sapphire 1 3 0 0 0 0 0 gem 3 sap 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 glb 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades sapphire 1 3 0 0 0 0 0 gem 3 sap 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gsb 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades sapphire 1 3 0 0 0 0 0 gem 3 sap 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gfb 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades topaz 1 3 0 0 0 0 0 gem 3 top 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gpy 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades topaz 1 3 0 0 0 0 0 gem 3 top 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gly 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades topaz 1 3 0 0 0 0 0 gem 3 top 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gsy 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades topaz 1 3 0 0 0 0 0 gem 3 top 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gfy 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades emerald 1 3 0 0 0 0 0 gem 3 eme 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gpg 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades emerald 1 3 0 0 0 0 0 gem 3 eme 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 glg 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades emerald 1 3 0 0 0 0 0 gem 3 eme 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gsg 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades emerald 1 3 0 0 0 0 0 gem 3 eme 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gfg 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades diamond 1 3 0 0 0 0 0 gem 3 dim 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gpw 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades diamond 1 3 0 0 0 0 0 gem 3 dim 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 glw 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades diamond 1 3 0 0 0 0 0 gem 3 dim 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gsw 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades diamond 1 3 0 0 0 0 0 gem 3 dim 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gfw 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades skull 1 3 0 0 0 0 0 gem 3 sku 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 skz 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades skull 1 3 0 0 0 0 0 gem 3 sku 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 skl 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades skull 1 3 0 0 0 0 0 gem 3 sku 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 sku 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
Gem upgrades skull 1 3 0 0 0 0 0 gem 3 sku 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 skf 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0
3 perfect gems of any type + 1 magic item -> 1 new magic item of the same type 1 4 0 0 0 0 0 itm 1 mag 0 0 0 gem 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 0 0 mag 0 0 0 0 0 0 0 0 0 0
6 perfect skull + 1 rare item -> 1 low quality new rare item of the same type 1 7 0 0 0 0 0 itm 1 rar 0 0 0 gem 6 sku 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 40 40 rar 0 0 0 0 0 0 0 0 0 0
perfect skull + 1 rare item + stone of jordan-> 1 high quality new rare item of the same type 1 3 0 0 0 0 0 itm 1 rar 0 0 0 gem 1 sku 5 0 0 itm rin 1 unq 0 122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 rar 0 0 0 0 0 0 0 0 0 0
3 perfect skull + 1 rare item + stone of jordan-> add 1 socket to rare 1 5 0 0 0 0 0 itm 1 rar 0 0 0 gem 3 sku 5 0 0 itm rin 1 unq 0 122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 1 0 0 0 0 rar 1 0 0 0 0 0 0 0 0 0
rin + jew + r01 + r15 -> crf ass rin 1 0 4 0 1 0 0 0 ass itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 regen-mana 0 6 18 ass 10 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r01 + r15 + r16 -> crf ass rin 2 0 5 1 1 0 0 0 ass itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r15 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 regen-mana 0 6 36 ass 33 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r02 + r15 -> crf dru rin 1 0 4 0 1 0 0 0 dru itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 regen 0 3 9 dru 10 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r02 + r15 + r16 -> crf dru rin 2 0 5 1 1 0 0 0 dru itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r15 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 regen 0 3 18 dru 33 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r03 + r15 -> crf sor rin 1 0 4 0 1 0 0 0 sor itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 cast1 0 1 1 sor 10 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r03 + r15 + r16 -> crf sor rin 2 0 5 1 1 0 0 0 sor itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r15 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 cast1 0 1 2 sor 33 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r04 + r15 -> crf pal rin 1 0 4 0 1 0 0 0 pal itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 nofreeze 0 1 1 pal 10 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r04 + r15 + r16 -> crf pal rin 2 0 5 1 1 0 0 0 pal itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r15 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 nofreeze 0 1 1 pal 33 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r05 + r15 -> crf bar rin 1 0 4 0 1 0 0 0 bar itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 lifesteal 0 3 6 bar 10 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r05 + r15 + r16 -> crf bar rin 2 0 5 1 1 0 0 0 bar itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r15 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 lifesteal 0 3 12 bar 33 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r06 + r15 -> crf ama rin 1 0 4 0 1 0 0 0 ama itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 manasteal 0 3 6 ama 10 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r06 + r15 + r16 -> crf ama rin 2 0 5 1 1 0 0 0 ama itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r15 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 manasteal 0 3 12 ama 33 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r07 + r15 -> crf nec rin 1 0 4 0 1 0 0 0 nec itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r15 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 mana 0 5 35 nec 10 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r07 + r15 + r16 -> crf nec rin 2 0 5 1 1 0 0 0 nec itm rin 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r15 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 75 75 crf 0 mana 0 5 70 nec 33 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r01 + r14 -> crf ass amu 1 0 4 0 1 0 0 0 ass itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r14 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 deadly/lvl 2 0 0 ass 40 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r01 + r14 + r16 -> crf ass amu 2 0 5 1 1 0 0 0 ass itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r14 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 deadly/lvl 4 0 0 ass 33 1 1 ass 33 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r02 + r14 -> crf dru amu 1 0 4 0 1 0 0 0 dru itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r14 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 enr/lvl 3 0 0 dru 40 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r02 + r14 + r16 -> crf dru amu 2 0 5 1 1 0 0 0 dru itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r14 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 enr/lvl 6 0 0 dru 33 1 1 dru 33 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r03 + r14 -> crf sor amu 1 0 4 0 1 0 0 0 sor itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r14 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 pois-max 0 5 15 pois-len 0 120 120 sor 40 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r03 + r14 + r16 -> crf sor amu 2 0 5 1 1 0 0 0 sor itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r14 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 pois-max 0 10 30 pois-len 0 120 120 sor 33 1 1 sor 33 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r04 + r14 -> crf pal amu 1 0 4 0 1 0 0 0 pal itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r14 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 att 0 50 150 pal 40 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r04 + r14 + r16 -> crf pal amu 2 0 5 1 1 0 0 0 pal itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r14 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 att 0 100 250 pal 33 1 1 pal 33 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r05 + r14 -> crf bar amu 1 0 4 0 1 0 0 0 bar itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r14 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 abs-slash 0 5 10 bar 40 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r05 + r14 + r16 -> crf bar amu 2 0 5 1 1 0 0 0 bar itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r14 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 abs-slash 0 5 20 bar 33 1 1 bar 33 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r06 + r14 -> crf ama amu 1 0 4 0 1 0 0 0 ama itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r14 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 swing1 0 1 1 ama 40 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r06 + r14 + r16 -> crf ama amu 2 0 5 1 1 0 0 0 ama itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r14 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 swing1 0 1 2 ama 33 1 1 ama 33 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r07 + r14 -> crf nec amu 1 0 4 0 1 0 0 0 nec itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r14 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 mana% 0 5 10 nec 40 1 1 0 0 0 0 0 0 0 0 0
amu + jew + r07 + r14 + r16 -> crf nec amu 2 0 5 1 1 0 0 0 nec itm amu 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r14 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 75 75 crf 0 mana% 0 5 20 nec 33 1 1 nec 33 1 1 0 0 0 0 0 0 0 0 0
plt + jew + r01 + r13 -> crf ass body 1 0 4 0 1 0 0 0 ass itm plt 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r13 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 plt 0 0 0 75 75 crf 0 enr/lvl 3 0 0 ac 0 20 40 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
ult + jew + r01 + r13 + r16 -> crf ass body 2 0 5 1 1 0 0 0 ass itm ult 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r13 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 ult 0 0 0 75 75 crf 0 enr/lvl 6 0 0 ac 0 20 120 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
gth + jew + r02 + r13 -> crf dru body 1 0 4 0 1 0 0 0 dru itm gth 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r13 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gth 0 0 0 75 75 crf 0 res-cold 0 6 15 ac 0 20 40 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uth + jew + r02 + r13 + r16 -> crf dru body 2 0 5 1 1 0 0 0 dru itm uth 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r13 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uth 0 0 0 75 75 crf 0 res-cold 0 10 30 ac 0 20 120 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
ltp + jew + r03 + r13 -> crf sor body 1 0 4 0 1 0 0 0 sor itm ltp 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r13 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ltp 0 0 0 75 75 crf 0 str/lvl 2 0 0 ac 0 20 40 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
utp + jew + r03 + r13 + r16 -> crf sor body 2 0 5 1 1 0 0 0 sor itm utp 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r13 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 utp 0 0 0 75 75 crf 0 str/lvl 4 0 0 ac 0 20 120 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
ful + jew + r04 + r13 -> crf pal body 1 0 4 0 1 0 0 0 pal itm ful 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r13 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ful 0 0 0 75 75 crf 0 att/lvl 2 0 0 ac 0 20 40 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uul + jew + r04 + r13 + r16 -> crf pal body 2 0 5 1 1 0 0 0 pal itm uul 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r13 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uul 0 0 0 75 75 crf 0 att/lvl 3 0 0 ac 0 20 120 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
aar + jew + r05 + r13 -> crf bar body 1 0 4 0 1 0 0 0 bar itm aar 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r13 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 aar 0 0 0 75 75 crf 0 ac%/lvl 2 0 0 ac 0 20 40 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uar + jew + r05 + r13 + r16 -> crf bar body 2 0 5 1 1 0 0 0 bar itm uar 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r13 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uar 0 0 0 75 75 crf 0 ac%/lvl 4 0 0 ac 0 20 120 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
fld + jew + r06 + r13 -> crf ama body 1 0 4 0 1 0 0 0 ama itm fld 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r13 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 fld 0 0 0 75 75 crf 0 ac/lvl 3 0 0 ac 0 20 40 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uld + jew + r06 + r13 + r16 -> crf ama body 2 0 5 1 1 0 0 0 ama itm uld 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r13 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uld 0 0 0 75 75 crf 0 ac/lvl 6 0 0 ac 0 20 120 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
chn + jew + r07 + r13 -> crf nec body 1 0 4 0 1 0 0 0 nec itm chn 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r13 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 chn 0 0 0 75 75 crf 0 dex/lvl 2 0 0 ac 0 20 40 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uhn + jew + r07 + r13 + r16 -> crf nec body 2 0 5 1 1 0 0 0 nec itm uhn 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r13 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uhn 0 0 0 75 75 crf 0 dex/lvl 2 0 0 ac 0 20 120 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
fhl + jew + r01 + r12 -> crf ass fhl 1 0 4 0 1 0 0 0 ass itm fhl 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 fhl 0 0 0 75 75 crf 0 mana 0 10 35 ac 0 10 25 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
xhl + jew + r01 + r12 + r16 -> crf ass xhl 2 0 5 1 1 0 0 0 ass itm xhl 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r12 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 xhl 0 0 0 75 75 crf 0 mana 0 10 70 ac 0 10 75 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
ghm + jew + r02 + r12 -> crf dru ghm 1 0 4 0 1 0 0 0 dru itm ghm 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ghm 0 0 0 75 75 crf 0 hp 0 10 35 ac 0 10 25 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
xhx + jew + r02 + r12 + r16 -> crf dru xhx 2 0 5 1 1 0 0 0 dru itm xhx 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r12 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 xhx 0 0 0 75 75 crf 0 hp 0 10 70 ac 0 10 75 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
crn + jew + r03 + r12 -> crf sor crn 1 0 4 0 1 0 0 0 sor itm crn 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 crn 0 0 0 75 75 crf 0 cast1 0 1 1 ac 0 10 25 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
xrn + jew + r03 + r12 + r16 -> crf sor xrn 2 0 5 1 1 0 0 0 sor itm xrn 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r12 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 xrn 0 0 0 75 75 crf 0 cast1 0 1 2 ac 0 10 75 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
msk + jew + r04 + r12 -> crf pal msk 1 0 4 0 1 0 0 0 pal itm msk 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 msk 0 0 0 75 75 crf 0 red-dmg 0 1 4 ac 0 10 25 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
xsk + jew + r04 + r12 + r16 -> crf pal xsk 2 0 5 1 1 0 0 0 pal itm xsk 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r12 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 xsk 0 0 0 75 75 crf 0 red-dmg 0 1 8 ac 0 10 75 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
cap + jew + r05 + r12 -> crf bar cap 1 0 4 0 1 0 0 0 bar itm cap 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 cap 0 0 0 75 75 crf 0 abs-ltng% 0 1 5 ac 0 10 25 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
xap + jew + r05 + r12 + r16 -> crf bar xap 2 0 5 1 1 0 0 0 bar itm xap 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r12 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 xap 0 0 0 75 75 crf 0 abs-ltng% 0 1 10 ac 0 10 75 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
skp + jew + r06 + r12 -> crf ama skp 1 0 4 0 1 0 0 0 ama itm skp 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 skp 0 0 0 75 75 crf 0 swing1 0 1 1 ac 0 10 25 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
xkp + jew + r06 + r12 + r16 -> crf ama xkp 2 0 5 1 1 0 0 0 ama itm xkp 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r12 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 xkp 0 0 0 75 75 crf 0 swing1 0 1 2 ac 0 10 75 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
hlm + jew + r07 + r12 -> crf nec hlm 1 0 4 0 1 0 0 0 nec itm hlm 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 hlm 0 0 0 75 75 crf 0 ac-miss 0 5 12 ac 0 10 25 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
xlm + jew + r07 + r12 + r16 -> crf nec xlm 2 0 5 1 1 0 0 0 nec itm xlm 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r12 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 xlm 0 0 0 75 75 crf 0 ac-miss 0 5 25 ac 0 10 75 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
lbt + jew + r01 + r09 -> crf ass lbt 1 0 4 0 1 0 0 0 ass itm lbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r09 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lbt 0 0 0 75 75 crf 0 knock 0 1 1 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
ulb + jew + r01 + r09 + r16 -> crf ass ulb 2 0 5 1 1 0 0 0 ass itm ulb 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r09 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 ulb 0 0 0 75 75 crf 0 knock 0 1 2 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
lbt + jew + r02 + r09 -> crf dru lbt 1 0 4 0 1 0 0 0 dru itm lbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r09 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lbt 0 0 0 75 75 crf 0 abs-ltng% 0 2 5 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
ulb + jew + r02 + r09 + r16 -> crf dru ulb 2 0 5 1 1 0 0 0 dru itm ulb 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r09 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 ulb 0 0 0 75 75 crf 0 abs-ltng% 0 2 10 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
mbt + jew + r03 + r09 -> crf sor mbt 1 0 4 0 1 0 0 0 sor itm mbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r09 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mbt 0 0 0 75 75 crf 0 pierce-cold 0 5 10 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
umb + jew + r03 + r09 + r16 -> crf sor umb 2 0 5 1 1 0 0 0 sor itm umb 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r09 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 umb 0 0 0 75 75 crf 0 pierce-cold 0 5 20 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
mbt + jew + r04 + r09 -> crf pal mbt 1 0 4 0 1 0 0 0 pal itm mbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r09 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mbt 0 0 0 75 75 crf 0 ac-miss 0 5 12 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
umb + jew + r04 + r09 + r16 -> crf pal umb 2 0 5 1 1 0 0 0 pal itm umb 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r09 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 umb 0 0 0 75 75 crf 0 ac-miss 0 5 25 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
vbt + jew + r05 + r09 -> crf bar vbt 1 0 4 0 1 0 0 0 bar itm vbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r09 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 vbt 0 0 0 75 75 crf 0 abs-fire% 0 2 5 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uvb + jew + r05 + r09 + r16 -> crf bar uvb 2 0 5 1 1 0 0 0 bar itm uvb 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r09 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uvb 0 0 0 75 75 crf 0 abs-fire% 0 2 10 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
vbt + jew + r06 + r09 -> crf ama vbt 1 0 4 0 1 0 0 0 ama itm vbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r09 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 vbt 0 0 0 75 75 crf 0 balance1 0 1 1 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uvb + jew + r06 + r09 + r16 -> crf ama uvb 2 0 5 1 1 0 0 0 ama itm uvb 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r09 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uvb 0 0 0 75 75 crf 0 balance1 0 1 2 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
hbt + jew + r07 + r09 -> crf nec hbt 1 0 4 0 1 0 0 0 nec itm hbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r09 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 hbt 0 0 0 75 75 crf 0 pierce-pois 0 5 10 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uhb + jew + r07 + r09 + r16 -> crf nec uhb 2 0 5 1 1 0 0 0 nec itm uhb 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r09 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uhb 0 0 0 75 75 crf 0 pierce-pois 0 5 20 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
hgl + jew + r01 + r10 -> crf ass hgl 1 0 4 0 1 0 0 0 ass itm hgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 hgl 0 0 0 75 75 crf 0 ac-miss 0 6 12 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uhg + jew + r01 + r10 + r16 -> crf ass uhg 2 0 5 1 1 0 0 0 ass itm uhg 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r10 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uhg 0 0 0 75 75 crf 0 ac-miss 0 6 25 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
mgl + jew + r02 + r10 -> crf dru mgl 1 0 4 0 1 0 0 0 dru itm mgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mgl 0 0 0 75 75 crf 0 abs-fire% 0 2 5 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
umg + jew + r02 + r10 + r16 -> crf dru umg 2 0 5 1 1 0 0 0 dru itm umg 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r10 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 umg 0 0 0 75 75 crf 0 abs-fire% 0 2 10 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
lgl + jew + r03 + r10 -> crf sor lgl 1 0 4 0 1 0 0 0 sor itm lgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lgl 0 0 0 75 75 crf 0 pierce-ltng 0 5 20 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
ulg + jew + r03 + r10 + r16 -> crf sor ulg 2 0 5 1 1 0 0 0 sor itm ulg 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r10 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 ulg 0 0 0 75 75 crf 0 pierce-ltng 0 5 40 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
mgl + jew + r04 + r10 -> crf pal mgl 1 0 4 0 1 0 0 0 pal itm mgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mgl 0 0 0 75 75 crf 0 abs-ltng% 0 2 5 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
umg + jew + r04 + r10 + r16 -> crf pal umg 2 0 5 1 1 0 0 0 pal itm umg 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r10 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 umg 0 0 0 75 75 crf 0 abs-ltng% 0 2 10 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
lgl + jew + r05 + r10 -> crf bar lgl 1 0 4 0 1 0 0 0 bar itm lgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lgl 0 0 0 75 75 crf 0 res-cold 0 2 15 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
ulg + jew + r05 + r10 + r16 -> crf bar ulg 2 0 5 1 1 0 0 0 bar itm ulg 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r10 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 ulg 0 0 0 75 75 crf 0 res-cold 0 6 25 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
vgl + jew + r06 + r10 -> crf ama vgl 1 0 4 0 1 0 0 0 ama itm vgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 vgl 0 0 0 75 75 crf 0 swing1 0 1 2 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uvg + jew + r06 + r10 + r16 -> crf ama uvg 2 0 5 1 1 0 0 0 ama itm uvg 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r10 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uvg 0 0 0 75 75 crf 0 swing1 0 1 3 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
vgl + jew + r07 + r10 -> crf nec vgl 1 0 4 0 1 0 0 0 nec itm vgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r10 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 vgl 0 0 0 75 75 crf 0 pierce-pois 0 5 10 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uvg + jew + r07 + r10 + r16 -> crf nec uvg 2 0 5 1 1 0 0 0 nec itm uvg 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r10 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uvg 0 0 0 75 75 crf 0 pierce-pois 0 5 20 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
lbl + jew + r01 + r11 -> crf ass lbl 1 0 4 0 1 0 0 0 ass itm lbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lbl 0 0 0 75 75 crf 0 ac-hth 0 5 12 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
ulc + jew + r01 + r11 + r16 -> crf ass ulc 2 0 5 1 1 0 0 0 ass itm ulc 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r11 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 ulc 0 0 0 75 75 crf 0 ac-hth 0 5 25 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
hbl + jew + r02 + r11 -> crf dru hbl 1 0 4 0 1 0 0 0 dru itm hbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 hbl 0 0 0 75 75 crf 0 hp/lvl 2 0 0 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uhc + jew + r02 + r11 + r16 -> crf dru uhc 2 0 5 1 1 0 0 0 dru itm uhc 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r11 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uhc 0 0 0 75 75 crf 0 hp/lvl 4 0 0 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
mbl + jew + r03 + r11 -> crf sor mbl 1 0 4 0 1 0 0 0 sor itm mbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mbl 0 0 0 75 75 crf 0 pierce-fire 0 5 10 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
umc + jew + r03 + r11 + r16 -> crf sor umc 2 0 5 1 1 0 0 0 sor itm umc 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r11 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 umc 0 0 0 75 75 crf 0 pierce-fire 0 5 20 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
hbl + jew + r04 + r11 -> crf pal hbl 1 0 4 0 1 0 0 0 pal itm hbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 hbl 0 0 0 75 75 crf 0 abs-fire% 0 2 5 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uhc + jew + r04 + r11 + r16 -> crf pal uhc 2 0 5 1 1 0 0 0 pal itm uhc 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r11 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uhc 0 0 0 75 75 crf 0 abs-fire% 0 2 10 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
mbl + jew + r05 + r11 -> crf bar mbl 1 0 4 0 1 0 0 0 bar itm mbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mbl 0 0 0 75 75 crf 0 howl 0 5 10 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uhc + jew + r05 + r11 + r16 -> crf bar uhc 2 0 5 1 1 0 0 0 bar itm umc 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r11 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uhc 0 0 0 75 75 crf 0 howl 0 10 20 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
vbl + jew + r06 + r11 -> crf ama vbl 1 0 4 0 1 0 0 0 ama itm vbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 vbl 0 0 0 75 75 crf 0 dmg-cold/lvl 2 0 0 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
uvc + jew + r06 + r11 + r16 -> crf ama uvc 2 0 5 1 1 0 0 0 ama itm uvc 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r11 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uvc 0 0 0 75 75 crf 0 dmg-cold/lvl 4 0 0 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
mbl + jew + r07 + r11 -> crf nec mbl 1 0 4 0 1 0 0 0 nec itm mbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mbl 0 0 0 75 75 crf 0 regen-mana 0 5 20 ac 0 5 10 ease 0 -5 -25 ac% 0 10 36 0 0 0 0 0 0 0 0 0
umc + jew + r07 + r11 + r16 -> crf nec umc 2 0 5 1 1 0 0 0 nec itm umc 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r11 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 umc 0 0 0 75 75 crf 0 regen-mana 0 5 40 ac 0 5 30 ease 0 -5 -50 ac% 0 20 101 0 0 0 0 0 0 0 0 0
sml + jew + r01 + r08 -> crf ass sml 1 0 4 0 1 0 0 0 ass itm sml 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r08 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 sml 0 0 0 75 75 crf 0 block 0 3 8 ac 0 5 15 ease 0 -5 -25 ac% 0 10 36 ass 50 0 1 1 0 0 0 0 0 0 0 0 0
uml + jew + r01 + r08 + r16 -> crf ass uml 2 0 5 1 1 0 0 0 ass itm uml 1 rar 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uml 0 0 0 75 75 crf 0 block 0 3 12 ac 0 5 45 ease 0 -5 -50 ac% 0 20 101 ass 25 0 2 2 0 0 0 0 0 0 0 0 0
lrg + jew + r02 + r08 -> crf dru lrg 1 0 4 0 1 0 0 0 dru itm lrg 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r08 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lrg 0 0 0 75 75 crf 0 block 0 3 8 ac 0 5 15 ease 0 -5 -25 ac% 0 10 36 dru 50 0 1 1 0 0 0 0 0 0 0 0 0
urg + jew + r02 + r08 + r16 -> crf dru urg 2 0 5 1 1 0 0 0 dru itm urg 1 rar 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 urg 0 0 0 75 75 crf 0 block 0 3 12 ac 0 5 45 ease 0 -5 -50 ac% 0 20 101 dru 25 0 2 2 0 0 0 0 0 0 0 0 0
buc + jew + r03 + r08 -> crf sor buc 1 0 4 0 1 0 0 0 sor itm buc 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r08 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 buc 0 0 0 75 75 crf 0 cast1 0 1 1 ac 0 5 15 ease 0 -5 -25 ac% 0 10 36 sor 50 0 1 1 0 0 0 0 0 0 0 0 0
uuc + jew + r03 + r08 + r16 -> crf sor uuc 2 0 5 1 1 0 0 0 sor itm uuc 1 rar 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uuc 0 0 0 75 75 crf 0 cast1 0 1 2 ac 0 5 45 ease 0 -5 -50 ac% 0 20 101 sor 25 0 2 2 0 0 0 0 0 0 0 0 0
gts + jew + r04 + r08 -> crf pal gts 1 0 4 0 1 0 0 0 pal itm gts 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r08 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gts 0 0 0 75 75 crf 0 block 0 3 8 ac 0 5 15 ease 0 -5 -25 ac% 0 10 36 pal 50 0 1 1 0 0 0 0 0 0 0 0 0
uts + jew + r04 + r08 + r16 -> crf pal uts 2 0 5 1 1 0 0 0 pal itm uts 1 rar 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uts 0 0 0 75 75 crf 0 block 0 3 12 ac 0 5 45 ease 0 -5 -50 ac% 0 20 101 pal 25 0 2 2 0 0 0 0 0 0 0 0 0
tow + jew + r05 + r08 -> crf bar tow 1 0 4 0 1 0 0 0 bar itm tow 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 tow 0 0 0 75 75 crf 0 block 0 3 8 ac 0 5 15 ease 0 -5 -25 ac% 0 10 36 bar 50 0 1 1 0 0 0 0 0 0 0 0 0
uow + jew + r05 + r08 + r16 -> crf bar uow 2 0 5 1 1 0 0 0 bar itm uow 1 rar 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uow 0 0 0 75 75 crf 0 block 0 3 12 ac 0 5 45 ease 0 -5 -50 ac% 0 20 101 bar 25 0 2 2 0 0 0 0 0 0 0 0 0
kit + jew + r06 + r08 -> crf ama kit 1 0 4 0 1 0 0 0 ama itm kit 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r08 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 kit 0 0 0 75 75 crf 0 block 0 3 8 ac 0 5 15 ease 0 -5 -25 ac% 0 10 36 ama 50 0 1 1 0 0 0 0 0 0 0 0 0
uit + jew + r06 + r08 + r16 -> crf ama uit 2 0 5 1 1 0 0 0 ama itm uit 1 rar 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uit 0 0 0 75 75 crf 0 block 0 3 12 ac 0 5 45 ease 0 -5 -50 ac% 0 20 101 ama 25 0 2 2 0 0 0 0 0 0 0 0 0
gts + jew + r07 + r08 -> crf nec gts 1 0 4 0 1 0 0 0 nec itm gts 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r08 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gts 0 0 0 75 75 crf 0 cast1 0 1 1 ac 0 5 15 ease 0 -5 -25 ac% 0 10 36 nec 50 0 1 1 0 0 0 0 0 0 0 0 0
uts + jew + r07 + r08 + r16 -> crf nec uts 2 0 5 1 1 0 0 0 nec itm uts 1 rar 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 0 0 0 0 0 0 0 0 1 uts 0 0 0 75 75 crf 0 cast1 0 1 2 ac 0 5 45 ease 0 -5 -50 ac% 0 20 101 nec 25 0 2 2 0 0 0 0 0 0 0 0 0
wax + r05 + r08 + r16 + r17 -> crf wax 0 5 0 1 0 0 0 itm wax 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r17 1 0 0 0 0 0 0 0 0 0 0 0 1 wax 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
gix + r05 + r08 + r16 + r18 -> crf gix 0 5 0 1 0 0 0 itm gix 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 gix 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 2 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
gwn + r07 + r08 + r16 + r17 -> crf gwn 0 5 0 1 0 0 0 itm gwn 1 rar 0 0 0 itm r07 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r17 1 0 0 0 0 0 0 0 0 0 0 0 1 gwn 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
wsp + r04 + r08 + r16 + r17 -> crf wsp 0 5 0 1 0 0 0 itm wsp 1 rar 0 0 0 itm r04 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r17 1 0 0 0 0 0 0 0 0 0 0 0 1 wsp 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
fla + r04 + r08 + r16 + r18 -> crf fla 0 5 0 1 0 0 0 itm fla 1 rar 0 0 0 itm r04 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 fla 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
gma + r05 + r08 + r16 + r19 -> crf gma 0 5 0 1 0 0 0 itm gma 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r19 1 0 0 0 0 0 0 0 0 0 0 0 1 gma 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 3 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
wsd + r05 + r08 + r16 + r20 -> crf wsd 0 5 0 1 0 0 0 itm wsd 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r20 1 0 0 0 0 0 0 0 0 0 0 0 1 wsd 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
gsd + r05 + r08 + r16 + r21 -> crf gsd 0 5 0 1 0 0 0 itm gsd 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r21 1 0 0 0 0 0 0 0 0 0 0 0 1 gsd 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 3 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
bld + r07 + r08 + r16 + r18 -> crf bld 0 5 0 1 0 0 0 itm bld 1 rar 0 0 0 itm r07 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 bld 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
pik + r06 + r08 + r16 + r17 -> crf pik 0 5 0 1 0 0 0 itm pik 1 rar 0 0 0 itm r06 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r17 1 0 0 0 0 0 0 0 0 0 0 0 1 pik 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 4 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
wsc + r05 + r08 + r16 + r22 -> crf wsc 0 5 0 1 0 0 0 itm wsc 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r22 1 0 0 0 0 0 0 0 0 0 0 0 1 wsc 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
wst + r03 + r08 + r16 + r17 -> crf wst 0 5 0 1 0 0 0 itm wst 1 rar 0 0 0 itm r03 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r17 1 0 0 0 0 0 0 0 0 0 0 0 1 wst 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 3 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
lwb + r06 + r08 + r16 + r18 -> crf lwb 0 5 0 1 0 0 0 itm lwb 1 rar 0 0 0 itm r06 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 lwb 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 2 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
skr + r01 + r08 + r16 + r17 -> crf skr 0 5 0 1 0 0 0 itm skr 1 rar 0 0 0 itm r01 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r17 1 0 0 0 0 0 0 0 0 0 0 0 1 skr 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 3 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
mxb + r06 + r08 + r16 + r19 -> crf mxb 0 5 0 1 0 0 0 itm mxb 1 rar 0 0 0 itm r06 1 0 0 0 itm r08 1 0 0 0 itm r16 1 0 0 0 itm r19 1 0 0 0 0 0 0 0 0 0 0 0 1 mxb 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 2 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7mp + r05 + r08 + r17 + r18 -> crf 7mp 0 5 0 1 0 0 0 itm 7mp 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 7mp 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7ga + r05 + r08 + r17 + r19 -> crf 7ga 0 5 0 1 0 0 0 itm 7ga 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r19 1 0 0 0 0 0 0 0 0 0 0 0 1 7ga 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7gw + r07 + r08 + r17 + r18 -> crf 7gw 0 5 0 1 0 0 0 itm 7gw 1 rar 0 0 0 itm r07 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 7gw 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 3 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7qs + r04 + r08 + r17 + r18 -> crf 7qs 0 5 0 1 0 0 0 itm 7qs 1 rar 0 0 0 itm r04 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 7qs 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 3 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7mt + r04 + r08 + r17 + r19 -> crf 7mt 0 5 0 1 0 0 0 itm 7mt 1 rar 0 0 0 itm r04 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r19 1 0 0 0 0 0 0 0 0 0 0 0 1 7mt 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 4 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7bs + r05 + r08 + r17 + r20 -> crf 7bs 0 5 0 1 0 0 0 itm 7bs 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r20 1 0 0 0 0 0 0 0 0 0 0 0 1 7bs 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7gd + r05 + r08 + r17 + r21 -> crf 7gd 0 5 0 1 0 0 0 itm 7gd 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r21 1 0 0 0 0 0 0 0 0 0 0 0 1 7gd 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 4 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7di + r07 + r08 + r17 + r19 -> crf 7di 0 5 0 1 0 0 0 itm 7di 1 rar 0 0 0 itm r07 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r19 1 0 0 0 0 0 0 0 0 0 0 0 1 7di 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 5 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7st + r06 + r08 + r17 + r18 -> crf 7st 0 5 0 1 0 0 0 itm 7st 1 rar 0 0 0 itm r06 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 7st 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7h7 + r05 + r08 + r17 + r22 -> crf 7h7 0 5 0 1 0 0 0 itm 7h7 1 rar 0 0 0 itm r05 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r22 1 0 0 0 0 0 0 0 0 0 0 0 1 7h7 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 3 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
6ws + r03 + r08 + r17 + r18 -> crf 6ws 0 5 0 1 0 0 0 itm 6ws 1 rar 0 0 0 itm r03 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 6ws 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 4 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
6sw + r06 + r08 + r17 + r19 -> crf 6sw 0 5 0 1 0 0 0 itm 6sw 1 rar 0 0 0 itm r06 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r19 1 0 0 0 0 0 0 0 0 0 0 0 1 6sw 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 2 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
7tw + r01 + r08 + r17 + r18 -> crf 7tw 0 5 0 1 0 0 0 itm 7tw 1 rar 0 0 0 itm r01 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r18 1 0 0 0 0 0 0 0 0 0 0 0 1 7tw 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 1 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
6hx + r06 + r08 + r17 + r20 -> crf 6hx 0 5 0 1 0 0 0 itm 6hx 1 rar 0 0 0 itm r06 1 0 0 0 itm r08 1 0 0 0 itm r17 1 0 0 0 itm r20 1 0 0 0 0 0 0 0 0 0 0 0 1 6hx 0 0 0 75 75 crf 1 allskills 75 0 1 1 dmg% 0 25 68 att 0 50 200 swing1 0 0 4 allskills 33 0 1 1 0 0 0 0 0 0 0 0 0
fhl + jew + r01 + sap -> hitpower helm 0 4 0 1 0 0 0 itm fhl 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 fhl 0 0 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 knock 1 1 0 0 0 0 0 0 0 0 0
mbt + jew + r02 + sap -> hitpower boots 0 4 0 1 0 0 0 itm mbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mbt 0 0 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 ac-miss 10 20 0 0 0 0 0 0 0 0 0
lgl + jew + r03 + sap -> hitpower gloves 0 4 0 1 0 0 0 itm lgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lgl 0 0 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 ac-hth 10 20 0 0 0 0 0 0 0 0 0
vbl + jew + r04 + sap -> hitpower belt 0 4 0 1 0 0 0 itm vbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 vbl 0 0 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 dmg-to-mana 10 20 0 0 0 0 0 0 0 0 0
gts + jew + r05 + sap -> hitpower shield 0 4 0 1 0 0 0 itm gts 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 gts 0 0 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 block 5 10 0 0 0 0 0 0 0 0 0
ltp + jew + r06 + sap -> hitpower body 0 4 0 1 0 0 0 itm ltp 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ltp 0 0 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 howl 10 20 0 0 0 0 0 0 0 0 0
amu + jew + r07 + sap -> hitpower amulet 0 4 0 1 0 0 0 itm amu 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 balance1 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r08 + sap -> hitpower ring 0 4 0 1 0 0 0 itm rin 1 mag 0 0 0 itm jew 1 0 0 0 itm r08 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 dex 5 10 0 0 0 0 0 0 0 0 0
weapon + jew + r09 + sap -> hitpower weapon 1 4 0 1 0 0 0 wep 1 mag 0 0 0 itm jew 1 0 0 0 itm r09 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 crf 0 gethit-skill 44 5 8 thorns 5 10 dmg% 34 67 0 0 0 0 0 0 0 0 0
ghm + jew + r01 + rub -> blood helm 0 4 0 1 0 0 0 itm ghm 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ghm 0 0 0 66 66 crf 0 lifesteal 1 4 hp 10 20 deadly 5 10 0 0 0 0 0 0 0 0 0
tbt + jew + r02 + rub -> blood boots 1 4 0 1 0 0 0 itm tbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 tbt 0 0 0 66 66 crf 0 lifesteal 1 4 hp 10 20 regen 5 10 0 0 0 0 0 0 0 0 0
vgl + jew + r03 + rub -> blood gloves 1 4 0 1 0 0 0 itm vgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 vgl 0 0 0 66 66 crf 0 lifesteal 1 4 hp 10 20 crush 5 10 0 0 0 0 0 0 0 0 0
mbl + jew + r04 + rub -> blood belt 1 4 0 1 0 0 0 itm mbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mbl 0 0 0 66 66 crf 0 lifesteal 1 4 hp 10 20 openwounds 5 10 0 0 0 0 0 0 0 0 0
tow + jew + r05 + rub -> blood shield 0 4 0 1 0 0 0 itm tow 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 tow 0 0 0 66 66 crf 0 lifesteal 1 4 hp 10 20 thorns 5 10 0 0 0 0 0 0 0 0 0
fld + jew + r06 + rub -> blood body 0 4 0 1 0 0 0 itm fld 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 fld 0 0 0 66 66 crf 0 lifesteal 1 4 hp 10 20 demon-heal 1 3 0 0 0 0 0 0 0 0 0
amu + jew + r07 + rub -> blood amulet 0 4 0 1 0 0 0 itm amu 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 66 66 crf 0 lifesteal 1 4 hp 10 20 move1 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r08 + rub -> blood ring 0 4 0 1 0 0 0 itm rin 1 mag 0 0 0 itm jew 1 0 0 0 itm r08 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 66 crf 0 lifesteal 1 4 hp 10 20 str 5 10 0 0 0 0 0 0 0 0 0
weapon + jew + r09 + rub -> blood weapon 1 4 0 1 0 0 0 wep 1 mag 0 0 0 itm jew 1 0 0 0 itm r09 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 crf 0 lifesteal 1 4 hp 10 20 dmg% 34 67 0 0 0 0 0 0 0 0 0
msk + jew + r01 + ame -> caster helm 0 4 0 1 0 0 0 itm msk 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 msk 0 0 0 66 66 crf 0 regen-mana 4 12 mana 10 20 manasteal 1 4 0 0 0 0 0 0 0 0 0
lbt + jew + r02 + ame -> caster boots 1 4 0 1 0 0 0 itm lbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lbt 0 0 0 66 66 crf 0 regen-mana 4 12 mana 10 20 mana% 5 10 0 0 0 0 0 0 0 0 0
mgl + jew + r03 + ame -> caster gloves 1 4 0 1 0 0 0 itm mgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 mgl 0 0 0 66 66 crf 0 regen-mana 4 12 mana 10 20 mana-kill 1 3 0 0 0 0 0 0 0 0 0
tbl + jew + r04 + ame -> caster belt 0 4 0 1 0 0 0 itm tbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 tbl 0 0 0 66 66 crf 0 regen-mana 4 12 mana 10 20 cast1 1 1 0 0 0 0 0 0 0 0 0
sml + jew + r05 + ame -> caster shield 0 4 0 1 0 0 0 itm sml 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 sml 0 0 0 66 66 crf 0 regen-mana 4 12 mana 10 20 block 5 10 0 0 0 0 0 0 0 0 0
plt + jew + r06 + ame -> caster body 1 4 0 1 0 0 0 itm plt 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 plt 0 0 0 66 66 crf 0 regen-mana 4 12 mana 10 20 mana-kill 1 3 0 0 0 0 0 0 0 0 0
amu + jew + r07 + ame -> caster amulet 0 4 0 1 0 0 0 itm amu 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 66 66 crf 0 regen-mana 4 12 mana 10 20 cast1 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r08 + ame -> caster ring 0 4 0 1 0 0 0 itm rin 1 mag 0 0 0 itm jew 1 0 0 0 itm r08 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 66 crf 0 regen-mana 4 12 mana 10 20 enr 5 10 0 0 0 0 0 0 0 0 0
weapon + jew + r09 + ame -> caster weapon 0 4 0 1 0 0 0 wep 1 mag 0 0 0 itm jew 1 0 0 0 itm r09 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 crf 0 regen-mana 4 12 mana 10 20 dmg% 34 67 0 0 0 0 0 0 0 0 0
crn + jew + r01 + eme -> safety helm 0 4 0 1 0 0 0 itm crn 1 mag 0 0 0 itm jew 1 0 0 0 itm r01 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 crn 0 0 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 res-ltng 5 15 ac% 10 33 0 0 0 0 0 0 0 0 0
hbt + jew + r02 + eme -> safety boots 0 4 0 1 0 0 0 itm hbt 1 mag 0 0 0 itm jew 1 0 0 0 itm r02 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 hbt 0 0 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 res-fire 5 15 ac% 10 33 0 0 0 0 0 0 0 0 0
hgl + jew + r03 + eme -> safety gloves 0 4 0 1 0 0 0 itm hgl 1 mag 0 0 0 itm jew 1 0 0 0 itm r03 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 hgl 0 0 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 res-cold 5 15 ac% 10 33 0 0 0 0 0 0 0 0 0
lbl + jew + r04 + eme -> safety belt 0 4 0 1 0 0 0 itm lbl 1 mag 0 0 0 itm jew 1 0 0 0 itm r04 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 lbl 0 0 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 res-pois 5 15 ac% 10 33 0 0 0 0 0 0 0 0 0
kit + jew + r05 + eme -> safety shield 0 4 0 1 0 0 0 itm kit 1 mag 0 0 0 itm jew 1 0 0 0 itm r05 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 kit 0 0 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 res-mag 5 15 ac% 10 33 0 0 0 0 0 0 0 0 0
brs + jew + r06 + eme -> safety body 1 4 0 1 0 0 0 itm brs 1 mag 0 0 0 itm jew 1 0 0 0 itm r06 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 brs 0 0 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 half-freeze 1 1 ac% 10 33 0 0 0 0 0 0 0 0 0
amu + jew + r07 + eme -> safety amulet 0 4 0 1 0 0 0 itm amu 1 mag 0 0 0 itm jew 1 0 0 0 itm r07 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 block1 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r08 + eme -> safety ring 0 4 0 1 0 0 0 itm rin 1 mag 0 0 0 itm jew 1 0 0 0 itm r08 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 vit 5 10 0 0 0 0 0 0 0 0 0
weapon + jew + r09 + eme -> safety weapon 1 4 0 1 0 0 0 wep 1 mag 0 0 0 itm jew 1 0 0 0 itm r09 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 crf 0 red-dmg 3 9 red-mag 2 5 dmg% 34 67 0 0 0 0 0 0 0 0 0
uhl + jew + r11 + sap -> hitpower helm 0 4 0 1 0 0 0 itm uhl 1 mag 0 0 0 itm jew 1 0 0 0 itm r11 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uhl 0 0 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 knock 1 1 0 0 0 0 0 0 0 0 0
umb + jew + r12 + sap -> hitpower boots 0 4 0 1 0 0 0 itm umb 1 mag 0 0 0 itm jew 1 0 0 0 itm r12 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 umb 0 0 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 ac-miss 20 35 0 0 0 0 0 0 0 0 0
ulg + jew + r13 + sap -> hitpower gloves 0 4 0 1 0 0 0 itm ulg 1 mag 0 0 0 itm jew 1 0 0 0 itm r13 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ulg 0 0 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 ac-hth 20 35 0 0 0 0 0 0 0 0 0
uvc + jew + r14 + sap -> hitpower belt 1 4 0 1 0 0 0 itm uvc 1 mag 0 0 0 itm jew 1 0 0 0 itm r14 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uvc 0 0 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 dmg-to-mana 20 35 0 0 0 0 0 0 0 0 0
uts + jew + r15 + sap -> hitpower shield 0 4 0 1 0 0 0 itm uts 1 mag 0 0 0 itm jew 1 0 0 0 itm r15 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uts 0 0 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 block 8 15 0 0 0 0 0 0 0 0 0
utp + jew + r16 + sap -> hitpower body 0 4 0 1 0 0 0 itm utp 1 mag 0 0 0 itm jew 1 0 0 0 itm r16 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 utp 0 0 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 howl 20 35 0 0 0 0 0 0 0 0 0
amu + jew + r17 + sap -> hitpower amulet 0 4 0 1 0 0 0 itm amu 1 mag 0 0 0 itm jew 1 0 0 0 itm r17 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 balance1 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r18 + sap -> hitpower ring 0 4 0 1 0 0 0 itm rin 1 mag 0 0 0 itm jew 1 0 0 0 itm r18 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 dex 8 15 0 0 0 0 0 0 0 0 0
weapon + jew + r19 + sap -> hitpower weapon 1 4 0 1 0 0 0 wep 1 mag 0 0 0 itm jew 1 0 0 0 itm r19 1 0 0 0 gem 1 sap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 crf 0 gethit-skill 44 7 12 thorns 8 20 dmg% 40 80 0 0 0 0 0 0 0 0 0
uhm + jew + r11 + rub -> blood helm 0 4 0 1 0 0 0 itm uhm 1 mag 0 0 0 itm jew 1 0 0 0 itm r11 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uhm 0 0 0 66 66 crf 0 lifesteal 2 6 hp 15 25 deadly 8 15 0 0 0 0 0 0 0 0 0
utb + jew + r12 + rub -> blood boots 1 4 0 1 0 0 0 itm utb 1 mag 0 0 0 itm jew 1 0 0 0 itm r12 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 utb 0 0 0 66 66 crf 0 lifesteal 2 6 hp 15 25 regen 8 15 0 0 0 0 0 0 0 0 0
uvg + jew + r13 + rub -> blood gloves 1 4 0 1 0 0 0 itm uvg 1 mag 0 0 0 itm jew 1 0 0 0 itm r13 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uvg 0 0 0 66 66 crf 0 lifesteal 2 6 hp 15 25 crush 8 15 0 0 0 0 0 0 0 0 0
umc + jew + r14 + rub -> blood belt 1 4 0 1 0 0 0 itm umc 1 mag 0 0 0 itm jew 1 0 0 0 itm r14 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 umc 0 0 0 66 66 crf 0 lifesteal 2 6 hp 15 25 openwounds 8 15 0 0 0 0 0 0 0 0 0
uow + jew + r15 + rub -> blood shield 1 4 0 1 0 0 0 itm uow 1 mag 0 0 0 itm jew 1 0 0 0 itm r15 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uow 0 0 0 66 66 crf 0 lifesteal 2 6 hp 15 25 thorns 8 15 0 0 0 0 0 0 0 0 0
uld + jew + r16 + rub -> blood body 1 4 0 1 0 0 0 itm uld 1 mag 0 0 0 itm jew 1 0 0 0 itm r16 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uld 0 0 0 66 66 crf 0 lifesteal 2 6 hp 15 25 demon-heal 1 3 0 0 0 0 0 0 0 0 0
amu + jew + r17 + rub -> blood amulet 1 4 0 1 0 0 0 itm amu 1 mag 0 0 0 itm jew 1 0 0 0 itm r17 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 66 66 crf 0 lifesteal 2 6 hp 15 25 move1 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r18 + rub -> blood ring 1 4 0 1 0 0 0 itm rin 1 mag 0 0 0 itm jew 1 0 0 0 itm r18 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 66 crf 0 lifesteal 2 6 hp 15 25 str 8 15 0 0 0 0 0 0 0 0 0
weapon + jew + r19 + rub -> blood weapon 1 4 0 1 0 0 0 wep 1 mag 0 0 0 itm jew 1 0 0 0 itm r19 1 0 0 0 gem 1 rub 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 crf 0 lifesteal 2 6 hp 15 25 dmg% 40 80 0 0 0 0 0 0 0 0 0
usk + jew + r11 + ame -> caster helm 0 4 0 1 0 0 0 itm usk 1 mag 0 0 0 itm jew 1 0 0 0 itm r11 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 usk 0 0 0 66 66 crf 0 regen-mana 7 21 mana 15 25 manasteal 2 7 0 0 0 0 0 0 0 0 0
ulb + jew + r12 + ame -> caster boots 1 4 0 1 0 0 0 itm ulb 1 mag 0 0 0 itm jew 1 0 0 0 itm r12 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ulb 0 0 0 66 66 crf 0 regen-mana 7 21 mana 15 25 mana% 8 15 0 0 0 0 0 0 0 0 0
umg + jew + r13 + ame -> caster gloves 1 4 0 1 0 0 0 itm umg 1 mag 0 0 0 itm jew 1 0 0 0 itm r13 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 umg 0 0 0 66 66 crf 0 regen-mana 7 21 mana 15 25 mana-kill 2 5 0 0 0 0 0 0 0 0 0
utc + jew + r14 + ame -> caster belt 1 4 0 1 0 0 0 itm utc 1 mag 0 0 0 itm jew 1 0 0 0 itm r14 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 utc 0 0 0 66 66 crf 0 regen-mana 7 21 mana 15 25 cast1 1 1 0 0 0 0 0 0 0 0 0
uml + jew + r15 + ame -> caster shield 1 4 0 1 0 0 0 itm uml 1 mag 0 0 0 itm jew 1 0 0 0 itm r15 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uml 0 0 0 66 66 crf 0 regen-mana 7 21 mana 15 25 block 8 15 0 0 0 0 0 0 0 0 0
ult + jew + r16 + ame -> caster body 1 4 0 1 0 0 0 itm ult 1 mag 0 0 0 itm jew 1 0 0 0 itm r16 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ult 0 0 0 66 66 crf 0 regen-mana 7 21 mana 15 25 mana-kill 2 5 0 0 0 0 0 0 0 0 0
amu + jew + r17 + ame -> caster amulet 1 4 0 1 0 0 0 itm amu 1 mag 0 0 0 itm jew 1 0 0 0 itm r17 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 66 66 crf 0 regen-mana 7 21 mana 15 25 cast1 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r18 + ame -> caster ring 1 4 0 1 0 0 0 itm rin 1 mag 0 0 0 itm jew 1 0 0 0 itm r18 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 66 crf 0 regen-mana 7 21 mana 15 25 enr 8 15 0 0 0 0 0 0 0 0 0
weapon + jew + r19 + ame -> caster weapon 1 4 0 1 0 0 0 wep 1 mag 0 0 0 itm jew 1 0 0 0 itm r19 1 0 0 0 gem 1 ame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 crf 0 regen-mana 7 21 mana 15 25 dmg% 40 80 0 0 0 0 0 0 0 0 0
urn + jew + r11 + eme -> safety helm 0 4 0 1 0 0 0 itm urn 1 mag 0 0 0 itm jew 1 0 0 0 itm r11 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 urn 0 0 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 res-ltng 10 25 ac% 20 50 0 0 0 0 0 0 0 0 0
uhb + jew + r12 + eme -> safety boots 0 4 0 1 0 0 0 itm uhb 1 mag 0 0 0 itm jew 1 0 0 0 itm r12 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uhb 0 0 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 res-fire 10 25 ac% 20 50 0 0 0 0 0 0 0 0 0
uhg + jew + r13 + eme -> safety gloves 0 4 0 1 0 0 0 itm uhg 1 mag 0 0 0 itm jew 1 0 0 0 itm r13 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uhg 0 0 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 res-cold 10 25 ac% 20 50 0 0 0 0 0 0 0 0 0
ulc + jew + r14 + eme -> safety belt 0 4 0 1 0 0 0 itm ulc 1 mag 0 0 0 itm jew 1 0 0 0 itm r14 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ulc 0 0 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 res-pois 10 25 ac% 20 50 0 0 0 0 0 0 0 0 0
uit + jew + r15 + eme -> safety shield 0 4 0 1 0 0 0 itm uit 1 mag 0 0 0 itm jew 1 0 0 0 itm r15 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 uit 0 0 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 res-mag 10 25 ac% 20 50 0 0 0 0 0 0 0 0 0
urs + jew + r16 + eme -> safety body 1 4 0 1 0 0 0 itm urs 1 mag 0 0 0 itm jew 1 0 0 0 itm r16 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 urs 0 0 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 half-freeze 1 1 ac% 20 50 0 0 0 0 0 0 0 0 0
amu + jew + r17 + eme -> safety amulet 0 4 0 1 0 0 0 itm amu 1 mag 0 0 0 itm jew 1 0 0 0 itm r17 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 amu 0 0 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 block1 1 1 0 0 0 0 0 0 0 0 0
rin + jew + r18 + eme -> safety ring 0 4 0 1 0 0 0 itm rin 1 mag 0 0 0 itm jew 1 0 0 0 itm r18 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 rin 0 0 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 vit 8 15 0 0 0 0 0 0 0 0 0
weapon + jew + r19 + eme -> safety weapon 1 4 0 1 0 0 0 wep 1 mag 0 0 0 itm jew 1 0 0 0 itm r19 1 0 0 0 gem 1 eme 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 non 0 1 0 66 66 crf 0 red-dmg 6 15 red-mag 3 10 dmg% 40 80 0 0 0 0 0 0 0 0 0
xap + jew + r10 + sku -> deadly helm 0 4 0 1 1 7 0 itm xap 1 mag 0 0 0 itm jew 1 0 0 0 itm r10 1 0 0 0 gem 1 sku 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 xap 0 0 0 66 66 crf 0 crush 2 10 deadly 2 10 ac 5 15 0 0 0 0 0 0 0 0 0
xlb + jew + r11 + sku -> deadly boots 0 4 0 1 8 14 0 itm xlb 1 mag 0 0 0 itm jew 1 0 0 0 itm r11 1 0 0 0 gem 1 sku 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 xlb 0 0 0 66 66 crf 0 crush 2 10 deadly 2 10 ac 5 15 0 0 0 0 0 0 0 0 0
xvg + jew + r12 + sku -> deadly gloves 0 4 0 1 15 22 0 itm xvg 1 mag 0 0 0 itm jew 1 0 0 0 itm r12 1 0 0 0 gem 1 sku 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 xvg 0 0 0 66 66 crf 0 crush 2 10 deadly 2 10 ac 5 15 0 0 0 0 0 0 0 0 0
zlb + jew + r13 + sku -> deadly belt 0 4 0 1 23 31 0 itm zlb 1 mag 0 0 0 itm jew 1 0 0 0 itm r13 1 0 0 0 gem 1 sku 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 zlb 0 0 0 66 66 crf 0 crush 2 10 deadly 2 10 ac 5 15 0 0 0 0 0 0 0 0 0

13
txt/CubeMod.txt Normal file
View File

@ -0,0 +1,13 @@
cube modifier type Code
None
amethyst ame
ruby rub
sapphire sap
topaz top
emerald eme
diamond dim
skull sku
magic mag
rare rar
unique unq
crafted crf

4
txt/DifficultyLevels.txt Normal file
View File

@ -0,0 +1,4 @@
Name ResistPenalty DeathExpPenalty UberCodeOddsNormal UberCodeOddsGood UltraCodeOddsNormal UltraCodeOddsGood MonsterSkillBonus MonsterFreezeDivisor MonsterColdDivisor AiCurseDivisor LifeStealDivisor ManaStealDivisor ExtraUniqueMonsters
Normal 0 0 0 0 0 0 0 1 1 1 1 1 0
Nightmare -40 5 10 20 0 0 3 2 2 2 2 2 1
Hell -100 10 20 40 30 40 7 4 4 4 2 2 2

13
txt/ElemTypes.txt Normal file
View File

@ -0,0 +1,13 @@
Elemental Type Code
None
Fire fire
Lightning ltng
Magic mag
Cold cold
Poison pois
Life Drain life
Mana Drain mana
Stamina Drain stam
Stun stun
Random rand
Burning burn

14
txt/Events.txt Normal file
View File

@ -0,0 +1,14 @@
event *desc
hitbymissile hit by a missile
damagedinmelee damaged in melee
damagedbymissile damaged by missile
attackedinmelee melee attack atttempt
doactive do active state skill
domeleedamage do damage in melee
domissiledamage do missile damage
domeleeattack do melee attack
domissileattack do missile attack
kill killed something
killed killed by something
absorbdamage dealt damage
levelup gain a level

102
txt/Experience.txt Normal file
View File

@ -0,0 +1,102 @@
Level Amazon Sorceress Necromancer Paladin Barbarian Druid Assassin
MaxLvl 99 99 99 99 99 99 99
0 0 0 0 0 0 0 0
1 500 500 500 500 500 500 500
2 1500 1500 1500 1500 1500 1500 1500
3 3750 3750 3750 3750 3750 3750 3750
4 7875 7875 7875 7875 7875 7875 7875
5 14175 14175 14175 14175 14175 14175 14175
6 22680 22680 22680 22680 22680 22680 22680
7 32886 32886 32886 32886 32886 32886 32886
8 44396 44396 44396 44396 44396 44396 44396
9 57715 57715 57715 57715 57715 57715 57715
10 72144 72144 72144 72144 72144 72144 72144
11 90180 90180 90180 90180 90180 90180 90180
12 112725 112725 112725 112725 112725 112725 112725
13 140906 140906 140906 140906 140906 140906 140906
14 176132 176132 176132 176132 176132 176132 176132
15 220165 220165 220165 220165 220165 220165 220165
16 275207 275207 275207 275207 275207 275207 275207
17 344008 344008 344008 344008 344008 344008 344008
18 430010 430010 430010 430010 430010 430010 430010
19 537513 537513 537513 537513 537513 537513 537513
20 671891 671891 671891 671891 671891 671891 671891
21 839864 839864 839864 839864 839864 839864 839864
22 1049830 1049830 1049830 1049830 1049830 1049830 1049830
23 1312287 1312287 1312287 1312287 1312287 1312287 1312287
24 1640359 1640359 1640359 1640359 1640359 1640359 1640359
25 2050449 2050449 2050449 2050449 2050449 2050449 2050449
26 2563061 2563061 2563061 2563061 2563061 2563061 2563061
27 3203826 3203826 3203826 3203826 3203826 3203826 3203826
28 3902260 3902260 3902260 3902260 3902260 3902260 3902260
29 4663553 4663553 4663553 4663553 4663553 4663553 4663553
30 5493363 5493363 5493363 5493363 5493363 5493363 5493363
31 6397855 6397855 6397855 6397855 6397855 6397855 6397855
32 7383752 7383752 7383752 7383752 7383752 7383752 7383752
33 8458379 8458379 8458379 8458379 8458379 8458379 8458379
34 9629723 9629723 9629723 9629723 9629723 9629723 9629723
35 10906488 10906488 10906488 10906488 10906488 10906488 10906488
36 12298162 12298162 12298162 12298162 12298162 12298162 12298162
37 13815086 13815086 13815086 13815086 13815086 13815086 13815086
38 15468534 15468534 15468534 15468534 15468534 15468534 15468534
39 17270791 17270791 17270791 17270791 17270791 17270791 17270791
40 19235252 19235252 19235252 19235252 19235252 19235252 19235252
41 21376515 21376515 21376515 21376515 21376515 21376515 21376515
42 23710491 23710491 23710491 23710491 23710491 23710491 23710491
43 26254525 26254525 26254525 26254525 26254525 26254525 26254525
44 29027522 29027522 29027522 29027522 29027522 29027522 29027522
45 32050088 32050088 32050088 32050088 32050088 32050088 32050088
46 35344686 35344686 35344686 35344686 35344686 35344686 35344686
47 38935798 38935798 38935798 38935798 38935798 38935798 38935798
48 42850109 42850109 42850109 42850109 42850109 42850109 42850109
49 47116709 47116709 47116709 47116709 47116709 47116709 47116709
50 51767302 51767302 51767302 51767302 51767302 51767302 51767302
51 56836449 56836449 56836449 56836449 56836449 56836449 56836449
52 62361819 62361819 62361819 62361819 62361819 62361819 62361819
53 68384473 68384473 68384473 68384473 68384473 68384473 68384473
54 74949165 74949165 74949165 74949165 74949165 74949165 74949165
55 82104680 82104680 82104680 82104680 82104680 82104680 82104680
56 89904191 89904191 89904191 89904191 89904191 89904191 89904191
57 98405658 98405658 98405658 98405658 98405658 98405658 98405658
58 107672256 107672256 107672256 107672256 107672256 107672256 107672256
59 117772849 117772849 117772849 117772849 117772849 117772849 117772849
60 128782495 128782495 128782495 128782495 128782495 128782495 128782495
61 140783010 140783010 140783010 140783010 140783010 140783010 140783010
62 153863570 153863570 153863570 153863570 153863570 153863570 153863570
63 168121381 168121381 168121381 168121381 168121381 168121381 168121381
64 183662396 183662396 183662396 183662396 183662396 183662396 183662396
65 200602101 200602101 200602101 200602101 200602101 200602101 200602101
66 219066380 219066380 219066380 219066380 219066380 219066380 219066380
67 239192444 239192444 239192444 239192444 239192444 239192444 239192444
68 261129853 261129853 261129853 261129853 261129853 261129853 261129853
69 285041630 285041630 285041630 285041630 285041630 285041630 285041630
70 311105466 311105466 311105466 311105466 311105466 311105466 311105466
71 339515048 339515048 339515048 339515048 339515048 339515048 339515048
72 370481492 370481492 370481492 370481492 370481492 370481492 370481492
73 404234916 404234916 404234916 404234916 404234916 404234916 404234916
74 441026148 441026148 441026148 441026148 441026148 441026148 441026148
75 481128591 481128591 481128591 481128591 481128591 481128591 481128591
76 524840254 524840254 524840254 524840254 524840254 524840254 524840254
77 572485967 572485967 572485967 572485967 572485967 572485967 572485967
78 624419793 624419793 624419793 624419793 624419793 624419793 624419793
79 681027665 681027665 681027665 681027665 681027665 681027665 681027665
80 742730244 742730244 742730244 742730244 742730244 742730244 742730244
81 809986056 809986056 809986056 809986056 809986056 809986056 809986056
82 883294891 883294891 883294891 883294891 883294891 883294891 883294891
83 963201521 963201521 963201521 963201521 963201521 963201521 963201521
84 1050299747 1050299747 1050299747 1050299747 1050299747 1050299747 1050299747
85 1145236814 1145236814 1145236814 1145236814 1145236814 1145236814 1145236814
86 1248718217 1248718217 1248718217 1248718217 1248718217 1248718217 1248718217
87 1361512946 1361512946 1361512946 1361512946 1361512946 1361512946 1361512946
88 1484459201 1484459201 1484459201 1484459201 1484459201 1484459201 1484459201
89 1618470619 1618470619 1618470619 1618470619 1618470619 1618470619 1618470619
90 1764543065 1764543065 1764543065 1764543065 1764543065 1764543065 1764543065
91 1923762030 1923762030 1923762030 1923762030 1923762030 1923762030 1923762030
92 2097310703 2097310703 2097310703 2097310703 2097310703 2097310703 2097310703
93 2286478756 2286478756 2286478756 2286478756 2286478756 2286478756 2286478756
94 2492671933 2492671933 2492671933 2492671933 2492671933 2492671933 2492671933
95 2717422497 2717422497 2717422497 2717422497 2717422497 2717422497 2717422497
96 2962400612 2962400612 2962400612 2962400612 2962400612 2962400612 2962400612
97 3229426756 3229426756 3229426756 3229426756 3229426756 3229426756 3229426756
98 3520485254 3520485254 3520485254 3520485254 3520485254 3520485254 3520485254
99 3837739017 3837739017 3837739017 3837739017 3837739017 3837739017 3837739017

70
txt/Gems.txt Normal file
View File

@ -0,0 +1,70 @@
name letter transform code nummods weaponMod1Code weaponMod1Param weaponMod1Min weaponMod1Max weaponMod2Code weaponMod2Param weaponMod2Min weaponMod2Max weaponMod3Code weaponMod3Param weaponMod3Min weaponMod3Max helmMod1Code helmMod1Param helmMod1Min helmMod1Max helmMod2Code helmMod2Param helmMod2Min helmMod2Max helmMod3Code helmMod3Param helmMod3Min helmMod3Max shieldMod1Code shieldMod1Param shieldMod1Min shieldMod1Max shieldMod2Code shieldMod2Param shieldMod2Min shieldMod2Max shieldMod3Code shieldMod3Param shieldMod3Min shieldMod3Max
Chipped Amethyst 18 gcv 3 att 0 40 40 0 0 0 str 0 3 3 0 0 0 0 0 0 ac 0 8 8 0 0 0 0 0 0
Flawed Amethyst 18 gfv 3 att 0 60 60 0 0 0 str 0 4 4 0 0 0 0 0 0 ac 0 12 12 0 0 0 0 0 0
Amethyst 18 gsv 3 att 0 80 80 0 0 0 str 0 6 6 0 0 0 0 0 0 ac 0 18 18 0 0 0 0 0 0
Flawless Amethyst 18 gzv 3 att 0 100 100 0 0 0 str 0 8 8 0 0 0 0 0 0 ac 0 24 24 0 0 0 0 0 0
Perfect Amethyst 17 gpv 3 att 0 150 150 0 0 0 str 0 10 10 0 0 0 0 0 0 ac 0 30 30 0 0 0 0 0 0
Chipped Saphire 5 gcb 3 cold-min 0 1 1 cold-max 0 3 3 cold-len 0 25 25 mana 0 10 10 0 0 0 0 0 0 res-cold 0 12 12 0 0 0 0 0 0
Flawed Saphire 5 gfb 3 cold-min 0 3 3 cold-max 0 5 5 cold-len 0 35 35 mana 0 17 17 0 0 0 0 0 0 res-cold 0 16 16 0 0 0 0 0 0
Saphire 5 gsb 3 cold-min 0 4 4 cold-max 0 7 7 cold-len 0 50 50 mana 0 24 24 0 0 0 0 0 0 res-cold 0 22 22 0 0 0 0 0 0
Flwless Saphire 5 glb 3 cold-min 0 6 6 cold-max 0 10 10 cold-len 0 60 60 mana 0 31 31 0 0 0 0 0 0 res-cold 0 28 28 0 0 0 0 0 0
Perfect Saphire 6 gpb 3 cold-min 0 10 10 cold-max 0 14 14 cold-len 0 75 75 mana 0 38 38 0 0 0 0 0 0 res-cold 0 40 40 0 0 0 0 0 0
Chipped Emerald 11 gcg 3 pois-min 0 60 60 pois-max 0 60 60 pois-len 0 25 25 dex 0 3 3 0 0 0 0 0 0 res-pois 0 12 12 0 0 0 0 0 0
Flawed Emerald 11 gfg 3 pois-min 0 120 120 pois-max 0 120 120 pois-len 0 25 25 dex 0 4 4 0 0 0 0 0 0 res-pois 0 16 16 0 0 0 0 0 0
Emerald 11 gsg 3 pois-min 0 180 180 pois-max 0 180 180 pois-len 0 25 25 dex 0 6 6 0 0 0 0 0 0 res-pois 0 22 22 0 0 0 0 0 0
Flawless Emerald 11 glg 3 pois-min 0 240 240 pois-max 0 240 240 pois-len 0 25 25 dex 0 8 8 0 0 0 0 0 0 res-pois 0 28 28 0 0 0 0 0 0
Perfect Emerald 12 gpg 3 pois-min 0 300 300 pois-max 0 300 300 pois-len 0 25 25 dex 0 10 10 0 0 0 0 0 0 res-pois 0 40 40 0 0 0 0 0 0
Chipped Ruby 8 gcr 3 fire-min 0 3 3 fire-max 0 4 4 0 0 0 hp 0 10 10 0 0 0 0 0 0 res-fire 0 12 12 0 0 0 0 0 0
Flawed Ruby 8 gfr 3 fire-min 0 5 5 fire-max 0 8 8 0 0 0 hp 0 17 17 0 0 0 0 0 0 res-fire 0 16 16 0 0 0 0 0 0
Ruby 8 gsr 3 fire-min 0 8 8 fire-max 0 12 12 0 0 0 hp 0 24 24 0 0 0 0 0 0 res-fire 0 22 22 0 0 0 0 0 0
Flawless Ruby 8 glr 3 fire-min 0 10 10 fire-max 0 16 16 0 0 0 hp 0 31 31 0 0 0 0 0 0 res-fire 0 28 28 0 0 0 0 0 0
Perfect Ruby 9 gpr 3 fire-min 0 15 15 fire-max 0 20 20 0 0 0 hp 0 38 38 0 0 0 0 0 0 res-fire 0 40 40 0 0 0 0 0 0
Chipped Diamond 1 gcw 3 dmg-undead 0 28 28 0 0 0 att 0 20 20 0 0 0 0 0 0 res-all 0 6 6 0 0 0 0 0 0
Flawed Diamond 1 gfw 3 dmg-undead 0 34 34 0 0 0 att 0 40 40 0 0 0 0 0 0 res-all 0 8 8 0 0 0 0 0 0
Diamond 1 gsw 3 dmg-undead 0 44 44 0 0 0 att 0 60 60 0 0 0 0 0 0 res-all 0 11 11 0 0 0 0 0 0
Flawless Diamond 1 glw 3 dmg-undead 0 54 54 0 0 0 att 0 80 80 0 0 0 0 0 0 res-all 0 14 14 0 0 0 0 0 0
Perfect Diamond 0 gpw 3 dmg-undead 0 68 68 0 0 0 att 0 100 100 0 0 0 0 0 0 res-all 0 19 19 0 0 0 0 0 0
Chipped Topaz 14 gcy 3 ltng-min 0 1 1 ltng-max 0 8 8 0 0 0 mag% 0 9 9 0 0 0 0 0 0 res-ltng 0 12 12 0 0 0 0 0 0
Flawed Topaz 14 gfy 3 ltng-min 0 1 1 ltng-max 0 14 14 0 0 0 mag% 0 13 13 0 0 0 0 0 0 res-ltng 0 16 16 0 0 0 0 0 0
Topaz 14 gsy 3 ltng-min 0 1 1 ltng-max 0 22 22 0 0 0 mag% 0 16 16 0 0 0 0 0 0 res-ltng 0 22 22 0 0 0 0 0 0
Flawless Topaz 14 gly 3 ltng-min 0 1 1 ltng-max 0 30 30 0 0 0 mag% 0 20 20 0 0 0 0 0 0 res-ltng 0 28 28 0 0 0 0 0 0
Perfect Topaz 13 gpy 3 ltng-min 0 1 1 ltng-max 0 40 40 0 0 0 mag% 0 24 24 0 0 0 0 0 0 res-ltng 0 40 40 0 0 0 0 0 0
Chipped Skull 2 skc 3 manasteal 0 1 1 lifesteal 0 2 2 regen 0 2 2 regen-mana 0 8 8 0 0 0 thorns 0 4 4 0 0 0 0 0 0
Flawed Skull 2 skf 3 manasteal 0 2 2 lifesteal 0 2 2 regen 0 3 3 regen-mana 0 8 8 0 0 0 thorns 0 8 8 0 0 0 0 0 0
Skull 2 sku 3 manasteal 0 2 2 lifesteal 0 3 3 regen 0 3 3 regen-mana 0 12 12 0 0 0 thorns 0 12 12 0 0 0 0 0 0
Flawless Skull 2 skl 3 manasteal 0 3 3 lifesteal 0 3 3 regen 0 4 4 regen-mana 0 12 12 0 0 0 thorns 0 16 16 0 0 0 0 0 0
Perfect Skull 3 skz 3 manasteal 0 3 3 lifesteal 0 4 4 regen 0 5 5 regen-mana 0 19 19 0 0 0 thorns 0 20 20 0 0 0 0 0 0
Expansion
El Rune El 18 r01 1 light 1 1 att 50 50 light 1 1 ac 15 15 light 1 1 ac 15 15 0
Eld Rune Eld 18 r02 1 att-undead 50 50 dmg-undead 75 75 stamdrain 15 15 block 7 7 0
Tir Rune Tir 18 r03 1 mana-kill 2 2 mana-kill 2 2 mana-kill 2 2 0
Nef Rune Nef 18 r04 1 knock 1 1 ac-miss 30 30 ac-miss 30 30 0
Eth Rune Eth 18 r05 1 reduce-ac -25 -25 regen-mana 15 15 regen-mana 15 15 0
Ith Rune Ith 18 r06 1 dmg-max 9 9 dmg-to-mana 15 15 dmg-to-mana 15 15 0
Tal Rune Tal 18 r07 1 dmg-pois 25 200 200 res-pois 30 30 res-pois 30 30 0
Ral Rune Ral 18 r08 1 dmg-fire 5 30 res-fire 30 30 res-fire 30 30 0
Ort Rune Ort 18 r09 1 dmg-ltng 1 50 res-ltng 30 30 res-ltng 30 30 0
Thul Rune Thul 18 r10 1 dmg-cold 75 3 14 res-cold 30 30 res-cold 30 30 0
Amn Rune Amn 18 r11 1 lifesteal 7 7 thorns 14 14 thorns 14 14 0
Sol Rune Sol 18 r12 1 dmg-min 9 9 red-dmg 7 7 red-dmg 7 7 0
Shael Rune Shael 18 r13 1 swing2 20 20 balance2 20 20 block2 20 20 0
Dol Rune Dol 18 r14 1 howl 32 32 regen 7 7 regen 7 7 0
Hel Rune Hel 18 r15 1 ease -20 -20 ease -15 -15 ease -15 -15 0
Io Rune Io 18 r16 1 vit 10 10 vit 10 10 vit 10 10 0
Lum Rune Lum 18 r17 1 enr 10 10 enr 10 10 enr 10 10 0
Ko Rune Ko 18 r18 1 dex 10 10 dex 10 10 dex 10 10 0
Fal Rune Fal 18 r19 1 str 10 10 str 10 10 str 10 10 0
Lem Rune Lem 18 r20 1 gold% 75 75 gold% 50 50 gold% 50 50 0
Pul Rune Pul 18 r21 1 att-demon 100 100 dmg-demon 75 75 ac% 30 30 ac% 30 30 0
Um Rune Um 18 r22 1 openwounds 25 25 res-all 10 10 res-all 20 20 0
Mal Rune Mal 18 r23 1 noheal 1 1 red-mag 7 7 red-mag 7 7 0
Ist Rune Ist 18 r24 1 mag% 30 30 mag% 25 25 mag% 25 25 0
Gul Rune Gul 18 r25 1 att% 20 20 res-pois-max 3 3 res-pois-max 3 3 0
Vex Rune Vex 18 r26 1 manasteal 7 7 res-fire-max 3 3 res-fire-max 3 3 0
Ohm Rune Ohm 18 r27 1 dmg% 50 50 res-cold-max 3 3 res-cold-max 3 3 0
Lo Rune Lo 18 r28 1 deadly 20 20 res-ltng-max 3 3 res-ltng-max 3 3 0
Sur Rune Sur 18 r29 1 stupidity 20 20 mana% 5 5 mana 50 50 0
Ber Rune Ber 18 r30 1 crush 20 20 red-dmg% 8 8 red-dmg% 8 8 0
Jo Rune Jo 18 r31 1 slow 25 25 hp% 5 5 hp 50 50 0
Cham Rune Cham 18 r32 1 freeze 16 50 0 nofreeze 1 1 nofreeze 1 1 0
Zod Rune Zod 18 r33 1 indestruct 1 1 indestruct 1 1 indestruct 1 1 0

61
txt/Hireling.txt Normal file
View File

@ -0,0 +1,61 @@
Hireling SubType Id Class Act Difficulty Level Seller NameFirst NameLast Gold Exp/Lvl HP HP/Lvl Defense Def/Lvl Str Str/Lvl Dex Dex/Lvl AR AR/Lvl Share Dmg-Min Dmg-Max Dmg/Lvl Resist Resist/Lvl WType1 WType2 HireDesc DefaultChance Skill1 Mode1 Chance1 ChancePerLevel1 Level1 LvlPerLvl1 Skill2 Mode2 Chance2 ChancePerLevel2 Level2 LvlPerLvl2 Skill3 Mode3 Chance3 ChancePerLevel3 Level3 LvlPerLvl3 Skill4 Mode4 Chance4 ChancePerLevel4 Level4 LvlPerLvl4 Skill5 Mode5 Chance5 ChancePerLevel5 Level5 LvlPerLvl5 Skill6 Mode6 Chance6 ChancePerLevel6 Level6 LvlPerLvl6 Head Torso Weapon Shield
Rogue Scout Fire - Normal 0 271 1 1 3 150 merc01 merc41 100 100 45 8 15 6 35 10 45 16 0 0 1 3 2 0 8 bow farw 75 Inner Sight 4 10 0 1 10 Fire Arrow 4 25 2 1 10 2 1 2 0
Rogue Scout Fire - Normal 0 271 1 1 25 150 merc01 merc41 100 100 221 8 147 6 63 10 89 16 0 0 1 7 9 4 44 7 bow farw 75 Inner Sight 4 10 0 7 10 Fire Arrow 4 69 0 7 10 2 1 2 0
Rogue Scout Fire - Normal 0 271 1 1 49 150 merc01 merc41 100 100 413 8 291 6 93 10 137 16 0 0 2 19 21 6 86 5 bow farw 75 Inner Sight 4 10 0 14 10 Fire Arrow 4 69 0 14 10 2 1 2 0
Rogue Scout Ice - Normal 1 271 1 1 3 150 merc01 merc41 150 100 45 8 15 6 35 10 45 16 0 0 1 3 2 0 8 bow carw 75 Inner Sight 4 10 0 1 10 Cold Arrow 4 69 2 1 10 2 1 2 0
Rogue Scout Ice - Normal 1 271 1 1 25 150 merc01 merc41 150 100 221 8 147 6 63 10 89 16 0 0 1 7 9 4 44 7 bow carw 75 Inner Sight 4 10 0 7 10 Cold Arrow 4 69 0 7 10 2 1 2 0
Rogue Scout Ice - Normal 1 271 1 1 49 150 merc01 merc41 150 100 413 8 291 6 93 10 137 16 0 0 2 19 21 6 86 5 bow carw 75 Inner Sight 4 10 0 14 10 Cold Arrow 4 69 0 14 10 2 1 2 0
Rogue Scout Fire - Nightmare 2 271 1 2 25 150 merc01 merc41 6000 110 185 8 130 6 60 10 84 16 0 0 1 6 8 4 41 7 bow farw 75 Inner Sight 4 10 0 6 10 Fire Arrow 4 69 0 6 10 2 1 2 0
Rogue Scout Fire - Nightmare 2 271 1 2 49 150 merc01 merc41 6000 110 385 8 274 6 90 10 132 16 0 0 2 18 20 6 83 5 bow farw 75 Inner Sight 4 10 0 13 10 Fire Arrow 4 69 0 13 10 2 1 2 0
Rogue Scout Ice - Nightmare 3 271 1 2 25 150 merc01 merc41 7500 110 185 8 130 6 60 10 84 16 0 0 1 6 8 4 41 7 bow carw 75 Inner Sight 4 10 0 6 10 Cold Arrow 4 69 0 6 10 2 1 2 0
Rogue Scout Ice - Nightmare 3 271 1 2 49 150 merc01 merc41 7500 110 385 8 274 6 90 10 132 16 0 0 2 18 20 6 83 5 bow carw 75 Inner Sight 4 10 0 13 10 Cold Arrow 4 69 0 13 10 2 1 2 0
Rogue Scout Fire - Hell 4 271 1 3 49 150 merc01 merc41 12500 120 369 8 257 6 87 10 127 16 0 0 2 17 19 6 80 5 bow farw 75 Inner Sight 4 10 0 12 10 Fire Arrow 4 69 0 12 10 2 1 2 0
Rogue Scout Ice - Hell 5 271 1 3 49 150 merc01 merc41 14000 120 369 8 257 6 87 10 127 16 0 0 2 17 19 6 80 5 bow carw 75 Inner Sight 4 10 0 12 10 Cold Arrow 4 69 0 12 10 2 1 2 0
Desert Mercenary Comb-Normal 6 338 2 1 9 198 merca201 merca221 350 105 120 10 45 9 57 14 40 12 20 4 1 7 14 4 18 8 pole spea comb 30 Jab 14 70 3 3 10 Prayer 1 10 0 3 10 2 2 2 0
Desert Mercenary Comb-Normal 6 338 2 1 31 198 merca201 merca221 350 105 340 10 243 9 96 14 73 12 108 8 3 18 25 6 62 7 pole spea comb 30 Jab 14 136 3 10 10 Prayer 1 10 0 10 10 2 2 2 0
Desert Mercenary Comb-Normal 6 338 2 1 55 198 merca201 merca221 350 105 580 10 459 9 138 14 109 12 300 12 4 36 43 8 104 4 pole spea comb 30 Jab 14 208 3 17 0 Prayer 1 10 0 17 0 Thorns 1 5 0 1 10 2 2 2 0
Desert Mercenary Def-Normal 7 338 2 1 9 198 merca201 merca221 350 105 120 10 45 9 57 14 40 12 20 4 1 7 14 4 18 8 pole spea def 30 Jab 14 70 3 3 10 Defiance 1 10 0 3 10 2 2 2 0
Desert Mercenary Def-Normal 7 338 2 1 31 198 merca201 merca221 350 105 340 10 243 9 96 14 73 12 108 8 3 18 25 6 62 7 pole spea def 30 Jab 14 136 3 10 10 Defiance 1 10 0 10 10 2 2 2 0
Desert Mercenary Def-Normal 7 338 2 1 55 198 merca201 merca221 350 105 580 10 459 9 138 14 109 12 300 12 4 36 43 8 104 4 pole spea def 30 Jab 14 208 3 17 0 Defiance 1 10 0 17 0 Holy Freeze 1 5 0 1 10 2 2 2 0
Desert Mercenary Off-Normal 8 338 2 1 9 198 merca201 merca221 350 105 120 10 45 9 57 14 40 12 20 4 1 7 14 4 18 8 pole spea off 30 Jab 14 70 3 3 10 Blessed Aim 1 10 0 3 10 2 2 2 0
Desert Mercenary Off-Normal 8 338 2 1 31 198 merca201 merca221 350 105 340 10 243 9 96 14 73 12 108 8 3 18 25 6 62 7 pole spea off 30 Jab 14 136 3 10 10 Blessed Aim 1 10 0 10 10 Might 1 20 0 5 10 2 2 2 0
Desert Mercenary Off-Normal 8 338 2 1 55 198 merca201 merca221 350 105 580 10 459 9 138 14 109 12 300 12 4 36 43 8 104 4 pole spea off 30 Jab 14 208 3 17 0 Blessed Aim 1 10 0 17 0 Might 1 20 0 7 10 2 2 2 0
Desert Mercenary Comb-Nightmare 9 338 2 2 31 198 merca201 merca221 7900 115 302 10 201 9 92 14 69 12 98 8 3 16 23 6 59 7 pole spea comb 30 Jab 14 120 3 9 10 Prayer 1 10 0 9 10 2 2 2 0
Desert Mercenary Comb-Nightmare 9 338 2 2 55 198 merca201 merca221 7900 115 542 10 417 9 134 14 105 12 290 12 4 34 41 8 101 4 pole spea comb 30 Jab 14 192 3 16 0 Prayer 1 10 0 16 0 2 2 2 0
Desert Mercenary Def-Nightmare 10 338 2 2 31 198 merca201 merca221 7900 115 302 10 201 9 92 14 69 12 98 6 3 16 23 6 59 7 pole spea def 30 Jab 14 120 3 9 10 Defiance 1 10 0 9 10 2 2 2 0
Desert Mercenary Def-Nightmare 10 338 2 2 55 198 merca201 merca221 7900 115 542 10 417 9 134 14 105 12 242 12 4 34 41 8 101 4 pole spea def 30 Jab 14 192 3 16 0 Defiance 1 10 0 16 0 2 2 2 0
Desert Mercenary Off-Nightmare 11 338 2 2 31 198 merca201 merca221 7900 115 302 10 201 9 92 14 69 12 98 8 3 16 23 6 59 7 pole spea off 30 Jab 14 120 3 9 10 Blessed Aim 1 10 0 9 10 Might 1 20 0 4 10 2 2 2 0
Desert Mercenary Off-Nightmare 11 338 2 2 55 198 merca201 merca221 7900 115 542 10 417 9 134 14 105 12 290 12 4 34 41 8 101 4 pole spea off 30 Jab 14 192 3 16 0 Blessed Aim 1 10 0 16 0 Might 1 20 0 6 10 2 2 2 0
Desert Mercenary Comb-Hell 12 338 2 3 55 198 merca201 merca221 15000 120 504 10 375 9 130 14 101 12 280 12 4 32 39 8 98 4 pole spea comb 30 Jab 14 104 3 15 0 Prayer 1 10 0 15 0 2 2 2 0
Desert Mercenary Def-Hell 13 338 2 3 55 198 merca201 merca221 15000 120 504 10 375 9 130 14 101 12 232 12 4 32 39 8 98 4 pole spea def 30 Jab 14 104 3 15 0 Defiance 1 10 0 15 0 2 2 2 0
Desert Mercenary Off-Hell 14 338 2 3 55 198 merca201 merca221 15000 120 504 10 375 9 130 14 101 12 280 12 4 32 39 8 98 4 pole spea off 30 Jab 14 104 3 15 0 Blessed Aim 1 10 0 15 0 Might 1 20 0 5 10 2 2 2 0
Eastern Sorceror Fire-Normal 15 359 3 1 15 252 merca222 merca241 1000 110 160 6 80 4 49 10 40 8 0 0 1 7 4 25 7 swor shie fire 10 Inferno 7 60 0 6 10 Fire Ball 7 30 0 4 10 2 2 2 1
Eastern Sorceror Fire-Normal 15 359 3 1 37 252 merca222 merca241 1000 110 292 6 168 4 77 10 62 8 0 0 3 12 18 4 64 7 swor shie fire 10 Inferno 7 60 0 13 10 Fire Ball 7 30 0 11 10 2 2 2 1
Eastern Sorceror Fire-Normal 15 359 3 1 61 252 merca222 merca241 1000 110 436 6 264 4 107 10 86 8 0 0 5 24 30 4 106 6 swor shie fire 10 Inferno 7 60 0 20 0 Fire Ball 7 30 0 18 10 2 2 2 1
Eastern Sorceror Cold-Normal 16 359 3 1 15 252 merca222 merca241 1500 115 160 6 80 4 49 10 40 8 0 0 1 7 4 25 7 swor shie cold 10 Glacial Spike 7 60 0 1 5 Frozen Armor 7 1000 0 2 10 Ice Blast 7 240 0 6 10 2 2 2 1
Eastern Sorceror Cold-Normal 16 359 3 1 37 252 merca222 merca241 1500 115 292 6 168 4 77 10 62 8 0 0 3 12 18 4 64 7 swor shie cold 10 Glacial Spike 7 60 0 5 5 Frozen Armor 7 1000 0 9 10 Ice Blast 7 240 0 13 10 2 2 2 1
Eastern Sorceror Cold-Normal 16 359 3 1 61 252 merca222 merca241 1500 115 436 6 264 4 107 10 86 8 0 0 5 24 30 4 106 4 swor shie cold 10 Glacial Spike 7 60 0 9 0 Frozen Armor 7 1000 0 16 0 Ice Blast 7 240 0 20 0 2 2 2 1
Eastern Sorceror Ltng-Normal 17 359 3 1 15 252 merca222 merca241 1000 110 160 6 80 4 49 10 40 8 0 0 1 7 4 25 7 swor shie ltng 10 Charged Bolt 7 60 0 4 5 Lightning 7 30 0 3 10 2 2 2 1
Eastern Sorceror Ltng-Normal 17 359 3 1 37 252 merca222 merca241 1000 110 292 6 168 4 77 10 62 8 0 0 3 12 18 4 64 7 swor shie ltng 10 Charged Bolt 7 60 0 8 5 Lightning 7 30 0 10 10 2 2 2 1
Eastern Sorceror Ltng-Normal 17 359 3 1 61 252 merca222 merca241 1000 110 436 6 264 4 107 10 86 8 0 0 5 24 30 4 106 4 swor shie ltng 10 Charged Bolt 7 60 0 12 0 Lightning 7 30 0 17 10 2 2 2 1
Eastern Sorceror Fire-Nightmare 18 359 3 2 37 252 merca222 merca241 9500 115 273 6 151 4 73 10 58 8 0 0 3 10 16 4 61 7 swor shie fire 10 Inferno 7 60 0 12 10 Fire Ball 7 30 0 10 10 2 2 2 1
Eastern Sorceror Fire-Nightmare 18 359 3 2 61 252 merca222 merca241 9500 115 417 6 244 4 103 10 82 8 0 0 5 22 28 4 103 4 swor shie fire 10 Inferno 7 60 0 19 0 Fire Ball 7 30 0 17 10 2 2 2 1
Eastern Sorceror Cold-Nightmare 19 359 3 2 37 252 merca222 merca241 12000 120 273 6 151 4 73 10 58 8 0 0 3 10 16 4 61 7 swor shie cold 10 Glacial Spike 7 60 0 4 5 Frozen Armor 7 1000 0 8 10 Ice Blast 7 240 0 12 10 2 2 2 1
Eastern Sorceror Cold-Nightmare 19 359 3 2 61 252 merca222 merca241 12000 120 417 6 244 4 103 10 82 8 0 0 5 22 28 4 103 4 swor shie cold 10 Glacial Spike 7 60 0 8 0 Frozen Armor 7 1000 0 15 0 Ice Blast 7 240 0 19 0 2 2 2 1
Eastern Sorceror Ltng-Nightmare 20 359 3 2 37 252 merca222 merca241 10000 115 273 6 151 4 73 10 58 8 0 0 3 10 16 4 61 7 swor shie ltng 10 Charged Bolt 7 60 0 7 5 Lightning 7 30 0 9 10 2 2 2 1
Eastern Sorceror Ltng-Nightmare 20 359 3 2 61 252 merca222 merca241 10000 115 417 6 244 4 103 10 82 8 0 0 5 22 28 4 103 4 swor shie ltng 10 Charged Bolt 7 60 0 11 0 Lightning 7 30 0 16 10 2 2 2 1
Eastern Sorceror Fire-Hell 21 359 3 3 61 252 merca222 merca241 21000 120 398 6 227 4 99 10 78 8 0 0 5 20 26 4 100 4 swor shie fire 10 Inferno 7 60 0 18 0 Fire Ball 7 30 0 16 0 2 2 2 1
Eastern Sorceror Cold-Hell 22 359 3 3 61 252 merca222 merca241 27000 125 398 6 227 4 99 10 78 8 0 0 5 20 26 4 100 4 swor shie cold 10 Glacial Spike 7 60 0 7 0 Frozen Armor 7 1000 0 15 0 Ice Blast 7 240 0 18 0 2 2 2 1
Eastern Sorceror Ltng-Hell 23 359 3 3 61 252 merca222 merca241 21000 120 398 6 227 4 99 10 78 8 0 0 5 20 27 4 100 4 swor shie ltng 10 Charged Bolt 7 60 0 10 0 Lightning 7 30 0 15 10 2 2 2 1
Barbarian 1hs-Normal 24 561 5 1 28 515 MercX101 MercX167 9000 110 288 12 180 7 101 15 63 10 150 6 1 16 20 6 56 7 swor 50 Bash 5 15 0 4 10 Stun 5 15 0 3 8 0 0 0 0
Barbarian 1hs-Normal 24 561 5 1 42 515 MercX101 MercX167 9000 110 456 12 278 7 128 15 81 10 234 6 1 27 31 8 81 7 swor 50 Bash 5 50 0 9 10 Stun 5 50 0 7 8 0 0 0 0
Barbarian 1hs-Normal 24 561 5 1 75 515 MercX101 MercX167 9000 110 852 12 509 7 190 15 123 10 432 9 1 60 64 8 139 4 swor 50 Bash 5 75 0 20 0 Stun 5 75 0 16 0 0 0 0 0
Barbarian 1hs-Normal 25 561 5 1 28 515 MercX101 MercX167 9000 110 288 12 180 7 101 15 63 10 150 6 1 16 20 6 56 7 swor 50 Bash 5 15 0 4 10 Stun 5 15 0 3 8 0 0 0 0
Barbarian 1hs-Normal 25 561 5 1 42 515 MercX101 MercX167 9000 110 456 12 278 7 128 15 81 10 234 6 1 27 31 8 81 7 swor 50 Bash 5 50 0 9 10 Stun 5 50 0 7 8 0 0 0 0
Barbarian 1hs-Normal 25 561 5 1 75 515 MercX101 MercX167 9000 110 852 12 509 7 190 15 123 10 432 9 1 60 64 8 139 4 swor 50 Bash 5 75 0 20 0 Stun 5 75 0 16 0 0 0 0 0
Barbarian 1hs-Nightmare 26 561 5 2 42 515 MercX101 MercX167 18000 115 421 12 263 7 125 15 76 10 214 6 4 25 29 8 78 7 swor 50 Bash 5 50 0 8 10 Stun 5 50 0 6 8 0 0 0 0
Barbarian 1hs-Nightmare 26 561 5 2 75 515 MercX101 MercX167 18000 115 817 12 494 7 187 15 118 10 412 9 4 58 62 8 136 4 swor 50 Bash 5 75 0 19 0 Stun 5 75 0 15 0 0 0 0 0
Barbarian 1hs-Nightmare 27 561 5 2 42 515 MercX101 MercX167 18000 115 421 12 263 7 125 15 76 10 214 6 4 25 29 8 78 7 swor 50 Bash 5 50 0 8 10 Stun 5 50 0 6 8 0 0 0 0
Barbarian 1hs-Nightmare 27 561 5 2 75 515 MercX101 MercX167 18000 115 817 12 494 7 187 15 118 10 412 9 4 58 62 8 136 4 swor 50 Bash 5 75 0 19 0 Stun 5 75 0 15 0 0 0 0 0
Barbarian 1hs-Hell 28 561 5 3 75 515 MercX101 MercX167 32000 120 788 12 479 7 184 15 113 10 392 9 6 56 60 8 133 4 swor 50 Bash 5 70 0 18 0 Stun 5 70 0 14 0 0 0 0 0
Barbarian 1hs-Hell 29 561 5 3 75 515 MercX101 MercX167 32000 120 788 12 479 7 184 15 113 10 392 9 6 56 60 8 133 4 swor 50 Bash 5 70 0 18 0 Stun 5 70 0 14 0 0 0 0 0

15
txt/HitClass.txt Normal file
View File

@ -0,0 +1,15 @@
Hit Class Code
None
Hand To Hand hth
One Hand Swing vs. Small 1hss
One Hand Swing vs. Large 1hsl
Two Hand Swing vs. Small 2hss
Two Hand Swing vs. Large 2hsl
One Hand Thrust 1ht
Two Hand Thrust 2ht
Club club
Staff staf
Bow bow
Crossbow xbow
Claw claw
Overlay over

34
txt/Inventory.txt Normal file
View File

@ -0,0 +1,34 @@
class invLeft invRight invTop invBottom gridRows gridCols gridLeft gridRight gridTop gridBottom gridBoxWidth gridBoxHeight rArmLeft rArmRight rArmTop rArmBottom rArmWidth rArmHeight torsoLeft torsoRight torsoTop torsoBottom torsoWidth torsoHeight lArmLeft lArmRight lArmTop lArmBottom lArmWidth lArmHeight headLeft headRight headTop headBottom headWidth headHeight neckLeft neckRight neckTop neckBottom neckWidth neckHeight rHandLeft rHandRight rHandTop rHandBottom rHandWidth rHandHeight lHandLeft lHandRight lHandTop lHandBottom lHandWidth lHandHeight beltLeft beltRight beltTop beltBottom beltWidth beltHeight feetLeft feetRight feetTop feetBottom feetWidth feetHeight glovesLeft glovesRight glovesTop glovesBottom glovesWidth glovesHeight
Amazon 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
Sorceress 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
Necromancer 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
Paladin 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
Barbarian 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
Monster 0 321 0 442 10 10 16 305 63 352 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Trade Page 1 0 321 0 219 10 4 20 305 41 148 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Trade Page 2 0 321 220 442 10 4 20 305 255 368 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Bank Page 1 0 321 220 442 6 4 74 244 273 386 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Transmogrify Box Page 1 0 321 220 442 3 4 118 205 139 253 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Guild Vault Page 1 0 321 220 442 10 4 16 303 199 313 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Trophy Case Page 1 0 321 220 442 10 4 16 303 199 313 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Expansion
Big Bank Page 1 0 321 220 442 6 8 74 244 82 313 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Hireling -1 -1 -1 -1 0 0 -1 -1 -1 -1 29 29 20 75 47 159 55 112 133 189 77 159 56 82 251 306 47 159 55 112 135 189 8 59 54 51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Druid 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
Assassin 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
Amazon2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
Sorceress2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
Necromancer2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
Paladin2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
Barbarian2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
Monster2 80 401 60 502 10 10 96 385 123 412 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Trade Page 1-2 80 401 60 279 10 4 100 385 101 208 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Trade Page 2-2 80 401 280 502 10 4 100 385 315 428 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Bank Page2 80 401 280 502 6 4 154 324 333 446 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Transmogrify Box2 80 401 280 502 3 4 198 285 199 313 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Guild Vault Page2 80 401 280 502 10 4 96 383 259 373 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Trophy Case Page2 80 401 280 502 10 4 96 383 259 373 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Big Bank Page2 80 401 280 502 6 8 154 324 142 373 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Hireling2 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 29 29 100 155 107 219 55 112 213 269 137 219 56 82 331 386 107 219 55 112 215 269 68 119 54 51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
Druid2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
Assassin2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53

7
txt/ItemRatio.txt Normal file
View File

@ -0,0 +1,7 @@
Function Version Uber Class Specific Unique UniqueDivisor Rare RareDivisor Set SetDivisor Magic MagicDivisor HiQuality HiQualityDivisor Normal NormalDivisor
Ratio - (Monster Level / Ratio Divisor) 0 0 0 1000 6 200 6 125 6 30 16 12 16 4 8
Uber 0 1 0 600 6 120 6 100 6 3 100 4 16 1 8
Ratio - (Monster Level / Ratio Divisor) 1 0 0 1000 6 200 6 125 6 30 16 12 16 2 1
Uber 1 1 0 1000 6 200 6 125 6 30 16 12 16 1 1
Class Specific 1 0 1 500 6 110 6 95 6 10 30 9 24 2 1
Class Specific Uber 1 1 1 400 6 100 6 90 6 10 30 9 24 1 1

328
txt/ItemStatCost.txt Normal file
View File

@ -0,0 +1,328 @@
Stat ID Encode Add Multiply Divide ValShift Save Bits Save Add Target Stat Percent PerLevel PerLevelShift ByTime ItemSpecific damagerelated
STATS_STRENGTH 0 125 55 1024 7 32 -1 0 0
STATS_ENERGY 1 100 55 1024 7 32 -1 0 0
STATS_DEXTERITY 2 125 55 1024 7 32 -1 0 0
STATS_VITALITY 3 100 55 1024 7 32 -1 0 0
STATS_STATPTS 4 1024 -1 0 0
STATS_NEWSKILLS 5 1024 -1 0 0
STATS_HITPOINTS 6 1024 8 -1 0 0
STATS_MAXHP 7 56 20 1024 8 8 32 -1 0 0
STATS_MANA 8 1024 8 -1 0 0
STATS_MAXMANA 9 81 20 1024 8 8 32 -1 0 0
STATS_STAMINA 10 1024 8 -1 0 0
STATS_MAXSTAMINA 11 75 20 1024 8 8 32 -1 0 0
STATS_LEVEL 12 1024 -1 0 0
STATS_EXPERIENCE 13 1024 -1 0 0
STATS_GOLD 14 1024 -1 0 0
STATS_GOLDBANK 15 1024 -1 0 0
STATS_ITEM_ARMOR_PERCENT 16 47 20 1024 9 0 31 1 0 0
STATS_ITEM_MAXDAMAGE_PERCENT 17 45 40 1024 9 0 22 1 0 1
STATS_ITEM_MINDAMAGE_PERCENT 18 45 40 1024 9 0 21 1 0 1
STATS_TOHIT 19 15 10 1024 10 -1 0 1
STATS_TOBLOCK 20 89 204 1024 6 0 -1 0 0
STATS_MINDAMAGE 21 122 200 1024 6 0 -1 0 1
STATS_MAXDAMAGE 22 94 100 1024 7 0 -1 0 1
STATS_SECONDARY_MINDAMAGE 23 76 128 1024 5 0 -1 0 1
STATS_SECONDARY_MAXDAMAGE 24 88 128 1024 6 0 -1 0 1
STATS_DAMAGEPERCENT 25 45 40 1024 8 0 -1 0 1
STATS_MANARECOVERY 26 1024 8 0 -1 0 0
STATS_MANARECOVERYBONUS 27 1024 8 0 -1 0 0
STATS_STAMINARECOVERYBONUS 28 1024 8 0 -1 0 0
STATS_LASTEXP 29 1024 -1 0 0
STATS_NEXTEXP 30 1024 -1 0 0
STATS_ARMORCLASS 31 17 10 1024 10 10 -1 0 0
STATS_ARMORCLASS_VS_MISSILE 32 11 5 1024 8 0 -1 0 0
STATS_ARMORCLASS_VS_HTH 33 13 7 1024 8 0 -1 0 0
STATS_NORMAL_DAMAGE_REDUCTION 34 188 200 1024 6 0 -1 0 0
STATS_MAGIC_DAMAGE_REDUCTION 35 397 340 1024 6 0 -1 0 0
STATS_DAMAGERESIST 36 152 68 1024 8 0 -1 0 0
STATS_MAGICRESIST 37 164 68 1024 8 0 -1 0 0
STATS_MAXMAGICRESIST 38 1091 409 1024 5 0 -1 0 0
STATS_FIRERESIST 39 43 20 1024 8 0 -1 0 0
STATS_MAXFIRERESIST 40 584 256 1024 5 0 -1 0 0
STATS_LIGHTRESIST 41 43 20 1024 8 0 -1 0 0
STATS_MAXLIGHTRESIST 42 584 256 1024 5 0 -1 0 0
STATS_COLDRESIST 43 43 20 1024 8 0 -1 0 0
STATS_MAXCOLDRESIST 44 584 256 1024 5 0 -1 0 0
STATS_POISONRESIST 45 43 20 1024 8 0 -1 0 0
STATS_MAXPOISONRESIST 46 526 256 1024 5 0 -1 0 0
STATS_DAMAGEAURA 47 1024 -1 0 0
STATS_FIREMINDAM 48 11 10 1024 8 0 -1 0 1
STATS_FIREMAXDAM 49 19 10 1024 8 0 -1 0 1
STATS_LIGHTMINDAM 50 12 10 1024 6 0 -1 0 1
STATS_LIGHTMAXDAM 51 17 10 1024 9 0 -1 0 1
STATS_MAGICMINDAM 52 196 20 1024 6 0 -1 0 1
STATS_MAGICMAXDAM 53 183 20 1024 7 0 -1 0 1
STATS_COLDMINDAM 54 451 512 1024 6 0 -1 0 1
STATS_COLDMAXDAM 55 128 340 1024 8 0 -1 0 1
STATS_COLDLENGTH 56 77 4 1024 8 0 -1 0 1
STATS_POISONMINDAM 57 12 28 1024 9 0 -1 0 1
STATS_POISONMAXDAM 58 11 34 1024 9 0 -1 0 1
STATS_POISONLENGTH 59 0 4 1024 8 0 -1 0 1
STATS_LIFEDRAINMINDAM 60 1044 341 1024 7 0 -1 0 1
STATS_LIFEDRAINMAXDAM 61 1024 -1 0 1
STATS_MANADRAINMINDAM 62 1179 341 1024 7 0 -1 0 1
STATS_MANADRAINMAXDAM 63 1024 -1 0 1
STATS_STAMDRAINMINDAM 64 1024 -1 0 1
STATS_STAMDRAINMAXDAM 65 1024 -1 0 1
STATS_STUNLENGTH 66 1024 -1 0 1
STATS_VELOCITYPERCENT 67 1024 7 30 -1 0 0
STATS_ATTACKRATE 68 1024 7 30 -1 0 1
STATS_OTHER_ANIMRATE 69 1024 -1 0 0
STATS_QUANTITY 70 1024 -1 0 1
STATS_VALUE 71 1024 8 100 -1 0 0
STATS_DURABILITY 72 1024 8 0 -1 0 0
STATS_MAXDURABILITY 73 9 4 1024 8 0 -1 0 0
STATS_HPREGEN 74 451 410 1024 5 10 -1 0 0
STATS_ITEM_MAXDURABILITY_PERCENT 75 117 10 1024 7 20 -1 0 0
STATS_ITEM_MAXHP_PERCENT 76 32093 204 1024 6 10 -1 0 0
STATS_ITEM_MAXMANA_PERCENT 77 56452 204 1024 6 10 -1 0 0
STATS_ITEM_ATTACKERTAKESDAMAGE 78 112 128 1024 7 0 -1 0 0
STATS_ITEM_GOLDBONUS 79 187 34 1024 8 20 -1 0 0
STATS_ITEM_MAGICBONUS 80 577 102 1024 7 20 -1 0 0
STATS_ITEM_KNOCKBACK 81 105 0 1024 7 0 -1 0 1
STATS_ITEM_TIMEDURATION 82 1024 9 20 -1 0 0
STATS_ITEM_ADDAMASKILLPOINTS 83 88042 2048 1024 3 0 -1 0 0
STATS_ITEM_ADDPALSKILLPOINTS 84 88042 2048 1024 3 0 -1 0 0
STATS_ITEM_ADDNECSKILLPOINTS 85 88042 2048 1024 3 0 -1 0 0
STATS_ITEM_ADDSORSKILLPOINTS 86 88042 2048 1024 3 0 -1 0 0
STATS_ITEM_ADDBARSKILLPOINTS 87 88042 2048 1024 3 0 -1 0 0
STATS_ITEM_DOUBLEHERBDURATION 88 1024 1 0 -1 0 0
STATS_ITEM_LIGHTRADIUS 89 15 51 1024 4 4 -1 0 0
STATS_ITEM_LIGHTCOLOR 90 155 0 1024 5 0 -1 0 0
STATS_ITEM_REQ_PERCENT 91 26 -34 1024 8 100 -1 0 0
STATS_ITEM_FASTATTACKRATE 92 211 128 1024 6 20 -1 0 1
STATS_ITEM_FASTERATTACKRATE 93 1042 156 1024 6 20 -1 0 1
STATS_ITEM_FASTESTATTACKRATE 94 4077 184 1024 7 20 -1 0 1
STATS_ITEM_FASTMOVEVELOCITY 95 1047 128 1024 6 20 -1 0 0
STATS_ITEM_FASTERMOVEVELOCITY 96 4083 156 1024 6 20 -1 0 0
STATS_ITEM_FASTESTMOVEVELOCITY 97 16562 184 1024 7 20 -1 0 0
STATS_ITEM_FASTGETHITRATE 98 415 64 1024 6 20 -1 0 0
STATS_ITEM_FASTERGETHITRATE 99 1065 72 1024 6 20 -1 0 0
STATS_ITEM_FASTESTGETHITRATE 100 3084 96 1024 7 20 -1 0 0
STATS_ITEM_FASTBLOCKRATE 101 389 64 1024 6 20 -1 0 0
STATS_ITEM_FASTERBLOCKRATE 102 1484 72 1024 6 20 -1 0 0
STATS_ITEM_FASTESTBLOCKRATE 103 2270 96 1024 7 20 -1 0 0
STATS_ITEM_FASTCASTRATE 104 1215 128 1024 6 20 -1 0 0
STATS_ITEM_FASTERCASTRATE 105 3876 156 1024 6 20 -1 0 0
STATS_ITEM_FASTESTCASTRATE 106 5083 184 1024 7 20 -1 0 0
STATS_ITEM_SINGLESKILL1 107 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_SINGLESKILL2 108 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_SINGLESKILL3 109 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_POISONLENGTHRESIST 110 27 10 1024 8 20 -1 0 0
STATS_ITEM_NORMALDAMAGE 111 94 100 1024 7 20 -1 0 1
STATS_ITEM_HOWL 112 55 10 1024 7 -1 -1 0 1
STATS_ITEM_STUPIDITY 113 332 1024 1024 7 0 -1 0 1
STATS_ITEM_DAMAGETOMANA 114 43 20 1024 6 0 -1 0 0
STATS_ITEM_IGNORETARGETAC 115 1088 1024 1024 1 0 -1 0 1
STATS_ITEM_FRACTIONALTARGETAC 116 67 20 1024 7 0 -1 0 1
STATS_ITEM_PREVENTHEAL 117 48 50 1024 7 0 -1 0 1
STATS_ITEM_HALFFREEZEDURATION 118 5096 988 1024 1 0 -1 0 0
STATS_ITEM_TOHIT_PERCENT 119 981 40 1024 9 20 -1 0 1
STATS_ITEM_DAMAGETARGETAC 120 24 -20 1024 7 128 -1 0 1
STATS_ITEM_DEMONDAMAGE_PERCENT 121 19 12 1024 9 20 -1 0 1
STATS_ITEM_UNDEADDAMAGE_PERCENT 122 13 12 1024 9 20 -1 0 1
STATS_ITEM_DEMON_TOHIT 123 15 7 1024 10 128 -1 0 1
STATS_ITEM_UNDEAD_TOHIT 124 11 7 1024 10 128 -1 0 1
STATS_ITEM_THROWABLE 125 82 1024 1024 1 0 -1 0 0
STATS_ITEM_FIRESKILL 126 76 1024 1024 4 0 -1 0 0
STATS_ITEM_ALLSKILLS 127 15123 4096 1024 3 0 -1 0 0
STATS_ITEM_ATTACKERTAKESLIGHTDAMAGE 128 4 102 1024 5 0 -1 0 0
STATS_IRONMAIDEN_LEVEL 129 1024 -1 0 0
STATS_LIFETAP_LEVEL 130 1024 -1 0 0
STATS_THORNS_LEVEL 131 1024 -1 0 0
STATS_BONEARMOR 132 1024 -1 0 0
STATS_BONEARMORMAX 133 1024 -1 0 0
STATS_ITEM_FREEZE 134 666 12 1024 16 0 -1 0 1
STATS_ITEM_OPENWOUNDS 135 23 10 1024 7 0 -1 0 1
STATS_ITEM_CRUSHINGBLOW 136 98 40 1024 7 0 -1 0 1
STATS_ITEM_KICKDAMAGE 137 77 51 1024 7 0 -1 0 0
STATS_ITEM_MANAAFTERKILL 138 17 102 1024 7 0 -1 0 0
STATS_ITEM_HEALAFTERDEMONKILL 139 18 102 1024 7 0 -1 0 0
STATS_ITEM_EXTRABLOOD 140 15 10 1024 7 0 -1 0 1
STATS_ITEM_DEADLYSTRIKE 141 31 25 1024 7 0 -1 0 1
STATS_ITEM_ABSORBFIRE_PERCENT 142 5486 102 1024 7 0 -1 0 0
STATS_ITEM_ABSORBFIRE 143 1739 204 1024 7 0 -1 0 0
STATS_ITEM_ABSORBLIGHT_PERCENT 144 5486 102 1024 7 0 -1 0 0
STATS_ITEM_ABSORBLIGHT 145 1739 204 1024 7 0 -1 0 0
STATS_ITEM_ABSORBMAGIC_PERCENT 146 5486 102 1024 7 0 -1 0 0
STATS_ITEM_ABSORBMAGIC 147 1739 204 1024 7 0 -1 0 0
STATS_ITEM_ABSORBCOLD_PERCENT 148 5486 102 1024 7 0 -1 0 0
STATS_ITEM_ABSORBCOLD 149 1739 204 1024 7 0 -1 0 0
STATS_ITEM_SLOW 150 101 40 1024 7 0 -1 0 1
STATS_ITEM_BLESSEDAIM 151 1024 7 0 -1 0 0
STATS_ITEM_DEFIANCE 152 1024 7 0 -1 0 0
STATS_ITEM_CANNOTBEFROZEN 153 15011 2048 1024 1 -1 0 0
STATS_ITEM_STAMINADRAINPCT 154 102 20 1024 7 20 -1 0 1
STATS_ITEM_REANIMATE 155 1024 7 0 -1 0 1
STATS_ITEM_PIERCE 156 1924 2048 1024 7 0 -1 0 1
STATS_ITEM_MAGICARROW 157 511 1024 1024 7 0 -1 0 0
STATS_ITEM_EXPLOSIVEARROW 158 492 1536 1024 7 0 -1 0 0
STATS_ITEM_THROW_MINDAMAGE 159 76 128 1024 6 0 -1 0 1
STATS_ITEM_THROW_MAXDAMAGE 160 88 128 1024 7 0 -1 0 1
STATS_SKILL_HANDOFATHENA 161 1024 -1 0 0
STATS_SKILL_STAMINAPERCENT 162 1024 -1 0 0
STATS_SKILL_PASSIVE_STAMINAPERCENT 163 1024 -1 0 0
STATS_SKILL_CONCENTRATION 164 1024 -1 0 0
STATS_SKILL_ENCHANT 165 1024 -1 0 0
STATS_SKILL_PIERCE 166 1024 -1 0 0
STATS_SKILL_CONVICTION 167 1024 -1 0 0
STATS_SKILL_CHILLINGARMOR 168 1024 -1 0 0
STATS_SKILL_FRENZY 169 1024 -1 0 0
STATS_SKILL_DECREPIFY 170 1024 -1 0 0
STATS_SKILL_ARMOR_PERCENT 171 1024 -1 0 0
STATS_ALIGNMENT 172 1024 -1 0 0
STATS_TARGET0 173 1024 -1 0 0
STATS_TARGET1 174 1024 -1 0 0
STATS_GOLDLOST 175 1024 -1 0 0
STATS_CONVERSION_LEVEL 176 1024 -1 0 0
STATS_CONVERSION_MAXHP 177 1024 -1 0 0
STATS_UNIT_DOOVERLAY 178 1024 -1 0 0
Expansion
STATS_ITEM_ADDDRUSKILLPOINTS 179 88042 2048 1024 3 0 -1 0 0
STATS_ITEM_ADDASSSKILLPOINTS 180 88042 2048 1024 3 0 -1 0 0
STATS_ITEM_ADDSKILL_SINGLE4 181 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_ADDSKILL_SINGLE5 182 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_ADDSKILL_SINGLE6 183 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_ADDSKILL_SINGLE7 184 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_ADDSKILL_SINGLE8 185 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_ADDSKILL_SINGLE9 186 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_ADDSKILL_SINGLE10 187 1 181 256 1024 14 0 -1 0 0
STATS_ITEM_ADDSKILL_TAB1 188 5 11042 768 1024 10 0 -1 0 0
STATS_ITEM_ADDSKILL_TAB2 189 5 11042 768 1024 10 0 -1 0 0
STATS_ITEM_ADDSKILL_TAB3 190 5 11042 768 1024 10 0 -1 0 0
STATS_ITEM_ADDSKILL_TAB4 191 5 11042 768 1024 10 0 -1 0 0
STATS_ITEM_ADDSKILL_TAB5 192 5 11042 768 1024 10 0 -1 0 0
STATS_ITEM_ADDSKILL_TAB6 193 5 11042 768 1024 10 0 -1 0 0
STATS_ITEM_NUMSOCKETS 194 38 170 1024 4 0 -1 1 0
STATS_ITEM_SKILLONATTACK1 195 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_SKILLONATTACK2 196 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_SKILLONATTACK3 197 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_SKILLONHIT1 198 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_SKILLONHIT2 199 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_SKILLONHIT3 200 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_SKILLONGETHIT1 201 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_SKILLONGETHIT2 202 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_SKILLONGETHIT3 203 2 190 256 1024 21 0 -1 1 0
STATS_ITEM_CHARGED_SKILL0 204 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL1 205 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL2 206 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL3 207 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL4 208 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL5 209 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL6 210 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL7 211 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL8 212 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_CHARGED_SKILL9 213 3 401 256 1024 30 0 -1 1 0
STATS_ITEM_ARMOR_PERLEVEL 214 43 42 1024 6 0 31 1 3 1 0
STATS_ITEM_ARMORPERCENT_PERLEVEL 215 87 100 1024 6 0 31 1 1 3 1 0
STATS_ITEM_HP_PERLEVEL 216 92 64 1024 8 6 0 7 1 3 1 0
STATS_ITEM_MANA_PERLEVEL 217 90 128 1024 8 6 0 9 1 3 1 0
STATS_ITEM_MAXDAMAGE_PERLEVEL 218 54 204 1024 6 0 22 1 3 1 1
STATS_ITEM_MAXDAMAGE_PERCENT_PERLEVEL 219 86 100 1024 6 0 22 1 1 3 1 1
STATS_ITEM_STRENGTH_PERLEVEL 220 132 128 1024 6 0 0 1 3 1 0
STATS_ITEM_DEXTERITY_PERLEVEL 221 132 128 1024 6 0 2 1 3 1 0
STATS_ITEM_ENERGY_PERLEVEL 222 105 128 1024 6 0 1 1 3 1 0
STATS_ITEM_VITALITY_PERLEVEL 223 105 128 1024 6 0 3 1 3 1 0
STATS_ITEM_TOHIT_PERLEVEL 224 53 20 1024 6 0 19 1 1 1 1
STATS_ITEM_TOHITPERCENT_PERLEVEL 225 10 256 1024 6 0 119 1 1 1 1
STATS_ITEM_COLD_DAMAGEMAX_PERLEVEL 226 1058 340 1024 6 0 55 1 3 1 1
STATS_ITEM_FIRE_DAMAGEMAX_PERLEVEL 227 49 128 1024 6 0 49 1 3 1 1
STATS_ITEM_LTNG_DAMAGEMAX_PERLEVEL 228 49 128 1024 6 0 51 1 3 1 1
STATS_ITEM_POIS_DAMAGEMAX_PERLEVEL 229 49 128 1024 6 0 58 1 3 1 1
STATS_ITEM_RESIST_COLD_PERLEVEL 230 101 128 1024 6 0 43 1 3 1 0
STATS_ITEM_RESIST_FIRE_PERLEVEL 231 101 128 1024 6 0 39 1 3 1 0
STATS_ITEM_RESIST_LTNG_PERLEVEL 232 101 128 1024 6 0 41 1 3 1 0
STATS_ITEM_RESIST_POIS_PERLEVEL 233 101 128 1024 6 0 45 1 3 1 0
STATS_ITEM_ABSORB_COLD_PERLEVEL 234 207 340 1024 6 0 149 1 3 1 0
STATS_ITEM_ABSORB_FIRE_PERLEVEL 235 207 340 1024 6 0 143 1 3 1 0
STATS_ITEM_ABSORB_LTNG_PERLEVEL 236 207 340 1024 6 0 145 1 3 1 0
STATS_ITEM_ABSORB_POIS_PERLEVEL 237 207 340 1024 6 0 151 1 3 1 0
STATS_ITEM_THORNS_PERLEVEL 238 55 256 1024 6 0 78 1 3 1 0
STATS_ITEM_FIND_GOLD_PERLEVEL 239 42 256 1024 6 0 79 1 3 1 0
STATS_ITEM_FIND_MAGIC_PERLEVEL 240 814 1024 1024 6 0 80 1 3 1 0
STATS_ITEM_REGENSTAMINA_PERLEVEL 241 79 256 1024 6 0 28 1 3 1 0
STATS_ITEM_STAMINA_PERLEVEL 242 104 64 1024 6 0 11 1 3 1 0
STATS_ITEM_DAMAGE_DEMON_PERLEVEL 243 56 10 1024 6 0 121 1 3 1 1
STATS_ITEM_DAMAGE_UNDEAD_PERLEVEL 244 91 10 1024 6 0 122 1 3 1 1
STATS_ITEM_TOHIT_DEMON_PERLEVEL 245 55 10 1024 6 0 123 1 1 1 1
STATS_ITEM_TOHIT_UNDEAD_PERLEVEL 246 12 10 1024 6 0 124 1 1 1 1
STATS_ITEM_CRUSHINGBLOW_PERLEVEL 247 213 1024 1024 6 0 136 1 3 1 1
STATS_ITEM_OPENWOUNDS_PERLEVEL 248 181 128 1024 6 0 135 1 3 1 1
STATS_ITEM_KICK_DAMAGE_PERLEVEL 249 104 128 1024 6 0 137 1 3 1 1
STATS_ITEM_DEADLYSTRIKE_PERLEVEL 250 118 512 1024 6 0 141 1 3 1 1
STATS_ITEM_FIND_GEMS_PERLEVEL 251 1024 -1 1 0
STATS_ITEM_REPLENISH_DURABILITY 252 106 256 1024 5 0 -1 1 0
STATS_ITEM_REPLENISH_QUANTITY 253 106 256 1024 5 0 -1 1 0
STATS_ITEM_EXTRA_STACK 254 99 10 1024 8 0 -1 1 0
STATS_ITEM_FIND_ITEM 255 1024 -1 1 0
STATS_ITEM_SLASH_DAMAGE 256 1024 -1 1 1
STATS_ITEM_SLASH_DAMAGE_PERCENT 257 1024 -1 1 1
STATS_ITEM_CRUSH_DAMAGE 258 1024 -1 1 1
STATS_ITEM_CRUSH_DAMAGE_PERCENT 259 1024 -1 1 1
STATS_ITEM_THRUST_DAMAGE 260 1024 -1 1 1
STATS_ITEM_THRUST_DAMAGE_PERCENT 261 1024 -1 1 1
STATS_ITEM_ABSORB_SLASH 262 1024 -1 1 0
STATS_ITEM_ABSORB_CRUSH 263 1024 -1 1 0
STATS_ITEM_ABSORB_THRUST 264 1024 -1 1 0
STATS_ITEM_ABSORB_SLASH_PERCENT 265 1024 -1 1 0
STATS_ITEM_ABSORB_CRUSH_PERCENT 266 1024 -1 1 0
STATS_ITEM_ABSORB_THRUST_PERCENT 267 1024 -1 1 0
STATS_ITEM_ARMOR_BYTIME 268 4 0 1024 22 0 31 1 1 0
STATS_ITEM_ARMORPERCENT_BYTIME 269 4 0 1024 22 0 31 1 1 0
STATS_ITEM_HP_BYTIME 270 4 0 1024 22 0 7 1 1 0
STATS_ITEM_MANA_BYTIME 271 4 0 1024 22 0 9 1 1 0
STATS_ITEM_MAXDAMAGE_BYTIME 272 4 0 1024 22 0 22 1 1 1
STATS_ITEM_MAXDAMAGE_PERCENT_BYTIME 273 4 0 1024 22 0 22 1 1 1
STATS_ITEM_STRENGTH_BYTIME 274 4 0 1024 22 0 0 1 1 0
STATS_ITEM_DEXTERITY_BYTIME 275 4 0 1024 22 0 2 1 1 0
STATS_ITEM_ENERGY_BYTIME 276 4 0 1024 22 0 1 1 1 0
STATS_ITEM_VITALITY_BYTIME 277 4 0 1024 22 0 3 1 1 0
STATS_ITEM_TOHIT_BYTIME 278 4 0 1024 22 0 19 1 1 1
STATS_ITEM_TOHITPERCENT_BYTIME 279 4 0 1024 22 0 19 1 1 1
STATS_ITEM_COLD_DAMAGEMAX_BYTIME 280 4 0 1024 22 0 55 1 1 1
STATS_ITEM_FIRE_DAMAGEMAX_BYTIME 281 4 0 1024 22 0 49 1 1 1
STATS_ITEM_LTNG_DAMAGEMAX_BYTIME 282 4 0 1024 22 0 51 1 1 1
STATS_ITEM_POIS_DAMAGEMAX_BYTIME 283 4 0 1024 22 0 58 1 1 1
STATS_ITEM_RESIST_COLD_BYTIME 284 4 0 1024 22 0 43 1 1 0
STATS_ITEM_RESIST_FIRE_BYTIME 285 4 0 1024 22 0 39 1 1 0
STATS_ITEM_RESIST_LTNG_BYTIME 286 4 0 1024 22 0 41 1 1 0
STATS_ITEM_RESIST_POIS_BYTIME 287 4 0 1024 22 0 45 1 1 0
STATS_ITEM_ABSORB_COLD_BYTIME 288 4 0 1024 22 0 149 1 1 0
STATS_ITEM_ABSORB_FIRE_BYTIME 289 4 0 1024 22 0 143 1 1 0
STATS_ITEM_ABSORB_LTNG_BYTIME 290 4 0 1024 22 0 145 1 1 0
STATS_ITEM_ABSORB_POIS_BYTIME 291 4 0 1024 22 0 151 1 1 0
STATS_ITEM_FIND_GOLD_BYTIME 292 4 0 1024 22 0 79 1 1 0
STATS_ITEM_FIND_MAGIC_BYTIME 293 4 0 1024 22 0 80 1 1 0
STATS_ITEM_REGENSTAMINA_BYTIME 294 4 0 1024 22 0 28 1 1 0
STATS_ITEM_STAMINA_BYTIME 295 4 0 1024 22 0 11 1 1 0
STATS_ITEM_DAMAGE_DEMON_BYTIME 296 4 0 1024 22 0 121 1 1 1
STATS_ITEM_DAMAGE_UNDEAD_BYTIME 297 4 0 1024 22 0 122 1 1 1
STATS_ITEM_TOHIT_DEMON_BYTIME 298 4 0 1024 22 0 123 1 1 1
STATS_ITEM_TOHIT_UNDEAD_BYTIME 299 4 0 1024 22 0 124 1 1 1
STATS_ITEM_CRUSHINGBLOW_BYTIME 300 4 0 1024 22 0 136 1 1 1
STATS_ITEM_OPENWOUNDS_BYTIME 301 4 0 1024 22 0 135 1 1 1
STATS_ITEM_KICK_DAMAGE_BYTIME 302 4 0 1024 22 0 137 1 1 1
STATS_ITEM_DEADLYSTRIKE_BYTIME 303 4 0 1024 22 0 141 1 1 1
STATS_ITEM_FIND_GEMS_BYTIME 304 4 0 1024 -1 1 0
STATS_ITEM_PIERCE_COLD 305 1024 -1 1 1
STATS_ITEM_PIERCE_FIRE 306 1024 -1 1 1
STATS_ITEM_PIERCE_LTNG 307 1024 -1 1 1
STATS_ITEM_PIERCE_POIS 308 1024 -1 1 1
STATS_ITEM_DAMAGE_VS_MONSTER 309 1024 -1 1 1
STATS_ITEM_DAMAGE_PERCENT_VS_MONSTER 310 1024 -1 1 1
STATS_ITEM_TOHIT_VS_MONSTER 311 1024 -1 1 1
STATS_ITEM_TOHIT_PERCENT_VS_MONSTER 312 1024 -1 1 1
STATS_ITEM_AC_VS_MONSTER 313 1024 -1 1 0
STATS_ITEM_AC_PERCENT_VS_MONSTER 314 1024 -1 1 0
STATS_FIRELENGTH 315 1024 -1 0 0
STATS_BURNINGMIN 316 1024 -1 0 0
STATS_BURNINGMAX 317 1024 -1 0 0
STATS_PROGRESSIVE_DAMAGE 318 1024 -1 0 0
STATS_PROGRESSIVE_STEAL 319 1024 -1 0 0
STATS_PROGRESSIVE_OTHER 320 1024 -1 0 0
STATS_PROGRESSIVE_FIRE 321 1024 -1 0 0
STATS_PROGRESSIVE_COLD 322 1024 -1 0 0
STATS_PROGRESSIVE_LIGHTNING 323 1024 -1 0 0
STATS_ITEM_EXTRA_CHARGES 324 1024 6 0 -1 1 1 1
STATS_PROGRESSIVE_TOHIT 323 1024 -1 0 0

93
txt/ItemTypes.txt Normal file
View File

@ -0,0 +1,93 @@
ItemType Code Order Equiv1 Equiv2 Identify Repair Mods Body BodyLoc1 BodyLoc2 Shoots Quiver Throwable Reload ReEquip AutoStack Magic Rare Normal Charm Gem Beltable MaxSock1 MaxSock25 MaxSock40 TreasureClass Rarity StaffMods CostFormula Class VarInvGfx InvGfx1 InvGfx2 InvGfx3 InvGfx4 InvGfx5 InvGfx6 StorePage
None 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
None 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Shield shie 0 shld 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 3 4 0 3 1 0 armo
Armor tors 0 armo 1 1 1 1 tors tors 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 1 0 armo
Gold gold 0 misc 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0
Bow Quiver bowq 0 misl 0 0 0 1 rarm larm bow 0 1 0 1 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
Crossbow Quiver xboq 0 misl 0 0 0 1 rarm larm xbow 0 1 0 1 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
Player Body Part play 0 misc 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 0 0 misc
Herb herb 0 misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
Potion poti 0 misc 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
Ring ring 0 misc 1 0 1 1 rrin lrin 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 0 5 invrin1 invrin2 invrin3 invrin4 invrin5 mag
Elixir elix 0 misc 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 0 0 misc
Amulet amul 0 misc 1 0 1 1 neck neck 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 0 3 invamu1 invamu2 invamu3 mag
Charm char 0 misc 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 0 3 invch1 invch4 invch7 mag
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Boots boot 0 armo 1 1 1 1 feet feet 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 armo
Gloves glov 0 armo 1 1 1 1 glov glov 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 armo
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Book book 0 misc 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
Belt belt 0 armo 1 1 1 1 belt belt 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 armo
Gem gem 0 sock 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc
Torch torc 0 misc 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
Scroll scro 0 misc 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Scepter scep 0 rod 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 5 6 0 1 pal 0 0 weap
Wand wand 0 rod 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 2 2 2 0 1 nec 0 0 weap
Staff staf 0 rod 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 5 6 6 0 1 sor 0 0 weap
Bow bow 0 miss 1 0 1 1 rarm larm bowq 0 0 0 0 0 0 0 0 0 0 3 4 5 1 3 0 0 weap
Axe axe 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 4 5 6 0 3 0 0 weap
Club club 0 blun 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 0 0 weap
Sword swor 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 5 0 3 0 0 weap
Hammer hamm 0 blun 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 0 0 weap
Knife knif 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 2 3 3 0 3 0 0 weap
Spear spea 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 4 0 3 0 0 weap
Polearm pole 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 4 0 3 0 0 weap
Crossbow xbow 0 miss 1 1 1 1 rarm larm xboq 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 0 0 weap
Mace mace 0 blun 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 0 0 weap
Helm helm 0 armo 1 1 1 1 head head 0 0 0 0 0 0 0 0 0 0 2 2 3 0 3 1 0 armo
Missile Potion tpot 0 thro 0 1 0 1 rarm larm 1 1 1 1 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
Quest ques 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Body Part body 0 misc 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 2 0 misc
Key key 0 misc 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
Throwing Knife tkni 0 comb knif 1 1 1 1 rarm larm 1 1 1 1 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
Throwing Axe taxe 0 comb axe 1 1 1 1 rarm larm 1 1 1 1 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
Javelin jave 0 comb spea 1 1 1 1 rarm larm 1 1 1 1 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
Weapon weap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0
Melee Weapon mele 0 weap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0
Missile Weapon miss 0 weap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Thrown Weapon thro 0 weap 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Combo Weapon comb 0 mele thro 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Any Armor armo 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0
Any Shield shld 0 armo seco 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Miscellaneous misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Socket Filler sock 0 misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Second Hand seco 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Staves And Rods rod 0 blun 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Missile misl 0 misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Blunt blun 0 mele 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Expansion
Jewel jewl 0 sock 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 3 0 6 invjw1 invjw2 invjw3 invjw4 invjw5 invjw6 misc
Class Specific clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
Amazon Item amaz 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 ama 0
Barbarian Item barb 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 bar 0
Necromancer Item necr 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 nec 0
Paladin Item pala 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 pal 0
Sorceress Item sorc 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 sor 0
Assassin Item assn 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 ass 0
Druid Item drui 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 dru 0
Hand to Hand h2h 0 mele assn 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 2 3 3 0 2 0 ass 0 weap
Orb orb 0 weap sorc 1 1 1 1 rarm larm 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 sor 0 sor 0 mag
Voodoo Heads head 0 shld necr 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 nec 0 nec 0 mag
Auric Shields ashd 0 shld pala 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 4 0 1 0 pal 0 armo
Primal Helm phlm 0 helm barb 1 1 1 1 head head 0 0 0 0 0 0 0 0 0 0 2 3 3 0 1 bar 0 bar 0 armo
Pelt pelt 0 helm drui 1 1 1 1 head head 0 0 0 0 0 0 0 0 0 0 2 3 3 0 1 dru 0 dru 0 armo
Cloak cloa 0 tors assn 1 1 1 1 tors tors 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ass 0 ass 0 armo
Rune rune 0 sock 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
Circlet circ 0 helm 1 1 1 1 head head 0 0 0 0 1 0 0 0 0 0 1 1 1 0 3 1 0 armo
Healing Potion hpot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
Mana Potion mpot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
Rejuv Potion rpot 0 hpot mpot 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
Stamina Potion spot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
Antidote Potion apot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
Thawing Potion wpot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
Small Charm scha 0 char 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 0 3 invch1 invch4 invch7 mag
Medium Charm mcha 0 char 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 0 3 invch2 invch5 invch8 mag
Large Charm lcha 0 char 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 0 3 invch3 invch6 invch9 mag
Amazon Bow abow 0 bow amaz 1 0 1 1 rarm larm bowq 0 0 0 0 0 0 0 0 0 0 3 4 5 1 1 0 ama 0 weap
Amazon Spear aspe 0 spea amaz 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 4 0 1 0 ama 0 weap
Amazon Javelin ajav 0 jave amaz 1 1 1 1 rarm larm 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 ama 0 misc
Hand to Hand 2 h2h2 0 h2h 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 2 3 3 0 2 ass 0 ass 0 weap
Magic Bow Quiv mboq 0 bowq 1 0 1 1 rarm larm bow 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
Magic Xbow Quiv mxbq 0 xboq 1 0 1 1 rarm larm xbow 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 misc

135
txt/Levels.txt Normal file
View File

@ -0,0 +1,135 @@
Name Id Pal Act Layer SizeX SizeY OffsetX OffsetY Depend Rain Mud NoPer LOSDraw FloorFilter BlankScreen DrawEdges IsInside DrlgType LevelType SubType SubTheme SubWaypoint SubShrine Vis0 Vis1 Vis2 Vis3 Vis4 Vis5 Vis6 Vis7 Warp0 Warp1 Warp2 Warp3 Warp4 Warp5 Warp6 Warp7 Intensity Red Green Blue Portal Position SaveMonsters Quest WarpDist MonLvl1 MonLvl2 MonLvl3 MonDen MonUMin MonUMax MonWndr MonSpcWalk Mtot M1 M2 M3 M4 M5 M6 M7 M8 M9 M10 M11 M12 M13 M14 M15 M16 M17 M18 M19 M20 M21 M22 M23 M24 M25 S1 S2 S3 S4 S5 S6 S7 S8 S9 S10 S11 S12 S13 S14 S15 S16 S17 S18 S19 S20 S21 S22 S23 S24 S25 Utot U1 U2 U3 U4 U5 U6 U7 U8 U9 U10 U11 U12 U13 U14 U15 U16 U17 U18 U19 U20 U21 U22 U23 U24 U25 C1 C2 C3 C4 C5 CA1 CA2 CA3 CA4 CA5 CD1 CD2 CD3 CD4 CD5 Themes SoundEnv Waypoint LevelName LevelWarp EntryFile ObjGrp0 ObjGrp1 ObjGrp2 ObjGrp3 ObjGrp4 ObjGrp5 ObjGrp6 ObjGrp7 ObjPrb0 ObjPrb1 ObjPrb2 ObjPrb3 ObjPrb4 ObjPrb5 ObjPrb6 ObjPrb7 Beta
Null 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Town 1 0 0 0 56 40 -1 -1 0 1 0 0 0 1 1 0 0 2 1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 1 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 149 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 1 0 Rogue Encampment To The Rogue Encampment A1L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Wilderness 1 2 0 0 0 80 80 -1 -1 0 1 0 0 0 1 1 1 0 3 2 6 0 4 5 0 0 0 8 8 8 8 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 0 0 1 0 2025 1 34 67 520 0 0 1 0 3 5 19 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 5 19 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 255 Blood Moor To The Blood Moor A1L2 4 38 33 34 0 0 0 0 3 17 17 17 0 0 0 0 1
Act 1 - Wilderness 2 3 0 0 0 80 80 1000 1000 0 1 0 0 0 1 1 1 0 3 2 6 1 4 5 0 0 0 9 9 9 9 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 1 0 1 0 2025 2 35 68 520 1 1 1 0 4 28 43 58 165 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 28 43 58 165 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 Cold Plains To The Cold Plains A1L3 4 38 33 34 0 0 0 0 3 22 22 22 0 0 0 0 1
Act 1 - Wilderness 3 4 0 0 0 80 80 1000 1000 0 1 0 0 0 1 1 1 0 3 2 6 2 4 5 0 0 0 10 10 10 10 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 0 0 1 0 2025 4 37 70 520 1 2 1 0 5 0 6 15 53 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 206 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 6 15 53 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 Stony Field To The Stony Field A1L4 1 38 33 34 0 0 0 0 4 27 27 27 0 0 0 0 1
Act 1 - Wilderness 4 5 0 0 0 80 80 -1 -1 0 1 0 0 0 1 1 1 0 3 2 6 3 4 5 0 0 0 10 10 10 10 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 1 0 1 0 2025 5 38 71 520 1 2 1 0 5 20 44 64 166 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 20 44 64 166 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 Dark Wood To The Dark Wood A1L5 1 38 33 34 0 0 0 0 4 30 30 30 0 0 0 0 1
Act 1 - Wilderness 5 6 0 0 0 80 80 -1 -1 0 1 0 0 0 1 1 1 0 3 2 6 4 4 5 0 0 20 11 11 11 11 0 -1 -1 10 0 1 2 3 -1 0 0 0 0 0 0 1 0 2025 6 39 72 520 1 2 1 0 6 1 16 24 54 59 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 16 24 54 59 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 Black Marsh To The Black Marsh A1L6 1 38 33 34 0 0 0 0 5 32 32 32 0 0 0 0 1
Act 1 - Wilderness 6 7 0 0 0 80 80 -1 -1 0 1 0 0 0 1 1 1 0 3 2 6 2 4 5 0 0 0 12 12 12 12 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 1 0 1 0 2025 8 41 74 520 1 2 1 0 5 45 65 167 171 383 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 45 65 167 171 383 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 255 Tamoe Highland To The Tamoe Highland A1L7 1 38 33 34 0 0 0 0 5 35 35 35 0 0 0 0 1
Act 1 - Cave 1 8 0 0 1 200 200 1500 1000 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 2 0 0 0 0 0 0 0 4 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 1 2025 1 34 67 600 0 0 0 0 3 5 28 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 5 28 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Den of Evil To The Den of Evil A1L9 6 4 0 0 0 0 0 0 35 45 0 0 0 0 0 0 1
Act 1 - Cave 2 9 0 0 2 200 200 1500 1300 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 3 0 0 0 13 0 0 0 4 -1 -1 -1 5 -1 -1 -1 0 255 255 255 0 0 1 0 2025 2 35 68 600 1 2 1 0 3 0 6 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 6 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Cave Level 1 To The Cave Level 1 A1L9 6 4 0 0 0 0 0 0 30 3 0 0 0 0 0 0 1
Act 1 - Cave 3 10 0 0 3 200 200 1500 1600 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 4 5 0 0 14 0 0 0 4 4 -1 -1 5 -1 -1 -1 0 255 255 255 0 0 1 0 2025 4 37 70 600 1 2 1 0 4 12 20 44 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12 20 44 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Underground Passage Level 1 To Underground Passage Level 1 A1L10 6 4 0 0 0 0 0 0 30 3 0 0 0 0 0 0 1
Act 1 - Cave 4 11 0 0 4 200 200 1500 1900 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 6 0 0 0 15 0 0 0 4 -1 -1 -1 5 -1 -1 -1 0 255 255 255 0 0 1 0 2025 5 38 71 600 1 2 1 0 4 12 20 24 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12 20 24 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Hole Level 1 To The Hole Level 1 A1L11 6 4 0 0 0 0 0 0 30 3 0 0 0 0 0 0 1
Act 1 - Cave 5 12 0 0 5 200 200 1500 2200 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 7 0 0 0 16 0 0 0 4 -1 -1 -1 5 -1 -1 -1 0 255 255 255 0 0 1 0 2025 7 40 73 600 1 2 1 0 4 2 21 45 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 21 45 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Pit Level 1 To The Pit Level 1 A1L12 6 4 0 0 0 0 0 0 30 6 0 0 0 0 0 0 1
Act 1 - Cave 2 Treasure 13 0 0 6 24 24 1500 2500 0 0 0 0 1 1 1 0 1 2 3 -1 -1 -1 -1 0 9 0 0 0 0 0 0 -1 4 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 2 35 68 600 1 2 1 0 3 0 6 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 6 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Cave Level 2 To The Cave Level 2 A1L14 6 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
Act 1 - Cave 3 Treasure 14 0 0 7 24 24 1500 2624 0 0 0 0 1 1 1 0 1 2 3 -1 -1 -1 -1 0 10 0 0 0 0 0 0 -1 4 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 4 37 70 600 1 2 1 0 4 12 20 44 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12 20 44 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Underground Passage Level 2 To Underground Passage Level 2 A1L15 6 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
Act 1 - Cave 4 Treasure 15 0 0 8 24 24 1500 2748 0 0 0 0 1 1 1 0 1 2 3 -1 -1 -1 -1 0 11 0 0 0 0 0 0 -1 4 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 3800 5 38 71 600 1 2 1 0 4 12 20 24 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12 20 24 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Hole Level 2 To The Hole Level 2 A1L16 6 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
Act 1 - Cave 5 Treasure 16 0 0 9 24 24 1500 2872 0 0 0 0 1 1 1 0 1 2 3 -1 -1 -1 -1 0 12 0 0 0 0 0 0 -1 4 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 7 40 73 600 1 2 1 0 4 2 21 45 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 21 45 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Pit Level 2 To The Pit Level 2 A1L17 6 4 0 0 0 0 0 0 25 6 0 0 0 0 0 0 1
Act 1 - Graveyard 17 0 0 0 40 48 -1 -1 0 1 0 0 0 1 1 1 0 3 2 -1 -1 -1 -1 18 19 0 0 0 0 0 0 6 7 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 3 36 69 520 0 0 1 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 255 Burial Grounds To The Burial Grounds A1L18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Crypt 1 A 18 0 0 10 200 200 2000 1000 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 17 0 0 0 0 0 0 0 8 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 3 36 69 1056 1 1 1 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Crypt To The Crypt A1L19 7 8 9 10 0 0 0 0 75 4 50 75 0 0 0 0 1
Act 1 - Crypt 2 A 19 0 0 11 200 200 2000 1300 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 17 0 0 0 0 0 0 0 8 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 3 36 69 1056 1 1 1 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Mausoleum To The Mausoleum A1L20 7 8 9 10 0 0 0 0 75 4 50 75 0 0 0 0 1
Act 1 - Tower 2 20 0 0 12 8 8 2000 1600 0 0 0 0 1 1 1 0 1 2 2 -1 -1 -1 -1 6 21 0 0 0 0 0 0 11 12 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 7 40 73 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 5 255 Forgotten Tower To The Forgotten Tower A1L21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Crypt 3 A 21 0 0 13 200 200 2500 1000 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 20 22 0 0 0 0 0 0 8 9 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 1 To The Tower Cellar Level 1 A1L22 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
Act 1 - Crypt 3 B 22 0 0 14 200 200 2500 1300 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 21 23 0 0 0 0 0 0 8 9 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 2 To The Tower Cellar Level 2 A1L23 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
Act 1 - Crypt 3 C 23 0 0 15 200 200 2500 1600 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 22 24 0 0 0 0 0 0 8 9 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 3 To The Tower Cellar Level 3 A1L24 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
Act 1 - Crypt 3 D 24 0 0 16 200 200 2500 1900 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 23 25 0 0 0 0 0 0 8 9 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 4 To The Tower Cellar Level 4 A1L25 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
Act 1 - Crypt 3 E 25 0 0 17 30 30 2500 2200 0 0 0 0 1 1 1 0 1 2 4 -1 -1 -1 -1 24 0 0 0 0 0 0 0 8 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 5 To The Tower Cellar Level 5 A1L26 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
Act 1 - Monastery 26 0 0 0 64 18 3000 1000 0 0 0 0 1 1 1 0 0 2 5 -1 -1 -1 -1 0 27 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 8 41 74 600 0 1 1 0 4 13 45 171 387 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 13 45 171 387 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 6 255 Monastery Gate To The Monastery Gate A1L27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Courtyard 1 27 0 0 0 56 40 0 -40 26 0 0 0 1 1 1 0 0 2 6 -1 -1 -1 -1 26 28 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 1 0 1 0 2025 9 42 75 600 0 1 1 0 4 25 46 60 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 46 60 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 5 Outer Cloister To The Outer Cloister A1L28 14 15 0 0 0 0 0 0 7 33 0 0 0 0 0 0 1
Act 1 - Barracks 28 0 0 0 200 200 -1 -1 0 0 0 0 1 1 1 0 1 1 7 -1 -1 -1 -1 27 29 0 0 0 0 0 0 -1 14 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 9 42 75 680 1 2 1 0 5 46 57 60 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 46 57 60 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 8 255 Barracks To The Barracks A1L29 51 3 17 0 0 0 0 0 9 35 25 0 0 0 0 0 1
Act 1 - Jail 1 29 0 0 18 200 200 3500 1000 0 0 0 0 1 1 1 0 1 1 8 -1 -1 -1 -1 28 30 0 0 0 0 0 0 13 14 -1 -1 -1 -1 -1 -1 0 255 255 255 1 0 1 0 2025 10 43 76 680 1 2 1 1 5 22 39 57 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 22 39 57 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 8 6 Jail Level 1 To The Jail Level 1 A1L30 51 15 3 0 0 0 0 0 11 50 35 0 0 0 0 0 1
Act 1 - Jail 2 30 0 0 19 200 200 3500 1300 0 0 0 0 1 1 1 0 1 1 8 -1 -1 -1 -1 29 31 0 0 0 0 0 0 13 14 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 10 43 76 680 1 2 1 1 5 22 39 57 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 22 39 57 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 8 255 Jail Level 2 To The Jail Level 2 A1L31 51 15 3 0 0 0 0 0 13 50 45 0 0 0 0 0 1
Act 1 - Jail 3 31 0 0 20 200 200 3500 1600 0 0 0 0 1 1 1 0 1 1 8 -1 -1 -1 -1 30 32 0 0 0 0 0 0 13 13 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 10 43 76 680 1 2 1 1 5 22 39 57 172 388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 22 39 57 172 388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 8 255 Jail Level 3 To The Jail Level 3 A1L32 51 15 3 0 0 0 0 0 15 50 55 0 0 0 0 0 1
Act 1 - Courtyard 2 32 0 0 0 18 20 4000 1000 0 0 0 0 1 1 1 0 0 2 6 -1 -1 -1 -1 31 33 0 0 0 0 0 0 14 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 10 43 76 720 0 1 1 0 3 22 163 388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 22 163 388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 Inner Cloister To The Inner Cloister A1L33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Cathedral 33 0 0 0 28 34 -4 -34 32 0 0 0 1 1 1 0 1 2 9 -1 -1 -1 -1 32 34 0 0 0 0 0 0 -1 15 -1 -1 -1 -1 -1 -1 0 255 255 255 1 0 1 0 2025 11 44 77 680 1 2 1 0 3 11 39 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11 39 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 9 255 Cathedral To The Cathedral A1L34 16 3 50 17 0 0 0 0 35 45 3 3 0 0 0 0 1
Act 1 - Catacombs 1 34 0 0 21 200 200 4500 1000 0 0 0 0 1 1 1 0 1 1 10 -1 -1 -1 -1 33 35 0 0 0 0 0 0 16 18 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 11 44 77 680 1 2 1 0 3 11 61 141 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11 61 141 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 60 10 255 Catacombs Level 1 To The Catacombs Level 1 A1L35 16 3 14 17 0 0 0 0 40 45 15 3 0 0 0 0 1
Act 1 - Catacombs 2 35 0 0 22 200 200 4500 1300 0 0 0 0 1 1 1 0 1 1 10 -1 -1 -1 -1 34 36 0 0 0 0 0 0 17 18 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 11 44 77 680 1 2 1 0 3 11 61 122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11 61 122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 60 10 8 Catacombs Level 2 To The Catacombs Level 2 A1L36 16 3 14 17 0 0 0 0 45 45 17 3 0 0 0 0 1
Act 1 - Catacombs 3 36 0 0 23 200 200 4500 1600 0 0 0 0 1 1 1 0 1 1 10 -1 -1 -1 -1 35 37 0 0 0 0 0 0 17 18 -1 -1 -1 -1 -1 -1 0 255 255 255 1 0 1 0 2025 12 45 78 680 1 2 1 0 3 7 10 135 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 10 135 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 60 10 255 Catacombs Level 3 To The Catacombs Level 3 A1L37 16 3 14 17 0 0 0 0 50 45 19 3 0 0 0 0 1
Act 1 - Catacombs 4 37 0 0 24 22 31 4500 1900 0 0 0 0 1 1 1 0 1 2 10 -1 -1 -1 -1 36 0 0 0 0 0 0 0 17 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 12 45 78 680 1 2 1 0 2 7 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 7 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 60 10 255 Catacombs Level 4 To The Catacombs Level 4 A1L38 16 3 14 17 0 0 0 0 55 45 1 3 0 0 0 0 1
Act 1 - Tristram 38 0 0 25 43 48 5000 1000 0 1 0 0 0 1 1 1 0 2 11 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 1 0 2025 6 39 72 520 1 2 0 0 4 1 54 59 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 54 59 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 255 Tristram To Tristram A1L39 44 45 0 0 0 0 0 0 0 33 1 0 0 0 0 0 1
Act 1 - Moo Moo Farm 39 0 0 26 80 80 5000 1148 0 1 0 0 0 1 1 0 0 3 2 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 28 61 94 800 0 1 1 0 3 391 391 391 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 391 391 391 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 255 Moo Moo Farm To The Moo Moo Farm A1L40 1 38 33 34 0 0 0 0 5 35 35 35 0 0 0 0 0
Act 2 - Town 40 1 1 27 56 56 1000 1000 0 0 0 0 0 1 1 1 0 2 12 -1 -1 -1 -1 0 0 47 47 50 0 0 0 -1 -1 19 20 24 -1 -1 -1 0 0 0 0 1 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 268 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 12 9 Lut Gholein To Lut Gholein A2L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 2 - Desert 1 41 1 1 27 80 80 -1 -1 0 0 0 0 0 1 1 1 0 3 16 9 0 7 8 55 55 55 55 0 0 0 0 33 34 35 36 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 14 47 80 880 1 2 1 0 5 78 83 91 110 373 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 78 83 91 110 373 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 255 Rocky Waste To The Rocky Waste A2L2 30 24 32 37 36 0 0 0 15 30 15 40 40 0 0 0 0
Act 2 - Desert 2 42 1 1 27 80 80 -1 -1 0 0 0 0 0 1 1 1 0 3 16 9 1 7 8 56 56 56 56 0 0 0 0 33 34 35 36 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 15 48 81 880 1 2 1 0 4 79 84 111 394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 79 84 111 394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 11 Dry Hills To The Dry Hills A2L3 30 24 32 37 36 0 0 0 15 30 14 40 40 0 0 0 0
Act 2 - Desert 3 43 1 1 27 80 80 -1 -1 0 0 0 0 0 1 1 1 0 3 16 9 2 7 8 0 0 0 0 62 0 0 0 -1 -1 -1 -1 47 -1 -1 -1 0 0 0 0 1 0 1 0 2025 16 49 82 880 1 2 1 0 5 17 68 87 92 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 17 68 87 92 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 13 Far Oasis To The Far Oasis A2L4 30 24 32 37 36 0 0 0 15 30 13 40 40 0 0 0 0
Act 2 - Desert 4 44 1 1 27 80 80 -1 -1 0 0 0 0 0 1 1 1 0 3 16 9 3 7 8 0 0 65 0 0 0 0 0 -1 -1 50 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 3800 17 50 83 880 1 2 1 0 5 9 30 80 85 395 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 9 30 80 85 395 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 14 Lost City To The Lost City A2L5 30 24 32 37 36 0 0 0 15 30 12 40 40 0 0 0 0
Act 2 - Desert 5 45 1 1 27 32 32 -1 -1 0 0 0 0 0 1 1 1 0 3 16 -1 -1 -1 8 0 58 0 0 0 0 0 0 -1 37 -1 -1 -1 -1 -1 -1 0 0 0 0 1 0 1 0 2025 18 51 84 880 1 2 1 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 255 Valley of Snakes To The Valley of Snakes A2L6 30 24 32 37 36 0 0 0 15 30 11 40 40 0 0 0 0
Act 2 - Valley of the Kings 46 1 1 28 80 80 2500 1000 0 0 0 1 0 1 1 1 0 3 16 9 4 7 8 0 66 67 68 69 70 71 72 -1 38 39 40 41 42 43 44 0 0 0 0 1 1 1 0 3800 16 49 82 880 0 0 1 0 5 26 70 86 94 376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 26 70 86 94 376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 14 17 Canyon of the Magi To The Canyon of the Magi A2L7 30 24 32 37 36 0 0 0 15 30 10 40 40 0 0 0 0
Act 2 - Sewer 1 A 47 1 1 29 200 200 1500 1000 0 0 0 0 1 1 1 0 1 1 13 -1 -1 -1 -1 40 40 48 0 0 0 0 0 22 21 23 -1 -1 -1 -1 -1 8 255 255 255 0 0 1 0 100 13 46 79 680 0 1 1 0 4 3 29 96 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 29 96 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 100 20 0 0 0 0 0 0 0 0 15 255 Sewers Level 1 To The Sewers Level 1 A2L8 32 26 5 0 0 0 0 0 10 10 10 0 0 0 0 0 0
Act 2 - Sewer 1 B 48 1 1 30 200 200 1500 1300 0 0 0 0 1 1 1 0 1 1 13 -1 -1 -1 -1 47 0 49 0 0 0 0 0 22 -1 23 -1 -1 -1 -1 -1 8 255 255 255 0 0 1 0 2025 13 46 79 680 0 1 1 0 4 3 29 96 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 29 96 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 100 20 0 0 0 0 0 0 0 0 15 10 Sewers Level 2 To The Sewers Level 2 A2L9 32 26 5 0 0 0 0 0 12 12 12 0 0 0 0 0 0
Act 2 - Sewer 1 C 49 1 1 31 200 200 1500 1600 0 0 0 0 1 1 1 0 1 1 13 -1 -1 -1 -1 48 0 0 0 0 0 0 0 22 -1 -1 -1 -1 -1 -1 -1 8 255 255 255 0 0 1 0 2025 14 47 80 680 0 1 1 0 4 3 83 96 385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 83 96 385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 100 20 0 0 0 0 0 0 0 0 15 255 Sewers Level 3 To The Sewers Level 3 A2L10 32 26 5 0 0 0 0 0 15 15 15 0 0 0 0 0 0
Act 2 - Harem 50 1 1 32 16 19 2000 1000 0 0 0 0 1 1 1 0 1 2 14 -1 -1 -1 -1 40 0 51 51 0 0 0 0 25 -1 28 29 -1 -1 -1 -1 128 255 255 255 0 0 0 0 2025 0 33 66 2200 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 16 255 Harem Level 1 To The Harem Level 1 A2L11 56 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0
Act 2 - Corrupt Harem 1 51 1 1 33 100 100 2000 1119 0 0 0 0 1 1 1 0 1 1 14 -1 -1 -1 -1 50 50 52 52 0 0 0 0 26 27 28 29 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 13 46 79 2200 0 0 1 0 5 31 48 174 186 382 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 31 48 174 186 382 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 17 255 Harem Level 2 To The Harem Level 2 A2L12 56 55 0 0 0 0 0 0 15 33 0 0 0 0 0 0 0
Act 2 - Basement 1 52 1 1 34 100 100 2000 1319 0 0 0 0 1 1 1 0 1 1 15 -1 -1 -1 -1 51 51 53 53 0 0 0 0 26 27 32 32 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 13 46 79 2200 0 1 1 1 5 31 48 174 186 386 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 31 48 174 186 386 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 18 15 Palace Cellar Level 1 To The Palace Cellar Level 1 A2L13 57 58 0 0 0 0 0 0 20 10 0 0 0 0 0 0 0
Act 2 - Basement 2 53 1 1 35 100 100 2000 1519 0 0 0 0 1 1 1 0 1 1 15 -1 -1 -1 -1 52 52 54 54 0 0 0 0 30 31 32 32 -1 -1 -1 -1 0 255 255 255 1 0 1 0 2025 13 46 79 2200 0 1 1 1 5 31 48 174 186 277 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 31 48 174 186 277 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 18 255 Palace Cellar Level 2 To The Palace Cellar Level 2 A2L14 57 58 0 0 0 0 0 0 20 10 0 0 0 0 0 0 0
Act 2 - Basement 3 54 1 1 36 100 100 2000 1719 0 0 0 0 1 1 1 0 1 1 15 -1 -1 -1 -1 53 53 0 0 0 0 0 0 30 31 -1 -1 -1 -1 -1 -1 0 255 255 255 1 1 1 0 2025 13 46 79 2200 0 1 1 1 5 31 48 174 186 390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 31 48 174 186 390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 18 255 Palace Cellar Level 3 To The Palace Cellar Level 3 A2L15 57 58 0 0 0 0 0 0 20 10 0 0 0 0 0 0 0
Act 2 - Tomb 1 A 55 1 1 37 200 200 3000 1000 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 41 0 0 0 59 0 0 0 45 -1 -1 -1 46 -1 -1 -1 0 255 255 255 0 0 1 0 1000 12 45 78 2200 0 1 1 0 3 4 91 389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 91 389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Stony Tomb Level 1 To The Stony Tomb Level 1 A2L16 19 29 24 0 0 0 0 0 10 20 35 45 0 0 0 0 0
Act 2 - Tomb 2 A 56 1 1 38 200 200 3000 1300 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 42 0 0 0 57 0 0 0 45 -1 -1 -1 46 -1 -1 -1 0 255 255 255 0 0 1 0 1000 12 45 78 2200 0 1 1 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Halls of the Dead Level 1 To The Halls of the Dead Level 1 A2L17 19 29 24 0 0 0 0 0 10 20 35 45 0 0 0 0 0
Act 2 - Tomb 2 B 57 1 1 39 200 200 3000 1600 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 56 0 0 0 60 0 0 0 45 -1 -1 -1 46 -1 -1 -1 0 255 255 255 0 0 1 0 1000 13 46 79 2200 0 1 1 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 12 Halls of the Dead Level 2 To The Halls of the Dead Level 2 A2L18 19 29 24 0 0 0 0 0 10 20 35 45 0 0 0 0 0
Act 2 - Tomb 3 A 58 1 1 40 200 200 3000 1900 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 45 0 0 0 61 0 0 0 45 -1 -1 -1 46 -1 -1 -1 0 255 255 255 0 0 1 0 1000 14 47 80 2200 0 1 1 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Claw Viper Temple Level 1 To The Claw Viper Temple Level 1 A2L19 19 29 24 0 0 0 0 0 10 20 35 45 0 0 0 0 0
Act 2 - Tomb 1 Treasure 59 1 1 41 200 200 3000 2200 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 55 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 12 45 78 2200 0 1 1 0 3 4 91 276 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 91 276 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Stony Tomb Level 2 To The Stony Tomb Level 2 A2L20 19 29 24 0 0 0 0 0 10 30 45 55 0 0 0 0 0
Act 2 - Tomb 2 Treasure 60 1 1 42 200 200 3000 2500 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 57 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 13 46 79 2200 0 1 1 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Halls of the Dead Level 3 To The Halls of the Dead Level 3 A2L21 19 29 24 0 0 0 0 0 10 30 45 55 0 0 0 0 0
Act 2 - Tomb 3 Treasure 61 1 1 43 200 200 3000 2800 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 58 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 14 47 80 2200 0 1 1 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Claw Viper Temple Level 2 To The Claw Viper Temple Level 2 A2L22 19 29 24 0 0 0 0 0 10 30 45 55 0 0 0 0 0
Act 2 - Lair 1 A 62 1 1 44 200 200 3500 1000 0 0 0 0 1 1 1 0 1 1 18 -1 -1 -1 -1 43 63 0 0 0 0 0 0 48 49 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 990 0 2 1 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 20 255 Maggot Lair Level 1 To The Maggot Lair Level 1 A2L23 35 29 0 0 0 0 0 0 50 35 0 0 0 0 0 0 0
Act 2 - Lair 1 B 63 1 1 45 200 200 3500 1300 0 0 0 0 1 1 1 0 1 1 18 -1 -1 -1 -1 62 64 0 0 0 0 0 0 48 49 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 990 0 2 1 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 20 255 Maggot Lair Level 2 To The Maggot Lair Level 2 A2L24 35 29 0 0 0 0 0 0 65 35 0 0 0 0 0 0 0
Act 2 - Lair 1 Treasure 64 1 1 46 200 200 3500 1600 0 0 0 0 1 1 1 0 1 1 18 -1 -1 -1 -1 63 0 0 0 0 0 0 0 48 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 990 0 2 1 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 20 255 Maggot Lair Level 3 To The Maggot Lair Level 3 A2L25 35 29 0 0 0 0 0 0 80 55 0 0 0 0 0 0 0
Act 2 - Sewer 2 A 65 1 1 47 200 200 4000 1000 0 0 0 0 1 1 1 0 1 1 13 -1 -1 -1 -1 44 0 0 0 0 0 0 0 22 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 680 0 2 1 0 4 9 31 98 390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 9 31 98 390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 100 20 0 0 0 0 0 0 0 8 15 255 Ancient Tunnels To The Ancient Tunnels A2L26 29 0 0 0 0 0 0 0 55 0 0 0 0 0 0 0 0
Act 2 - Tomb Tal 1 66 1 1 48 200 200 4500 1000 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
Act 2 - Tomb Tal 2 67 1 1 49 200 200 4500 1300 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
Act 2 - Tomb Tal 3 68 1 1 50 200 200 4500 1600 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
Act 2 - Tomb Tal 4 69 1 1 51 200 200 4500 1900 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
Act 2 - Tomb Tal 5 70 1 1 52 200 200 4500 2200 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
Act 2 - Tomb Tal 6 71 1 1 53 200 200 4500 2500 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
Act 2 - Tomb Tal 7 72 1 1 54 200 200 4500 2800 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
Act 2 - Duriel's Lair 73 1 1 55 32 47 4500 3100 0 0 0 1 1 1 1 0 1 2 17 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 1 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 283 0 30 30 20 100 0 0 0 0 0 0 0 21 255 Duriel's Lair To Duriel's Lair A2L40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 2 - Arcane 74 1 1 56 200 200 5000 1000 0 0 0 1 1 1 1 0 1 1 19 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 128 255 255 255 1 1 1 11 3800 14 47 80 990 0 1 1 0 3 40 56 131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 40 56 131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 16 Arcane Sanctuary To The Arcane Sanctuary A2L41 53 75 0 0 0 0 0 0 75 75 0 0 0 0 0 0 0
Act 3 - Town 75 2 2 57 64 48 1000 1000 0 1 1 0 0 1 1 0 0 2 20 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 18 Kurast Docktown To The Kurast Docktown A3L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 3 - Jungle 1 76 2 2 57 64 192 -1 -1 0 1 1 0 0 1 1 0 0 3 21 -1 -1 -1 -1 84 85 0 0 0 0 0 0 51 51 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 21 54 87 650 1 2 1 5 6 50 114 127 142 397 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 50 114 127 142 397 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 24 19 Spider Forest To The Spider Forest A3L2 31 43 40 52 69 0 0 0 50 15 45 35 30 0 0 0 0
Act 3 - Jungle 2 77 2 2 57 64 192 -1 -1 0 1 1 0 0 1 1 0 0 3 21 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 21 54 87 650 1 2 1 5 6 247 248 128 8 279 118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 247 248 128 8 279 118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 24 20 Great Marsh To The Great Marsh A3L3 31 43 40 52 69 0 0 0 50 15 45 35 30 0 0 0 0
Act 3 - Jungle 3 78 2 2 57 64 192 -1 -1 0 1 1 0 0 1 1 0 0 3 21 -1 -1 -1 -1 86 88 0 0 0 0 0 0 53 54 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 22 55 88 650 1 2 1 5 7 143 280 144 281 113 249 398 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 143 280 144 281 113 249 398 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 24 21 Flayer Jungle To The Flayer Jungle A3L4 31 43 40 52 43 69 0 0 50 15 45 35 50 25 0 0 0
Act 3 - Kurast 1 79 2 2 57 80 64 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 22 55 88 325 1 2 1 0 4 51 81 112 235 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 51 81 112 235 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 22 Lower Kurast To Lower Kurast A3L5 31 76 40 42 43 69 0 0 33 15 35 40 40 15 0 0 0
Act 3 - Kurast 2 80 2 2 57 80 64 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 92 92 94 95 0 0 0 0 57 57 61 61 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 22 55 88 325 1 2 1 0 4 129 90 236 238 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 129 90 236 238 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 23 Kurast Bazaar To The Kurast Bazaar A3L6 31 76 40 42 43 69 0 0 33 15 45 50 50 25 0 0 0
Act 3 - Kurast 3 81 2 2 57 80 64 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 92 92 96 97 0 0 0 0 57 57 61 61 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 23 56 89 325 1 2 1 0 4 113 237 239 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 113 237 239 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 24 Upper Kurast To Upper Kurast A3L7 31 76 40 42 43 69 0 0 33 15 45 50 50 25 0 0 0
Act 3 - Kurast 4 82 2 2 57 48 16 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 0 0 98 99 0 0 0 0 -1 -1 61 61 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 24 57 90 325 1 2 1 0 3 32 52 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 32 52 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 255 Kurast Causeway To The Kurast Causeway A3L8 31 76 40 42 43 69 0 0 33 15 45 50 50 25 0 0 0
Act 3 - Travincal 83 2 2 57 64 64 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 100 0 0 0 0 0 0 0 64 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 24 57 90 325 0 1 1 0 3 240 240 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 240 240 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 25 Travincal To Travincal A3L9 31 61 40 42 69 62 0 0 33 25 50 33 33 35 0 0 0
Act 3 - Spider 1 84 2 2 58 200 200 1500 1000 0 0 0 0 1 1 1 0 1 1 23 -1 -1 -1 -1 0 76 0 0 0 0 0 0 -1 52 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 21 54 87 700 0 1 1 0 5 124 125 137 71 124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 124 125 137 71 124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 339 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 29 255 Spider Cave To The Spider Cave A3L10 0 2 68 62 0 0 0 0 35 35 35 35 0 0 0 0 0
Act 3 - Spider 2 85 2 2 59 200 200 1500 1300 0 0 0 0 1 1 1 0 1 1 23 -1 -1 -1 -1 0 76 0 0 0 0 0 0 -1 52 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 21 54 87 700 0 1 1 0 5 124 125 137 71 124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 124 125 137 71 124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 339 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 29 255 Spider Cavern To The Spider Cavern A3L11 0 2 68 62 0 0 0 0 35 35 35 35 0 0 0 0 0
Act 3 - Dungeon 1 A 86 2 2 60 200 200 2000 1000 0 0 0 0 1 1 1 0 1 1 24 -1 -1 -1 -1 87 78 0 0 0 0 0 0 56 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 21 54 87 700 0 1 1 0 5 99 215 137 118 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 99 215 137 118 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Swampy Pit Level 1 To The Swampy Pit Level 1 A3L12 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
Act 3 - Dungeon 1 B 87 2 2 61 200 200 2000 1300 0 0 0 0 1 1 1 0 1 1 24 -1 -1 -1 -1 90 86 0 0 0 0 0 0 56 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 21 54 87 700 0 1 1 0 5 215 8 137 118 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 215 8 137 118 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Swampy Pit Level 2 To The Swampy Pit Level 2 A3L13 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
Act 3 - Dungeon 2 A 88 2 2 62 200 200 2000 1600 0 0 0 0 1 1 1 0 1 1 24 -1 -1 -1 -1 89 78 0 0 0 0 0 0 56 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 22 55 88 700 0 1 1 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Flayer Dungeon Level 1 To The Flayer Dungeon Level 1 A3L14 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
Act 3 - Dungeon 2 B 89 2 2 63 200 200 2000 1900 0 0 0 0 1 1 1 0 1 1 24 -1 -1 -1 -1 91 88 0 0 0 0 0 0 56 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 22 55 88 700 0 1 1 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Flayer Dungeon Level 2 To The Flayer Dungeon Level 2 A3L15 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
Act 3 - Dungeon 1 Treasure 90 2 2 64 40 40 2000 2200 0 0 0 0 1 1 1 0 1 2 24 -1 -1 -1 -1 0 87 0 0 0 0 0 0 -1 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 21 54 87 700 0 1 1 0 4 215 216 137 118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 115 216 137 118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Swampy Pit Level 3 To The Swampy Pit Level 3 A3L16 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
Act 3 - Dungeon 2 Treasure 91 2 2 65 40 40 2000 2340 0 0 0 0 1 1 1 0 1 2 24 -1 -1 -1 -1 0 89 0 0 0 0 0 0 -1 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 22 55 88 700 0 1 1 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Flayer Dungeon Level 3 To The Flayer Dungeon Level 3 A3L17 66 67 62 64 72 0 0 0 80 55 35 35 35 0 0 0 0
Act 3 - Sewer 1 92 2 2 66 200 200 2500 1000 0 0 0 0 1 1 1 0 1 1 25 -1 -1 -1 -1 80 80 81 81 93 0 0 0 58 59 58 59 60 -1 -1 -1 0 255 255 255 0 0 1 0 2025 23 56 89 650 1 2 1 0 5 99 115 138 104 215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 99 115 138 104 215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 151 0 0 0 100 100 0 0 0 0 0 0 0 0 0 26 255 Sewers Level 1 To The Sewers Level 1 A3L18 64 70 62 65 0 0 0 0 50 50 35 45 45 0 0 0 0
Act 3 - Sewer 2 93 2 2 67 18 22 2500 1300 0 0 0 0 1 1 1 0 1 2 25 -1 -1 -1 -1 92 0 0 0 0 0 0 0 58 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 24 57 90 650 1 2 1 0 5 99 104 117 249 215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 99 104 117 249 215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 151 0 0 0 100 100 0 0 0 0 0 0 0 0 0 26 255 Sewers Level 2 To The Sewers Level 2 A3L19 64 70 62 65 0 0 0 0 50 50 35 45 45 0 0 0 0
Act 3 - Temple 1 94 2 2 68 24 24 3000 1000 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 80 80 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 23 56 89 990 1 2 1 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Ruined Temple To The Ruined Temple A3L20 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
Act 3 - Temple 2 95 2 2 69 24 24 3000 1124 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 80 80 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 23 56 89 990 1 2 1 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Disused Fane To The Disused Fane A3L21 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
Act 3 - Temple 3 96 2 2 70 24 24 3000 1248 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 81 81 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 23 56 89 990 1 2 1 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Forgotten Reliquary To The Forgotten Reliquary A3L22 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
Act 3 - Temple 4 97 2 2 71 24 24 3000 1372 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 81 81 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 24 57 90 990 1 2 1 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Forgotten Temple To The Forgotten Temple A3L23 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
Act 3 - Temple 5 98 2 2 72 24 24 3000 1496 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 82 82 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 24 57 90 990 1 2 1 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Ruined Fane To The Ruined Fane A3L24 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
Act 3 - Temple 6 99 2 2 73 24 24 3000 1620 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 82 82 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 24 57 90 990 1 2 1 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Disused Reliquary To The Disused Reliquary A3L25 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
Act 3 - Mephisto 1 100 2 2 74 200 200 3500 1000 0 0 0 0 1 1 1 0 1 1 22 -1 -1 -1 -1 101 101 83 83 0 0 0 0 67 68 65 66 -1 -1 -1 -1 0 255 255 255 0 0 1 0 3800 25 58 91 800 1 2 1 0 4 100 133 188 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 100 133 188 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 30 255 Durance of Hate Level 1 To The Durance of Hate Level 1 A3L26 60 61 59 74 0 0 0 0 50 25 45 45 0 0 0 0 0
Act 3 - Mephisto 2 101 2 2 75 200 200 3500 1300 0 0 0 0 1 1 1 0 1 1 22 -1 -1 -1 -1 102 102 100 100 0 0 0 0 67 68 65 66 -1 -1 -1 -1 0 255 255 255 0 0 1 0 3700 25 58 91 800 1 2 1 0 4 100 133 188 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 100 133 188 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 30 26 Durance of Hate Level 2 To The Durance of Hate Level 2 A3L27 60 61 59 74 0 0 0 0 50 25 45 45 0 0 0 0 0
Act 3 - Mephisto 3 102 2 2 76 41 29 3500 1600 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 0 0 101 101 0 0 0 0 -1 -1 65 66 -1 -1 -1 -1 0 255 255 255 0 1 1 0 3800 25 58 91 800 1 2 1 0 2 134 134 134 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 134 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 30 255 Durance of Hate Level 3 To The Durance of Hate Level 3 A3L28 60 61 59 74 0 0 0 0 50 25 45 45 0 0 0 0 0
Act 4 - Town 103 3 3 77 32 24 1000 1000 0 0 0 0 0 1 1 0 0 2 26 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 140 255 255 255 0 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 27 The Pandemonium Fortress To The Pandemonium Fortress A4L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 4 - Mesa 1 104 3 3 77 80 64 -1 -1 0 0 0 0 0 1 1 0 0 3 27 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 0 1 0 3900 26 59 92 800 0 1 1 0 6 82 298 304 307 310 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 82 298 304 307 310 360 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 255 Outer Steppes To The Outer Steppes A4L2 46 47 77 0 0 0 0 0 30 80 70 0 0 0 0 0 0
Act 4 - Mesa 2 105 3 3 77 64 80 -1 -1 0 0 0 0 0 1 1 0 0 3 27 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 80 255 255 255 0 0 1 0 2025 26 59 92 800 0 1 1 0 6 120 298 304 307 310 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 120 298 304 307 310 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 255 Plains of Despair To The Plains of Despair A4L3 46 47 77 0 0 0 0 0 30 80 70 0 0 0 0 0 0
Act 4 - Mesa 3 106 3 3 77 80 64 -1 -1 0 0 0 0 0 1 1 0 0 3 27 -1 -1 -1 -1 0 107 0 0 0 0 0 0 -1 69 -1 -1 -1 -1 -1 -1 40 255 255 255 0 0 1 0 2025 27 60 93 800 0 1 1 0 7 14 140 299 305 308 311 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 14 140 299 305 308 311 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 28 City of the Damned To The City of the Damned A4L4 46 47 77 0 0 0 0 0 30 80 70 0 0 0 0 0 0
Act 4 - Lava 1 107 3 3 78 200 200 -1 -1 0 0 0 0 0 1 1 0 0 1 28 -1 -1 -1 -1 106 108 0 0 0 0 0 0 70 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 0 1 0 3800 27 60 93 800 0 1 1 5 7 72 189 300 305 309 311 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 72 189 300 305 309 311 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33 29 River of Flame To The River of Flame A4L5 48 49 0 0 0 0 0 0 90 60 0 0 0 0 0 0 0
Act 4 - Diablo 1 108 3 3 78 120 120 1500 1000 0 0 0 0 0 1 1 0 0 3 28 -1 -1 -1 -1 107 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 80 255 255 255 0 0 1 0 2025 28 61 94 800 0 1 1 0 3 306 312 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 306 312 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 255 Chaos Sanctum To Chaos Sanctum A4L6 48 49 0 0 0 0 0 0 30 50 0 0 0 0 0 0 0
Expansion
Act 5 - Town 109 4 4 79 40 40 1000 1000 0 1 0 0 0 1 1 0 0 2 29 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 30 Harrogath To Harrogath A5L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 - Siege 1 110 4 4 79 240 48 760 1000 0 1 0 0 0 0 1 0 0 3 30 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 24 57 90 0 2 4 0 0 2 17 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 17 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 37 255 Bloody Foothills To The Bloody Foothills A5L2 99 100 101 102 103 104 105 106 40 25 25 25 25 25 25 25 0
Act 5 - Barricade 1 111 4 4 79 -1 -1 -1 -1 0 1 0 0 0 0 1 0 0 3 31 10 1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 3900 25 58 91 450 2 4 0 0 2 56 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 37 31 Rigid Highlands To The Rigid Highlands A5L3 99 100 101 102 103 104 105 106 25 25 25 25 25 25 25 25 0
Act 5 - Barricade 2 112 4 4 79 -1 -1 -1 -1 0 1 0 0 0 0 1 0 0 3 31 10 1 -1 -1 0 0 113 0 0 0 0 0 -1 -1 71 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 26 59 92 350 2 4 0 0 2 44 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 37 32 Arreat Plateau To The Arreat Plateau A5L4 99 100 101 102 103 104 105 106 25 25 25 26 25 25 25 25 0
Act 5 - Ice Cave 1 113 4 4 80 200 200 2000 1000 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 112 115 114 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 700 0 1 1 0 3 65 35 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 33 Crystalized Cavern Level 1 To The Crystalized Cavern Level 1 A5L7 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Ice Cave 1A 114 4 4 81 64 64 2000 1300 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 113 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 800 0 1 1 0 3 11 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 66 95 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 255 Cellar of Pity To The Cellar of Pity A5L8 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Ice Cave 2 115 4 4 82 200 200 2000 1464 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 113 117 116 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 700 0 1 1 0 3 95 1 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 34 Crystalized Cavern Level 2 To The Crystalized Cavern Level 2 A5L9 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Ice Cave 2A 116 4 4 83 32 32 2000 1764 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 115 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 600 0 1 1 0 2 10 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 35 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 255 Echo Chamber To The Echo Chamber A5L10 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Barricade Snow 117 4 4 84 128 80 2000 1896 0 1 0 0 0 0 1 0 0 3 31 11 1 -1 -1 115 0 118 0 0 0 0 0 72 -1 71 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 27 60 93 550 2 3 0 0 2 6 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 38 36 Tundra Wastelands To The Tundra Wastelands A5L5 112 111 113 114 115 129 0 0 25 25 25 25 25 25 0 0 0
Act 5 - Ice Cave 3 118 4 4 85 200 200 2000 2076 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 117 120 119 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 650 0 1 1 0 3 67 95 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 67 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 37 Glacial Caves Level 1 To The Glacier Caves Level 1 A5L11 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Ice Cave 3A 119 4 4 86 32 32 2000 2376 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 118 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 650 0 1 1 0 3 13 35 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 37 97 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 255 Glacial Caves Level 2 To The Glacier Caves Level 2 A5L12 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Mountain Top 120 4 4 87 20 28 2000 2508 0 1 0 1 0 0 1 0 0 2 31 -1 1 -1 -1 118 128 0 0 0 0 0 0 79 80 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 0 27 60 93 0 0 0 0 0 3 104 105 106 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 104 105 106 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 255 Rocky Summit To The Rocky Summit A5L6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 - Temple Entrance 121 4 4 88 22 27 2000 2636 0 1 0 0 0 0 1 0 1 2 31 -1 -1 -1 -1 0 122 0 0 0 0 0 0 -1 76 -1 -1 -1 -1 -1 -1 0 255 255 255 0 1 1 0 2025 32 65 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 255 Nihlathaks Temple To Nihlathaks Temple A5L13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 - Temple 1 122 4 4 89 80 80 2000 2763 0 0 0 0 0 1 1 0 1 1 32 -1 -1 -1 -1 121 123 0 0 0 0 0 0 78 77 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 3000 33 66 99 700 0 0 0 0 2 2 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 255 Halls of Anguish To The Halls of Anguish A5L14 116 117 118 124 125 129 128 0 30 30 30 30 40 25 30 0 0
Act 5 - Temple 2 123 4 4 90 80 80 2000 2943 0 0 0 0 0 1 1 0 1 1 32 -1 -1 -1 -1 122 124 0 0 0 0 0 0 78 77 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 34 67 100 700 0 0 0 0 3 3 94 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 94 109 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 35 Halls of Death's Calling To The Halls of Death's Calling A5L15 116 117 118 124 125 129 128 0 30 30 30 30 40 25 30 0 0
Act 5 - Temple Boss 124 4 4 91 84 84 2500 1000 0 0 0 0 0 1 1 0 1 2 32 -1 -1 -1 -1 123 0 0 0 0 0 0 0 78 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 36 69 102 700 0 0 0 0 3 22 36 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 22 36 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 255 Halls of Vaught To The Halls of Vaught A5L17 116 117 118 124 125 129 128 0 30 30 30 30 40 25 30 0 0
Act 5 - Hell 1 125 3 4 92 200 200 2500 1184 0 0 0 0 0 1 1 0 0 1 35 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 1 1 0 3800 39 72 105 800 0 1 1 0 2 72 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 44 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 255 Hell1 To Hell1 A5L23 48 49 0 0 0 0 0 0 90 60 0 0 0 0 0 0 0
Act 5 - Hell 2 126 3 4 93 200 200 2500 1484 0 0 0 0 0 1 1 0 0 1 35 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 1 1 0 3800 39 72 105 800 0 1 1 0 2 71 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 45 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 255 Hell2 To Hell2 A5L24 48 49 0 0 0 0 0 0 90 60 0 0 0 0 0 0 0
Act 5 - Hell 3 127 3 4 94 200 200 2500 1784 0 0 0 0 0 1 1 0 0 1 35 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 1 1 0 3800 39 72 105 700 0 1 1 0 2 59 46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 46 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 255 Hell3 To Hell3 A5L25 48 49 0 0 0 0 0 0 90 60 0 0 0 0 0 0 0
Act 5 - Baal Temple 1 128 4 4 95 200 200 2500 2084 0 0 0 0 0 1 1 0 1 1 34 -1 -1 -1 -1 120 129 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 39 72 105 700 0 0 0 0 3 4 39 112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 72 39 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 255 The Worldstone Keep Level 1 To The Worldstone Keep Level 1 A5L18 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Baal Temple 2 129 4 4 96 200 200 2500 2384 0 0 0 0 0 1 1 0 1 1 34 -1 -1 -1 -1 128 130 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 40 73 106 700 0 0 0 0 2 30 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 73 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 38 The Worldstone Keep Level 2 To The Worldstone Keep Level 2 A5L19 119 120 121 122 129 106 0 0 25 25 35 25 26 25 0 0 0
Act 5 - Baal Temple 3 130 4 4 97 200 200 2500 2684 0 0 0 0 0 1 1 0 1 1 34 -1 -1 -1 -1 129 131 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 42 75 108 700 0 0 0 0 3 74 60 113 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 74 40 112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 255 The Worldstone Keep Level 3 To The Worldstone Keep Level 3 A5L20 119 120 121 122 129 106 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Throne Room 131 4 4 98 40 52 3000 1000 0 0 0 0 0 1 1 0 1 2 34 -1 -1 -1 -1 130 132 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 43 76 109 700 0 0 0 0 2 74 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 74 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 255 Throne of Destruction To The Throne of Destruction A5L21 126 127 0 0 0 0 0 0 25 25 0 0 0 0 0 0 0
Act 5 - World Stone 132 4 4 99 55 55 3000 1152 0 0 0 0 0 1 1 0 1 2 34 -1 -1 -1 -1 131 0 0 0 0 0 0 0 81 -1 -1 -1 -1 -1 -1 -1 40 255 255 255 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 255 The Worldstone Chamber To The Worldstone Chamber A5L22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

81
txt/LvlMaze.txt Normal file
View File

@ -0,0 +1,81 @@
Name Level Rooms SizeX SizeY Merge Beta
Act 1 - Cave 1 8 1 24 24 500 1
Act 1 - Cave 2 9 4 24 24 500 1
Act 1 - Cave 3 10 6 24 24 500 1
Act 1 - Cave 4 11 4 24 24 500 1
Act 1 - Cave 5 12 4 24 24 500 1
Act 1 - Cave 1 Treasure #REF! 1 24 24 0 1
Act 1 - Cave 2 Treasure 13 1 24 24 0 1
Act 1 - Cave 3 Treasure 14 1 24 24 0 1
Act 1 - Cave 4 Treasure 15 1 24 24 0 1
Act 1 - Cave 5 Treasure 16 1 24 24 0 1
Act 1 - Crypt 1 A 18 12 8 8 500 1
Act 1 - Crypt 2 A 19 12 8 8 500 1
Act 1 - Crypt 3 A 21 6 8 8 500 1
Act 1 - Crypt 3 B 22 6 8 8 500 1
Act 1 - Crypt 3 C 23 6 8 8 500 1
Act 1 - Crypt 3 D 24 6 8 8 500 1
Act 1 - Crypt 3 E 25 6 8 8 500 1
Act 1 - Barracks 28 10 10 14 500 1
Act 1 - Jail 1 29 12 12 12 500 1
Act 1 - Jail 2 30 14 12 12 500 1
Act 1 - Jail 3 31 16 12 12 500 1
Act 1 - Catacombs 1 34 12 12 12 500 1
Act 1 - Catacombs 2 35 14 12 12 500 1
Act 1 - Catacombs 3 36 16 12 12 500 1
Act 1 - Catacombs 4 37 18 12 12 500 1
Act 2 - Sewer 1 47 6 12 12 500 0
Act 2 - Sewer 2 48 12 12 12 500 0
Act 2 - Sewer 3 49 14 12 12 500 0
Act 2 - Corrupt Harem 1 51 4 16 16 1000 0
Act 2 - Basement 1 52 4 16 16 1000 0
Act 2 - Basement 2 53 4 16 16 1000 0
Act 2 - Basement 3 54 4 16 16 1000 0
Act 2 - Tomb 1 A 55 4 16 16 500 0
Act 2 - Tomb 2 A 56 6 16 16 500 0
Act 2 - Tomb 2 B 57 6 16 16 500 0
Act 2 - Tomb 3 A 58 12 16 16 500 0
Act 2 - Tomb 1 Treasure 59 4 16 16 500 0
Act 2 - Tomb 2 Treasure 60 6 16 16 500 0
Act 2 - Tomb 3 Treasure 61 6 16 16 500 0
Act 2 - Lair 1 A 62 18 10 10 500 0
Act 2 - Lair 1 B 63 14 10 10 500 0
Act 2 - Lair 1 Treasure 64 10 10 10 500 0
Act 2 - Sewer 4 65 10 12 12 500 0
Act 2 - Tomb Tal 1 66 6 16 16 500 0
Act 2 - Tomb Tal 2 67 6 16 16 500 0
Act 2 - Tomb Tal 3 68 6 16 16 500 0
Act 2 - Tomb Tal 4 69 6 16 16 500 0
Act 2 - Tomb Tal 5 70 6 16 16 500 0
Act 2 - Tomb Tal 6 71 6 16 16 500 0
Act 2 - Tomb Tal 7 72 6 16 16 500 0
Act 2 - Arcane 74 61 12 12 1000 0
Act 3 - Spider 1 84 4 16 16 500 0
Act 3 - Spider 2 85 4 16 16 500 0
Act 3 - Dungeon 1 A 86 4 14 14 500 0
Act 3 - Dungeon 1 B 87 4 14 14 500 0
Act 3 - Dungeon 2 A 88 4 14 14 500 0
Act 3 - Dungeon 2 B 89 4 14 14 500 0
Act 3 - Dungeon 1 Treasure 90 4 14 14 500 0
Act 3 - Dungeon 2 Treasure 91 4 14 14 500 0
Act 3 - Sewer 1 92 32 12 12 800 0
Act 3 - Sewer 2 93 6 12 12 800 0
Act 3 - Mephisto 1 100 10 12 12 500 0
Act 3 - Mephisto 2 101 12 12 12 500 0
Act 4 - Lava 1 107 6 24 24 500 0
Expansion
Act 5 - Ice Caves 1 113 10 16 16 500 0
Act 5 - Ice Caves 2 115 10 16 16 500 0
Act 5 - Ice Caves 3 118 15 16 16 500 0
Act 5 - Ice Caves 1A 114 1 64 64 500 0
Act 5 - Ice Caves 2A 116 1 32 32 500 0
Act 5 - Ice Caves 3A 119 1 32 32 500 0
Act 5 - Temple 1 122 4 40 40 500 0
Act 5 - Temple 2 123 4 40 40 500 0
Act 5 - Hell 1 125 3 24 24 500 0
Act 5 - Hell 2 126 3 24 24 500 0
Act 5 - Hell 3 127 3 24 24 500 0
Act 5 - Baal 1 128 9 16 16 500 0
Act 5 - Baal 1 129 9 16 16 500 0
Act 5 - Baal 1 130 9 16 16 500 0
Act 5 - Baal 1 132 9 16 16 500 0

1092
txt/LvlPrest.txt Normal file

File diff suppressed because it is too large Load Diff

36
txt/LvlSub.txt Normal file
View File

@ -0,0 +1,36 @@
Name Type File CheckAll BordType GridSize Dt1Mask Prob0 Trials0 Max0 Prob1 Trials1 Max1 Prob2 Trials2 Max2 Prob3 Trials3 Max3 Prob4 Trials4 Max4 Beta
Border - Cliffs 0 Act1/Outdoors/BorderCliffs.ds1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Border - Middle 1 Act1/Outdoors/BorderMiddle.ds1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Border - Corner 2 Act1/Outdoors/BorderCorner.ds1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Border - Border 3 Act1/Outdoors/BorderBorder.ds1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 Waypoint L 4 Act1/Outdoors/Waypoint.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
Act 1 Waypoint S 4 Act1/Outdoors/WaySmall.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
Healing Well 5 Act1/Outdoors/ShrineW.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
Deer Shrine 5 Act1/Outdoors/ShrineD.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
Forest Shrine 5 Act1/Outdoors/ShrineF.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
Horn Shrine 5 Act1/Outdoors/ShrineH.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
Stone 6 Act1/Outdoors/Stone.ds1 0 -1 1 16385 30 5 2 30 5 2 100 20 12 30 5 2 0 0 0 1
Trees 6 Act1/Outdoors/Trees.ds1 0 -1 1 3 50 5 2 30 5 2 50 5 2 100 20 12 50 5 2 1
Puddles 6 Act1/Outdoors/Pud.ds1 0 -1 1 262145 90 20 8 30 5 2 20 5 2 20 5 2 50 20 8 1
Swamp Big 6 Act1/Outdoors/Swamp2.ds1 0 -1 1 4194305 0 0 0 0 0 0 0 0 0 0 0 0 90 5 2 1
Swamp Small 6 Act1/Outdoors/Swamp.ds1 0 -1 1 4194305 50 5 2 0 0 0 0 0 0 20 5 2 90 10 6 1
Wild Objects 6 Act1/Outdoors/Object.ds1 0 -1 1 257 20 5 2 20 5 2 20 5 2 20 5 2 20 5 2 1
Act 2 Waypoint 7 Act2/Outdoors/Waypoint.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
Healing Well 8 Act2/Outdoors/ShrineW.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
Health Shrine 8 Act2/Outdoors/ShrineH.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
Mana Shrine 8 Act2/Outdoors/ShrineM.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
Effect Shrine 8 Act2/Outdoors/ShrineE.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
Dune 9 Act2/Outdoors/Dune.ds1 0 -1 1 4 70 10 1 10 5 1 10 5 1 10 5 1 10 5 1 0
Rock Big 9 Act2/Outdoors/Rock2.ds1 0 -1 1 2 80 10 4 80 10 2 10 5 1 10 5 1 10 5 1 0
Rock Small 9 Act2/Outdoors/Rock.ds1 0 -1 1 2 80 10 8 80 10 4 10 5 2 10 5 2 10 5 2 0
Bone 9 Act2/Outdoors/Bone.ds1 0 -1 1 128 80 10 2 10 5 2 10 5 2 10 5 2 10 5 2 0
Palm 9 Act2/Outdoors/Palm.ds1 0 -1 1 262144 10 5 2 100 10 4 100 10 4 100 10 4 90 10 4 0
Prickly 9 Act2/Outdoors/Prickly.ds1 0 -1 1 524288 10 5 2 10 5 4 90 10 4 10 5 2 90 10 4 0
Scrub 9 Act2/Outdoors/Scrub.ds1 0 -1 1 1048576 10 5 2 10 5 2 90 10 4 90 10 4 10 5 2 0
Expansion
Snow Large 10 Expansion/Siege/Snowpatchlg.ds1 0 -1 1 524305 25 2 1 25 2 1 25 2 1 25 2 1 25 2 1 0
Trees and Rocks 10 Expansion/Siege/treesandrocks.ds1 0 -1 1 3671091 75 15 5 75 15 5 75 15 5 75 15 5 75 15 5 0
Small stuff 10 Expansion/Siege/treesandrocksSmall.ds1 0 -1 1 1572865 100 20 6 100 20 6 100 20 6 100 20 6 100 20 6 0
Dirt patches 11 Expansion/Siege/snowpatchlg_inv.ds1 0 -1 1 524305 50 2 1 50 2 1 50 2 1 50 2 1 50 2 1 0
snowy objects 11 Expansion/Siege/treesandrocksSnow.ds1 0 -1 1 3671091 100 10 6 100 20 6 100 10 6 100 10 6 100 10 6 0
Barricade 12 Expansion/Siege/4x3barricade_rules.ds1 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

38
txt/LvlTypes.txt Normal file
View File

@ -0,0 +1,38 @@
Name Id File 1 File 2 File 3 File 4 File 5 File 6 File 7 File 8 File 9 File 10 File 11 File 12 File 13 File 14 File 15 File 16 File 17 File 18 File 19 File 20 File 21 File 22 File 23 File 24 File 25 File 26 File 27 File 28 File 29 File 30 File 31 File 32 Beta Act
None 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 1 - Town 1 Act1/Town/Floor.dt1 Act1/Town/Objects.dt1 Act1/Town/Fence.dt1 Act1/Outdoors/River.dt1 Act1/Outdoors/stonewall.dt1 Act1/Town/trees.dt1 0 Act1/Outdoors/Objects.dt1 Act1/Outdoors/TreeGroups.dt1 Act1/Outdoors/Bridge.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
Act 1 - Wilderness 2 Act1/Town/Floor.dt1 Act1/Town/Trees.dt1 Act1/Outdoors/stonewall.dt1 Act1/Outdoors/Fence.dt1 Act1/Outdoors/TreeGroups.dt1 Act1/Outdoors/River.dt1 Act1/Outdoors/Bridge.dt1 Act1/Outdoors/Cairn.dt1 Act1/Outdoors/Objects.dt1 Act1/Outdoors/Cliff2.dt1 Act1/Outdoors/Cliff1.dt1 Act1/Graveyard/graveyrd.dt1 Act1/Outdoors/Corner.dt1 Act1/Outdoors/Ruin.dt1 Act1/Outdoors/Stones.dt1 Act1/Outdoors/Tower.dt1 Act1/Outdoors/Fallen.dt1 Act1/Outdoors/pond.dt1 Act1/Outdoors/puddle.dt1 Act1/Outdoors/TowerB.dt1 Act1/Caves/Cavedr.dt1 Act1/Outdoors/tome.dt1 Act1/Outdoors/Swamp.dt1 Act1/Town/Fence.dt1 Act1/Outdoors/Cottages.dt1 Act1/Town/Objects.dt1 0 0 0 0 0 0 1 1
Act 1 - Cave 3 Act1/Caves/Cave.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
Act 1 - Crypt 4 Act1/Crypt/Basewall.dt1 Act1/Crypt/Floor.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
Act 1 - Monestary 5 Act1/Court/Floor.dt1 Act1/Town/Floor.dt1 Act1/Outdoors/River.dt1 Act1/Court/Archwall.dt1 Act1/Court/Outwall.dt1 Act1/Monastry/Facade.dt1 Act1/Outdoors/stonewall.dt1 Act1/Town/trees.dt1 Act1/Outdoors/TreeGroups.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Courtyard 6 Act1/Court/Floor.dt1 Act1/Court/Archwall.dt1 Act1/Court/Outwall.dt1 Act1/Barracks/floor.dt1 Act1/Court/Plants2.dt1 Act1/Court/Pboxwall.dt1 Act1/Barracks/basewall.dt1 Act1/Barracks/barset.dt1 Act1/Barracks/exitdn.dt1 Act1/Barracks/objects.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Barracks 7 Act1/Barracks/basewall.dt1 Act1/Barracks/barset.dt1 Act1/Barracks/exitdn.dt1 Act1/Barracks/floor.dt1 Act1/Court/Outwall.dt1 Act1/Barracks/Torture.dt1 Act1/Barracks/objects.dt1 Act1/Court/Floor.dt1 Act1/Barracks/stairup.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Jail 8 Act1/Barracks/basewall.dt1 Act1/Barracks/barset.dt1 Act1/Barracks/exitdn.dt1 Act1/Barracks/floor.dt1 0 Act1/Barracks/Torture.dt1 Act1/Barracks/objects.dt1 0 Act1/Barracks/stairup.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Cathedral 9 Act1/Cathedrl/Alter.dt1 Act1/Cathedrl/Coffers.dt1 Act1/Cathedrl/Stained.dt1 Act1/Barracks/floor.dt1 Act1/Cathedrl/column.dt1 Act1/Court/Outwall.dt1 Act1/Court/Floor.dt1 Act1/Cathedrl/Frescoes.dt1 Act1/Cathedrl/rugs.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Catacombs 10 Act1/Catacomb/Basewalls.dt1 Act1/Catacomb/Cathstr.dt1 Act1/Catacomb/Dwnstr.dt1 Act1/Catacomb/Upstr.dt1 Act1/Catacomb/floor.dt1 Act1/Catacomb/andariel.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 1 - Tristram 11 Act1/Town/Floor.dt1 Act1/Tristram/town.dt1 Act1/Outdoors/stonewall.dt1 Act1/Outdoors/River.dt1 Act1/Outdoors/Objects.dt1 Act1/Outdoors/TreeGroups.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Act 2 - Town 12 Act2/Town/Ground.dt1 Act2/Town/Walls.dt1 Act2/Town/Build.dt1 Act2/Town/Canal.dt1 Act2/Town/Curbs.dt1 Act2/Town/Gate.dt1 Act2/Town/Guard.dt1 Act2/Town/Shop.dt1 Act2/Town/Tavern.dt1 Act2/Town/Wagon.dt1 Act2/Palace/Palace.dt1 Act2/Outdoors/Palm.dt1 Act2/Outdoors/Mesa.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
Act 2 - Sewer 13 Act2/Sewer/Walls.dt1 Act2/Sewer/Chamb.dt1 Act2/Sewer/Items.dt1 Act2/Sewer/Radament.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
Act 2 - Harem 14 Act2/Palace/Harem.dt1 Act2/Palace/HaremFlr.dt1 Act2/Palace/HaremEnt.dt1 Act2/Palace/HaremStair.dt1 Act2/Palace/Sub-Har.dt1 Act2/Palace/Sub-HarFlr.dt1 Act2/Palace/InvisWal.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
Act 2 - Basement 15 Act2/Palace/Cellar.dt1 Act2/Palace/CellFlr.dt1 0 0 0 0 Act2/Palace/InvisWal.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
Act 2 - Desert 16 Act2/Town/Ground.dt1 Act2/Outdoors/Rocks.dt1 Act2/Outdoors/Dune.dt1 Act2/BigCliff/CliffRight.dt1 Act2/BigCliff/CliffLeft.dt1 Act2/BigCliff/CliffMesa.dt1 Act2/Outdoors/Head.dt1 Act2/Outdoors/Bone.dt1 Act2/Outdoors/Mesa.dt1 Act2/BigCliff/Stairs.dt1 Act2/Outdoors/SmCliff.dt1 Act2/BigCliff/TalTombR.dt1 Act2/Town/Curbs.dt1 Act2/BigCliff/TalTombL.dt1 Act2/Outdoors/Oasis.dt1 Act2/BigCliff/TombCor.dt1 Act2/Ruin/Ground.dt1 Act2/BigCliff/Corner.dt1 Act2/Outdoors/Palm.dt1 Act2/Outdoors/Prickly.dt1 Act2/Outdoors/Scrub.dt1 Act2/Maggot/Entrance.dt1 Act2/Maggot/Hole.dt1 Act2/Outdoors/Wagon.dt1 Act2/Ruin/Column.dt1 Act2/Outdoors/Village.dt1 Act2/Outdoors/TombEnt.dt1 Act2/Outdoors/Viper.dt1 Act2/Tomb/Tomb.dt1 0 0 0 0 2
Act 2 - Tomb 17 Act2/Tomb/Tomb.dt1 Act2/Tomb/Columns.dt1 Act2/Tomb/Things.dt1 Act2/Tomb/Statuerm.dt1 Act2/Tomb/Treasure.dt1 Act2/Tomb/Stairs.dt1 Act2/Tomb/Duriel.dt1 Act2/Tomb/Tombsteps.dt1 Act2/Tomb/Secret.dt1 Act2/Tomb/Talrasha.dt1 Act2/Tomb/Serpent.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
Act 2 - Lair 18 Act2/Maggot/Floor.dt1 Act2/Maggot/Den.dt1 Act2/Maggot/Entrance.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
Act 2 - Arcane 19 Act2/Arcane/Sanctuary.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
Act 3 - Town 20 Act3/Docktown/Boat.dt1 Act3/Docktown/Bridge.dt1 Act3/Docktown/Docks.dt1 Act3/Docktown/Huts.dt1 Act3/Docktown/Market.dt1 Act3/Docktown/Pyramid.dt1 Act3/Docktown/RuinFlr.dt1 Act3/Docktown/RuinWall.dt1 Act3/Docktown/Shack.dt1 Act3/Jungle/Trees.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
Act 3 - Jungle 21 Act3/Docktown/Bridge.dt1 Act3/Ground/DarkGrass.dt1 Act3/Ground/DarkMud.dt1 Act3/Ground/DryMud.dt1 Act3/Ground/GreenMud.dt1 Act3/Jungle/Trees.dt1 Act3/Jungle/TreeGrp.dt1 Act3/River/RivBank.dt1 Act3/DockTown/Bridge.dt1 Act3/Jungle/Ruin.dt1 Act3/Spider/SpiderEnt.dt1 Act3/Jungle/DungEnt.dt1 Act3/River/Pool.dt1 Act3/Jungle/Pygmy.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
Act 3 - Kurast 22 Act3/Ground/DarkGrass.dt1 Act3/Ground/DarkMud.dt1 Act3/Ground/DryMud.dt1 Act3/Kurast/Floors.dt1 Act3/Kurast/Huts.dt1 Act3/Kurast/Interior.dt1 Act3/Kurast/Roofs.dt1 Act3/Kurast/Sets.dt1 Act3/Kurast/Terraces.dt1 Act3/Kurast/Walls.dt1 Act3/Jungle/Trees.dt1 Act3/Jungle/TreeGrp.dt1 Act3/Travincal/Floors.dt1 Act3/Travincal/Gate.dt1 Act3/Travincal/Terraces.dt1 Act3/Travincal/Walls.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
Act 3 - Spider 23 Act3/Spider/Lair.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
Act 3 - Dungeon 24 Act3/Jungle/Dungeon.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
Act 3 - Sewer 25 Act3/Kurast/Floors.dt1 Act3/Sewer/Floors.dt1 Act3/Sewer/Walls.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
Act 4 - Town 26 Act4/Fort/Plaza.dt1 Act4/Fort/Interior.dt1 Act4/Fort/Exterior.dt1 Act4/Fort/ForeGate.dt1 Act4/Mesa/Floor.dt1 Act4/Mesa/Inv_Wall.dt1 Act4/Mesa/Stairs.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4
Act 4 - Mesa 27 Act4/Mesa/Floor.dt1 Act4/Mesa/Stairs.dt1 Act4/Mesa/Arch_Walls.dt1 Act4/Mesa/Brick_Walls.dt1 Act4/Mesa/Chain_Walls.dt1 Act4/Mesa/Dist_Wall.dt1 Act4/Mesa/Inv_Wall.dt1 Act4/Mesa/Surf_Wall.dt1 Act4/Mesa/Surf_Struct.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4
Act 4 - Lava 28 Act4/Lava/Floor.dt1 Act4/Lava/Walls.dt1 Act4/Diab/Floor.dt1 Act4/Diab/Walls.dt1 Act4/Diab/Bridge.dt1 Act4/Lava/Extwalls.dt1 Act4/Lava/Intwalls.dt1 Act4/Lava/Floornew.dt1 Act4/Lava/Rocks.dt1 Act4/Lava/Specials.dt1 Act4/Mesa/Surf_Wall.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4
Expansion
Act 5 - Town 29 Expansion/town/blacksmith.dt1 Expansion/town/ground.dt1 Expansion/town/keepwall.dt1 Expansion/town/otherwalls.dt1 Expansion/town/shrine.dt1 Expansion/town/walls.dt1 Expansion/siege/shrub.dt1 Expansion/town/collision.dt1 Expansion/siege/path.dt1 Expansion/town/tent.dt1 Expansion/siege/snow.dt1 Expansion/siege/trees.dt1 Expansion/Town/Buildingses.dt1 Expansion/Siege/fence.dt1 Expansion/Town/waypt.dt1 Expansion/Town/maingate.dt1 Expansion/Town/clutter.dt1 Expansion/Town/trees.dt1 Expansion/Siege/rockcliff.dt1 Expansion/Siege/rockclifffloor.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 5
Act 5 - Siege 30 Expansion/Siege/ascendors.dt1 Expansion/Siege/camp.dt1 Expansion/Siege/fence.dt1 Expansion/Siege/ground.dt1 Expansion/Siege/rockcliff.dt1 Expansion/Siege/rockclifffloor.dt1 Expansion/Siege/rocks.dt1 Expansion/Siege/shrub.dt1 Expansion/Siege/spike.dt1 Expansion/Siege/trench.dt1 Expansion/Siege/trees.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
Act 5 - Barricade 31 Expansion/Siege/Ground.dt1 Expansion/Siege/fence.dt1 Expansion/Siege/cliff.dt1 Expansion/Siege/fortified.dt1 Expansion/Siege/snow.dt1 Expansion/Siege/trees.dt1 Expansion/Siege/special.dt1 Expansion/Siege/trench.dt1 Expansion/Siege/building.dt1 Expansion/town/waypt.dt1 Expansion/Siege/pinetree.dt1 Expansion/Siege/battle.dt1 Expansion/Siege/barricade.dt1 Expansion/Siege/rockclifffloor.dt1 Expansion/Siege/camp.dt1 Expansion/Siege/rockcliff.dt1 Expansion/Siege/ascendors.dt1 Expansion/Siege/spike.dt1 Expansion/Town/collision.dt1 Expansion/Siege/shrub.dt1 Expansion/Siege/rocks.dt1 Expansion/Wildtemple/Entrance.dt1 Expansion/MountainTop/floor.dt1 Expansion/MountainTop/Entrance.dt1 Expansion/MountainTop/Columns.dt1 Expansion/IceCave/Exterior.dt1 Expansion/IceCave/Warps.dt1 Expansion/Ruins/Walls.dt1 Expansion/Ruins/Furnish.dt1 Expansion/Siege/pens.dt1 Expansion/Siege/hellgate.dt1 0 0 5
Act 5 - Temple 32 Expansion/wildtemple/interior.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
Act 5 - Ice Caves 33 Expansion/icecave/interior.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
Act 5 - Baal 34 Expansion/baallair/walls.dt1 Expansion/baallair/floor.dt1 Expansion/baallair/underwall.dt1 Expansion/baallair/underflr.dt1 Expansion/baallair/worldstone.dt1 Expansion/baallair/throne.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
Act 5 - Lava 35 Act4/Lava/Floor.dt1 Act4/Lava/Walls.dt1 Act4/Diab/Floor.dt1 Act4/Diab/Walls.dt1 Act4/Diab/Bridge.dt1 Act4/Lava/Extwalls.dt1 Act4/Lava/Intwalls.dt1 Act4/Lava/Floornew.dt1 Act4/Lava/Rocks.dt1 Act4/Lava/Specials.dt1 Act4/Mesa/Surf_Wall.dt1 Act4/Expansion/Specials.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5

90
txt/LvlWarp.txt Normal file
View File

@ -0,0 +1,90 @@
Name Id SelectX SelectY SelectDX SelectDY ExitWalkX ExitWalkY OffsetX OffsetY LitVersion Tiles Direction Beta
Act 1 Wilderness to Cave Cliff L 0 -90 -100 90 110 5 0 1 -1 1 2 b 1
Act 1 Wilderness to Cave Cliff R 1 -15 -90 90 110 0 5 3 1 1 2 b 1
Act 1 Wilderness to Cave Floor L 2 -60 -60 85 100 5 0 -1 1 1 2 b 1
Act 1 Wilderness to Cave Floor R 3 -25 -60 85 100 0 5 1 -1 1 2 b 1
Act 1 Cave Up 4 -30 -120 120 150 3 5 2 5 1 2 b 1
Act 1 Cave Down 5 -25 -75 80 100 3 5 1 3 1 2 b 1
Act 1 Graveyard to Crypt 1 6 -90 -110 110 140 5 0 5 0 0 2 b 1
Act 1 Graveyard to Crypt 2 7 -70 -90 90 120 5 0 5 2 0 2 b 1
Act 1 Crypt Up 8 -10 -90 60 110 0 5 5 1 1 2 b 1
Act 1 Crypt Down 9 -30 -90 60 110 5 0 1 1 1 2 b 1
Act 1 Wilderness to Tower 10 -10 -50 150 80 3 5 -4 0 1 2 b 1
Act 1 Tower to Wilderness 11 -50 -130 60 140 5 3 4 -2 0 2 b 1
Act 1 Tower to Crypt 12 -50 -90 80 110 5 0 2 3 1 2 b 1
Act 1 Jail Up 13 -50 -110 110 150 0 5 5 1 1 2 b 1
Act 1 Jail Down 14 -40 -80 210 110 0 5 -1 3 1 2 b 1
Act 1 Cathedral To Catacombs 15 -30 -110 85 130 0 5 3 1 1 2 b 1
Act 1 Catacombs to Cathedral 16 -35 -130 90 150 0 5 7 1 1 2 b 1
Act 1 Catacombs Up 17 -50 -110 110 150 0 5 5 1 1 2 b 1
Act 1 Catacombs Down 18 -60 -80 210 110 0 5 -1 3 1 2 b 1
Act 2 Town to Sewer Trap 19 -10 -10 0 0 5 5 0 0 0 2 b 0
Act 2 Town to Sewer Dock 20 -25 -95 70 130 5 0 -2 0 0 2 b 0
Act 2 Sewer Dock to Town 21 20 -80 65 140 -5 0 10 -2 0 2 b 0
Act 2 Sewer Up 22 -25 -160 100 180 2 5 5 3 1 2 b 0
Act 2 Sewer Down 23 -65 -55 150 110 0 -5 0 0 1 2 b 0
Act 2 Town to Harem 24 -120 -20 150 130 5 0 5 2 0 2 b 0
Act 2 Harem to Town 25 -35 -70 95 130 5 2 0 -2 0 2 b 0
Act 2 Harem Up 1 26 -25 -150 80 180 0 5 4 0 1 2 b 0
Act 2 Harem Up 2 27 -40 -160 80 180 5 0 0 5 1 2 b 0
Act 2 Harem Down 1 28 -20 -40 170 100 -5 5 -3 1 1 2 b 0
Act 2 Harem Down 2 29 -50 -20 160 85 -5 0 -1 -3 1 2 b 0
Act 2 Basement Up 1 30 -25 -100 60 125 0 5 2 0 1 2 b 0
Act 2 Basement Up 2 31 -40 -100 60 125 5 0 0 2 1 2 b 0
Act 2 Basement Down 32 -30 -30 170 90 -5 5 -3 0 1 2 b 0
Act 2 Desert to Tomb L 1 33 -70 -140 80 160 5 0 1 1 0 2 b 0
Act 2 Desert to Tomb L 2 34 -50 -120 90 150 5 0 1 1 0 2 b 0
Act 2 Desert to Tomb R 1 35 -30 -140 80 160 0 5 6 2 0 2 b 0
Act 2 Desert to Tomb R 2 36 0 -140 100 150 0 5 1 2 0 2 b 0
Act 2 Desert to Tomb Viper 37 -30 -140 80 160 0 5 4 1 0 2 b 0
Act 2 Desert to Tomb Tal 1 38 -40 -190 90 210 5 5 0 0 0 2 b 0
Act 2 Desert to Tomb Tal 2 39 -40 -210 50 230 5 0 -1 1 0 2 b 0
Act 2 Desert to Tomb Tal 3 40 -30 -100 60 140 5 0 0 1 0 2 b 0
Act 2 Desert to Tomb Tal 4 41 -90 -140 70 160 5 0 -1 -5 0 2 b 0
Act 2 Desert to Tomb Tal 5 42 -10 -110 60 150 0 5 -2 -3 0 2 b 0
Act 2 Desert to Tomb Tal 6 43 0 -130 90 150 0 5 -1 0 0 2 b 0
Act 2 Desert to Tomb Tal 7 44 -10 -210 70 240 0 5 0 -3 0 2 b 0
Act 2 Tomb Up 45 -30 -115 75 145 0 5 2 0 1 2 b 0
Act 2 Tomb Down 46 -45 -120 85 145 5 0 0 2 1 2 b 0
Act 2 Desert to Lair 47 -10 -60 90 90 5 5 -2 2 1 2 b 0
Act 2 Lair Up 48 -20 -70 80 85 0 5 1 0 1 2 b 0
Act 2 Lair Down 49 -115 -10 160 70 0 -5 -3 -5 1 2 b 0
Act 2 Desert to Sewer Trap 50 -10 -10 0 0 5 5 0 0 0 2 b 0
Act 3 Jungle to Spider 51 -60 -70 70 90 5 0 0 1 0 2 b 0
Act 3 Spider to Jungle 52 10 -100 80 110 0 5 4 1 1 2 b 0
Act 3 Jungle to Dungeon Fort 53 -15 -70 70 110 0 5 0 0 0 2 b 0
Act 3 Jungle to Dungeon Hole 54 -130 -10 170 100 0 -5 -4 -6 0 2 b 0
Act 3 Dungeon Up 55 -10 -100 90 130 0 5 3 1 1 2 b 0
Act 3 Dungeon Down 56 -40 -20 170 100 -5 0 -4 -1 1 2 b 0
Act 3 Kurast to Sewer 57 -60 -40 120 90 0 5 0 0 1 2 b 0
Act 3 Sewer Up L 58 -75 -110 100 150 5 0 1 1 1 2 b 0
Act 3 Sewer Up R 59 -25 -110 100 150 0 5 6 1 1 2 b 0
Act 3 Sewer Down 60 -10 -10 0 0 5 5 0 0 0 2 b 0
Act 3 Kurast to Temple 61 -10 -10 0 0 5 5 0 0 0 2 b 0
Act 3 Temple Up L 62 -50 -110 80 140 5 0 1 2 1 2 b 0
Act 3 Temple Up R 63 -30 -110 80 140 0 5 2 1 1 2 b 0
Act 3 Travincal to Mephisto 64 -10 -10 0 0 5 5 0 0 0 2 b 0
Act 3 Mephisto Up L 65 -65 -150 125 180 5 0 1 0 1 2 b 0
Act 3 Mephisto Up R 66 -60 -150 125 180 0 5 5 1 1 2 b 0
Act 3 Mephisto Down L 67 -65 -150 125 180 5 0 1 0 1 2 b 0
Act 3 Mephisto Down R 68 -60 -150 125 180 0 5 5 1 1 2 b 0
Act 4 Mesa to Lava 69 -60 -40 150 160 -5 0 2 2 0 2 b 0
Act 4 Lava to Mesa 70 -90 -50 160 120 5 2 0 0 0 2 b 0
Expansion
Act 5 Barricade Down Wall 71 -70 -80 80 100 5 2 2 6 1 4 l 0
Act 5 Barricade Down Wall 71 -15 -90 70 100 -1 5 6 2 1 4 r 0
Act 5 Barricade Down Floor 72 -20 -120 75 100 5 2 2 2 1 4 b 0
Act 5 Ice Caves Up 73 -60 -110 90 115 5 2 0 5 1 2 l 0
Act 5 Ice Caves Up 73 -10 -120 100 120 2 5 5 1 1 2 r 0
Act 5 Ice Caves Down 74 -60 -110 90 115 5 2 0 5 1 2 l 0
Act 5 Ice Caves Down 74 -20 -110 90 115 2 5 4 0 1 2 r 0
Act 5 Ice Caves Down Floor 75 -5 -110 80 110 2 5 6 3 1 2 b 0
Act 5 Temple Entrance 76 0 -110 95 100 2 5 2 0 1 2 b 0
Act 5 Temple Down 77 0 -70 140 80 5 2 -2 3 1 2 b 0
Act 5 Temple Up 78 -20 -110 100 110 5 2 3 0 1 2 b 0
Act 5 Mountain Top To Ice 79 -40 -110 0 0 2 5 2 1 0 2 b 0
Act 5 Mountain Top To Baal 80 -20 -110 0 0 2 5 2 1 0 2 b 0
Act 5 Baal Temple Up 81 -70 -110 95 115 5 2 1 4 1 2 l 0
Act 5 Baal Temple Up 81 -20 -110 80 115 2 5 4 1 1 2 r 0
Act 5 Baal Temple Down 82 -70 -110 95 115 5 2 1 4 1 2 l 0
Act 5 Baal Temple Down 82 -20 -110 80 115 2 5 4 1 1 2 r 0

602
txt/MagicPrefix.txt Normal file
View File

@ -0,0 +1,602 @@
Name version spawnable rare level maxlevel levelreq classspecific class classlevelreq frequency group mod1code mod1param mod1min mod1max mod2code mod2param mod2min mod2max mod3code mod3param mod3min mod3max transform transformcolor itype1 itype2 itype3 itype4 itype5 itype6 itype7 etype1 etype2 etype3 etype4 etype5 divide multiply add
0 0 0
Sturdy 0 1 1 4 3 0 101 ac% 20 30 armo 0 0 0
Strong 0 1 1 9 6 0 101 ac% 31 40 armo 0 0 0
Glorious 0 1 1 19 14 0 101 ac% 41 50 armo 0 0 0
Blessed 0 1 1 25 18 0 101 ac% 51 65 armo 0 0 0
Saintly 0 1 1 31 23 0 101 ac% 66 80 1 dgld armo 0 0 0
Holy 0 1 1 36 27 0 101 ac% 81 100 1 dgld armo 0 0 0
Devious 0 1 1 7 5 0 103 red-mag 0 1 1 1 dblu shld 0 0 0
Fortified 0 1 1 14 10 0 103 red-mag 0 2 2 1 dblu shld 0 0 0
0 0 0
0 0 0
0 0 0
Jagged 0 1 1 1 1 0 106 dmg% 0 10 20 weap 0 0 0
Deadly 0 1 1 5 3 0 106 dmg% 0 21 30 weap 0 0 0
Vicious 0 1 1 8 6 0 106 dmg% 0 31 40 weap 0 0 0
Brutal 0 1 1 14 10 0 106 dmg% 0 41 50 weap 0 0 0
Massive 0 1 1 20 15 0 106 dmg% 0 51 65 1 dgld weap 0 0 0
Savage 0 1 1 26 19 0 106 dmg% 0 66 80 1 dgld weap staf wand 0 0 0
Merciless 0 1 1 32 24 0 106 dmg% 0 81 100 1 dgld weap staf wand 0 0 0
Vulpine 0 1 1 9 6 0 107 dmg-to-mana 0 10 10 1 cblu shld amul 0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
Tireless 0 1 1 14 10 0 109 regen-stam 0 50 50 boot 0 0 0
Rugged 0 1 1 14 10 0 110 stam 0 5 10 boot glov belt ring amul 0 0 0
Bronze 0 1 1 1 1 0 111 att 0 10 20 weap ring glov amul 0 0 0
Iron 0 1 1 4 3 0 111 att 0 21 40 weap ring 0 0 0
Steel 0 1 1 8 6 0 111 att 0 41 60 weap ring 0 0 0
Silver 0 1 1 12 9 0 111 att 0 61 80 weap ring 0 0 0
0 0 0
Gold 0 1 1 17 12 0 111 att 0 81 100 1 lgld weap 0 0 0
Platinum 0 1 1 22 16 0 111 att 0 101 120 1 lgld weap ring 0 0 0
Meteoric 0 1 1 27 20 0 111 att 0 121 150 1 lgld weap ring staf wand 0 0 0
Sharp 0 1 1 5 3 0 112 att 0 10 20 dmg% 0 10 20 weap 0 0 0
Fine 0 1 1 9 6 0 112 att 0 21 40 dmg% 0 21 30 weap 0 0 0
Warrior's 0 1 1 15 11 0 112 att 0 41 60 dmg% 0 31 40 weap 0 0 0
Soldier's 0 1 1 21 15 0 112 att 0 61 80 dmg% 0 41 50 weap 0 0 0
Knight's 0 1 1 25 18 0 112 att 0 81 100 dmg% 0 51 65 1 dgld weap 0 0 0
Lord's 0 1 1 30 22 0 112 att 0 101 120 dmg% 0 66 80 1 dgld weap staf wand 0 0 0
King's 0 1 1 35 26 0 112 att 0 121 150 dmg% 0 81 100 1 dgld weap staf wand 0 0 0
Howling 0 1 1 16 12 0 113 howl 0 128 128 1 oran weap miss 0 0 0
Fortuitous 0 1 1 5 3 0 114 mag% 0 10 15 ring amul 0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
Glimmering 0 1 1 1 1 0 116 light 0 1 1 armo wand staf ring amul 0 0 0
Glowing 0 1 1 6 4 0 116 light 0 2 2 1 lyel armo wand staf ring amul 0 0 0
0 0 0
0 0 0
Lizard's 0 1 1 3 2 0 118 mana 0 1 5 armo ring amul rod boot glov 0 0 0
0 0 0
Snake's 0 1 1 6 4 0 118 mana 0 5 10 shld rod belt ring amul 0 0 0
Serpent's 0 1 1 14 10 0 118 mana 0 11 20 shld rod belt ring amul 0 0 0
Serpent's 0 1 1 37 27 0 118 mana 0 11 20 tors helm boot glov mele h2h rod 0 0 0
Drake's 0 1 1 20 15 0 118 mana 0 21 30 1 cblu rod ring amul belt 0 0 0
Dragon's 0 1 1 24 18 0 118 mana 0 31 40 1 cblu rod ring amul 0 0 0
Dragon's 0 1 1 52 39 0 118 mana 0 31 40 1 cblu tors helm boot glov 0 0 0
Wyrm's 0 1 1 30 22 0 118 mana 0 41 60 1 cblu rod ring amul 0 0 0
0 0 0
0 0 0
Prismatic 0 1 1 27 20 0 120 res-all 0 15 25 1 lpur amul 0 0 0
Prismatic 0 1 1 62 46 0 120 res-all 0 15 15 1 lpur ring 0 0 0
Azure 0 1 1 5 3 0 121 res-cold 0 5 10 armo rod miss ring amul 0 0 0
Lapis 0 1 1 12 9 0 121 res-cold 0 11 20 armo ring amul rod 0 0 0
Lapis 0 1 1 35 26 0 121 res-cold 0 11 20 weap glov rod 0 0 0
Cobalt 0 1 1 18 13 0 121 res-cold 0 21 30 armo ring amul rod glov 0 0 0
Cobalt 0 1 1 55 41 0 121 res-cold 0 21 30 weap glov rod 0 0 0
0 0 0
Sapphire 0 1 1 25 18 0 121 res-cold 0 31 50 1 lblu rod boot ring amul miss scep 0 0 0
0 0 0
0 0 0
Crimson 0 1 1 5 3 0 122 res-fire 0 5 10 armo rod miss ring amul amul 0 0 0
Burgundy 0 1 1 12 9 0 122 res-fire 0 11 20 armo rod ring amul amul 0 0 0
Burgundy 0 1 1 35 26 0 122 res-fire 0 11 20 weap rod 0 0 0
Garnet 0 1 1 18 13 0 122 res-fire 0 21 30 armo rod ring amul glov 0 0 0
Garnet 0 1 1 55 41 0 122 res-fire 0 21 30 weap glov rod 0 0 0
0 0 0
Ruby 0 1 1 25 18 0 122 res-fire 0 31 50 1 lred wand staf boot ring amul 0 0 0
0 0 0
0 0 0
Ocher 0 1 1 5 3 0 123 res-ltng 0 5 10 armo rod ring amul miss 0 0 0
Tangerine 0 1 1 12 9 0 123 res-ltng 0 11 20 armo ring amul rod 0 0 0
Tangerine 0 1 1 35 26 0 123 res-ltng 0 11 20 weap rod 0 0 0
Coral 0 1 1 18 13 0 123 res-ltng 0 21 30 armo ring amul rod glov 0 0 0
Coral 0 1 1 55 41 0 123 res-ltng 0 21 30 weap glov rod 0 0 0
0 0 0
Amber 0 1 1 25 18 0 123 res-ltng 0 31 50 1 lyel armo ring amul staf wand shld glov 0 0 0
0 0 0
0 0 0
Beryl 0 1 1 5 3 0 124 res-pois 0 5 10 armo ring amul scep staf miss 0 0 0
Jade 0 1 1 12 9 0 124 res-pois 0 11 20 armo ring amul scep staf 0 0 0
Jade 0 1 1 35 26 0 124 res-pois 0 11 20 weap ring staf scep 0 0 0
Viridian 0 1 1 18 13 0 124 res-pois 0 21 30 tors helm shld scep staf ring amul 0 0 0
Viridian 0 1 1 55 41 0 124 res-pois 0 21 30 weap boot glov belt staf scep 0 0 0
0 0 0
Emerald 0 1 1 25 18 0 124 res-pois 0 31 50 1 lgrn scep ring amul 0 0 0
0 0 0
Fletcher's 0 1 1 30 22 0 125 ama 0 1 1 miss amul 0 0 0
Archer's 0 1 1 40 30 0 125 ama 0 2 2 1 cgrn miss 0 0 0
Archer's 0 1 1 90 67 0 125 ama 0 2 2 1 cgrn amul 0 0 0
Monk's 0 1 1 30 22 0 126 pal 0 1 1 scep amul 0 0 0
Priest's 0 1 1 40 30 0 126 pal 0 2 2 1 cgrn scep 0 0 0
Priest's 0 1 1 90 67 0 126 pal 0 2 2 1 cgrn amul 0 0 0
Summoner's 0 1 1 30 22 0 127 nec 0 1 1 wand amul 0 0 0
Necromancer's 0 1 1 40 30 0 127 nec 0 2 2 1 cgrn wand 0 0 0
Necromancer's 0 1 1 90 67 0 127 nec 0 2 2 1 cgrn amul 0 0 0
Angel's 0 1 1 30 22 0 128 sor 0 1 1 staf amul 0 0 0
Arch-Angel's 0 1 1 40 30 0 128 sor 0 2 2 1 cgrn staf 0 0 0
Arch-Angel's 0 1 1 90 67 0 128 sor 0 2 2 1 cgrn amul 0 0 0
Slayer's 0 1 1 30 22 0 129 bar 0 1 1 mele amul rod h2h 0 0 0
Berserker's 0 1 1 40 30 0 129 bar 0 2 2 1 cgrn mele rod h2h 0 0 0
Berserker's 0 1 1 90 67 0 129 bar 0 2 2 1 cgrn amul 0 0 0
0 0 0
0 0 0
Triumphant 0 1 1 3 2 0 132 mana-kill 0 1 1 mele ring 0 0 0
Expansion
Stout 100 1 1 1 1 4 101 ac 3 5 lcha 0 0 0
Stout 100 1 1 7 5 4 101 ac 6 9 lcha 0 0 0
Stout 100 1 1 12 9 4 101 ac 10 12 lcha 0 0 0
Burly 100 1 1 17 12 4 101 ac 13 15 lcha 0 0 0
Burly 100 1 1 22 16 4 101 ac 16 22 lcha 0 0 0
Burly 100 1 1 27 20 4 101 ac 23 30 lcha 0 0 0
Stalwart 100 1 32 24 4 101 ac 33 40 lcha 0 0 0
Stalwart 100 1 37 29 4 101 ac 44 50 lcha 0 0 0
Stalwart 100 1 42 34 4 101 ac 60 100 lcha 0 0 0
Stout 100 1 1 1 1 4 101 ac 2 3 mcha 0 0 0
Stout 100 1 1 14 10 4 101 ac 4 6 mcha 0 0 0
Stout 100 1 1 20 15 4 101 ac 8 12 mcha 0 0 0
Burly 100 1 1 26 19 4 101 ac 13 18 mcha 0 0 0
Burly 100 1 1 32 24 4 101 ac 20 30 mcha 0 0 0
Stalwart 100 1 38 30 4 101 ac 30 40 mcha 0 0 0
Stalwart 100 1 45 37 4 101 ac 45 60 mcha 0 0 0
Stout 100 1 1 1 1 4 101 ac 1 1 scha 0 0 0
Stout 100 1 1 21 15 4 101 ac 4 8 scha 0 0 0
Burly 100 1 1 36 28 4 101 ac 15 20 scha 0 0 0
Stalwart 100 1 48 40 4 101 ac 20 30 scha 0 0 0
Blanched 100 1 1 1 1 4 101 ac 3 5 1 whit jewl 0 0 0
Eburin 100 1 1 16 12 4 101 ac 6 15 1 whit jewl 0 0 0
Bone 100 1 1 32 24 4 101 ac 16 32 1 whit jewl 0 0 0
Ivory 100 1 64 56 4 101 ac 33 64 1 whit jewl 0 0 0
Sturdy 1 1 1 1 1 4 101 ac% 10 20 armo 0 0 0
Sturdy 1 1 1 4 3 4 101 ac% 21 30 armo 0 0 0
Strong 1 1 1 9 6 4 101 ac% 31 40 armo 0 0 0
Glorious 1 1 1 19 14 4 101 ac% 41 50 armo 0 0 0
Blessed 1 1 1 25 18 4 101 ac% 51 65 armo 0 0 0
Saintly 1 1 1 31 23 4 101 ac% 66 80 1 dgld armo 0 0 0
Holy 1 1 1 36 27 4 101 ac% 81 100 1 dgld armo 0 0 0
Godly 100 1 45 38 4 101 ac% 101 200 1 dgld armo 0 0 0
Devious 1 0 1 7 5 4 102 red-mag 1 1 shld circ 0 0 0
Blank 1 0 1 14 10 4 102 red-mag 2 2 shld circ 0 0 0
Null 100 0 21 16 4 102 red-mag 3 5 1 dblu shld circ 0 0 0
Antimagic 100 0 28 21 4 102 red-mag 6 10 1 dblu shld circ 0 0 0
Red 100 1 1 4 3 4 103 dmg-min 1 2 1 dred lcha 0 0 0
Red 100 1 1 16 12 4 103 dmg-min 3 4 1 dred lcha 0 0 0
Sanguinary 100 1 1 28 21 4 103 dmg-min 5 6 1 dred lcha 0 0 0
Sanguinary 100 1 1 40 32 4 103 dmg-min 7 8 1 dred lcha 0 0 0
Bloody 100 1 52 46 4 103 dmg-min 9 11 1 dred lcha 0 0 0
Red 100 1 1 11 8 4 103 dmg-min 1 2 1 dred mcha 0 0 0
Sanguinary 100 1 1 33 25 4 103 dmg-min 3 4 1 dred mcha 0 0 0
Bloody 100 1 55 47 4 103 dmg-min 5 7 1 dred mcha 0 0 0
Red 100 1 1 24 16 4 103 dmg-min 1 1 1 dred scha 0 0 0
Sanguinary 100 1 1 41 33 4 103 dmg-min 2 2 1 dred scha 0 0 0
Bloody 100 1 58 50 4 103 dmg-min 3 3 1 dred scha 0 0 0
Scarlet 100 1 1 8 6 4 103 dmg-min 1 2 1 dred jewl 0 0 0
Crimson 100 1 1 38 30 4 103 dmg-min 3 4 1 dred jewl 0 0 0
Jagged 100 1 1 3 2 4 104 dmg-max 1 2 1 blac lcha 0 0 0
Jagged 100 1 1 10 7 4 104 dmg-max 3 5 1 blac lcha 0 0 0
Jagged 100 1 1 17 12 4 104 dmg-max 6 8 1 blac lcha 0 0 0
Forked 100 1 1 25 18 4 104 dmg-max 9 11 1 blac lcha 0 0 0
Forked 100 1 1 32 24 4 104 dmg-max 12 14 1 blac lcha 0 0 0
Serrated 100 1 39 31 4 104 dmg-max 15 17 1 blac lcha 0 0 0
Serrated 100 1 47 39 4 104 dmg-max 18 20 1 blac lcha 0 0 0
Jagged 100 1 1 10 7 4 104 dmg-max 1 2 1 blac mcha 0 0 0
Jagged 100 1 1 20 15 4 104 dmg-max 3 4 1 blac mcha 0 0 0
Forked 100 1 1 30 22 4 104 dmg-max 5 7 1 blac mcha 0 0 0
Forked 100 1 1 40 32 4 104 dmg-max 8 9 1 blac mcha 0 0 0
Serrated 100 1 50 42 4 104 dmg-max 10 12 1 blac mcha 0 0 0
Jagged 100 1 1 23 17 4 104 dmg-max 1 2 1 blac scha 0 0 0
Forked 100 1 1 38 30 4 104 dmg-max 3 4 1 blac scha 0 0 0
Serrated 100 1 53 45 4 104 dmg-max 5 6 1 blac scha 0 0 0
Carbuncle 100 1 1 12 9 4 104 dmg-max 1 3 1 dred jewl 0 0 0
Carmine 100 1 1 35 27 4 104 dmg-max 4 6 1 dred jewl 0 0 0
Vermillion 100 1 58 50 4 104 dmg-max 7 9 1 dred jewl 0 0 0
Jagged 1 1 1 1 1 4 105 dmg% 10 20 weap circ orb 0 0 0
Deadly 1 1 1 5 3 4 105 dmg% 21 30 weap circ orb 0 0 0
Vicious 1 1 1 8 6 3 105 dmg% 31 40 weap orb 0 0 0
Brutal 1 1 1 14 10 3 105 dmg% 41 50 weap orb 0 0 0
Massive 1 1 1 20 15 2 105 dmg% 51 65 1 dgld weap orb 0 0 0
Savage 1 1 1 26 19 2 105 dmg% 66 80 1 dgld weap staf wand orb 0 0 0
Merciless 1 1 1 32 24 2 105 dmg% 81 100 1 dgld weap staf wand orb 0 0 0
Ferocious 100 1 41 33 2 105 dmg% 101 200 1 blac weap staf wand orb 0 0 0
Cruel 100 1 51 43 2 105 dmg% 201 300 1 blac weap staf wand orb 0 0 0
Cinnabar 100 1 1 1 1 4 105 dmg% 5 5 1 dred jewl 0 0 0
Rusty 100 1 1 13 9 4 105 dmg% 6 15 1 dred jewl 0 0 0
Realgar 100 1 1 45 37 4 105 dmg% 16 20 1 dred jewl 0 0 0
Ruby 100 1 66 58 4 105 dmg% 21 25 1 dred jewl 0 0 0
Vulpine 1 1 1 9 6 3 107 dmg-to-mana 7 12 1 cblu shld amul 0 0 0
Dun 100 1 1 7 5 3 107 dmg-to-mana 7 12 jewl 0 0 0
Tireless 1 1 1 6 4 4 108 regen-stam 25 25 boot 0 0 0
Tireless 100 1 1 14 10 4 108 regen-stam 50 50 boot 0 0 0
Brown 100 1 1 39 31 4 108 regen-stam 10 15 jewl 0 0 0
Rugged 100 1 1 1 1 4 109 stam 12 24 lcha 0 0 0
Rugged 100 1 1 7 5 4 109 stam 25 36 lcha 0 0 0
Rugged 100 1 1 21 15 4 109 stam 37 50 lcha 0 0 0
Rugged 100 1 1 1 4 109 stam 8 16 mcha
Rugged 100 1 1 7 5 4 109 stam 17 25 mcha 0 0 0
Rugged 100 1 1 21 15 4 109 stam 26 32 mcha 0 0 0
Rugged 100 1 1 1 4 109 stam 4 8 scha
Rugged 100 1 1 21 15 4 109 stam 9 16 scha 0 0 0
Rugged 1 1 1 1 1 4 109 stam 5 10 boot glov belt ring amul circ 0 0 0
Rugged 1 1 1 8 6 4 109 stam 11 20 boot belt 0 0 0
Rugged 1 1 1 8 6 4 109 stam 11 20 ring amul circ 0 0 0
Vigorous 100 1 1 16 12 4 109 stam 21 30 boot belt 0 0 0
Chestnut 100 1 1 1 1 4 109 stam 5 10 jewl 0 0 0
Maroon 100 1 1 17 12 4 109 stam 11 20 jewl 0 0 0
Bronze 100 1 1 1 1 4 110 att 6 12 lcha 0 0 0
Bronze 100 1 1 7 5 4 110 att 13 27 lcha 0 0 0
Bronze 100 1 1 13 9 4 110 att 28 42 lcha 0 0 0
Iron 100 1 1 19 14 4 110 att 43 57 lcha 0 0 0
Iron 100 1 1 25 18 4 110 att 58 72 lcha 0 0 0
Iron 100 1 1 31 23 4 110 att 73 87 lcha 0 0 0
Steel 100 1 37 29 4 110 att 88 102 lcha 0 0 0
Steel 100 1 43 35 4 110 att 103 117 lcha 0 0 0
Steel 100 1 49 41 4 110 att 118 132 lcha 0 0 0
Bronze 100 1 1 1 1 4 110 att 4 8 mcha 0 0 0
Bronze 100 1 1 7 5 4 110 att 6 12 mcha 0 0 0
Bronze 100 1 1 16 12 4 110 att 13 25 mcha 0 0 0
Iron 100 1 1 25 18 4 110 att 26 38 mcha 0 0 0
Iron 100 1 1 34 26 4 110 att 39 51 mcha 0 0 0
Steel 100 1 43 36 4 110 att 52 64 mcha 0 0 0
Steel 100 1 52 44 4 110 att 65 77 mcha 0 0 0
Bronze 100 1 1 1 1 4 110 att 2 4 scha 0 0 0
Bronze 100 1 1 21 15 4 110 att 6 12 scha 0 0 0
Iron 100 1 1 39 31 4 110 att 13 24 scha 0 0 0
Steel 100 1 57 49 4 110 att 25 36 scha 0 0 0
Bronze 1 1 1 1 1 4 110 att 10 20 weap ring glov amul circ orb 0 0 0
Iron 1 1 1 4 3 4 110 att 21 40 weap ring circ orb 0 0 0
Steel 1 1 1 8 6 4 110 att 41 60 weap ring circ orb 0 0 0
Silver 1 1 1 12 9 4 110 att 61 80 weap ring circ orb 0 0 0
Gold 1 1 1 17 12 4 110 att 81 100 1 lgld weap ring circ orb 0 0 0
Platinum 1 1 1 22 16 4 110 att 101 120 1 lgld weap ring circ orb 0 0 0
Meteoric 1 1 1 27 20 4 110 att 121 150 1 lgld weap staf wand orb 0 0 0
Strange 100 1 32 24 4 110 att 151 300 1 lgld weap staf wand orb 0 0 0
Weird 100 1 37 27 4 110 att 301 450 1 lgld weap staf wand orb 0 0 0
Nickel 100 1 1 1 1 4 110 att 5 10 jewl 0 0 0
Tin 100 1 1 8 6 4 110 att 11 20 jewl 0 0 0
Silver 100 1 1 25 18 4 110 att 21 48 jewl 0 0 0
Argent 100 1 44 36 4 110 att 49 92 jewl 0 0 0
Fine 100 1 1 15 11 4 111 att 10 20 dmg-max 1 3 lcha 0 0 0
Fine 100 1 1 22 16 4 111 att 21 48 dmg-max 4 6 lcha 0 0 0
Sharp 100 1 1 29 21 4 111 att 49 76 dmg-max 7 10 lcha 0 0 0
Fine 100 1 1 19 14 4 111 att 10 20 dmg-max 1 3 mcha 0 0 0
Sharp 100 1 1 28 21 4 111 att 21 48 dmg-max 4 6 mcha 0 0 0
Fine 100 1 28 21 4 111 att 10 20 dmg-max 1 3 scha 0 0 0
Sharp 1 1 1 5 3 4 111 att 10 20 dmg% 10 20 weap orb 0 0 0
Fine 1 1 1 12 9 3 111 att 21 40 dmg% 21 30 weap orb 0 0 0
Warrior's 1 1 1 19 13 3 111 att 41 60 dmg% 31 40 weap orb 0 0 0
Soldier's 1 1 1 27 19 2 111 att 61 80 dmg% 41 50 weap orb 0 0 0
Knight's 1 1 1 38 30 2 111 att 81 100 dmg% 51 65 1 dgld weap orb 0 0 0
Lord's 1 1 1 47 39 2 111 att 101 120 dmg% 66 80 1 dgld weap staf wand orb 0 0 0
King's 1 1 1 56 48 1 111 att 121 150 dmg% 81 100 1 dgld weap staf wand orb 0 0 0
Master's 100 1 56 48 2 111 att 151 250 dmg% 101 150 1 dgld weap staf wand orb 0 0 0
Grandmaster's 100 1 69 61 2 111 att 251 300 dmg% 151 200 1 dgld weap staf wand orb 0 0 0
Glimmering 1 1 1 1 1 1 112 light 1 1 armo wand staf ring amul orb 0 0 0
Glowing 1 1 1 6 4 1 112 light 2 2 1 lyel armo wand staf ring amul orb 0 0 0
Bright 100 1 1 1 1 1 112 light 1 1 jewl 0 0 0
Screaming 100 1 1 10 7 4 113 howl 32 32 1 oran weap miss swor axe pole spea 0 0 0
Howling 1 1 1 16 12 4 113 howl 64 64 1 oran weap miss swor axe pole spea 0 0 0
Wailing 100 1 1 20 13 4 113 howl 128 128 1 oran weap miss swor axe pole spea 0 0 0
Screaming 100 1 1 10 7 4 113 howl 16 16 1 oran miss 0 0 0
Howling 100 1 1 16 12 4 113 howl 24 24 1 oran miss 0 0 0
Wailing 100 1 24 18 4 113 howl 32 32 1 oran miss 0 0 0
Lucky 100 1 1 21 4 114 mag% 1 1 lcha 0 0 0
Lucky 100 1 38 4 114 mag% 2 2 lcha 0 0 0
Lucky 100 1 55 4 114 mag% 3 4 lcha 0 0 0
Lucky 100 1 1 34 4 114 mag% 1 1 mcha 0 0 0
Lucky 100 1 53 4 114 mag% 2 2 mcha 0 0 0
Lucky 100 1 51 4 114 mag% 3 4 mcha 0 0 0
Felicitous 100 1 1 5 3 4 114 mag% 5 10 ring amul circ 0 0 0
Fortuitous 1 1 12 8 4 114 mag% 11 15 ring amul circ 0 0 0
Emerald 100 1 1 16 12 4 114 mag% 2 3 jewl 0 0 0
Lizard's 100 1 1 1 1 4 115 mana 3 7 lcha 0 0 0
Lizard's 100 1 1 7 5 4 115 mana 8 13 lcha 0 0 0
Lizard's 100 1 1 13 9 4 115 mana 14 20 lcha 0 0 0
Snake's 100 1 1 19 14 4 115 mana 21 26 lcha 0 0 0
Snake's 100 1 1 25 18 4 115 mana 27 33 lcha 0 0 0
Snake's 100 1 1 31 23 4 115 mana 34 39 lcha 0 0 0
Serpent's 100 1 1 37 29 4 115 mana 40 46 lcha 0 0 0
Serpent's 100 1 1 43 35 4 115 mana 47 52 lcha 0 0 0
Serpent's 100 1 1 49 41 4 115 mana 53 59 lcha 0 0 0
Lizard's 100 1 1 1 1 4 115 mana 2 4 mcha 0 0 0
Lizard's 100 1 1 9 6 4 115 mana 5 7 mcha 0 0 0
Lizard's 100 1 1 17 12 4 115 mana 8 12 mcha 0 0 0
Snake's 100 1 1 25 18 4 115 mana 13 18 mcha 0 0 0
Snake's 100 1 1 33 25 4 115 mana 19 23 mcha 0 0 0
Serpent's 100 1 1 41 33 4 115 mana 24 29 mcha 0 0 0
Serpent's 100 1 1 49 41 4 115 mana 30 34 mcha 0 0 0
Lizard's 100 1 1 16 12 4 115 mana 1 2 scha 0 0 0
Lizard's 100 1 1 16 12 4 115 mana 3 7 scha 0 0 0
Snake's 100 1 1 32 24 4 115 mana 8 12 scha 0 0 0
Serpent's 100 1 48 40 4 115 mana 13 17 scha 0 0 0
Lizard's 1 1 1 3 2 4 115 mana 1 5 armo ring amul rod orb boot glov 0 0 0
Snake's 1 1 1 6 4 4 115 mana 5 10 shld rod belt ring amul circ 0 0 0
Serpent's 1 1 1 14 10 3 115 mana 11 20 shld rod belt ring amul circ 0 0 0
Serpent's 1 1 1 37 27 2 115 mana 11 20 tors boot glov weap orb rod 0 0 0
Drake's 1 1 1 20 15 2 115 mana 21 30 1 cblu rod ring amul orb circ 0 0 0
Dragon's 1 1 1 24 18 2 115 mana 31 40 1 cblu rod ring amul orb circ 0 0 0
Dragon's 1 1 1 52 39 2 115 mana 31 40 1 cblu tors boot glov 0 0 0
Wyrm's 1 1 1 30 22 2 115 mana 41 60 1 cblu rod ring amul orb circ 0 0 0
Great Wyrm's 100 1 37 29 2 115 mana 61 90 1 cblu rod ring amul orb circ 0 0 0
Bahamut's 100 1 45 37 2 115 mana 91 120 1 cblu rod ring amul orb circ 0 0 0
Zircon 100 1 1 3 2 2 115 mana 4 6 1 cblu jewl 0 0 0
Jacinth 100 1 1 17 12 2 115 mana 7 12 1 cblu jewl 0 0 0
Turquoise 100 1 29 21 2 115 mana 13 20 1 cblu jewl
Shimmering 100 1 8 13 6 1 116 res-all 3 6 1 lpur lcha 0 1280 500
Shimmering 100 1 14 34 10 1 116 res-all 8 13 1 lpur lcha 0 1280 1500
Shimmering 100 1 35 27 1 116 res-all 14 20 1 lpur lcha 0 1280 5000
Shimmering 100 1 17 33 12 1 116 res-all 3 6 1 lpur mcha 0 1280 1500
Shimmering 100 1 34 26 1 116 res-all 7 13 1 lpur mcha 0 1280 5000
Shimmering 100 1 33 25 1 116 res-all 3 6 1 lpur scha 0 1280 10000
Shimmering 100 1 1 6 4 4 116 res-all 3 7 1 lpur shld 0 1280 500
Rainbow 100 1 1 18 13 4 116 res-all 8 11 1 lpur shld 0 1280 2000
Scintillating 100 1 1 28 21 4 116 res-all 12 15 1 lpur shld 0 1280 4000
Prismatic 1 1 1 39 31 4 116 res-all 16 20 1 lpur shld 0 1280 8000
Chromatic 100 1 50 42 4 116 res-all 21 30 1 lpur shld 0 1280 16000
Shimmering 100 1 1 8 6 4 116 res-all 3 7 1 lpur amul circ 0 1280 3000
Rainbow 100 1 1 21 15 4 116 res-all 8 11 1 lpur amul circ 0 1280 6000
Scintillating 100 1 1 34 25 4 116 res-all 12 15 1 lpur amul circ 0 1280 12000
Prismatic 1 1 1 42 31 3 116 res-all 16 20 1 lpur amul circ 0 1280 24000
Chromatic 100 1 55 41 2 116 res-all 21 25 1 lpur amul circ 0 1280 32000
Shimmering 100 1 1 45 37 1 116 res-all 3 7 1 lpur ring 0 1280 4000
Rainbow 100 1 1 56 48 1 116 res-all 8 11 1 lpur ring 0 1280 8000
Scintillating 100 1 67 59 1 116 res-all 12 15 1 lpur ring 0 1280 16000
Shimmering 100 1 1 16 12 1 116 res-all 2 3 1 lpur jewl 0 1280 3000
Scintillating 100 1 34 26 1 116 res-all 4 5 1 lpur jewl 0 1280 8000
Azure 100 1 1 1 1 2 117 res-cold 7 15 lcha 0 0 0
Lapis 100 1 1 10 7 2 117 res-cold 16 22 lcha 0 0 0
Cobalt 100 1 1 20 15 2 117 res-cold 23 29 1 lblu lcha 0 0 0
Sapphire 100 1 30 22 2 117 res-cold 30 36 1 lblu lcha 0 0 0
Azure 100 1 1 1 1 2 117 res-cold 5 10 mcha 0 0 0
Lapis 100 1 1 16 12 2 117 res-cold 11 15 mcha 0 0 0
Cobalt 100 1 1 25 18 2 117 res-cold 16 19 1 lblu mcha 0 0 0
Sapphire 100 1 35 27 2 117 res-cold 20 24 1 lblu mcha 0 0 0
Azure 100 1 1 1 1 2 117 res-cold 3 5 scha 0 0 0
Lapis 100 1 1 14 10 2 117 res-cold 6 7 scha 0 0 0
Cobalt 100 1 1 27 20 2 117 res-cold 8 9 1 lblu scha 0 0 0
Sapphire 100 1 40 32 2 117 res-cold 10 12 1 lblu scha 0 0 0
Azure 1 1 1 5 3 3 117 res-cold 5 10 armo weap ring amul orb circ 0 0 0
Lapis 1 1 1 12 9 3 117 res-cold 11 20 armo ring amul orb circ 0 0 0
Lapis 1 1 1 35 26 1 117 res-cold 11 20 weap 0 0 0
Cobalt 1 1 1 18 13 3 117 res-cold 21 30 armo ring amul orb circ 0 0 0
Cobalt 1 1 1 55 41 1 117 res-cold 21 30 weap 0 0 0
Sapphire 1 1 1 25 18 3 117 res-cold 31 40 1 lblu rod boot amul orb circ 0 0 0
Lapis Lazuli 100 1 1 2 1 3 117 res-cold 5 15 1 lblu jewl 0 0 0
Sapphire 100 1 1 19 14 3 117 res-cold 16 30 1 lblu jewl 0 0 0
Crimson 100 1 1 1 1 2 118 res-fire 7 15 lcha 0 0 0
Russet 100 1 1 10 7 2 118 res-fire 16 22 lcha 0 0 0
Garnet 100 1 1 20 15 2 118 res-fire 23 29 1 lred lcha 0 0 0
Ruby 100 1 30 22 2 118 res-fire 30 36 1 lred lcha 0 0 0
Crimson 100 1 1 1 1 2 118 res-fire 5 10 mcha 0 0 0
Russet 100 1 1 16 12 2 118 res-fire 11 15 mcha 0 0 0
Garnet 100 1 1 25 18 2 118 res-fire 16 19 1 lred mcha 0 0 0
Ruby 100 1 35 27 2 118 res-fire 20 24 1 lred mcha 0 0 0
Russet 100 1 1 1 1 2 118 res-fire 3 5 scha 0 0 0
Garnet 100 1 1 14 10 2 118 res-fire 6 7 1 lred scha 0 0 0
Ruby 100 1 27 20 2 118 res-fire 8 9 1 lred scha 0 0 0
Crimson 100 1 1 40 32 3 118 res-fire 10 12 scha 0 0 0
Russet 1 1 1 12 9 3 118 res-fire 11 20 armo ring amul orb circ 0 0 0
Russet 1 1 1 35 26 1 118 res-fire 11 20 weap 0 0 0
Garnet 1 1 1 18 13 3 118 res-fire 21 30 armo ring amul orb circ 0 0 0
Garnet 1 1 1 55 41 1 118 res-fire 21 30 weap 0 0 0
Ruby 1 1 1 25 18 3 118 res-fire 31 40 1 lred rod boot amul orb circ 0 0 0
Garnet 100 1 1 2 1 3 117 res-fire 5 15 1 lred jewl 0 0 0
Ruby 100 1 1 18 13 3 117 res-fire 16 30 1 lred jewl 0 0 0
Tangerine 100 1 1 1 1 2 119 res-ltng 7 15 lcha 0 0 0
Ocher 100 1 1 10 7 2 119 res-ltng 16 22 lcha 0 0 0
Coral 100 1 1 20 15 2 119 res-ltng 23 29 1 lyel lcha 0 0 0
Amber 100 1 30 22 2 119 res-ltng 30 36 1 lyel lcha 0 0 0
Tangerine 100 1 1 1 1 2 119 res-ltng 5 10 mcha 0 0 0
Ocher 100 1 1 16 12 2 119 res-ltng 11 15 mcha 0 0 0
Coral 100 1 1 25 18 2 119 res-ltng 16 19 1 lyel mcha 0 0 0
Amber 100 1 35 27 2 119 res-ltng 20 24 1 lyel mcha 0 0 0
Tangerine 100 1 1 1 1 2 119 res-ltng 3 5 scha 0 0 0
Ocher 100 1 1 14 10 2 119 res-ltng 6 7 scha 0 0 0
Coral 100 1 1 27 20 2 119 res-ltng 8 9 1 lyel scha 0 0 0
Amber 100 1 40 32 2 119 res-ltng 10 12 1 lyel scha 0 0 0
Tangerine 1 1 1 5 3 3 119 res-ltng 5 10 armo weap ring amul orb circ 0 0 0
Ocher 1 1 1 12 9 3 119 res-ltng 11 20 armo ring amul orb circ 0 0 0
Ocher 1 1 1 35 26 1 119 res-ltng 11 20 weap 0 0 0
Coral 1 1 1 18 13 3 119 res-ltng 21 30 armo ring amul orb circ 0 0 0
Coral 1 1 1 55 41 1 119 res-ltng 21 30 weap 0 0 0
Amber 1 1 1 25 18 3 119 res-ltng 31 40 1 lyel rod boot amul orb circ 0 0 0
Camphor 100 1 1 2 1 3 117 res-ltng 5 15 1 lyel jewl 0 0 0
Ambergris 100 1 1 19 14 3 117 res-ltng 16 30 1 lyel jewl 0 0 0
Beryl 100 1 1 1 1 2 120 res-pois 7 15 lcha 0 0 0
Viridian 100 1 1 10 7 2 120 res-pois 16 22 lcha 0 0 0
Jade 100 1 1 20 15 2 120 res-pois 23 29 1 cgrn lcha 0 0 0
Emerald 100 1 30 22 2 120 res-pois 30 36 1 cgrn lcha 0 0 0
Beryl 100 1 1 1 1 2 120 res-pois 5 10 mcha 0 0 0
Viridian 100 1 1 16 12 2 120 res-pois 11 15 mcha 0 0 0
Jade 100 1 1 25 18 2 120 res-pois 16 19 1 cgrn mcha 0 0 0
Emerald 100 1 35 27 2 120 res-pois 20 24 1 cgrn mcha 0 0 0
Beryl 100 1 1 1 1 2 120 res-pois 3 5 scha 0 0 0
Viridian 100 1 1 14 10 2 120 res-pois 6 7 scha 0 0 0
Jade 100 1 1 27 20 2 120 res-pois 8 9 1 cgrn scha 0 0 0
Emerald 100 1 40 32 2 120 res-pois 10 12 1 cgrn scha 0 0 0
Beryl 1 1 1 5 3 3 120 res-pois 5 10 armo weap ring amul orb circ 0 0 0
Viridian 1 1 1 12 9 3 120 res-pois 11 20 armo ring amul orb circ 0 0 0
Viridian 1 1 1 35 26 1 120 res-pois 11 20 weap 0 0 0
Jade 1 1 1 18 13 3 120 res-pois 21 30 armo ring amul orb circ 0 0 0
Jade 1 1 1 55 41 1 120 res-pois 21 30 weap 0 0 0
Emerald 1 1 1 25 18 3 120 res-pois 31 40 1 cgrn rod boot amul orb circ 0 0 0
Beryl 100 1 1 2 1 3 117 res-pois 5 15 1 cgrn jewl 0 0 0
Jade 100 1 1 19 14 3 117 res-pois 16 30 1 cgrn jewl 0 0 0
Triumphant 1 1 1 3 2 4 121 mana-kill 1 1 weap ring circ 0 0 0
Victorious 100 1 1 17 12 4 121 mana-kill 2 5 weap circ 0 0 0
Aureolin 100 1 1 22 16 4 121 mana-kill 1 3 jewl 0 0 0
Mechanist's 100 1 1 10 7 1 122 sock 1 weap shld helm tors circ thro 0 0 0
Artificer's 100 1 33 25 1 122 sock 3 weap shld helm tors thro 0 0 0
Jeweler's 100 1 55 47 1 122 sock 4 weap shld helm tors thro 0 0 0
Assamic 100 1 1 3 1 1 123 att-demon 25 50 dmg-demon 10 25 weap circ 0 0 0
Arcadian 100 1 1 15 11 1 123 att-demon 51 100 dmg-demon 26 50 weap circ 0 0 0
Unearthly 100 1 1 25 18 1 123 att-demon 101 150 dmg-demon 51 100 weap 0 0 0
Astral 100 1 1 35 26 1 123 att-demon 151 200 dmg-demon 101 150 weap 0 0 0
Elysian 100 1 1 45 33 1 123 att-demon 201 300 dmg-demon 151 200 1 dgld weap 0 0 0
Celestial 100 1 55 41 1 123 att-demon 301 400 dmg-demon 201 300 1 dgld weap 0 0 0
Diamond 100 1 1 26 19 1 123 att-demon 25 50 dmg-demon 25 40 jewl 0 0 0
Fletcher's 100 1 50 42 ama 1 125 skilltab 0 1 1 lcha 0 0 0
Acrobat's 100 1 50 42 ama 1 125 skilltab 1 1 1 lcha 0 0 0
Harpoonist's 100 1 50 42 ama 1 125 skilltab 2 1 1 lcha 0 0 0
Fletcher's 100 1 1 20 15 ama 1 125 skilltab 0 1 1 miss glov 0 0 0
Bowyer's 100 1 1 40 30 ama 1 125 skilltab 0 2 2 1 lgld miss glov 0 0 0
Archer's 100 1 60 45 ama 1 125 skilltab 0 3 3 1 lgld miss glov 0 0 0
Acrobat's 100 1 1 20 15 ama 1 125 skilltab 1 1 1 glov amul circ 0 0 0
Gymnast's 100 1 1 40 30 ama 1 125 skilltab 1 2 2 1 lgld glov amul circ 0 0 0
Athlete's 100 1 60 45 ama 1 125 skilltab 1 3 3 1 lgld glov amul circ 0 0 0
Harpoonist's 100 1 1 20 15 ama 1 125 skilltab 2 1 1 spea glov 0 0 0
Spearmaiden's 100 1 1 40 30 ama 1 125 skilltab 2 2 2 1 lgld spea glov 0 0 0
Lancer's 100 1 60 45 ama 1 125 skilltab 2 3 3 1 lgld spea glov 0 0 0
Burning 100 1 1 50 42 sor 1 125 skilltab 3 1 1 lcha 0 0 0
Sparking 100 1 1 50 42 sor 1 125 skilltab 4 1 1 lcha 0 0 0
Chilling 100 1 1 50 42 sor 1 125 skilltab 5 1 1 lcha 0 0 0
Burning 100 1 1 20 15 sor 1 125 skilltab 3 1 1 staff orb amul circ 0 0 0
Blazing 100 1 1 40 30 sor 1 125 skilltab 3 2 2 1 lgld staff orb amul circ 0 0 0
Volcanic 100 1 60 45 sor 1 125 skilltab 3 3 3 1 lgld staff orb amul circ 0 0 0
Sparking 100 1 1 20 15 sor 1 125 skilltab 4 1 1 staff orb amul circ 0 0 0
Charged 100 1 1 40 30 sor 1 125 skilltab 4 2 2 1 lgld staff orb amul circ 0 0 0
Powered 100 1 60 45 sor 1 125 skilltab 4 3 3 1 lgld staff orb amul circ 0 0 0
Chilling 100 1 1 20 15 sor 1 125 skilltab 5 1 1 staff orb amul circ 0 0 0
Freezing 100 1 1 40 30 sor 1 125 skilltab 5 2 2 1 lgld staff orb amul circ 0 0 0
Glacial 100 1 60 45 sor 1 125 skilltab 5 3 3 1 lgld staff orb amul circ 0 0 0
Hexing 100 1 1 50 42 nec 1 125 skilltab 6 1 1 lcha 0 0 0
Fungal 100 1 1 50 42 nec 1 125 skilltab 7 1 1 lcha 0 0 0
Graverobber's 100 1 1 50 42 nec 1 125 skilltab 8 1 1 lcha 0 0 0
Hexing 100 1 1 20 15 nec 1 125 skilltab 6 1 1 wand head amul circ 0 0 0
Blighting 100 1 1 40 30 nec 1 125 skilltab 6 2 2 1 lgld wand head amul circ 0 0 0
Accursed 100 1 60 45 nec 1 125 skilltab 6 3 3 1 lgld wand head amul circ 0 0 0
Fungal 100 1 1 20 15 nec 1 125 skilltab 7 1 1 wand head amul knif circ tkni 0 0 0
Noxious 100 1 1 40 30 nec 1 125 skilltab 7 2 2 1 lgld wand head amul knif circ tkni 0 0 0
Venomous 100 1 60 45 nec 1 125 skilltab 7 3 3 1 lgld wand head amul knif circ tkni 0 0 0
Graverobber's 100 1 1 20 15 nec 1 125 skilltab 8 1 1 wand head amul circ 0 0 0
Vodoun 100 1 1 40 30 nec 1 125 skilltab 8 2 2 1 lgld wand head amul circ 0 0 0
Golemlord's 100 1 60 45 nec 1 125 skilltab 8 3 3 1 lgld wand head amul circ 0 0 0
Lion Branded 100 1 1 50 42 pal 1 125 skilltab 9 1 1 lcha 0 0 0
Captain's 100 1 1 50 42 pal 1 125 skilltab 10 1 1 lcha 0 0 0
Preserver's 100 1 1 50 42 pal 1 125 skilltab 11 1 1 lcha 0 0 0
Lion Branded 100 1 1 20 15 pal 1 125 skilltab 9 1 1 scep swor mace shld ashd amul circ 0 0 0
Hawk Branded 100 1 1 40 30 pal 1 125 skilltab 9 2 2 1 lgld scep swor mace shld ashd amul circ 0 0 0
Rose Branded 100 1 60 45 pal 1 125 skilltab 9 3 3 1 lgld scep swor mace shld ashd amul circ 0 0 0
Captain's 100 1 1 20 15 pal 1 125 skilltab 10 1 1 scep swor mace shld ashd amul circ 0 0 0
Commander's 100 1 1 40 30 pal 1 125 skilltab 10 2 2 1 lgld scep swor mace shld ashd amul circ 0 0 0
Marshal's 100 1 60 45 pal 1 125 skilltab 10 3 3 1 lgld scep swor mace shld ashd amul circ 0 0 0
Preserver's 100 1 1 20 15 pal 1 125 skilltab 11 1 1 shld ashd amul circ 0 0 0
Warder's 100 1 1 40 30 pal 1 125 skilltab 11 2 2 1 lgld shld ashd amul circ 0 0 0
Guardian's 100 1 60 45 pal 1 125 skilltab 11 3 3 1 lgld shld ashd amul circ 0 0 0
Sounding 100 1 1 50 42 bar 1 125 skilltab 12 1 1 lcha 0 0 0
Fanatic 100 1 1 50 42 bar 1 125 skilltab 13 1 1 lcha 0 0 0
Expert's 100 1 1 50 42 bar 1 125 skilltab 14 1 1 lcha 0 0 0
Sounding 100 1 1 20 15 bar 1 125 skilltab 12 1 1 phlm weap helm miss rod 0 0 0
Resonant 100 1 1 40 30 bar 1 125 skilltab 12 2 2 1 lgld phlm weap helm miss rod 0 0 0
Echoing 100 1 60 45 bar 1 125 skilltab 12 3 3 1 lgld phlm weap helm miss rod 0 0 0
Fanatic 100 1 1 20 15 bar 1 125 skilltab 13 1 1 phlm weap amul miss rod 0 0 0
Raging 100 1 1 40 30 bar 1 125 skilltab 13 2 2 1 lgld phlm weap amul miss rod 0 0 0
Furious 100 1 60 45 bar 1 125 skilltab 13 3 3 1 lgld phlm weap amul miss rod 0 0 0
Expert's 100 1 1 20 15 bar 1 125 skilltab 14 1 1 phlm weap amul miss rod 0 0 0
Veteran's 100 1 1 40 30 bar 1 125 skilltab 14 2 2 1 lgld phlm weap amul miss rod 0 0 0
Master's 100 1 60 45 bar 1 125 skilltab 14 3 3 1 lgld phlm weap amul miss rod 0 0 0
Trainer's 100 1 1 50 42 dru 1 125 skilltab 15 1 1 lcha 0 0 0
Spiritual 100 1 1 50 42 dru 1 125 skilltab 16 1 1 lcha 0 0 0
Nature's 100 1 1 50 42 dru 1 125 skilltab 17 1 1 lcha 0 0 0
Trainer's 100 1 1 20 15 dru 1 125 skilltab 15 1 1 club pelt amul circ 0 0 0
Caretaker's 100 1 1 40 30 dru 1 125 skilltab 15 2 2 1 lgld club pelt amul circ 0 0 0
Keeper's 100 1 60 45 dru 1 125 skilltab 15 3 3 1 lgld club pelt amul circ 0 0 0
Spiritual 100 1 1 20 15 dru 1 125 skilltab 16 1 1 club pelt amul circ 0 0 0
Feral 100 1 1 40 30 dru 1 125 skilltab 16 2 2 1 lgld club pelt amul circ 0 0 0
Communal 100 1 60 45 dru 1 125 skilltab 16 3 3 1 lgld club pelt amul circ 0 0 0
Nature's 100 1 1 20 15 dru 1 125 skilltab 17 1 1 club pelt amul circ 0 0 0
Terra's 100 1 1 40 30 dru 1 125 skilltab 17 2 2 1 lgld club pelt amul circ 0 0 0
Gaea's 100 1 60 45 dru 1 125 skilltab 17 3 3 1 lgld club pelt amul circ 0 0 0
Entrapping 100 1 1 50 42 ass 1 125 skilltab 18 1 1 lcha 0 0 0
Mentalist's 100 1 1 50 42 ass 1 125 skilltab 19 1 1 lcha 0 0 0
Shogukusha's 100 1 1 50 42 ass 1 125 skilltab 20 1 1 lcha 0 0 0
Entrapping 100 1 1 20 15 ass 1 125 skilltab 18 1 1 h2h amul circ 0 0 0
Trickster's 100 1 1 40 30 ass 1 125 skilltab 18 2 2 1 lgld h2h amul circ 0 0 0
Cunning 100 1 60 45 ass 1 125 skilltab 18 3 3 1 lgld h2h amul circ 0 0 0
Mentalist's 100 1 1 20 15 ass 1 125 skilltab 19 1 1 h2h amul helm circ 0 0 0
Psychic 100 1 1 40 30 ass 1 125 skilltab 19 2 2 1 lgld h2h amul helm circ 0 0 0
Shadow 100 1 60 45 ass 1 125 skilltab 19 3 3 1 lgld h2h amul helm circ 0 0 0
Shogukusha's 100 1 1 20 15 ass 1 125 skilltab 20 1 1 h2h amul glov circ 0 0 0
Sensei's 100 1 1 40 30 ass 1 125 skilltab 20 2 2 1 lgld h2h amul glov circ 0 0 0
Kenshi's 100 1 60 45 ass 1 125 skilltab 20 3 3 1 lgld h2h amul glov circ 0 0 0
Miocene 100 1 1 1 101 ac/lvl 6 1 whit tors 0 0 0
Miocene 100 1 1 1 1 101 ac/lvl 1 1 whit glov boot belt shld 0 0 0
Oligocene 100 1 10 7 1 101 ac/lvl 9 1 whit tors 0 0 0
Oligocene 100 1 10 7 1 101 ac/lvl 2 1 whit glov boot belt shld 0 0 0
Eocene 100 1 20 15 1 101 ac/lvl 18 1 whit tors 0 0 0
Eocene 100 1 20 15 1 101 ac/lvl 3 1 whit glov boot belt shld 0 0 0
Paleocene 100 1 1 30 22 1 101 ac/lvl 24 1 whit tors 0 0 0
Paleocene 100 1 1 30 22 1 101 ac/lvl 4 1 whit glov boot belt shld 0 0 0
Knave's 100 1 1 1 111 dmg/lvl 1 att/lvl 10 1 whit weap staff wand orb 0 0 0
Jack's 100 1 10 7 1 111 dmg/lvl 2 att/lvl 15 1 whit weap staff wand orb 0 0 0
Jester's 100 1 20 15 1 111 dmg/lvl 3 att/lvl 22 1 whit weap staff wand orb 0 0 0
Joker's 100 1 35 26 1 111 dmg/lvl 4 att/lvl 33 1 whit weap staff wand orb 0 0 0
Trump 100 1 1 50 37 1 111 dmg/lvl 4 att/lvl 33 1 whit weap staff wand orb 0 0 0
Loud 100 1 1 1 105 dmg/lvl 2 1 whit weap staff wand orb 0 0 0
Calling 100 1 10 7 1 105 dmg/lvl 3 1 whit weap staff wand orb 0 0 0
Yelling 100 1 20 15 1 105 dmg/lvl 4 1 whit weap staff wand orb 0 0 0
Shouting 100 1 35 26 1 105 dmg/lvl 5 1 whit weap staff wand orb 0 0 0
Screaming 100 1 1 50 37 1 105 dmg/lvl 6 1 whit weap staff wand orb 0 0 0
Paradox 100 1 25 18 1 101 ac%/lvl 12 1 whit tors 0 0 0
Paradox 100 1 25 18 1 105 dmg%/lvl 12 1 whit weap staff wand orb 0 0 0
Robineye 100 1 1 1 111 att/lvl 4 1 whit weap staff wand orb 0 0 0
Sparroweye 100 10 7 1 111 att/lvl 6 1 whit weap staff wand orb 0 0 0
Falconeye 100 20 15 1 111 att/lvl 8 1 whit weap staff wand orb 0 0 0
Hawkeye 100 1 35 26 1 111 att/lvl 12 1 whit weap staff wand orb 0 0 0
Eagleeye 100 50 37 1 111 att/lvl 16 1 whit weap staff wand orb 0 0 0
Visionary 100 1 1 25 18 1 111 att%/lvl 2 1 whit helm miss 0 0 0
Mnemonic 100 1 1 25 18 1 115 mana/lvl 4 1 cblu helm 0 0 0
Snowflake 100 1 25 18 1 137 cold-len 25 25 cold-min 6 9 cold-max 19 30 1 whit weap circ 0 0 0
Shivering 100 1 35 26 1 137 cold-len 50 50 cold-min 10 15 cold-max 31 45 1 whit weap 0 0 0
Boreal 100 1 50 40 1 137 cold-len 75 75 cold-min 16 23 cold-max 46 90 1 whit weap 0 0 0
Hibernal 100 1 70 60 1 137 cold-len 100 100 cold-min 24 45 cold-max 91 140 1 whit weap 0 0 0
Ember 100 1 25 18 1 138 fire-min 16 25 fire-max 31 60 1 whit weap circ 0 0 0
Smoldering 100 1 35 26 1 138 fire-min 26 50 fire-max 61 90 1 whit weap 0 0 0
Smoking 100 1 47 37 1 138 fire-min 51 80 fire-max 91 130 1 whit weap 0 0 0
Flaming 100 1 61 51 1 138 fire-min 81 120 fire-max 131 180 1 whit weap 0 0 0
Scorching 100 1 77 67 1 138 fire-min 121 170 fire-max 181 240 1 whit weap 0 0 0
Static 100 1 25 18 1 139 ltng-min 1 1 ltng-max 49 120 1 whit weap circ 0 0 0
Glowing 100 1 34 25 1 139 ltng-min 1 1 ltng-max 121 180 1 whit weap 0 0 0
Buzzing 100 1 46 36 1 139 ltng-min 1 1 ltng-max 181 260 1 whit weap 0 0 0
Arcing 100 1 60 50 1 139 ltng-min 1 1 ltng-max 261 360 1 whit weap 0 0 0
Shocking 100 1 76 66 1 139 ltng-min 1 1 ltng-max 361 480 1 whit weap 0 0 0
Septic 100 1 1 1 1 140 pois-len 50 50 pois-min 40 40 pois-max 40 40 1 whit weap circ 0 0 0
Envenomed 100 1 10 7 1 140 pois-len 50 50 pois-min 75 75 pois-max 75 75 1 whit weap 0 0 0
Corosive 100 1 20 15 1 140 pois-len 50 50 pois-min 150 150 pois-max 150 150 1 whit weap 0 0 0
Toxic 100 1 35 26 1 140 pois-len 50 50 pois-min 200 200 pois-max 200 200 1 whit weap 0 0 0
Pestilent 100 1 50 37 1 140 pois-len 50 50 pois-min 350 350 pois-max 350 350 1 whit weap 0 0 0
Maiden's 1 1 1 36 27 ama 3 125 ama 1 1 amul circ 0 0 0
Valkyrie's 1 1 90 67 ama 3 125 ama 2 2 1 cgrn amul circ 0 0 0
Maiden's 1 1 1 30 22 ama 3 125 ama 1 1 miss spea 0 0 0
Valkyrie's 1 1 50 42 ama 3 125 ama 2 2 1 cgrn miss spea 0 0 0
Monk's 1 1 1 36 27 pal 3 125 pal 1 1 amul circ 0 0 0
Priest's 1 1 90 67 pal 3 125 pal 2 2 1 cgrn amul circ 0 0 0
Monk's 1 1 1 30 22 pal 3 125 pal 1 1 scep ashd 0 0 0
Priest's 1 1 50 42 pal 3 125 pal 2 2 1 cgrn scep ashd 0 0 0
Monk's 1 1 1 35 27 pal 2 125 pal 1 1 swor mace hamm shld 0 0 0
Priest's 1 1 65 58 pal 2 125 pal 2 2 1 cgrn swor mace hamm shld 0 0 0
Summoner's 1 1 1 36 27 nec 3 125 nec 1 1 amul circ 0 0 0
Necromancer's 1 1 90 67 nec 3 125 nec 2 2 1 cgrn amul circ 0 0 0
Summoner's 1 1 1 30 22 nec 3 125 nec 1 1 wand knif head 0 0 0
Necromancer's 1 1 50 42 nec 3 125 nec 2 2 1 cgrn wand knif head 0 0 0
Angel's 1 1 1 36 27 sor 3 125 sor 1 1 amul circ 0 0 0
Arch-Angel's 1 1 90 67 sor 3 125 sor 2 2 1 cgrn amul circ 0 0 0
Angel's 1 1 1 30 22 sor 3 125 sor 1 1 staf orb 0 0 0
Arch-Angel's 1 1 50 42 sor 3 125 sor 2 2 1 cgrn staf orb 0 0 0
Slayer's 1 1 1 36 27 bar 3 125 bar 1 1 amul circ 0 0 0
Berserker's 1 1 90 67 bar 3 125 bar 2 2 1 cgrn amul circ 0 0 0
Slayer's 1 1 1 30 22 bar 3 125 bar 1 1 tkni axe spea club swor hamm mace jave knif 0 0 0
Berserker's 1 1 50 42 bar 3 125 bar 2 2 1 cgrn tkni axe spea club swor hamm mace jave knif 0 0 0
Slayer's 100 1 1 30 22 bar 3 125 bar 1 1 phlm 0 0 0
Berserker's 100 1 50 42 bar 3 125 bar 2 2 1 cgrn phlm 0 0 0
Shaman's 100 1 1 36 27 dru 3 125 dru 1 1 amul circ 0 0 0
Hierophant's 100 1 90 67 dru 3 125 dru 2 2 1 cgrn amul circ 0 0 0
Shaman's 100 1 1 30 22 dru 3 125 dru 1 1 club pelt 0 0 0
Hierophant's 100 1 50 42 dru 3 125 dru 2 2 1 cgrn club pelt 0 0 0
Magekiller's 100 1 1 36 27 ass 3 125 ass 1 1 amul circ 0 0 0
Witch-hunter's 100 1 90 67 ass 3 125 ass 2 2 1 cgrn amul circ 0 0 0
Magekiller's 100 1 1 30 22 ass 3 125 ass 1 1 h2h 0 0 0
Witch-hunter's 100 1 50 42 ass 3 125 ass 2 2 1 cgrn h2h 0 0 0
Compact 100 1 1 2 1 1 141 stack 10 20 thro 0 0 0
Thin 100 1 1 17 12 1 141 stack 21 40 thro 0 0 0
Dense 100 1 1 38 30 1 141 stack 41 60 thro 0 0 0
Consecrated 100 1 1 1 1 1 142 att-undead 25 75 dmg-undead 25 75 weap 0 0 0
Pure 100 1 1 15 11 1 142 att-undead 76 175 dmg-undead 76 125 weap 0 0 0
Sacred 100 1 1 25 18 1 142 att-undead 175 250 dmg-undead 126 200 weap 0 0 0
Hallowed 100 1 1 35 27 1 142 att-undead 251 325 dmg-undead 201 275 weap 0 0 0
Divine 100 1 45 37 1 142 att-undead 326 450 dmg-undead 276 350 weap 0 0 0
Pearl 100 1 1 18 13 1 142 att-undead 25 50 dmg-undead 25 50 jewl 0 0 0

677
txt/MagicSuffix.txt Normal file
View File

@ -0,0 +1,677 @@
Name version spawnable rare level maxlevel levelreq classspecific class classlevelreq frequency group mod1code mod1param mod1min mod1max mod2code mod2param mod2min mod2max mod3code mod3param mod3min mod3max transform transformcolor itype1 itype2 itype3 itype4 itype5 itype6 itype7 etype1 etype2 etype3 divide multiply add
of Health 0 1 1 7 5 1 red-dmg 1 1 tors helm shld ring amul 0 0 0
of Protection 0 1 1 18 13 1 red-dmg 2 2 ring amul 0 0 0
of Absorption 0 1 1 26 19 1 red-dmg 3 3 amul 0 0 0
of Life 0 1 1 35 26 1 red-dmg 4 4 1 dblu amul 0 0 0
1 0 0 0
of Warding 0 1 1 7 5 2 red-mag 1 1 tors helm shld ring amul 0 0 0
of the Sentinel 0 1 1 18 13 2 red-mag 2 2 ring amul 0 0 0
of Guarding 0 1 1 26 19 2 red-mag 3 3 amul 0 0 0
of Negation 0 1 1 35 26 2 red-mag 4 4 amul 0 0 0
0 0 0
of Piercing 0 1 1 25 18 3 ignore-ac 1 1 rod 0 0 0
of Bashing 0 1 1 16 12 4 dmg-ac -25 -40 mele wand staf 0 0 0
of Puncturing 0 1 1 6 4 4 dmg-ac -10 -20 mele wand staf 0 0 0
of Thorns 0 1 1 14 10 5 thorns 1 3 tors helm shld belt 0 0 0
of Spikes 0 1 1 21 15 5 thorns 2 6 1 oran tors helm shld belt 0 0 0
of Readiness 0 1 1 1 1 6 swing1 10 10 weap glov 0 0 0
of Alacrity 0 1 1 8 6 6 swing2 20 20 weap 0 0 0
of Swiftness 0 1 1 19 14 6 swing2 30 30 mele wand staf 0 0 0
of Quickness 0 1 1 25 18 6 swing3 40 40 1 dyel mele wand staf 0 0 0
of Blocking 0 1 1 1 1 7 block 10 10 shld 0 0 0
of Deflecting 0 1 1 11 8 7 block 20 20 shld 0 0 0
of the Apprentice 0 1 1 5 3 8 cast1 10 10 rod ring amul 0 0 0
of the Magus 0 1 1 17 12 8 cast3 20 20 rod 0 0 0
of Frost 0 1 1 4 3 9 cold-min 1 1 cold-max 1 4 cold-len 125 125 weap 0 0 0
of the Glacier 0 1 1 18 13 9 cold-min 4 4 cold-max 4 12 cold-len 150 150 mele 0 0 0
of Frost 0 1 1 55 41 9 cold-min 1 1 cold-max 1 4 cold-len 125 125 belt amul 0 0 0
of Warmth 0 1 1 10 7 10 half-freeze 1 1 shld boot glov ring amul 0 0 0
of Flame 0 1 1 4 3 11 fire-min 1 1 fire-max 2 6 weap 0 0 0
of Fire 0 1 1 15 11 11 fire-min 2 2 fire-max 6 11 weap 0 0 0
of Burning 0 1 1 25 18 11 fire-min 10 10 fire-max 10 20 1 dred weap 0 0 0
of Flame 0 1 1 40 30 11 fire-min 1 1 fire-max 2 6 glov ring amul 0 0 0
of Shock 0 1 1 4 3 12 ltng-min 1 1 ltng-max 8 8 weap 0 0 0
of Lightning 0 1 1 15 11 12 ltng-min 1 1 ltng-max 16 16 weap 0 0 0
of Thunder 0 1 1 25 18 12 ltng-min 1 1 ltng-max 32 32 1 dyel weap 0 0 0
of Shock 0 1 1 50 37 12 ltng-min 1 1 ltng-max 8 8 boot ring amul weap miss rod 0 0 0
of Craftsmanship 0 1 1 1 1 13 dmg-max 1 2 weap ring amul 0 0 0
of Quality 0 1 1 4 3 13 dmg-max 2 2 weap 0 0 0
of Maiming 0 1 1 7 5 13 dmg-max 3 4 weap 0 0 0
of Slaying 0 1 1 11 8 13 dmg-max 5 7 weap 0 0 0
of Gore 0 1 1 14 10 13 dmg-max 8 10 weap 0 0 0
of Carnage 0 1 1 19 14 13 dmg-max 11 14 1 blac weap wand staf 0 0 0
of Slaughter 0 1 1 25 18 13 dmg-max 15 20 1 blac weap wand staf 0 0 0
of Maiming 0 1 1 42 31 13 dmg-max 3 4 shld ring amul 0 0 0
of Worth 0 1 1 2 1 14 dmg-min 1 1 weap rod 0 0 0
of Measure 0 1 1 6 4 14 dmg-min 2 2 weap 0 0 0
of Excellence 0 1 1 12 9 14 dmg-min 3 3 weap ring amul 0 0 0
of Performance 0 1 1 18 13 14 dmg-min 4 5 1 blac weap 0 0 0
of Measure 0 1 1 37 27 14 dmg-min 2 2 tors helm ring amul 0 0 0
of Blight 0 1 1 5 3 15 pois-min 8 8 pois-max 24 24 pois-len 75 75 weap scep 0 0 0
of Venom 0 1 1 15 11 15 pois-min 16 16 pois-max 48 48 pois-len 75 75 weap scep 0 0 0
of Pestilence 0 1 1 25 18 15 pois-min 32 32 pois-max 72 72 pois-len 100 100 1 dgrn weap scep 0 0 0
of Blight 0 1 1 45 33 15 pois-min 8 8 pois-max 24 24 pois-len 75 75 ring amul 0 0 0
of Dexterity 0 1 1 4 3 16 dex 1 1 ring amul 0 0 0
of Dexterity 0 1 1 5 3 16 dex 1 3 scep miss boot glov ring amul 0 0 0
of Skill 0 1 1 10 7 16 dex 4 6 scep miss boot glov ring amul 0 0 0
of Skill 0 1 1 45 33 16 dex 4 6 armo boot glov 0 0 0
of Accuracy 0 1 1 18 13 16 dex 7 10 scep miss boot glov ring amul 0 0 0
of Precision 0 1 1 22 16 16 dex 11 15 scep miss amul 0 0 0
of Precision 0 1 1 60 45 16 dex 11 15 armo ring 0 0 0
of Perfection 0 1 1 30 22 16 dex 16 20 1 dgld miss glov amul 0 0 0
of Balance 0 1 1 5 3 17 balance1 10 10 armo glov 0 0 0
of Stability 0 1 1 9 6 17 balance3 20 20 1 dyel armo glov 0 0 0
0 0 0
of Regeneration 0 1 1 10 7 19 regen 3 3 scep belt ring amul 0 0 0
of Regeneration 0 1 1 40 30 19 regen 3 3 shld glov 0 0 0
of Regeneration 0 1 1 70 52 19 regen 3 3 tors helm weap boot scep 0 0 0
of Regrowth 0 1 1 17 12 19 regen 5 5 1 cred scep amul 0 0 0
of Regrowth 0 1 1 55 41 19 regen 5 5 1 cred belt ring 0 0 0
of Vileness 0 1 1 9 6 20 noheal 1 1 mele scep 0 0 0
0 0 0
of Greed 0 1 1 2 1 22 gold% 40 60 ring amul 0 0 0
of Wealth 0 1 1 17 12 22 gold% 80 120 1 lgld boot glov belt amul 0 0 0
of Chance 0 1 1 12 9 23 mag% 10 19 ring amul 0 0 0
of Fortune 0 1 1 16 12 23 mag% 20 35 1 lgld boot glov amul 0 0 0
of Energy 0 1 1 4 3 24 mana 1 1 ring amul 0 0 0
of Energy 0 1 1 5 3 24 mana 1 5 rod ring amul 0 0 0
of the Mind 0 1 1 10 7 24 mana 6 10 rod ring amul 0 0 0
of Brilliance 0 1 1 18 13 24 mana 11 15 rod ring amul 0 0 0
of Sorcery 0 1 1 22 16 24 mana 16 20 1 dgld rod amul 0 0 0
of Wizardry 0 1 1 30 22 24 mana 21 30 1 dgld rod ring amul 0 0 0
of the Bear 0 1 1 8 6 25 knock 1 1 mele 0 0 0
of Light 0 1 1 6 4 26 light 1 1 armo rod miss ring amul 0 0 0
of Radiance 0 1 1 15 11 26 light 3 3 rod miss ring amul 0 0 0
of the Sun 0 1 1 17 12 26 light 5 5 rod miss glov ring amul 0 0 0
of Life 0 1 1 23 17 27 hp 5 5 tors helm shld belt amul 0 0 0
of the Jackal 0 1 1 3 2 27 hp 1 5 armo rod ring amul 0 0 0
of the Fox 0 1 1 6 4 27 hp 5 10 armo rod ring amul 0 0 0
of the Wolf 0 1 1 14 10 27 hp 11 20 armo rod ring amul 0 0 0
of the Wolf 0 1 1 45 33 27 hp 11 20 weap rod 0 0 0
of the Tiger 0 1 1 20 15 27 hp 21 30 armo ring amul 0 0 0
of the Mammoth 0 1 1 24 18 27 hp 31 40 1 cred tors helm shld ring amul 0 0 0
of the Mammoth 0 1 1 60 45 27 hp 31 40 1 cred mele glov belt rod 0 0 0
of the Colosuss 0 1 1 30 22 27 hp 41 60 1 cred tors helm shld belt amul 0 0 0
of the Leech 0 1 1 6 4 28 lifesteal 4 7 weap ring amul 0 0 0
of the Locust 0 1 1 20 15 28 lifesteal 8 10 1 cred mele 0 0 0
of the Bat 0 1 1 6 4 29 manasteal 4 8 weap ring amul 0 0 0
of the Vampire 0 1 1 20 15 29 manasteal 9 12 1 cblu mele 0 0 0
of Defiance 0 1 1 25 18 30 res-pois-len 75 75 1 dred tors helm shld amul 0 0 0
of Amelioration 0 1 1 18 13 30 res-pois-len 50 50 tors helm shld amul 0 0 0
of Remedy 0 1 1 7 5 30 res-pois-len 25 25 armo ring amul 0 0 0
0 0 0
of Simplicity 0 1 1 25 18 32 ease -40 -40 tors helm weap shld rod 0 0 0
of Ease 0 1 1 15 11 32 ease -20 -20 tors helm weap shld rod 0 0 0
0 0 0
of Strength 0 1 1 5 3 34 str 1 3 belt ring amul 0 0 0
of Might 0 1 1 10 7 34 str 4 6 mele shld ring amul wand staf 0 0 0
of the Ox 0 1 1 18 13 34 str 7 10 mele belt ring amul wand staf 0 0 0
of the Ox 0 1 1 47 35 34 str 7 10 shld boot glov 0 0 0
of the Giant 0 1 1 22 16 34 str 11 15 1 dgld mele belt amul wand staf 0 0 0
of the Giant 0 1 1 62 46 34 str 11 15 1 dgld boot glov ring shld 0 0 0
of the Titan 0 1 1 30 22 34 str 16 20 1 dgld boot belt amul 0 0 0
of Pacing 0 1 1 2 1 35 move1 10 10 boot 0 0 0
of Haste 0 1 1 12 9 35 move2 20 20 boot 0 0 0
of Speed 0 1 1 22 16 35 move3 30 30 boot 0 0 0
Expansion
of Health 1 1 1 7 5 4 1 red-dmg 1 1 tors shld ring amul circ 0 0 0
of Protection 1 1 1 18 13 4 1 red-dmg 2 2 ring amul circ 0 0 0
of Absorption 1 1 1 26 19 4 1 red-dmg 3 3 amul circ 0 0 0
of Life 1 1 1 35 26 4 1 red-dmg 4 4 1 dblu amul circ 0 0 0
of Life Everlasting 100 1 45 37 4 1 red-dmg 10 25 amul circ 0 0 0
of Protection 1 1 1 24 18 4 1 red-dmg 2 2 tors shld circ 0 0 0
of Absorption 1 1 1 32 24 4 1 red-dmg 3 3 tors shld circ 0 0 0
of Life 1 1 1 41 33 4 1 red-dmg 4 7 tors shld circ 0 0 0
of Anima 100 1 51 43 4 1 red-dmg 8 15 tors shld circ 0 0 0
of Warding 1 1 1 7 5 4 2 red-mag 1 1 tors shld ring amul orb circ 0 0 0
of the Sentinel 1 1 1 18 12 4 2 red-mag 2 2 ring amul orb circ 0 0 0
of Guarding 1 1 1 26 19 4 2 red-mag 3 3 amul orb circ 0 0 0
of Negation 100 1 42 35 4 2 red-mag 4 6 amul orb circ 0 0 0
of the Sentinel 1 1 1 24 18 4 2 red-mag 2 2 tors shld circ 0 0 0
of Guarding 1 1 1 32 24 4 2 red-mag 3 3 tors shld circ 0 0 0
of Negation 100 1 41 33 4 2 red-mag 4 6 tors shld circ 0 0 0
of Coolness 100 1 11 8 1 3 abs-fire 2 2 tors shld boot circ 0 0 0
of Incombustibility 100 1 19 14 1 3 abs-fire 3 3 tors shld boot circ 0 0 0
of Amianthus 100 1 28 21 1 3 abs-fire 4 5 tors shld boot circ 0 0 0
of Fire Quenching 100 38 30 1 3 abs-fire 6 8 tors shld boot circ 0 0 0
of Coolness 100 1 13 9 1 3 abs-fire 2 2 ring amul orb circ 0 0 0
of Incombustibility 100 1 22 16 1 3 abs-fire 3 3 amul orb circ 0 0 0
of Amianthus 100 1 33 25 1 3 abs-fire 4 5 amul orb circ 0 0 0
of Fire Quenching 100 46 38 1 3 abs-fire 6 8 amul orb circ 0 0 0
of Faith 100 1 23 17 1 3 abs-fire 1 2 jewl 0 0 0
of Resistance 100 1 11 8 1 3 abs-ltng 2 2 tors shld boot circ 0 0 0
of Insulation 100 1 19 14 1 3 abs-ltng 3 3 tors shld boot circ 0 0 0
of Grounding 100 1 28 21 1 3 abs-ltng 4 5 tors shld boot circ 0 0 0
of the Dynamo 100 38 30 1 3 abs-ltng 6 8 tors shld boot circ 0 0 0
of Resistance 100 1 13 9 1 3 abs-ltng 2 2 ring amul orb circ 0 0 0
of Insulation 100 1 22 16 1 3 abs-ltng 3 3 amul orb circ 0 0 0
of Grounding 100 1 33 25 1 3 abs-ltng 4 5 amul orb circ 0 0 0
of the Dynamo 100 46 38 1 3 abs-ltng 6 8 amul orb circ 0 0 0
of Stoicism 100 1 22 16 1 3 abs-ltng 1 2 jewl 0 0 0
of Warming 100 1 11 8 1 3 abs-cold 2 2 tors shld boot circ 0 0 0
of Thawing 100 1 19 14 1 3 abs-cold 3 3 tors shld boot circ 0 0 0
of the Dunes 100 1 28 21 1 3 abs-cold 4 5 tors shld boot circ 0 0 0
of the Sirocco 100 38 30 1 3 abs-cold 6 8 tors shld boot circ 0 0 0
of Warming 100 1 13 9 1 3 abs-cold 2 2 ring amul orb circ 0 0 0
of Thawing 100 1 22 16 1 3 abs-cold 3 3 amul orb circ 0 0 0
of the Dunes 100 1 33 25 1 3 abs-cold 4 5 amul orb circ 0 0 0
of the Sirocco 100 46 38 1 3 abs-cold 6 8 amul orb circ 0 0 0
of Desire 100 1 23 17 1 3 abs-cold 1 2 jewl 0 0 0
of Piercing 1 1 1 25 18 2 4 ignore-ac 1 1 rod knif h2h 0 0 0
of Bashing 100 1 16 12 4 5 dmg-ac -25 -40 blun wand staf 0 0 0
of Puncturing 100 1 6 4 4 5 dmg-ac -10 -20 spea knif h2h 0 0 0
of Thorns 1 1 1 14 10 4 6 thorns 1 3 tors shld belt circ 0 0 0
of Spikes 1 1 1 21 15 4 6 thorns 4 6 1 oran tors shld belt circ 0 0 0
of Razors 100 1 1 34 26 4 6 thorns 7 9 1 oran tors shld circ 0 0 0
of Swords 100 1 47 39 4 6 thorns 10 20 1 oran tors shld circ 0 0 0
of Malice 100 1 1 37 29 4 6 thorns 1 3 jewl 0 0 0
of Readiness 1 1 1 5 3 4 7 swing1 10 10 weap orb 0 0 0
of Alacrity 1 1 1 25 17 4 7 swing2 20 20 weap orb 0 0 0
of Swiftness 1 1 1 34 26 4 7 swing2 30 30 mele wand staf orb 0 0 0
of Quickness 1 1 1 46 38 4 7 swing3 40 40 1 dyel mele wand staf orb 0 0 0
of Alacrity 100 1 1 43 35 4 7 swing2 20 20 1 dyel glov 0 0 0
of Fervor 100 1 39 31 4 7 swing1 15 15 jewl 0 0 0
of Blocking 1 1 1 1 1 4 8 block 10 10 shld 0 0 0
of Deflecting 1 1 1 11 8 4 8 block 20 20 shld 0 0 0
of the Apprentice 1 1 1 5 3 4 9 cast1 10 10 rod ring amul orb circ 0 0 0
of the Magus 1 1 1 29 21 4 9 cast3 20 20 rod orb circ scep 0 0 0
of Frost 1 1 1 4 3 2 10 cold-min 1 1 cold-max 1 2 cold-len 50 50 weap 0 0 0
of the Icicle 100 1 1 13 9 2 10 cold-min 1 1 cold-max 3 4 cold-len 75 75 weap 0 0 0
of the Glacier 1 1 1 27 20 2 10 cold-min 2 4 cold-max 4 10 cold-len 100 100 1 dblu mele 0 0 0
of Winter 100 1 1 30 22 2 10 cold-min 3 6 cold-max 11 25 cold-len 150 150 1 dblu mele 0 0 0
of Frost 1 1 1 55 41 2 10 cold-min 1 1 cold-max 3 6 cold-len 50 50 belt amul 0 0 0
of Frigidity 100 1 1 16 12 2 10 cold-min 1 1 cold-max 1 4 cold-len 50 50 1 dblu jewl 0 0 0
of Warmth 1 1 1 10 7 4 11 half-freeze 1 1 shld boot glov ring amul circ orb 0 0 0
of Flame 1 1 1 4 3 3 12 fire-min 1 1 fire-max 2 5 weap 0 0 0
of Fire 1 1 1 15 11 2 12 fire-min 1 4 fire-max 6 11 weap 0 0 0
of Burning 1 1 1 25 18 2 12 fire-min 5 9 fire-max 10 20 1 dred weap 0 0 0
of Incineration 100 1 1 32 24 2 12 fire-min 10 15 fire-max 21 35 1 dred weap 0 0 0
of Flame 100 1 1 40 30 2 12 fire-min 1 1 fire-max 2 6 glov ring amul 0 0 0
of Passion 100 1 1 15 11 2 12 fire-min 1 3 fire-max 3 8 1 dred jewl 0 0 0
of Shock 1 1 1 4 3 3 13 ltng-min 1 1 ltng-max 6 8 weap 0 0 0
of Lightning 1 1 1 15 11 2 13 ltng-min 1 1 ltng-max 9 16 weap 0 0 0
of Thunder 1 1 1 25 18 2 13 ltng-min 1 1 ltng-max 17 32 1 dyel weap 0 0 0
of Storms 100 1 1 34 26 2 13 ltng-min 1 6 ltng-max 33 48 1 dyel weap 0 0 0
of Shock 100 1 1 50 37 2 13 ltng-min 1 1 ltng-max 11 23 boot ring amul 0 0 0
of Ennui 100 1 1 15 11 2 13 ltng-min 1 1 ltng-max 4 10 1 dyel jewl 0 0 0
of Craftsmanship 1 1 1 1 1 4 14 dmg-max 1 1 weap ring amul orb 0 0 0
of Quality 1 1 1 4 3 4 14 dmg-max 2 2 weap orb 0 0 0
of Maiming 1 1 1 7 5 4 14 dmg-max 3 4 weap orb 0 0 0
of Slaying 1 1 1 11 8 4 14 dmg-max 5 7 weap orb 0 0 0
of Gore 1 1 1 14 10 4 14 dmg-max 8 10 weap orb 0 0 0
of Carnage 1 1 1 19 14 4 14 dmg-max 11 14 1 blac weap wand staf orb 0 0 0
of Slaughter 1 1 1 25 18 4 14 dmg-max 15 20 1 blac weap wand staf orb 0 0 0
of Butchery 100 1 35 27 4 14 dmg-max 21 40 1 blac weap wand staf orb 0 0 0
of Evisceration 100 1 45 37 4 14 dmg-max 41 63 1 blac weap wand staf orb 0 0 0
of Maiming 1 1 1 42 34 4 14 dmg-max 3 4 shld ring amul 0 0 0
of Craftsmanship 100 1 1 1 7 1 4 14 dmg-max 1 2 lcha circ 0 0 0
of Craftsmanship 100 1 1 8 14 6 4 14 dmg-max 3 5 lcha circ 0 0 0
of Craftsmanship 100 1 1 15 11 4 14 dmg-max 6 8 lcha circ 0 0 0
of Quality 100 1 1 23 29 17 4 14 dmg-max 9 11 lcha circ 0 0 0
of Quality 100 1 1 30 22 4 14 dmg-max 12 14 lcha circ 0 0 0
of Maiming 100 1 37 44 29 4 14 dmg-max 15 17 lcha circ 0 0 0
of Maiming 100 1 45 37 4 14 dmg-max 18 20 lcha circ 0 0 0
of Craftsmanship 100 1 1 8 17 6 4 14 dmg-max 1 2 mcha 0 0 0
of Craftsmanship 100 1 1 18 13 4 14 dmg-max 3 4 mcha 0 0 0
of Quality 100 1 1 28 37 21 4 14 dmg-max 5 7 mcha 0 0 0
of Quality 100 1 1 38 30 4 14 dmg-max 8 9 mcha 0 0 0
of Maiming 100 1 48 40 4 14 dmg-max 10 12 mcha 0 0 0
of Craftsmanship 100 1 1 21 15 4 14 dmg-max 1 2 scha 0 0 0
of Quality 100 1 1 36 28 4 14 dmg-max 3 4 scha 0 0 0
of Maiming 100 1 51 43 4 14 dmg-max 5 6 scha 0 0 0
of Ire 100 1 1 4 3 4 14 dmg-max 1 2 jewl 0 0 0
of Wrath 100 1 1 11 8 4 14 dmg-max 3 6 1 blac jewl 0 0 0
of Carnage 100 1 25 18 4 14 dmg-max 7 12 1 blac jewl
of Worth 1 1 1 1 1 4 15 dmg-min 1 2 weap orb 0 0 0
of Measure 1 1 1 12 9 3 15 dmg-min 3 4 weap orb 0 0 0
of Excellence 1 1 1 24 18 4 15 dmg-min 5 8 weap orb 0 0 0
of Performance 1 1 1 48 40 4 15 dmg-min 9 14 1 blac weap orb 0 0 0
of Transcendence 100 1 1 76 68 4 15 dmg-min 15 20 1 blac weap orb 0 0 0
of Worth 1 1 1 15 11 4 15 dmg-min 2 3 ring amul circ 0 0 0
of Measure 1 1 1 37 29 4 15 dmg-min 4 5 ring amul circ 0 0 0
of Excellence 1 1 1 59 51 4 15 dmg-min 6 9 ring amul circ 0 0 0
of Performance 100 1 81 73 4 15 dmg-min 10 13 ring amul circ 0 0 0
of Joyfulness 100 1 1 5 3 4 15 dmg-min 1 2 1 whit jewl 0 0 0
of Bliss 100 1 1 43 37 4 15 dmg-min 3 9 1 whit jewl 0 0 0
of Blight 1 1 1 5 3 3 16 pois-min 8 8 pois-max 24 24 pois-len 75 75 weap circ scep 0 0 0
of Venom 1 1 1 15 11 2 16 pois-min 16 16 pois-max 48 48 pois-len 75 75 weap circ scep 0 0 0
of Pestilence 1 1 1 25 18 2 16 pois-min 32 32 pois-max 72 72 pois-len 100 100 1 dgrn weap circ scep 0 0 0
of Anthrax 100 1 1 33 25 2 16 pois-min 64 64 pois-max 128 128 pois-len 100 100 1 dgrn weap scep 0 0 0
of Blight 100 1 1 45 33 2 16 pois-min 8 8 pois-max 24 24 pois-len 75 75 ring amul 0 0 0
of Envy 100 1 1 1 1 2 16 pois-min 48 48 pois-max 48 144 pois-len 50 50 1 dgrn jewl 0 0 0
of Dexterity 1 1 1 2 1 4 17 dex 1 2 amul miss circ 0 0 0
of Skill 1 1 1 11 8 3 17 dex 3 5 amul miss circ 0 0 0
of Accuracy 1 1 1 27 20 3 17 dex 6 9 amul miss circ 0 0 0
of Precision 1 1 1 43 35 3 17 dex 10 15 amul miss circ 0 0 0
of Perfection 1 1 1 59 51 3 17 dex 16 20 1 dgld amul miss circ 0 0 0
of Nirvana 100 1 72 64 3 17 dex 21 30 1 dgld amul miss circ 0 0 0
of Dexterity 1 1 1 6 4 4 17 dex 1 2 ring glov 0 0 0
of Skill 1 1 1 22 16 3 17 dex 3 5 ring glov 0 0 0
of Accuracy 1 1 1 39 31 3 17 dex 6 9 ring glov 0 0 0
of Precision 1 1 1 56 48 3 17 dex 10 15 ring glov 0 0 0
of Perfection 100 1 75 67 3 17 dex 16 20 1 dgld ring glov 0 0 0
of Dexterity 1 1 1 13 9 3 17 dex 1 2 tors boot glov 0 0 0
of Skill 1 1 1 34 26 3 17 dex 3 5 tors boot glov 0 0 0
of Accuracy 1 1 1 46 38 3 17 dex 6 9 tors boot glov 0 0 0
of Precision 100 1 60 52 3 17 dex 10 15 1 dgld tors boot glov 0 0 0
of Dexterity 100 1 1 1 1 4 31 dex 3 4 lcha 0 0 0
of Dexterity 100 1 1 3 2 4 31 dex 2 3 mcha 0 0 0
of Dexterity 100 1 1 7 5 4 31 dex 1 1 scha 0 0 0
of Dexterity 100 1 1 14 10 4 31 dex 5 6 lcha 0 0 0
of Dexterity 100 1 1 18 13 4 31 dex 4 5 mcha 0 0 0
of Dexterity 100 1 1 22 16 4 31 dex 2 2 scha 0 0 0
of Daring 100 1 1 7 5 3 17 dex 1 3 jewl 0 0 0
of Balance 1 1 1 5 3 4 18 balance1 10 10 armo glov 0 0 0
of Equilibrium 1 1 1 9 6 4 18 balance2 17 17 tors belt shld 0 0 0
of Stability 1 1 1 18 13 4 18 balance3 24 24 1 dyel tors belt 0 0 0
of Balance 100 1 1 1 1 4 18 balance3 12 12 lcha 0 0 0
of Balance 100 1 1 19 14 4 18 balance2 8 8 mcha 0 0 0
of Balance 100 1 1 37 29 4 18 balance1 5 5 1 dyel scha 0 0 0
of Truth 100 1 1 44 36 4 18 balance1 7 7 jewl 0 0 0
of Regeneration 1 1 1 10 7 4 19 regen 3 5 scep belt ring amul circ 0 0 0
of Regeneration 1 1 1 40 30 4 19 regen 3 5 shld glov 0 0 0
of Regeneration 1 1 1 70 52 4 19 regen 3 5 tors weap boot scep 0 0 0
of Regrowth 1 1 1 17 12 4 19 regen 6 10 1 cred scep amul circ 0 0 0
of Regrowth 1 1 1 55 41 4 19 regen 6 9 1 cred belt ring 0 0 0
of Revivification 100 1 38 30 4 19 regen 11 15 1 cred scep amul circ 0 0 0
of Honor 100 1 1 47 35 4 19 regen 1 4 jewl 0 0 0
of Vileness 1 1 1 9 6 3 20 noheal 1 1 mele scep 0 0 0
of Greed 1 1 1 2 1 4 21 gold% 25 40 ring amul circ 0 0 0
of Wealth 1 1 1 17 12 4 21 gold% 41 80 1 lgld boot glov belt amul circ 0 0 0
of Greed 100 1 1 1 1 4 21 gold% 5 10 lcha 0 0 0
of Greed 100 1 1 7 5 4 21 gold% 11 21 lcha 0 0 0
of Greed 100 1 1 19 14 4 21 gold% 22 33 lcha 0 0 0
of Greed 100 1 1 1 5 4 21 gold% 5 10 mcha 0 0 0
of Greed 100 1 1 20 15 4 21 gold% 11 22 mcha 0 0 0
of Greed 100 1 1 1 15 4 21 gold% 5 10 scha 0 0 0
of Avarice 100 1 1 1 1 4 21 gold% 5 20 jewl 0 0 0
of Chance 1 1 1 12 9 4 22 mag% 5 15 boot glov ring amul circ 0 0 0
of Fortune 1 1 1 16 12 4 22 mag% 16 25 1 lgld boot glov amul circ 0 0 0
of Fortune 1 1 42 31 4 22 mag% 16 25 1 lgld ring 0 0 0
of Luck 100 1 26 19 4 22 mag% 26 35 1 lgld boot amul circ 0 0 0
of Fortune 100 1 1 31 18 3 22 mag% 2 2 scha 0 0 0
of Good Luck 100 1 47 33 2 22 mag% 3 4 scha 0 0 0
of Prosperity 100 1 1 26 19 2 22 mag% 3 7 jewl 0 0 0
of Energy 1 1 1 1 1 4 23 enr 1 3 amul orb circ wand staf 0 0 0
of the Mind 1 1 1 7 3 4 23 enr 4 6 amul orb circ wand staf 0 0 0
of Brilliance 1 1 1 13 9 3 23 enr 7 10 amul orb circ wand staf 0 0 0
of Sorcery 1 1 1 21 16 3 23 enr 11 15 amul orb circ wand staf 0 0 0
of Wizardry 1 1 1 31 23 3 23 enr 16 20 1 dgld amul orb circ wand staf 0 0 0
of Enlightenment 100 1 41 33 3 23 enr 21 30 1 dgld amul orb circ wand staf 0 0 0
of Energy 1 1 1 7 5 4 23 enr 1 3 ring 0 0 0
of the Mind 1 1 1 13 9 3 23 enr 4 6 ring 0 0 0
of Brilliance 1 1 1 21 16 3 23 enr 7 10 ring 0 0 0
of Sorcery 1 1 1 31 23 3 23 enr 11 15 ring 0 0 0
of Wizardry 100 1 41 33 3 23 enr 16 20 1 dgld ring 0 0 0
of Energy 1 1 1 4 3 3 23 enr 1 3 helm scep 0 0 0
of the Mind 1 1 1 10 7 3 23 enr 4 6 helm scep 0 0 0
of Brilliance 1 1 1 16 12 3 23 enr 7 10 helm scep 0 0 0
of Sorcery 100 1 26 21 3 23 enr 11 15 1 dgld helm scep 0 0 0
of Knowledge 100 1 1 9 6 3 23 enr 1 5 jewl 0 0 0
of the Bear 1 1 1 8 6 3 24 knock 1 1 mele 0 0 0
of Light 1 1 1 6 4 1 25 light 1 1 armo rod ring amul 0 0 0
of Radiance 1 1 1 15 11 1 25 light 3 3 rod miss ring amul helm 0 0 0
of the Sun 1 1 1 17 12 1 25 light 5 5 rod miss glov ring amul helm 0 0 0
of the Jackal 1 1 1 1 1 3 26 hp 1 5 tors belt amul phlm circ 0 0 0
of the Fox 1 1 1 7 5 3 26 hp 6 10 tors belt amul phlm circ 0 0 0
of the Wolf 1 1 1 15 11 3 26 hp 11 20 tors belt amul phlm circ 0 0 0
of the Tiger 1 1 1 20 15 3 26 hp 21 30 tors belt amul phlm circ 0 0 0
of the Mammoth 1 1 1 25 18 3 26 hp 31 40 1 cred tors belt amul phlm circ 0 0 0
of the Colossus 1 1 1 30 22 3 26 hp 41 60 1 cred tors belt amul phlm circ 0 0 0
of the Squid 100 1 40 30 3 26 hp 61 80 1 cred tors belt amul phlm circ 0 0 0
of the Whale 100 1 50 37 3 26 hp 81 100 1 cred tors belt amul phlm circ 0 0 0
of the Jackal 100 1 1 4 3 3 26 hp 1 5 shld pelt 0 0 0
of the Fox 100 1 1 11 8 3 26 hp 6 10 shld pelt 0 0 0
of the Wolf 100 1 1 27 20 3 26 hp 11 20 shld pelt 0 0 0
of the Tiger 100 1 1 43 35 3 26 hp 21 30 shld pelt 0 0 0
of the Mammoth 100 1 1 59 51 3 26 hp 31 40 1 cred shld pelt 0 0 0
of the Colossus 100 1 75 67 3 26 hp 41 60 1 cred shld pelt 0 0 0
of the Jackal 1 1 1 8 6 3 26 hp 1 5 club hamm mace ring helm 0 0 0
of the Fox 1 1 1 17 13 3 26 hp 6 10 club hamm mace ring helm 0 0 0
of the Wolf 1 1 1 34 26 3 26 hp 11 20 club hamm mace ring helm 0 0 0
of the Tiger 1 1 1 51 43 3 26 hp 21 30 club hamm mace ring helm 0 0 0
of the Mammoth 1 1 1 68 60 3 26 hp 31 40 1 cred club hamm mace ring helm 0 0 0
of Life 100 1 1 1 1 4 26 hp 5 10 lcha 0 0 0
of Life 100 1 1 9 6 4 26 hp 11 15 lcha 0 0 0
of Life 100 1 1 19 14 4 26 hp 16 20 lcha 0 0 0
of Substinence 100 1 1 31 23 4 26 hp 21 25 lcha 0 0 0
of Substinence 100 1 1 45 37 4 26 hp 26 30 lcha 0 0 0
of Substinence 100 1 1 61 53 4 26 hp 31 35 lcha 0 0 0
of Vita 100 1 77 69 4 26 hp 36 40 lcha 0 0 0
of Vita 100 1 91 83 4 26 hp 41 45 lcha 0 0 0
of Vita 100 1 110 97 4 26 hp 46 50 lcha 0 0 0
of Life 100 1 1 1 9 4 26 hp 6 10 mcha 0 0 0
of Life 100 1 1 12 9 4 26 hp 11 15 mcha 0 0 0
of Substinence 100 1 1 26 19 4 26 hp 16 20 mcha 0 0 0
of Substinence 100 1 1 42 34 4 26 hp 21 25 mcha 0 0 0
of Vita 100 1 58 50 4 26 hp 26 30 mcha 0 0 0
of Vita 100 1 74 66 4 26 hp 31 35 mcha 0 0 0
of Life 100 1 1 1 14 4 26 hp 5 10 scha 0 0 0
of Substinence 100 1 1 23 17 4 26 hp 11 15 scha 0 0 0
of Vita 100 1 47 39 4 26 hp 16 20 scha 0 0 0
of Spirit 100 1 1 1 1 4 26 hp 3 8 jewl 0 0 0
of Hope 100 1 45 37 4 26 hp 9 20 jewl 0 0 0
of the Leech 1 1 1 6 4 4 27 lifesteal 4 5 weap orb 0 0 0
of the Locust 1 1 1 20 15 4 27 lifesteal 6 7 1 cred mele orb 0 0 0
of the Lamprey 100 1 1 55 43 4 27 lifesteal 8 9 1 cred mele orb 0 0 0
of the Leech 1 1 1 14 10 4 27 lifesteal 3 4 ring circ 0 0 0
of the Locust 1 1 1 47 35 4 27 lifesteal 5 6 ring circ 0 0 0
of the Lamprey 100 1 1 77 65 4 27 lifesteal 7 8 1 cred ring circ 0 0 0
of the Leech 1 1 1 34 26 4 27 lifesteal 3 3 1 cred glov 0 0 0
of the Bat 1 1 1 7 4 4 28 manasteal 4 5 weap 0 0 0
of the Wraith 1 1 1 21 16 4 28 manasteal 6 7 1 cred mele 0 0 0
of the Vampire 100 1 1 56 48 4 28 manasteal 8 9 1 cred mele 0 0 0
of the Bat 1 1 1 15 11 4 28 manasteal 3 4 amul circ 0 0 0
of the Wraith 1 1 1 58 40 4 28 manasteal 5 6 amul circ 0 0 0
of the Vampire 100 1 1 78 66 4 28 manasteal 7 8 1 cred amul circ 0 0 0
of the Bat 1 1 1 35 27 4 28 manasteal 3 3 1 cred glov 0 0 0
of Defiance 1 1 1 25 18 2 29 res-pois-len 75 75 1 dred tors shld amul circ 0 0 0
of Amelioration 1 1 1 18 13 3 29 res-pois-len 50 50 tors shld amul circ 0 0 0
of Remedy 100 1 1 7 5 3 29 res-pois-len 25 25 armo ring amul circ 0 0 0
of Simplicity 1 1 1 25 18 2 30 ease -30 -30 tors weap shld rod 0 0 0
of Ease 1 1 1 15 11 3 30 ease -20 -20 tors weap shld rod 0 0 0
of Freedom 100 1 1 1 1 3 30 ease -15 -15 jewl 0 0 0
of Strength 1 1 1 1 1 4 31 str 1 2 amul belt club hamm circ 0 0 0
of Might 1 1 1 10 8 3 31 str 3 5 amul belt club hamm circ 0 0 0
of the Ox 1 1 1 26 19 3 31 str 6 9 amul belt club hamm circ 0 0 0
of the Giant 1 1 1 42 34 3 31 str 10 15 amul belt club hamm circ 0 0 0
of the Titan 1 1 1 58 50 3 31 str 16 20 1 dgld amul belt club hamm circ 0 0 0
of Atlus 100 1 71 63 3 31 str 21 30 1 dgld amul belt club hamm circ 0 0 0
of Strength 1 1 1 5 3 4 31 str 1 2 ring scep mace tors 0 0 0
of Might 1 1 1 21 15 3 31 str 3 5 ring scep mace tors 0 0 0
of the Ox 1 1 1 38 30 3 31 str 6 9 ring scep mace tors 0 0 0
of the Giant 1 1 1 55 47 3 31 str 10 15 ring scep mace tors 0 0 0
of the Titan 100 1 74 66 3 31 str 16 20 1 dgld ring scep mace tors 0 0 0
of Strength 1 1 1 12 8 3 31 str 1 2 mele glov shld blun 0 0 0
of Might 1 1 1 33 25 3 31 str 3 5 mele glov shld blun 0 0 0
of the Ox 1 1 1 45 37 3 31 str 6 9 mele glov shld blun 0 0 0
of the Giant 100 1 59 51 3 31 str 10 15 1 dgld mele glov blun 0 0 0
of Strength 100 1 1 1 1 4 31 str 3 4 lcha 0 0 0
of Strength 100 1 1 3 2 4 31 str 2 3 mcha 0 0 0
of Strength 100 1 1 7 5 4 31 str 1 1 scha 0 0 0
of Strength 100 1 1 14 10 4 31 str 5 6 lcha 0 0 0
of Strength 100 1 1 18 13 4 31 str 4 5 mcha 0 0 0
of Strength 100 1 1 22 16 4 31 str 2 2 scha 0 0 0
of Virility 100 1 1 18 13 4 31 str 1 4 jewl 0 0 0
of Pacing 1 1 1 2 1 4 35 move1 10 10 boot circ 0 0 0
of Haste 1 1 1 22 16 4 35 move2 20 20 boot circ 0 0 0
of Speed 1 1 1 37 29 4 35 move3 30 30 boot circ 0 0 0
of Traveling 100 1 65 57 4 35 move3 30 30 stamdrain 80 90 boot 0 0 0
of Acceleration 100 1 51 43 4 35 move3 40 40 boot 0 0 0
of Inertia 100 1 1 19 14 4 35 move3 7 7 lcha
of Inertia 100 1 1 24 18 4 35 move2 5 5 mcha
of Inertia 100 1 35 27 4 35 move1 3 3 scha 0 0 0
of Self-Repair 100 1 1 3 1 1 37 rep-dur 3 weap armo thro miss 0 0 0
of Fast Repair 100 1 1 20 12 1 37 rep-dur 5 weap armo thro miss 0 0 0
of Ages 100 1 50 42 1 39 indestruct weap armo thro miss 0 0 0
of Replenishing 100 1 1 5 3 1 39 rep-quant 2 thro 0 0 0
of Propogation 100 1 1 24 18 1 39 rep-quant 4 thro 0 0 0
of the Kraken 100 1 20 1 1 41 hp/lvl 4 1 cred tors amul pelt phlm 0 0 0
of Memory 100 1 20 1 1 41 mana/lvl 4 1 cred circ amul pelt 0 0 0
of the Elephant 100 1 37 7 1 41 hp/lvl 2 mana/lvl 2 1 cred circ pelt 0 0 0
of Power 100 1 1 1 42 str/lvl 3 1 dgld belt amul 0 0 0
of Grace 100 1 1 1 42 dex/lvl 3 1 dgld helm amul 0 0 0
of Grace and Power 100 1 1 1 42 str/lvl 1 dex/lvl 1 1 dgld amul 0 0 0
of the Yeti 100 1 1 1 43 res-cold/lvl 3 1 lblu tors glov amul 0 0 0
of the Phoenix 100 1 1 1 43 res-fire/lvl 3 1 cred shld helm amul 0 0 0
of the Efreeti 100 1 1 1 43 res-ltng/lvl 3 1 cblu glov boot ring 0 0 0
of the Cobra 100 1 1 1 43 res-pois/lvl 3 1 dyel belt ring amul 0 0 0
of the Elements 100 1 1 10 43 res-cold/lvl 1 res-fire/lvl 1 res-ltng/lvl 1 1 dgld circ 0 0 0
of Firebolts 100 1 1 16 12 1 44 hit-skill 36 10 8 weap miss 0 0 0
of Firebolts 100 1 1 6 4 1 44 att-skill 36 5 3 weap miss 0 0 0
of Firebolts 100 1 1 20 15 1 44 att-skill 36 10 4 weap miss 0 0 0
of Charged Shield 100 1 1 6 4 1 44 gethit-skill 38 10 3 armo ring amul 0 0 0
of Charged Shield 100 1 1 16 12 1 44 gethit-skill 38 12 4 armo ring amul 0 0 0
of Charged Shield 100 1 1 26 19 1 44 gethit-skill 38 14 5 armo ring amul 0 0 0
of Icebolt 100 1 1 6 4 1 44 att-skill 39 5 3 1 lblu weap miss 0 0 0
of Frozen Armor 100 44 0 0 0
of Static Field 100 44 0 0 0
of Telekinesis 100 1 1 44 0 0 0
of Frost Shield 100 1 1 12 9 1 44 gethit-skill 44 5 3 1 lblu armo amul 0 0 0
of Ice Blast 100 44 0 0 0
of Blaze 100 44 0 0 0
of Fire Ball 100 44 0 0 0
of Nova 100 1 1 18 13 1 44 hit-skill 48 10 3 1 cblu weap miss 0 0 0
of Nova 100 1 1 28 21 1 44 hit-skill 48 12 4 1 cblu weap miss 0 0 0
of Nova Shield 100 1 1 18 13 1 44 gethit-skill 48 10 3 1 cblu armo ring 0 0 0
of Nova Shield 100 1 1 28 21 1 44 gethit-skill 48 12 4 1 cblu armo ring 0 0 0
of Nova Shield 100 1 1 38 28 1 44 gethit-skill 48 14 5 1 cblu armo ring 0 0 0
of Lightning 100 1 1 18 13 1 44 att-skill 49 5 3 1 cblu weap miss 0 0 0
of Lightning 100 12 18 sor 9 1 44 charged 49 50 1 1 cblu weap 0 0 0
of Shiver Armor 100 44 0 0 0
of Fire Wall 100 44 0 0 0
of Enchant 100 44 0 0 0
of Chain Lightning 100 1 1 25 18 1 44 att-skill 53 5 3 weap ring amul miss 0 0 0
of Chain Lightning 100 1 1 35 26 1 44 att-skill 53 8 3 weap ring amul miss 0 0 0
of Chain Lightning 100 1 1 45 33 1 44 att-skill 53 8 5 weap ring amul miss 0 0 0
of Teleport Shield 100 25 18 1 44 gethit-skill 54 10 3 1 whit armo ring amul 0 0 0
of Teleport Shield 100 35 26 1 44 gethit-skill 54 14 3 1 whit armo ring amul 0 0 0
of Teleport Shield 100 45 33 1 44 gethit-skill 54 18 3 1 whit armo ring amul 0 0 0
of Glacial Spike 100 44 0 0 0
of Meteor 100 44 0 0 0
of Thunder Storm 100 44 0 0 0
of Energy Shield 100 44 0 0 0
of Blizzard 100 44 0 0 0
of Chilling Armor 100 44 0 0 0
of Hydra Shield 100 1 1 40 30 1 44 gethit-skill 62 10 3 1 cred amul 0 0 0
of Frozen Orb 100 44 0 0 0
of Dawn 100 30 22 0 45 ac/time 3 10 40 0 0 0
of Sunlight 100 30 22 0 45 ac/time 0 -10 60 0 0 0
of Magic Arrows 100 1 1 12 11 ama 1 1 44 charged 6 -30 -10 miss abow 0 0 0
of Magic Arrows 100 35 28 ama 3 1 44 charged 6 -20 -6 glov 0 0 0
of Fire Arrows 100 13 12 ama 1 1 44 charged 7 -30 -10 miss abow 0 0 0
of Fire Arrows 100 1 1 40 32 ama 3 1 44 charged 7 -20 -6 glov 0 0 0
of Inner Sight 100 1 1 18 14 ama 2 1 44 charged 8 -30 -6 amul amaz circ 0 0 0
of Inner Sight 100 1 1 50 42 ama 5 1 44 charged 8 -20 -4 glov 0 0 0
of Jabbing 100 24 18 ama 3 1 44 charged 10 -60 -7 spea aspe 0 0 0
of Jabbing 100 50 42 ama 5 1 44 charged 10 -20 -4 glov 0 0 0
of Cold Arrows 100 1 1 15 16 ama 6 1 44 charged 11 -30 -8 miss abow 0 0 0
of Cold Arrows 100 1 1 47 39 ama 9 1 44 charged 11 -20 -5 glov 0 0 0
of Multiple Shot 100 1 1 18 19 ama 6 1 44 charged 12 -30 -8 miss abow 0 0 0
of Multiple Shot 100 1 1 63 55 ama 12 1 44 charged 12 -20 -4 glov 0 0 0
of Power Strike 100 1 1 12 13 ama 6 1 44 charged 14 -60 -6 spea aspe 0 0 0
of Power Strike 100 1 1 55 47 ama 9 1 44 charged 14 -20 -4 glov 0 0 0
of Poison Jab 100 17 18 ama 6 1 44 charged 15 -60 -6 amul circ 0 0 0
of Poison Jab 100 67 59 ama 13 1 44 charged 15 -20 -3 glov 0 0 0
of Exploding Arrows 100 1 1 30 26 ama 12 1 44 charged 16 -30 -6 miss abow 0 0 0
of Exploding Arrows 100 1 1 69 61 ama 17 1 44 charged 16 -20 -4 glov 0 0 0
of Slow Missiles 100 33 27 ama 12 1 44 charged 17 -30 -5 amaz 0 0 0
of Slow Missiles 100 68 60 ama 15 1 44 charged 17 -20 -3 glov amul 0 0 0
of Impaling Strike 100 24 18 ama 12 1 44 charged 19 -60 -6 spea aspe 0 0 0
of Impaling Strike 100 59 51 ama 15 1 44 charged 19 -20 -4 glov 0 0 0
of Lightning Javelin 100 25 18 ama 12 1 44 charged 20 -60 -6 amul circ 0 0 0
of Lightning Javelin 100 70 62 ama 17 1 44 charged 20 -20 -3 glov 0 0 0
of Ice Arrows 100 1 1 36 28 ama 18 1 44 charged 21 -30 -5 miss abow 0 0 0
of Ice Arrows 100 1 1 72 64 ama 22 1 44 charged 21 -20 -3 glov 0 0 0
of Guided Arrows 100 34 26 ama 18 1 44 charged 22 -30 -5 miss abow 0 0 0
of Guided Arrows 100 69 61 ama 21 1 44 charged 22 -20 -3 glov 0 0 0
of Charged Strike 100 1 1 33 25 ama 18 1 44 charged 24 -60 -5 spea aspe 0 0 0
of Charged Strike 100 1 1 68 60 ama 21 1 44 charged 24 -20 -3 glov 0 0 0
of Plague Jab 100 35 27 ama 18 1 44 charged 25 -60 -5 amul circ 0 0 0
of Plague Jab 100 71 63 ama 22 1 44 charged 25 -20 -3 glov 0 0 0
of Immolating Arrows 100 42 36 ama 24 1 44 charged 27 -30 -4 miss abow 0 0 0
of Immolating Arrows 100 85 77 ama 27 1 44 charged 27 -20 -2 glov 0 0 0
of Fending 100 41 35 ama 24 1 44 charged 30 -60 -5 spea aspe 0 0 0
of Fending 100 83 75 ama 26 1 44 charged 30 -20 -3 glov 0 0 0
of Freezing Arrows 100 1 1 50 42 ama 30 1 44 charged 31 -30 -4 miss abow 0 0 0
of Freezing Arrows 100 1 1 94 86 ama 33 1 44 charged 31 -20 -2 glov 0 0 0
of Lightning Strike 100 1 1 47 39 ama 30 1 44 charged 34 -60 -4 spea aspe 0 0 0
of Lightning Strike 100 1 1 90 82 ama 32 1 44 charged 34 -20 -2 glov 0 0 0
of Lightning Fury 100 49 41 ama 30 1 44 charged 35 -60 -4 amul circ 0 0 0
of Lightning Fury 100 92 84 ama 33 1 44 charged 35 -20 -2 glov 0 0 0
of Fire Bolts 100 1 1 7 7 sor 1 1 44 charged 36 -30 -10 staf orb 0 0 0
of Fire Bolts 100 1 1 14 14 sor 1 1 44 charged 36 -20 -6 swor ring circ 0 0 0
of Charged Bolts 100 1 1 7 7 sor 1 1 44 charged 38 -30 -10 staf orb 0 0 0
of Charged Bolts 100 1 1 14 14 sor 1 1 44 charged 38 -20 -6 hamm mace scep ring circ 0 0 0
of Ice Bolts 100 1 1 7 7 sor 1 1 44 charged 39 -30 -10 staf orb 0 0 0
of Ice Bolts 100 1 1 14 14 sor 1 1 44 charged 39 -20 -6 knif 0 0 0
of Frozen Armor 100 7 7 sor 1 1 44 charged 40 -30 -10 staf orb 0 0 0
of Frozen Armor 100 14 14 sor 1 1 44 charged 40 -20 -6 knif tors 0 0 0
of Static Field 100 12 12 sor 6 1 44 charged 42 -30 -8 staf orb 0 0 0
of Static Field 100 24 24 sor 6 1 44 charged 42 -20 -5 hamm mace scep ring circ 0 0 0
of Telekinesis 100 1 1 12 12 sor 6 1 44 charged 43 -30 -8 staf orb 0 0 0
of Telekinesis 100 1 1 24 24 sor 6 1 44 charged 43 -20 -5 hamm mace scep ring circ 0 0 0
of Frost Novas 100 1 1 12 12 sor 6 1 44 charged 44 -30 -8 staf orb 0 0 0
of Frost Novas 100 1 1 24 24 sor 6 1 44 charged 44 -20 -5 knif amul circ 0 0 0
of Ice Blasts 100 1 1 12 12 sor 6 1 44 charged 45 -30 -8 staf orb 0 0 0
of Ice Blasts 100 1 1 24 24 sor 6 1 44 charged 45 -20 -5 hamm mace scep ring circ 0 0 0
of Blazing 100 18 18 sor 12 1 44 charged 46 -30 -7 staf orb 0 0 0
of Blazing 100 36 36 sor 12 1 44 charged 46 -20 -4 boot 0 0 0
of Fire Balls 100 1 1 18 18 sor 12 1 44 charged 47 -30 -7 staf orb 0 0 0
of Fire Balls 100 1 1 36 36 sor 12 1 44 charged 47 -20 -4 spea wand 0 0 0
of Novas 100 1 1 18 18 sor 12 1 44 charged 48 -30 -7 staf orb 0 0 0
of Novas 100 1 1 36 36 sor 12 1 44 charged 48 -20 -4 shld 0 0 0
of Lightning 100 1 1 18 18 sor 12 1 44 charged 49 -30 -7 staf orb 0 0 0
of Lightning 100 1 1 36 36 sor 12 1 44 charged 49 -20 -4 axe hamm 0 0 0
of Shiver Armor 100 18 18 sor 12 1 44 charged 50 -30 -7 staf orb 0 0 0
of Shiver Armor 100 36 36 sor 12 1 44 charged 50 -20 -4 knif tors 0 0 0
of Fire Walls 100 24 24 sor 18 1 44 charged 51 -30 -6 staf orb 0 0 0
of Fire Walls 100 48 48 sor 18 1 44 charged 51 -20 -3 pole 0 0 0
of Enchantment 100 1 1 24 24 sor 18 1 44 charged 52 -20 -3 staf orb 0 0 0
of Enchantment 100 1 1 48 48 sor 18 1 44 charged 52 -10 -1 mele 0 0 0
of Chain Lightning 100 1 1 24 24 sor 18 1 44 charged 53 -30 -6 staf orb 0 0 0
of Chain Lightning 100 1 1 48 48 sor 18 1 44 charged 53 -20 -3 spea 0 0 0
of Teleportation 100 1 1 24 24 sor 18 1 44 charged 54 -30 -6 staf orb 0 0 0
of Teleportation 100 1 1 48 48 sor 18 1 44 charged 54 -20 -3 amul circ 0 0 0
of Glacial Spikes 100 1 1 24 24 sor 18 1 44 charged 55 -30 -6 staf orb 0 0 0
of Glacial Spikes 100 1 1 48 48 sor 18 1 44 charged 55 -20 -3 knif 0 0 0
of Meteors 100 1 1 30 30 sor 24 1 44 charged 56 -30 -5 staf orb 0 0 0
of Meteors 100 1 1 60 60 sor 24 1 44 charged 56 -20 -2 knif club 0 0 0
of Thunder Storm 100 30 30 sor 24 1 44 charged 57 -30 -5 staf orb 0 0 0
of Thunder Storm 100 60 60 sor 24 1 44 charged 57 -20 -2 hamm club 0 0 0
of Energy Shield 100 30 30 sor 24 1 44 charged 58 -30 -5 staf orb 0 0 0
of Energy Shield 100 60 60 sor 24 1 44 charged 58 -20 -2 helm 0 0 0
of Blizzards 100 1 1 30 30 sor 24 1 44 charged 59 -30 -5 staf orb 0 0 0
of Blizzards 100 1 1 60 60 sor 24 1 44 charged 59 -20 -2 knif 0 0 0
of Chilling Armor 100 30 30 sor 24 1 44 charged 60 -30 -5 staf orb 0 0 0
of Chilling Armor 100 60 60 sor 24 1 44 charged 60 -20 -2 tors 0 0 0
of Hydras 100 36 36 sor 30 1 44 charged 62 -30 -3 staf orb 0 0 0
of Hydras 100 72 72 sor 30 1 44 charged 62 -20 -1 club 0 0 0
of Frozen Orbs 100 1 1 36 36 sor 30 1 44 charged 64 -30 -3 staf orb 0 0 0
of Frozen Orbs 100 1 1 72 72 sor 30 1 44 charged 64 -20 -1 knif 0 0 0
of Amplify Damage 100 7 7 nec 1 1 44 charged 66 -60 -10 wand knif head 0 0 0
of Amplify Damage 100 14 14 nec 1 1 44 charged 66 -20 -6 blun 0 0 0
of Teeth 100 7 7 nec 1 1 44 charged 67 -60 -10 wand knif head 0 0 0
of Teeth 100 14 14 nec 1 1 44 charged 67 -20 -6 swor 0 0 0
of Bone Armor 100 7 7 nec 1 1 44 charged 68 -60 -10 wand knif head 0 0 0
of Bone Armor 100 14 14 nec 1 1 44 charged 68 -20 -6 tors 0 0 0
of Raise Skeletons 100 7 7 nec 1 1 44 charged 70 -60 -10 wand knif head 0 0 0
of Raise Skeletons 100 14 14 nec 1 1 44 charged 70 -20 -6 amul circ 0 0 0
of Dim Vision 100 1 1 12 12 nec 6 1 44 charged 71 -60 -8 wand knif head 0 0 0
of Dim Vision 100 1 1 24 24 nec 6 1 44 charged 71 -20 -5 ring circ 0 0 0
of Weaken 100 1 1 12 12 nec 6 1 44 charged 72 -60 -8 wand knif head 0 0 0
of Weaken 100 1 1 24 24 nec 6 1 44 charged 72 -20 -5 glov 0 0 0
of Poison Dagger 100 1 1 12 12 nec 6 1 44 charged 73 -60 -8 knif head 0 0 0
of Poison Dagger 100 1 1 24 24 nec 6 1 44 charged 73 -20 -5 glov ring circ 0 0 0
of Corpse Explosions 100 12 12 nec 6 1 44 charged 74 -60 -8 wand knif head 0 0 0
of Corpse Explosions 100 24 24 nec 6 1 44 charged 74 -20 -5 club 0 0 0
of Clay Golem Summoning 100 12 12 nec 6 1 44 charged 75 -60 -8 wand knif head 0 0 0
of Clay Golem Summoning 100 24 24 nec 6 1 44 charged 75 -20 -5 amul circ 0 0 0
of Iron Maiden 100 1 1 18 18 nec 12 1 44 charged 76 -60 -7 wand knif head 0 0 0
of Iron Maiden 100 1 1 36 36 nec 12 1 44 charged 76 -20 -4 shld 0 0 0
of Terror 100 1 1 18 18 nec 12 1 44 charged 77 -60 -7 wand knif head 0 0 0
of Terror 100 1 1 36 36 nec 12 1 44 charged 77 -20 -4 shld 0 0 0
of Bone Walls 100 18 18 nec 12 1 44 charged 78 -60 -7 wand knif head 0 0 0
of Bone Walls 100 36 36 nec 12 1 44 charged 78 -20 -4 club mace scep 0 0 0
of Raise Skeletal Mages 100 18 18 nec 12 1 44 charged 80 -60 -7 wand knif head 0 0 0
of Raise Skeletal Mages 100 36 36 nec 12 1 44 charged 80 -20 -4 amul circ 0 0 0
of Confusion 100 1 1 24 24 nec 18 1 44 charged 81 -60 -6 wand knif head 0 0 0
of Confusion 100 1 1 48 48 nec 18 1 44 charged 81 -20 -3 ring circ 0 0 0
of Life Tap 100 1 1 24 24 nec 18 1 44 charged 82 -60 -6 wand knif head 0 0 0
of Life Tap 100 1 1 48 48 nec 18 1 44 charged 82 -20 -3 axe 0 0 0
of Poison Explosion 100 24 24 nec 18 1 44 charged 83 -60 -6 wand knif head 0 0 0
of Poison Explosion 100 48 48 nec 18 1 44 charged 83 -20 -3 blun 0 0 0
of Bone Spears 100 1 1 24 24 nec 18 1 44 charged 84 -60 -6 wand knif head 0 0 0
of Bone Spears 100 1 1 48 48 nec 18 1 44 charged 84 -20 -3 spea 0 0 0
of Blood Golem Summoning 100 24 24 nec 18 1 44 charged 85 -60 -6 wand knif head 0 0 0
of Blood Golem Summoning 100 48 48 nec 18 1 44 charged 85 -20 -3 axe 0 0 0
of Attraction 100 1 1 30 30 nec 24 1 44 charged 86 -60 -5 wand knif head 0 0 0
of Attraction 100 1 1 60 60 nec 24 1 44 charged 86 -20 -2 ring amul circ 0 0 0
of Decrepification 100 30 30 nec 24 1 44 charged 87 -60 -5 wand knif head 0 0 0
of Decrepification 100 60 60 nec 24 1 44 charged 87 -20 -2 shld 0 0 0
of Bone Imprisonment 100 30 30 nec 24 1 44 charged 88 -60 -5 wand knif head 0 0 0
of Bone Imprisonment 100 60 60 nec 24 1 44 charged 88 -20 -2 mace scep 0 0 0
of Iron Golem Creation 100 30 30 nec 24 1 44 charged 90 -60 -5 wand knif head 0 0 0
of Iron Golem Creation 100 60 60 nec 24 1 44 charged 90 -20 -2 swor 0 0 0
of Lower Resistance 100 1 1 36 36 nec 30 1 44 charged 91 -60 -3 wand knif head 0 0 0
of Lower Resistance 100 1 1 72 72 nec 30 1 44 charged 91 -20 -1 staf 0 0 0
of Poison Novas 100 1 1 36 36 nec 30 1 44 charged 92 -60 -3 wand knif head 0 0 0
of Poison Novas 100 1 1 72 72 nec 30 1 44 charged 92 -20 -1 glov 0 0 0
of Bone Spirits 100 1 1 36 36 nec 30 1 44 charged 93 -60 -3 wand knif head 0 0 0
of Bone Spirits 100 1 1 72 72 nec 30 1 44 charged 93 -20 -1 amul circ 0 0 0
of Fire Golem Summoning 100 36 36 nec 30 1 44 charged 94 -60 -3 wand knif head 0 0 0
of Fire Golem Summoning 100 72 72 nec 30 1 44 charged 94 -20 -1 hamm 0 0 0
of Revivification 100 36 36 nec 30 1 44 charged 95 -60 -3 wand knif head 0 0 0
of Revivification 100 72 72 nec 30 1 44 charged 95 -20 -1 pole 0 0 0
of Sacrifice 100 1 1 7 7 pal 1 1 44 charged 96 -30 -10 scep ashd 0 0 0
of Sacrifice 100 1 1 14 14 pal 1 1 44 charged 96 -20 -6 mele scep 0 0 0
of Holy Bolts 100 1 1 12 12 pal 6 1 44 charged 101 -30 -8 scep ashd 0 0 0
of Holy Bolts 100 1 1 24 24 pal 6 1 44 charged 101 -20 -5 amul circ 0 0 0
of Zeal 100 1 1 18 18 pal 12 1 44 charged 106 -30 -7 scep ashd 0 0 0
of Zeal 100 1 1 36 36 pal 12 1 44 charged 106 -20 -4 mele scep 0 0 0
of Vengeance 100 1 1 24 24 pal 18 1 44 charged 111 -30 -6 scep ashd 0 0 0
of Vengeance 100 1 1 48 48 pal 18 1 44 charged 111 -20 -3 swor axe 0 0 0
of Blessed Hammers 100 1 1 24 24 pal 18 1 44 charged 112 -30 -6 scep ashd 0 0 0
of Blessed Hammers 100 1 1 48 48 pal 18 1 44 charged 112 -20 -3 hamm 0 0 0
of Conversion 100 30 30 pal 24 1 44 charged 116 -30 -5 scep ashd 0 0 0
of Conversion 100 60 60 pal 24 1 44 charged 116 -20 -2 blun scep 0 0 0
of Fist of the Heavens 100 36 36 pal 30 1 44 charged 121 -30 -3 scep ashd 0 0 0
of Fist of the Heavens 100 72 72 pal 30 1 44 charged 121 -20 -1 glov 0 0 0
of Bashing 100 1 1 7 7 bar 1 1 44 charged 126 -60 -10 phlm 0 0 0
of Bashing 100 1 1 14 14 bar 1 1 44 charged 126 -20 -6 0 0 0
of Howling 100 7 7 bar 1 1 44 charged 130 -60 -10 phlm 0 0 0
of Howling 100 14 14 bar 1 1 44 charged 130 -20 -6 0 0 0
of Potion Finding 100 7 7 bar 1 1 44 charged 131 -60 -10 phlm 0 0 0
of Potion Finding 100 14 14 bar 1 1 44 charged 131 -20 -6 0 0 0
of Taunting 100 12 12 bar 6 1 44 charged 137 -60 -8 phlm 0 0 0
of Taunting 100 24 24 bar 6 1 44 charged 137 -20 -5 0 0 0
of Shouting 100 12 12 bar 6 1 44 charged 138 -60 -8 phlm 0 0 0
of Shouting 100 24 24 bar 6 1 44 charged 138 -20 -5 0 0 0
of Stunning 100 1 1 18 18 bar 12 1 44 charged 139 -60 -7 phlm 0 0 0
of Stunning 100 1 1 36 36 bar 12 1 44 charged 139 -20 -4 0 0 0
of Item Finding 100 18 18 bar 12 1 44 charged 142 -60 -7 phlm 0 0 0
of Item Finding 100 36 36 bar 12 1 44 charged 142 -20 -4 0 0 0
of Concentration 100 1 1 24 24 bar 18 1 44 charged 144 -60 -6 phlm 0 0 0
of Concentration 100 1 1 48 48 bar 18 1 44 charged 144 -20 -3 0 0 0
of Battle Cry 100 24 24 bar 18 1 44 charged 146 -60 -6 phlm 0 0 0
of Battle Cry 100 48 48 bar 18 1 44 charged 146 -20 -3 0 0 0
of Battle Orders 100 30 30 bar 24 1 44 charged 149 -60 -5 phlm 0 0 0
of Battle Orders 100 60 60 bar 24 1 44 charged 149 -20 -2 0 0 0
of Grim Ward 100 1 1 30 30 bar 24 1 44 charged 150 -60 -5 phlm 0 0 0
of Grim Ward 100 1 1 60 60 bar 24 1 44 charged 150 -20 -2 0 0 0
of War Cry 100 36 36 bar 30 1 44 charged 154 -60 -3 phlm 0 0 0
of War Cry 100 72 72 bar 30 1 44 charged 154 -20 -1 0 0 0
of Battle Command 100 36 36 bar 30 1 44 charged 155 -60 -3 phlm 0 0 0
of Battle Command 100 72 72 bar 30 1 44 charged 155 -20 -1 0 0 0
of Firestorms 100 1 1 7 7 dru 1 1 44 charged 225 -30 -10 club 0 0 0
of Firestorms 100 1 1 14 14 dru 1 1 44 charged 225 -20 -6 staf 0 0 0
of Molten Boulders 100 12 12 dru 6 1 44 charged 229 -30 -8 club 0 0 0
of Molten Boulders 100 24 24 dru 6 1 44 charged 229 -20 -5 mace 0 0 0
of Eruption 100 1 1 18 18 dru 12 1 44 charged 234 -30 -7 club 0 0 0
of Eruption 100 1 1 36 36 dru 12 1 44 charged 234 -20 -4 staf 0 0 0
of Cyclone Armor 100 18 18 dru 12 1 44 charged 235 -30 -7 club 0 0 0
of Cyclone Armor 100 36 36 dru 12 1 44 charged 235 -20 -4 tors 0 0 0
of Twister 100 1 1 24 24 dru 18 1 44 charged 240 -30 -6 club 0 0 0
of Twister 100 1 1 48 48 dru 18 1 44 charged 240 -20 -3 amul circ 0 0 0
of Volcano 100 1 1 30 30 dru 24 1 44 charged 244 -30 -6 club 0 0 0
of Volcano 100 1 1 60 60 dru 24 1 44 charged 244 -20 -3 hamm 0 0 0
of Tornado 100 1 1 30 30 dru 24 1 44 charged 245 -30 -5 club 0 0 0
of Tornado 100 1 1 60 60 dru 24 1 44 charged 245 -20 -2 amul circ 0 0 0
of Armageddon 100 36 36 dru 30 1 44 charged 249 -30 -3 club 0 0 0
of Armageddon 100 72 72 dru 30 1 44 charged 249 -20 -1 staf 0 0 0
of Hurricane 100 36 36 dru 30 1 44 charged 250 -30 -3 club 0 0 0
of Hurricane 100 72 72 dru 30 1 44 charged 250 -20 -1 amul circ 0 0 0
of Damage Amplification 100 1 1 3 1 44 hit-skill 66 5 1 weap 0 0 0
of the Icicle 100 1 1 37 29 2 10 cold-min 2 3 cold-max 5 7 cold-len 50 50 1 dblu jewl 0 0 0
of the Glacier 100 1 58 50 2 10 cold-min 4 5 cold-max 8 10 cold-len 50 50 1 dblu jewl 0 0 0
of Fire 100 1 1 36 28 2 12 fire-min 4 7 fire-max 9 12 1 dred jewl 0 0 0
of Burning 100 1 1 57 49 2 12 fire-min 8 10 fire-max 13 20 1 dred jewl 0 0 0
of Lightning 100 1 1 36 28 2 13 ltng-min 1 1 ltng-max 11 20 1 dyel jewl 0 0 0
of Thunder 100 1 1 57 49 2 13 ltng-min 1 1 ltng-max 21 33 1 dyel jewl 0 0 0
of Daring 100 1 1 19 14 3 17 dex 4 6 jewl 0 0 0
of Daring 100 1 1 36 28 3 17 dex 7 9 jewl 0 0 0
of Knowledge 100 1 1 24 18 3 23 enr 4 6 jewl 0 0 0
of Knowledge 100 1 1 41 33 3 23 enr 7 9 jewl 0 0 0
of Virility 100 1 1 33 25 4 31 str 5 6 jewl 0 0 0
of Virility 100 1 1 50 42 4 31 str 7 9 jewl 0 0 0
of Readiness 1 1 1 20 15 2 7 swing1 10 10 glov 0 0 0

141
txt/Misc.txt Normal file
View File

@ -0,0 +1,141 @@
name namco compactsave version level levelreq rarity spawnable speed nodurability cost gamble cost code alternategfx component invwidth invheight hasinv gemsockets gemapplytype flippyfile invfile uniqueinvfile special Transmogrify TMogType TMogMin TMogMax useable throwable type sound unique transparent transtbl lightradius belt autobelt stackable minstack maxstack spawnstack quest missiletype spellicon durwarning qntwarning gemoffset BetterGem bitfield1 CharsiMin CharsiMax CharsiMagicMin CharsiMagicMax CharsiMagicLvl GheedMin GheedMax GheedMagicMin GheedMagicMax GheedMagicLvl AkaraMin AkaraMax AkaraMagicMin AkaraMagicMax AkaraMagicLvl FaraMin FaraMax FaraMagicMin FaraMagicMax FaraMagicLvl LysanderMin LysanderMax LysanderMagicMin LysanderMagicMax LysanderMagicLvl DrognanMin DrognanMax DrognanMagicMin DrognanMagicMax DrognanMagicLvl HraltiMin HraltiMax HraltiMagicMin HraltiMagicMax HraltiMagicLvl AlkorMin AlkorMax AlkorMagicMin AlkorMagicMax AlkorMagicLvl OrmusMin OrmusMax OrmusMagicMin OrmusMagicMax OrmusMagicLvl ElzixMin ElzixMax ElzixMagicMin ElzixMagicMax ElzixMagicLvl AshearaMin AshearaMax AshearaMagicMin AshearaMagicMax AshearaMagicLvl CainMin CainMax CainMagicMin CainMagicMax CainMagicLvl HalbuMin HalbuMax HalbuMagicMin HalbuMagicMax HalbuMagicLvl MalahMin MalahMax MalahMagicMin MalahMagicMax MalahMagicLvl LarzukMin LarzukMax LarzukMagicMin LarzukMagicMax LarzukMagicLvl DrehyaMin DrehyaMax DrehyaMagicMin DrehyaMagicMax DrehyaMagicLvl JamellaMin JamellaMax JamellaMagicMin JamellaMagicMax JamellaMagicLvl Source Art Game Art Transform InvTrans SkipName NightmareUpgrade HellUpgrade mindam maxdam PermStoreItem Nameable
elixir elixir 1 0 21 0 4 1 0 1 20 elx elx 16 1 1 0 0 0 flppot invpot 0 xxx 1 0 elix 22 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Healing Potion Healing Potion 1 0 0 0 1 0 0 1 30 hpo hpo 16 1 1 0 0 0 flprps invrps 0 xxx 1 0 hpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1 0
Mana Potion Mana Potion 1 0 0 0 1 0 0 1 30 mpo mpo 16 1 1 0 0 0 flpbps invbps 0 xxx 1 0 mpot 22 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1 0
Full Healing Potion Full Healing Potion 1 0 0 0 2 0 0 1 150 hpf hpo 16 1 1 0 0 0 flprpl invrpl 0 xxx 1 0 hpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1 0
Full Mana Potion Full Mana Potion 1 0 0 0 2 0 0 1 150 mpf mpo 16 1 1 0 0 0 flpbpl invbpl 0 xxx 1 0 mpot 22 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1 0
Stamina Potion Stamina Potion 1 0 0 0 1 1 0 1 25 vps vps 16 1 1 0 0 0 flpwps invwps 0 xxx 1 0 spot 22 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 2 4 0 0 255 0 0 0 0 255 3 5 3 5 255 0 0 0 0 255 0 0 0 0 255 3 5 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 3 0 0 255 0 0 0 0 255 2 3 0 0 255 0 0 0 0 255 0 0 0 0 255 2 3 0 0 255 0 0 0 xxx xxx 0 0 1 0
Antidote Potion Antidote Potion 1 0 0 0 1 1 0 1 40 yps yps 16 1 1 0 0 0 flpnps invnps 0 xxx 1 0 apot 22 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 2 4 0 0 255 0 0 0 0 255 9 15 9 15 255 0 0 0 0 255 0 0 0 0 255 8 11 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 8 11 0 0 255 0 0 0 0 255 3 5 0 0 255 0 0 0 0 255 0 0 0 0 255 3 5 0 0 255 0 0 0 xxx xxx 0 0 1 0
Rejuv Potion Rejuv Potion 1 0 0 0 2 0 0 1 50 rvs yps 16 1 1 0 0 0 flpvps invvps 0 xxx 1 0 rpot 22 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Full Rejuv Potion Full Rejuv Potion 1 0 0 0 2 0 0 1 200 rvl ypl 16 1 1 0 0 0 flpvpl invvpl 0 xxx 1 0 rpot 22 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Thawing Potion Thawing Potion 1 0 0 0 2 1 0 1 25 wms yps 16 1 1 0 0 0 flpyps invyps 0 xxx 1 0 wpot 22 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 1 2 0 0 255 0 0 0 0 255 3 5 3 5 255 0 0 0 0 255 0 0 0 0 255 6 9 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 6 9 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1 0
Town Portal Book Town Portal Book 0 0 0 0 2 1 0 1 250 tbk bbk 16 1 2 0 0 0 flpbbk invbbk 0 xxx 1 0 book 3 0 0 5 0 0 0 1 1 20 5 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 2 0 0 255 0 0 0 0 255 0 0 0 0 255 2 4 2 4 255 0 0 0 0 255 0 0 0 0 255 2 4 2 4 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 0 255 0 0 0 xxx xxx 0 0 1 0
Identify Book Identify Book 0 0 0 0 2 1 0 1 200 ibk rbk 16 1 2 0 0 0 flprbk invrbk 0 xxx 1 0 book 3 0 0 5 0 0 0 1 1 20 5 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 2 0 0 255 0 0 0 0 255 0 0 0 0 255 2 4 2 4 255 0 0 0 0 255 0 0 0 0 255 2 4 2 4 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 0 255 0 0 0 xxx xxx 0 0 1 0
amulet amulet 0 0 1 0 4 1 0 1 2400 63000 amu amu 16 1 1 1 1 1 flpamu invamu 0 xxx 0 0 amul 1 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
viper amulet viper amulet 0 0 15 0 4 0 0 1 400 vip vip 16 1 1 0 0 0 flpamu invvip invvip 0 xxx 0 0 amul 1 0 0 5 0 0 0 0 0 0 0 10 0 -1 0 0 0 non 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 xxx xxx 0 0 0 0
ring ring 0 0 1 0 4 1 0 1 1800 50000 rin rin 16 1 1 1 1 1 flprin invrin 0 xxx 0 0 ring 25 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
gold gold 1 0 0 0 1 1 0 1 0 gld gld 16 1 1 0 0 0 flpgld invgld 0 xxx 0 0 gold 11 0 0 5 0 0 0 1 0 5000 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Bark Scroll Bark Scroll 1 0 0 0 0 0 0 1 100 bks bks 16 2 2 0 0 0 flpscr invscb 0 xxx 0 0 ques 26 1 0 5 0 0 0 0 0 0 0 5 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
deciphered Bark Scroll deciphered Bark Scroll 1 0 0 0 0 0 0 1 12000 bkd bkd 16 2 2 0 0 0 flpscr invscb 0 xxx 0 0 ques 26 1 0 5 0 0 0 0 0 0 0 5 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Arrows Arrows 0 0 0 0 1 1 0 1 256 aqv aqv 16 1 3 0 0 0 flpqvr invqvr 0 xxx 0 0 bowq 23 0 0 5 0 0 0 1 100 350 200 0 0 -1 0 1 0 non 0 3 5 0 0 255 1 3 0 0 255 0 0 0 0 255 3 4 3 4 255 0 0 0 0 255 0 0 0 0 255 3 4 3 4 255 0 0 0 0 255 0 0 0 0 255 2 3 0 0 255 2 3 0 0 255 0 0 0 0 255 3 4 0 0 255 0 0 0 0 255 3 4 0 0 255 3 4 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1 0
Torch Torch 1 0 0 0 0 0 0 1 50 tch bsh 7 1 2 0 0 0 flptrch invtrch 0 xxx 0 0 torc 28 0 1 3 6 0 0 0 2 10 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Bolts Bolts 0 0 0 0 1 1 0 1 256 cqv cqv 16 1 3 0 0 0 flpqvr invcqv 0 xxx 0 0 xboq 23 0 0 5 0 0 0 1 60 250 150 0 0 -1 0 1 0 non 0 2 4 0 0 255 2 4 0 0 255 0 0 0 0 255 3 4 3 4 255 0 0 0 0 255 0 0 0 0 255 3 4 3 4 255 0 0 0 0 255 0 0 0 0 255 2 3 0 0 255 2 3 0 0 255 0 0 0 0 255 3 4 0 0 255 0 0 0 0 255 3 4 0 0 255 3 4 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1 0
Town Portal Scroll Town Portal Scroll 1 0 0 0 2 1 0 1 100 tsc bsc 16 1 1 0 0 0 flpbsc invbsc 0 xxx 1 0 scro 26 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 11 17 0 0 255 0 0 0 0 255 0 0 0 0 255 11 17 11 17 255 0 0 0 0 255 0 0 0 0 255 11 17 11 17 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 7 0 0 255 0 0 0 0 255 0 0 0 0 255 5 7 0 0 255 0 0 0 xxx xxx 0 0 1 0
Identify Scroll Identify Scroll 1 0 0 0 2 1 0 1 80 isc rsc 16 1 1 0 0 0 flprsc invrsc 0 xxx 1 0 scro 26 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 11 17 0 0 255 0 0 0 0 255 0 0 0 0 255 11 17 11 17 255 0 0 0 0 255 0 0 0 0 255 11 17 11 17 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 7 0 0 255 0 0 0 0 255 0 0 0 0 255 5 7 0 0 255 0 0 0 xxx xxx 0 0 1 0
Not used Heart 0 0 0 0 1 0 0 1 60 hrt hrt 16 1 1 0 0 0 flphrt invhrt 1 hpo 0 0 0 0 body 20 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Brain 0 0 0 0 1 0 0 1 60 brz brz 16 1 1 0 0 0 flpbrnz invbrnz 1 opm 1 1 0 0 body 20 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Jawbone 0 0 0 0 1 0 0 1 75 jaw jaw 16 1 1 0 0 0 flpjaw invjaw 1 cqv 10 40 0 0 body 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Eye 0 0 0 0 1 0 0 1 45 eyz eyz 16 1 1 0 0 0 flpeye inveye 1 mpo 0 0 0 0 body 20 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Horn 0 0 0 0 1 0 0 1 48 hrn hrn 16 1 1 0 0 0 flphorn invhorn 1 aqv 10 40 0 0 body 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Tail 0 0 0 0 1 0 0 1 63 tal tal 16 1 1 0 0 0 flptail invtail 1 vps 0 0 0 0 body 20 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Flag 0 0 0 0 1 0 0 1 98 flg flg 16 1 2 0 0 0 flpflag invflag 0 xxx 0 0 body 17 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Fang 0 0 0 0 1 0 0 1 80 fng fng 16 1 1 0 0 0 flpfang invfang 1 key 1 1 0 0 body 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Quill 0 0 0 0 1 0 0 1 32 qll qll 16 1 1 0 0 0 flpquil invquil 1 aqv 10 40 0 0 body 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Soul 0 0 0 0 1 0 0 1 100 sol sol 16 1 1 0 0 0 flpsple invsple 1 mpo 0 0 0 0 body 24 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Scalp 0 0 0 0 1 0 0 1 40 scz scz 16 1 1 0 0 0 flpscp invscp 1 hpf 0 0 0 0 body 20 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Not used Spleen 0 0 0 0 1 0 0 1 85 spe spe 16 1 1 0 0 0 flpsple invsple 1 gps 1 1 0 0 body 20 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Skeleton Key Skeleton Key 0 0 0 0 1 1 0 1 45 key key 16 1 1 0 0 0 flpkey invkey 0 xxx 0 0 key 15 0 0 5 0 0 0 1 1 12 6 0 0 -1 0 0 0 non 0 0 0 0 0 255 5 9 5 9 255 1 2 1 2 255 0 0 0 0 255 6 9 6 9 255 0 0 0 0 255 2 3 2 3 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 2 255 0 0 0 xxx xxx 0 0 1 0
Mephisto Key Mephisto Key 0 0 0 0 1 0 0 1 99999 luv key 16 1 2 0 0 0 flpmph invmph 0 xxx 0 0 key 15 0 0 5 0 0 0 0 0 0 0 20 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
scroll of self resurrect scroll of self resurrect 0 0 0 0 999 0 0 1 10000 xyz scr 16 1 1 0 0 0 flpwps invxyz 0 xxx 1 0 ques 22 0 0 5 0 0 0 0 0 0 0 19 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
jade figurine jade figurine 1 0 0 0 0 0 0 1 100 j34 bks 16 1 2 0 0 0 flpjbi invjbi 0 xxx 0 0 ques 24 1 0 3 0 0 0 0 0 0 0 19 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
gold bird gold bird 1 0 0 0 0 0 0 1 100 g34 bks 16 1 2 0 0 0 flpgbi invgbi 0 xxx 0 0 ques 24 1 0 4 0 0 0 0 0 0 0 19 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
lam esen's tome lam esen's tome 1 0 0 0 0 0 0 1 100 bbb bbb 16 2 2 0 0 0 flpbbb invbbb 0 xxx 0 0 ques 3 1 0 5 0 0 0 0 0 0 0 16 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Horadric Cube Horadric Cube 0 0 0 0 0 0 0 1 0 box rbk 16 2 2 0 0 0 flpbox invbox 0 xxx 1 0 ques 24 0 0 5 0 0 0 0 0 0 0 10 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Scroll of Horadric Quest Info Scroll of Horadric Quest Info 1 0 0 0 999 0 0 1 0 tr1 grg 16 2 2 0 0 0 flphscr invhscr 0 xxx 0 0 ques 3 1 0 5 0 0 0 0 0 0 0 10 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Mephisto SoulStone Mephisto SoulStone 1 0 0 0 999 0 0 1 0 mss scr 16 1 1 0 0 0 flpmss invmss 0 xxx 0 0 ques 9 1 0 5 0 0 0 0 0 0 0 23 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Book of Skill Book of Skill 1 0 0 0 999 0 0 1 0 ass tbk 16 2 2 0 0 0 flpbbk invsbk 0 xxx 1 0 ques 3 1 0 5 0 0 0 0 0 0 0 15 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
KhalimEye KhalimEye 1 0 0 0 1 0 0 1 45 qey eyz 16 1 1 0 0 0 flpeye inveye 0 xxx 0 0 ques 20 0 0 5 0 0 0 0 0 0 0 17 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
KhalimHeart KhalimHeart 1 0 0 0 1 0 0 1 60 qhr hrt 16 1 1 0 0 0 flphrt invhrt 0 xxx 0 0 ques 20 0 0 5 0 0 0 0 0 0 0 17 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
KhalimBrain KhalimBrain 1 0 0 0 1 0 0 1 60 qbr brz 16 1 1 0 0 0 flpbrnz invbrnz 0 xxx 0 0 ques 20 0 0 5 0 0 0 0 0 0 0 17 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Player Ear Player Ear 1 0 0 0 1 0 0 1 0 ear ear 16 1 1 0 0 0 flpear invear 0 xxx 0 0 play 20 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Chipped Amethyst Chipped Amethyst 1 0 0 1 2 1 0 1 500 gcv gcv 16 1 1 0 0 0 flpgsv invgsva 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gfv 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawed Amethyst Flawed Amethyst 1 0 0 5 3 1 0 1 1500 gfv gfv 16 1 1 0 0 0 flpgsv invgsvb 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gsv 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Amethyst Amethyst 1 0 0 12 4 1 0 1 5000 gsv gsv 16 1 1 0 0 0 flpgsv invgsvc 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gzv 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawless Amethyst Flawless Amethyst 1 0 0 15 5 1 0 1 15000 gzv gzv 16 1 1 0 0 0 flpgsv invgsvd 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gpv 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Perfect Amethyst Perfect Amethyst 1 0 0 18 6 1 0 1 30000 gpv gpv 16 1 1 0 0 0 flpgsv invgsve 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Chipped Topaz Chipped Topaz 1 0 0 1 3 1 0 1 500 gcy gcy 16 1 1 0 0 0 flpgsy invgsya 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gfy 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawed Topaz Flawed Topaz 1 0 0 5 4 1 0 1 1500 gfy gfy 16 1 1 0 0 0 flpgsy invgsyb 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gsy 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Topaz Topaz 1 0 0 12 5 1 0 1 5000 gsy gsy 16 1 1 0 0 0 flpgsy invgsyc 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gly 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawless Topaz Flawless Topaz 1 0 0 15 6 1 0 1 15000 gly gly 16 1 1 0 0 0 flpgsy invgsyd 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gpy 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Perfect Topaz Perfect Topaz 1 0 0 18 7 1 0 1 30000 gpy gpy 16 1 1 0 0 0 flpgsy invgsye 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Chipped Saphire Chipped Saphire 1 0 0 1 4 1 0 1 500 gcb gcb 16 1 1 0 0 0 flpgsb invgsba 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gfb 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawed Saphire Flawed Saphire 1 0 0 5 5 1 0 1 1500 gfb gfb 16 1 1 0 0 0 flpgsb invgsbb 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gsb 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Saphire Saphire 1 0 0 12 6 1 0 1 5000 gsb gsb 16 1 1 0 0 0 flpgsb invgsbc 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 glb 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawless Saphire Flawless Saphire 1 0 0 15 7 1 0 1 15000 glb glb 16 1 1 0 0 0 flpgsb invgsbd 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gpb 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Perfect Saphire Perfect Saphire 1 0 0 18 8 1 0 1 30000 gpb gpb 16 1 1 0 0 0 flpgsb invgsbe 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Chipped Emerald Chipped Emerald 1 0 0 1 5 1 0 1 500 gcg gcg 16 1 1 0 0 0 flpgsg invgsga 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gfg 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawed Emerald Flawed Emerald 1 0 0 5 6 1 0 1 1500 gfg gfg 16 1 1 0 0 0 flpgsg invgsgb 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gsg 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Emerald Emerald 1 0 0 12 7 1 0 1 5000 gsg gsg 16 1 1 0 0 0 flpgsg invgsgc 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 glg 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawless Emerald Flawless Emerald 1 0 0 15 8 1 0 1 15000 glg glg 16 1 1 0 0 0 flpgsg invgsgd 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gpg 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Perfect Emerald Perfect Emerald 1 0 0 18 9 1 0 1 30000 gpg gpg 16 1 1 0 0 0 flpgsg invgsge 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Chipped Ruby Chipped Ruby 1 0 0 1 6 1 0 1 500 gcr gcr 16 1 1 0 0 0 flpgsr invgsra 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gfr 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawed Ruby Flawed Ruby 1 0 0 5 7 1 0 1 1500 gfr gfr 16 1 1 0 0 0 flpgsr invgsrb 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gsr 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Ruby Ruby 1 0 0 12 8 1 0 1 5000 gsr gsr 16 1 1 0 0 0 flpgsr invgsrc 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 glr 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawless Ruby Flawless Ruby 1 0 0 15 9 1 0 1 15000 glr glr 16 1 1 0 0 0 flpgsr invgsrd 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gpr 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Perfect Ruby Perfect Ruby 1 0 0 18 10 1 0 1 30000 gpr gpr 16 1 1 0 0 0 flpgsr invgsre 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Chipped Diamond Chipped Diamond 1 0 0 1 7 1 0 1 500 gcw gcw 16 1 1 0 0 0 flpgsw invgswa 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gfw 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawed Diamond Flawed Diamond 1 0 0 5 8 1 0 1 1500 gfw gfw 16 1 1 0 0 0 flpgsw invgswb 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gsw 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Diamond Diamond 1 0 0 12 9 1 0 1 5000 gsw gsw 16 1 1 0 0 0 flpgsw invgswc 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 glw 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawless Diamond Flawless Diamond 1 0 0 15 10 1 0 1 15000 glw glw 16 1 1 0 0 0 flpgsw invgswd 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 gpw 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Perfect Diamond Perfect Diamond 1 0 0 18 11 1 0 1 30000 gpw gpw 16 1 1 0 0 0 flpgsw invgswe 0 xxx 0 0 gem 9 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Lesser Healing Potion Lesser Healing Potion 1 0 0 0 1 1 0 1 30 hp1 hp1 16 1 1 0 0 0 flprps invhp1 0 xxx 1 0 hpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 8 16 0 0 255 0 0 0 0 255 4 8 0 0 255 2 4 0 0 255 0 0 0 0 255 0 0 0 0 255 2 4 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 4 0 0 255 0 0 0 0 255 0 0 0 0 255 2 4 0 0 255 0 0 0 hp4 hp5 0 0 1 0
Light Healing Potion Light Healing Potion 1 0 0 0 1 1 0 1 75 hp2 hp2 16 1 1 0 0 0 flprps invhp2 0 xxx 1 0 hpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 8 16 0 0 255 4 8 0 0 255 0 0 0 0 255 0 0 0 0 255 4 8 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 4 0 0 255 0 0 0 0 255 0 0 0 0 255 2 4 0 0 255 0 0 0 hp4 hp5 0 0 1 0
Healing Potion Healing Potion 1 0 0 0 1 1 0 1 125 hp3 hp3 16 1 1 0 0 0 flprps invhp3 0 xxx 1 0 hpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 8 16 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 4 8 0 0 255 0 0 0 0 255 0 0 0 0 255 4 8 0 0 255 0 0 0 hp4 hp5 0 0 1 0
Strong Healing Potion Strong Healing Potion 1 0 0 0 1 1 0 1 250 hp4 hp4 16 1 1 0 0 0 flprpl invhp4 0 xxx 1 0 hpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 8 16 0 0 255 0 0 0 0 255 0 0 0 0 255 8 16 0 0 255 0 0 0 xxx hp5 0 0 1 0
Greater Healing Potion Greater Healing Potion 1 0 0 0 1 1 0 1 500 hp5 hp5 16 1 1 0 0 0 flprpl invhp5 0 xxx 1 0 hpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1 0
Lesser Mana Potion Lesser Mana Potion 1 0 0 0 1 1 0 1 30 mp1 mp1 16 1 1 0 0 0 flpbps invmp1 0 xxx 1 0 mpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Light Mana Potion Light Mana Potion 1 0 0 0 1 1 0 1 75 mp2 mp2 16 1 1 0 0 0 flpbps invmp2 0 xxx 1 0 mpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Mana Potion Mana Potion 1 0 0 0 1 1 0 1 125 mp3 mp3 16 1 1 0 0 0 flpbps invmp3 0 xxx 1 0 mpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Strong Mana Potion Strong Mana Potion 1 0 0 0 1 1 0 1 250 mp4 mp4 16 1 1 0 0 0 flpbpl invmp4 0 xxx 1 0 mpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Greater Mana Potion Greater Mana Potion 1 0 0 0 1 1 0 1 500 mp5 mp5 16 1 1 0 0 0 flpbpl invmp5 0 xxx 1 0 mpot 22 0 0 5 0 1 1 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Chipped Skull Chipped Skull 1 0 0 1 8 1 0 1 1000 skc skc 16 1 1 0 0 0 flpskl invskc 0 xxx 0 0 gem 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 skf 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawed Skull Flawed Skull 1 0 0 5 9 1 0 1 3000 skf skf 16 1 1 0 0 0 flpskl invskf 0 xxx 0 0 gem 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 sku 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Skull Skull 1 0 0 12 10 1 0 1 10000 sku sku 16 1 1 0 0 0 flpskl invsku 0 xxx 0 0 gem 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 skl 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Flawless Skull Flawless Skull 1 0 0 15 11 1 0 1 30000 skl skl 16 1 1 0 0 0 flpskl invskl 0 xxx 0 0 gem 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 skz 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Perfect Skull Perfect Skull 1 0 0 18 12 1 0 1 100000 skz skz 16 1 1 0 0 0 flpskl invskz 0 xxx 0 0 gem 19 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Expansion Expansion
herb herb 0 100 3 0 3 0 0 1 75 hrb hrb 16 1 1 0 0 0 flphrb invhrb 0 xxx 1 0 herb 13 0 0 5 0 1 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Charm Small Charm Small 0 100 28 0 4 1 0 1 2000 45000 cm1 rld 16 1 1 0 0 0 flpchm1 invchm 0 xxx 0 0 scha 37 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Charm Medium Charm Medium 0 100 14 0 8 1 0 1 1000 38000 cm2 rda 16 1 2 0 0 0 flpchm2 invwnd 0 xxx 0 0 mcha 37 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Charm Large Charm Large 0 100 1 0 12 1 0 1 600 32000 cm3 rgd 16 1 3 0 0 0 flpchm3 invsst 0 xxx 0 0 lcha 37 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Small Red Potion Small Red Potion 1 100 0 0 1 0 0 1 100 rps rps 16 1 1 0 0 0 flprps invrps 0 xxx 1 0 hpot 22 0 0 5 0 0 0 1 5 10 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Large Red Potion Large Red Potion 1 100 0 0 1 0 0 1 100 rpl rpl 16 1 1 0 0 0 flprpl invrpl 0 xxx 1 0 hpot 22 0 0 5 0 0 0 1 5 10 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Small Blue Potion Small Blue Potion 1 100 0 0 1 0 0 1 100 bps bps 16 1 1 0 0 0 flpbps invbps 0 xxx 1 0 mpot 22 0 0 5 0 0 0 1 5 10 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Large Blue Potion Large Blue Potion 1 100 0 0 1 0 0 1 100 bpl bpl 16 1 1 0 0 0 flpbpl invbpl 0 xxx 1 0 mpot 22 0 0 5 0 0 0 1 5 10 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
El Rune El 1 100 11 11 1 1 0 1 560 r01 r01 16 1 1 0 0 0 flprun invrEl 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Eld Rune Eld 1 100 11 11 1 1 0 1 560 r02 r02 16 1 1 0 0 0 flprun invrEld 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Tir Rune Tir 1 100 13 13 2 1 0 1 1260 r03 r03 16 1 1 0 0 0 flprun invrTir 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Nef Rune Nef 1 100 13 13 2 1 0 1 1260 r04 r04 16 1 1 0 0 0 flprun invrNef 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Eth Rune Eth 1 100 15 15 3 1 0 1 2240 r05 r05 16 1 1 0 0 0 flprun invrEth 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Ith Rune Ith 1 100 15 15 3 1 0 1 2240 r06 r06 16 1 1 0 0 0 flprun invrIth 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Tal Rune Tal 1 100 17 17 4 1 0 1 3500 r07 r07 16 1 1 0 0 0 flprun invrTal 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Ral Rune Ral 1 100 19 19 5 1 0 1 5040 r08 r08 16 1 1 0 0 0 flprun invrRal 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Ort Rune Ort 1 100 21 21 6 1 0 1 6860 r09 r09 16 1 1 0 0 0 flprun invrOrt 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Thul Rune Thul 1 100 23 23 7 1 0 1 8960 r10 r10 16 1 1 0 0 0 flprun invrThul 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Amn Rune Amn 1 100 25 25 8 1 0 1 11340 r11 r11 16 1 1 0 0 0 flprun invrAmn 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Sol Rune Sol 1 100 27 27 9 1 0 1 14000 r12 r12 16 1 1 0 0 0 flprun invrSol 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Shael Rune Shael 1 100 29 29 10 1 0 1 16940 r13 r13 16 1 1 0 0 0 flprun invrShae 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Dol Rune Dol 1 100 31 31 11 1 0 1 20160 r14 r14 16 1 1 0 0 0 flprun invrDol 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Hel Rune Hel 1 100 33 0 12 1 0 1 1715 r15 r15 16 1 1 0 0 0 flprun invrHel 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Io Rune Io 1 100 35 35 13 1 0 1 27440 r16 r16 16 1 1 0 0 0 flprun invrIo 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Lum Rune Lum 1 100 37 37 14 1 0 1 31500 r17 r17 16 1 1 0 0 0 flprun invrLum 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Ko Rune Ko 1 100 39 39 15 1 0 1 35840 r18 r18 16 1 1 0 0 0 flprun invrKo 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Fal Rune Fal 1 100 41 41 16 1 0 1 40460 r19 r19 16 1 1 0 0 0 flprun invrFal 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Lem Rune Lem 1 100 43 43 17 1 0 1 45360 r20 r20 16 1 1 0 0 0 flprun invrLem 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Pul Rune Pul 1 100 45 45 18 1 0 1 50540 r21 r21 16 1 1 0 0 0 flprun invrPul 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Um Rune Um 1 100 47 47 19 1 0 1 56000 r22 r22 16 1 1 0 0 0 flprun invrUm 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Mal Rune Mal 1 100 49 49 20 1 0 1 61740 r23 r23 16 1 1 0 0 0 flprun invrMal 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Ist Rune Ist 1 100 51 51 21 1 0 1 67760 r24 r24 16 1 1 0 0 0 flprun invrIst 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Gul Rune Gul 1 100 53 53 22 1 0 1 74060 r25 r25 16 1 1 0 0 0 flprun invrGul 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Vex Rune Vex 1 100 55 55 23 1 0 1 80640 r26 r26 16 1 1 0 0 0 flprun invrVex 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Ohm Rune Ohm 1 100 57 57 24 1 0 1 87500 r27 r27 16 1 1 0 0 0 flprun invrOhm 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Lo Rune Lo 1 100 59 59 25 1 0 1 94640 r28 r28 16 1 1 0 0 0 flprun invrLo 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Sur Rune Sur 1 100 61 61 26 1 0 1 102060 r29 r29 16 1 1 0 0 0 flprun invrSur 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Ber Rune Ber 1 100 63 63 27 1 0 1 109760 r30 r30 16 1 1 0 0 0 flprun invrBer 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Jo Rune Jo 1 100 65 65 28 1 0 1 117740 r31 r31 16 1 1 0 0 0 flprun invrJo 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Cham Rune Cham 1 100 67 67 29 1 0 1 126000 r32 r32 16 1 1 0 0 0 flprun invrCham 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Zod Rune Zod 1 100 69 69 30 1 0 1 134540 r33 r33 16 1 1 0 0 0 flprun invrZod 0 xxx 0 0 rune 39 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Jewel Jewel 0 100 1 0 8 1 0 1 1000 jew gpw 16 1 1 0 0 0 flpgsw invgswe 0 xxx 0 0 jewl 38 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Maguffin ice 0 100 0 0 999 0 0 1 10000 ice scr 16 1 1 0 0 0 flpwps invxyz 0 xxx 0 0 ques 22 0 0 5 0 0 0 0 0 0 0 32 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Scroll Scroll 0 100 0 0 0 1 0 1 100 0sc rsc 16 1 1 0 0 0 flprsc invrsc 0 xxx 1 0 scro 26 0 0 5 0 0 0 0 0 0 0 0 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0
Scroll of Malah - Boost Resistances Scroll of Malah - Boost Resistances 1 100 0 0 999 0 0 1 0 tr2 scr 16 2 2 0 0 0 flpscr invscb 0 xxx 1 0 ques 26 1 0 5 0 0 0 0 0 0 0 32 0 -1 0 0 0 non 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0 0

44
txt/MissCalc.txt Normal file
View File

@ -0,0 +1,44 @@
code *desc
par1 param1
par2 param2
par3 param3
par4 param4
par5 param5
cpa1 cltparam1
cpa2 cltparam2
cpa3 cltparam3
cpa4 cltparam4
cpa5 cltparam5
hpa1 hitparam1
hpa2 hitparam2
hpa3 hitparam3
chp1 clthitpar1
chp2 clthitpar2
chp3 clthitpar3
dpa1 dmgparam1
dpa2 dmgparam2
lvl missile level
edmn elemental damage min
edmx elemental damage max
edln elemental damage len
edns "elemental damage min, 256ths"
edxs "elemental damage max, 256ths"
damn damage min
damx damage max
dmns "damage min, 256ths"
dmxs "damage max, 256ths"
rang range
sl12 par1 + (lvl-1) * par2
sd12 ((110*lvl) * (par2-par1))/(100 * (lvl+6)) + par1
sl34 par3 + (lvl-1) * par4
sd34 ((110*lvl) * (par4-par3))/(100 * (lvl+6)) + par3
cl12 cpa1 + (lvl-1) * cpa2
cd12 ((110*lvl) * (cpa2-cpa1))/(100 * (lvl+6)) + cpa1
cl34 cpa3 + (lvl-1) * cpa4
cd34 ((110*lvl) * (cpa4-cpa3))/(100 * (lvl+6)) + cpa3
shl1 hpa1 + (lvl-1) * hpa2
shd1 ((110*lvl) * (hpa2-hpa1))/(100 * (lvl+6)) + hpa1
chl1 chp1 + (lvl-1) * chp2
chd1 ((110*lvl) * (chp2-chp1))/(100 * (lvl+6)) + chp1
dl12 dpa1 + (lvl-1) * dpa2
dd12 ((110*lvl) * (dpa2-dpa1))/(100 * (lvl+6)) + dpa1

646
txt/Missiles.txt Normal file
View File

@ -0,0 +1,646 @@
Missile Id Vel MaxVel Accel Range LevRange Light Flicker Red Green Blue InitSteps Activate LoopAnim CelFile AnimLen AnimSpeed RandStart SubLoop SubStart SubStop CollideType CollideKill CollideFriend LastCollide Collision ClientCol ClientSend NextHit NextDelay Size CanDestroy ToHit AlwaysExplode Explosion CanSlow ReturnFire GetHit KnockBack Trans Qty Pierce Param1 Param1 Comment Param2 Param2 Comment SpecialSetup Open Beta Skill HitShift SrcDamage MinDamage MaxDamage LevDam1 LevDam2 LevDam3 EType EMin Emax ELev1 ELev2 ELev3 ELen ELevLen1 ELevLen2 ELevLen3 HitClass NumDirections LocalBlood
Arrow 0 24 24 0 40 0 0 0 255 255 255 1 0 0 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
Javelin 1 24 24 0 40 0 0 0 255 255 255 0 0 0 Javelin 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
Bighead1 2 8 8 0 40 0 5 0 143 143 255 3 0 1 BigheadLightningMissile 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 3 7 4 4 4 0 0 0 0 0 1 0
Bighead2 3 12 12 0 40 0 5 0 143 143 255 3 0 1 BigheadLightningMissile 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 3 6 4 4 4 0 0 0 0 0 1 0
Bighead3 4 14 14 0 40 0 5 0 143 143 255 3 0 1 BigheadLightningMissile 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 2 4 3 3 3 0 0 0 0 0 1 0
Bighead4 5 10 10 0 40 0 5 0 143 143 255 3 0 1 BigheadLightningMissile 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 2 5 3 3 3 0 0 0 0 0 1 0
Bighead5 6 16 16 0 40 0 5 0 143 143 255 3 0 1 BigheadLightningMissile 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 6 15 5 5 5 0 0 0 0 0 1 0
Spike1 7 10 10 0 40 0 0 0 255 255 255 1 0 1 SpikeFiendMissle 2 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 2 3 3 3 0 0 0 0 0 0 0 0 0 10 32 0
Spike2 8 13 13 0 40 0 0 0 255 255 255 1 0 1 SpikeFiendMissle 2 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 3 3 3 3 0 0 0 0 0 0 0 0 0 10 32 0
Spike3 9 16 16 0 40 0 0 0 255 255 255 1 0 1 SpikeFiendMissle 2 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 4 3 3 3 0 0 0 0 0 0 0 0 0 10 32 0
Spike4 10 20 20 0 40 0 0 0 255 255 255 1 0 1 SpikeFiendMissle 2 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 4 4 4 4 0 0 0 0 0 0 0 0 0 10 32 0
Spike5 11 24 24 0 40 0 0 0 255 255 255 1 0 1 SpikeFiendMissle 2 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 2 7 5 5 5 0 0 0 0 0 0 0 0 0 10 32 0
FireArrow 12 24 24 0 40 0 5 0 255 178 64 1 0 1 FireArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 1 1 0 none 0 none 0 1 1 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
CRArrow1 13 14 14 0 40 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 3 3 3 3 0 0 0 0 0 0 0 0 0 10 32 0
CRArrow2 14 16 16 0 40 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 4 4 4 4 0 0 0 0 0 0 0 0 0 10 32 0
CRArrow3 15 18 18 0 40 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 2 4 4 4 4 0 0 0 0 0 0 0 0 0 10 32 0
CRArrow4 16 20 20 0 40 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 2 5 4 4 4 0 0 0 0 0 0 0 0 0 10 32 0
CRArrow5 17 24 24 0 40 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 3 8 5 5 5 0 0 0 0 0 0 0 0 0 10 32 0
Blood1 18 3 3 0 128 0 0 0 255 255 255 0 0 0 BloodSmall01 9 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1
Blood2 19 4 4 0 128 0 0 0 255 255 255 0 0 0 BloodSmall02 9 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1
BigBlood1 20 3 3 0 128 0 0 0 255 255 255 0 0 0 BloodLarge01 9 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1
BigBlood2 21 4 4 0 128 0 0 0 255 255 255 0 0 0 BloodLarge02 9 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 1
ShaFire1 22 8 8 0 40 0 5 0 255 178 64 1 0 1 ShamanFireball 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 1 4 4 4 4 0 0 0 0 0 16 0
ShaFire2 23 10 10 0 40 0 5 0 255 178 64 1 0 1 ShamanFireball 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 2 6 4 4 4 0 0 0 0 0 16 0
ShaFire3 24 12 12 0 40 0 5 0 255 178 64 1 0 1 ShamanFireball 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 2 7 4 4 4 0 0 0 0 0 16 0
ShaFire4 25 16 16 0 40 0 5 0 255 178 64 1 0 1 ShamanFireball 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 2 8 4 4 4 0 0 0 0 0 16 0
ShaFire5 26 20 20 0 40 0 5 0 255 178 64 1 0 1 ShamanFireball 3 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 8 14 5 5 5 0 0 0 0 0 16 0
MagicArrow 27 24 24 0 40 0 3 0 255 255 255 1 0 1 SafeArrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
IceArrow 28 24 24 0 40 0 5 0 81 81 255 1 0 1 IceArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 1 1 0 none 0 none 0 1 1 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
FireExplode 29 0 0 0 12 0 13 0 255 178 64 0 0 0 FireArrowExplode2 12 16 5 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
IceExplode 30 0 0 0 16 0 11 0 81 81 255 0 0 0 IceArrowExplode 16 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Bolt 31 24 24 0 50 0 0 0 255 255 255 1 0 0 XBowBolt 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
Andrial 32 15 15 0 40 0 0 0 255 255 255 3 0 1 AndarielSpell 24 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 193 103 0 none 0 1 1 0 0 0 1792 2560 1280 1280 1280 pois 32 64 32 32 32 400 0 0 0 0 1 0
BigHeadExp 33 0 0 0 6 0 8 0 143 143 255 0 0 0 BigheadLightningExplosion 7 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ShamanExp 34 0 0 0 11 0 8 0 255 178 64 0 0 0 ShamanFireballExplodeFinal 12 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ThrowAxe 35 24 24 0 20 0 0 0 255 255 255 1 0 1 MissileHandAxe 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 32 0
ThrowKnife 36 24 24 0 20 0 0 0 255 255 255 1 0 0 MissileDagger 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
Glaive 37 24 24 0 40 0 0 0 255 255 255 0 0 0 Glaive 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
PoisonJav 38 24 24 0 15 0 0 0 128 255 128 0 0 0 Javelin 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
PoisonJavCloud 39 0 0 0 60 0 0 0 128 255 128 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 2 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 1 1 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 8 0
ColdArrow 40 24 24 0 20 0 5 0 81 81 255 1 0 1 IceArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 1 1 0 none 0 none 0 1 1 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
ExplodingArrow 41 24 24 0 40 0 5 0 255 178 64 1 0 1 FireArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 1 1 3 Radius 0 none 0 1 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
ExplodingArrowExplode 42 0 0 0 16 0 15 0 255 178 64 0 0 0 ExpArrowExplode 16 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
PlagueJavelin 43 24 24 0 15 0 4 0 128 255 128 0 0 0 Javelin 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 1 1 0 none 0 none 0 0 0 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
OilPotion 44 16 16 0 30 0 0 0 255 128 128 0 0 0 mslops 8 16 0 0 0 0 6 1 0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 0 0 1 1 2 Radius 0 none 1 1 1 0 8 0 2 7 0 0 0 fire 3 8 0 0 0 0 0 0 0 0 1 0
ExplosivePotion 45 16 16 0 30 0 0 0 255 128 128 0 0 0 mslopm 8 16 0 0 0 0 6 1 0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 0 0 1 1 3 Radius 0 none 1 1 1 0 8 0 8 12 0 0 0 fire 8 18 0 0 0 0 0 0 0 0 1 0
FulminatingPotion 46 16 16 0 30 0 0 0 255 128 128 0 0 0 mslopl 8 16 0 0 0 0 6 1 0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 0 0 1 1 6 Radius 0 none 1 1 1 0 8 0 13 30 0 0 0 fire 13 34 0 0 0 0 0 0 0 0 1 0
RancidGasPotion 47 16 16 0 30 0 0 0 128 255 128 0 0 0 mslgps 8 16 0 0 0 0 6 1 0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 0 0 1 1 30 Poison Length 0 none 1 1 1 0 8 0 0 0 0 0 0 pois 48 48 0 0 0 50 0 0 0 0 1 0
ChokingGasPotion 48 16 16 0 30 0 0 0 128 255 128 0 0 0 mslgpm 8 16 0 0 0 0 6 1 0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 0 0 1 1 60 Poison Length 0 none 1 1 1 0 8 0 0 0 0 0 0 pois 144 144 0 0 0 50 0 0 0 0 1 0
StranglingGasPotion 49 16 16 0 30 0 0 0 128 255 128 0 0 0 mslgpl 8 16 0 0 0 0 6 1 0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 0 0 1 1 90 Poison Length 0 none 1 1 1 0 8 0 0 0 0 0 0 pois 192 192 0 0 0 50 0 0 0 0 1 0
Not Used 50 0 0 0 0 0 0 0 255 255 255 0 0 0 null 2 16 0 0 0 0 3 1 0 1 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 1 1 0 acid (destroys AC or dur) 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ExplosivePotionExp 51 0 0 0 12 0 13 0 255 178 64 0 0 0 PotionExplode 29 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 2 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ExplosivePotionDebris1 52 0 0 0 0 0 0 0 255 255 255 0 0 0 PotionExplodeDebris01 29 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ExplosivePotionDebris2 53 0 0 0 0 0 0 0 255 255 255 0 0 0 PotionExplodeDebris02 29 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ExplosivePotionDebris3 54 0 0 0 0 0 0 0 255 255 255 0 0 0 PotionExplodeDebris03 29 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HolyBolt 55 20 20 0 50 0 7 0 222 222 255 1 0 1 HolyBoltMissile 16 16 0 0 0 0 3 1 1 1 0 1 0 0 0 1 0 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 101 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ChargedBolt 56 12 12 0 98 0 3 1 255 255 255 1 0 1 ChargedBolt 10 16 0 1 2 8 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 38 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
SanctuaryBolt 57 0 0 0 14 0 0 0 222 222 255 0 0 1 Gleam 8 16 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
FireBolt 58 20 20 0 50 0 7 0 255 178 64 1 0 1 Firebolt 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
IceBolt 59 12 12 0 50 0 7 0 81 81 255 1 0 1 Icebolt 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
InfernoFlame1 60 12 12 0 30 0 5 0 255 178 64 1 0 0 Flamethrower 15 16 0 0 0 0 3 0 0 0 2 0 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 8 "Mana Use, 16ths." 7 Minimum range 0 1 1 41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
InfernoFlame2 61 12 12 0 30 0 5 0 255 178 64 1 0 0 Flamethrower2 15 16 0 0 0 0 3 0 0 0 2 0 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 8 "Mana Use, 16ths." 7 Minimum range 0 1 1 41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
FireBall 62 20 20 0 50 0 7 0 255 178 64 1 0 1 Fireball 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 3 Radius 0 none 0 1 1 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
Mummy1 63 5 5 0 24 0 0 0 255 255 255 0 0 0 GreaterMummyBreath 24 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 0 1 0 1 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 0 0 0 0 0 pois 9 9 3 3 3 100 0 0 0 0 8 0
Mummy2 64 5 5 0 24 0 0 0 255 255 255 0 0 0 GreaterMummyBreath 24 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 0 1 0 1 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 0 0 0 0 0 pois 9 9 3 3 3 200 0 0 0 0 8 0
Mummy3 65 5 5 0 24 0 0 0 255 255 255 0 0 0 GreaterMummyBreath 24 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 0 1 0 1 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 0 0 0 0 0 pois 9 9 4 4 4 300 0 0 0 0 8 0
Mummy4 66 5 5 0 24 0 0 0 255 255 255 0 0 0 GreaterMummyBreath 24 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 0 1 0 1 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 0 0 0 0 0 pois 9 9 4 4 4 400 0 0 0 0 8 0
Blaze 67 0 0 0 90 25 5 1 255 178 64 0 0 1 groundFireBig 37 16 0 1 12 36 3 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
FirewallMaker 68 12 12 0 7 2 8 0 255 178 64 0 0 1 groundFireBig 2 16 0 1 1 2 8 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
Firewall 69 0 0 0 90 0 5 1 255 178 64 0 0 1 groundFireBig 37 16 0 1 12 36 3 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
GooSpit1 70 10 10 0 24 0 0 0 255 255 255 3 0 0 SandMaggotGooSpit 24 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 1 3 3 3 3 pois 4 4 3 3 3 200 0 0 0 176 16 0
GooSpit2 71 10 10 0 24 0 0 0 255 255 255 3 0 0 SandMaggotGooSpit 24 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 2 3 3 3 3 pois 5 5 3 3 3 300 0 0 0 176 16 0
GooSpit3 72 10 10 0 24 0 0 0 255 255 255 3 0 0 SandMaggotGooSpit 24 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 2 4 3 3 3 pois 6 6 3 3 3 400 0 0 0 176 16 0
GooSpit4 73 10 10 0 24 0 0 0 255 255 255 3 0 0 SandMaggotGooSpit 24 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 2 5 4 4 4 pois 7 7 3 3 3 500 0 0 0 176 16 0
GooSpit5 74 10 10 0 24 0 0 0 255 255 255 3 0 0 SandMaggotGooSpit 24 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 0 1 0 Client No Velocity 0 none 0 1 1 0 1 0 3 5 4 4 4 pois 8 8 3 3 3 600 0 0 0 176 16 0
GooSplat 75 0 0 0 15 0 0 0 255 255 255 0 0 0 GooHit 15 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Sand Pile 76 0 0 0 128 0 0 0 255 255 255 0 0 0 SandMaggotSandPile 1 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 Client No Velocity 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
UnHolyBolt1 77 12 12 0 40 0 5 0 0 0 0 1 0 1 UnholyBolt 16 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 2 0 1 0 none 0 none 0 0 0 0 8 0 3 6 4 4 4 0 0 0 0 0 0 0 0 0 0 1 0
UnHolyBolt2 78 12 12 0 40 0 5 0 0 0 0 1 0 1 UnholyBolt 16 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 2 0 1 0 none 0 none 0 0 0 0 8 0 3 7 4 4 4 0 0 0 0 0 0 0 0 0 0 1 0
UnHolyBolt3 79 12 12 0 40 0 5 0 0 0 0 1 0 1 UnholyBolt 16 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 2 0 1 0 none 0 none 0 0 0 0 8 0 4 8 4 4 4 0 0 0 0 0 0 0 0 0 0 1 0
UnHolyBolt4 80 12 12 0 40 0 5 0 0 0 0 1 0 1 UnholyBolt 16 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 2 0 1 0 none 0 none 0 0 0 0 8 0 4 9 4 4 4 0 0 0 0 0 0 0 0 0 0 1 0
SanctuaryCenter 81 0 0 0 125 0 0 0 0 0 0 0 0 1 sanctuary 40 16 0 1 10 30 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
FireExplosion 82 0 0 0 15 0 0 0 255 178 64 0 0 0 FireArrowExplode2 12 16 0 0 0 0 3 0 0 1 0 0 0 0 0 1 0 0 0 2 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 8 16 2 2 2 0 0 0 0 0 1 0
StuckArrow 83 1 1 0 128 0 0 0 0 0 0 0 0 0 ArrowInGround 1 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
FootPrint 84 0 0 0 128 0 0 0 0 0 0 0 0 0 Footsteps01 2 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
ImmolationArrow 85 24 24 0 40 0 9 0 255 178 64 1 0 1 FireArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 1 1 3 Radius 0 none 0 0 0 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
GuidedArrow 86 24 24 0 128 0 3 0 255 255 255 1 0 1 SafeArrow 1 16 0 0 0 0 3 1 0 0 1 1 0 0 0 1 1 0 1 0 1 1 1 0 1 1 0 0 none 0 none 0 0 0 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
FreezingArrow 87 24 24 0 40 0 5 0 81 81 255 1 0 1 IceArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 1 1 0 none 0 none 0 0 0 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
FreezingArrowExplode1 88 0 0 0 16 0 11 0 81 81 255 0 0 0 FreezeExplodeCenter 15 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
FreezingArrowExplode2 89 0 0 0 16 0 0 0 81 81 255 0 0 0 FreezeExplodeEjecta 15 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
Nova 90 24 24 -1000 13 0 0 0 255 255 255 0 0 0 ElectricNova 13 16 0 0 0 0 3 0 0 1 1 0 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 1 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
IceBlast 91 12 12 0 50 0 7 0 81 81 255 1 0 1 IceBlast 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Radius 0 none 0 1 1 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
BlessedHammer 92 18 30 250 120 0 5 0 222 222 255 6 0 1 blessedhammer 6 16 0 0 0 0 3 0 0 1 1 0 0 0 0 1 1 0 0 0 0 1 1 0 1 0 1 0 none 0 none 0 0 0 112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
ChainLightning 93 30 30 0 25 0 4 0 255 255 255 0 0 1 LightningStrike 8 16 0 0 0 0 3 1 0 1 1 1 0 1 4 2 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 32 0
FistOfAres 94 12 12 0 128 0 3 0 255 255 255 0 0 1 FOAorbiter 9 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ChillBlood 95 8 8 0 128 0 4 0 81 81 255 1 0 1 ChillBlood 16 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 1 0
GlacialSpike 96 16 16 0 40 0 5 0 81 81 255 1 0 1 GlacialSpike 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
Teleport 97 0 0 0 18 0 6 0 255 255 255 0 0 0 Teleport 18 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
LightningBolt 98 30 30 0 25 0 4 0 255 255 255 0 0 2 null 2 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
LightningHit 99 0 0 0 12 0 3 1 255 255 255 0 0 1 LightningStrike 8 16 0 1 0 7 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 2 5 2 2 2 0 0 0 0 64 32 0
Meteor 100 0 0 0 60 0 0 0 0 0 0 0 0 1 Meteor 12 16 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MeteorCenter 101 0 0 0 60 0 2 0 255 64 64 0 0 1 MeteorTargetIndicator 17 16 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MeteorTail 102 0 0 0 60 0 0 0 0 0 0 0 0 1 MeteorTail 12 16 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MeteorExplode 103 0 0 0 16 0 13 0 255 178 64 0 0 0 ExpArrowExplode 16 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 0 1 0 1 2 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
FireSmall 104 0 0 0 90 25 2 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 3 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 2 Rand Light Radius Add 0 none 0 1 1 0 0 0 0 0 0 0 0 fire 1 1 1 1 1 0 0 0 0 32 1 0
FireMedium 105 0 0 0 90 25 3 1 255 178 64 0 0 1 groundFireMedium 37 16 0 1 12 36 3 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 2 Rand Light Radius Add 0 none 0 1 1 0 0 0 0 0 0 0 0 fire 2 2 2 2 2 0 0 0 0 32 1 0
MonBlizCenter 106 0 0 0 25 15 9 0 81 81 255 0 0 1 null 2 16 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MonBliz1 107 0 0 0 9 0 0 0 0 0 0 0 0 1 icestormfallvar01 6 16 0 0 0 0 3 0 0 1 0 0 0 0 0 2 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 0 0 1 2 2 2 2 cold 4 9 2 2 2 0 0 0 0 0 1 0
MonBliz2 108 0 0 0 9 0 0 0 0 0 0 0 0 1 icestormfallvar02 6 16 0 0 0 0 3 0 0 1 0 0 0 0 0 2 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 0 0 1 2 2 2 2 cold 4 9 2 2 2 0 0 0 0 0 1 0
MonBliz3 109 0 0 0 9 0 0 0 0 0 0 0 0 1 icestormfallvar03 6 16 0 0 0 0 3 0 0 1 0 0 0 0 0 2 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 0 0 1 2 2 2 2 cold 4 9 2 2 2 0 0 0 0 0 1 0
MonBliz4 110 0 0 0 9 0 0 0 0 0 0 0 0 1 icestormfallvar04 6 16 0 0 0 0 3 0 0 1 0 0 0 0 0 2 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 0 0 1 2 2 2 2 cold 4 9 2 2 2 0 0 0 0 0 1 0
MonBlizExplode1 111 0 0 0 6 0 0 0 0 0 0 0 0 0 icestormimpactvar01 6 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MonBlizExplode2 112 0 0 0 6 0 0 0 0 0 0 0 0 0 icestormimpactvar02 6 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MonBlizExplode3 113 0 0 0 6 0 0 0 0 0 0 0 0 0 icestormimpactvar02 6 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Teeth 114 16 16 0 50 0 3 0 255 255 255 1 0 0 teethMissile 30 16 0 1 0 15 3 1 0 1 1 1 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
CorpseExplosion 115 0 0 0 13 0 5 0 255 178 64 0 0 0 CorpseExplodeGuts 13 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 1 0 none 0 none 0 1 1 74 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
PoisonCorpseExplosion 116 0 0 0 13 0 5 0 255 178 64 0 0 0 CorpseExplodeGutsPoison 13 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
MonsterCorpseExplode 117 0 0 0 13 0 5 0 255 178 64 0 0 0 CorpseExplodeGuts 13 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
PoisonNova 118 12 12 0 30 0 0 0 0 0 0 0 0 0 poisonNova 30 16 0 0 0 0 3 1 0 1 1 1 0 1 4 1 1 0 0 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 92 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 32 0
FrostNova 119 24 24 -1000 14 0 0 0 81 81 255 0 0 0 FrostNova 14 16 0 0 0 0 3 0 0 1 1 1 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 16 0
Rogue1 120 24 24 0 40 0 0 0 255 255 255 1 0 0 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 8 1 1 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
Rogue2 121 24 24 0 40 0 5 0 255 178 64 1 0 1 FireArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 8 1 1 0 0 0 fire 2 4 0 0 0 0 0 0 0 10 32 0
Rogue3 122 24 24 0 40 0 5 0 81 81 255 1 0 1 IceArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 8 1 1 0 0 0 cold 2 4 0 0 0 50 0 0 0 10 32 0
Bat Lightning Bolt 123 16 16 0 16 0 4 0 255 255 255 1 0 2 null 2 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Bat Lightning Trail 124 0 0 0 10 0 3 1 255 255 255 1 0 0 ChargedBolt 10 16 0 1 2 8 3 0 0 1 1 1 0 0 0 1 1 0 0 0 1 0 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 2 5 3 3 3 0 0 0 0 0 16 0
SkMage1 125 9 9 0 40 0 5 0 255 255 255 2 0 0 poisonNova 30 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 1 0 0 0 0 0 0 pois 9 9 6 6 6 150 0 0 0 0 32 0
SkMage2 126 12 12 0 40 0 5 0 255 255 255 2 0 1 Icebolt 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 cold 1 3 3 3 3 25 0 0 0 0 16 0
SkMage3 127 14 14 0 40 0 5 0 255 255 255 2 0 1 Firebolt 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 1 4 3 3 3 0 0 0 0 0 16 0
SkMage4 128 14 14 0 40 0 5 0 255 255 255 2 0 1 ChargedBolt 10 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 1 4 3 3 3 0 0 0 0 0 16 0
VampireFireball 129 14 14 0 30 0 8 0 255 178 64 1 0 1 Fireball 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 1 0 1 1 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 3 6 3 3 3 0 0 0 0 0 16 0
VampireFirewallMaker 130 12 12 0 10 0 8 0 255 178 64 0 0 1 groundFireBig 2 16 0 1 1 2 8 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
VampireFirewall 131 0 0 0 90 0 2 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 3 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 2 0 0 0 0 0 0 fire 2 4 2 2 2 0 0 0 0 32 1 0
VampireMeteor 132 0 0 0 60 0 0 0 0 0 0 0 0 1 Meteor 12 16 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 171 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
VampireMeteorCenter 133 0 0 0 60 0 2 0 255 64 64 0 0 1 MeteorTargetIndicator 17 16 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
VampireMeteorExplode 134 0 0 0 16 0 13 0 255 178 64 0 0 0 ExpArrowExplode 16 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 0 1 0 1 2 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Raven1 135 16 16 0 50 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 5 10 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
Raven2 136 16 16 0 50 0 9 0 255 178 64 1 0 1 FireArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 6 14 5 5 5 0 0 0 0 10 32 0
AmphibianGoo1 137 12 12 0 15 0 2 1 64 255 64 1 0 1 FrogPoisonMissile 7 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 33 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 fire 9 9 5 5 5 500 0 0 0 176 16 0
AmphibianGoo2 138 12 12 0 18 0 2 1 64 255 64 1 0 1 FrogPoisonMissile 7 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 33 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 fire 9 9 5 5 5 700 0 0 0 176 16 0
TentacleGoo 139 12 12 0 40 0 2 1 64 255 64 8 0 1 FrogPoisonMissile 7 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 1 0 1 1 1 33 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 pois 11 18 0 0 0 800 0 0 0 176 16 0
AmphibianExplode 140 0 0 0 15 0 0 0 255 255 255 0 0 0 GooHit 15 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
PoisonPuff 141 1 15 0 25 0 0 0 255 255 255 0 0 0 PoisonSmokePuff 26 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
CurseEffectRed 142 0 0 0 20 0 1 1 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
SpiderGooLay 143 1 1 0 16 0 0 0 0 0 0 0 0 0 Spider_Goo_Missile 17 16 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
FetishInferno1 144 12 12 0 30 0 4 0 255 178 64 3 0 0 Flamethrower 15 16 0 0 0 0 3 0 0 1 1 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 1 0 none 7 Minimum range 0 0 0 0 0 0 0 0 0 0 0 fire 512 1024 512 512 512 0 0 0 0 32 1 0
FetishInferno2 145 12 12 0 30 0 4 0 255 178 64 3 0 0 Flamethrower2 15 16 0 0 0 0 3 0 0 1 1 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 1 0 none 7 Minimum range 0 0 0 0 0 0 0 0 0 0 0 fire 512 1024 512 512 512 0 0 0 0 32 1 0
SpiderGoo 146 0 0 0 200 0 0 0 0 0 0 0 0 1 Spider_Goo_Disappear 9 16 0 1 0 1 3 0 0 1 1 1 1 0 0 3 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
CurseCast 147 3 5 0 20 0 1 1 255 0 0 6 0 0 CurseCast 25 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Howl 148 12 12 -1000 12 0 0 0 192 192 192 1 0 0 BAYellShockWave01 15 16 0 0 0 0 3 0 0 1 1 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
Shout 149 30 30 -500 15 0 0 0 192 192 192 1 0 0 BAYellShockWave01 15 16 0 0 0 0 3 0 1 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 1 2 Vel / level increase 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
Dust 150 4 4 0 100 0 0 0 255 255 255 0 0 0 FireSmoke 26 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
RedLightMissile 151 0 0 0 10 10 5 0 255 178 64 0 0 0 null 2 16 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
GreenLightMissile 152 0 0 0 10 10 5 0 128 255 128 0 0 0 null 2 16 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BlueLightMissile 153 0 0 0 10 10 5 0 81 81 255 0 0 0 null 2 16 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
WhiteLightMissile 154 0 0 0 10 10 5 0 255 255 255 0 0 0 null 2 16 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
CorpsePoisonCloud 155 0 0 0 80 0 2 0 128 255 128 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 0 0 0 1 0 0 0 0 0 0 pois 2 2 1 1 1 175 0 0 0 0 8 0
ChillBloodCloud 156 4 4 0 80 0 3 0 81 81 255 1 0 0 null 2 16 0 0 0 0 3 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 0 0 60 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 1 0
ChillBloodPuff 157 1 15 0 25 0 3 0 81 81 255 0 0 0 ChillBloodPuff 26 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 1 0
BlizzardCenter 158 0 0 0 75 0 9 0 81 81 255 0 0 1 null 2 16 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Blizzard1 159 0 0 0 9 0 0 0 0 0 0 0 0 1 icestormfallvar01 6 16 0 0 0 0 3 0 0 1 1 0 0 0 0 2 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Blizzard2 160 0 0 0 9 0 0 0 0 0 0 0 0 1 icestormfallvar02 6 16 0 0 0 0 3 0 0 1 1 0 0 0 0 2 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Blizzard3 161 0 0 0 9 0 0 0 0 0 0 0 0 1 Blizzard 8 16 0 0 0 0 3 0 0 1 1 0 0 0 0 2 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Blizzard4 162 0 0 0 9 0 0 0 0 0 0 0 0 1 Blizzard 8 16 0 0 0 0 3 0 0 1 1 0 0 0 0 2 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BlizzardExplode1 163 0 0 0 6 0 0 0 0 0 0 0 0 0 icestormimpactvar01 6 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BlizzardExplode2 164 0 0 0 6 0 0 0 0 0 0 0 0 0 icestormimpactvar02 6 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BlizzardExplode3 165 0 0 0 6 0 0 0 0 0 0 0 0 0 icestormimpactvar02 6 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ThunderStorm1 166 2 2 0 9 0 10 0 255 255 255 0 0 1 LightningboltBig 8 16 0 0 0 0 3 0 0 0 1 1 0 0 0 3 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ThunderStorm2 167 2 2 0 9 0 10 0 255 255 255 0 0 1 LightningboltBig 8 16 0 0 0 0 3 0 0 0 1 1 0 0 0 3 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ThunderStorm3 168 2 2 0 9 0 10 0 255 255 255 0 0 1 LightningboltBig 8 16 0 0 0 0 3 0 0 0 1 1 0 0 0 3 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ThunderStorm4 169 2 2 0 9 0 10 0 255 255 255 0 0 1 LightningboltBig 8 16 0 0 0 0 3 0 0 0 1 1 0 0 0 3 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MonsterLight 170 30 30 0 25 0 4 0 255 255 255 3 0 2 null 2 16 0 0 0 0 3 1 0 1 1 1 0 0 0 2 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 ltng 512 1280 256 256 256 0 0 0 0 0 1 0
PoisonBall 171 12 12 0 30 0 0 0 255 255 255 0 0 0 poisonNova 30 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 pois 6 6 6 6 6 400 0 0 0 0 32 0
DiabLight 172 20 20 0 30 0 3 0 255 255 255 3 0 0 DiabloLightning 15 16 0 0 0 0 3 0 0 1 1 1 0 0 3 2 1 0 0 0 1 0 0 0 1 0 1 0 none 30 Minimum range 0 0 0 0 6 0 6 14 5 6 7 ltng 20 66 6 7 8 0 0 0 0 0 8 0
Redemption 173 0 0 0 18 0 6 0 255 255 255 0 0 0 RedemptionGhost 16 16 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
RedemptionFail 174 0 0 0 13 0 5 0 255 178 64 0 0 0 CorpseExplodeGuts 13 16 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
HandOfGod 175 2 2 0 9 0 10 0 255 255 255 0 0 1 LightningBolt 8 16 0 0 0 0 3 0 0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 121 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
DiabFire 176 30 30 0 50 0 3 1 255 255 255 1 0 1 groundFireBig 37 16 0 1 12 36 3 0 0 1 1 1 0 1 4 2 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 20 50 5 6 7 0 0 0 0 32 1 0
FingerMageSpider 177 6 6 0 80 0 0 0 255 178 178 1 0 1 FingerMageSpider 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 7 0 3 9 2 2 2 fire 6 12 6 7 8 0 0 0 0 0 16 0
Electric ThrowAxe 178 24 24 0 20 0 4 0 255 255 255 1 0 1 MissileHandAxe 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 5 10 4 4 4 0 0 0 0 0 32 0
DiabWallMaker 179 20 20 0 80 0 3 0 255 178 64 2 0 1 groundFireMedium 2 16 0 1 1 2 3 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
DiabWall 180 0 0 0 36 0 3 1 255 178 64 0 0 1 groundFireMedium 37 16 0 1 12 36 3 0 0 0 0 0 1 0 0 2 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 0 3 0 1 5 4 5 6 fire 12 20 8 9 10 0 0 0 0 0 1 0
CurseAmplifyDamage 181 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseDimVision 182 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseWeaken 183 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseIronMaiden 184 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseTerror 185 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseAttract 186 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseReverseVampire 187 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseConfuse 188 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseDecrpify 189 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseLowerResist 190 0 0 0 20 0 0 0 255 0 0 1 0 0 CurseArea 20 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
CurseCenter 191 0 0 0 20 0 0 0 255 0 0 0 0 0 null 2 16 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BoneSpear 192 24 24 0 40 0 3 0 255 255 255 0 0 1 BoneSpear 6 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 84 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 16 0
BoneSpirit 193 12 12 0 128 0 3 0 255 255 255 1 0 1 BoneSpirit 8 16 0 0 0 0 3 1 0 0 1 1 0 0 0 1 0 0 1 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 93 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
ColdUnique 194 24 24 -1000 14 0 0 0 81 81 255 0 0 0 FrostNova 14 16 0 0 0 0 3 0 0 1 1 1 0 1 3 1 1 0 0 0 1 1 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 cold 6 8 4 4 4 75 25 25 25 0 16 0
LightUnique 195 12 12 0 98 0 3 1 255 255 255 1 3 1 ChargedBolt 10 16 0 1 2 8 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 1 1 2 2 2 0 0 0 0 64 16 0
SKBowArrow1 196 24 24 0 40 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 3 3 3 3 0 0 0 0 0 0 0 0 0 10 32 0
SKBowArrow2 197 24 24 0 40 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 3 3 3 3 0 0 0 0 0 0 0 0 0 10 32 0
SKBowArrow3 198 24 24 0 40 0 0 0 255 255 255 1 0 1 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 1 4 4 4 4 0 0 0 0 0 0 0 0 0 10 32 0
SKBowArrow4 199 24 24 0 40 0 5 0 255 178 64 1 0 1 FireArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 2 5 5 5 5 0 0 0 0 10 32 0
SKBowArrow5 200 24 24 0 40 0 5 0 255 255 255 1 0 1 SafeArrow 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 1 4 4 4 4 ltng 1 4 0 0 0 0 0 0 0 10 32 0
Nova1 201 24 24 -1000 13 0 0 0 255 255 255 0 0 0 null 2 16 0 0 0 0 3 0 0 1 1 0 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
Nova2 202 24 24 -1000 13 0 0 0 255 255 255 0 0 0 null 2 16 0 0 0 0 3 0 0 1 1 0 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
AndyPoisonBolt 203 20 20 0 50 0 5 0 255 255 255 3 0 0 poisonNova 30 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 0 0 1280 1792 1280 1280 1280 pois 32 64 32 32 32 800 0 0 0 0 32 0
TeethExplode 204 0 0 0 13 0 0 0 0 0 0 0 0 0 teethexplode 13 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
LightningJavelin 205 30 30 0 25 0 6 1 255 255 255 0 0 1 LightningJavelin 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 1 1 0 none 0 none 0 1 1 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
LightningFury 206 30 30 0 25 0 6 1 255 255 255 0 0 1 LightningJavelin 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 1 1 0 none 0 none 0 0 0 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
BoneWallMaker 207 12 12 0 7 2 3 0 255 255 255 0 0 0 null 2 16 0 0 0 0 8 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
NecroMage1 208 14 14 0 30 0 5 0 255 255 255 1 0 0 poisonNova 30 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 1280 0 0 0 pois 6 6 1 1 1 500 250 250 250 0 32 0
NecroMage2 209 14 14 0 30 0 5 0 255 255 255 1 0 1 Icebolt 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 cold 1 4 1 1 1 25 25 25 25 0 16 0
NecroMage3 210 14 14 0 30 0 5 0 255 255 255 1 0 1 Firebolt 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 2 6 2 2 2 0 0 0 0 0 16 0
NecroMage4 211 14 14 0 30 0 5 0 255 255 255 1 0 1 ChargedBolt 10 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 1 7 1 1 1 0 0 0 0 0 16 0
Sparkle 212 4 4 0 30 0 0 0 255 255 255 1 0 1 Gleam 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 pois 2 6 2 2 2 0 0 0 0 0 1 0
MultipleShotArrow 213 24 24 0 50 0 0 0 255 255 255 1 0 0 Arrow 1 16 0 0 0 0 3 1 0 1 1 1 0 1 4 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
MultipleShotBolt 214 24 24 0 50 0 0 0 255 255 255 1 0 0 XBowBolt 1 16 0 0 0 0 3 1 0 1 1 1 0 1 4 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 32 0
ChargedStrikeBolt 215 12 12 0 98 0 3 1 255 255 255 1 3 1 ChargedBolt 10 16 0 1 2 8 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 2 4 2 2 2 0 0 0 0 0 16 0
BoneSpearExplode 216 0 0 0 13 0 0 0 0 0 0 0 0 0 teethexplode 13 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
PoisonExplosionCloud 217 0 0 0 60 0 0 0 128 255 128 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 2 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 0 0 83 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
BoneCast 218 0 0 0 20 0 0 0 255 255 255 0 0 0 BoneCast 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
BattleCry 219 12 12 -1000 12 0 0 0 192 192 192 1 0 0 BAYellShockWave01 15 16 0 0 0 0 3 0 0 1 1 0 0 1 4 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
PrimePoisonCloud 220 0 0 0 60 0 0 0 255 255 255 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 2 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 0 0 0 0 0 0 0 0 0 0 pois 10 10 5 5 5 300 20 20 20 0 8 0
PlagueJavCloud 221 0 0 0 60 0 0 0 255 255 255 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 2 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 1 1 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
RancidGasCloud 222 0 0 0 60 0 0 0 255 255 255 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 2 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 1 1 0 0 0 0 0 0 0 0 pois 123 123 0 0 0 50 0 0 0 0 8 0
ChokingGasCloud 223 0 0 0 60 0 0 0 255 255 255 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 2 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 1 1 0 0 0 0 0 0 0 0 pois 246 246 0 0 0 50 0 0 0 0 8 0
StranglingGasCloud 224 0 0 0 60 0 0 0 255 255 255 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 2 1 0 0 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 1 1 0 0 0 0 0 0 0 0 pois 369 369 0 0 0 50 0 0 0 0 8 0
BugLightning 225 12 12 0 98 0 3 1 255 255 255 1 3 1 ChargedBolt 10 16 0 1 2 8 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 0 0 0 0 0 0 0 ltng 256 256 128 128 128 0 0 0 0 64 16 0
PantherJav1 226 20 20 0 80 0 0 0 255 255 255 1 0 1 Javelin 1 16 0 0 0 0 1 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 0 0 0 8 0 2 5 4 4 4 0 0 0 0 0 0 0 0 0 6 32 0
PantherJav2 227 20 20 0 80 0 0 0 255 255 255 1 0 1 Javelin 1 16 0 0 0 0 1 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 0 0 0 8 0 3 7 4 4 4 0 0 0 0 0 0 0 0 0 6 32 0
PantherJav3 228 20 20 0 80 0 0 0 255 255 255 1 0 1 Javelin 1 16 0 0 0 0 1 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 0 0 0 8 0 4 9 4 4 4 0 0 0 0 0 0 0 0 0 6 32 0
PantherJav4 229 20 20 0 80 0 0 0 255 255 255 1 0 1 Javelin 1 16 0 0 0 0 1 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 0 0 0 8 0 5 11 5 5 5 0 0 0 0 0 0 0 0 0 6 32 0
ImmolationFire 230 0 0 0 90 25 5 1 255 178 64 0 0 1 groundFireBig 37 16 0 1 12 36 3 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 0 2 0 0 0 0 0 0 fire 7 9 5 5 5 0 0 0 0 32 1 0
FuryLightning 231 30 30 0 25 0 4 0 255 255 255 0 0 1 LightningStrike 8 16 0 1 0 7 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 35 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 32 0
LightningStrike 232 30 30 0 25 0 4 0 255 255 255 0 0 1 LightningStrike 8 16 0 0 0 0 3 1 0 1 1 1 0 1 4 2 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 ltng 8 14 2 2 2 0 0 0 0 64 32 0
FistoftheHeavensDelay 233 0 0 0 10 0 0 0 0 0 0 0 0 0 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 none 0 none 0 0 0 121 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
FistoftheHeavensBolt 234 12 12 0 50 0 8 0 222 222 255 1 2 1 HolyBoltMissile 16 16 0 0 0 0 3 1 1 1 0 0 0 0 4 1 0 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 mag 40 50 6 10 16 0 0 0 0 0 1 0
Warcry 235 12 12 -600 16 0 0 0 192 192 192 1 0 0 WarcryShockwave 16 16 0 0 0 0 3 0 0 1 1 0 0 1 6 1 1 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 154 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
BattleCommand 236 30 30 -500 15 0 0 0 192 192 192 1 0 0 BAYellShockWave01 15 16 0 0 0 0 3 0 1 1 1 0 0 1 4 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
BattleOrders 237 30 30 -500 15 0 0 0 192 192 192 1 0 0 BAYellShockWave01 15 16 0 0 0 0 3 0 1 1 1 0 0 1 4 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
PantherPotOrange 238 16 16 0 128 0 0 0 255 128 128 0 0 0 mslops 8 16 0 0 0 0 1 1 0 1 1 1 0 0 0 1 1 0 1 0 1 1 1 0 0 1 1 2 Radius 0 none 1 0 0 0 8 0 3 5 3 3 3 fire 2 5 3 3 3 0 0 0 0 0 1 0
PantherPotGreen 239 16 16 0 128 0 0 0 128 255 128 0 0 0 mslgps 8 16 0 0 0 0 1 1 0 1 1 1 0 0 0 1 1 0 1 0 1 1 1 0 0 1 1 40 Poison Length 0 none 1 0 0 0 1 0 0 0 0 0 0 pois 9 12 6 6 6 400 0 0 0 0 1 0
MeteorFire 240 0 0 0 90 0 3 1 255 178 64 0 0 1 groundFireMedium 37 16 0 1 12 36 3 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 2 Rand Light Radius Add 0 none 0 0 0 0 3 0 0 0 0 0 0 fire 15 25 4 5 6 0 0 0 0 32 1 0
Trap Spike Right 241 9 9 0 50 0 0 0 255 255 255 1 0 1 SpikeRight 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
Trap Spike Left 242 9 9 0 50 0 0 0 255 255 255 1 0 1 SpikeLeft 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
Trap Cursed Skull Right 243 6 6 0 50 0 0 0 255 255 255 1 0 1 SkullRight 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
Trap Cursed Skull Left 244 6 6 0 50 0 0 0 255 255 255 1 0 1 SkullLeft 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
Trap Poison Ball Right 245 6 6 0 50 0 0 0 255 255 255 1 0 1 PoisonRight 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
Trap Poison Ball Left 246 6 6 0 50 0 0 0 255 255 255 1 0 1 PoisonLeft 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
Hydra 247 14 14 0 30 0 5 0 255 255 255 2 0 1 Firebolt 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 62 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
BoneSpearTrail 248 0 0 0 8 0 0 0 255 255 255 0 0 0 BoneSpearTrail 9 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
GrimWardSmallStart 249 0 0 0 5 0 0 0 0 0 0 0 0 0 GrimWardSmallStart 5 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
GrimWardSmall 250 0 0 0 200 0 0 0 0 0 0 0 0 1 GrimWardSmall 1 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
GrimWardSmallStop 251 0 0 0 9 0 0 0 0 0 0 0 0 0 GrimWardSmallStop 9 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
GrimWardMediumStart 252 0 0 0 8 0 0 0 0 0 0 0 0 0 GrimWardMediumStart 8 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
GrimWardMedium 253 0 0 0 200 0 0 0 0 0 0 0 0 1 GrimWardMedium 1 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
GrimWardMediumStop 254 0 0 0 9 0 0 0 0 0 0 0 0 0 GrimWardMediumStop 9 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
GrimWardLargeStart 255 0 0 0 8 0 0 0 0 0 0 0 0 0 GrimWardLargeStart 8 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
GrimWardLarge 256 0 0 0 200 0 0 0 0 0 0 0 0 1 GrimWardLarge 1 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
GrimWardLargeStop 257 0 0 0 9 0 0 0 0 0 0 0 0 0 GrimWardLargeStop 9 16 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
ZakarumLight 258 0 0 0 12 0 3 1 255 255 255 0 0 1 LightningStrike 8 16 0 1 0 7 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 32 0
GrimWardScare 259 2 2 0 24 12 0 0 0 0 0 0 0 0 null 2 16 0 0 0 0 3 0 0 1 1 1 0 1 6 2 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
FrozenOrb 260 10 10 0 30 0 6 0 81 81 255 1 0 1 IceOrb 16 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 1 0 1 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
FrozenOrbBolt 261 18 18 0 25 0 4 0 81 81 255 0 0 1 IceBolt 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 64 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
FrozenOrbNova 262 24 24 0 25 0 4 0 81 81 255 0 0 1 IceBolt 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 64 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
FrozenOrbExplode 263 0 0 0 16 0 6 0 81 81 255 0 0 0 IceOrbExplode 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ChillingArmorBolt 264 18 18 0 25 0 4 0 81 81 255 0 0 1 IceBolt 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 60 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
FireExplosion 265 0 0 0 12 0 0 0 0 0 0 0 0 0 FireArrowExplode2 12 16 5 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BlowGun 266 20 20 0 90 0 0 0 255 255 255 1 0 1 Blowdart 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 4 6 1 1 1 0 0 0 0 0 0 0 0 0 10 16 0
ChainLightning 267 30 30 0 25 0 4 0 255 255 255 0 0 1 LightningStrike 8 16 0 0 0 0 3 0 0 1 1 1 0 1 4 2 1 0 0 0 1 1 1 1 1 0 0 0 none 0 none 0 0 0 53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 32 0
ReviveSmall 268 0 0 0 25 0 5 0 255 178 64 0 0 0 Revive 25 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ReviveMedium 269 0 0 0 25 0 5 0 255 178 64 0 0 0 Revive 25 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ReviveLarge 270 0 0 0 25 0 5 0 255 178 64 0 0 0 Revive 25 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MonGlacialSpike 271 18 18 0 40 0 5 0 81 81 255 1 0 1 GlacialSpike 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 cold 2 4 2 2 2 0 0 0 0 0 16 0
IceBreakSmall 272 0 0 0 30 0 0 0 255 255 255 0 0 0 IceBreakSmall 15 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
IceBreakMedium 273 0 0 0 30 0 0 0 255 255 255 0 0 0 IceBreakLarge 15 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
IceBreakLarge 274 0 0 0 30 0 0 0 255 255 255 0 0 0 IceBreakLarge 15 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
IceBreakSmoke 275 0 0 0 15 0 0 0 255 255 255 0 0 0 IceBreakSmoke 15 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Mephisto 276 24 24 0 40 0 9 0 255 255 255 0 0 1 MephistoMissile 10 16 0 0 0 0 3 1 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 3 4 1 1 1 cold 12 18 3 3 3 75 0 0 0 0 16 0
Firehead 277 14 14 0 40 0 8 0 255 178 64 1 0 1 VampireMissile 19 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 1 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 0 6 0 0 0 0 0 0 fire 4 10 1 1 1 0 0 0 0 0 16 0
Whilrwind 278 12 12 0 3 0 0 0 0 0 0 0 0 0 null 2 16 0 0 0 0 3 0 0 0 1 1 0 0 0 2 0 0 0 0 1 0 1 1 0 0 0 0 none 0 none 0 0 0 151 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ArcaneLightningBolt 279 32 32 0 40 0 8 1 178 178 255 1 0 2 null 2 16 0 0 0 0 1 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 ltng 7 14 5 5 5 600 0 0 0 64 1 0
FrogFire 280 15 15 0 40 0 4 1 255 64 64 1 0 1 Fireball 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 33 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 9 18 6 6 6 0 0 0 0 0 16 0
FrogCold 281 12 12 0 35 0 4 1 64 64 255 1 0 1 Icebolt 6 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 33 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 cold 6 12 5 5 5 600 0 0 0 0 16 0
FrogPois 282 12 12 0 30 0 4 1 64 255 64 1 0 1 FrogPoisonMissile 7 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 33 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 pois 6 12 5 5 5 600 0 0 0 0 16 0
DesertFireBall 283 16 16 0 40 0 6 1 255 64 64 1 0 1 Fireball 5 16 0 0 0 0 1 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 2 Radius 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 3 5 4 4 4 600 0 0 0 0 16 0
BRDeathControl 284 0 0 0 375 0 6 1 255 255 255 25 0 0 null 2 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BRDeathLightningBolt 285 32 32 0 20 0 4 0 255 255 255 0 0 2 null 2 16 0 0 0 0 0 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
BRDeathLightningHit 286 0 0 0 12 0 0 0 255 255 255 0 0 1 LightningStrike 8 16 0 1 0 7 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 2 5 4 4 4 0 0 0 0 64 32 0
DenOfEvilLight 287 0 0 0 300 0 10 0 255 255 255 0 0 1 LightBeams 21 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
CairnStones 288 0 0 0 300 0 0 0 255 255 255 0 0 1 null 2 16 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 0 40 Fade frames 2 Lightning delay 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
CairnStonesSky 289 0 0 0 5 0 0 0 255 255 255 0 0 1 null 2 16 0 0 0 0 3 1 1 0 0 0 0 0 0 2 1 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 1 6 0 0 0 0 0 0 0 64 1 0
CairnStonesGround 290 20 20 0 30 0 0 0 255 255 255 0 0 1 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
TowerMist 291 2 2 0 400 0 2 0 255 255 255 0 0 1 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
TowerMistTrail 292 3 3 0 50 0 2 0 255 255 255 0 0 1 mist 14 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BRDeathSmokeS1 293 0 0 0 60 0 0 0 0 0 0 40 0 1 BRSmokeS1 20 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BRDeathSmokeNU 294 0 0 0 340 0 0 0 0 0 0 0 0 1 BRSmokeNU 20 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BRDeathSmokeDT 295 0 0 0 20 0 0 0 0 0 0 0 0 1 BRSmokeDT 20 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BRDeathSpiritS1 296 0 0 0 60 0 4 0 255 255 255 40 0 1 BRSpiritS1 20 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BRDeathSpiritNU 297 0 0 0 340 0 4 0 255 255 255 0 0 1 BRSpiritNU 20 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BRDeathSpiritDT 298 0 0 0 20 0 4 0 255 255 255 0 0 1 BRSpiritDT 20 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoDeathControl 299 0 0 0 275 0 6 1 255 255 255 0 0 0 null 2 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoFirewallMaker 300 8 8 0 50 0 5 0 255 178 64 0 0 1 groundFireSmall 2 16 0 1 1 2 0 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
MephistoFirewall 301 0 0 0 25 0 5 1 255 178 64 0 0 0 groundFireSmall 37 16 0 1 12 36 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
MephistoFlyingRocksBig 302 12 12 0 10 3 0 0 0 0 0 0 0 1 ExplosionSpark 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoExplosionBig 303 0 0 0 12 0 13 0 255 178 64 0 0 0 FireArrowExplode2 12 16 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoFlyingRocksSmall 304 12 12 0 5 3 0 0 0 0 0 0 0 1 ExplosionSparkSmall 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoExplosionSmall 305 0 0 0 12 0 13 0 255 178 64 0 0 0 FireArrowExplode2 12 16 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoDoNotDraw 306 0 0 0 70 0 0 0 0 0 0 0 0 0 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyControl0 307 0 0 0 350 0 0 0 0 0 0 0 0 0 null 2 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyFirewallMaker 308 8 8 0 50 0 8 0 255 178 64 0 0 1 groundFireSmall 2 16 0 1 1 2 0 0 0 1 1 1 1 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
AndyFirewall 309 0 0 0 25 0 5 0 255 178 64 0 0 0 groundFireSmall 37 16 0 1 12 36 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
AndyColumnFireBase 310 0 0 0 25 0 5 0 255 178 64 0 0 0 groundFireMedium 37 16 0 1 12 36 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
AndyColumnFire 311 0 0 0 15 0 0 0 192 128 128 0 0 0 AndarielFlameDeath 15 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyFallingDebris1 312 0 0 0 8 0 0 0 0 0 0 0 0 0 CeilingChunkFall01 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyFallingDebris2 313 0 0 0 8 0 0 0 0 0 0 0 0 0 CeilingChunkFall02 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyFallingDebris3 314 0 0 0 8 0 0 0 0 0 0 0 0 0 CeilingChunkFall03 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyDebrisExplosion1 315 0 0 0 11 0 0 0 0 0 0 0 0 0 CeilingChunkVanish01 11 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyDebrisExplosion2 316 0 0 0 11 0 0 0 0 0 0 0 0 0 CeilingChunkVanish02 11 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyDebrisExplosion3 317 0 0 0 11 0 0 0 0 0 0 0 0 0 CeilingChunkRemain01 11 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyDebrisExplosion4 318 0 0 0 11 0 0 0 0 0 0 0 0 0 CeilingChunkRemain02 11 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AndyDebrisExplosion5 319 0 0 0 11 0 0 0 0 0 0 0 0 0 CeilingChunkRemain03 11 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
WillowispLightningBolt 320 32 32 0 40 0 8 1 178 178 255 1 0 2 null 2 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 ltng 7 14 5 5 5 600 0 0 0 64 1 0
QueenPoisonCloud 321 8 64 1 92 0 4 0 64 255 64 16 0 0 poisonNova 30 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 pois 6 16 6 6 6 800 0 0 0 0 32 0
Dirt Pile 322 0 0 0 128 0 0 0 255 255 255 0 0 0 SandMaggotDirtPile 1 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 Client No Velocity 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
UndeadMissile1 323 20 20 0 40 0 9 0 255 255 255 1 0 1 SkullPoison 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 pois 4 6 1 1 1 350 0 0 0 0 16 0
UndeadMissile2 324 20 20 0 40 0 9 0 255 255 255 1 0 1 SkullFire 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 fire 1344 2880 512 512 512 0 0 0 0 0 8 0
UndeadMissile3 325 20 20 0 40 0 9 0 255 255 255 1 0 1 SkullIce 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 0 0 0 0 0 0 0 cold 1344 2880 512 512 512 40 0 0 0 0 16 0
UndeadMissile4 326 20 20 0 40 0 9 0 255 255 255 1 0 1 SkullUnholy 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 0 0 900 2000 180 180 180 0 0 0 0 0 0 0 0 0 0 16 0
BoneSpiritExplode 327 0 0 0 12 0 0 0 255 255 255 0 0 0 BoneSpiritExplode 13 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
DopplezonExplode 328 0 0 0 25 0 0 0 255 255 255 0 0 0 DopplezonExplode 25 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MonBoneSpirit 329 12 12 0 128 0 3 0 255 255 255 1 0 1 BoneSpirit 8 16 0 0 0 0 3 1 0 0 1 1 0 0 0 1 0 0 1 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 mag 10 15 7 7 7 0 0 0 0 0 8 0
TowerMistFade 330 0 0 0 128 1 0 0 255 255 255 0 0 0 Mist_fade 14 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
CountessFirewall 331 0 0 0 1000 1 5 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 3 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 1 1 0 1 0 0 0 0 0 0 fire 3 5 4 4 4 0 0 0 0 0 1 0
TowerChestSpawner 332 0 0 0 400 1 15 0 192 192 255 0 0 0 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 150 start delay 2 spawn interval divisor 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HellMeteorLaunch1 333 0 0 0 22 0 0 0 255 255 255 0 0 0 meteorlavaburst 11 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HellMeteorLaunch2 334 0 0 0 22 0 0 0 255 255 255 0 0 0 meteorlavaburst2 11 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HellMeteorUp 335 0 0 0 50 0 0 0 255 255 255 0 0 1 meteorlavaup 9 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HellMeteorDown 336 0 0 0 225 0 5 0 255 255 255 0 0 1 meteorlavadown 9 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 5 Radius 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 5 15 5 5 5 0 0 0 0 0 1 0
HellMeteorBall 337 0 0 0 225 0 5 0 255 255 255 0 0 1 meteorlavarock 9 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HoradricStaff 338 0 0 0 440 0 0 0 255 255 255 0 0 1 HoradricStaff 8 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HoradricLightning 339 20 20 0 30 0 3 0 255 255 255 0 0 1 LightningStrike 8 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 32 0
HoradricLight 340 0 0 0 225 0 2 0 255 255 255 0 0 1 HoradricLightBeamstreaks 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
RegurgitatorCorpse 341 14 14 0 200 0 2 0 255 64 64 1 0 1 SlugMissile 12 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 25 55 15 15 15 0 0 0 0 0 0 0 0 0 176 8 1
RegurgitatorCorpseExplode 342 0 0 0 12 0 13 0 255 64 64 0 0 0 Slug Missile Explode 12 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
HighPriestLightning 343 8 8 0 16 0 12 0 255 64 64 0 0 0 HighPriestLightning 9 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 1 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 4 12 5 5 5 0 0 0 0 0 8 0
IceBreakSmallMelt 344 0 0 0 150 0 0 0 255 255 255 0 0 0 IceBreakSmallMelt 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
IceBreakLargeMelt 345 0 0 0 150 0 0 0 255 255 255 0 0 0 IceBreakLargeMelt 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
LeapKnockBack 346 0 0 0 2 0 0 0 0 0 0 0 0 0 null 2 16 0 0 0 0 3 0 0 0 1 1 0 0 0 2 0 0 0 0 1 0 0 1 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
RadamentDeath 347 0 0 0 400 0 15 0 255 255 255 0 0 0 null 2 16 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
RadamentHandOfGod 348 0 0 0 21 0 0 0 0 0 0 0 0 0 HandOfGod 21 16 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
RadamentHolyBolt 349 12 12 0 50 0 0 0 255 255 255 0 0 1 HolyBoltMissile 16 16 0 0 0 0 3 0 1 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
TaintedSunControl 350 0 0 0 300 0 0 0 255 255 255 0 0 1 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
TaintedSunFlash 351 0 0 0 12 0 4 0 255 255 255 0 0 1 yellowBallGlowIntro 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
TaintedSunBall 352 12 12 0 300 0 0 0 255 255 255 0 0 1 yellowBallGlow2 10 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
QueenDeathCenter 353 0 0 0 100 0 0 0 255 255 255 0 0 1 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
QueenDeathGlob 354 6 6 0 20 0 0 0 255 255 255 0 0 0 QueenDeathGuts 11 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
QueenDeathSplat1 355 0 0 0 50 0 0 0 255 255 255 0 0 0 QueenDeathPuddle 5 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
QueenDeathSplat2 356 0 0 0 50 0 0 0 255 255 255 0 0 0 QueenDeathPuddle2 5 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
HealingBolt 357 14 14 0 30 0 2 0 222 222 255 1 0 1 HolyBoltMissile 16 16 0 0 0 0 3 1 1 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoHoleDelay 358 0 0 0 50 0 0 0 0 0 0 0 0 0 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoHoleBirth 359 0 0 0 21 0 0 0 0 0 0 0 0 0 smithholebirth 21 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoHoleNeutral 360 0 0 0 189 0 0 0 0 0 0 0 0 1 smithholeneutral 21 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoHoleDeath 361 0 0 0 21 0 0 0 0 0 0 0 0 0 smithholedeath 21 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
MephistoHoleDead 362 0 0 0 400 0 0 0 0 0 0 0 0 1 smithholedead 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
DurielDeathControl 363 0 0 0 400 0 0 0 0 0 0 0 0 1 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
DurielDeathRock 364 0 0 0 40 0 0 0 0 0 0 0 0 1 Rock_large 5 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
DurielDeathDebris 365 12 12 0 40 0 0 0 0 0 0 0 0 1 Rock_small 5 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
DurielDeathSmoke 366 0 0 0 25 0 0 0 0 0 0 0 0 0 FireSmoke 26 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
MephistoExplosion 367 0 0 0 12 0 0 0 255 255 255 0 0 0 MephistoMissileExplosion 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
OrbMist 368 2 2 0 400 0 2 0 255 125 125 0 0 1 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
OrbMistTrail 369 3 3 0 50 0 2 0 255 125 125 0 0 1 mist_Fade_Orb_Loop 14 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
OrbMistFade 370 3 3 0 15 0 2 0 255 125 125 0 0 0 mist_Fade_Orb 14 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Pilum 371 24 24 0 40 0 0 0 255 255 255 0 0 0 Pilum 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
Diablo Appears 372 0 0 0 300 0 0 0 255 255 255 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HFControl 373 0 0 0 200 0 8 1 255 255 255 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HFFragment1 374 6 6 0 16 0 0 0 255 255 255 0 0 1 SoulForgeShard 47 16 0 1 8 30 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HFFragment2 375 0 0 0 25 0 0 0 255 255 255 0 0 1 SoulForgeShard 47 16 0 1 8 30 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HFFragment3 376 0 0 0 10 0 0 0 255 255 255 0 0 1 SoulForgeShard 47 16 0 1 8 30 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HFSpirit1 377 8 4 0 55 0 0 0 255 255 255 0 0 1 SoulForgeRisingSoul 33 16 0 1 8 19 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HFReserved3 378 0 0 0 0 0 0 0 255 255 255 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Izual Control 379 0 0 0 200 0 0 0 255 255 255 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 25 Lightning Start 150 Lightning Stop 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Izual Mist Loop 380 4 4 0 50 0 2 0 255 255 255 0 0 0 IzualDeathClouds 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Izual Mist Fade 381 0 0 0 15 0 0 0 255 255 255 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Izual Lightning 382 3 3 0 50 0 2 0 255 255 255 0 0 0 IzualDeathParticles 25 16 0 0 0 0 3 0 1 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Izual Lightning Trail 383 3 3 0 50 0 0 0 255 255 255 0 0 0 null 1 16 0 0 0 0 3 0 1 0 1 1 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Cairn Stones Bolt 384 0 0 0 9 0 10 0 255 255 255 0 0 1 LightningboltBig 8 16 0 0 0 0 3 0 0 0 1 1 0 0 0 3 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Expansion
Bomb in Air 0 12 12 0 50 0 0 0 255 255 255 1 0 1 expansion\FireTraumaMissile 20 16 0 0 0 0 6 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Bomb on Ground 1 0 0 0 5 0 0 0 255 255 255 0 0 0 expansion\FireTraumaGround 1 16 0 0 0 0 6 1 0 1 1 1 1 0 0 1 1 0 1 1 0 1 1 0 0 0 1 7 radius 0 none 0 0 0 251 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Bomb Explosion 2 0 0 0 20 0 5 1 255 178 64 0 0 0 expansion\FireTraumaXplosion 20 16 0 0 0 0 3 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 1 100 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Shock Field In Air 3 12 12 0 50 0 0 0 255 255 255 1 0 0 expansion\caltrops 8 16 0 1 0 7 6 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
Shock Field On Ground 4 0 0 0 90 0 3 0 255 255 255 0 0 1 Expansion\ShockField 10 16 1 0 0 0 3 0 0 0 1 1 1 1 25 2 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 256 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
ThrowingStar 5 24 24 0 100 50 0 0 255 255 255 1 0 1 expansion\ThrowingStarMissile 7 16 0 1 4 7 3 1 0 1 1 1 0 0 0 1 0 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 254 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
AcidSpray 6 12 12 0 6 2 0 0 255 255 255 1 0 1 frogpoisonmissile 7 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 0 0 1 0 1 1 1 0 1 0 1 60 frames that acid lasts 0 none 0 0 0 265 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
Blade Creeper 7 0 0 0 10 5 0 0 255 255 255 1 0 0 null 2 16 0 0 0 0 3 0 0 0 0 0 0 1 25 3 0 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 257 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Distraction 8 0 0 0 100 0 0 0 255 255 255 1 0 1 BigheadLightningMissile 3 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Distraction Fog 9 0 0 0 10 5 0 0 255 255 255 1 0 1 null 2 16 0 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 258 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Distraction Puff 10 0 0 0 25 0 0 0 255 255 255 0 0 0 FireSmoke 26 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
Distraction Start 11 0 0 0 11 0 0 0 255 255 255 1 0 0 ExpArrowExplode 11 16 0 0 0 0 3 0 0 0 1 1 0 0 0 3 0 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Distraction End 12 0 0 0 11 0 0 0 255 255 255 1 0 0 ExpArrowExplode 11 16 0 0 0 0 3 0 0 0 1 1 0 0 0 3 0 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ImpInfernoFlame1 13 20 20 0 80 0 0 0 255 178 64 1 0 0 Flamethrower 15 16 0 0 0 0 3 0 0 0 1 1 0 0 0 1 1 0 0 0 1 1 0 0 1 0 1 8 "Mana Use, 16ths." 16 Minimum range 0 0 0 282 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
ImpInfernoFlame2 14 20 20 0 80 0 0 0 255 178 64 1 0 0 Flamethrower2 15 16 0 0 0 0 3 0 0 0 1 1 0 0 0 1 1 0 0 0 1 1 0 0 1 0 1 8 "Mana Use, 16ths." 16 Minimum range 0 0 0 282 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
BaalLightningBolt 15 0 0 0 25 0 0 0 255 255 255 2 0 2 null 2 16 0 0 0 0 6 1 0 0 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalLightningTrail 16 0 0 0 5 0 0 0 255 255 255 2 0 2 expansion\lightningpiece 1 16 0 0 0 0 6 1 0 1 1 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
BaalLightningBolt 17 0 0 0 25 0 0 0 255 255 255 2 0 2 null 2 16 0 0 0 0 6 1 0 0 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalLightningTrail 18 0 0 0 5 0 0 0 255 255 255 2 0 2 expansion\lightningpiece 1 16 0 0 0 0 6 1 0 1 1 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
ImpFireball 19 18 18 0 50 0 0 0 255 178 64 1 0 1 expansion\ImpFireball 20 16 0 0 0 0 6 0 0 1 0 0 0 0 0 1 0 0 1 0 1 1 1 1 1 0 1 5 Radius 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 15 35 5 10 15 0 0 0 0 0 1 0
ImpFireballExplode 20 0 0 0 12 0 0 0 255 178 64 0 0 0 ExpArrowExplode 11 16 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
CatapultChargedBall On Catapult 21 0 0 0 10 0 0 0 255 255 255 0 0 1 BigheadLightningMissile 3 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
CatapultChargedBall 22 0 0 0 25 0 5 0 143 143 255 5 0 1 BigheadLightningMissile 3 16 0 0 0 0 6 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 1 0 1 4 Charged bolts 2 Charged bolts per level 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
CatapultChargedBallBolt 23 12 12 0 20 0 3 1 255 255 255 1 0 1 ChargedBolt 10 16 0 1 2 8 3 1 1 0 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 38 0 0 0 0 0 0 0 ltng 9 14 4 3 3 0 0 0 0 0 16 0
Imp Spawn Monsters 24 0 0 0 12 0 0 0 255 178 64 0 0 0 ExpArrowExplode 11 16 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Spike Ball On Catapult 25 0 0 0 50 0 0 0 255 255 255 1 0 0 Meteor 12 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Spike Ball 26 0 0 0 25 0 0 0 255 255 255 1 0 0 Meteor 12 16 0 1 0 7 6 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Spike In Air 27 12 12 0 50 0 0 0 255 255 255 1 0 0 expansion\FireSpikes 8 16 0 1 0 7 6 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
Catapult Spike On Ground 28 0 0 0 180 0 0 0 255 255 255 0 0 1 expansion\FireSpikesGround 8 16 0 0 0 0 1 1 1 0 1 1 1 0 0 1 1 0 1 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 10 21 1 1 1 0 0 0 0 0 32 0
Catapult Spike Explosion 29 0 0 0 36 0 0 0 255 255 255 0 0 0 expansion\FireSpikeExplode 14 16 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 1 0 1 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Cold Ball On Catapult 30 0 0 0 50 0 0 0 255 255 255 1 0 1 IceOrb 16 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Cold Ball 31 0 0 0 25 0 5 0 143 143 255 5 0 1 IceOrb 16 16 0 0 0 0 6 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 cold 8 14 5 5 5 100 25 25 25 0 1 0
Catapult Cold Explosion 32 6 6 0 15 0 0 0 255 255 255 0 0 0 IceBreakLarge 15 16 0 0 0 0 6 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Plague Ball On Catapult 33 0 0 0 50 0 0 0 255 255 255 0 0 1 expansion\catapultpoisonbomb 10 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Plague Ball 34 0 0 0 25 0 5 0 143 143 255 0 0 1 expansion\catapultpoisonbomb 10 16 0 0 0 0 6 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Plague Cloud 35 0 0 0 80 0 0 0 128 255 128 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 0 0 1 0 0 2 0 0 1 0 1 0 0 0 1 0 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 0 0 0 0 3 0 0 0 0 0 0 pois 8 13 1 1 1 600 0 0 0 0 1 0
Catapult Meteor Ball On Catapult 36 0 0 0 50 0 0 0 255 255 255 1 0 0 Meteor 12 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Catapult Meteor Ball 37 0 0 0 25 0 5 0 143 143 255 5 0 1 Meteor 12 16 0 0 0 0 6 0 0 1 0 0 1 0 0 1 0 0 1 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 10 11 2 2 2 0 0 0 0 0 1 0
Catapult Meteor Fire 38 0 0 0 90 25 5 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 3 0 0 0 1 0 1 0 0 2 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 4 0 0 0 0 0 0 fire 7 16 2 1 1 0 0 0 0 32 1 0
Tower Death 39 0 0 0 1 0 0 0 255 255 255 0 0 0 expansion\TowerDebris 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Healing Vortex 40 12 12 0 100 25 5 1 255 178 64 4 0 1 expansion\overseer_missile 8 16 0 0 0 0 3 1 1 1 1 1 0 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 291 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
SuicideCorpseExplode 41 0 0 0 13 0 0 0 255 178 64 0 0 0 CorpseExplodeGuts 13 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
SuicideFireExplode 42 0 0 0 13 0 0 0 255 178 64 0 0 0 Fsexplode 15 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
SuicideIceExplode 43 0 0 0 13 0 0 0 255 178 64 0 0 0 FreezeExplodeCenter 15 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ExplodingJavalin 44 24 24 0 40 0 0 0 255 255 255 1 0 0 Javelin 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 0 1 1 2 Radius of explode 0 none 0 1 1 0 8 8 0 0 0 0 0 fire 8 16 0 0 0 0 0 0 0 6 32 0
ExplodingJavalinExplosion 45 25 25 0 12 0 15 0 255 178 64 0 0 0 ExpArrowExplode 11 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
LightingTrailingJavalin 46 24 24 0 40 0 0 0 255 255 255 1 0 0 Javelin 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
LightJavalinTrail 47 12 12 0 20 0 3 1 255 255 255 2 0 1 ChargedBolt 10 16 0 1 2 8 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
LightJavalinExplosion 48 12 12 0 20 0 3 1 255 255 255 2 0 1 ChargedBolt 10 16 0 1 2 8 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
IceJavalin 49 24 24 0 40 0 0 0 255 255 255 1 0 0 Javelin 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
IceJavalinExplode 50 0 0 0 16 0 11 0 81 81 255 0 0 0 IceArrowExplode 16 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
PlagueJavelin 51 24 24 0 40 0 0 0 255 255 255 1 0 0 Javelin 1 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 1 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
PlagueJavlinExplode 52 0 15 0 25 0 0 0 255 255 255 0 0 0 PoisonSmokePuff 26 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
AdvLightTrailingJav 53 24 24 0 40 0 0 0 255 255 255 1 0 0 Javelin 1 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 1 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 32 0
AdvLightTrailingJav 54 12 12 0 20 0 3 1 255 255 255 2 0 1 ChargedBolt 10 16 0 1 2 8 3 0 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
AdvLightJavExplode 55 12 12 0 20 0 3 1 255 255 255 2 0 1 ChargedBolt 10 16 0 1 2 8 3 0 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
SucFireBall 56 18 18 0 50 0 10 0 255 178 64 1 0 1 Fireball 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 3 Radius 0 none 0 0 0 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
SucFireBallExplode 57 0 0 0 12 0 13 0 255 178 64 0 0 0 FireArrowExplode2 12 16 5 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
SucFireBallTrail 58 0 0 0 36 0 5 1 255 178 64 0 0 1 groundFiresmall 37 16 0 1 12 36 3 0 0 0 0 0 1 0 0 1 0 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
SucShockFieldMissile 59 30 30 0 25 0 6 1 255 255 255 0 0 1 LightningJavelin 5 16 0 0 0 0 3 1 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 1 1 0 none 0 none 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
SucShockFieldMissileExp 60 0 0 0 13 0 0 0 0 0 0 0 0 0 teethexplode 13 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
SucShockField 61 0 0 0 36 0 5 1 255 178 64 0 0 0 expansion\FireSpikeExplode 14 16 0 0 0 0 3 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HellFireMissile 62 0 0 0 60 0 0 0 0 0 0 0 0 1 MeteorTail 12 16 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HellFireExA 63 0 0 0 12 0 0 0 255 255 255 0 0 0 BoneSpiritExplode 13 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HellFireExB 64 0 0 0 25 0 0 0 255 255 255 0 0 0 DopplezonExplode 25 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Imp Charged Bolt 65 12 12 0 98 0 3 1 255 255 255 1 0 1 ChargedBolt 10 16 0 1 2 8 3 1 0 0 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 0 0 0 0 0 0 0 0 ltng 10 20 3 3 3 0 0 0 0 0 16 0
Imp Teleport 66 1 15 0 14 0 0 0 255 255 255 0 0 0 expansion\impteleport 13 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Moltenboulder 67 4 4 0 100 0 0 0 255 178 64 0 0 1 expansion\MoltenBoulderRoll 10 16 0 0 0 0 8 1 0 0 1 1 0 0 0 2 0 0 1 0 1 1 1 100 0 0 1 3 explosion radius 0 none 0 0 0 229 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 8 0
MoltenBoulderEmerge 68 3 3 0 5 0 0 0 255 178 64 5 0 0 expansion\MoltenBoulderEmerge 6 16 0 0 0 0 8 0 0 1 1 1 0 0 0 2 0 0 1 0 1 0 0 1 0 0 1 3 explosion radius 0 none 0 0 0 229 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 8 0
MoltenBoulderExplode 69 0 0 0 13 0 0 0 255 178 64 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 1 1 0 1 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
MoltenBoulderFirePath 70 0 0 0 37 0 5 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 8 0 0 0 1 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 2 0 0 0 0 0 0 fire 10 14 6 7 8 0 0 0 0 32 1 0
MoltenBoulder-FlyingRocks 71 0 0 0 16 0 0 0 255 178 64 0 0 1 expansion\MoltenFragmentD 16 16 0 0 0 0 8 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 8 0
FireStorm 72 0 0 0 15 0 5 1 255 178 64 0 0 1 groundFiresmall 37 16 0 1 12 36 3 0 0 0 0 0 1 0 0 2 0 0 0 0 1 1 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 225 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
FireStormMaker 73 8 8 0 40 0 0 0 255 255 255 0 0 1 expansion\FirestormEmitter 16 16 0 0 0 0 8 0 0 1 1 1 1 0 0 2 1 0 0 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ArcticBlast1 74 12 12 0 30 0 0 0 255 255 255 1 0 0 expansion\ArcticBlastIce 16 16 0 0 0 0 3 0 0 0 2 0 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 8 "Mana Use, 16ths." 7 Minimum range 0 1 1 230 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 16 0
ArcticBlast2 75 12 12 0 30 0 0 0 255 255 255 1 0 0 expansion\ArcticBlastIce_2 16 16 0 0 0 0 3 0 0 0 2 0 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 8 "Mana Use, 16ths." 7 Minimum range 0 1 1 230 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 16 0
Erruption Center 76 0 0 0 80 0 0 0 255 255 255 0 0 1 null 2 16 0 0 0 0 0 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Erruption Crack 1 77 0 0 0 84 0 5 1 255 178 64 0 0 1 expansion\EruptionCrack 41 16 0 0 0 0 3 0 0 1 1 0 0 1 5 3 0 0 0 0 0 1 0 0 0 0 1 0 none 0 none 0 0 0 234 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 4 0
Erruption Crack 2 78 0 0 0 84 0 5 1 255 178 64 0 0 1 null 2 16 0 0 0 0 3 0 0 1 1 0 0 1 5 3 0 0 0 0 0 1 0 0 0 0 1 0 none 0 none 0 0 0 234 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
Erruption Smoke 1 79 0 0 0 84 0 0 0 255 255 255 0 0 1 expansion\EruptionSmoke 41 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Erruption Smoke 2 80 0 0 0 84 0 0 0 255 255 255 0 0 1 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Vine Beast Walk 1 81 0 0 0 200 0 0 0 255 255 255 0 0 0 expansion\Pod_walk_1 31 16 0 0 0 0 0 0 1 0 1 1 0 0 0 2 0 0 1 1 0 0 0 0 0 0 1 1 Mana added min 3 Mana added max 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 8 0
Vine Beast Walk 2 82 0 0 0 200 0 0 0 255 255 255 0 0 0 expansion\Pod_walk_2 31 16 0 0 0 0 0 0 1 0 1 1 0 0 0 2 0 0 1 1 0 0 0 0 0 0 1 1 Mana added min 3 Mana added max 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 8 0
Vine Beast Neutral 83 0 0 0 200 0 0 0 255 255 255 0 0 0 expansion\Pod_neutral_1 31 16 0 0 0 0 0 0 1 0 1 1 0 0 0 2 0 0 1 1 0 0 0 0 0 0 1 1 Mana added min 3 Mana added max 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
Vine Beast Attack 84 0 0 0 75 0 0 0 255 255 255 0 0 0 expansion\Pod_attack_1 51 16 0 0 0 0 0 0 1 0 1 1 0 0 0 2 0 0 1 0 1 0 0 0 0 0 1 1 Mana added min 3 Mana added max 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 4 0
Vine Beast Death 85 0 0 0 51 0 0 0 255 255 255 0 0 0 expansion\Pod_death_1 21 16 0 0 0 0 0 0 1 0 1 1 0 0 0 2 0 0 1 0 1 0 0 0 0 0 1 1 Mana added min 3 Mana added max 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 4 0
Vines 86 7 7 0 20 0 0 0 255 255 255 0 0 1 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 Drop Trail delay 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Vines Trail 87 0 0 0 100 25 0 0 255 255 255 0 0 0 Expansion\vines 12 16 0 0 0 0 3 0 0 1 1 0 1 0 0 3 0 0 1 0 1 0 0 0 0 0 1 100 Slow percent 15 Frames 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
Vines Wither 88 0 0 0 100 0 0 0 255 255 255 0 0 0 Expansion\Vines_Death 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Plague Vines 89 7 7 0 20 0 0 0 255 255 255 0 0 1 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 Drop Trail delay 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Plague Vines Trail 90 0 0 0 100 25 0 0 255 255 255 0 0 0 Expansion\vines 12 16 0 0 0 0 3 0 0 1 1 1 1 0 0 3 0 0 1 0 1 0 0 0 0 0 1 15 Hit delay 0 none 0 0 0 222 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
Plague Vines Wither 91 0 0 0 100 0 0 0 255 255 255 0 0 0 Expansion\Vines_Death 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
Twister 92 10 10 0 50 0 0 0 255 255 255 0 0 1 expansion\twister 40 16 0 1 18 36 3 0 0 0 1 1 0 1 25 2 1 0 0 0 1 1 1 1 1 0 1 0 none 0 none 0 0 0 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 4 0
Tornado 93 8 8 0 75 0 0 0 255 255 255 0 0 1 expansion\tornado 40 16 0 1 12 36 3 0 0 1 1 1 0 1 25 3 1 0 0 0 1 1 1 1 1 0 1 0 none 0 none 0 0 0 245 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
Volcano 94 0 0 0 150 0 0 0 0 0 0 0 0 1 Expansion\volcano_base 30 16 0 1 17 18 3 0 0 0 2 0 1 1 10 3 0 0 0 0 1 0 1 1 0 0 0 0 none 0 none 0 0 0 244 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Volcano Overlay Fire 95 0 0 0 150 0 10 1 255 64 64 0 0 1 Expansion\volcano_Fire 30 16 0 1 6 14 3 0 0 0 0 0 0 0 0 3 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Volcano Debris 2 96 14 14 0 16 0 0 0 0 0 0 0 0 1 expansion\volcano_rock 15 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Volcano Explosion 97 0 0 0 18 0 0 0 0 0 0 0 0 0 Expansion\rock_lava_explosion 18 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Volcano Small Fire 98 0 0 0 18 0 0 0 0 0 0 0 0 0 Expansion\rock_lava_pool 18 16 0 0 0 0 3 0 0 1 1 0 0 1 5 2 0 0 0 0 1 1 1 0 0 0 1 0 none 0 none 0 0 0 244 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
DragonBreath Missile 99 12 12 0 15 0 0 0 255 255 255 1 0 1 Expansion\firenova 11 16 0 1 6 7 3 0 0 1 1 1 0 1 4 1 1 0 0 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 275 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 16 0
LureProjectile 100 12 12 0 50 0 0 0 255 255 255 1 0 0 expansion\FireSpikes 8 16 0 1 0 7 6 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 0
LureCenter 101 0 0 0 25 0 3 0 81 81 255 0 0 0 Expansion\LureCloud 26 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 4 0
LureCloud 102 0 0 0 25 0 0 0 0 0 0 0 0 0 Expansion\LureCloud 26 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 4 0
ImpMiss1 103 10 10 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile01 10 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 10 15 4 4 4 0 0 0 0 0 16 0
ImpMiss2 104 12 12 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile01 10 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 12 17 4 4 4 0 0 0 0 0 16 0
ImpMiss3 105 14 14 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile01 10 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 14 22 4 4 4 0 0 0 0 0 16 0
ImpMiss4 106 16 16 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile01 10 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 20 25 4 4 4 0 0 0 0 0 16 0
ImpMiss5 107 20 20 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile01 10 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 23 33 5 5 5 0 0 0 0 0 16 0
FrozenHorror ArcticBlast1 108 12 12 0 30 0 0 0 255 255 255 3 0 0 expansion\ArcticBlastIce 16 16 0 0 0 0 3 0 0 0 1 1 0 0 0 1 1 0 0 0 1 1 0 0 1 0 1 8 "Mana Use, 16ths." 7 Minimum range 0 1 1 0 2 0 0 0 0 0 0 cold 25 50 20 20 20 100 10 10 10 32 16 0
FrozenHorror ArcticBlast2 109 12 12 0 30 0 0 0 255 255 255 3 0 0 expansion\ArcticBlastIce_2 16 16 0 0 0 0 3 0 0 0 1 1 0 0 0 1 1 0 0 0 1 1 0 0 1 0 1 8 "Mana Use, 16ths." 7 Minimum range 0 1 1 0 2 0 0 0 0 0 0 cold 25 50 20 20 20 100 10 10 10 32 16 0
SentryChargedBolt 110 12 12 0 98 0 3 1 255 255 255 1 0 1 ChargedBolt 10 16 0 1 2 8 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
SentrySpikeInAir 111 12 12 0 50 0 0 0 255 255 255 1 0 0 expansion\FireSpikes 8 16 0 1 0 7 6 0 0 1 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
SentrySpikeOnGround 112 0 0 0 180 60 0 0 255 255 255 0 0 1 expansion\FireSpikesGround 8 16 0 0 0 0 3 1 1 1 1 1 1 0 0 1 1 0 1 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 262 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
Recycler Delay 113 0 0 0 47 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 Drop Trail delay 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Recycler Vine 114 0 0 0 60 0 0 0 255 255 255 0 0 0 Expansion\vines 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 100 Slow percent 15 Frames 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
Recycler Fade 115 0 0 0 100 0 0 0 255 255 255 0 0 0 Expansion\Vines_Death 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Recycler Explosion 116 0 0 0 13 0 5 0 255 178 64 0 0 0 CorpseExplodeGuts 13 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
Death Mauler 117 0 0 0 60 0 0 0 255 255 255 0 30 0 expansion\deathmaulerfingers 8 16 0 0 0 0 3 0 0 1 1 1 1 0 0 2 1 0 1 0 1 0 1 0 0 0 1 0 none 0 none 0 0 0 308 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
Death Mauler Trail 118 0 0 0 36 0 0 0 255 255 255 0 0 0 expansion\deathmaulermissile 31 16 0 0 0 0 3 0 0 1 1 1 1 0 0 2 1 0 1 0 1 0 0 0 0 0 1 6 spacing 10 Draw delay 0 0 0 308 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
Death Mauler Trail Fade 119 0 0 0 36 0 0 0 255 255 255 0 0 0 expansion\deathmaulerfadeout 31 16 0 0 0 0 3 0 0 1 1 1 1 0 0 2 1 0 1 0 1 0 0 0 0 0 1 6 spacing 10 Draw delay 0 0 0 308 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0
BladeFury1 120 14 14 0 22 0 0 0 0 0 0 1 0 0 null 1 16 0 0 0 0 3 1 0 0 1 1 0 0 0 2 1 0 1 0 1 1 1 0 0 0 0 0 none 0 none 0 0 0 266 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
BladeFragment1 121 18 18 0 40 0 0 0 0 0 0 1 1 1 Expansion\bladefury 7 16 0 0 0 0 3 1 0 0 1 1 0 0 0 1 1 0 1 0 1 1 1 0 0 0 0 0 none 0 none 0 0 0 266 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
BladeFury2 122 14 14 0 22 0 0 0 0 0 0 1 0 0 null 1 16 0 0 0 0 3 1 0 0 1 1 0 0 0 2 1 0 1 0 1 1 1 0 0 0 0 0 none 0 none 0 0 0 266 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
BladeFragment2 123 18 18 0 33 0 0 0 0 0 0 1 1 1 Expansion\bladefury_B 7 32 0 0 0 0 3 1 0 0 1 1 0 0 0 1 1 0 1 0 1 1 1 0 0 0 0 0 none 0 none 0 0 0 266 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
BladeFury3 124 14 14 0 22 0 0 0 0 0 0 1 0 0 null 1 16 0 0 0 0 3 1 0 0 1 1 0 0 0 2 1 0 1 0 1 1 1 0 0 0 0 0 none 0 none 0 0 0 266 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
BladeFragment3 125 18 18 0 25 0 0 0 0 0 0 1 1 1 Expansion\bladefury_C 7 32 0 0 0 0 3 1 0 0 1 1 0 0 0 1 1 0 1 0 1 1 1 0 0 0 0 0 none 0 none 0 0 0 266 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 1 0
ShockWave 126 20 20 0 14 0 0 0 255 255 255 0 0 0 expansion\shockwave 7 8 0 0 0 0 3 0 0 1 1 1 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 1 243 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 8 0
LightningTalons 127 30 30 0 25 0 4 0 255 255 255 0 0 0 null 1 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 232 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
LightningTalonsTrail 128 0 0 0 12 0 3 1 255 255 255 0 0 1 LightningStrike 8 16 0 1 0 7 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 4 Rand Light Radius Add 0 none 0 1 1 232 8 0 0 0 0 0 0 ltng 2 5 2 2 2 0 0 0 0 64 32 0
PhoenixTrail 129 0 0 0 90 25 5 1 255 178 64 0 0 1 groundFireBig 37 16 0 1 12 36 3 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
RabiesPlague 130 0 0 0 10 5 0 0 0 0 0 1 0 0 null 2 16 0 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
RabiesContagion 131 5 5 0 20 0 0 0 0 0 0 0 2 0 null 1 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 238 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Wake of Destruction maker 132 10 10 0 25 2 8 0 255 178 64 0 0 1 groundFireSmall 2 16 0 1 1 2 8 0 0 1 1 1 1 1 4 2 0 0 0 0 1 0 1 0 1 0 1 0 none 0 none 0 0 0 262 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
Wake of Destruction 133 8 8 0 20 0 5 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 3 0 0 1 1 1 1 1 4 1 0 0 0 0 1 0 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
DeathSentryExplode 134 0 0 0 24 0 0 0 0 0 0 0 0 0 Expansion\dethsentry02 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
TigerFury 135 12 12 0 128 0 3 0 255 255 255 1 0 1 BoneSpirit 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 none 0 none 0 0 0 280 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
TigerFuryTrail 136 0 0 0 20 0 5 1 255 178 64 0 0 1 groundFireMedium 37 16 0 1 12 36 3 0 0 1 1 1 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 4 Rand Light Radius Add 0 none 0 0 0 0 0 0 0 0 0 0 0 fire 5 10 5 5 5 100 10 10 10 32 1 0
TigerFuryTrail 137 0 0 0 12 0 0 0 255 255 255 0 0 0 BoneSpiritExplode 13 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 280 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Inferno Sentry 1 138 12 12 0 50 0 5 0 255 178 64 1 0 0 Flamethrower 15 16 0 0 0 0 3 0 0 0 2 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 8 "Mana Use, 16ths." 12 Minimum range 0 1 1 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
Inferno Sentry 2 139 12 12 0 50 0 5 0 255 178 64 1 0 0 Flamethrower2 15 16 0 0 0 0 3 0 0 0 2 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 8 "Mana Use, 16ths." 12 Minimum range 0 1 1 272 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
Ancient throwing axe 140 24 24 0 20 0 0 0 255 255 255 1 0 1 MissileHandAxe 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 1 0 0 1 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 32 0
SentryLightningBolt 141 30 30 0 10 2 4 0 255 255 255 0 0 2 null 2 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 271 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
SentryLightningHit 142 0 0 0 12 0 3 1 255 255 255 0 0 1 LightningStrike 8 16 0 1 0 7 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 2 5 2 2 2 0 0 0 0 64 32 0
Anya Center 143 0 0 0 300 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Anya Icicle 144 0 0 0 1 0 0 0 0 0 0 0 0 0 expansion\icicle 10 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Anya IceImpact 145 0 0 0 10 0 0 0 0 0 0 0 0 0 expansion\iceimpact 10 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Anya IceSteam 146 0 0 0 30 0 0 0 0 0 0 0 0 0 expansion\icecavequest_steam 30 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Anya IceMagic 147 0 0 0 30 0 0 0 0 0 0 0 0 0 expansion\icecavequest_magic 30 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
DragonTail Missile 148 0 0 0 16 0 0 0 255 178 64 0 0 0 ExpArrowExplode 16 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 0 1 0 0 0 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
DragonFlight 149 0 0 0 15 0 0 0 255 255 255 0 0 1 expansion\FirestormEmitter 16 16 0 0 0 0 3 0 0 1 1 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 270 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
DragonFlightMaker 150 8 8 0 20 0 0 0 255 255 255 0 0 1 expansion\FirestormEmitter 16 16 0 0 0 0 3 0 0 1 1 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 burn 20 10 4 4 4 100 20 20 20 0 1 0
Progressive Radius Damage 151 8 8 0 20 0 0 0 255 255 255 0 0 1 null 1 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Vine Beast Walk 1 Fade 152 0 0 0 11 0 0 0 255 255 255 0 0 0 expansion\Pod_Jump_FadeOut 11 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 1 0 0 0 1 1 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Vine Beast Walk 2 Fade 153 0 0 0 31 0 0 0 255 255 255 0 0 0 expansion\deathmaulerfadeout 31 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 1 0 0 0 1 1 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Vine Beast Neutral Fade 154 0 0 0 11 0 0 0 255 255 255 0 0 0 expansion\Pod_Neutral_FadeOut 11 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 1 0 0 0 1 1 0 0 0 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Vine Recycler Delay 155 0 0 0 47 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 9 Drop Trail delay 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Ancient Death Center 156 3 3 0 400 0 2 0 255 125 125 0 0 1 null 2 16 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Ancient Death Cloud 157 3 3 0 50 0 2 0 255 125 125 0 0 1 expansion\AncientDeathMissile 16 16 0 1 4 12 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
lightning charge up nova 158 24 24 -1000 13 0 0 0 255 255 255 0 0 0 ElectricNova 13 16 0 0 0 0 3 0 0 1 1 1 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 1 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0
ChainLightningCharge up 159 30 30 0 25 0 4 0 255 255 255 0 0 1 LightningStrike 8 16 0 0 0 0 3 1 0 1 1 1 0 1 4 2 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 32 0
Pain Worm Appear 160 0 0 0 25 0 5 0 255 178 64 0 0 0 Revive 25 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Baal Taunt Control 161 0 0 0 75 0 0 0 255 255 255 0 0 1 null 1 16 0 0 0 0 3 0 0 1 1 1 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 25 Delay for taunt sound 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Baal Taunt Lightning 162 30 30 0 10 2 0 0 255 255 255 0 0 2 null 2 16 0 0 0 0 3 0 0 1 1 1 0 1 10 2 1 0 0 0 1 1 1 0 1 0 1 10 Random range 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 15 45 20 20 20 0 0 0 0 64 1 0
Baal Taunt Lightning Trail 163 30 30 0 25 0 4 0 255 255 255 0 0 1 LightningStrike 8 16 0 0 0 0 3 0 0 1 1 1 0 1 10 2 1 0 0 0 1 1 1 1 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 32 0
Baal Taunt Poison 164 0 0 0 60 0 0 0 255 255 255 0 0 1 PoisonSparks 31 16 0 1 10 19 3 0 0 1 1 1 1 0 0 2 1 0 0 0 1 0 0 0 1 0 1 4 "Slow drift speed, fourths." 8 "Fast drift speed, fourths." 0 1 1 0 4 0 0 0 0 0 0 pois 14 25 4 5 8 50 0 0 0 0 8 0
Baal Spawn Monsters 165 12 12 0 60 0 5 0 81 81 255 1 0 1 Expansion\baalsummonmissile2 8 8 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Mindblast Hit 166 0 0 0 10 0 0 0 255 255 255 0 0 0 Expansion\Mindblast 10 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Blade Shield Missile 167 18 30 250 100 0 5 0 255 255 255 3 0 1 Expansion\blade_shield_missile 5 16 0 0 0 0 3 0 0 1 1 0 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 266 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Blade Shield Attachment 168 0 0 0 500 100 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Baal Inferno 169 20 40 250 19 0 5 0 255 255 255 1 0 0 Expansion\baalmissile 14 12 0 0 0 0 3 0 0 1 1 0 0 1 4 3 1 0 1 0 1 1 1 0 1 0 1 0 none 12 Minimum range 0 0 0 317 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Baal Nova 170 20 20 0 40 0 5 0 255 255 255 0 0 0 Expansion\baalsummonmissile 8 12 0 0 0 0 3 1 0 1 1 1 0 1 4 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
FistsOfFireExplode 171 0 0 0 16 0 15 0 255 178 64 0 0 0 ExpArrowExplode 16 16 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
FistsOfFireFirewall 172 0 0 0 64 0 5 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 8 0 0 0 1 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 2 0 0 0 0 0 0 fire 6 10 5 9 16 0 0 0 0 32 1 0
ClawsOfThunderBolt 173 12 12 0 98 0 3 1 255 255 255 1 0 1 ChargedBolt 10 16 0 1 2 8 3 1 0 1 1 1 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 1 40 11 13 15 0 0 0 0 64 16 0
ClawsOfThunderNova 174 24 24 -1000 13 0 0 0 255 255 255 0 0 0 ElectricNova 13 16 0 0 0 0 3 0 0 1 1 0 0 1 4 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 0 1 0 8 0 0 0 0 0 0 ltng 1 20 7 7 7 0 0 0 0 64 16 0
BladesOfIceExplode 175 0 0 0 16 0 11 0 81 81 255 0 0 0 IceArrowExplode 16 16 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BladesOfIceCubes 176 0 0 0 30 0 0 0 255 255 255 0 0 0 IceBreakSmall 15 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
BladesOfIceCubesMelt 177 0 0 0 150 0 0 0 255 255 255 0 0 0 IceBreakSmallMelt 12 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
RoyalStrikeMeteor 178 0 0 0 60 0 0 0 0 0 0 0 0 1 Meteor 12 16 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 fire 20 40 6 12 20 0 0 0 0 0 1 0
RoyalStrikeMeteorCenter 179 0 0 0 60 0 2 0 255 64 64 0 0 1 MeteorTargetIndicator 17 16 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
RoyalStrikeMeteorTail 180 0 0 0 60 0 0 0 0 0 0 0 0 1 MeteorTail 12 16 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
RoyalStrikeMeteorExplode 181 0 0 0 16 0 13 0 255 178 64 0 0 0 ExpArrowExplode 16 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 1 0 1 1 0 1 0 1 2 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
RoyalStrikeMeteorFire 182 0 0 0 37 0 5 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 8 0 0 0 1 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 2 0 0 0 0 0 0 fire 10 14 6 7 8 0 0 0 0 32 1 0
RoyalStrikeChainLightning 183 30 30 0 25 0 4 0 255 255 255 0 0 1 LightningStrike 8 16 0 0 0 0 3 1 0 1 1 1 0 1 4 2 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 ltng 1 40 11 13 15 0 0 0 0 64 32 0
RoyalStrikeChaosIce 184 16 16 0 40 0 4 0 81 81 255 0 0 1 IceBolt 6 16 0 0 0 0 3 1 0 1 1 1 0 1 4 1 1 0 0 0 1 1 1 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 cold 16 32 4 6 8 100 10 15 20 0 16 0
World Stone Chip 1 185 1 1 0 500 0 0 0 255 255 255 0 0 1 expansion\wstonechips1 25 12 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
World Stone Chip 2 186 1 1 0 500 0 0 0 255 255 255 0 0 1 expansion\wstonechips2 33 12 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
World Stone Chip 3 187 1 1 0 500 0 0 0 255 255 255 0 0 1 expansion\wstonechips3 25 12 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
World Stone Chip 4 188 1 1 0 500 0 0 0 255 255 255 0 0 1 expansion\wstonechips4 17 12 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HighPriestLightning 189 8 8 0 16 0 12 0 255 64 64 0 0 0 HighPriestLightning 9 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 1 0 1 1 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 ltng 8 30 10 10 10 0 0 0 0 0 8 0
InfernoFlame1 190 12 12 0 30 0 5 0 255 178 64 1 0 0 Flamethrower 15 16 0 0 0 0 3 0 0 0 2 0 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 8 "Mana Use, 16ths." 7 Minimum range 0 1 1 41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1 0
Mindblast Center 191 0 0 0 10 0 0 0 255 255 255 0 0 0 Expansion\Mindblast 10 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ArmageddonControl 192 0 0 0 25 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ArmageddonRock 193 0 0 0 25 0 0 0 0 0 0 1 0 1 expansion\armageddon_rock 16 16 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ArmageddonTail 194 0 0 0 25 0 0 0 0 0 0 1 0 1 expansion\armageddon_fire 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ArmageddonExplosion 195 0 0 0 16 0 5 0 255 255 255 0 0 0 ExpArrowExplode 16 16 0 0 0 0 3 0 0 1 2 0 0 0 0 3 0 0 0 0 1 0 1 0 1 0 0 4 Damage radius 0 none 0 0 0 249 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HurricaneSwoosh 196 20 20 0 22 0 0 0 0 0 0 1 0 0 expansion\hurricane_swoosh 11 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
HurricaneCart 197 18 18 0 20 0 0 0 0 0 0 1 0 0 expansion\hurricane_cart 20 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HurricaneRock 198 18 18 0 20 0 0 0 0 0 0 1 0 0 expansion\hurricane_rocks 20 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HurricaneSack 199 18 18 0 20 0 0 0 0 0 0 1 0 0 expansion\hurricane_sack 20 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HurricaneTree 200 18 18 0 20 0 0 0 0 0 0 1 0 0 expansion\hurricane_tree 20 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
HurricaneVase 201 18 18 0 20 0 0 0 0 0 0 1 0 0 expansion\hurricane_vase 20 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalCorpseExplodeDelay 202 0 0 0 10 0 5 0 255 178 64 0 0 0 null 1 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
BaalCorpseExplodeExplosion 203 0 0 0 16 0 5 0 255 178 64 0 0 0 expansion\CEBaal 16 16 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 1 1 0 0 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
Baal Cold Maker 204 20 20 0 50 0 5 0 143 143 255 0 0 0 BlueNovaB 8 8 0 0 0 0 3 0 0 0 1 0 0 1 4 2 0 0 0 0 1 1 1 75 1 0 1 0 none 0 none 0 1 1 318 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1
Baal Cold Trail 205 13 13 0 16 0 5 0 143 143 255 0 0 0 BlueNovaB 8 8 0 0 0 0 3 0 0 0 1 0 0 1 4 2 0 0 0 0 1 1 1 75 1 0 1 0 none 0 none 0 1 1 318 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 1
Baal Spawn Monsters Explode 206 0 0 0 20 0 5 0 81 81 255 1 0 0 Expansion\baalsummonsmall 11 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 1 0 1 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
ImpMiss21 207 20 20 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile2 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 10 15 4 4 4 0 0 0 0 0 16 0
ImpMiss22 208 20 20 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile2 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 12 17 4 4 4 0 0 0 0 0 16 0
ImpMiss23 209 20 20 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile2 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 14 22 4 4 4 0 0 0 0 0 16 0
ImpMiss24 210 20 20 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile2 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 20 25 4 4 4 0 0 0 0 0 16 0
ImpMiss25 211 20 20 0 80 0 5 0 255 64 64 1 0 1 Expansion\impmissile2 8 16 0 0 0 0 3 1 0 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 0 8 0 0 0 0 0 0 fire 23 33 5 5 5 0 0 0 0 0 16 0
AnyaSteam1 212 0 0 0 26 0 0 0 0 0 0 0 0 0 ChillBloodPuff 26 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
AnyaSteam2 213 0 0 0 26 0 0 0 0 0 0 0 0 0 ChillBloodPuff 26 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
AncientsGuide 213 0 0 0 0 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
AncientsMarker 214 0 0 0 0 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
AncientsControl 215 0 0 0 0 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
OverseerControl 216 0 0 0 500 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Nihlithak1 217 0 0 0 32 0 0 0 0 0 0 0 0 0 expansion\Nihlathak A 16 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Nihlithak2 218 0 0 0 192 0 0 0 0 0 0 0 0 1 expansion\Nihlathak B 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Nihlithak3 219 0 0 0 34 0 0 0 0 0 0 0 0 0 expansion\Nihlathak C 17 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
NehlithakControl 220 0 0 0 224 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
NehlithakSwoosh 221 20 20 0 22 0 0 0 0 0 0 1 0 0 expansion\nehlthak_Swoosh 11 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
NehlithakDebris1 222 18 18 0 16 0 0 0 0 0 0 0 0 1 expansion\Skeleton_pieces_A 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
NehlithakDebris2 223 18 18 0 16 0 0 0 0 0 0 0 0 1 expansion\Skeleton_pieces_B 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
NehlithakDebris3 224 18 18 0 16 0 0 0 0 0 0 0 0 1 expansion\Skeleton_pieces_C 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
NehlithakDebris4 225 18 18 0 16 0 0 0 0 0 0 0 0 1 expansion\Skeleton_pieces_D 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
NehlithakGlow 226 0 0 0 0 0 0 0 0 0 0 0 0 0 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BaalTeleport 227 0 0 0 20 0 3 0 128 64 64 0 0 0 Expansion\Baalsummonoverlay 20 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalCloneDeath 228 0 0 0 20 0 3 0 128 64 64 0 0 0 Expansion\Baalteleport 20 24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
AnyaSteamVent 229 0 0 0 82 0 0 0 0 0 0 0 0 0 expansion\IceCaveEruption 41 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
AnyaSteam 230 0 0 0 82 0 0 0 0 0 0 0 0 0 expansion\Ice_Smoke 41 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0
NehlithakHole 231 0 0 0 250 0 0 0 0 0 0 0 0 1 expansion\nehlthak_Hole 41 16 0 1 25 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
NehlithakHoleLight 232 0 0 0 250 0 0 0 0 0 0 0 0 1 expansion\nehlthak_Hole_light 41 16 0 1 25 29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
VolcanoFireTrail 233 12 12 0 0 0 0 0 0 0 0 0 0 1 expansion\wallfire_low_Tiny 25 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
NehlithakGlow2 234 0 0 0 192 0 0 0 0 0 0 0 0 1 expansion\NehlithakGlow 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
NehlithakBoneChips 235 0 0 0 192 0 0 0 0 0 0 0 0 1 expansion\BonePieces 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalCorpseExplodeFade 236 0 0 0 44 0 0 0 0 0 0 0 0 1 expansion\CEBaalFade 11 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1
ArmageddonFire 237 0 0 0 37 0 5 1 255 178 64 0 0 1 groundFireSmall 37 16 0 1 12 36 8 0 0 0 1 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 1 0 none 0 none 0 0 0 0 2 0 0 0 0 0 0 fire 10 14 6 7 8 0 0 0 0 32 1 0
IceSparkle 238 0 0 0 250 0 2 1 255 178 64 0 0 1 expansion\iceglint 6 12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Control 239 0 0 0 650 0 10 0 255 178 64 0 0 1 null 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Spirit 1 240 10 10 0 250 0 0 0 0 0 0 0 0 1 expansion\baaldeathghostie02 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
BaalFX Spirit 2 241 10 10 0 250 0 0 0 0 0 0 0 0 1 expansion\baaldeathghostie01 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0
BaalFX Spirit 3 242 10 10 0 250 0 0 0 0 0 0 0 0 1 null 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Spirit 4 243 10 10 0 250 0 0 0 0 0 0 0 0 1 null 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Spirit 5 244 10 10 0 250 0 0 0 0 0 0 0 0 1 null 1 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Baal Head Appear 245 0 0 0 36 0 0 0 0 0 0 0 0 0 expansion\baaldeathswirl 36 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Baal Head 1 246 0 0 0 56 0 5 0 255 178 64 0 0 0 expansion\baaldeathhead01 42 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Baal Head 2 247 0 0 0 56 0 5 0 255 178 64 0 0 0 expansion\baaldeathhead02 42 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Baal Head 3 248 0 0 0 56 0 5 0 255 178 64 0 0 0 expansion\baaldeathhead03 42 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Tyreal Debris 1 249 0 0 0 40 0 0 0 0 0 0 0 0 1 expansion\BCeilingChunkFall1 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Tyreal Debris 2 250 0 0 0 40 0 0 0 0 0 0 0 0 1 expansion\BCeilingChunkFall2 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Tyreal Debris 3 251 0 0 0 40 0 0 0 0 0 0 0 0 1 expansion\BCeilingChunkFall3 1 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BaalFX Tyreal Debris Break 252 0 0 0 16 0 0 0 0 0 0 0 0 0 expansion\BCeilingChunkBreak 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Worldstone shake 253 0 0 0 200 0 0 0 0 0 0 0 0 1 null 1 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 none 0 none 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
BlessedHammer 254 18 30 250 120 0 5 0 222 222 255 6 0 1 blessedhammer 6 16 0 0 0 0 3 0 0 1 1 0 0 0 0 1 1 0 0 0 0 1 1 0 1 0 1 0 none 0 none 0 0 0 0 8 0 12 16 8 8 8 0 0 0 0 0 0 0 0 0 0 16 0
SentryLightningBolt 255 30 30 0 10 2 4 0 255 255 255 0 0 2 null 2 16 0 0 0 0 3 0 0 1 1 1 0 0 0 2 1 0 0 0 1 1 1 0 1 0 1 0 none 0 none 0 1 1 276 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 1 0
SentryLightningHit 256 0 0 0 12 0 3 1 255 255 255 0 0 1 LightningStrike 8 16 0 1 0 7 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 0 0 4 Rand Light Radius Add 0 none 0 1 1 0 8 0 0 0 0 0 0 ltng 2 5 2 2 2 0 0 0 0 64 32 0
LightningTowerNova 257 24 24 -1000 13 0 0 0 255 255 255 0 0 0 ElectricNova 13 16 0 0 0 0 3 0 0 1 1 0 0 1 4 1 1 0 0 0 0 1 1 0 1 0 1 0 none 0 none 0 0 1 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64 16 0

145
txt/MonAi.txt Normal file
View File

@ -0,0 +1,145 @@
AI *aip1 *aip2 *aip3 *aip4 *aip5 *aip6 *aip7 *aip8 *eol
None 0
Idle 0
Skeleton approach? stall time attack? att1/att2? 0
Zombie approach? aware dist att1/att2? 0
Bighead hurt% circle? fire while healthy? fire while hurt? 0
BloodHawk charge? wander? attack? run vel charge vel 0
Fallen cmd:attack? attack? att1/att2? 0
Brute circle? attack? att1/att2? 0
SandRaider hurt% circle? attack? approach? charge time charge color att1/att2? 0
Wraith approach? stall time attack? 0
CorruptRogue approach? stall time attack? run vel run? 0
Baboon hurt% circle? attack? att1/att2? regen bonus 0
Goatman approach? stall time attack? 0
FallenShaman rez?/cmd? shoot? melee?/circle? rez dist shoot dist 0
QuillRat activate dist shoot? walk dist 0
SandMaggot lay? spit? #of eggs melee? min down/up time 0
ClawViper charge? charge dist attack? att1/att2? stall time charge color 0
SandLeaper leap? attack? approach? circle? 0
PantherWoman approach? attack? pack dist stall time regroup from melee 0
Swarm approach? stall time attack? 0
Scarab attack? att1/att2? stall time jab? cmd? 0
Mummy awakedist approach? attack? att1/att2? stall time 0
GreaterMummy melee/breathe? raise? heal? shoot? raise range 0
Vulture attack? stall time wounded% circle? move? 0
Mosquito min suck loop suck loop rng attack? suck or att? max ambient loop 0
WillOWisp cast? melee? approach? 0
Arach attack? circle in melee? engage? run dist hurt% 0
ThornHulk attack? att1/att2? melee circle? frenzy? frenzy speed consec. A2 0
Vampire melee? cast? active dist upgrade cast? spell flags 0
BatDemon hurt% disengage on hit? attack? att1/ltng? regen roosted 0
Fetish attack? stall time attack loop weak% 0
NpcOutOfTown 0
Npc 0
HellMeteor attack? stall time range 0
Andariel spray in melee? stall? fire or engage? spray from dist? 0
CorruptArcher approach? shoot? stall time run? always run dist use skill 2 use skill 3 walk tow dist 0
CorruptLancer approach? attack? stall time run? always run dist 0
SkeletonBow shoot? stall time approach? walk steps tgt dist 0
MaggotLarva attack? att recovery approach? idle stall time circle? 0
PinHead attack? att stall time approach? idle stall time smite? 0
MaggotEgg stall hatch? 0
Towner 0
Vendor 0
FoulCrowNest spawn interval num to spawn 0
Duriel holy freeze level smite? jab? att2? charge? 0
Sarcophagus spawn interval num to spawn 0
ElementalBeast approach? activation dist idle stall 0
FlyingScimitar approach? attack? stall time circle? 0
ZakarumZealot attack? att2? hurt% run? 0
ZakarumPriest attack? blizzard? ltng? cast? spell timer heal range 0
Mephisto 0
Diablo 0
FrogDemon attack melee? shoot melee? circle melee? circle ranged? shoot? shoot dist stall time emerge dist 0
Summoner cast? weaken? pref element? nova timer firewall timer walk away? nova dist missile dist 0
NpcStationary 0
Izual attack? engage? nova at range? nova in melee? post nova doldrums num swings 0
Tentacle attack? submerge? submerge secs emerge secs stall time active dist 0
TentacleHead shoot? submerge? submerge secs emerge secs stall time active dist 0
Navi 0
BloodRaven 0
GoodNpcRanged 0
Hireable 0
TownRogue 0
GargoyleTrap shoot dist shoot? fire recovery stall time 0
SkeletonMage shoot? approach dist approach? too close dist walk away? fire dist circle? stall time 0
FetishShaman heal? heal capability heal range circle? heal search range 0
SandMaggotQueen max spawn delay 0
NecroPet 0
VileMother max spawn max at once spawn? attack? approach? circle? stall time 0
VileDog attack? melee stall approach? 0
FingerMage attack/circle? cast? healthy% hurt% cast range max run tries out of range melee stall 0
Regurgitator attack? eat in melee? approach? look for food? look in melee? smell dist 0
DoomKnight attack? melee stall approach? regular stall 0
AbyssKnight bone armor hp% bonearmor? attack? melee stall no fire dist fire recovery approach? active dist 0
OblivionKnight flee range engage range curse timer curse? shoot? bonespirit? approach? approach dist 0
QuillMother attack? approach? melee stall regular stall 0
EvilHole num to spawn spawn delay 0
Trap-Missile distance num to shoot delay 0
Trap-RightArrow min dist max dist delay delay2 0
Trap-LeftArrow min dist max dist delay delay2 0
Trap-Poison range num times delay 0
JarJar 0
InvisoSpawner num to spawn activation dist delay 0
MosquitoNest num to spawn activation dist delay 0
BoneWall 0
HighPriest engage? heal at range? heal/hydra timer hydra at range? ltng at range? disengage? ltng engaged? range 0
Hydra 0
Trap-Melee 0
7TIllusion 0
Megademon inferno ranged? inferno melee? swing melee? approach? circle melee? inferno timer 0
Griswold 0
DarkWanderer 0
Trap-Nova range num times delay 0
ArcaneTower num sk1 sk1 stall sk1 long delay num sk2 sk2 stall sk2 long delay 0
DesertTurret short delay num shots long delay range spread 0
PantherJavelin approach? throw? group dist walk away? stall time throw dist 0
FetishBlowgun stay in range run away? 0
Spirit 0
Smith 0
TrappedSoul 0
Buffy 0
AssassinSentry 0
BladeCreeper 0
InvisoPet 0
DeathSentry 0
ShadowWarrior max target dist max boss dist attack chance skill decrement summoning skill/min to use skill/max to use skill 0
ShadowMaster approach dist/melee bonus/progressive bonus random pick/ignore range/boss leash attack chance summoning skill 0
Raven 0
DruidWolf 0
Totem 0
Vines 0
CycleOfLife 0
DruidBear 0
SiegeTower stall time 0
ReanimatedHorde attack? melee stall charge range charge? follow? walk forward? ranged stall reanimate 0
SiegeBeast call imp dist attack? stamp in melee? melee stall stomp ranged? charge? charge vel 0
Minion attack? melee stall approach? ranged stall att1/att2? 0
SuicideMinion blow up delay stall time approach? 0
Succubus attack? approach? curse? curse range melee stall ranged stall curse level 0
SuccubusWitch attack? approach? walk away? comfort dist shoot? stall amp dam tgt hp% weaken my hp% 0
Overseer rally spell timer heal? whip? comfort dist comfort zone attack? att1/att2? 0
MinionSpawner num to spawn stall time spawn delay activation range max in area 0
Imp refer to source 0
Catapult attack? 0
FrozenHorror attack? approach? arctic blast? stall time 0
BloodLord attack? approach? frenzy/att1? stall time 0
CatapultSpotter attack? delay range random range shots per skill 0
NpcBarb 0
Nihlathak 0
GenericSpawner 0
DeathMauler attack? approach? shoot range shoot? 0
Wussie 0
AncientStatue 0
Ancient 0
BaalThrone 0
BaalCrab 0
BaalTaunt 0
PutridDefiler 0
BaalToStairs 0
BaalTentacle 0
BaalCrabClone 0
BaalMinion 0
ClawViperEx charge? charge dist attack? shoot? stall time charge color shoot dist shoot timer 0
ShadowMasterNoInit approach dist/melee bonus/progressive bonus random pick/ignore range attack chance summoning skill 0

46
txt/MonEquip.txt Normal file
View File

@ -0,0 +1,46 @@
monster oninit level item1 loc1 mod1 item2 loc2 mod2 item3 loc3 mod3 eol
bloodraven 1 0 sbw rarm 6 0
flyingscimitar 1 0 scm rarm 6 0
valkyrie 27 ci2 head 6 0
valkyrie 25 amu neck 6 0
valkyrie 23 uhc belt 6 0
valkyrie 21 uhb feet 6 0
valkyrie 19 utg glov 6 0
valkyrie 17 7p7 rarm 6 0
valkyrie 16 uar tors 6 0
valkyrie 14 ci0 head 4 0
valkyrie 13 amu neck 4 0
valkyrie 12 zhb belt 4 0
valkyrie 11 xhb feet 4 0
valkyrie 10 xhg glov 4 0
valkyrie 8 9p9 rarm 6 0
valkyrie 7 xul tors 6 0
valkyrie 5 hbl belt 4 0
valkyrie 4 hbt feet 4 0
valkyrie 2 hgl glov 4 0
valkyrie 0 spr rarm 6 0
valkyrie 0 ful tors 6 0
shadowwarrior 0 ces rarm 4 0
shadowwarrior 0 btl larm 4 0
shadowwarrior 0 tors 4 0
shadowwarrior 0 head 4 0
shadowmaster 17 amu neck 6 0
shadowmaster 13 rin lrin 6 0
shadowmaster 11 7ar rarm 6 7xf rarm 6 7qr rarm 6 0
shadowmaster 11 7cs larm 6 7tw larm 6 7qr larm 6 0
shadowmaster 11 ulg glov 6 umg glov 6 uhg glov 6 0
shadowmaster 11 rin rrin 6 0
shadowmaster 11 tors 6 0
shadowmaster 11 head 6 0
shadowmaster 9 rin rrin 4 0
shadowmaster 6 7ar rarm 4 7xf rarm 4 7qr rarm 4 0
shadowmaster 6 7cs larm 4 7tw larm 4 7qr larm 4 0
shadowmaster 6 ulg glov 4 umg glov 4 uhg glov 4 0
shadowmaster 6 tors 4 0
shadowmaster 6 head 4 0
shadowmaster 5 ulg glov 3 umg glov 3 uhg glov 3 0
shadowmaster 0 7ar rarm 3 7xf rarm 3 7qr rarm 3 0
shadowmaster 0 7cs larm 3 7tw larm 3 7qr larm 3 0
shadowmaster 0 tors 3 0
shadowmaster 0 head 3 0
*end* do not remove 0

3
txt/MonItemPercent.txt Normal file
View File

@ -0,0 +1,3 @@
Name HeartPercent BodyPartPercent TreasureClassPercent ComponentPercent
Composited 0 0 20 0
NonComposited 0 0 20 0

112
txt/MonLvl.txt Normal file
View File

@ -0,0 +1,112 @@
Level AC AC(N) AC(H) L-AC L-AC(N) L-AC(H) TH TH(N) TH(H) L-TH L-TH(N) L-TH(H) HP HP(N) HP(H) L-HP L-HP(N) L-HP(H) DM DM(N) DM(H) L-DM L-DM(N) L-DM(H) XP XP(N) XP(H) L-XP L-XP(N) L-XP(H)
0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 6 92 147 6 108 173 8 108 216 8 108 216 7 107 830 7 107 1107 2 3 4 2 3 4 30 78 117 30 78 117
2 12 102 162 12 120 190 12 126 254 12 126 254 9 113 852 9 113 1136 3 4 6 3 4 6 40 104 156 40 104 156
3 18 112 177 18 132 208 18 144 292 18 144 292 12 120 875 12 120 1167 3 4 6 3 4 6 50 131 197 50 131 197
4 24 122 192 24 144 226 26 162 330 26 162 330 15 125 897 15 125 1196 4 5 7 4 5 7 60 156 234 60 156 234
5 30 133 207 30 156 243 35 180 368 35 180 368 17 132 920 17 132 1227 4 5 7 4 5 7 70 182 273 70 182 273
6 36 143 222 36 168 261 45 198 406 45 198 406 20 139 942 20 139 1256 5 7 9 5 7 9 80 207 311 80 207 311
7 42 153 236 42 180 278 56 216 444 56 216 444 23 145 965 23 145 1287 5 7 9 5 7 9 90 234 351 90 234 351
8 48 163 252 48 192 296 67 234 482 67 234 482 27 152 987 27 152 1316 6 8 11 6 8 11 100 260 390 100 260 390
9 54 173 267 54 204 314 78 252 520 78 252 520 31 157 1010 31 157 1347 7 9 13 7 9 13 110 285 428 110 285 428
10 60 184 281 60 216 331 89 270 558 89 270 558 35 164 1032 35 164 1376 7 9 13 7 9 13 120 312 468 120 312 468
11 66 194 297 66 228 349 100 288 596 100 288 596 36 171 1055 36 171 1407 8 11 15 8 11 15 130 338 507 130 338 507
12 72 204 311 72 240 366 111 306 634 111 306 634 40 177 1077 40 177 1436 8 11 15 8 11 15 140 363 545 140 363 545
13 78 214 326 78 252 384 122 324 672 122 324 672 44 184 1100 44 184 1467 9 12 17 9 12 17 154 401 602 154 401 602
14 84 224 342 84 264 402 133 342 710 133 342 710 48 189 1122 48 189 1496 10 13 19 10 13 19 169 440 660 169 440 660
15 90 235 356 90 276 419 144 360 748 144 360 748 52 196 1145 52 196 1527 10 13 19 10 13 19 186 482 723 186 482 723
16 96 245 371 96 288 437 155 378 786 155 378 786 56 203 1167 56 203 1556 11 15 20 11 15 20 205 533 800 205 533 800
17 102 255 386 102 300 454 166 396 824 166 396 824 60 209 1190 60 209 1587 11 15 20 11 15 20 225 584 876 225 584 876
18 108 265 401 108 312 472 177 414 862 177 414 862 64 216 1212 64 216 1616 12 16 22 12 16 22 248 644 966 248 644 966
19 114 275 417 114 324 490 188 432 900 188 432 900 68 221 1235 68 221 1647 13 17 24 13 17 24 273 708 1062 273 708 1062
20 120 286 431 120 336 507 199 450 938 199 450 938 73 228 1257 73 228 1676 13 17 24 13 17 24 300 779 1169 300 779 1169
21 126 296 446 126 348 525 210 468 976 210 468 976 78 236 1280 78 236 1707 14 19 26 14 19 26 330 857 1286 330 857 1286
22 132 306 461 132 360 542 221 486 1014 221 486 1014 84 243 1302 84 243 1736 14 19 26 14 19 26 363 942 1413 363 942 1413
23 138 316 476 138 372 560 232 504 1052 232 504 1052 89 248 1325 89 248 1767 15 20 28 15 20 28 399 1035 1553 399 1035 1553
24 144 326 491 144 384 578 243 522 1090 243 522 1090 94 255 1347 94 255 1796 16 21 30 16 21 30 439 1139 1709 439 1139 1709
25 150 337 506 150 396 595 254 540 1128 254 540 1128 100 261 1370 100 261 1827 16 21 30 16 21 30 470 1220 1830 470 1220 1830
26 156 347 521 156 408 613 265 558 1166 265 558 1166 106 268 1392 106 268 1856 17 23 31 17 23 31 503 1305 1958 503 1305 1958
27 162 357 536 162 420 630 276 576 1204 276 576 1204 113 275 1415 113 275 1887 17 23 31 17 23 31 538 1397 2096 538 1397 2096
28 168 367 551 168 432 648 287 594 1242 287 594 1242 120 280 1437 120 280 1916 18 24 33 18 24 33 576 1494 2241 576 1494 2241
29 174 377 566 174 444 666 298 612 1280 298 612 1280 126 287 1460 126 287 1947 19 25 35 19 25 35 616 1598 2397 616 1598 2397
30 180 388 581 180 456 683 309 630 1318 309 630 1318 134 320 1482 134 320 1976 19 25 35 19 25 35 659 1709 2564 659 1709 2564
31 186 398 596 186 468 701 320 648 1356 320 648 1356 142 355 1505 142 355 2007 20 27 37 20 27 37 706 1832 2748 706 1832 2748
32 192 408 610 192 480 718 331 666 1394 331 666 1394 150 388 1527 150 388 2036 20 27 37 20 27 37 755 1958 2937 755 1958 2937
33 198 418 626 198 492 736 342 684 1432 342 684 1432 158 423 1550 158 423 2067 21 28 39 21 28 39 808 2097 3146 808 2097 3146
34 204 428 641 204 504 754 353 702 1470 353 702 1470 166 456 1572 166 456 2096 22 29 41 22 29 41 864 2241 3362 864 2241 3362
35 210 439 655 210 516 771 364 720 1508 364 720 1508 174 491 1595 174 491 2127 22 29 41 22 29 41 925 2399 3599 925 2399 3599
36 216 449 671 216 528 789 375 738 1546 375 738 1546 182 525 1617 182 525 2156 23 31 43 23 31 43 990 2568 3852 990 2568 3852
37 222 459 685 222 540 806 386 756 1584 386 756 1584 190 559 1640 190 559 2187 23 31 43 23 31 43 1059 2745 4118 1059 2745 4118
38 228 469 700 228 552 824 397 774 1622 397 774 1622 198 593 1662 198 593 2216 24 32 44 24 32 44 1133 2939 4409 1133 2939 4409
39 234 479 716 234 564 842 408 792 1660 408 792 1660 206 627 1685 206 627 2247 25 33 46 25 33 46 1212 3144 4716 1212 3144 4716
40 240 490 730 240 576 859 419 810 1698 419 810 1698 215 661 1707 215 661 2276 25 33 46 25 33 46 1297 3365 5048 1297 3365 5048
41 246 500 745 246 588 877 430 828 1736 430 828 1736 225 696 1730 225 696 2307 26 35 48 26 35 48 1388 3600 5400 1388 3600 5400
42 252 510 760 252 600 894 441 846 1774 441 846 1774 234 729 1752 234 729 2336 26 35 48 26 35 48 1485 3852 5778 1485 3852 5778
43 258 520 775 258 612 912 452 864 1812 452 864 1812 243 764 1775 243 764 2367 27 36 50 27 36 50 1589 4121 6182 1589 4121 6182
44 264 530 791 264 624 930 463 882 1850 463 882 1850 253 797 1797 253 797 2396 28 37 52 28 37 52 1693 4409 6614 1693 4409 6614
45 270 541 805 270 636 947 474 900 1888 474 900 1888 262 832 1820 262 832 2427 28 37 52 28 37 52 1797 4718 7077 1797 4718 7077
46 276 551 820 276 648 965 485 918 1926 485 918 1926 271 867 1842 271 867 2456 29 39 54 29 39 54 1901 5051 7577 1901 5051 7577
47 282 561 835 282 660 982 496 936 1964 496 936 1964 281 900 1865 281 900 2487 29 39 54 29 39 54 2005 5402 8103 2005 5402 8103
48 288 571 850 288 672 1000 507 954 2002 507 954 2002 290 935 1887 290 935 2516 30 40 56 30 40 56 2109 5783 8675 2109 5783 8675
49 294 581 865 294 684 1018 518 972 2040 518 972 2040 299 968 1910 299 968 2547 31 41 57 31 41 57 2213 6186 9279 2213 6186 9279
50 300 592 880 300 696 1035 529 990 2078 529 990 2078 310 1003 1932 310 1003 2576 31 41 57 31 41 57 2317 6618 9927 2317 6618 9927
51 306 602 895 306 708 1053 540 1008 2116 540 1008 2116 321 1037 1955 321 1037 2607 32 43 59 32 43 59 2421 7080 10620 2421 7080 10620
52 312 612 910 312 720 1070 551 1026 2154 551 1026 2154 331 1071 1977 331 1071 2636 32 43 59 32 43 59 2525 7506 11259 2525 7506 11259
53 318 622 925 318 732 1088 562 1044 2192 562 1044 2192 342 1105 2000 342 1105 2667 33 44 61 33 44 61 2629 7956 11934 2629 7956 11934
54 324 632 940 324 744 1106 573 1062 2230 573 1062 2230 352 1139 2030 352 1139 2707 34 45 63 34 45 63 2733 8435 12653 2733 8435 12653
55 330 643 955 330 756 1123 584 1080 2268 584 1080 2268 363 1173 2075 363 1173 2767 34 45 63 34 45 63 2837 8942 13413 2837 8942 13413
56 336 653 970 336 768 1141 595 1098 2306 595 1098 2306 374 1208 2135 374 1208 2847 35 47 65 35 47 65 2941 9477 14216 2941 9477 14216
57 342 663 984 342 780 1158 606 1116 2344 606 1116 2344 384 1241 2222 384 1241 2962 35 47 65 35 47 65 3045 10044 15066 3045 10044 15066
58 348 673 1000 348 792 1176 617 1134 2382 617 1134 2382 395 1276 2308 395 1276 3077 36 48 67 36 48 67 3149 10647 15971 3149 10647 15971
59 354 683 1015 354 804 1194 628 1152 2420 628 1152 2420 406 1309 2394 406 1309 3192 37 49 68 37 49 68 3253 11286 16929 3253 11286 16929
60 360 694 1029 360 816 1211 639 1170 2458 639 1170 2458 418 1344 2480 418 1344 3307 37 49 68 37 49 68 3357 11964 17946 3357 11964 17946
61 366 704 1045 366 828 1229 650 1188 2496 650 1188 2496 430 1379 2567 430 1379 3422 38 51 70 38 51 70 3461 12680 19020 3461 12680 19020
62 372 714 1059 372 840 1246 661 1206 2534 661 1206 2534 442 1412 2653 442 1412 3537 38 51 70 38 51 70 3565 13442 20163 3565 13442 20163
63 378 724 1074 378 852 1264 672 1224 2572 672 1224 2572 454 1447 2739 454 1447 3652 39 52 72 39 52 72 3669 14249 21374 3669 14249 21374
64 384 734 1090 384 864 1282 683 1242 2610 683 1242 2610 466 1480 2825 466 1480 3767 39 52 72 39 52 72 3773 15104 22656 3773 15104 22656
65 390 745 1104 390 876 1299 694 1260 2648 694 1260 2648 477 1515 2912 477 1515 3882 40 53 74 40 53 74 3877 16010 24015 3877 16010 24015
66 396 755 1119 396 888 1317 705 1278 2686 705 1278 2686 489 1549 2998 489 1549 3997 41 55 76 41 55 76 3981 16916 25374 3981 16916 25374
67 402 765 1134 402 900 1334 716 1296 2724 716 1296 2724 501 1583 3084 501 1583 4112 41 55 76 41 55 76 4085 17822 26733 4085 17822 26733
68 408 775 1149 408 912 1352 727 1314 2762 727 1314 2762 513 1617 3170 513 1617 4227 42 56 78 42 56 78 4189 18728 28092 4189 18728 28092
69 414 785 1165 414 924 1370 738 1332 2800 738 1332 2800 525 1651 3257 525 1651 4342 43 57 80 43 57 80 4293 19634 29451 4293 19634 29451
70 420 796 1179 420 936 1387 749 1350 2838 749 1350 2838 539 1685 3343 539 1685 4457 43 57 80 43 57 80 4397 20540 30810 4397 20540 30810
71 426 806 1194 426 948 1405 760 1368 2876 760 1368 2876 552 1720 3429 552 1720 4572 44 59 81 44 59 81 4501 21446 32169 4501 21446 32169
72 432 816 1209 432 960 1422 771 1386 2914 771 1386 2914 565 1753 3515 565 1753 4687 44 59 81 44 59 81 4605 22352 33528 4605 22352 33528
73 438 826 1224 438 972 1440 782 1404 2952 782 1404 2952 579 1788 3602 579 1788 4802 45 60 83 45 60 83 4709 23258 34887 4709 23258 34887
74 444 836 1239 444 984 1458 793 1422 2990 793 1422 2990 592 1821 3688 592 1821 4917 46 61 85 46 61 85 4813 24164 36246 4813 24164 36246
75 450 847 1254 450 996 1475 804 1440 3028 804 1440 3028 605 1856 3774 605 1856 5032 46 61 85 46 61 85 4917 25070 37605 4917 25070 37605
76 456 857 1269 456 1008 1493 815 1458 3066 815 1458 3066 618 1891 3860 618 1891 5147 47 63 87 47 63 87 5021 25976 38964 5021 25976 38964
77 462 867 1284 462 1020 1510 826 1476 3104 826 1476 3104 632 1924 3947 632 1924 5262 47 63 87 47 63 87 5125 26882 40323 5125 26882 40323
78 468 877 1299 468 1032 1528 837 1494 3142 837 1494 3142 645 1959 4033 645 1959 5377 48 64 89 48 64 89 5229 27788 41682 5229 27788 41682
79 474 887 1314 474 1044 1546 848 1512 3180 848 1512 3180 658 1992 4119 658 1992 5492 49 65 91 49 65 91 5333 28694 43041 5333 28694 43041
80 480 898 1329 480 1056 1563 859 1530 3218 859 1530 3218 673 2027 4205 673 2027 5607 49 65 91 49 65 91 5437 29600 44400 5437 29600 44400
81 486 908 1344 486 1068 1581 870 1548 3256 870 1548 3256 688 2061 4292 688 2061 5722 50 67 93 50 67 93 5541 30506 45759 5541 30506 45759
82 492 918 1358 492 1080 1598 881 1566 3294 881 1566 3294 702 2095 4378 702 2095 5837 50 67 93 50 67 93 5645 31412 47118 5645 31412 47118
83 498 928 1374 498 1092 1616 892 1584 3332 892 1584 3332 717 2129 4464 717 2129 5952 51 68 94 51 68 94 5749 32318 48477 5749 32318 48477
84 504 938 1389 504 1104 1634 903 1602 3370 903 1602 3370 732 2163 4550 732 2163 6067 51 68 94 51 68 94 5853 33224 49836 5853 33224 49836
85 510 949 1403 510 1116 1651 914 1620 3408 914 1620 3408 746 2197 4637 746 2197 6182 52 69 96 52 69 96 5957 34130 51195 5957 34130 51195
86 516 959 1419 516 1128 1669 925 1638 3446 925 1638 3446 761 2232 4723 761 2232 6297 53 70 98 53 70 98 6061 35036 52554 6061 35036 52554
87 522 969 1433 522 1140 1686 936 1656 3484 936 1656 3484 775 2265 4809 775 2265 6412 53 70 98 53 70 98 6165 35942 53913 6165 35942 53913
88 528 979 1448 528 1152 1704 947 1674 3522 947 1674 3522 790 2300 4895 790 2300 6527 54 72 100 54 72 100 6269 36848 55272 6269 36848 55272
89 534 989 1464 534 1164 1722 958 1692 3560 958 1692 3560 805 2333 4982 805 2333 6642 55 73 102 55 73 102 6373 37754 56631 6373 37754 56631
90 540 1000 1478 540 1176 1739 969 1710 3598 969 1710 3598 821 2368 5068 821 2368 6757 55 73 102 55 73 102 6477 38660 57990 6477 38660 57990
91 546 1010 1493 546 1188 1757 980 1728 3636 980 1728 3636 837 2403 5154 837 2403 6872 56 74 104 56 74 104 6581 39566 59349 6581 39566 59349
92 552 1020 1508 552 1200 1774 991 1746 3674 991 1746 3674 853 2436 5240 853 2436 6987 56 74 104 56 74 104 6685 40472 60708 6685 40472 60708
93 558 1030 1523 558 1212 1792 1002 1764 3712 1002 1764 3712 868 2471 5327 868 2471 7102 57 76 105 57 76 105 6789 41378 62067 6789 41378 62067
94 564 1040 1539 564 1224 1810 1013 1782 3750 1013 1782 3750 884 2504 5413 884 2504 7217 58 77 107 58 77 107 6893 42284 63426 6893 42284 63426
95 570 1051 1553 570 1236 1827 1024 1800 3788 1024 1800 3788 900 2539 5499 900 2539 7332 58 77 107 58 77 107 6997 43190 64785 6997 43190 64785
96 576 1061 1568 576 1248 1845 1035 1818 3826 1035 1818 3826 916 2573 5585 916 2573 7447 59 78 109 59 78 109 7101 44096 66144 7101 44096 66144
97 582 1071 1583 582 1260 1862 1046 1836 3864 1046 1836 3864 932 2607 5672 932 2607 7562 59 78 109 59 78 109 7205 45002 67503 7205 45002 67503
98 588 1081 1598 588 1272 1880 1057 1854 3902 1057 1854 3902 948 2641 5758 948 2641 7677 60 80 111 60 80 111 7309 45908 68862 7309 45908 68862
99 594 1091 1613 594 1284 1898 1068 1872 3940 1068 1872 3940 964 2675 5844 964 2675 7792 60 80 111 60 80 111 7413 46814 70221 7413 46814 70221
100 600 1102 1628 600 1296 1915 1079 1890 3978 1079 1890 3978 982 2709 5930 982 2709 7907 61 81 113 61 81 113 7517 47720 71580 7517 47720 71580
101 606 1112 1643 606 1308 1933 1090 1908 4016 1090 1908 4016 999 2744 6017 999 2744 8022 62 82 115 62 82 115 7621 48626 72939 7621 48626 72939
102 612 1122 1658 612 1320 1950 1101 1926 4054 1101 1926 4054 1016 2777 6103 1016 2777 8137 62 82 115 62 82 115 7725 49532 74298 7725 49532 74298
103 618 1132 1673 618 1332 1968 1112 1944 4092 1112 1944 4092 1033 2812 6189 1033 2812 8252 63 84 117 63 84 117 7829 50438 75657 7829 50438 75657
104 624 1142 1688 624 1344 1986 1123 1962 4130 1123 1962 4130 1051 2845 6275 1051 2845 8367 63 84 117 63 84 117 7933 51344 77016 7933 51344 77016
105 630 1153 1703 630 1356 2003 1134 1980 4168 1134 1980 4168 1068 2880 6362 1068 2880 8482 64 85 118 64 85 118 8037 52250 78375 8037 52250 78375
106 636 1163 1718 636 1368 2021 1145 1998 4206 1145 1998 4206 1085 2915 6448 1085 2915 8597 65 86 120 65 86 120 8141 53156 79734 8141 53156 79734
107 642 1173 1732 642 1380 2038 1156 2016 4244 1156 2016 4244 1103 2948 6534 1103 2948 8712 65 86 120 65 86 120 8245 54062 81093 8245 54062 81093
108 648 1183 1748 648 1392 2056 1167 2034 4282 1167 2034 4282 1120 2983 6620 1120 2983 8827 66 88 122 66 88 122 8349 54968 82452 8349 54968 82452
109 654 1193 1763 654 1404 2074 1178 2052 4320 1178 2052 4320 1137 3016 6707 1137 3016 8942 67 89 124 67 89 124 8453 55874 83811 8453 55874 83811
110 2100 2100 2100 2100 2100 2100 6532 6532 6532 6532 6532 6532 10000 10000 10000 10000 10000 10000 130 130 130 130 130 130 160000 160000 160000 160000 160000 160000

17
txt/MonMode.txt Normal file
View File

@ -0,0 +1,17 @@
Name Token
Death DT
Neutral NU
Walk WL
Get Hit GH
Attack1 A1
Attack2 A2
Block BL
Cast SC
Skill1 S1
Skill2 S2
Skill3 S3
Skill4 S4
Dead DD
Knockback GH
Sequence xx
Run RN

44
txt/MonName.txt Normal file
View File

@ -0,0 +1,44 @@
MonName
NULL
Bone Stealer
Gray Death
Limb Ripper
Doom Claw
Vile Skull
Mad Eye
Black Soul
Stone Fang
Skull Jagger
Flesh Saw
Blood Fray
Devourer
Axe Cutter
The Plagued
Rot Kill
Pus Tounge
Wart Blade
Putrid Flesh
Eye Crusher
The Flayed One
Doom Beak
Leach Claw
Shade
Blood Beast
The Impaler
Blade Lick
Dog of Black
Razor Bite
Cold Flame
Death Blade
Hell Maker
Immolator
Crusher of Skulls
Rotten Feast
Doom Fire
Acid Breath
Wind Killer
Red Snake
Viper Fury
Bone Crusher
Eye Sucker
Pus Breath

38
txt/MonPlace.txt Normal file
View File

@ -0,0 +1,38 @@
code
place_nothing
place_npc_pack
place_unique_pack
place_champion
place_rogue_warner
place_bloodraven
place_rivermonster_right
place_rivermonster_left
place_tightspotboss
place_amphibian
place_tentacle_ns
place_tentacle_ew
place_fallennest
place_fetishnest
place_talkingrogue
place_talkingguard
place_dumbguard
place_fallen
place_fallenshaman
place_maggot
place_maggotegg
place_mosquitonest
place_fetish
place_fetishshaman
place_impgroup
place_imp
place_miniongroup
place_minion
place_bloodlord
place_deadminion
place_deadimp
place_deadbarb
place_reanimateddead
place_group25
place_group50
place_group75
place_group100

230
txt/MonPreset.txt Normal file
View File

@ -0,0 +1,230 @@
Act Place
1 gheed
1 cain1
1 akara
1 chicken
1 rogue1
1 kashya
1 cow
1 warriv1
1 charsi
1 andariel
1 place_fallen
1 place_fallenshaman
1 place_bloodraven
1 cow
1 camel
1 place_unique_pack
1 place_npc_pack
1 place_nothing
1 place_nothing
1 place_champion
1 navi
1 rogue1
1 rogue3
1 gargoyletrap
1 place_fallennest
1 place_talkingrogue
1 place_fallen
1 place_fallenshaman
1 trap-horzmissile
1 trap-vertmissile
1 place_group25
1 place_group50
1 place_group75
1 place_group100
1 Bishibosh
1 Bonebreak
1 Coldcrow
1 Rakanishu
1 Treehead WoodFist
1 Griswold
1 The Countess
1 Pitspawn Fouldog
1 Flamespike the Crawler
1 Boneash
1 The Smith
1 The Cow King
1 Corpsefire
2 warriv2
2 atma
2 drognan
2 fara
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 greiz
2 elzix
2 lysander
2 meshif1
2 geglash
2 jerhyn
2 place_unique_pack
2 place_npc_pack
2 place_nothing
2 summoner
2 Radament
2 duriel
2 cain2
2 place_champion
2 act2male
2 act2female
2 act2guard1
2 act2vendor1
2 act2vendor2
2 place_tightspotboss
2 fish
2 place_talkingguard
2 place_dumbguard
2 place_maggot
2 place_maggotegg
2 place_nothing
2 gargoyletrap
2 trap-horzmissile
2 trap-vertmissile
2 place_group25
2 place_group50
2 place_group75
2 place_group100
2 lightningspire
2 firetower
2 place_nothing
2 place_nothing
2 place_nothing
2 Bloodwitch the Wild
2 Fangskin
2 Beetleburst
2 Leatherarm
2 Coldworm the Burrower
2 Fire Eye
2 Dark Elder
2 Ancient Kaa the Soulless
2 act2guard4
2 act2guard5
2 sarcophagus
2 tyrael1
2 skeleton5
3 cain3
3 place_champion
3 act3male
3 act3female
3 asheara
3 hratli
3 alkor
3 ormus
3 meshif2
3 place_amphibian
3 place_tentacle_ns
3 place_tentacle_ew
3 place_fetishnest
3 trap-horzmissile
3 trap-vertmissile
3 natalya
3 place_mosquitonest
3 place_group25
3 place_group50
3 place_group75
3 place_group100
3 compellingorb
3 mephisto
3 trap-melee
3 mephistospirit
3 act3hire
3 place_fetish
3 place_fetishshaman
3 Web Mage the Burning
3 Witch Doctor Endugu
3 Stormtree
3 Sarina the Battlemaid
3 Icehawk Riftwing
3 Ismail Vilehand
3 Geleb Flamefinger
3 Bremm Sparkfist
3 Toorc Icefist
3 Wyand Voidfinger
3 Maffer Dragonhand
4 place_champion
4 trap-horzmissile
4 trap-vertmissile
4 place_group25
4 place_group50
4 place_group75
4 place_group100
4 tyrael2
4 window2
4 window1
4 jamella
4 halbu
4 hellmeteor
4 izual
4 diablo
4 Winged Death
4 The Tormentor
4 Taintbreeder
4 Riftwraith the Cannibal
4 Infector of Souls
4 Lord De Seis
4 Grand Vizier of Chaos
4 trappedsoul1
4 trappedsoul2
4 regurgitator3
4 cain4
4 malachai
4 The Feature Creep
5 larzuk
5 drehya
5 malah
5 nihlathak
5 qual-kehk
5 place_impgroup
5 Siege Boss
5 tyrael3
5 cain6
5 place_imp
5 place_minion
5 place_miniongroup
5 catapult2
5 catapult1
5 place_bloodlord
5 catapultspotter2
5 catapultspotter1
5 act5barb1
5 place_deadbarb
5 place_deadminion
5 place_deadimp
5 cain6
5 act5barb3
5 place_reanimateddead
5 ancientstatue1
5 ancientstatue2
5 ancientstatue3
5 Dac Farren
5 baalthrone
5 baaltaunt
5 injuredbarb1
5 injuredbarb2
5 injuredbarb3
5 baalcrab
5 Axe Dweller
5 Bonesaw Breaker
5 Megaflow Rectifier
5 Eyeback Unleashed
5 Threash Socket
5 Pindleskin
5 Snapchip Shatter
5 Anodized Elite
5 Vinvear Molech
5 Sharp Tooth Sayer
5 Magma Torquer
5 Blaze Ripper
5 Frozenstein
5 worldstoneeffect
5 chicken
5 place_champion
5 evilhut
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing

14
txt/MonProp.txt Normal file
View File

@ -0,0 +1,14 @@
Id prop1 chance1 par1 min1 max1 prop2 chance2 par2 min2 max2 prop3 chance3 par3 min3 max3 prop4 chance4 par4 min4 max4 prop5 chance5 par5 min5 max5 prop6 chance6 par6 min6 max6 prop1 (N) chance1 (N) par1 (N) min1 (N) max1 (N) prop2 (N) chance2 (N) par2 (N) min2 (N) max2 (N) prop3 (N) chance3 (N) par3 (N) min3 (N) max3 (N) prop4 (N) chance4 (N) par4 (N) min4 (N) max4 (N) prop5 (N) chance5 (N) par5 (N) min5 (N) max5 (N) prop6 (N) chance6 (N) par6 (N) min6 (N) max6 (N) prop1 (H) chance1 (H) par1 (H) min1 (H) max1 (H) prop2 (H) chance2 (H) par2 (H) min2 (H) max2 (H) prop3 (H) chance3 (H) par3 (H) min3 (H) max3 (H) prop4 (H) chance4 (H) par4 (H) min4 (H) max4 (H) prop5 (H) chance5 (H) par5 (H) min5 (H) max5 (H) prop6 (H) chance6 (H) par6 (H) min6 (H) max6 (H) *eol
baboon6 fade 1 1 fade 2 2 fade 2 2 0
irongolem fade 16 16 fade 16 16 fade 16 16 0
mephisto cast2 15 15 swing2 15 15 cast2 30 30 swing2 30 30 0
blunderbore crush 15 15 crush 25 25 0
councilmember1 extra-fire 40 40 extra-fire 100 100 0
councilmember2 extra-fire 40 40 extra-fire 100 100 0
councilmember3 extra-fire 40 40 extra-fire 100 100 0
baalhighpriest extra-fire 60 60 extra-fire 120 120 0
bloodraven knock 1 1 0
quillrat6 thorns 15 20 thorns 30 40 0
quillrat7 thorns 15 20 thorns 30 40 0
quillrat8 thorns 15 20 thorns 30 40 0
druidhawk stupidity -1 -1 stupidity -1 -1 stupidity -1 -1 0

1011
txt/MonSeq.txt Normal file

File diff suppressed because it is too large Load Diff

142
txt/MonSounds.txt Normal file
View File

@ -0,0 +1,142 @@
Id Attack1 Weapon1 Att1Del Wea1Del Att1Prb Wea1Vol Attack2 Weapon2 Att2Del Wea2Del Att2Prb Wea2Vol HitSound DeathSound HitDelay DeaDelay Skill1 Skill2 Skill3 Skill4 Footstep FootstepLayer FsCnt FsOff FsPrb Neutral NeuTime Init Taunt Flee CvtMo1 CvtSk1 CvtTgt1 CvtMo2 CvtSk2 CvtTgt2 CvtMo3 CvtSk3 CvtTgt3 EOL
0
act1hire rogue_hit_1 rogue_death_1 0 0 medium_walk_dirt_1 2 0 100 0
act2hire weapon_2ht_1 8 255 weapon_2ht_1 8 255 guard_hit_1 guard_death_1 0 0 medium_walk_dirt_1 2 0 100 0
act3hire weapon_1ht_1 5 255 weapon_1ht_1 5 255 ironwolf_hit_1 ironwolf_death_1 0 0 medium_walk_dirt_1 2 0 100 0
ancient weapon_1hs_large_1 5 255 weapon_1hs_large_1 5 255 barbarian_hit_1 barbarian_death_1 2 0 0
andariel andariel_attack_1 weapon_giant_1 0 5 70 180 andariel_attack_1 weapon_giant_1 0 5 70 180 andariel_hit_1 andariel_death 2 1 walk_hoof_1 2 0 100 monster_andariel_taunt_1 0
arach spider_attack_1 spider_swish_1 2 4 100 255 spider_attack_1 spider_swish_1 2 4 100 255 spider_hit_1 spider_death_1 2 1 light_walk_dirt_1 3 0 100 spider_neutral_1 150 0
baal baal_attack_1 0 100 baal_attack_2 2 100 baal_hit_1 baal_death 2 0 baal_missilecast baal_summon baal_novacast heavy_walk_dirt_1 walk_hoof_1 2 0 100 monster_baal_taunt_1 0
baalcrab baal_attack_1 0 100 baal_attack_2 2 100 baal_hit_1 baal_death 2 0 baal_missilecast baal_summon baal_novacast heavy_walk_dirt_1 walk_hoof_1 2 0 100 monster_baal_taunt_3 0
baalminion baalminion_attack_1 weapon_2ht_1 2 5 100 255 baalminion_attack_1 weapon_giant_1 2 4 100 255 baalminion_hit_1 baalminion_death_1 2 0 heavy_walk_dirt_1 2 0 100 0
baaltentacle baaltentacle_attack_1 0 100 impact_stone_1 baaltentacle_death_1 2 0 baaltentacle_appear_1 0
baboon baboondemon_attack_1 weapon_kick_1 0 4 100 180 baboondemon_attack_1 weapon_kick_1 0 4 100 180 baboondemon_hit_1 baboondemon_death_1 2 1 medium_walk_dirt_1 2 0 100 baboondemon_neutral_1 150 0
barricadedoor barricadedoor_1 0 0
bat creature_bat_1 600 0
batdemon batdemon_attack_1 0 100 batdemon_shock_1 0 0 100 255 batdemon_hit_1 batdemon_death_1 2 1 batdemon_unhide_1 hawk_wing_1 2 0 100 0
bear druidbear_attack_1 weapon_1ht_1 0 5 80 180 druidbear_attack_1 weapon_2hs_small_1 0 6 80 170 druidbear_hit_1 2 druidbear_emerge heavy_walk_dirt_1 walk_ginormous_low_1 2 0 100 druidbear_neutral_1 1800 0
bighead bighead_attack_1 0 100 bighead_cast 0 0 100 255 bighead_hit_1 bighead_death_1 2 1 heavy_walk_dirt_1 2 0 100 bighead_neutral_1 150 0
bladecreeper bladecreeper_death_1 1 0
bloodgolem golemblood_attack_1 0 100 golemblood_attack_1 0 100 golemblood_hit_1 golemblood_death 0 0 golemblood_spawn heavy_walk_dirt_1 golemblood_walk_1 2 0 100 0
bloodlord bloodlord_attack_1 weapon_giant_1 0 4 95 255 bloodlord_attack_1 weapon_giant_1 0 6 95 255 bloodlord_hit_1 bloodlord_death_1 2 0 heavy_walk_dirt_1 walk_ginormous_high_1 2 0 100 megademon_neutral_1 150 0
bloodraven bloodraven_hit_1 bloodraven_death 2 1 bloodraven_cast_raise medium_walk_dirt_1 2 0 100 monster_bloodraven_taunt_1 0
bonefetish bonefetish_attack_1 0 100 bonefetish_attack_1 0 100 bonefetish_hit_1 bonefetish_death_1 0 0 bonefetish_raise light_walk_dirt_1 bonefetish_walk_1 2 0 100 0
boneprison diablo_boneprison_death_1 1 0
bonewall skeleton_hit_1 necromancer_bonewall_death 0 0 skeleton_raise_1 0
brute yeti_attack_1 weapon_kick_1 0 3 60 180 yeti_attack_1 weapon_kick_1 0 6 60 180 yeti_hit_1 yeti_death_1 2 1 heavy_walk_dirt_1 2 0 100 yeti_neutral_1 150 0
bug creature_bug_1 0 0
bunny creature_rat_1 0 0
cantor zakarumzealot_attack_1 weapon_1hs_large_1 0 5 80 160 zakarumzealot_attack_1 weapon_1hs_large_1 0 5 80 160 zakarumpriest_hit_1 zakarumpriest_death_1 2 1 zakarumpriest_cast_1 medium_walk_dirt_1 zakarumzealot_neutral_1 2 0 10 zakarumzealot_neutral_1 300 0
catapult catapult_attack 0 100 catapult_hit_1 catapult_death_1 2 0 0
charsi charsi_work medium_walk_dirt_1 2 0 100 0
chicken creature_chicken_1 0
clawviper serpentdemon_tail_1 0 100 serpentdemon_attack_1 3 100 serpentdemon_hit_1 serpentdemon_death_1 2 1 serpentdemon_neutral_1 150 WL Charge A2 0
claygolem golemclay_attack_1 0 100 golemclay_attack_1 0 100 golemclay_hit_1 golemclay_death 0 0 golemclay_spawn heavy_walk_dirt_1 golemclay_walk_1 2 0 100 0
compellingorb compellingorb_death 0 compellingorb_loop 0
corruptrogue corrupt_attack_1 weapon_1hs_large_1 5 7 70 180 corrupt_attack_1 weapon_1hs_large_1 5 7 70 180 corrupt_hit_1 corrupt_death_1 2 1 medium_walk_dirt_1 2 0 100 corrupt_neutral_1 150 0
councilmember zakarumhigh_attack_1 weapon_1hs_large_1 0 5 80 160 zakarumhigh_attack_1 weapon_1hs_large_1 0 5 80 160 zakarumhigh_hit_1 zakarumhigh_death_1 2 1 medium_walk_dirt_1 2 0 100 zakarumhigh_neutral_1 150 0
countess countess_attack_1 weapon_1hs_large_1 5 7 70 180 countess_attack_1 weapon_1hs_large_1 5 7 70 180 countess_hit_1 countess_death 2 1 medium_walk_dirt_1 2 0 100 monster_countess_taunt_1 0
cow creature_cow_1 150 0
cr_archer weapon_bow_draw_1 0 255 weapon_bow_draw_1 0 255 corrupt_hit_1 corrupt_death_1 2 1 medium_walk_dirt_1 2 0 100 corrupt_neutral_1 150 0
cr_lancer corrupt_attack_1 weapon_2ht_1 5 7 70 180 corrupt_attack_1 weapon_2ht_1 5 7 70 180 corrupt_hit_1 corrupt_death_1 2 1 medium_walk_dirt_1 2 0 100 corrupt_neutral_1 150 0
crownest hawknest_death_1 1 hawknest_spawn_1 hawknest_loop 0
darkwanderer darkwanderer_death 1 heavy_walk_dirt_1 2 0 100 0
deathmauler deathmauler_attack_1 weapon_2hs_small_1 0 3 80 190 deathmauler_spikethrow_1 5 100 deathmauler_hit_1 deathmauler_death_1 0 0 medium_walk_dirt_1 1 0 100 deathmauler_neutral_1 90 0
diablo diablo_attack_1 weapon_giant_1 0 6 100 120 diablo_attack_1 weapon_giant_1 0 10 100 120 diablo_hit_1 diablo_death 2 0 diablo_boneprison_cast diablo_yell heavy_walk_dirt_1 2 0 100 diablo_neutral_1 150 0
doomknight undeadhorror_attack_1 weapon_1hs_large_1 4 8 90 120 undeadhorror_attack_1 weapon_1hs_large_1 4 8 90 120 undeadhorror_hit_1 undeadhorror_death_1 2 1 heavy_walk_dirt_1 2 0 100 undeadhorror_neutral_1 150 0
dopplezon amazon_hit_1 hydra_death_1 2 1 medium_walk_dirt_1 2 0 100 hydra_appear_1 0
drognan drognan_read_scroll medium_walk_dirt_1 2 0 100 0
druidspirit druidspirit_death_1 1 druidspirit_hit_1 0
duriel duriel_attack_1 weapon_giant_1 0 5 100 120 duriel_attack_1 weapon_giant_1 0 5 100 120 duriel_hit_1 duriel_death 2 1 duriel_walk_1 1 6 100 monster_duriel_taunt_1 0
evilhut guardtower_1 0 object_fire_loop_house 0
fallen fallen_attack_1 weapon_punch_1 0 5 60 160 fallen_attack_1 weapon_punch_1 0 5 60 160 fallen_hit_1 fallen_death_1 2 1 fallenshaman_resurrect fallen_warcry_1 light_walk_dirt_1 2 0 100 fallen_neutral_1 300 fallen_flee_1 0
fallenshaman fallenshaman_attack_1 weapon_punch_1 3 7 70 160 fallenshaman_attack_1 weapon_punch_1 3 7 70 160 fallenshaman_hit_1 fallenshaman_death_1 2 1 fallenshaman_resurrect_cast light_walk_dirt_1 2 0 100 fallenshaman_neutral_1 300 A2 Resurrect S1 0
fara fara_hammer medium_walk_dirt_1 2 0 100 0
fetish pygmy_attack_1 weapon_punch_1 0 5 60 160 pygmy_attack_1 weapon_punch_1 0 5 60 160 pygmy_hit_1 pygmy_death_1 2 1 fallenshaman_resurrect light_walk_dirt_1 2 0 100 pygmy_neutral_1 600 0
fetishblow pygmy_blowgun_1 0 100 pygmy_blowgun_1 0 100 pygmy_hit_1 pygmy_death_1 2 1 fallenshaman_resurrect light_walk_dirt_1 2 0 100 0
fetishshaman pygmyshaman_spell_1 0 60 pygmyshaman_spell_1 0 60 pygmyshaman_hit_1 pygmyshaman_death_1 2 1 fallenshaman_resurrect_cast light_walk_dirt_1 2 0 100 pygmyshaman_neutral_1 300 SC Resurrect S1 0
fingermage fingermage_attack_1 0 100 fingermage_attack_1 0 100 fingermage_hit_1 fingermage_death_1 2 1 fingermage_loop 0
firegolem golemfire_attack_1 0 100 golemfire_attack_1 0 100 golemfire_hit_1 golemfire_death 0 0 golemfire_spawn heavy_walk_dirt_1 golemfire_walk_1 2 0 100 object_fire_loop_brazier 0
flyingscimitar scimitar_attack_1 10 100 scimitar_attack_1 10 100 scimitar_hit_1 scimitar_death_1 2 1 scimitar_loop 0
foulcrow hawk_attack_1 weapon_punch_1 0 5 70 120 hawk_attack_1 weapon_punch_1 0 5 70 120 hawk_hit_1 hawk_death_1 2 1 hawk_wing_1 2 0 100 0
frogdemon frogdemon_attack_1 0 100 frogdemon_attack_1 0 100 frogdemon_hit_1 frogdemon_death_1 2 1 walk_flesh_1 1 0 100 frogdemon_neutral_1 150 0
frozenhorror frozenhorror_attack_1 weapon_2hs_small_1 0 6 100 190 frozenhorror_hit_1 0 heavy_walk_dirt_1 1 0 100 frozenhorror_neutral_1 150 0
gargoyletrap impact_stone_1 gargoyletrap_death_1 1 1 0
goatman goatman_attack_1 weapon_1hs_large_1 5 8 70 190 goatman_attack_1 weapon_1hs_large_1 5 8 70 190 goatman_hit_1 goatman_death_1 2 1 medium_walk_dirt_1 2 0 100 0
guardtower impact_stone_1 guardtower_1 1 0 0
halbu halbu_pray jamella_spell medium_walk_dirt_1 2 0 100 0
heavynpc heavy_walk_dirt_1 2 0 100 0
hellbovine moo_attack_1 weapon_2hs_small_1 0 6 100 190 moo_attack_1 weapon_2hs_small_1 0 6 100 190 moo_hit_1 moo_death_1 2 1 medium_walk_dirt_1 2 0 100 moo_neutral_1 150 0
hydra hydra_death_1 1 hydra_appear_1 object_fire_loop_brazier 0
imp imp_cast 0 100 imp_hit_1 imp_death_1 1 1 imp_attack_1 light_walk_dirt_1 2 0 100 imp_neutral_1 90 0
irongolem golemiron_attack_1 0 100 golemiron_attack_1 0 100 golemiron_hit_1 golemiron_death 0 0 golemiron_spawn heavy_walk_dirt_1 golemiron_walk_1 2 0 100 0
izual izual_attack_1 0 100 izual_attack_1 0 100 izual_hit_1 izual_death 2 1 medium_walk_dirt_1 2 0 100 monster_izual_taunt_1 0
izualspirit izual_spirit_disappear 1 izual_spirit_appear 0
jamella jamella_read jamella_spell medium_walk_dirt_1 2 0 100 0
larva creature_larva_1 0 0
lightningorb lightningorb_attack_1 0 100 lightningorb_attack_1 0 100 lightningorb_death_1 0 0
lightningsentry lightninggenerator_death_1 1 lightninggenerator_emerge_1 lightninggenerator_launch_1 lightninggenerator_loop 0
lightnpc light_walk_dirt_1 2 0 100 0
maggotbaby sandmaggotbaby_attack_1 0 100 sandmaggotbaby_attack_1 0 100 sandmaggotbaby_hit_1 sandmaggotbaby_death_1 2 1 sandmaggotbaby_neutral_1 150 0
maggotegg sandmaggotegg_death_1 1 sandmaggotegg_neutral_1 150 0
maggotqueen sandmaggot_hit_1 sandmaggotmama_death 2 1 0
mednpc medium_walk_dirt_1 2 0 100 0
megademon megademon_attack_1 weapon_2hs_small_1 6 8 80 180 megademon_attack_1 weapon_2hs_small_1 6 8 80 180 megademon_hit_1 megademon_death_1 2 1 heavy_walk_dirt_1 2 0 100 megademon_neutral_1 150 0
mephisto mephisto_attack_1 0 100 mephisto_attack_1 0 100 mephisto_hit_1 mephisto_death 2 1 mephisto_loop monster_mephisto_taunt_1 0
minion minion_attack_1 weapon_2hs_small_1 7 3 100 190 minion_attack_1 weapon_2hs_small_1 7 3 100 190 minion_hit_1 2 heavy_walk_dirt_1 2 0 100 minion_neutral_1 150 0
mosquito mosquito_attack_1 0 100 mosquito_attack_1 0 100 mosquito_hit_1 mosquito_death_1 2 1 mosquito_longattack_1 mosquito_loop A2 Mosquito S1 0
mummy mummy_attack_1 0 100 mummy_attack_1 0 100 mummy_hit_1 mummy_death_1 2 1 light_walk_dirt_1 2 0 100 mummy_neutral_1 300 0
necromage skeleton_cast_fire 0 255 skeleton_cast_fire 0 255 skeleton_hit_1 skeleton_death_1 0 0 skeleton_raise_1 light_walk_dirt_1 skeleton_necro_walk_1 2 0 100 0
necroskeleton weapon_1hs_large_1 6 190 weapon_1hs_large_1 6 190 skeleton_hit_1 skeleton_death_1 0 0 skeleton_raise_1 light_walk_dirt_1 skeleton_necro_walk_1 2 0 100 0
nihlathak weapon_1hs_large_1 6 190 weapon_1hs_large_1 6 190 monster_nihlathak_taunt_1 0
overseer overseer_attack_1 weapon_2hs_large_1 0 4 100 190 overseer_whip_1 overseer_whipcrack_1 0 9 100 255 overseer_hit_1 overseer_death_1 2 1 overseer_attract_1 overseer_healcast_1 heavy_walk_dirt_1 walk_ginormous_low_1 2 0 100 overseer_neutral_1 150 0
pantherwoman pantherwoman_attack_1 weapon_1hs_small_1 0 12 60 160 pantherwoman_attack_1 weapon_1hs_small_1 0 12 60 160 pantherwoman_hit_1 pantherwoman_death_1 2 1 medium_walk_dirt_1 2 0 100 pantherwoman_neutral_1 150 0
pinhead pinhead_attack_1 weapon_2hs_small_1 0 4 80 120 pinhead_attack_1 weapon_2hs_small_1 0 4 80 120 pinhead_hit_1 pinhead_death_1 2 1 heavy_walk_dirt_1 walk_ginormous_high_1 2 0 100 pinhead_neutral_1 150 0
putriddefiler putriddefiler_attack_1 weapon_punch_1 0 4 100 190 putriddefiler_hit_1 putriddefiler_death_1 2 1 putriddefiler_impregnate putriddefiler_zap putriddefiler_neutral_1 150 0
quillrat spikefiend_attack_1 0 100 spikefiend_shoot_1 0 100 spikefiend_hit_1 spikefiend_death_1 5 4 spikefiend_neutral_1 150 0
radament greatermummy_attack_1 weapon_2hs_large_1 0 4 100 190 greatermummy_gas_1 0 100 greatermummy_hit_1 greatermummy_death_1 2 1 greatermummy_unholybolt_cast greatermummy_bestow greatermummy_resurrect_1 heavy_walk_dirt_1 walk_ginormous_low_1 2 0 100 greatermummy_neutral_1 150 monster_radament_taunt_1 SC UnHolyBolt S1 SC Bestow S2 SC Resurrect S3 0
rat creature_rat_1 0 0
raven druidraven_attack_1 3 100 druidraven_attack_1 3 100 druidraven_poof 1 hawk_wing_1 2 0 100 0
reanimatedhorde reanimatedhorde_attack_1 weapon_2hs_small_1 0 2 80 255 reanimatedhorde_attack_1 weapon_2hs_large_1 0 2 100 255 reanimatedhorde_hit_1 reanimatedhorde_death_1 2 1 reanimatedhorde_getup_1 zombie_neutral_2 medium_walk_dirt_1 2 0 100 reanimatedhorde_neutral_1 300 0
regurgitator regurgitator_attack_1 0 100 regurgitator_attack_1 3 100 regurgitator_hit_1 regurgitator_death_1 2 1 regurgitator_neutral_1 150 0
sandleaper leaper_attack_1 weapon_punch_1 0 5 70 120 leaper_attack_1 weapon_punch_1 0 5 70 120 leaper_hit_1 leaper_death_1 2 1 leaper_attack_1 light_walk_dirt_1 2 0 100 leaper_neutral_1 300 A1 Leap S1 0
sandmaggot sandmaggot_attack_1 0 100 sandmaggot_attack_1 0 100 sandmaggot_hit_1 sandmaggot_death_1 2 1 sandmaggot_neutral_1 150 0
sandraider sandraider_attack_1 weapon_1hs_large_1 0 5 100 190 sandraider_attack_1 weapon_1hs_large_1 0 5 100 190 sandraider_hit_1 sandraider_death_1 2 1 medium_walk_dirt_1 2 0 100 sandraider_neutral_1 150 0
sarcophagus mummy_generator_death 1 object_casket 0
scarab beetle_attack_1 weapon_2ht_1 0 7 70 190 beetle_attack_1 weapon_1hs_large_1 0 5 70 190 beetle_hit_1 beetle_death_1 2 1 light_walk_dirt_1 2 0 100 beetle_neutral_1 150 0
shadow weapon_2ht_1 8 255 weapon_2ht_1 8 255 assassin_shadow_hit_1 assassin_shadow_death_1 2 1 assassin_shadow_kick_1 medium_walk_dirt_1 2 0 100 0
siegebeast siegebeast_attack_1 weapon_1ht_1 0 5 100 190 siegebeast_attack_1 0 100 siegebeast_hit_1 siegebeast_death_1 1 1 siegebeast_attack_1 siegebeast_attack_1 heavy_walk_dirt_1 walk_ginormous_high_1 2 0 100 siegebeast_neutral_1 150 0
sk_archer weapon_bow_draw_1 4 255 weapon_bow_draw_1 4 255 skeleton_hit_1 skeleton_death_1 0 0 skeleton_raise_1 light_walk_dirt_1 skeleton_walk_1 2 0 100 0
sk_mage skeleton_cast_fire 0 255 skeleton_cast_fire 0 255 skeleton_hit_1 skeleton_death_1 0 0 skeleton_raise_1 light_walk_dirt_1 skeleton_walk_1 2 0 100 0
skeleton weapon_1hs_large_1 6 190 weapon_1hs_large_1 6 190 skeleton_hit_1 skeleton_death_1 0 0 skeleton_raise_1 light_walk_dirt_1 skeleton_walk_1 2 0 100 0
slinger pantherwoman_hit_1 pantherwoman_death_1 2 1 medium_walk_dirt_1 2 0 100 pantherwoman_neutral_1 150 0
smith smith_attack_1 weapon_2hs_large_1 0 2 80 170 smith_attack_1 weapon_2hs_large_1 0 2 80 170 smith_hit_1 smith_death 2 1 heavy_walk_dirt_1 2 0 100 smith_neutral_1 150 monster_smith_taunt_2 0
smithdeath object_fire_loop_magic 0
smithdemon smith_attack_1 weapon_2hs_large_1 0 2 80 170 smith_attack_1 weapon_2hs_large_1 0 2 80 170 smith_hit_1 smith_death 2 1 heavy_walk_dirt_1 2 0 100 smith_neutral_1 150 monster_smith_taunt_1 0
spider creature_spider_1 0 0
stainedglass object_glass_break_1 2 1 0
succubus succubus_attack_1 3 100 succubus_attack_1 3 100 succubus_hit_1 succubus_death_1 2 1 succubus_cast hawk_wing_1 2 0 30 0
suicideminion minion_hit_1 hawknest_death_1 2 1 minion_morph_1 heavy_walk_dirt_1 minionsuicide_neutral_1 2 0 30 0
summoner summoner_hit_1 summoner_death 2 1 medium_walk_dirt_1 2 0 100 monster_summoner_taunt_1 0
swarm swarm_attack_1 0 100 swarm_attack_1 0 100 swarm_hit_1 swarm_hit_1 2 1 swarm_loop 0
tentacle tentacle_attack_1 0 100 tentacle_attack_1 0 100 tentacle_hit_1 tentacle_death_1 2 1 0
tentaclehead tentaclehead_attack_1 0 100 tentaclehead_attack_1 0 100 tentaclehead_hit_1 tentaclehead_death_1 2 1 tentaclehead_neutral_1 150 0
thornhulk thornhulk_attack_1 weapon_2hs_small_1 0 3 80 120 thornhulk_attack_1 weapon_2hs_small_1 0 7 80 120 thornhulk_hit_1 thornhulk_death_1 2 1 heavy_walk_dirt_1 walk_ginormous_high_1 2 0 100 thornhulk_neutral_1 300 0
trappedsoul1 trappedsoul_attack_1 6 100 trappedsoul_attack_1 6 100 trappedsoul_hit_1 trappedsoul_up_1 2 1 trappedsoul_neutral_1 150 0
trappedsoul2 trappedsoul_attack_1 6 100 trappedsoul_attack_1 6 100 trappedsoul_hit_1 trappedsoul_down_1 2 1 trappedsoul_neutral_1 150 0
turret turret_death_1 1 0
unraveler greatermummy_attack_1 weapon_2hs_large_1 0 4 100 190 greatermummy_gas_1 0 100 greatermummy_hit_1 greatermummy_death_1 2 1 greatermummy_unholybolt_cast greatermummy_bestow greatermummy_resurrect_1 heavy_walk_dirt_1 walk_ginormous_low_1 2 0 100 greatermummy_neutral_1 150 SC UnHolyBolt S1 SC Bestow S2 SC Resurrect S3 0
valkyrie amazon_valkyrie_attack_1 weapon_2ht_1 4 8 100 255 amazon_valkyrie_attack_1 weapon_2ht_1 4 8 100 255 amazon_valkyrie_hit_1 amazon_valkyrie_death 2 1 medium_walk_dirt_1 2 0 100 amazon_valkyrie_appear 0
vampire vampire_attack_1 0 100 vampire_attack_1 0 100 vampire_hit_1 vampire_death_1 2 1 vampire_cast vampire_neutral_1 150 SC S1 0
vilechild vilechild_attack_1 8 100 vilechild_attack_1 8 100 vilechild_hit_1 vilechild_death_1 2 1 light_walk_dirt_1 vilechild_walk_1 2 0 15 0
vilemother vilemother_attack_1 weapon_1hs_large_1 0 7 100 190 vilemother_attack_1 weapon_1hs_large_1 0 7 100 190 vilemother_hit_1 vilemother_death_1 2 1 vilemother_birth_1 walk_flesh_1 2 3 100 vilemother_neutral_1 150 0
vulture vulturedemon_attack_1 0 100 vulturedemon_attack_1 0 100 vulturedemon_hit_1 vulturedemon_death_1 2 1 vulturedemon_wing_1 1 0 100 vulturedemon_neutral_1 300 0
werebear druidwerebear_attack_1 weapon_2hs_small_1 5 4 80 120 druidwerebear_attack_1 weapon_2hs_small_1 6 4 80 120 druidwerebear_hit_1 2 druidwerebear_bite_1 heavy_walk_dirt_1 walk_ginormous_low_1 2 0 100 druidwerebear_neutral_1 150 0
werewolf druidwerewolf_attack_1 weapon_kick_1 5 5 85 150 druidwerewolf_attack_1 weapon_kick_1 5 5 85 150 druidwerewolf_hit_1 2 druidwerewolf_bite_1 heavy_walk_dirt_1 2 0 100 druidwerewolf_neutral_1 150 0
willowisp willowisp_attack_1 0 100 willowisp_attack_1 0 100 willowisp_hit_1 willowisp_death_1 2 1 willowisp_appear_1 willowisp_lightning_cast_1 willowisp_loop SC S2 0
wolf druidwolf_attack_1 weapon_1ht_1 6 3 100 255 druidwolf_attack_1 weapon_1ht_1 6 3 100 255 druidwolf_hit_1 druidbear_emerge 2 1 light_walk_dirt_1 2 0 100 druidwolf_neutral_1 1600 0
wraith wraith_attack_1 0 100 wraith_attack_1 0 100 wraith_hit_1 wraith_death_1 2 1 wraith_neutral_1 150 0
zealot zakarumzealot_attack_1 weapon_1hs_large_1 0 7 80 160 zakarumzealot_attack_1 weapon_1hs_large_1 0 3 80 160 zakarumzealot_hit_1 zakarumzealot_death_1 2 1 medium_walk_dirt_1 2 0 100 zakarumzealot_neutral_1 300 0
zombie zombie_attack_1 0 100 zombie_attack_1 0 100 zombie_hit_1 zombie_death_1 2 1 zombie_raise_1 light_walk_dirt_1 2 0 100 zombie_neutral_1 300 0
zombieunique zombie_attack_1 0 100 zombie_attack_1 0 100 zombie_hit_1 zombie_death_1 2 1 zombie_raise_1 light_walk_dirt_1 2 0 100 zombie_unique_neutral_1 300 0
diabloclone diablo_attack_1 weapon_giant_1 0 6 100 120 diablo_attack_1 weapon_giant_1 0 10 100 120 diablo_hit_1 diablo_death 2 0 diablo_boneprison_cast diablo_yell heavy_walk_dirt_1 2 0 100 diablo_neutral_1 150 monster_diablo_taunt_ex 0

577
txt/MonStats.txt Normal file
View File

@ -0,0 +1,577 @@
Class namco Type Descriptor BaseId PopulateId Spawned Beta Code ClientOnly NoMap SizeX SizeY Height NoOverlays OverlayHeight Velocity Run CanStealFrom ColdEffect Rarity Level Level(N) Level(H) MeleeRng MinGrp MaxGrp HD TR LG RA LA RH LH SH S1 S2 S3 S4 S5 S6 S7 S8 TotalPieces SpawnComponents BaseW AIParam1 Comment AIParam2 Comment AIParam3 Comment AIParam4 Comment AIParam5 Comment ModeDH ModeN ModeW ModeGH ModeA1 ModeA2 ModeB ModeC ModeS1 ModeS2 ModeS3 ModeS4 ModeDD ModeKB ModeSQ ModeRN ElMode ElType ElOver ElPct ElMinD ElMaxD ElDur MissA1 MissA2 MissS1 MissS2 MissS3 MissS4 MissC MissSQ A1Move A2Move S1Move S2Move S3Move S4Move Cmove Align IsMelee IsSel IsSel2 NeverSel CorpseSel IsAtt IsNPC IsCritter InTown Bleed Shadow Light NoUniqueShift CompositeDeath Skill1 Skill1Seq Skill1Lvl Skill2 Skill2Seq Skill2Lvl Skill3 Skill3Seq Skill3Lvl Skill4 Skill4Seq Skill4Lvl Skill5 Skill5Seq Skill5Lvl LightR LightG LightB DamageResist MagicResist FireResist LightResist ColdResist PoisonResist DamageResist(N) MagicResist(N) FireResist(N) LightResist(N) ColdResist(N) PoisonResist(N) DamageResist(H) MagicResist(H) FireResist(H) LightResist(H) ColdResist(H) PoisonResist(H) DamageRegen eLUndead eHUndead eDemon eMagicUsing eLarge eSmall eFlying eOpenDoors eSpawnCol eBoss PixHeight Interact MinHP MaxHP AC Exp ToBlock A1MinD A1MaxD A1ToHit A2MinD A2MaxD A2ToHit S1MinD S1MaxD S1ToHit MinHP(N) MaxHP(N) AC(N) Exp(N) A1MinD(N) A1MaxD(N) A1ToHit(N) A2MinD(N) A2MaxD(N) A2ToHit(N) S1MinD(N) S1MaxD(N) S1ToHit(N) MinHP(H) MaxHP(H) AC(H) Exp(H) A1MinD(H) A1MaxD(H) A1ToHit(H) A2MinD(H) A2MaxD(H) A2ToHit(H) S1MinD(H) S1MaxD(H) S1ToHit(H) TreasureClass1 TreasureClass2 TreasureClass3 TreasureClass4 TreasureClass1(N) TreasureClass2(N) TreasureClass3(N) TreasureClass4(N) TreasureClass1(H) TreasureClass2(H) TreasureClass3(H) TreasureClass4(H) SpawnPctBonus Soft Heart BodyPart Killable Switch Restore NeverCount HitClass SplEndDeath SplGetModeChart SplEndGeneric SplClientEnd DeadCollision UnflatDead BloodLocal DeathDamage PetIgnore NoGfxHitTest HitTestTop HitTestLeft HitTestWidth HitTestHeight GenericSpawn AutomapCel SparsePopulate Zoo ObjectCollision Inert
Skeleton Skeleton Skeleton 1 0 1 1 SK 0 0 2 2 3 0 2 3 3 0 50 1 2 35 68 0 1 3 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 0 9 0 1hs 60 75 15 50 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 75 50 0 0 100 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 6 9 10 34 10 1 3 5 1 3 5 0 0 0 217 301 191 780 10 24 98 8 24 98 0 0 0 731 1015 399 6203 26 59 253 19 59 253 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Returned Returned Skeleton 1 1 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 6 39 72 0 2 3 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 0 9 0 1hs 70 80 12 50 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 75 50 0 0 0 0 100 2 1 0 0 0 0 0 0 1 0 0 80 0 13 19 30 68 15 2 5 12 2 5 12 0 0 0 241 335 212 1023 12 26 109 8 26 109 0 0 0 774 1074 422 7831 28 62 267 20 62 267 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
BoneWarrior BoneWarrior Skeleton 1 2 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 7 40 73 0 2 4 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 0 9 0 1hs 80 85 9 50 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 40 50 0 0 0 0 60 75 50 0 0 0 100 75 2 1 0 0 0 0 0 0 1 0 0 80 0 15 21 35 76 20 2 6 14 2 6 14 0 0 0 247 343 218 1094 12 27 112 9 27 112 0 0 0 785 1089 428 8301 28 63 271 20 63 271 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
BurningDead BurningDead Skeleton 1 3 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 13 46 79 0 2 4 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 0 9 0 1hs 90 88 7 50 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 4 1 35 50 2 5 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 50 0 0 50 0 0 75 0 0 75 50 0 100 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 26 37 65 130 25 4 9 25 3 9 25 0 0 0 284 394 250 1642 14 31 129 10 31 129 0 0 0 849 1179 463 11776 30 68 293 22 68 293 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Horror Horror Skeleton 1 4 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 14 47 80 0 2 4 1 1 1 1 1 1 0 1 1 0 0 0 0 0 0 0 9 0 1hs 99 90 5 50 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 5 2 1 60 3 6 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 20 0 60 0 50 0 40 0 80 0 75 50 70 0 100 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 28 39 70 143 30 4 10 27 3 10 27 0 0 0 290 403 256 1757 14 31 131 10 31 131 0 0 0 860 1193 469 12482 31 69 297 22 69 297 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Zombie Zombie Zombie 2 5 1 1 ZM 0 0 2 2 3 0 2 1 3 1 50 1 1 34 67 0 1 2 1 1 1 1 1 0 0 0 1 1 1 0 0 0 0 0 8 0 hth 10 70 70 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 75 50 0 0 0 100 75 2 1 0 0 0 0 0 0 0 0 0 72 0 5 9 5 33 3 1 3 3 2 3 3 0 0 0 241 434 185 940 11 30 95 23 36 95 0 0 0 824 1485 393 7543 29 77 249 58 91 249 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
HungryDead HungryDead Zombie 2 6 1 1 ZM 0 0 2 2 3 0 2 1 4 1 50 1 2 35 68 0 1 3 1 1 1 1 1 0 0 0 1 1 1 0 0 0 0 0 8 0 hth 15 60 65 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 75 50 0 0 100 0 75 2 1 0 0 0 0 0 0 0 0 0 72 0 7 13 10 44 4 1 3 5 3 4 5 0 0 0 248 447 191 1006 12 31 98 24 37 98 0 0 0 836 1507 399 7995 30 78 253 59 92 253 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
Ghoul Ghoul Zombie 2 7 1 1 ZM 0 0 2 2 3 0 2 1 4 1 50 1 12 45 78 0 2 3 1 1 1 1 1 0 0 0 1 1 1 0 0 0 0 0 8 0 hth 20 50 60 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 75 50 0 100 0 0 75 2 1 0 0 0 0 0 0 0 0 0 72 0 28 51 60 152 13 4 11 23 9 13 23 0 0 0 318 573 245 1978 15 40 126 30 47 126 0 0 0 958 1728 457 14318 34 89 290 68 105 290 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
DrownedCarcass DrownedCarcass Zombie 2 8 1 0 ZM 0 0 2 2 3 0 2 1 5 1 50 1 22 55 88 0 2 4 1 1 1 1 1 0 0 0 1 1 1 0 0 0 0 0 8 0 hth 30 30 50 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 4 4 0 75 3 6 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 20 0 50 0 0 50 50 0 75 0 0 75 50 0 100 0 0 75 2 1 0 0 0 0 0 0 0 0 0 72 0 49 88 111 395 22 7 19 42 15 23 42 0 0 0 388 699 299 3892 18 48 154 36 57 154 0 0 0 1081 1949 516 25642 38 101 327 76 119 327 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
PlagueBearer PlagueBearer Zombie 2 9 1 0 ZM 0 0 2 2 3 0 2 1 5 1 50 1 17 50 83 0 3 4 1 1 1 1 1 0 0 0 1 1 1 0 0 0 0 0 8 0 hth 25 40 55 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 4 5 0 50 3 6 400 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 50 0 0 0 50 0 75 0 0 0 75 50 100 0 0 0 75 2 1 0 0 0 0 0 0 0 0 0 72 0 39 69 85 245 17 6 15 32 11 18 32 0 0 0 353 636 272 2775 17 44 140 33 52 140 0 0 0 1020 1839 487 19161 36 95 308 72 112 308 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
Afflicted Afflicted BigHead 3 10 1 1 BH 0 0 3 3 3 0 3 6 6 1 50 0 12 45 78 0 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 88 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 2 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 70 0 0 0 0 0 85 0 75 50 0 0 100 0 0 2 0 0 1 1 1 0 0 1 0 0 96 0 17 33 45 112 11 6 9 19 0 0 31 0 0 0 193 375 183 1461 20 30 102 0 0 170 0 0 0 582 1129 341 10574 46 68 235 0 0 391 0 0 0 Act 1 Cast C Act 1 Champ C Act 1 Unique C Act 1 (N) Cast C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Cast C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Tainted Tainted BigHead 3 11 1 1 BH 0 0 3 3 3 0 3 6 6 1 50 0 11 44 77 0 2 4 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 86 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 3 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 60 0 0 0 0 0 80 0 75 50 0 0 100 0 0 2 0 0 1 1 1 0 0 1 0 0 96 0 16 31 41 104 10 5 8 17 0 0 29 0 0 0 189 366 179 1366 20 29 100 0 0 166 0 0 0 574 1115 337 9976 45 67 232 0 0 386 0 0 0 Act 1 Cast C Act 1 Champ C Act 1 Unique C Act 1 (N) Cast C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Cast C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Misshapen Misshapen BigHead 3 12 1 1 BH 0 0 3 3 3 0 3 5 5 1 50 0 5 38 71 0 1 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 80 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 4 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 40 0 0 0 0 0 70 0 0 50 0 0 100 0 0 2 0 0 1 1 1 0 0 1 0 0 96 0 8 16 19 56 5 3 4 8 0 0 14 0 0 0 163 317 154 910 17 26 86 0 0 144 0 0 0 530 1028 311 7032 42 62 214 0 0 356 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Disfigured Disfigured BigHead 3 13 1 1 BH 0 0 3 3 3 0 3 5 5 1 50 0 8 41 74 0 1 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 83 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 5 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 50 0 0 0 0 0 75 0 0 50 0 0 100 0 0 2 0 0 1 1 1 0 0 1 0 0 96 0 12 23 30 80 8 4 6 13 0 0 21 0 0 0 176 342 167 1115 19 27 93 0 0 155 0 0 0 552 1072 324 8376 43 64 223 0 0 371 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Damned Damned BigHead 3 14 1 0 BH 0 0 3 3 3 0 3 7 7 1 50 1 27 60 90 0 3 4 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 90 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 6 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 80 0 0 0 0 0 100 0 0 50 0 0 100 0 0 2 0 0 1 1 1 0 0 1 0 0 96 0 36 70 101 470 22 12 18 41 0 0 69 0 0 0 257 498 244 4031 27 40 136 0 0 226 0 0 0 671 1303 394 21277 53 78 271 0 0 451 0 0 0 Act 4 Cast A Act 4 Champ A Act 4 Unique A Act 4 (N) Cast A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) Cast A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
FoulCrow FoulCrow BloodHawk 4 15 1 1 BK 0 0 2 2 2 0 2 4 4 1 50 1 4 37 70 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 0 1 0 0 0 88 0 2 5 3 22 5 1 2 8 0 0 0 0 0 0 51 108 30 381 8 17 104 0 0 0 0 0 0 169 353 61 2969 20 41 260 0 0 0 0 0 0 Act 1 Cast A Act 1 Champ A Act 1 Unique A Act 1 (N) Cast A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) Cast A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
BloodHawk BloodHawk BloodHawk 4 16 1 1 BK 0 0 2 2 2 0 2 4 4 1 50 1 6 39 72 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 0 1 0 0 0 88 0 3 6 5 29 7 2 3 12 0 0 0 0 0 0 54 113 32 436 8 18 109 0 0 0 0 0 0 174 363 63 3336 20 42 267 0 0 0 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
BlackRaptor BlackRaptor BloodHawk 4 17 1 0 BK 0 0 2 2 2 0 2 5 5 1 50 1 16 49 82 0 3 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 60 0 0 0 0 0 80 50 0 0 0 0 100 2 0 0 0 0 0 0 1 0 0 0 88 0 7 15 12 74 17 4 7 31 0 0 0 0 0 0 68 142 40 857 11 22 137 0 0 0 0 0 0 198 414 72 5974 23 48 304 0 0 0 0 0 0 Act 2 Cast B Act 2 Champ B Act 2 Unique B Act 2 (N) Cast B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Cast B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
CloudStalker CloudStalker BloodHawk 4 18 1 0 BK 0 0 2 2 2 0 2 6 6 1 50 1 22 55 88 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 30 0 20 60 0 0 40 0 50 80 0 0 50 0 50 100 0 0 2 0 0 0 0 0 0 1 0 0 0 88 0 10 20 17 130 22 5 10 42 0 0 0 0 0 0 76 159 45 1286 12 25 154 0 0 0 0 0 0 212 444 77 8474 25 51 327 0 0 0 0 0 0 Act 3 Cast A Act 3 Champ A Act 3 Unique A Act 3 (N) Cast A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) Cast A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Fallen Fallen Fallen 5 19 1 1 FA 0 0 2 2 1 0 1 5 5 1 50 1 1 34 67 0 2 3 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 0 hth 30 chance to call people back to fight 40 chance to do attack1 vs attack2 10 chance random walk 50 chance to attack 0 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 1 3 5 18 9 1 2 3 1 2 3 0 0 0 47 125 185 513 10 20 95 9 22 95 0 0 0 162 426 393 4118 26 51 249 24 55 249 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
Carver Carver Fallen 5 20 1 1 FA 0 0 2 2 1 0 1 5 5 1 50 1 5 38 71 0 2 4 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 0 hth 45 chance to call people back to fight 35 chance to do attack1 vs attack2 15 chance random walk 60 chance to attack 0 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 3 7 25 42 16 2 4 10 2 4 10 0 0 0 53 139 207 673 11 23 106 11 24 106 0 0 0 171 452 416 5199 27 54 264 25 58 264 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
Devilkin Devilkin Fallen 5 21 1 1 FA 0 0 2 2 1 0 1 6 6 1 50 1 7 40 73 0 3 4 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 0 hth 55 chance to call people back to fight 30 chance to do attack1 vs attack2 20 chance random walk 70 chance to attack 0 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 3 9 35 53 25 2 5 14 2 5 14 0 0 0 56 146 218 770 12 24 112 11 25 112 0 0 0 176 465 428 5842 28 56 271 26 60 271 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
DarkOne DarkOne Fallen 5 22 1 1 FA 0 0 2 2 1 0 1 6 6 1 50 1 10 43 76 0 3 5 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 0 hth 65 chance to call people back to fight 25 chance to do attack1 vs attack2 25 chance random walk 80 chance to attack 0 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 5 12 50 71 36 3 7 19 3 7 19 0 0 0 60 157 234 943 13 25 120 12 27 120 0 0 0 183 484 446 6957 29 58 282 27 62 282 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
WarpedFallen WarpedFallen Fallen 5 23 1 0 FA 0 0 2 2 1 0 1 8 8 1 50 1 40 70 90 0 1 1 0 1 0 0 0 1 0 1 1 1 0 0 0 0 0 1 6 0 hth 75 chance to call people back to fight 20 chance to do attack1 vs attack2 30 chance random walk 90 chance to attack 0 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 50 50 50 50 50 50 66 66 66 66 66 66 75 75 75 75 75 75 2 0 0 1 0 0 1 0 1 0 0 64 0 17 45 201 1199 49 11 23 75 11 24 75 0 0 0 97 255 381 5863 20 41 195 19 43 195 0 0 0 217 572 528 15730 34 69 334 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
Brute Brute Wendigo 6 24 1 1 YE 0 0 3 3 3 0 3 4 4 1 50 0 5 38 71 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 75 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 1 0 0 104 0 18 29 25 84 6 3 4 10 5 6 10 0 0 0 360 576 207 1360 15 26 106 29 35 106 0 0 0 1169 1870 416 10508 36 63 264 69 85 264 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
Yeti Yeti Wendigo 6 25 1 1 YE 0 0 3 3 3 0 3 4 4 1 50 0 9 42 75 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 15 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 20 0 0 0 0 0 60 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 1 0 0 104 0 29 47 45 132 10 4 7 18 8 9 18 0 0 0 398 636 229 1782 17 29 117 31 39 117 0 0 0 1234 1975 440 13266 38 67 278 73 90 278 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
Crusher Crusher Wendigo 6 26 1 0 YE 0 0 3 3 3 0 3 5 5 1 50 1 19 52 85 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 85 25 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 60 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 1 0 0 104 0 57 92 95 327 19 8 13 36 14 18 36 0 0 0 491 786 283 3506 20 35 145 38 48 145 0 0 0 1398 2237 498 23757 43 76 315 82 102 315 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
WailingBeast WailingBeast Wendigo 6 27 1 1 YE 0 0 3 3 3 0 3 5 5 1 50 0 23 56 89 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 40 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 60 20 0 0 0 0 80 50 0 0 0 50 100 75 0 0 0 2 0 0 0 0 1 0 0 1 0 0 104 0 68 110 116 479 23 9 16 43 17 21 43 0 0 0 529 846 305 4595 22 38 156 41 51 156 0 0 0 1464 2342 522 29992 45 79 330 86 106 330 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
GargantuanBeast GargantuanBeast Wendigo 6 28 1 0 YE 0 0 3 3 3 0 3 3 3 1 50 0 2 35 68 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 55 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 75 100 0 2 0 0 0 0 1 0 0 1 0 0 104 0 9 15 10 48 4 2 3 5 3 4 5 0 0 0 332 531 191 1110 14 24 98 26 33 98 0 0 0 1119 1791 399 8822 35 61 253 66 82 253 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 1 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
SandRaider SandRaider SandRaider 7 29 1 0 SR 0 0 3 3 3 0 3 5 5 1 50 0 13 46 79 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 40 health pct 70 circle freq 75 attack pct 15 pause time 18 charge up 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 0 50 3 4 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 156 3 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 38 59 65 179 25 6 9 47 0 0 25 0 0 0 406 638 250 2257 20 29 243 0 0 129 0 0 0 1213 1906 463 16180 44 64 555 0 0 293 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Marauder Marauder SandRaider 7 30 1 0 SR 0 0 3 3 3 0 3 5 5 1 50 0 17 50 83 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 45 cause flee 70 80 12 16 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 0 60 4 5 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 156 3 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 48 76 85 261 32 7 11 61 0 0 32 0 0 0 441 693 272 2958 21 31 264 0 0 140 0 0 0 1274 2003 487 20427 46 68 583 0 0 308 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Invader Invader SandRaider 7 31 1 0 SR 0 0 3 3 3 0 3 6 6 1 50 0 18 51 84 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 50 70 85 9 14 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 0 70 5 6 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 156 3 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 51 80 90 288 34 8 11 65 0 0 34 0 0 0 450 707 278 3165 22 32 270 0 0 142 0 0 0 1290 2027 492 21653 47 68 590 0 0 312 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Infidel Infidel SandRaider 7 32 1 0 SR 0 0 3 3 3 0 3 6 6 1 50 0 24 57 90 0 3 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 55 70 88 7 12 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 0 80 6 8 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 156 3 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 67 105 121 509 44 10 15 86 0 0 45 0 0 0 502 789 310 4750 24 35 301 0 0 159 0 0 0 1382 2171 528 30715 50 73 632 0 0 334 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Assailant Assailant SandRaider 7 33 1 0 SR 0 0 3 3 3 0 3 7 7 1 50 1 26 59 90 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 60 70 90 5 10 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 1 0 90 8 10 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 156 3 5 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 72 113 131 616 48 11 16 93 0 0 49 0 0 0 520 817 321 5439 25 37 312 0 0 165 0 0 0 1382 2171 528 30715 50 73 632 0 0 334 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
unused Gorgon Gorgon 8 34 0 0 GO 0 0 3 3 3 0 2 1 1 1 50 0 18 51 84 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 33 73 90 233 18 4 14 34 0 0 0 0 0 0 289 649 278 2568 11 40 142 0 0 0 0 0 0 829 1861 492 17568 24 86 312 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused StoneStalker Gorgon 8 35 0 0 GO 0 0 3 3 3 0 2 1 1 1 50 0 20 53 86 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 36 81 101 282 20 4 16 38 0 0 0 0 0 0 300 674 289 2940 11 41 148 0 0 0 0 0 0 849 1905 504 19739 24 88 319 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused SerpentQueen Gorgon 8 36 0 0 GO 0 0 3 3 3 0 2 1 1 1 50 0 22 55 88 0 2 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 39 88 111 342 22 5 17 42 0 0 0 0 0 0 312 699 299 3366 12 43 154 0 0 0 0 0 0 869 1949 516 22179 25 90 327 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused StygianWatcher Gorgon 8 37 0 0 GO 0 0 3 3 3 0 2 1 1 1 50 0 24 57 90 0 3 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 43 96 121 413 24 5 19 45 0 0 0 0 0 0 323 725 310 3854 12 44 159 0 0 0 0 0 0 888 1993 528 24920 25 92 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Ghost Ghost Wraith drains mana 9 38 1 1 WR 0 0 2 2 3 0 2 5 5 1 50 0 7 40 73 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 50 approach prob 70 attack prob 12 pause 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 7 0 40 3 5 100 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 20 0 0 0 0 50 30 0 0 0 0 60 100 50 0 0 0 75 2 1 0 0 1 0 0 1 1 0 0 96 0 14 28 35 83 8 3 6 14 0 0 0 0 0 0 227 455 218 1192 16 28 112 0 0 0 0 0 0 721 1442 428 9039 37 65 271 0 0 0 0 0 0 Act 1 Wraith B Act 1 Champ B Act 1 Unique B Act 1 (N) Wraith B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Wraith B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wraith Wraith Wraith drains mana 9 39 1 1 WR 0 0 2 2 3 0 2 6 6 1 50 0 10 43 76 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 60 75 10 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 7 0 45 4 7 150 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 30 0 0 0 0 50 40 0 0 0 0 60 100 50 0 0 0 75 2 1 0 0 1 0 0 1 1 0 0 96 0 19 38 50 110 11 4 8 19 0 0 0 0 0 0 244 488 234 1460 17 30 120 0 0 0 0 0 0 750 1501 446 10766 39 68 282 0 0 0 0 0 0 Act 1 Wraith C Act 1 Champ C Act 1 Unique C Act 1 (N) Wraith C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Wraith C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Specter Specter Wraith drains mana 9 40 1 0 WR 0 0 2 2 3 0 2 6 6 1 50 0 19 52 85 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 70 80 8 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 7 0 50 5 9 200 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 40 0 0 0 0 50 50 0 0 0 0 60 100 50 0 0 0 75 2 1 0 0 1 0 0 1 1 0 0 96 0 34 69 95 251 19 8 13 36 0 0 0 0 0 0 295 590 283 2684 20 35 145 0 0 0 0 0 0 839 1678 498 18189 43 76 315 0 0 0 0 0 0 Act 2 Wraith C Act 2 Champ C Act 2 Unique C Act 2 (N) Wraith C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) Wraith C Act 2 (H) Champ C Act 2 (H) Unique C 20 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Apparition Apparition Wraith drains mana 9 41 1 0 WR 0 0 2 2 3 0 2 7 7 1 50 0 20 53 86 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 85 6 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 7 0 60 6 11 300 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 50 0 0 0 0 50 60 0 0 0 0 60 100 50 0 0 0 75 2 1 0 0 1 0 0 1 1 0 0 96 0 36 72 101 276 20 8 14 38 0 0 0 0 0 0 300 601 289 2872 21 36 148 0 0 0 0 0 0 849 1698 504 19280 44 77 319 0 0 0 0 0 0 Act 2 Wraith C Act 2 Champ C Act 2 Unique C Act 2 (N) Wraith C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) Wraith C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkShape DarkShape Wraith drains mana 9 42 1 0 WR 0 0 2 2 3 0 2 8 8 1 50 1 22 55 88 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 90 4 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 7 0 70 7 15 400 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 60 0 0 0 0 50 75 0 0 0 0 60 100 50 0 0 0 75 2 1 0 0 1 0 0 1 1 0 0 96 0 39 79 111 334 22 9 15 42 0 0 0 0 0 0 312 623 299 3288 21 37 154 0 0 0 0 0 0 869 1737 516 21663 45 78 327 0 0 0 0 0 0 Act 3 Wraith A Act 3 Champ A Act 3 Unique A Act 3 (N) Wraith A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) Wraith A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkHunter DarkHunter CorruptRogue 10 43 1 1 CR 0 0 2 2 3 0 2 5 5 1 50 1 2 35 68 0 2 3 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 0 10 0 1hs 60 75 15 0 0 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 1 0 0 80 0 4 7 10 31 12 1 3 5 0 0 0 0 0 0 150 248 191 720 10 28 98 0 0 0 0 0 0 507 836 399 5721 26 70 253 0 0 0 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
VileHunter VileHunter CorruptRogue 10 44 1 1 CR 0 0 2 2 3 0 2 6 8 1 50 1 5 38 71 0 2 4 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 0 10 0 1hs 70 80 12 0 0 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 1 0 0 80 0 8 13 25 54 18 2 5 10 0 0 0 0 0 0 163 269 207 882 11 30 106 0 0 0 0 0 0 530 873 416 6813 27 73 264 0 0 0 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
DarkStalker DarkStalker CorruptRogue 10 45 1 1 CR 0 0 2 2 3 0 2 6 10 1 50 1 8 41 74 0 3 4 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 0 10 0 1hs 80 85 9 0 0 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 170 0 10 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 1 0 0 80 0 12 20 40 78 25 3 7 16 0 0 0 0 0 0 176 290 223 1080 12 32 115 0 0 0 0 0 0 552 909 434 8115 28 76 275 0 0 0 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
BlackRogue BlackRogue CorruptRogue 10 46 1 1 CR 0 0 2 2 3 0 2 7 12 1 50 1 9 42 75 0 3 5 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 0 10 0 1hs 90 88 7 0 0 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 1 0 0 80 0 13 22 45 86 33 3 8 18 0 0 0 0 0 0 180 297 229 1156 12 33 117 0 0 0 0 0 0 560 922 440 8602 29 77 278 0 0 0 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
FleshHunter FleshHunter CorruptRogue 10 47 1 0 CR 0 0 2 2 3 0 2 8 12 1 50 0 23 56 89 0 4 5 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 0 10 0 1hs 99 90 5 0 0 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 20 0 0 0 0 0 20 0 0 0 0 0 70 0 0 0 100 0 2 0 0 1 0 0 0 0 1 0 0 80 0 31 51 116 311 40 7 18 43 0 0 0 0 0 0 240 395 305 2980 16 44 156 0 0 0 0 0 0 664 1093 522 19448 34 91 330 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
DuneBeast DuneBeast BaboonDemon 11 48 1 0 BB 0 0 3 3 3 0 3 7 12 1 50 0 18 51 84 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 60 0 20 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 41 57 90 238 18 6 18 34 0 0 0 0 0 0 360 508 278 2619 17 51 142 0 0 0 0 0 0 1032 1456 492 17918 36 109 312 0 0 0 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
RockDweller RockDweller BaboonDemon 11 49 1 0 BB 0 0 3 3 3 0 3 7 12 1 50 0 18 51 84 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 65 15 20 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 41 57 90 238 18 6 18 34 0 0 0 0 0 0 360 508 278 2619 17 51 142 0 0 0 0 0 0 1032 1456 492 17918 36 109 312 0 0 0 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
JungleHunter JungleHunter BaboonDemon 11 50 1 0 BB 0 0 3 3 3 0 3 7 13 1 50 0 21 54 87 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 70 25 20 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 47 66 106 317 21 7 21 40 0 0 0 0 0 0 381 537 294 3209 18 54 151 0 0 0 0 0 0 1069 1507 510 21340 38 113 323 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
DoomApe DoomApe BaboonDemon 11 51 1 0 BB 0 0 3 3 3 0 3 7 13 1 50 0 22 55 88 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 75 40 20 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 49 69 111 348 22 7 22 42 0 0 0 0 0 0 388 547 299 3433 18 55 154 0 0 0 0 0 0 1081 1525 516 22621 38 114 327 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
TempleGuard TempleGuard BaboonDemon 11 52 1 0 BB 0 0 3 3 3 0 3 7 14 1 50 0 24 57 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 50 20 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 53 75 121 422 24 8 24 45 0 0 0 0 0 0 402 567 310 3931 19 56 159 0 0 0 0 0 0 1105 1559 528 25417 39 117 334 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
MoonClan MoonClan Goatmen 12 53 1 1 GM 0 0 2 2 3 0 2 5 5 1 50 0 4 37 70 0 1 2 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 0 2hs 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 1 0 0 96 0 12 15 12 54 5 3 5 8 2 5 8 0 0 0 281 351 120 950 18 37 104 15 33 104 0 0 0 922 1152 245 7409 45 89 260 36 80 260 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
NightClan NightClan Goatmen 12 54 1 1 GM 0 0 2 2 3 0 2 6 6 1 50 0 6 39 72 0 1 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 0 2hs 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 17 21 18 72 7 4 7 12 3 6 12 0 0 0 296 369 127 1087 19 38 109 15 35 109 0 0 0 948 1185 252 8324 46 92 267 37 83 267 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
BloodClan BloodClan Goatmen 12 55 1 1 GM 0 0 2 2 3 0 2 7 7 1 50 0 7 40 73 0 2 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 0 2hs 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 19 23 21 81 8 4 8 14 3 7 14 0 0 0 303 379 130 1163 20 39 112 16 35 112 0 0 0 961 1201 256 8824 47 93 271 37 84 271 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
HellClan HellClan Goatmen 12 56 1 0 GM 0 0 2 2 3 0 2 9 9 1 50 0 19 52 85 0 3 4 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 0 2hs 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 40 0 0 0 0 0 70 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 46 57 57 245 19 9 19 36 8 17 36 0 0 0 393 491 169 2620 25 51 145 20 46 145 0 0 0 1119 1398 298 17756 54 108 315 43 97 315 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
DeathClan DeathClan Goatmen 12 57 1 1 GM 0 0 2 2 3 0 2 8 8 1 50 0 10 43 76 0 2 4 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 0 2hs 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 30 20 0 0 0 0 50 50 0 0 0 50 50 75 0 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 26 32 30 108 11 5 11 19 4 10 19 0 0 0 326 407 140 1425 21 42 120 17 38 120 0 0 0 1001 1251 266 10509 48 97 282 39 87 282 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
FallenShaman FallenShaman FallenShaman raises Fallen 13 58 1 1 FS 0 0 2 2 1 0 2 4 4 1 50 1 2 35 68 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 45 ressurrect pct 60 fire pct 60 circle walk pct 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 181 8 1 160 8 1 0 0 0 0 0 0 0 0 0 230 168 255 0 0 25 0 0 0 0 0 50 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 64 0 4 7 10 32 4 1 3 5 2 3 5 0 0 0 150 248 191 743 12 28 98 14 30 98 0 0 0 507 836 399 5905 30 70 253 35 75 253 0 0 0 Act 1 Cast A Act 1 Champ A Act 1 Unique A Act 1 (N) Cast A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) Cast A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
CarverShaman CarverShaman FallenShaman raises Carvers 13 59 1 1 FS 0 0 2 2 1 0 2 4 4 1 50 1 6 39 72 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 55 ressurrect pct 70 fire pct 70 circle walk pct 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 181 8 1 160 8 1 0 0 0 0 0 0 0 0 0 230 168 255 0 0 30 0 0 0 0 0 60 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 64 0 9 15 30 64 7 2 6 12 3 6 12 0 0 0 167 276 212 974 13 31 109 15 33 109 0 0 0 537 885 422 7454 31 74 267 37 79 267 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
DevilkinShaman DevilkinShaman FallenShaman raises Devilkin 13 60 1 1 FS 0 0 2 2 1 0 2 5 5 1 50 1 9 42 75 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 65 ressurrect pct 80 fire pct 80 circle walk pct 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 181 8 1 160 8 1 0 0 0 0 0 0 0 0 0 230 168 255 0 0 35 0 0 0 0 0 70 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 64 0 13 22 45 88 10 3 8 18 4 9 18 0 0 0 180 297 229 1193 14 33 117 17 35 117 0 0 0 560 922 440 8878 33 77 278 38 82 278 0 0 0 Act 1 Cast C Act 1 Champ C Act 1 Unique C Act 1 (N) Cast C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Cast C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkShaman DarkShaman FallenShaman raises Dark Ones 13 61 1 1 FS 0 0 2 2 1 0 2 5 5 1 50 1 11 44 77 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 70 ressurrect pct 85 fire pct 90 circle walk pct 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 181 8 1 160 8 1 0 0 0 0 0 0 0 0 0 230 168 255 0 0 40 0 0 0 0 0 80 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 64 0 16 26 55 104 12 4 9 21 5 10 21 0 0 0 189 311 240 1366 15 35 123 17 37 123 0 0 0 574 946 451 9976 33 79 286 39 84 286 0 0 0 Act 1 Cast C Act 1 Champ C Act 1 Unique C Act 1 (N) Cast C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Cast C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
WarpedShaman WarpedShaman FallenShaman raises Warped Fallen 13 62 1 0 FS 0 0 2 2 1 0 2 6 6 1 50 0 40 70 90 0 1 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 75 ressurrect pct 90 fire pct 99 circle walk pct 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 181 8 1 160 8 1 0 0 0 0 0 0 0 0 0 230 168 255 0 20 70 0 0 0 0 50 100 0 0 0 50 50 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 64 0 53 87 201 1621 39 13 30 75 15 32 75 0 0 0 299 493 381 7930 23 54 195 27 58 195 0 0 0 671 1105 528 21277 39 92 334 46 98 334 0 0 0 Act 5 Cast C Act 5 Champ C Act 5 Unique C Act 5 (N) Cast C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) Cast C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
QuillRat QuillRat SpikeFiend 14 63 1 1 SI 0 0 2 2 1 0 1 3 3 1 50 1 1 34 67 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 10 35 0 2 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 7 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 48 0 1 4 5 21 3 1 2 3 0 0 4 0 0 0 47 194 185 605 7 27 95 0 0 129 0 0 0 162 662 393 4855 19 69 249 0 0 336 0 0 0 Quill 1 Act 1 Champ A Act 1 Unique A Quill 1 (N) Act 1 (N) Champ A Act 1 (N) Unique A Quill 1 (H) Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
SpikeFiend SpikeFiend SpikeFiend 14 64 1 1 SI 0 0 2 2 1 0 1 3 3 1 50 1 5 38 71 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 15 45 1 2 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 8 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 48 0 3 11 25 49 6 1 5 10 0 0 14 0 0 0 53 216 207 793 8 30 106 0 0 144 0 0 0 171 701 416 6129 20 73 264 0 0 356 0 0 0 Quill 2 Act 1 Champ A Act 1 Unique A Quill 2 (N) Act 1 (N) Champ A Act 1 (N) Unique A Quill 2 (H) Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
ThornBeast ThornBeast SpikeFiend 14 65 1 1 SI 0 0 2 2 1 0 1 4 4 1 50 1 8 41 74 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 55 2 1 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 9 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 48 0 4 16 40 70 9 2 7 16 0 0 21 0 0 0 57 233 223 972 9 32 115 0 0 155 0 0 0 179 731 434 7300 21 76 275 0 0 371 0 0 0 Quill 3 Act 1 Champ B Act 1 Unique B Quill 3 (N) Act 1 (N) Champ B Act 1 (N) Unique B Quill 3 (H) Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
RazorSpine RazorSpine SpikeFiend 14 66 1 1 SI 0 0 2 2 1 0 1 4 4 1 50 1 9 42 75 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 23 65 2 1 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 10 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 48 0 4 17 45 77 10 2 8 18 0 0 24 0 0 0 58 239 229 1040 9 33 117 0 0 159 0 0 0 181 741 440 7738 21 77 278 0 0 376 0 0 0 Quill 4 Act 1 Champ C Act 1 Unique C Quill 4 (N) Act 1 (N) Champ C Act 1 (N) Unique C Quill 4 (H) Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
JungleUrchin JungleUrchin SpikeFiend 14 67 1 0 SI 0 0 2 2 1 0 1 5 5 1 50 0 18 51 84 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 25 75 3 1 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 11 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 48 0 8 33 90 174 18 4 14 34 0 0 46 0 0 0 71 289 278 1911 11 40 142 0 0 193 0 0 0 203 829 492 13074 24 86 312 0 0 421 0 0 0 Quill 5 Act 3 Champ A Act 3 Unique A Quill 5 (N) Act 3 (N) Champ A Act 3 (N) Unique A Quill 5 (H) Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
SandMaggot SandMaggot SandMaggot Lays Eggs 15 68 1 0 SM 0 0 3 3 1 0 1 4 4 1 50 0 16 49 82 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 35 egg lay pct 35 spit pct 2 eggs 75 attack pct 120 down time 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 70 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 47 59 80 238 17 9 20 31 0 0 41 0 0 0 451 556 267 2765 28 59 137 0 0 185 0 0 0 1313 1619 481 19271 61 129 304 0 0 411 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
RockWorm RockWorm SandMaggot Lays Eggs 15 69 1 0 SM 0 0 3 3 1 0 1 4 4 1 50 0 17 50 83 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 40 egg lay pct 40 spit pct 2 eggs 80 attack pct 110 down time 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 71 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 50 62 85 261 17 10 21 32 0 0 44 0 0 0 460 567 272 2958 28 60 140 0 0 189 0 0 0 1329 1639 487 20427 61 131 308 0 0 416 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Devourer Devourer SandMaggot Lays Eggs 15 70 1 0 SM 0 0 3 3 1 0 1 4 4 1 50 0 19 52 85 0 1 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 45 egg lay pct 50 spit pct 2 eggs 85 attack pct 100 down time 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 72 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 56 69 95 316 19 11 23 36 0 0 49 0 0 0 478 590 283 3387 29 63 145 0 0 196 0 0 0 1361 1678 498 22952 63 134 315 0 0 426 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
GiantLamprey GiantLamprey SandMaggot Lays Eggs 15 71 1 0 SM 0 0 3 3 1 0 1 4 4 1 50 0 21 54 87 0 2 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 50 egg lay pct 60 spit pct 2 eggs 88 attack pct 90 down time 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 73 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 61 75 106 383 21 12 26 40 0 0 54 0 0 0 496 612 294 3878 30 65 151 0 0 204 0 0 0 1393 1717 510 25789 64 137 323 0 0 436 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
WorldKiller WorldKiller SandMaggot Lays Eggs 15 72 1 0 SM 0 0 3 3 1 0 1 4 4 1 50 0 27 60 90 0 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 55 egg lay pct 70 spit pct 2 eggs 90 attack pct 80 down time 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 74 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 78 96 136 678 27 15 32 51 0 0 69 0 0 0 551 680 327 5819 34 72 167 0 0 226 0 0 0 1441 1776 528 30715 66 142 334 0 0 451 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
TombViper TombViper ClawViper 16 73 1 1 SD 0 0 3 3 3 0 2 4 4 1 50 0 11 44 77 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 75 pct att1 50 pct att2 50 approach 40 charge 15 pause 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 14 4 0 100 4 7 200 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 107 2 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 1 0 0 80 0 16 26 55 101 12 4 7 21 5 8 21 0 0 0 189 311 240 1318 16 28 123 17 29 123 0 0 0 574 946 451 9626 35 63 286 39 67 286 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
ClawViper ClawViper ClawViper 16 74 1 0 SD 0 0 3 3 3 0 2 4 10 1 50 0 15 48 81 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 60 45 45 12 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 14 4 0 100 6 10 300 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 107 2 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 20 0 0 0 0 0 40 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 1 0 0 80 0 21 34 75 144 16 6 10 29 6 10 29 0 0 0 206 339 261 1727 17 30 134 19 32 134 0 0 0 604 995 475 12153 37 66 301 41 70 301 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
Salamander Salamander ClawViper 16 75 1 0 SD 0 0 3 3 3 0 2 5 12 1 50 0 18 51 84 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 85 70 40 50 9 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 14 4 0 100 6 11 400 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 107 2 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 40 0 0 0 0 0 70 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 1 0 0 80 0 25 41 90 192 18 6 11 34 7 12 34 0 0 0 218 360 278 2116 18 32 142 20 34 142 0 0 0 626 1032 492 14474 38 68 312 43 73 312 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
PitViper PoisonSpitter ClawViper 16 76 1 0 SD 0 0 3 3 3 0 2 5 12 1 50 0 22 55 88 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 88 75 35 55 7 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 14 4 0 100 8 14 600 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 107 2 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 60 60 0 0 0 0 80 60 50 0 0 0 100 60 2 0 0 0 0 0 0 0 1 0 0 80 0 30 49 111 281 22 8 14 42 9 15 42 0 0 0 235 388 299 2774 19 34 154 21 36 154 0 0 0 656 1081 516 18273 40 72 327 45 76 327 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
SerpentMagus SerpentMagus ClawViper 16 77 1 0 SD 0 0 3 3 3 0 2 6 14 1 50 0 24 57 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 80 30 60 5 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 14 4 0 100 8 15 1200 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 107 2 5 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 40 0 0 80 20 0 70 0 0 80 60 50 70 0 0 100 60 2 0 0 0 0 0 0 0 1 0 0 80 0 32 53 121 341 24 8 15 45 9 16 45 0 0 0 244 402 310 3175 20 35 159 22 38 159 0 0 0 671 1105 528 20532 41 73 334 46 78 334 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
SandLeaper SandLeaper SandLeaper 17 78 1 0 SL 0 0 2 2 3 0 1 10 10 1 50 0 14 47 80 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 50 30 50 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 132 13 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 20 58 70 158 15 6 12 27 6 12 27 0 0 0 201 598 256 1946 18 37 131 18 37 131 0 0 0 597 1773 469 13823 41 82 297 41 82 297 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
CaveLeaper CaveLeaper SandLeaper 17 79 1 0 SL 0 0 2 2 3 0 1 8 8 1 50 0 15 48 81 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 50 30 50 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 132 13 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 0 0 0 96 0 21 62 75 174 16 6 12 29 6 12 29 0 0 0 206 611 261 2082 19 38 134 19 38 134 0 0 0 604 1795 475 14652 41 83 301 41 83 301 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
TombCreeper TombCreeper SandLeaper 17 80 1 0 SL 0 0 2 2 3 0 1 8 8 1 50 0 17 50 83 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 50 30 50 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 132 13 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 40 0 0 0 0 0 60 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 23 69 85 211 17 7 14 32 7 14 32 0 0 0 214 636 272 2384 20 39 140 20 39 140 0 0 0 619 1839 487 16463 42 85 308 42 85 308 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
TreeLurker TreeLurker SandLeaper 17 81 1 0 SL 0 0 2 2 3 0 1 8 8 1 50 0 22 55 88 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 50 30 50 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 132 13 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 20 40 0 0 0 0 70 70 0 0 50 0 80 100 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 30 88 111 339 22 9 17 42 9 17 42 0 0 0 235 699 299 3344 21 43 154 21 43 154 0 0 0 656 1949 516 22031 45 90 327 45 90 327 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
RazorPitDemon RazorPitDemon SandLeaper 17 82 1 0 SL 0 0 2 2 3 0 1 8 8 1 50 0 26 59 90 0 3 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 50 30 50 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 132 13 5 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 20 0 60 40 0 0 20 0 80 70 0 0 70 0 80 100 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 35 104 131 497 26 10 20 49 10 20 49 0 0 0 252 750 321 4383 23 46 165 23 46 165 0 0 0 671 1993 528 24754 46 92 334 46 92 334 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Huntress Huntress PantherWoman 18 83 1 0 PW 0 0 2 2 3 0 2 5 10 1 50 0 14 47 80 0 1 3 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 hth 70 70 8 6 15 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 0 0 1 0 0 96 0 17 29 53 119 15 5 12 27 0 0 0 0 0 0 178 296 191 1458 16 37 131 0 0 0 0 0 0 527 878 350 10355 35 82 297 0 0 0 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
SaberCat SaberCat PantherWoman 18 84 1 0 PW 0 0 2 2 3 0 2 6 11 1 50 0 15 48 81 0 2 3 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 hth 80 80 12 6 20 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 1 0 0 96 0 18 31 56 130 20 5 12 29 0 0 0 0 0 0 182 303 195 1560 16 38 134 0 0 0 0 0 0 533 888 354 10977 35 83 301 0 0 0 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
NightTiger NightTiger PantherWoman 18 85 1 0 PW 0 0 2 2 3 0 2 7 12 1 50 0 17 50 83 0 2 4 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 hth 90 90 16 6 25 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 21 34 64 158 25 6 14 32 0 0 0 0 0 0 189 315 203 1786 17 39 140 0 0 0 0 0 0 546 910 363 12334 36 85 308 0 0 0 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
HellCat HellCat PantherWoman 18 86 1 0 PW 0 0 2 2 3 0 2 8 13 1 50 0 19 52 85 0 3 4 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 hth 90 90 24 6 30 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 23 38 71 191 30 6 15 36 0 0 0 0 0 0 197 328 211 2045 17 41 145 0 0 0 0 0 0 559 932 372 13858 37 87 315 0 0 0 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
Itchies Itchies Swarm drains stamina 19 87 1 0 SW 0 0 2 2 2 0 2 5 5 0 50 0 16 49 82 0 4 8 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 8 0 40 8 10 400 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 166 14 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 60 0 0 0 0 0 70 0 0 0 0 0 100 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 96 0 7 15 80 124 17 8 10 31 0 0 0 0 0 0 68 142 267 1438 24 29 137 0 0 0 0 0 0 198 414 481 10025 52 63 304 0 0 0 0 0 0 Swarm 1 Act 2 Champ B Act 2 Unique B Swarm 1 (N) Act 2 (N) Champ B Act 2 (N) Unique B Swarm 1 (H) Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BlackLocusts BlackLocusts Swarm drains stamina 19 88 1 0 SW 0 0 2 2 2 0 2 6 6 0 50 0 17 50 83 0 5 8 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 8 0 60 8 10 600 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 166 14 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 70 0 0 0 0 0 80 0 0 0 0 0 100 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 96 0 8 16 85 136 17 8 10 32 0 0 0 0 0 0 69 145 272 1539 24 29 140 0 0 0 0 0 0 200 419 487 10627 53 63 308 0 0 0 0 0 0 Swarm 1 Act 2 Champ B Act 2 Unique B Swarm 1 (N) Act 2 (N) Champ B Act 2 (N) Unique B Swarm 1 (H) Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PlagueBugs PlagueBugs Swarm drains stamina 19 89 1 0 SW 0 0 2 2 2 0 2 7 7 0 50 0 21 54 87 0 6 8 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 8 0 80 10 12 800 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 166 14 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 80 0 0 0 0 0 90 0 0 0 0 0 100 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 96 0 9 19 106 199 21 10 12 40 0 0 0 0 0 0 75 156 294 2017 26 32 151 0 0 0 0 0 0 210 439 510 13416 55 66 323 0 0 0 0 0 0 Swarm 2 Act 3 Champ B Act 3 Unique B Swarm 2 (N) Act 3 (N) Champ B Act 3 (N) Unique B Swarm 2 (H) Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HellSwarm HellSwarm Swarm drains stamina 19 90 1 0 SW 0 0 2 2 2 0 2 8 8 0 50 0 22 55 88 0 7 9 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 8 0 90 11 13 1600 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 166 14 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 0 0 40 0 0 90 0 0 70 0 0 100 0 0 70 0 0 2 0 0 0 0 0 1 0 0 0 0 96 0 10 20 111 219 22 11 13 42 0 0 0 0 0 0 76 159 299 2158 27 32 154 0 0 0 0 0 0 212 444 516 14221 56 67 327 0 0 0 0 0 0 Swarm 2 Act 3 Champ B Act 3 Unique B Swarm 2 (N) Act 3 (N) Champ B Act 3 (N) Unique B Swarm 2 (H) Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DungSoldier DungSoldier ScarabDemon 20 91 1 0 SC 0 0 3 3 3 0 2 4 4 1 50 0 14 47 80 0 2 4 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 hth 75 50 15 35 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 2 2 20 1 2 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 10 4 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 0 0 0 80 0 20 33 70 140 15 5 15 27 5 12 27 0 0 0 207 344 256 1725 16 47 131 16 37 131 0 0 0 614 1018 469 12251 35 104 297 35 82 297 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
SandWarrior SandWarrior ScarabDemon 20 92 1 0 SC 0 0 3 3 3 0 2 5 5 1 50 0 16 49 82 0 3 4 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 hth 80 60 12 45 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 2 2 20 1 3 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 10 4 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 3 0 0 0 0 0 0 0 0 0 0 80 0 23 38 80 170 17 6 17 31 6 13 31 0 0 0 216 358 267 1975 16 49 137 16 38 137 0 0 0 630 1043 481 13765 35 106 304 35 84 304 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
Scarab Scarab ScarabDemon 20 93 1 0 SC 0 0 3 3 3 0 2 5 5 1 50 0 17 50 83 0 3 5 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 hth 85 70 9 55 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 2 2 25 2 3 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 10 4 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 4 0 0 0 0 0 0 0 0 0 0 80 0 24 40 85 187 17 6 17 32 6 14 32 0 0 0 221 365 272 2113 17 50 140 17 39 140 0 0 0 637 1056 487 14591 36 108 308 36 85 308 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
SteelWeevil SteelWeevil ScarabDemon 20 94 1 0 SC 0 0 3 3 3 0 2 6 6 1 50 0 19 52 85 0 4 5 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 hth 88 75 7 65 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 2 2 25 2 4 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 10 4 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 5 0 0 0 0 0 0 0 0 0 0 80 0 27 44 95 226 19 6 19 36 6 15 36 0 0 0 229 380 283 2419 17 52 145 17 41 145 0 0 0 653 1081 498 16394 37 110 315 37 87 315 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
AlbinoRoach AlbinoRoach ScarabDemon 20 95 1 0 SC 0 0 3 3 3 0 2 6 6 1 50 0 24 57 90 0 4 5 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 hth 90 70 70 70 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 2 2 30 3 4 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 10 4 5 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 6 0 0 0 0 0 0 0 0 0 0 80 0 33 55 121 364 24 8 24 45 8 19 45 0 0 0 251 416 310 3393 19 56 159 19 44 159 0 0 0 691 1145 528 21940 39 117 334 39 92 334 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
DriedCorpse DriedCorpse Mummy 21 96 1 0 MM 0 0 2 2 3 0 2 3 3 1 50 0 13 46 79 0 2 4 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 5 60 65 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 4 5 0 25 5 10 400 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 80 50 0 0 0 0 100 2 1 0 0 0 0 0 0 0 0 0 96 0 19 44 65 132 14 5 10 25 0 0 0 0 0 0 209 470 250 1673 16 32 129 0 0 0 0 0 0 624 1404 463 11994 36 72 293 0 0 0 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Decayed Decayed Mummy 21 97 1 0 MM 0 0 2 2 3 0 2 3 3 1 50 0 15 48 81 0 3 4 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 10 50 60 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 4 5 0 25 6 11 500 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 80 50 0 0 0 0 100 2 1 0 0 0 0 0 0 0 0 0 96 0 22 50 75 160 16 6 11 29 0 0 0 0 0 0 218 490 261 1915 17 34 134 0 0 0 0 0 0 640 1439 475 13476 37 74 301 0 0 0 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Embalmed Embalmed Mummy 21 98 1 0 MM 0 0 2 2 3 0 2 3 3 1 50 0 18 51 84 0 3 5 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 15 30 50 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 4 5 0 30 6 13 600 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 80 50 0 0 0 0 100 2 1 0 0 0 0 0 0 0 0 0 96 0 26 59 90 213 18 6 13 34 0 0 0 0 0 0 231 520 278 2346 18 36 142 0 0 0 0 0 0 663 1492 492 16050 38 77 312 0 0 0 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
PreservedDead PreservedDead Mummy 21 99 1 0 MM 0 0 2 2 3 0 2 3 3 1 50 0 23 56 89 0 4 5 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 20 40 55 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 4 5 0 30 8 16 700 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 80 50 0 0 0 0 100 2 1 0 0 0 0 0 0 0 0 0 96 0 33 74 116 343 23 8 16 43 0 0 0 0 0 0 254 571 305 3291 20 39 156 0 0 0 0 0 0 703 1581 522 21479 41 81 330 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Cadaver Cadaver Mummy 21 100 1 0 MM 0 0 2 2 3 0 2 3 3 1 50 0 25 58 90 0 4 5 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 25 50 55 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 4 5 0 35 9 17 800 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 80 50 0 0 0 0 100 2 1 0 0 0 0 0 0 0 0 0 96 0 36 80 126 415 25 9 17 47 0 0 0 0 0 0 263 591 316 3768 20 41 162 0 0 0 0 0 0 711 1599 528 22767 41 82 334 0 0 0 0 0 0 Act 3 H2H C Act 3 Champ C Act 3 Unique C Act 3 (N) H2H C Act 3 (N) Champ C Act 3 (N) Unique C Act 3 (H) H2H C Act 3 (H) Champ C Act 3 (H) Unique C 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
HollowOne HollowOne GreaterMummy raises undead 22 101 1 0 GY 0 0 2 2 3 0 3 2 2 1 50 0 15 48 81 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 70 30 40 60 0 1 1 1 1 1 1 0 1 0 0 0 0 1 1 1 0 4 5 0 15 12 16 1000 65535 63 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 181 5 1 182 5 1 157 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 50 50 0 0 0 0 100 2 0 1 0 1 0 0 0 1 0 0 112 0 62 76 75 252 16 12 16 29 0 0 39 0 0 0 611 750 261 3016 38 48 134 0 0 181 0 0 0 1795 2203 475 21219 83 105 301 0 0 406 0 0 0 Act 2 Cast A Act 2 Champ A Act 2 Unique A Act 2 (N) Cast A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Cast A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Guardian Guardian GreaterMummy raises undead 22 102 1 0 GY 0 0 2 2 3 0 3 2 2 1 50 0 18 51 84 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 75 35 45 70 0 1 1 1 1 1 1 0 1 0 0 0 0 1 1 1 0 4 5 0 20 14 18 1100 65535 64 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 181 5 1 182 5 1 157 5 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 50 50 100 0 0 0 50 2 0 1 0 1 0 0 0 1 0 0 112 0 73 90 90 336 18 14 18 34 0 0 46 0 0 0 649 797 278 3694 40 51 142 0 0 193 0 0 0 1861 2285 492 25272 86 109 312 0 0 421 0 0 0 Act 2 Cast B Act 2 Champ B Act 2 Unique B Act 2 (N) Cast B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Cast B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Unraveler Unraveler GreaterMummy raises undead 22 103 1 0 GY 0 0 2 2 3 0 3 3 3 1 50 0 20 53 86 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 40 50 80 0 1 1 1 1 1 1 0 1 0 0 0 0 1 1 1 0 4 5 0 25 16 20 1200 65535 65 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 181 5 1 182 5 1 157 5 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 50 0 0 0 50 50 100 0 0 0 50 2 0 1 0 1 0 0 0 1 0 0 112 0 81 99 101 406 20 16 20 38 0 0 51 0 0 0 674 828 289 4230 41 53 148 0 0 200 0 0 0 1905 2339 504 28395 88 112 319 0 0 431 0 0 0 Act 2 Cast C Act 2 Champ C Act 2 Unique C Act 2 (N) Cast C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) Cast C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Horadrim Ancient Horadrim Ancient GreaterMummy raises undead 22 104 1 0 GY 0 0 2 2 3 0 3 4 4 1 50 0 23 56 89 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 85 45 55 85 0 1 1 1 1 1 1 0 1 0 0 0 0 1 1 1 0 4 5 0 30 18 23 1500 65535 66 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 181 5 1 182 5 1 157 5 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 25 25 25 25 50 50 100 50 50 50 50 2 0 1 0 1 0 0 0 1 0 0 112 0 92 113 116 540 23 18 23 43 0 0 59 0 0 0 712 874 305 5182 44 55 156 0 0 211 0 0 0 1971 2420 522 33819 91 115 330 0 0 446 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Subject Mummy BaalMummy GreaterMummy raises undead 22 105 1 0 GY 0 0 2 2 3 0 3 5 5 1 50 0 40 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 85 45 55 85 0 1 1 1 1 1 1 0 1 0 0 0 0 1 1 1 0 4 5 0 30 30 38 1500 65535 66 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 181 5 1 182 5 1 157 5 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 25 25 25 25 50 50 100 50 50 50 50 2 0 1 0 1 0 0 0 1 0 0 112 0 157 192 201 2732 39 30 38 75 0 0 101 0 0 0 889 1091 381 13361 54 69 195 0 0 264 0 0 0 1993 2447 528 35848 92 117 334 0 0 451 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 (H) Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused DamnedHorde ChaosHorde 23 106 0 0 CH 0 0 2 2 3 0 2 3 3 1 50 0 16 49 82 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 29 59 80 204 17 9 17 31 0 0 0 0 0 0 278 556 267 2377 28 49 137 0 0 0 0 0 0 809 1619 481 16570 61 106 304 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused TwistedHorde ChaosHorde 23 107 0 0 CH 0 0 2 2 3 0 2 3 3 1 50 0 21 54 87 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 38 75 106 329 21 12 21 40 0 0 0 0 0 0 306 612 294 3334 30 54 151 0 0 0 0 0 0 859 1717 510 22175 64 113 323 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused WickedHorde ChaosHorde 23 108 0 0 CH 0 0 2 2 3 0 2 3 3 1 50 0 23 56 89 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 41 82 116 398 23 13 23 43 0 0 0 0 0 0 317 635 305 3817 32 55 156 0 0 0 0 0 0 878 1757 522 24915 66 115 330 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused UnholyHorde ChaosHorde 23 109 0 0 CH 0 0 2 2 3 0 2 3 3 1 50 0 28 61 90 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 50 99 141 641 28 16 27 53 0 0 0 0 0 0 345 691 332 5354 34 60 170 0 0 0 0 0 0 888 1776 528 26410 66 117 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
CarrionBird CarrionBird VultureDemon 24 110 1 0 VD 0 0 2 2 2 0 1 4 4 1 50 0 14 47 80 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 70 attack freq 0 0 0 40 approach 1 1 1 1 1 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 0 0 0 0 0 96 0 20 32 70 140 15 9 12 27 0 0 0 0 0 0 201 332 256 1718 28 37 131 0 0 0 0 0 0 597 983 469 12205 61 82 297 0 0 0 0 0 0 Swarm 1 Act 2 Champ A Act 2 Unique A Swarm 1 (N) Act 2 (N) Champ A Act 2 (N) Unique A Swarm 1 (H) Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
UndeadScavenger UndeadScavenger VultureDemon 24 111 1 0 VD 0 0 2 2 2 0 1 4 4 1 50 0 15 48 81 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 0 0 0 50 freq 1 1 1 1 1 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 1 0 0 0 0 0 0 0 0 0 96 0 21 34 75 154 16 9 12 29 0 0 0 0 0 0 206 339 261 1839 28 38 134 0 0 0 0 0 0 604 995 475 12937 62 83 301 0 0 0 0 0 0 Swarm 1 Act 2 Champ A Act 2 Unique A Swarm 1 (N) Act 2 (N) Champ A Act 2 (N) Unique A Swarm 1 (H) Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HellBuzzard HellBuzzard VultureDemon 24 112 1 0 VD 0 0 2 2 2 0 1 5 5 1 50 0 22 55 88 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 85 0 0 0 60 1 1 1 1 1 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 0 0 0 0 0 96 0 30 49 111 300 22 13 17 42 0 0 0 0 0 0 235 388 299 2953 32 43 154 0 0 0 0 0 0 656 1081 516 19452 67 90 327 0 0 0 0 0 0 Swarm 2 Act 3 Champ B Act 3 Unique B Swarm 2 (N) Act 3 (N) Champ B Act 3 (N) Unique B Swarm 2 (H) Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
WingedNightmare WingedNightmare VultureDemon 24 113 1 0 VD 0 0 2 2 2 0 1 5 5 1 50 0 23 56 89 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 0 0 0 70 1 1 1 1 1 0 0 0 1 1 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 31 51 116 330 23 14 18 43 0 0 0 0 0 0 240 395 305 3159 33 44 156 0 0 0 0 0 0 664 1093 522 20620 68 91 330 0 0 0 0 0 0 Swarm 2 Act 3 Champ B Act 3 Unique B Swarm 2 (N) Act 3 (N) Champ B Act 3 (N) Unique B Swarm 2 (H) Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Sucker Sucker MosquitoDemon drains mana and stamina 25 114 1 0 MO 0 0 2 2 2 0 3 6 12 1 50 0 21 54 87 0 1 3 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 2 4 40 40 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 8 0 60 50 60 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 206 34 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 0 1 0 1 0 96 0 9 47 106 243 21 7 17 40 10 17 40 0 0 0 75 381 294 2467 18 42 151 26 42 151 0 0 0 210 1069 510 16405 38 89 323 55 89 323 0 0 0 Swarm 2 Act 3 Champ A Act 3 Unique A Swarm 2 (N) Act 3 (N) Champ A Act 3 (N) Unique A Swarm 2 (H) Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Feeder Feeder MosquitoDemon drains mana and stamina 25 115 1 0 MO 0 0 2 2 2 0 3 6 12 1 50 0 23 56 89 0 2 3 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 3 5 40 40 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 8 0 70 60 70 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 206 34 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 0 1 0 1 0 96 0 10 51 116 295 23 8 18 43 11 18 43 0 0 0 78 395 305 2824 18 44 156 27 44 156 0 0 0 215 1093 522 18433 38 91 330 57 91 330 0 0 0 Swarm 2 Act 3 Champ B Act 3 Unique B Swarm 2 (N) Act 3 (N) Champ B Act 3 (N) Unique B Swarm 2 (H) Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
BloodHook BloodHook MosquitoDemon drains mana and stamina 25 116 1 0 MO 0 0 2 2 2 0 3 6 12 1 50 0 22 55 88 0 2 4 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 4 6 40 40 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 8 0 80 70 80 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 206 34 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 0 1 0 1 0 96 0 10 49 111 268 22 7 17 42 11 17 42 0 0 0 76 388 299 2639 18 43 154 27 43 154 0 0 0 212 1081 516 17389 38 90 327 56 90 327 0 0 0 Swarm 2 Act 3 Champ B Act 3 Unique B Swarm 2 (N) Act 3 (N) Champ B Act 3 (N) Unique B Swarm 2 (H) Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
BloodWing BloodWing MosquitoDemon drains mana and stamina 25 117 1 0 MO 0 0 2 2 2 0 3 6 12 1 50 0 24 57 90 0 3 4 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 5 7 40 40 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 8 0 90 80 90 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 206 34 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 0 1 0 1 0 96 0 10 53 121 324 24 8 19 45 12 19 45 0 0 0 79 402 310 3022 19 44 159 28 44 159 0 0 0 217 1105 528 19539 39 92 334 57 92 334 0 0 0 Swarm 2 Act 3 Champ B Act 3 Unique B Swarm 2 (N) Act 3 (N) Champ B Act 3 (N) Unique B Swarm 2 (H) Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Gloam Gloam WillOWisp drains mana 26 118 1 0 WW 0 0 2 2 2 0 3 15 15 0 50 0 21 54 87 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 40 cast freq 70 attack prob 50 approach 0 0 1 1 1 1 1 0 0 1 1 0 0 0 1 1 1 0 4 7 0 40 2 9 120 65535 65535 65535 65535 65535 65535 320 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 6 0 0 53 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 40 0 0 50 0 0 40 0 0 70 0 0 50 0 0 100 0 0 2 1 0 0 0 0 0 1 0 0 0 96 0 19 38 106 241 21 5 21 40 0 0 0 0 0 0 156 306 294 2446 12 54 151 0 0 0 0 0 0 439 859 510 16266 24 113 323 0 0 0 0 0 0 Act 3 Wraith A Act 3 Champ A Act 3 Unique A Act 3 (N) Wraith A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) Wraith A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SwampGhost SwampGhost WillOWisp drains mana 26 119 1 0 WW 0 0 2 2 2 0 3 15 15 0 50 0 23 56 89 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 50 80 40 0 0 1 1 1 1 1 0 0 1 1 0 0 0 1 1 1 0 4 7 0 60 2 10 180 65535 65535 65535 65535 65535 65535 320 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 6 0 0 53 0 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 50 0 0 60 0 0 50 0 0 80 0 0 70 0 0 100 0 0 2 1 0 0 0 0 0 1 0 0 0 96 0 21 41 116 292 23 5 23 43 0 0 0 0 0 0 162 317 305 2800 12 55 156 0 0 0 0 0 0 449 878 522 18276 25 115 330 0 0 0 0 0 0 Act 3 Wraith B Act 3 Champ B Act 3 Unique B Act 3 (N) Wraith B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Wraith B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BurningSoul BurningSoul WillOWisp drains mana 26 120 1 0 WW 0 0 2 2 2 0 3 15 15 0 50 0 26 59 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 60 85 35 0 0 1 1 1 1 1 0 0 1 1 0 0 0 1 1 1 0 4 7 0 80 3 12 240 65535 65535 65535 65535 65535 65535 320 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 6 0 0 53 0 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 60 0 0 70 0 0 60 0 0 85 0 0 80 0 0 100 0 0 2 1 0 0 0 0 0 1 0 0 0 96 0 24 46 131 389 26 6 26 49 0 0 0 0 0 0 171 334 321 3430 13 58 165 0 0 0 0 0 0 454 888 528 19373 25 117 334 0 0 0 0 0 0 Act 4 Wraith A Act 3 Champ A Act 3 Unique A Act 4 (N) Wraith A Act 3 (N) Champ A Act 3 (N) Unique A Act 4 (H) Wraith A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BlackSoul BlackSoul WillOWisp drains mana 26 121 1 0 WW 0 0 2 2 2 0 3 15 15 0 50 0 28 61 90 0 3 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 70 90 30 0 0 1 1 1 1 1 0 0 1 1 0 0 0 1 1 1 0 4 7 0 90 3 13 300 65535 65535 65535 65535 65535 65535 320 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 6 0 0 53 0 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 70 0 0 80 0 0 70 0 0 100 0 0 90 0 0 100 0 0 2 1 0 0 0 0 0 1 0 0 0 96 0 25 50 141 470 28 6 27 53 0 0 0 0 0 0 177 345 332 3927 13 60 170 0 0 0 0 0 0 454 888 528 19373 25 117 334 0 0 0 0 0 0 Act 4 Wraith B Act 3 Champ B Act 3 Unique B Act 4 (N) Wraith B Act 3 (N) Champ B Act 3 (N) Unique B Act 4 (H) Wraith B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Arach Arach EvilSpiders 27 122 1 1 SP 0 0 3 3 1 0 2 6 6 1 50 0 11 44 77 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 45 attack freq 33 att1 vs att2 15 approach 75 heal level 25 runaway 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 5 2 3 1000 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 173 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 37 46 55 147 12 7 11 21 0 0 0 0 0 0 438 555 240 1918 26 41 123 0 0 0 0 0 0 1335 1689 451 14012 59 94 286 0 0 0 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
SandFisher SandFisher EvilSpiders 27 123 1 0 SP 0 0 3 3 1 0 2 7 7 1 50 0 15 48 81 0 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 55 40 15 75 30 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 12 2 4 1000 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 173 0 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 3 0 0 0 0 0 0 0 0 0 0 96 0 48 61 75 210 16 9 15 29 0 0 0 0 0 0 478 605 261 2514 28 45 134 0 0 0 0 0 0 1404 1777 475 17690 62 99 301 0 0 0 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
PoisonSpinner PoisonSpinner EvilSpiders 27 124 1 0 SP 0 0 3 3 1 0 2 8 8 1 50 0 21 54 87 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 65 45 20 75 35 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 5 0 33 3 5 1200 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 173 0 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 4 0 0 0 0 0 0 0 0 0 0 96 0 66 84 106 372 21 12 20 40 0 0 0 0 0 0 537 680 294 3773 32 50 151 0 0 0 0 0 0 1507 1908 510 25094 66 106 323 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
FlameSpider FlameSpider EvilSpiders 27 125 1 0 SP 0 0 3 3 1 0 2 8 9 1 50 0 22 55 88 0 4 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 75 50 33 75 40 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 1 35 40 3 6 1500 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 173 0 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 5 0 0 0 0 0 0 0 0 0 0 96 0 69 88 111 410 22 13 21 42 0 0 0 0 0 0 547 693 299 4037 32 51 154 0 0 0 0 0 0 1525 1930 516 26600 67 107 327 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
SpiderMagus SpiderMagus EvilSpiders 27 126 1 0 SP 0 0 3 3 1 0 2 8 11 1 50 0 23 56 89 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 75 55 20 75 45 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 5 0 50 4 6 3000 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 173 0 5 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 6 0 0 0 0 0 0 0 0 0 0 96 0 72 91 116 451 23 14 22 43 0 0 0 0 0 0 557 705 305 4320 33 52 156 0 0 0 0 0 0 1542 1952 522 28196 68 109 330 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
ThornedHulk ThornedHulk ThornedHulk stun attack 28 127 1 0 TH 0 0 3 3 3 0 3 3 3 1 50 0 21 54 87 0 1 3 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 5 0 hth 80 15 10 30 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 5 9 0 100 0 0 7 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 215 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 4 0 0 0 0 1 0 0 0 0 0 96 0 67 109 106 403 21 12 20 40 10 20 40 0 0 0 544 884 294 4087 30 50 151 26 51 151 0 0 0 1527 2481 510 27179 64 106 323 55 108 323 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
BrambleHulk BrambleHulk ThornedHulk stun attack 28 128 1 0 TH 0 0 3 3 3 0 3 3 3 1 50 0 22 55 88 0 2 3 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 5 0 hth 85 25 10 40 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 5 9 0 100 0 0 7 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 215 0 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 6 0 0 0 0 1 0 0 0 0 0 96 0 70 114 111 444 22 13 21 42 11 21 42 0 0 0 554 900 299 4373 31 51 154 27 52 154 0 0 0 1544 2509 516 28810 65 107 327 56 110 327 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Thrasher Thrasher ThornedHulk stun attack 28 129 1 0 TH 0 0 3 3 3 0 3 3 3 1 50 0 23 56 89 0 2 4 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 5 0 hth 90 40 10 50 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 5 9 0 100 0 0 7 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 215 0 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 6 0 0 0 0 1 0 0 0 0 0 96 0 73 119 116 488 23 13 22 43 11 22 43 0 0 0 564 917 305 4679 32 52 156 27 53 156 0 0 0 1562 2537 522 30539 66 109 330 57 111 330 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Spikefist Spikefist ThornedHulk stun attack 28 130 1 0 TH 0 0 3 3 3 0 3 3 3 1 50 0 27 60 90 0 3 5 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 0 5 0 hth 100 50 10 55 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 5 9 0 100 0 0 7 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 215 0 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 6 0 0 0 0 1 0 0 0 0 0 96 0 85 138 136 715 27 15 25 51 13 25 51 0 0 0 604 982 327 6133 34 56 167 29 57 167 0 0 0 1579 2566 528 32371 66 110 334 57 112 334 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
GhoulLord GhoulLord Vampire steals life 29 131 1 0 VA 0 0 2 2 3 0 2 6 6 1 50 0 19 52 85 0 1 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 55 20 24 0 3 spells 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 4 4 0 60 5 15 30 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 3 0 0 169 0 2 170 0 2 171 0 2 183 0 1 0 0 0 255 138 0 30 0 0 0 50 0 30 0 0 0 50 50 70 0 0 0 100 50 4 0 1 0 0 0 0 0 1 0 0 96 0 61 84 95 299 19 6 15 36 0 0 0 0 0 0 524 721 283 3204 17 41 145 0 0 0 0 0 0 1492 2051 498 21715 37 87 315 0 0 0 0 0 0 Act 2 Cast C Act 2 Champ C Act 2 Unique C Act 2 (N) Cast C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) Cast C Act 2 (H) Champ C Act 2 (H) Unique C 20 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
NightLord NightLord Vampire steals life 29 132 1 0 VA 0 0 2 2 3 0 2 7 7 1 50 0 23 56 89 0 1 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 65 25 25 0 5 spells 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 4 4 0 65 6 9 30 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 3 0 0 169 0 3 170 0 3 171 0 3 183 0 1 0 0 0 255 138 0 40 0 0 0 50 0 40 0 0 0 50 50 80 0 0 0 100 50 3 0 1 0 0 0 0 0 1 0 0 96 0 73 100 116 438 23 8 18 43 0 0 0 0 0 0 564 776 305 4200 18 44 156 0 0 0 0 0 0 1562 2147 522 27415 38 91 330 0 0 0 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkLord DarkLord Vampire steals life 29 133 1 0 VA 0 0 2 2 3 0 2 7 7 1 50 0 24 57 90 0 1 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 76 30 26 0 7 spells 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 4 4 0 70 7 10 30 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 3 0 0 169 0 4 170 0 4 171 0 4 183 0 1 0 0 0 255 138 0 50 0 0 0 50 0 50 0 0 0 50 50 90 0 0 0 100 50 4 0 1 0 0 0 0 0 1 0 0 96 0 76 105 121 482 24 8 19 45 0 0 0 0 0 0 574 789 310 4494 19 44 159 0 0 0 0 0 0 1579 2171 528 29060 39 92 334 0 0 0 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BloodLord BloodLord Vampire steals life 29 134 1 0 VA 0 0 2 2 3 0 2 8 8 1 50 0 25 58 90 0 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 85 35 27 0 7 spells 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 4 4 0 75 8 11 30 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 169 0 5 170 0 5 171 0 5 183 0 1 0 0 0 255 0 0 60 0 0 0 50 0 60 0 0 0 50 50 90 0 0 0 100 50 5 0 1 0 0 0 0 0 1 0 0 96 0 79 109 126 530 25 8 19 47 0 0 0 0 0 0 584 803 316 4809 19 45 162 0 0 0 0 0 0 1579 2171 528 29060 39 92 334 0 0 0 0 0 0 Act 3 Cast C Act 3 Champ C Act 3 Unique C Act 3 (N) Cast C Act 3 (N) Champ C Act 3 (N) Unique C Act 3 (H) Cast C Act 3 (H) Champ C Act 3 (H) Unique C 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Banished Banished Vampire steals life 29 135 1 1 VA 0 0 2 2 3 0 2 9 9 1 50 0 12 45 78 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 85 40 28 0 1 spells 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 4 4 0 55 4 7 30 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 3 0 0 169 0 1 170 0 1 171 0 1 183 0 1 0 0 0 255 138 0 20 0 0 0 50 0 20 0 0 0 50 50 90 0 0 0 100 50 3 0 1 0 0 0 0 0 1 0 0 96 0 40 55 60 154 13 4 10 23 0 0 0 0 0 0 454 624 245 1996 15 35 126 0 0 0 0 0 0 1369 1882 457 14442 34 80 290 0 0 0 0 0 0 Act 1 Cast A Act 1 Champ A Act 1 Unique A Act 1 (N) Cast A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) Cast A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DesertWing DesertWing BatDemon shocking hit 30 136 1 0 BT 0 0 2 2 2 0 3 7 7 1 50 0 15 48 81 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 5 25 0 15 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 5 2 1 65 7 10 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 1 0 0 0 96 0 14 48 75 151 16 7 10 29 5 10 60 0 0 0 139 478 261 1811 21 30 134 0 0 0 0 0 0 409 1404 475 12741 45 66 301 0 0 0 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Fiend Fiend BatDemon shocking hit 30 137 1 0 BT 0 0 2 2 2 0 3 8 8 1 50 0 19 52 85 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 5 50 0 15 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 5 2 1 70 8 12 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 1 0 0 0 96 0 18 60 95 222 19 8 12 36 8 12 65 0 0 0 151 517 283 2374 22 32 145 0 0 0 0 0 0 429 1473 498 16085 48 69 315 0 0 0 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Gloombat Gloombat BatDemon shocking hit 30 138 1 0 BT 0 0 2 2 2 0 3 9 9 1 50 0 22 55 88 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 5 50 0 15 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 5 2 1 75 9 14 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 1 0 0 0 96 0 20 69 111 295 22 9 14 42 11 17 70 0 0 0 159 547 299 2908 24 34 154 0 0 0 0 0 0 444 1525 516 19158 49 72 327 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BloodDiver BloodDiver BatDemon shocking hit 30 139 1 0 BT 0 0 2 2 2 0 3 10 10 1 50 0 24 57 90 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 5 50 0 15 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 5 2 1 80 10 15 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 1 0 0 0 96 0 22 75 121 357 24 10 15 45 14 22 75 0 0 0 165 567 310 3329 24 35 159 0 0 0 0 0 0 454 1559 528 21526 50 73 334 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkFamiliar DarkFamiliar BatDemon shocking hit 30 140 1 0 BT 0 0 2 2 2 0 3 12 12 1 50 0 27 60 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 5 50 0 15 0 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 0 5 2 1 85 11 17 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 1 0 0 0 96 0 24 84 136 475 27 11 17 51 18 28 80 0 0 0 174 596 327 4078 26 37 167 0 0 0 0 0 0 454 1559 528 21526 50 73 334 0 0 0 0 0 0 Act 3 H2H C Act 3 Champ C Act 3 Unique C Act 3 (N) H2H C Act 3 (N) Champ C Act 3 (N) Unique C Act 3 (H) H2H C Act 3 (H) Champ C Act 3 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
RatMan RatMan Fetish 31 141 1 1 FE 0 0 2 2 1 0 1 6 6 1 50 0 10 43 76 0 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 55 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 48 0 14 24 50 95 11 5 8 19 0 0 0 0 0 0 184 304 234 1251 19 30 120 0 0 0 0 0 0 567 934 446 9228 45 68 282 0 0 0 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Fetish Fetish Fetish 31 142 1 0 FE 0 0 2 2 1 0 1 7 7 1 50 0 21 54 87 0 1 2 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 60 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 1 0 1 0 0 48 0 28 47 106 260 21 9 14 40 0 0 0 0 0 0 231 381 294 2634 24 37 151 0 0 0 0 0 0 649 1069 510 17517 51 77 323 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Flayer Flayer Fetish 31 143 1 0 FE 0 0 2 2 1 0 1 8 8 1 50 0 22 55 88 0 1 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 65 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 1 0 1 0 0 48 0 30 49 111 286 22 10 15 42 0 0 0 0 0 0 235 388 299 2818 25 37 154 0 0 0 0 0 0 656 1081 516 18568 51 78 327 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
SoulKiller SoulKiller Fetish 31 144 1 0 FE 0 0 2 2 1 0 1 9 9 1 50 0 23 56 89 0 2 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 70 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 1 0 1 0 0 48 0 31 51 116 315 23 10 16 43 0 0 0 0 0 0 240 395 305 3016 25 38 156 0 0 0 0 0 0 664 1093 522 19682 52 79 330 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
StygianDoll StygianDoll Fetish 31 145 1 0 FE 0 0 2 2 1 0 1 10 10 1 50 0 24 57 90 0 2 4 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 80 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 48 0 32 53 121 346 24 11 16 45 0 0 0 0 0 0 244 402 310 3227 25 39 159 0 0 0 0 0 0 671 1105 528 20863 53 80 334 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
DeckardCain DeckardCain NPC 32 146 1 1 DC 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Gheed Gheed NPC 33 147 1 1 GH 0 0 2 2 0 0 2 4 4 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Akara Akara NPC 34 148 1 1 PS 0 0 2 2 0 0 2 1 1 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
dummy chicken chicken 35 149 0 1 CK 1 1 0 0 0 0 1 2 2 1 50 0 99 70 90 0 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Kashya Kashya NPC 36 150 1 1 RC 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
dummy rat rat 37 151 0 1 RT 1 1 0 0 0 0 1 5 5 1 50 0 99 70 90 0 4 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy RogueTown NPC 38 152 0 1 RG 0 0 2 2 3 0 2 8 8 1 50 0 99 70 90 0 1 1 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 120 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 282 564 497 0 499 0 0 995 0 0 0 0 0 0 660 1320 381 0 0 0 1055 0 0 0 0 0 0 1480 2961 528 0 0 0 1805 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Dummy HellMeteor Boss 39 153 0 0 K9 0 0 0 0 0 0 0 0 0 1 50 0 0 33 66 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 50 launch chance 50 think delay 10 launch radius 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 213 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 1 0 96 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 4 4 180 174 0 0 0 0 0 0 0 0 0 14 14 387 1411 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Charsi Charsi NPC 40 154 1 1 CI 0 0 2 2 0 0 2 4 4 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Warriv Warriv NPC 41 155 1 1 WA 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Andariel Andariel Boss 42 156 0 1 AN 0 0 3 3 3 0 4 8 8 1 25 0 12 45 78 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 hth 35 0 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 0 1 0 4 5 0 100 5 10 30 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 1 2 1 8 1 0 164 12 1 201 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 -50 50 50 80 0 0 -50 50 50 50 50 0 -50 50 50 50 0 0 0 1 0 1 0 0 1 0 1 96 0 666 666 60 1281 20 6 19 38 13 23 38 0 0 0 7553 7553 245 16652 22 66 204 44 79 204 0 0 0 22777 22777 457 120512 50 149 470 99 179 470 0 0 0 Andariel Andariel Andariel Andariel (N) Andariel Andariel Andariel (H) Andariel Andariel 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy Smallbird 43 157 0 0 BS 1 1 0 0 0 0 0 7 7 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy Largebird 44 158 0 0 BL 1 1 0 0 0 0 0 4 4 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy Bat bat 45 159 0 1 B9 1 1 0 0 0 0 0 7 7 1 50 0 99 70 90 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkRanger DarkRanger CorruptRogue 46 160 1 1 CR 0 0 2 2 3 0 2 4 4 1 50 0 4 37 70 0 1 2 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 9 0 bow 60 chase prob 70 attack prob 14 pause 20 melee flee 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 13 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 10 14 20 54 13 0 0 23 0 0 0 0 0 0 234 337 201 956 0 0 280 0 0 0 0 0 0 768 1106 410 7460 0 0 703 0 0 0 0 0 0 Act 1 Miss A Act 1 Champ A Act 1 Unique A Act 1 (N) Miss A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) Miss A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
VileArcher VileArcher CorruptRogue 46 161 1 1 CR 0 0 2 2 3 0 2 5 6 1 50 0 5 38 71 0 1 3 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 9 0 bow 70 chase prob 75 attack prob 12 pause 25 melee flee 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 14 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 12 17 25 63 15 0 0 28 0 0 0 0 0 0 240 346 207 1023 0 0 288 0 0 0 0 0 0 779 1122 416 7908 0 0 713 0 0 0 0 0 0 Act 1 Miss B Act 1 Champ B Act 1 Unique B Act 1 (N) Miss B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Miss B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkArcher DarkArcher CorruptRogue 46 162 1 1 CR 0 0 2 2 3 0 2 5 8 1 50 0 7 40 73 0 2 3 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 9 0 bow 80 chase prob 80 attack prob 10 pause 30 melee flee 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 15 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 16 23 35 81 20 0 0 38 0 0 0 0 0 0 253 364 218 1171 0 0 303 0 0 0 0 0 0 801 1153 428 8885 0 0 733 0 0 0 0 0 0 Act 1 Miss B Act 1 Champ B Act 1 Unique B Act 1 (N) Miss B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Miss B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BlackArcher BlackArcher CorruptRogue 46 163 1 1 CR 0 0 2 2 3 0 2 6 9 1 50 0 10 43 76 0 2 4 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 9 0 bow 90 chase prob 80 attack prob 8 pause 35 melee flee 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 16 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 21 31 50 108 28 0 0 53 0 0 0 0 0 0 271 391 234 1435 0 0 325 0 0 0 0 0 0 834 1201 446 10583 0 0 763 0 0 0 0 0 0 Act 1 Miss C Act 1 Champ C Act 1 Unique C Act 1 (N) Miss C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Miss C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FleshArcher FleshArcher CorruptRogue 46 164 1 0 CR 0 0 2 2 3 0 2 7 10 1 50 0 24 57 90 0 3 4 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 9 0 bow 99 chase prob 85 attack prob 6 pause 40 melee flee 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 17 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 20 0 0 0 0 0 20 0 0 0 0 0 70 0 0 0 0 100 2 0 0 1 0 0 0 0 1 0 0 96 0 48 68 121 397 63 0 0 123 0 0 0 0 0 0 359 517 310 3700 0 0 430 0 0 0 0 0 0 987 1421 528 23926 0 0 903 0 0 0 0 0 0 Act 3 Miss B Act 3 Champ B Act 3 Unique B Act 3 (N) Miss B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Miss B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkSpearwoman DarkSpearwoman CorruptRogue 47 165 1 1 CR 0 0 2 2 3 0 2 4 4 1 50 0 2 35 68 2 1 2 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 8 0 2ht 60 75 9 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 6 9 10 36 4 2 4 5 0 0 0 0 0 0 199 301 191 829 14 35 98 0 0 0 0 0 0 672 1015 399 6594 35 87 253 0 0 0 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
VileLancer VileLancer CorruptRogue 47 166 1 1 CR 0 0 2 2 3 0 2 5 6 1 50 0 5 38 71 2 1 3 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 8 0 2ht 70 80 8 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 11 16 25 63 6 3 6 10 0 0 0 0 0 0 216 326 207 1016 15 38 106 0 0 0 0 0 0 701 1060 416 7853 36 91 264 0 0 0 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DarkLancer DarkLancer CorruptRogue 47 167 1 1 CR 0 0 2 2 3 0 2 5 8 1 50 0 8 41 74 2 2 3 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 8 0 2ht 80 85 7 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 16 24 40 90 9 4 9 16 0 0 0 0 0 0 233 352 223 1245 16 40 115 0 0 0 0 0 0 731 1104 434 9353 38 94 275 0 0 0 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BlackLancer BlackLancer CorruptRogue 47 168 1 0 CR 0 0 2 2 3 0 2 6 10 1 50 0 9 42 75 2 2 4 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 8 0 2ht 90 88 6 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 17 26 45 99 10 4 10 18 0 0 0 0 0 0 239 360 229 1332 17 41 117 0 0 0 0 0 0 741 1119 440 9915 38 96 278 0 0 0 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FleshLancer FleshLancer CorruptRogue 47 169 1 0 CR 0 0 2 2 3 0 2 7 12 1 50 0 24 57 90 2 3 4 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 8 0 2ht 99 90 5 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 20 0 0 0 0 0 20 0 0 0 0 0 70 0 0 100 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 43 65 121 394 24 9 23 45 0 0 0 0 0 0 323 488 310 3675 22 55 159 0 0 0 0 0 0 888 1342 528 23761 46 114 334 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SkeletonArcher SkeletonArcher Skeleton 48 170 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 5 38 71 0 1 2 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 bow 75 15 50 5 6 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 196 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 60 50 0 0 0 0 100 2 0 1 0 0 0 0 0 1 0 0 96 0 9 19 25 62 15 0 0 28 0 0 0 0 0 0 187 379 207 1009 0 0 288 0 0 0 0 0 0 608 1231 416 7799 0 0 713 0 0 0 0 0 0 Act 1 Miss B Act 1 Champ B Act 1 Unique B Act 1 (N) Miss B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Miss B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ReturnedArcher ReturnedArcher Skeleton 48 171 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 8 41 74 0 1 3 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 bow 75 15 50 5 6 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 197 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 60 50 0 0 0 0 100 2 0 1 0 0 0 0 0 1 0 0 96 0 14 28 40 89 23 0 0 43 0 0 0 0 0 0 202 409 223 1236 0 0 310 0 0 0 0 0 0 633 1283 434 9288 0 0 743 0 0 0 0 0 0 Act 1 Miss B Act 1 Champ B Act 1 Unique B Act 1 (N) Miss B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Miss B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BoneArcher BoneArcher Skeleton 48 172 1 1 SK 0 0 2 2 3 0 2 5 5 0 50 1 9 42 75 0 2 3 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 bow 80 15 50 5 6 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 198 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 20 50 0 0 0 0 50 60 50 0 0 0 75 100 2 0 1 0 0 0 0 0 1 0 0 96 0 15 31 45 98 25 0 0 48 0 0 0 0 0 0 207 419 229 1323 0 0 318 0 0 0 0 0 0 642 1300 440 9846 0 0 753 0 0 0 0 0 0 Act 1 Miss C Act 1 Champ C Act 1 Unique C Act 1 (N) Miss C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Miss C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BurningDeadArcher BurningDeadArcher Skeleton 48 173 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 13 46 79 0 2 4 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 bow 80 15 50 5 6 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 199 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 30 0 0 50 0 0 50 0 0 60 50 0 75 0 0 100 2 0 1 0 0 0 0 0 1 0 0 96 0 21 42 65 137 35 0 0 68 0 0 0 0 0 0 226 458 250 1734 0 0 348 0 0 0 0 0 0 676 1369 463 12430 0 0 793 0 0 0 0 0 0 Act 2 Miss A Act 2 Champ A Act 2 Unique A Act 2 (N) Miss A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Miss A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HorrorArcher HorrorArcher Skeleton 48 174 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 18 51 84 0 2 4 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 bow 90 15 50 5 6 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 200 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 20 0 40 0 50 0 50 0 70 0 60 50 75 0 75 0 100 2 0 1 0 0 0 0 0 1 0 0 96 0 28 57 90 221 48 0 0 93 0 0 0 0 0 0 251 508 278 2432 0 0 385 0 0 0 0 0 0 719 1456 492 16634 0 0 843 0 0 0 0 0 0 Act 2 Miss B Act 2 Champ B Act 2 Unique B Act 2 (N) Miss B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Miss B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Warriv Warriv NPC 49 175 1 0 WX 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Atma Atma NPC 50 176 1 0 AS 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Drognan Drognan NPC 51 177 1 0 DR 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Fara Fara NPC 52 178 1 0 OF 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
dummy Cow 53 179 1 1 CW 0 0 3 3 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 2 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SandMaggotYoung SandMaggotYoung SandMaggotBaby 54 180 0 0 SB 0 0 2 2 1 0 1 4 4 1 50 0 16 49 82 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 75 15 60 15 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 1 0 0 0 0 32 0 7 22 80 111 17 3 5 31 0 0 0 0 0 0 68 210 267 1289 9 14 137 0 0 0 0 0 0 198 612 481 8986 19 31 304 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
RockWormYoung RockWormYoung SandMaggotBaby 54 181 0 0 SB 0 0 2 2 1 0 1 4 4 1 50 0 17 50 83 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 12 70 12 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 1 0 0 0 0 32 0 8 23 85 122 17 3 5 32 0 0 0 0 0 0 69 214 272 1379 9 15 140 0 0 0 0 0 0 200 619 487 9525 19 32 308 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
DevourerYoung DevourerYoung SandMaggotBaby 54 182 0 0 SB 0 0 2 2 1 0 1 5 5 1 50 0 19 52 85 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 85 9 80 9 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 1 0 0 0 0 32 0 8 26 95 147 19 3 6 36 0 0 0 0 0 0 72 223 283 1579 9 15 145 0 0 0 0 0 0 205 634 498 10703 19 32 315 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
GiantLampreyYoung GiantLampreyYoung SandMaggotBaby 54 183 0 0 SB 0 0 2 2 1 0 1 5 5 1 50 0 21 54 87 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 88 7 85 7 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 1 0 0 0 0 32 0 9 28 106 178 21 4 6 40 0 0 0 0 0 0 75 231 294 1808 9 16 151 0 0 0 0 0 0 210 649 510 12026 20 33 323 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
WorldKillerYoung WorldKillerYoung SandMaggotBaby 54 184 0 0 SB 0 0 2 2 1 0 1 6 6 1 50 0 24 57 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 5 90 5 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 0 1 0 0 0 0 32 0 10 32 121 238 24 4 7 45 0 0 0 0 0 0 79 244 310 2215 10 17 159 0 0 0 0 0 0 217 671 528 14323 21 34 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
dummy Camel 55 185 1 0 CM 0 0 3 3 0 0 0 5 5 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 2 1 0 0 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Blunderbore Blunderbore PinHead stun attack 56 186 1 0 PN 0 0 3 3 3 0 3 3 3 1 50 0 18 51 84 0 1 2 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 75 15 60 12 40 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 97 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 3 0 0 1 0 1 0 0 1 0 0 112 0 41 73 90 282 24 9 16 46 14 18 34 0 0 0 360 649 278 3106 25 45 193 40 50 142 0 0 0 1032 1861 492 21245 53 96 421 86 107 312 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Gorbelly Gorbelly PinHead stun attack 56 187 1 0 PN 0 0 3 3 3 0 3 4 4 1 50 0 20 53 86 0 1 3 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 80 12 80 9 50 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 97 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 4 0 0 1 0 1 0 0 1 0 0 112 0 45 81 101 341 27 10 18 51 16 20 38 0 0 0 374 674 289 3556 26 46 200 41 52 148 0 0 0 1056 1905 504 23870 55 98 431 88 109 319 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Mauler Mauler PinHead stun attack 56 188 1 0 PN 0 0 3 3 3 0 3 6 6 1 50 0 25 58 90 0 2 3 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 85 9 90 7 60 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 97 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 5 0 0 1 0 1 0 0 1 0 0 112 0 55 100 126 550 33 12 22 64 19 24 47 0 0 0 409 737 316 4987 28 51 219 45 56 162 0 0 0 1105 1993 528 30136 57 103 451 92 114 334 0 0 0 Act 3 H2H C Act 2 Champ C Act 2 Unique C Act 3 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 3 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Urdar Urdar PinHead stun attack 56 189 1 0 PN 0 0 3 3 3 0 3 8 8 1 50 0 32 65 90 0 2 4 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 90 7 95 5 65 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 97 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 25 25 50 25 0 0 50 50 50 50 50 0 50 50 50 50 6 0 0 1 0 1 0 0 1 0 0 112 0 70 126 161 1071 42 15 27 81 24 30 60 0 0 0 458 826 354 8008 31 57 245 50 63 181 0 0 0 1105 1993 528 30136 57 103 451 92 114 334 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
SandMaggotEgg SandMaggotEgg SandMaggotEgg 57 190 0 0 SE 0 0 1 1 1 0 1 1 1 1 50 0 16 49 82 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 250 pause 18 hatch pct 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 159 7 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 32 0 26 33 80 101 1 0 0 0 0 0 0 0 0 0 247 309 267 1170 0 0 0 0 0 0 0 0 0 720 899 481 8155 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
RockWormEgg RockWormEgg SandMaggotEgg 57 191 0 0 SE 0 0 1 1 1 0 1 1 1 1 50 0 17 50 83 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 240 22 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 159 7 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 32 0 28 34 85 111 1 0 0 0 0 0 0 0 0 0 252 315 272 1252 0 0 0 0 0 0 0 0 0 728 910 487 8644 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
DevourerEgg DevourerEgg SandMaggotEgg 57 192 0 0 SE 0 0 1 1 1 0 1 1 1 1 50 0 19 52 85 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 210 26 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 159 7 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 32 0 31 38 95 134 1 0 0 0 0 0 0 0 0 0 262 328 283 1433 0 0 0 0 0 0 0 0 0 746 932 498 9713 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
GiantLampreyEgg GiantLampreyEgg SandMaggotEgg 57 193 0 0 SE 0 0 1 1 1 0 1 1 1 1 50 0 21 54 87 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 180 30 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 159 7 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 32 0 34 42 106 162 1 0 0 0 0 0 0 0 0 0 272 340 294 1641 0 0 0 0 0 0 0 0 0 763 954 510 10913 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
WorldKillerEgg WorldKillerEgg SandMaggotEgg 57 194 0 0 SE 0 0 1 1 1 0 1 1 1 1 50 0 27 60 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 150 34 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 159 7 5 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 32 0 43 53 136 287 1 0 0 0 0 0 0 0 0 0 302 378 327 2463 0 0 0 0 0 0 0 0 0 790 987 528 12998 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
dummy Act2Male NPC 58 195 0 0 2M 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Dummy Act2Female NPC 59 196 0 0 2F 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
dummy Act2Child NPC 60 197 0 0 2C 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Greiz Greiz NPC 61 198 1 0 GR 0 0 2 2 0 0 2 4 4 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Elzix Elzix NPC 62 199 1 0 EL 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Geglash Geglash NPC 63 200 1 0 GE 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Jerhyn Jerhyn NPC 64 201 1 0 JE 0 0 2 2 0 0 2 4 4 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Lysander Lysander NPC 65 202 1 0 LY 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Dummy Act2Guard NPC 66 203 1 0 GU 0 0 2 2 0 0 2 4 7 1 50 0 99 70 90 0 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 9 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
dummy Act2Vendor1 NPC 67 204 1 0 M1 0 0 2 2 0 0 2 4 4 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
dummy Act2Vendor2 NPC 68 205 1 0 M2 0 0 2 2 0 0 2 4 4 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
FoulCrowNest FoulCrowNest FoulCrowNest 69 206 0 1 BN 0 0 3 3 3 0 3 0 0 1 50 0 3 36 69 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 0 6 nCrows 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 167 15 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 2 0 128 0 41 49 3 88 1 0 0 0 0 0 0 0 0 0 1138 1365 44 1747 0 0 0 0 0 0 0 0 0 3786 4543 91 13760 0 0 0 0 0 0 0 0 0 Act 1 Cast A Act 1 Champ A Act 1 Unique A Act 1 (N) Cast A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) Cast A Act 1 (H) Champ A Act 1 (H) Unique A 45 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
BloodHawkNest BloodHawkNest FoulCrowNest 69 207 0 1 BN 0 0 3 3 3 0 3 0 0 1 50 0 8 41 74 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 0 8 nCrows 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 167 15 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 2 0 128 0 88 105 9 177 1 0 0 0 0 0 0 0 0 0 1294 1553 50 2451 0 0 0 0 0 0 0 0 0 4059 4871 97 18413 0 0 0 0 0 0 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 45 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
BlackVultureNest BlackVultureNest FoulCrowNest 69 208 0 0 BN 0 0 3 3 3 0 3 0 0 1 50 0 15 48 81 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 0 10 nCrows 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 167 15 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 2 0 128 0 153 184 17 329 1 0 0 0 0 0 0 0 0 0 1513 1815 59 3935 0 0 0 0 0 0 0 0 0 4442 5331 106 27687 0 0 0 0 0 0 0 0 0 Act 2 Cast A Act 2 Champ A Act 2 Unique A Act 2 (N) Cast A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Cast A Act 2 (H) Champ A Act 2 (H) Unique A 45 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
CloudStalkerNest CloudStalkerNest FoulCrowNest 69 209 0 0 BN 0 0 3 3 3 0 3 0 0 1 50 0 22 55 88 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 0 15 nCrows 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 167 15 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 2 0 128 0 219 263 25 641 1 0 0 0 0 0 0 0 0 0 1731 2078 67 6319 0 0 0 0 0 0 0 0 0 4825 5790 116 41631 0 0 0 0 0 0 0 0 0 Act 3 Cast A Act 3 Champ A Act 3 Unique A Act 3 (N) Cast A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) Cast A Act 3 (H) Champ A Act 3 (H) Unique A 45 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
Meshif Meshif NPC 70 210 1 0 MS 0 0 2 2 0 0 2 4 4 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Duriel Duriel Boss 71 211 0 0 DU 0 0 3 3 3 0 4 10 15 1 20 0 22 55 88 2 1 1 0 1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 5 0 hth 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 5 9 0 100 0 0 15 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 2 1 9 1 1 107 36 5 10 37 15 97 38 7 0 0 0 0 0 0 255 255 255 0 0 20 20 50 20 0 0 50 50 100 50 50 0 50 50 100 50 0 0 0 1 0 1 0 0 0 0 1 112 0 2188 2188 111 6005 46 22 32 90 16 23 113 0 0 0 17313 17313 299 59184 53 80 332 41 57 415 0 0 0 48250 48250 516 389932 112 168 706 85 119 883 0 0 0 Duriel Duriel Duriel Duriel (N) Duriel Duriel Duriel (H) Duriel Duriel 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Undead RatMan RatMan-skeleton Fetish 72 212 1 0 FK 0 0 2 2 1 0 1 6 6 1 50 0 10 43 76 0 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 55 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 60 50 0 0 0 0 100 2 1 0 0 0 0 1 0 1 0 0 48 0 14 24 50 95 11 5 8 19 0 0 0 0 0 0 184 304 234 1251 19 30 120 0 0 0 0 0 0 567 934 446 9228 45 68 282 0 0 0 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0
Undead Fetish Fetish-skeleton Fetish 72 213 1 0 FK 0 0 2 2 1 0 1 7 7 1 50 0 21 54 87 0 1 2 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 60 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 60 50 0 0 0 0 100 2 1 0 0 0 0 1 0 1 0 0 48 0 28 47 106 260 21 9 14 40 0 0 0 0 0 0 231 381 294 2634 24 37 151 0 0 0 0 0 0 649 1069 510 17517 51 77 323 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0
Undead Flayer Flayer-skeleton Fetish 72 214 1 0 FK 0 0 2 2 1 0 1 8 8 1 50 0 22 55 88 0 1 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 65 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 60 50 0 0 0 0 100 2 1 0 0 0 0 1 0 1 0 0 48 0 30 49 111 286 22 10 15 42 0 0 0 0 0 0 235 388 299 2818 25 37 154 0 0 0 0 0 0 656 1081 516 18568 51 78 327 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0
Undead SoulKiller SoulKiller-skeleton Fetish 72 215 1 0 FK 0 0 2 2 1 0 1 9 9 1 50 0 23 56 89 0 2 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 70 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 60 50 0 0 0 0 100 2 1 0 0 0 0 1 0 1 0 0 48 0 31 51 116 315 23 10 16 43 0 0 0 0 0 0 240 395 305 3016 25 38 156 0 0 0 0 0 0 664 1093 522 19682 52 79 330 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0
Undead StygianDoll StygianDoll-skeleton Fetish 72 216 1 0 FK 0 0 2 2 1 0 1 10 10 1 50 0 24 57 90 0 2 4 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 80 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 60 50 0 0 0 0 100 2 1 0 0 0 0 1 0 1 0 0 48 0 32 53 121 346 24 11 16 45 0 0 0 0 0 0 244 402 310 3227 25 39 159 0 0 0 0 0 0 671 1105 528 20863 53 80 334 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0
unused DarkGuard DarkGuard 73 217 0 0 xx 0 0 2 2 3 0 2 4 4 1 50 0 13 46 79 0 1 2 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 37 48 65 163 14 7 14 25 0 0 0 0 0 0 394 522 250 2062 23 46 129 0 0 0 0 0 0 1179 1560 463 14785 52 103 293 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused DarkKnight DarkGuard 73 218 0 0 xx 0 0 2 2 3 0 2 4 4 1 50 0 15 48 81 0 1 3 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 42 55 75 197 16 8 16 29 0 0 0 0 0 0 411 545 261 2361 24 48 134 0 0 0 0 0 0 1208 1599 475 16612 54 105 301 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused BloodGuard DarkGuard 73 219 0 0 xx 0 0 2 2 3 0 2 5 5 1 50 0 17 50 83 0 2 3 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 47 62 85 239 17 9 17 32 0 0 0 0 0 0 428 567 272 2703 25 50 140 0 0 0 0 0 0 1238 1639 487 18666 55 108 308 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused BloodKnight DarkGuard 73 220 0 0 xx 0 0 2 2 3 0 2 5 5 1 50 0 29 62 90 0 2 4 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 77 102 146 750 29 14 28 55 0 0 0 0 0 0 530 702 338 6088 31 61 173 0 0 0 0 0 0 1342 1776 528 28066 59 117 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused DarkPaladin DarkGuard 73 221 0 0 xx 0 0 2 2 3 0 2 5 5 1 50 0 30 63 90 0 3 4 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 80 106 151 825 29 15 29 56 0 0 0 0 0 0 539 713 343 6514 32 62 176 0 0 0 0 0 0 1342 1776 528 28066 59 117 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused BloodMage BloodMage 74 222 0 0 xx 0 0 2 2 3 0 2 3 3 1 50 0 14 47 80 0 1 2 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 39 52 70 179 15 7 15 27 0 0 0 0 0 0 403 533 256 2207 24 47 131 0 0 0 0 0 0 1193 1580 469 15672 53 104 297 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused Demonist BloodMage 74 223 0 0 xx 0 0 2 2 3 0 2 3 3 1 50 0 29 62 90 0 1 3 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 77 102 146 750 29 14 28 55 0 0 0 0 0 0 530 702 338 6088 31 61 173 0 0 0 0 0 0 1342 1776 528 28066 59 117 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused BlackMagus BloodMage 74 224 0 0 xx 0 0 2 2 3 0 2 4 4 1 50 0 28 61 90 0 2 3 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 75 99 141 681 28 14 27 53 0 0 0 0 0 0 522 691 332 5690 31 60 170 0 0 0 0 0 0 1342 1776 528 28066 59 117 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused Diabolist BloodMage 74 225 0 0 xx 0 0 2 2 3 0 2 4 4 1 50 0 30 63 90 0 2 4 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 80 106 151 825 29 15 29 56 0 0 0 0 0 0 539 713 343 6514 32 62 176 0 0 0 0 0 0 1342 1776 528 28066 59 117 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused DeathMage BloodMage 74 226 0 0 xx 0 0 2 2 3 0 2 4 4 1 50 0 17 50 83 0 3 4 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 112 0 47 62 85 239 17 9 17 32 0 0 0 0 0 0 428 567 272 2703 25 50 140 0 0 0 0 0 0 1238 1639 487 18666 55 108 308 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Maggot Maggot 75 227 0 0 MA 1 1 0 0 0 0 0 1 1 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MummyGenerator MummyGenerator 76 228 0 0 MG 0 0 1 1 3 0 3 0 0 0 50 0 15 48 81 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 1 167 31 1 0 0 0 0 0 0 0 0 0 0 0 0 201 255 95 0 0 0 0 50 50 0 0 0 0 50 50 50 0 0 0 100 50 2 0 0 0 0 1 0 0 0 0 0 128 0 306 306 50 608 1 0 0 0 0 0 0 0 0 0 3025 3025 172 7271 0 0 0 0 0 0 0 0 0 8884 8884 312 51160 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Radament Radament Quest 77 229 1 0 RD 0 0 2 2 3 0 3 2 2 1 50 0 16 49 82 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 40 40 70 0 1 1 1 1 1 1 0 1 0 0 0 0 1 1 1 0 4 5 0 25 20 30 1000 65535 66 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 1 1 181 5 1 182 5 1 157 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 40 50 0 0 0 0 60 60 50 0 0 0 60 80 0 0 1 0 1 0 0 0 1 0 0 112 0 169 169 60 446 17 8 17 31 8 17 41 0 0 0 1606 1606 199 5194 25 49 137 25 49 185 0 0 0 4677 4677 359 36205 54 106 304 54 106 411 0 0 0 Radament Radament Radament Radament (N) Radament Radament Radament (H) Radament Radament 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused FireBeast FireBeast 78 230 1 0 FM 0 0 2 2 3 0 2 4 4 1 50 0 3 36 69 0 3 6 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 approach 50 attack 20 pause 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 0 100 5 10 600 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 3 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 138 0 0 0 0 0 70 70 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 112 0 11 15 15 178 76 1 5 149 0 0 0 0 0 0 309 410 196 3516 8 36 2316 0 0 0 0 0 0 1030 1363 405 27690 19 90 5886 0 0 0 0 0 0 Act 3 (H) H2H A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused IceGlobe FireBeast 79 231 1 0 IM 0 0 2 2 3 0 2 4 4 1 50 0 5 38 71 0 3 6 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 25 60 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 0 100 10 15 800 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 3 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 60 255 0 0 0 0 70 70 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 112 0 16 21 25 183 77 1 6 151 0 0 0 0 0 0 326 432 207 2963 8 38 1581 0 0 0 0 0 0 1060 1402 416 22903 20 92 3919 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused LightningBeast FireBeast 80 232 1 0 xx 0 0 2 2 3 0 2 4 4 1 50 0 7 40 73 0 3 6 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 30 70 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 0 100 15 20 1000 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 3 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 112 0 21 28 35 193 76 2 8 150 0 0 0 0 0 0 343 455 218 2785 9 40 1210 0 0 0 0 0 0 1089 1442 428 21122 20 95 2930 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused PoisonOrb FireBeast 81 233 1 0 PM 0 0 2 2 3 0 2 4 4 1 50 0 9 42 75 0 3 6 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 35 80 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 5 0 100 20 30 1200 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 3 0 0 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 102 255 0 0 0 0 0 70 70 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 112 0 26 35 45 208 77 2 10 151 0 0 0 0 0 0 360 477 229 2808 9 42 1010 0 0 0 0 0 0 1119 1481 440 20900 21 98 2393 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FlyingScimitar FlyingScimitar 82 234 1 1 ST 0 0 1 1 3 0 1 4 4 0 50 0 12 45 78 2 3 6 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 90 approach 90 attack 8 pause 40 encircle 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 3 0 1 107 1 1 0 0 0 0 0 0 0 0 0 0 0 0 100 190 255 0 0 0 0 0 70 0 0 0 100 0 0 50 0 0 100 0 0 2 0 0 0 0 1 0 1 0 0 0 112 0 25 34 60 116 13 3 9 23 3 9 23 0 0 0 278 386 245 1512 10 30 126 10 30 126 0 0 0 839 1164 457 10944 22 68 290 22 68 290 0 0 0 Flying Scimitar Flying Scimitar Flying Scimitar Flying Scimitar (N) Flying Scimitar Flying Scimitar Flying Scimitar (H) Flying Scimitar Flying Scimitar 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Zakarumite Zakarumite Zealot 83 235 1 0 ZZ 0 0 2 2 3 0 2 6 8 1 50 0 20 53 86 1 1 2 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 hth 65 50 35 50 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 54 72 101 297 20 8 14 38 8 14 38 0 0 0 454 601 289 3097 21 36 148 21 36 148 0 0 0 1283 1698 504 20788 44 77 319 44 77 319 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Faithful Faithful Zealot 83 236 1 0 ZZ 0 0 2 2 3 0 2 6 9 1 50 0 22 55 88 1 1 3 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 hth 76 60 40 60 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 1 0 0 96 0 60 79 111 360 22 9 15 42 9 15 42 0 0 0 471 623 299 3545 21 37 154 21 37 154 0 0 0 1312 1737 516 23358 45 78 327 45 78 327 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Zealot Zealot Zealot 83 237 1 0 ZZ 0 0 2 2 3 0 2 6 11 1 50 0 24 57 90 1 2 3 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 hth 85 65 50 70 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 65 86 121 435 24 9 16 45 9 16 45 0 0 0 488 646 310 4059 22 39 159 22 39 159 0 0 0 1342 1776 528 26245 46 80 334 46 80 334 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Sexton Sexton Cantor heals Zealots and Cantors 84 238 1 0 ZP 0 0 2 2 3 0 2 6 6 1 50 0 22 55 88 0 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 25 att pct 5 blizzard pct 50 light pct 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 4 2 1 45 4 8 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 3 0 0 179 0 1 183 0 1 184 0 1 205 0 1 0 0 0 105 190 255 0 0 0 0 0 0 0 0 0 0 50 0 50 0 0 0 100 0 2 0 0 0 1 0 0 0 1 0 0 96 0 60 79 111 381 22 10 22 42 0 0 0 0 0 0 471 623 299 3758 25 55 154 0 0 0 0 0 0 1312 1737 516 24758 51 114 327 0 0 0 0 0 0 Act 3 Cast A Act 3 Champ A Act 3 Unique A Act 3 (N) Cast A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) Cast A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Cantor Cantor Cantor heals Zealots and Cantors 84 239 1 0 ZP 0 0 2 2 3 0 2 6 6 1 50 0 23 56 89 0 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 30 6 55 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 4 4 33 55 5 9 25 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 3 0 0 179 0 2 183 0 1 184 0 1 205 0 1 0 0 0 105 190 255 0 0 0 0 0 0 0 0 0 50 50 0 50 0 0 100 75 0 2 0 0 0 1 0 0 0 1 0 0 96 0 62 82 116 419 23 10 23 43 0 0 0 0 0 0 479 635 305 4021 25 55 156 0 0 0 0 0 0 1327 1757 522 26243 52 115 330 0 0 0 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Heirophant Heirophant Cantor heals Zealots and Cantors 84 240 1 0 ZP 0 0 2 2 3 0 2 6 6 1 50 0 24 57 90 0 1 2 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 35 8 60 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 4 4 33 65 5 10 25 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 3 0 0 179 0 3 183 0 1 184 0 1 205 0 1 0 0 0 105 190 255 0 0 0 0 0 0 0 0 50 0 75 0 50 0 0 0 100 0 2 0 0 0 1 0 0 0 1 0 0 96 0 65 86 121 461 24 11 24 45 0 0 0 0 0 0 488 646 310 4302 25 56 159 0 0 0 0 0 0 1342 1776 528 27818 53 117 334 0 0 0 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Heirophant Heirophant Cantor heals Zealots and Cantors 84 241 1 0 ZP 0 0 2 2 3 0 2 6 6 1 50 0 24 57 90 0 1 2 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 40 10 65 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 4 4 33 75 5 11 25 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 3 0 0 179 0 3 183 0 1 184 0 1 205 0 1 0 0 0 105 190 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 1 0 0 0 1 0 0 96 0 65 86 121 461 24 11 24 45 0 0 0 0 0 0 488 646 310 4302 25 56 159 0 0 0 0 0 0 1342 1776 528 27818 53 117 334 0 0 0 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mephisto Mephisto Boss 85 242 0 0 MP 0 0 3 3 3 0 4 8 8 1 25 0 26 59 90 3 1 1 0 1 0 1 1 0 0 0 1 1 1 0 1 1 0 0 8 0 hth 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 2 1 9 1 0 185 0 35 186 0 10 192 0 7 183 0 1 0 0 0 255 255 255 0 0 33 33 25 50 0 0 50 50 25 50 50 0 50 50 25 50 0 0 0 1 1 1 0 0 1 0 1 112 0 3075 3075 193 10714 68 50 75 133 0 0 0 0 0 0 22275 22275 475 94540 114 172 445 0 0 0 0 0 0 59213 59213 780 533917 229 343 903 0 0 0 0 0 0 Mephisto Mephisto Mephisto Mephisto (N) Mephisto Mephisto Mephisto (H) Mephisto Mephisto 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Diablo Diablo Boss 86 243 0 0 DI 0 0 3 3 3 0 4 6 6 1 25 0 40 70 90 3 1 1 0 1 1 1 1 0 0 0 1 1 0 0 0 0 0 0 6 0 hth 0 0 0 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 2 1 0 1 1 193 0 2 194 0 2 195 0 4 197 0 2 198 22 5 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 50 0 0 0 1 1 1 0 0 1 0 1 112 0 5270 5270 207 44675 77 19 38 152 28 56 203 0 0 0 29920 29920 392 218494 34 68 396 50 101 528 0 0 0 67108 67108 543 586240 57 114 677 85 172 903 0 0 0 Diablo Diablo Diablo Diablo (N) Diablo Diablo Diablo (H) Diablo Diablo 0 1 xxx xxx 1 0 1 0 12 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DeckardCain DeckardCain NPC 87 244 0 0 2D 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
DeckardCain DeckardCain NPC 88 245 0 0 3D 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
DeckardCain DeckardCain NPC 89 246 0 0 4D 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Swamp Dweller Swamp Dweller FrogBoy 90 247 1 0 FD 0 0 2 2 3 0 1 9 9 1 50 0 21 54 87 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 60 45 0 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 280 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 176 21 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 1 0 112 0 57 75 106 360 21 9 21 40 0 0 54 0 0 0 462 612 294 3648 24 54 151 0 0 204 0 0 0 1298 1717 510 24260 51 113 323 0 0 436 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bog Creature Bog Creature FrogBoy 90 248 1 0 FD 0 0 2 2 3 0 1 10 10 1 50 0 22 55 88 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 65 50 0 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 280 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 176 21 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 1 0 112 0 60 79 111 396 22 10 22 42 0 0 56 0 0 0 471 623 299 3903 25 55 154 0 0 208 0 0 0 1312 1737 516 25715 51 114 327 0 0 441 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Slime Prince Slime Prince FrogBoy 90 249 1 0 FD 0 0 2 2 3 0 1 11 11 1 50 0 24 57 90 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 70 55 0 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 4 5 0 10 16 16 600 65535 282 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 176 21 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 1 0 112 0 65 86 121 479 24 11 24 45 0 0 61 0 0 0 488 646 310 4469 25 56 159 0 0 215 0 0 0 1342 1776 528 28894 53 117 334 0 0 451 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Summoner Summoner Quest 91 250 0 0 SU 0 0 3 3 3 0 2 5 5 1 50 0 18 51 84 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 40 cold pct 50 fire pct 20 sum pct 0 0 1 1 1 1 0 0 0 1 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 2 1 9 1 1 55 25 1 44 25 3 47 25 3 51 25 3 72 25 2 174 0 255 0 0 50 50 50 0 0 0 50 50 50 0 50 0 75 75 75 0 0 0 0 0 1 1 0 0 0 0 1 112 0 49 65 165 305 18 9 18 34 0 0 0 0 0 0 437 578 506 3362 26 51 142 0 0 0 0 0 0 1253 1658 897 22995 56 109 312 0 0 0 0 0 0 Summoner Summoner Summoner Summoner (N) Summoner Summoner Summoner (H) Summoner Summoner 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
tyrael tyrael NPC 92 251 0 0 TX 0 0 2 2 4 0 4 0 0 1 50 0 99 70 90 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 144 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 1 3 0 0 0 0 0 0 0 0 0 1 -100 -20 60 100 0 0 0 0 0 1
asheara asheara NPC 93 252 0 0 AH 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
hratli hratli NPC 94 253 0 0 HR 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
alkor alkor NPC 95 254 0 0 AL 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
ormus ormus NPC 96 255 0 0 OR 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
izual izual unique 97 256 0 0 22 0 0 2 2 3 0 2 10 16 1 50 0 29 62 90 1 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 35 att pct 50 walk pct 66 spell pct 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 0 1 0 4 4 0 100 8 16 50 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 9 1 0 44 0 4 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 30 30 30 30 75 30 30 30 30 30 75 30 80 30 30 30 75 30 0 0 0 0 0 0 0 0 0 0 1 96 0 5688 5688 146 22759 75 25 45 148 0 0 0 0 0 0 39000 39000 338 184830 54 96 468 0 0 0 0 0 0 98688 98688 528 852081 103 183 903 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
halbu halbu NPC 98 257 0 0 20 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
WaterWatcherLimb WaterWatcherLimb tentacle 99 258 0 0 TN 0 0 3 3 3 0 3 0 0 1 50 0 18 51 84 6 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 70 att pct 5 sub pct 16 sub time 12 up time 20 pause time 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 176 19 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 1 0 96 0 49 65 90 263 18 9 18 34 0 0 0 0 0 0 437 578 278 2892 26 51 142 0 0 0 0 0 0 1253 1658 492 19785 56 109 312 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
RiverStalkerLimb RiverStalkerLimb tentacle 99 259 0 0 TN 0 0 3 3 3 0 3 0 0 1 50 0 20 53 86 6 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 80 10 14 14 16 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 176 19 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 1 0 96 0 54 72 101 318 20 10 20 38 0 0 0 0 0 0 454 601 289 3311 27 53 148 0 0 0 0 0 0 1283 1698 504 22231 57 112 319 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
StygianWatcherLimb StygianWatcherLimb tentacle 99 260 0 0 TN 0 0 3 3 3 0 3 0 0 1 50 0 22 55 88 6 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 90 15 12 16 12 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 176 19 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 1 0 96 0 60 79 111 385 22 11 22 42 0 0 0 0 0 0 471 623 299 3791 28 55 154 0 0 0 0 0 0 1312 1737 516 24979 58 114 327 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
WaterWatcherHead WaterWatcherHead tentaclehead 100 261 1 0 TE 0 0 3 3 3 0 3 0 0 1 50 0 18 51 84 6 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 70 spit pct 5 sub pct 16 sub time 12 up time 20 pause time 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 139 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 176 20 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 1 0 96 0 49 65 90 213 24 0 0 46 0 0 0 0 0 0 437 578 278 2346 0 0 193 0 0 0 0 0 0 1253 1658 492 16050 0 0 421 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
RiverStalkerHead RiverStalkerHead tentaclehead 100 262 1 0 TE 0 0 3 3 3 0 3 0 0 1 50 0 20 53 86 6 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 80 10 14 14 16 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 139 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 176 20 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 1 0 96 0 54 72 101 258 27 0 0 51 0 0 0 0 0 0 454 601 289 2686 0 0 200 0 0 0 0 0 0 1283 1698 504 18034 0 0 431 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
StygianWatcherHead StygianWatcherHead tentaclehead 100 263 1 0 TE 0 0 3 3 3 0 3 0 0 1 50 0 22 55 88 6 1 1 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 hth 90 15 12 16 12 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 139 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 176 20 1 180 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 1 0 96 0 60 79 111 312 29 0 0 56 0 0 0 0 0 0 471 623 299 3076 0 0 208 0 0 0 0 0 0 1312 1737 516 20263 0 0 441 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
meshif meshif NPC 101 264 0 0 M3 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
DeckardCain DeckardCain NPC 102 265 0 1 1D 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
navi navi 103 266 0 1 RG 0 0 2 2 3 0 2 8 8 1 50 0 1 34 67 0 1 1 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 120 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 1 499 499 13 0 3 0 0 3 0 0 0 0 0 0 24540 24540 467 0 0 0 95 0 0 0 0 0 0 83929 83929 991 0 0 0 249 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Bloodraven Bloodraven Quest 104 267 0 1 CR 0 0 2 2 3 0 2 6 8 1 50 0 10 43 76 0 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 9 0 bow 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 135 65535 65535 65535 65535 65535 65535 136 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 1 0 1 1 167 16 1 168 17 1 0 0 0 0 0 0 0 0 0 255 255 255 0 50 50 50 50 50 25 50 50 50 50 50 75 50 50 50 50 50 0 0 0 1 0 1 0 0 0 0 1 96 0 71 71 38 181 28 0 0 53 0 0 0 0 0 0 901 901 175 2393 0 0 325 0 0 0 0 0 0 2768 2768 333 17650 0 0 763 0 0 0 0 0 0 Blood Raven Blood Raven Blood Raven Blood Raven (N) Blood Raven (N) Blood Raven (N) Blood Raven (H) Blood Raven (H) Blood Raven (H) 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy bug 105 268 1 0 BG 1 1 0 0 0 0 0 2 2 1 50 0 99 70 90 0 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 0 0 0 0 1 1 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy scorpion 106 269 1 0 DS 1 1 0 0 0 0 0 5 5 1 50 0 99 70 90 0 4 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
RogueScout RogueScout NPC 107 270 0 1 RG 0 0 2 2 3 0 2 8 8 1 50 0 5 38 71 0 1 1 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 120 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 1 0 1 1 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96 0 12 30 25 0 15 0 0 28 0 0 0 0 0 0 240 600 207 0 0 0 288 0 0 0 0 0 0 779 1948 416 0 0 0 713 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
Dummy RogueHireling NPC 108 271 0 1 RG 0 0 2 2 3 0 2 7 11 1 50 0 1 34 67 0 1 1 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 5 1 1 202 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 0 0 1 0 26 0 0 49 0 0 0 0 0 0 4 4 41 0 0 0 1674 0 0 0 0 0 0 15 15 88 0 0 0 4371 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy RogueTownShoot NPC 109 272 0 1 RG 0 0 2 2 3 0 2 8 8 1 50 0 99 70 90 0 1 1 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 hth 0 ranged 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 120 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 376 658 497 0 93 0 0 184 0 0 0 0 0 0 880 1540 381 0 0 0 195 0 0 0 0 0 0 1974 3454 528 0 0 0 334 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
GargoyleTrap GargoyleTrap 110 273 1 1 GT 0 0 2 2 0 0 1 0 0 0 50 0 15 48 81 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 24 20 12 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 172 18 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 0 0 0 0 0 100 0 50 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 96 0 42 55 75 197 16 8 16 29 0 0 0 0 0 0 411 545 261 2361 24 48 134 0 0 0 0 0 0 1208 1599 475 16612 54 105 301 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ReturnedMage ReturnedMage Skeleton 111 274 1 1 SK 0 0 2 2 3 0 2 4 4 1 50 1 8 41 74 0 1 2 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 125 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 102 255 0 0 0 0 0 0 70 0 0 0 0 0 60 50 0 0 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 10 15 40 55 9 0 0 16 0 0 0 0 0 0 150 217 223 759 0 0 115 0 0 0 0 0 0 471 682 434 5703 0 0 275 0 0 0 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BoneMage BoneMage Skeleton 111 275 1 1 SK 0 0 2 2 3 0 2 4 4 1 50 1 10 43 76 0 1 3 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 125 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 102 255 0 0 0 0 0 0 70 0 0 0 0 0 60 50 0 0 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 12 18 50 66 11 0 0 19 0 0 0 0 0 0 157 228 234 869 0 0 120 0 0 0 0 0 0 484 700 446 6408 0 0 282 0 0 0 0 0 0 Act 1 Cast C Act 1 Champ C Act 1 Unique C Act 1 (N) Cast C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Cast C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BurningDeadMage BurningDeadMage Skeleton 111 276 1 0 SK 0 0 2 2 3 0 2 5 5 1 50 1 14 47 80 0 2 3 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 125 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 102 255 0 0 0 0 0 0 70 0 0 0 0 0 60 50 0 0 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 17 24 70 93 15 0 0 27 0 0 0 0 0 0 172 249 256 1139 0 0 131 0 0 0 0 0 0 509 737 469 8090 0 0 297 0 0 0 0 0 0 Act 2 Cast A Act 2 Champ A Act 2 Unique A Act 2 (N) Cast A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Cast A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HorrorMage HorrorMage Skeleton 111 277 1 0 SK 0 0 2 2 3 0 2 5 5 1 50 1 17 50 83 0 2 4 1 1 1 1 1 0 0 0 1 0 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 125 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 102 255 0 0 0 0 0 0 70 0 0 0 0 0 60 50 0 0 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 20 29 85 123 17 0 0 32 0 0 0 0 0 0 183 265 272 1395 0 0 140 0 0 0 0 0 0 528 765 487 9636 0 0 308 0 0 0 0 0 0 Act 2 Cast B Act 2 Champ B Act 2 Unique B Act 2 (N) Cast B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Cast B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
RatManShaman RatManShaman Fetish raises Ratmen 112 278 1 0 FW 0 0 2 2 2 0 1 6 6 1 50 0 11 44 77 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 30 45 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 5 0 0 178 0 7 177 0 1 181 33 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 48 0 16 26 55 99 12 3 7 21 5 7 21 0 0 0 189 311 240 1291 9 25 123 17 25 123 0 0 0 574 946 451 9432 22 57 286 39 57 286 0 0 0 Act 1 Cast C Act 1 Champ C Act 1 Unique C Act 1 (N) Cast C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Cast C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FetishShaman FetishShaman Fetish raises Fetishes 112 279 1 0 FW 0 0 2 2 2 0 1 7 7 1 50 0 22 55 88 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 30 45 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 5 0 0 178 0 8 177 0 2 181 33 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 48 0 30 49 111 276 22 5 13 42 9 13 42 0 0 0 235 388 299 2718 12 31 154 21 31 154 0 0 0 656 1081 516 17905 25 65 327 45 65 327 0 0 0 Act 3 Cast A Act 3 Champ A Act 3 Unique A Act 3 (N) Cast A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) Cast A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FlayerShaman FlayerShaman Fetish raises Flayers 112 280 1 0 FW 0 0 2 2 2 0 1 8 8 1 50 0 23 56 89 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 30 45 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 5 0 0 178 0 9 177 0 3 181 33 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 48 0 31 51 116 303 23 5 13 43 9 13 43 0 0 0 240 395 305 2908 12 32 156 22 32 156 0 0 0 664 1093 522 18979 25 66 330 45 66 330 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SoulKillerShaman SoulKillerShaman Fetish raises Soul Killers 112 281 1 0 FW 0 0 2 2 2 0 1 9 9 1 50 0 24 57 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 30 45 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 5 0 0 178 0 10 177 0 4 181 33 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 48 0 32 53 121 334 24 5 13 45 9 13 45 0 0 0 244 402 310 3111 12 32 159 22 32 159 0 0 0 671 1105 528 20118 25 66 334 46 66 334 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
StygianDollShaman StygianDollShaman Fetish raises Stygian Dolls 112 282 1 0 FW 0 0 2 2 2 0 1 10 10 1 50 0 24 57 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 30 45 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 5 0 0 178 0 11 177 0 5 181 33 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 1 0 1 0 0 48 0 32 53 121 334 24 5 13 45 9 13 45 0 0 0 244 402 310 3111 12 32 159 22 32 159 0 0 0 671 1105 528 20118 25 66 334 46 66 334 0 0 0 Act 3 Cast B Act 3 Champ B Act 3 Unique B Act 3 (N) Cast B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Cast B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
larva larva 113 283 1 0 LV 1 1 0 0 0 0 1 1 1 1 50 0 99 70 90 0 4 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 48 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SandMaggotQueen SandMaggotQueen SandMaggotQueen 114 284 0 0 MQ 0 0 3 3 3 0 1 4 4 1 50 0 11 44 77 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 7 spawn cnt 12 pause 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 70 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 216 41 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 38 62 55 173 12 7 14 21 0 0 29 0 0 0 461 749 240 2263 25 53 123 0 0 166 0 0 0 1402 2281 451 16535 57 122 286 0 0 386 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
RockWormQueen RockWormQueen SandMaggotQueen 114 285 0 0 MQ 0 0 3 3 3 0 1 4 4 1 50 0 14 47 80 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 8 10 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 71 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 216 41 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 48 78 70 226 15 8 18 27 0 0 36 0 0 0 492 800 256 2773 27 57 131 0 0 178 0 0 0 1457 2369 469 19694 59 126 297 0 0 401 0 0 0 Act 2 H2H A Act 2 Champ A Act 2 Unique A Act 2 (N) H2H A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) H2H A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DevourerQueen DevourerQueen SandMaggotQueen 114 286 0 0 MQ 0 0 3 3 3 0 1 4 4 1 50 0 17 50 83 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 9 8 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 72 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 216 41 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 57 93 85 300 17 10 21 32 0 0 44 0 0 0 523 851 272 3397 28 60 140 0 0 189 0 0 0 1511 2458 487 23456 61 131 308 0 0 416 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
GiantLampreyQueen GiantLampreyQueen SandMaggotQueen 114 287 0 0 MQ 0 0 3 3 3 0 1 4 4 1 50 0 21 54 87 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 10 6 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 73 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 216 41 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 70 113 106 439 21 12 26 40 0 0 54 0 0 0 564 918 294 4453 30 65 151 0 0 204 0 0 0 1584 2576 510 29612 64 137 323 0 0 436 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
WorldKillerQueen WorldKillerQueen SandMaggotQueen 114 288 0 0 MQ 0 0 3 3 3 0 1 4 4 1 50 0 29 62 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 11 4 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 74 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 161 9 1 162 10 1 163 11 1 216 41 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 0 0 1 0 0 0 0 0 48 0 94 154 146 942 29 16 34 55 0 0 74 0 0 0 647 1053 338 7650 35 74 173 0 0 234 0 0 0 1638 2665 528 35269 66 142 334 0 0 451 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ClayGolem ClayGolem Golem 115 289 0 1 G1 0 0 2 2 3 0 2 7 11 1 50 0 4 4 4 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 85 0 0 0 0 1 1 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 100 100 20 0 21 2 5 40 4 7 40 0 0 0 175 175 22 0 2 6 66 5 10 66 0 0 0 275 275 23 0 3 7 92 6 11 92 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BloodGolem BloodGolem Golem 116 290 0 0 G2 0 0 2 2 3 0 2 8 11 1 50 0 18 18 18 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 0 0 0 0 1 1 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 50 0 0 0 0 0 50 0 0 0 0 0 0 0 0 1 0 0 96 0 201 201 90 0 31 6 16 60 12 24 60 0 0 0 388 388 98 0 9 23 104 17 35 104 0 0 0 637 637 106 0 10 27 148 20 41 148 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
IronGolem IronGolem Golem 117 291 0 0 G4 0 0 2 2 3 0 2 8 11 1 50 0 22 22 22 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 0 0 0 0 1 1 1 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 306 306 111 0 41 7 19 80 15 29 80 0 0 0 595 595 120 0 11 30 138 23 45 138 0 0 0 980 980 129 0 12 33 197 25 49 197 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FireGolem FireGolem Golem 118 292 0 0 G3 0 0 2 2 3 0 2 9 11 1 50 0 32 32 32 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 0 0 0 0 1 1 1 0 1 0 0 0 1 0 0 0 1 0 1 0 4 1 32 80 5 10 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 313 313 161 0 61 10 27 120 21 41 120 0 0 0 613 613 174 0 15 39 209 30 60 209 0 0 0 1013 1013 188 0 18 47 298 35 71 298 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Familiar Familiar 119 293 0 0 FI 0 0 2 2 2 0 2 12 6 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96 0 6 8 5 21 1 0 0 0 0 0 0 0 0 0 292 387 185 608 0 0 0 0 0 0 0 0 0 1000 1324 393 4877 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Act3Male NPC 120 294 1 0 N4 0 0 2 2 0 0 2 3 2 1 50 0 99 70 90 0 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 8 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
NightMarauder NightMarauder SpiritBaboon 121 295 1 0 BB 0 0 3 3 3 0 2 10 16 1 50 0 24 57 90 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 50 5 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 4 33 85 5 11 25 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 53 75 121 422 24 8 24 45 0 0 0 0 0 0 402 567 310 3931 19 56 159 0 0 0 0 0 0 1105 1559 528 25417 39 117 334 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Act3Female NPC 122 296 0 0 N3 0 0 2 2 0 0 2 3 2 1 50 0 99 70 90 0 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 5 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Natalya Natalya Natalya 123 297 0 0 TZ 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
FleshSpawner FleshSpawner Vile Mother 124 298 1 0 VM 0 0 3 3 3 0 2 7 7 1 50 0 24 57 90 1 1 2 0 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 7 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 167 39 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 1 0 0 1 0 0 96 0 114 147 90 622 24 13 29 45 0 0 0 0 0 0 861 1112 232 5800 32 69 159 0 0 0 0 0 0 2369 3059 394 37504 66 142 334 0 0 0 0 0 0 Act 4 Cast A Act 4 Champ A Act 4 Unique A Act 4 (N) Cast A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) Cast A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
StygianHag StygianHag Vile Mother 124 299 1 0 VM 0 0 3 3 3 0 2 7 7 1 50 0 27 60 90 1 1 3 0 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 7 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 167 39 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 25 0 0 0 0 0 50 0 50 0 0 0 100 0 2 0 0 1 0 1 0 0 1 0 0 96 0 128 165 101 828 27 15 32 51 0 0 0 0 0 0 906 1170 244 7106 34 72 167 0 0 0 0 0 0 2369 3059 394 37504 66 142 334 0 0 0 0 0 0 Act 4 Cast A Act 4 Champ A Act 4 Unique A Act 4 (N) Cast A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) Cast A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Grotesque Grotesque Vile Mother 124 300 1 0 VM 0 0 3 3 3 0 2 7 7 1 50 0 30 63 90 1 2 3 0 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 7 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 1 167 39 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 40 0 0 0 0 0 70 0 50 0 0 0 100 0 2 0 0 1 0 1 0 0 1 0 0 96 0 141 182 113 1102 29 17 36 56 0 0 0 0 0 0 951 1228 256 8705 35 76 176 0 0 0 0 0 0 2369 3059 394 37504 66 142 334 0 0 0 0 0 0 Act 4 Cast B Act 4 Champ B Act 4 Unique B Act 4 (N) Cast B Act 4 (N) Champ B Act 4 (N) Unique B Act 4 (H) Cast B Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
FleshBeast FleshBeast Vile Dog 125 301 1 0 VC 0 0 2 2 1 0 1 8 10 1 50 0 24 57 90 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 1 0 0 0 0 48 0 28 42 121 330 38 7 12 74 0 0 0 0 0 0 208 316 310 3073 17 28 258 0 0 0 0 0 0 572 868 528 19870 34 57 542 0 0 0 0 0 0 Act 4 Cast A Act 4 Champ A Act 4 Unique A Act 4 (N) Cast A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) Cast A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
StygianDog StygianDog Vile Dog 125 302 1 0 VC 0 0 2 2 1 0 1 9 11 1 50 0 27 60 90 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 25 0 0 0 0 0 50 0 50 0 0 0 100 0 2 0 0 1 0 0 1 0 0 0 0 48 0 31 47 136 439 43 8 13 83 0 0 0 0 0 0 219 332 327 3765 17 29 272 0 0 0 0 0 0 572 868 528 19870 34 57 542 0 0 0 0 0 0 Act 4 Cast A Act 4 Champ A Act 4 Unique A Act 4 (N) Cast A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) Cast A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
GrotesqueWyrm GrotesqueWyrm Vile Dog 125 303 1 0 VC 0 0 2 2 1 0 1 10 12 1 50 0 30 63 90 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 40 0 0 0 0 0 70 0 50 0 0 0 100 0 2 0 0 1 0 0 1 0 0 0 0 48 0 34 52 151 584 47 9 14 92 0 0 0 0 0 0 230 349 343 4612 18 30 285 0 0 0 0 0 0 572 868 528 19870 34 57 542 0 0 0 0 0 0 Act 4 Cast A Act 4 Champ A Act 4 Unique A Act 4 (N) Cast A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) Cast A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0
Groper Groper Finger Mage homing missiles 126 304 1 0 FR 0 0 3 3 3 0 3 10 16 1 50 0 24 57 90 0 1 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 40 att pct 40 spider pct 50 heal target 30 hprun pct 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 7 0 0 196 0 3 0 0 0 0 0 0 0 0 0 0 0 0 255 90 0 0 0 40 40 0 0 0 0 50 50 0 0 50 0 0 100 0 0 2 1 0 0 0 1 0 1 1 0 0 96 0 76 105 121 482 24 8 19 45 0 0 0 0 0 0 574 789 310 4494 19 44 159 0 0 0 0 0 0 1579 2171 528 29060 39 92 334 0 0 0 0 0 0 Act 4 Wraith A Act 4 Champ A Act 4 Unique A Act 4 (N) Wraith A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) Wraith A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Strangler Strangler Finger Mage homing missiles 126 305 1 0 FR 0 0 3 3 3 0 3 10 16 1 50 0 27 60 90 0 1 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 60 60 60 40 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 7 0 0 196 0 4 0 0 0 0 0 0 0 0 0 0 0 0 255 228 132 0 0 50 50 0 0 0 0 60 60 0 0 50 0 0 100 0 0 2 1 0 0 0 1 0 1 1 0 0 96 0 85 117 136 641 27 9 21 51 0 0 0 0 0 0 604 831 327 5506 20 47 167 0 0 0 0 0 0 1579 2171 528 29060 39 92 334 0 0 0 0 0 0 Act 4 Wraith B Act 4 Champ B Act 4 Unique B Act 4 (N) Wraith B Act 4 (N) Champ B Act 4 (N) Unique B Act 4 (H) Wraith B Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
StormCaster StormCaster Finger Mage homing missiles 126 306 1 0 FR 0 0 3 3 3 0 3 10 16 1 50 0 30 63 90 0 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 80 80 70 50 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 7 0 0 196 0 5 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 60 60 0 0 0 0 75 75 0 0 50 0 0 100 0 0 2 1 0 0 0 1 0 1 1 0 0 96 0 94 129 151 854 29 10 23 56 0 0 0 0 0 0 634 872 343 6745 21 49 176 0 0 0 0 0 0 1579 2171 528 29060 39 92 334 0 0 0 0 0 0 Act 4 Wraith B Act 4 Champ B Act 4 Unique B Act 4 (N) Wraith B Act 4 (N) Champ B Act 4 (N) Unique B Act 4 (H) Wraith B Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Corpulent Corpulent Regurgitator eats and spits corpses 127 307 1 0 CS 0 0 3 3 3 0 2 6 12 1 50 0 24 57 90 1 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 70 att pct 50 spit pct 40 approach 0 3 pct corpse 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 341 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 214 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 1 0 1 0 0 0 0 0 96 0 105 142 121 604 24 13 22 45 12 23 45 0 0 0 789 1069 310 5634 32 53 159 28 54 159 0 0 0 2171 2941 528 36428 66 110 334 57 112 334 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
CorpseSpitter CorpseSpitter Regurgitator eats and spits corpses 127 308 1 0 CS 0 0 3 3 3 0 2 7 12 1 50 0 27 60 90 1 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 60 50 0 6 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 341 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 214 0 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 1 0 1 0 0 0 0 0 96 0 117 158 136 804 27 15 25 51 13 25 51 0 0 0 831 1125 327 6902 34 56 167 29 57 167 0 0 0 2171 2941 528 36428 66 110 334 57 112 334 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
MawFiend MawFiend Regurgitator eats and spits corpses 127 309 1 0 CS 0 0 3 3 3 0 2 8 12 1 50 0 30 63 90 1 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 70 60 0 9 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 341 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 214 0 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 1 0 1 0 0 0 0 0 96 0 129 175 151 1070 29 17 28 56 14 28 56 0 0 0 872 1181 343 8455 35 59 176 30 60 176 0 0 0 2171 2941 528 36428 66 110 334 57 112 334 0 0 0 Act 4 H2H B Act 4 Champ B Act 4 Unique B Act 4 (N) H2H B Act 4 (N) Champ B Act 4 (N) Unique B Act 4 (H) H2H B Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
DoomKnight DoomKnight Undead Horror Fighter 128 310 1 0 UM 0 0 2 2 3 0 2 6 7 1 50 0 24 57 90 2 2 3 1 1 0 1 1 0 1 0 1 1 0 0 0 0 0 0 7 0 fgt 0 0 0 0 0 1 1 1 1 1 0 1 0 0 0 1 0 1 1 1 0 4 10 0 60 5 10 50 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 80 20 20 40 0 0 100 20 20 40 50 0 100 20 20 50 2 1 0 0 1 0 0 0 1 0 0 144 0 65 86 153 486 24 11 24 45 8 19 45 0 0 0 488 646 394 4533 25 56 159 19 44 159 0 0 0 1342 1776 669 29308 53 117 334 39 92 334 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
AbyssKnight AbyssKnight Undead Horror Fighter Mage 129 311 1 0 UM 0 0 2 2 3 0 2 7 7 1 50 0 27 60 90 2 1 3 1 1 0 1 1 0 1 0 1 1 1 0 0 0 0 0 8 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 1 0 1 1 1 0 4 10 0 40 5 10 50 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 4 0 1 183 0 1 210 0 5 211 0 2 0 0 0 0 0 0 255 255 255 0 0 40 80 40 40 0 0 40 80 40 40 50 0 40 100 40 50 2 1 0 0 1 0 0 0 1 0 0 144 0 72 96 172 647 27 12 26 51 9 21 51 0 0 0 513 680 414 5553 27 59 167 20 47 167 0 0 0 1342 1776 669 29308 53 117 334 39 92 334 0 0 0 Act 4 H2H B Act 4 Champ B Act 4 Unique B Act 4 (N) H2H B Act 4 (N) Champ B Act 4 (N) Unique B Act 4 (H) H2H B Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
OblivionKnight OblivionKnight Undead Horror Mage 130 312 1 0 UM 0 0 2 2 3 0 2 8 7 1 50 0 30 63 90 2 1 2 1 1 0 1 1 0 0 0 1 1 1 1 0 0 0 0 8 0 mgk 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 4 0 1 183 0 1 210 0 6 211 0 2 212 0 2 182 40 2 255 255 255 0 0 60 60 60 60 0 0 60 60 80 60 50 0 60 60 100 75 2 1 0 0 1 0 0 0 1 0 0 144 0 80 106 191 861 29 13 29 56 10 23 56 0 0 0 539 713 435 6802 28 62 176 21 49 176 0 0 0 1342 1776 669 29308 53 117 334 39 92 334 0 0 0 Act 4 H2H B Act 4 Champ B Act 4 Unique B Act 4 (N) H2H B Act 4 (N) Champ B Act 4 (N) Unique B Act 4 (H) H2H B Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
QuillBear QuillBear SpikeGiant 131 313 1 1 S7 0 0 3 3 3 0 1 4 4 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 60 att freq 50 chase freq 16 delay 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 11 18 5 47 3 1 3 3 0 0 0 0 0 0 538 860 185 1342 11 34 95 0 0 0 0 0 0 1838 2941 393 10772 29 87 249 0 0 0 0 0 0 Act 1 H2H A Act 1 Champ A Act 1 Unique A Act 1 (N) H2H A Act 1 (N) Champ A Act 1 (N) Unique A Act 1 (H) H2H A Act 1 (H) Champ A Act 1 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
SpikeGiant SpikeGiant SpikeGiant 131 314 1 1 S7 0 0 3 3 3 0 1 4 4 1 50 0 5 38 71 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 70 att freq 60 chase freq 14 delay 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 30 48 25 109 6 2 6 10 0 0 0 0 0 0 600 960 207 1760 13 38 106 0 0 0 0 0 0 1948 3116 416 13600 31 92 264 0 0 0 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0
ThornBrute ThornBrute SpikeGiant 131 315 1 1 S7 0 0 3 3 3 0 1 5 5 1 50 0 8 41 74 0 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 80 att freq 70 chase freq 12 delay 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 44 70 40 155 9 3 9 16 0 0 0 0 0 0 647 1035 223 2156 14 41 115 0 0 0 0 0 0 2030 3248 434 16197 32 96 275 0 0 0 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) H2H B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) H2H B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
RazorBeast RazorBeast SpikeGiant 131 316 1 1 S7 0 0 3 3 3 0 1 5 5 1 50 0 9 42 75 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 90 att freq 80 chase freq 8 delay 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 48 78 45 171 10 3 10 18 0 0 0 0 0 0 663 1060 229 2307 14 42 117 0 0 0 0 0 0 2057 3291 440 17169 33 98 278 0 0 0 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
GiantUrchin GiantUrchin SpikeGiant 131 317 1 0 S7 0 0 3 3 3 0 1 6 6 1 50 0 19 52 85 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 hth 95 att freq 90 chase freq 4 delay 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 95 153 95 424 19 6 19 36 0 0 0 0 0 0 819 1310 283 4537 17 52 145 0 0 0 0 0 0 2330 3729 498 30747 37 110 315 0 0 0 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Snake 132 318 0 0 CO 1 1 0 0 0 0 1 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Parrot 133 319 0 0 PR 1 1 0 0 0 0 1 5 5 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 1 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Fish 134 320 1 0 FJ 1 1 0 0 0 0 1 5 5 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Evil Hole Evil Hole 135 321 0 0 EH 0 0 3 3 3 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 50 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 1 0 0 0 0 0 128 0 4 20 5 32 1 0 0 0 0 0 0 0 0 0 215 968 185 924 0 0 0 0 0 0 0 0 0 735 3309 393 7413 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Evil Hole Evil Hole 135 322 0 0 EH 0 0 3 3 3 0 3 0 0 1 50 0 4 37 70 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 50 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 167 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 1 0 0 0 0 0 128 0 10 45 20 64 1 0 0 0 0 0 0 0 0 0 234 1052 201 1132 0 0 0 0 0 0 0 0 0 768 3457 410 8829 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Evil Hole Evil Hole 135 323 0 0 EH 0 0 3 3 3 0 3 0 0 1 50 0 7 40 73 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 50 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 167 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 1 0 0 0 0 0 128 0 16 70 35 96 1 0 0 0 0 0 0 0 0 0 253 1136 218 1386 0 0 0 0 0 0 0 0 0 801 3604 428 10515 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Evil Hole Evil Hole 135 324 0 0 EH 0 0 3 3 3 0 3 0 0 1 50 0 9 42 75 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 50 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 167 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 1 0 0 0 0 0 128 0 19 87 45 118 1 0 0 0 0 0 0 0 0 0 265 1193 229 1587 0 0 0 0 0 0 0 0 0 823 3703 440 11815 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Evil Hole Evil Hole 135 325 0 0 EH 0 0 3 3 3 0 3 0 0 1 50 0 22 55 88 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 50 0 0 0 1 1 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 167 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 1 0 0 0 0 0 128 0 44 197 111 388 1 0 0 0 0 0 0 0 0 0 346 1558 299 3825 0 0 0 0 0 0 0 0 0 965 4343 516 25200 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
a trap trapfirebolt trap 136 326 0 1 9A 0 0 0 0 1 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 50 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 58 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 167 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 0 0 0 0 0 0 128 0 4 20 5 151 46 1 3 90 0 0 0 1 2 6 215 968 185 4349 11 34 3090 0 0 0 11 25 206 735 3309 393 34896 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 0 0 0 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
a trap trap trap 137 327 0 1 9A 0 0 0 0 3 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 50 0 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 241 65535 245 243 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 200 0 1 207 0 1 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 0 0 0 0 0 0 128 0 4 20 5 151 46 1 3 90 0 0 0 1 2 6 215 968 185 4349 11 34 3090 0 0 0 11 25 206 735 3309 393 34896 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
a trap trap trap 138 328 0 1 9A 0 0 0 0 3 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 50 0 0 0 1 1 0 0 1 1 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 242 65535 246 244 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 200 0 1 208 0 1 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 0 0 0 0 0 0 128 0 4 20 5 151 46 1 3 90 0 0 0 1 2 6 215 968 185 4349 11 34 3090 0 0 0 11 25 206 735 3309 393 34896 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
a trap trappoison trap 139 329 0 1 9A 0 0 0 0 1 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 50 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 39 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 192 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 0 0 0 0 0 0 128 0 4 20 5 151 46 1 3 90 0 0 0 1 2 6 215 968 185 4349 11 34 3090 0 0 0 11 25 206 735 3309 393 34896 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 0 0 0 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
a trap trapchainlightning trap 140 330 0 1 9A 0 0 0 0 1 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 50 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 93 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 167 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 70 70 90 90 90 90 90 100 90 90 90 90 90 100 2 0 0 0 0 0 0 0 0 0 0 128 0 4 20 5 151 46 1 3 90 0 0 0 1 2 6 215 968 185 4349 11 34 3090 0 0 0 11 25 206 735 3309 393 34896 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 0 0 0 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
Kaelan JarJar NPC 141 331 1 0 GU 0 0 2 2 0 0 2 6 6 1 50 0 99 70 90 0 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 9 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 0 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
Dummy InvisoSpawner Spawner 142 332 1 0 K9 0 0 2 2 1 0 1 0 0 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 666 666 497 0 1 0 0 0 0 0 0 0 0 0 1558 1558 381 0 0 0 0 0 0 0 0 0 0 3494 3494 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
unused DiabloClone Boss 143 333 0 0 xx 0 0 2 2 3 0 3 4 4 1 50 0 29 62 90 0 1 1 0 1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 5 0 hth 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 2 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 1 112 0 77 102 146 0 1 0 0 0 0 0 0 0 0 0 530 702 338 0 0 0 0 0 0 0 0 0 0 1342 1776 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SuckerNest SuckerNest SuckerNest 144 334 0 0 DH 0 0 3 3 3 0 3 0 0 1 50 0 6 39 72 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 200 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 167 35 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 128 0 31 122 30 156 1 0 0 0 0 0 0 0 0 0 552 2192 212 2364 0 0 0 0 0 0 0 0 0 1770 7031 422 18099 0 0 0 0 0 0 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
FeederNest FeederNest SuckerNest 144 335 0 0 DH 0 0 3 3 3 0 3 0 0 1 50 0 9 42 75 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 200 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 167 35 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 128 0 43 172 45 215 1 0 0 0 0 0 0 0 0 0 594 2359 229 2896 0 0 0 0 0 0 0 0 0 1843 7323 440 21556 0 0 0 0 0 0 0 0 0 Act 1 H2H B Act 1 Champ B Act 1 Unique B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
BloodHookNest BloodHookNest SuckerNest 144 336 0 0 DH 0 0 3 3 3 0 3 0 0 1 50 0 17 50 83 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 200 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 167 35 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 128 0 77 306 85 440 1 0 0 0 0 0 0 0 0 0 706 2804 272 4976 0 0 0 0 0 0 0 0 0 2039 8102 487 34358 0 0 0 0 0 0 0 0 0 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
BloodWingNest BloodWingNest SuckerNest 144 337 0 0 DH 0 0 3 3 3 0 3 0 0 1 50 0 25 58 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 200 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 167 35 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 1 0 128 0 111 439 126 942 1 0 0 0 0 0 0 0 0 0 818 3249 316 8549 0 0 0 0 0 0 0 0 0 2211 8783 528 51661 0 0 0 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Guard Guard NPC 145 338 0 0 GU 0 0 2 2 3 0 2 7 11 1 50 0 1 34 67 2 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 9 0 hth 1 melee 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 1 0 1 0 0 1 0 1 5 1 1 10 30 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 0 0 1 0 26 1 1 49 0 0 0 0 0 0 4 4 41 0 17 17 1674 0 0 0 0 0 0 15 15 88 0 43 43 4371 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy MiniSpider NPC 146 339 0 0 LS 1 1 0 0 0 0 1 1 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrisonFL spell 147 340 0 0 67 0 0 1 1 3 0 0 0 0 1 0 0 12 45 78 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 2 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 50 100 60 0 1 0 0 0 0 0 0 0 0 0 568 1135 245 0 0 0 0 0 0 0 0 0 0 1711 3423 457 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrisonFR spell 148 341 0 0 66 0 0 1 1 3 0 0 0 0 1 0 0 12 45 78 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 2 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 50 100 60 0 1 0 0 0 0 0 0 0 0 0 568 1135 245 0 0 0 0 0 0 0 0 0 0 1711 3423 457 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrisonBL spell 149 342 0 0 69 0 0 1 1 3 0 0 0 0 1 0 0 12 45 78 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 2 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 50 100 60 0 1 0 0 0 0 0 0 0 0 0 568 1135 245 0 0 0 0 0 0 0 0 0 0 1711 3423 457 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrisonBR spell 150 343 0 0 68 0 0 1 1 3 0 0 0 0 1 0 0 12 45 78 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 2 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 50 100 60 0 1 0 0 0 0 0 0 0 0 0 568 1135 245 0 0 0 0 0 0 0 0 0 0 1711 3423 457 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Bonewall spell 151 344 0 1 BW 0 0 2 2 3 0 0 0 0 1 0 0 7 40 73 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 2 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 19 19 35 0 1 0 0 0 0 0 0 0 0 0 147 147 174 0 0 0 0 0 0 0 0 0 0 431 431 334 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Council Member Zakarum High1 High Priest 152 345 1 0 HP 0 0 2 2 3 0 2 6 12 1 50 0 25 58 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 65 attack pct 4 aid pct 30 spell pct 20 hprun pct 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 343 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 62 0 2 179 0 2 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 0 0 0 1 0 0 0 0 1 0 0 96 0 99 198 126 696 25 8 19 47 0 0 0 0 0 0 730 1460 316 6316 19 45 162 0 0 0 0 0 0 1974 3948 528 38166 39 92 334 0 0 0 0 0 0 Council Council Council Council (N) Council Council Council (H) Council Council 75 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Council Member Zakarum High2 High Priest 152 346 1 0 HP 0 0 2 2 3 0 2 8 12 1 50 0 25 58 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 70 8 35 30 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 343 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 62 0 3 179 0 3 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 0 0 0 1 0 0 0 0 1 0 0 96 0 99 198 126 696 25 8 19 47 0 0 0 0 0 0 730 1460 316 6316 19 45 162 0 0 0 0 0 0 1974 3948 528 38166 39 92 334 0 0 0 0 0 0 Council Council Council Council (N) Council Council Council (H) Council Council 75 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Council Member Zakarum High3 High Priest 152 347 1 0 HP 0 0 2 2 3 0 2 10 12 1 50 0 25 58 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 75 12 40 40 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 343 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 62 0 4 179 0 4 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 0 0 0 1 0 0 0 0 1 0 0 96 0 99 198 126 696 25 8 19 47 0 0 0 0 0 0 730 1460 316 6316 19 45 162 0 0 0 0 0 0 1974 3948 528 38166 39 92 334 0 0 0 0 0 0 Council Council Council Council (N) Council Council Council (H) Council Council 75 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Turret Turret1 Turret 153 348 0 0 PB 0 0 2 2 3 0 2 0 0 1 50 0 10 43 76 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 64 85 23 113 1 0 0 0 0 0 0 0 0 0 814 1085 105 1490 0 0 0 0 0 0 0 0 0 2501 3335 200 10986 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Turret Turret2 Turret 153 349 0 0 PB 0 0 2 2 3 0 2 0 0 1 50 0 10 43 76 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 64 85 23 113 1 0 0 0 0 0 0 0 0 0 814 1085 105 1490 0 0 0 0 0 0 0 0 0 2501 3335 200 10986 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Turret Turret3 Turret 153 350 0 0 PB 0 0 2 2 3 0 2 0 0 1 50 0 10 43 76 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 64 85 23 113 1 0 0 0 0 0 0 0 0 0 814 1085 105 1490 0 0 0 0 0 0 0 0 0 2501 3335 200 10986 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Hydra Hydra1 Hydra1 154 351 0 0 HX 0 0 0 0 3 0 1 0 0 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 4 0 0 202 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 138 0 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 376 753 497 0 1 0 0 0 0 0 0 0 0 0 880 1760 381 0 0 0 0 0 0 0 0 0 0 1974 3948 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Hydra Hydra2 Hydra2 155 352 0 0 21 0 0 0 0 3 0 1 0 0 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 4 0 0 202 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 138 0 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 376 753 497 0 1 0 0 0 0 0 0 0 0 0 880 1760 381 0 0 0 0 0 0 0 0 0 0 1974 3948 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Hydra Hydra3 Hydra3 156 353 0 0 HZ 0 0 0 0 3 0 1 0 0 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 4 0 0 202 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 138 0 0 0 0 0 70 70 0 0 0 0 90 100 50 0 0 0 90 100 2 0 0 0 0 0 0 0 0 0 0 96 0 376 753 497 0 1 0 0 0 0 0 0 0 0 0 880 1760 381 0 0 0 0 0 0 0 0 0 0 1974 3948 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
a trap pillar trap 157 354 1 0 M4 0 0 2 2 2 0 3 0 0 1 50 0 99 70 90 2 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 50 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 2 0 0 0 0 0 0 0 0 0 0 128 0 564 753 223 0 1 0 0 0 0 0 0 0 0 0 1320 1760 171 0 0 0 0 0 0 0 0 0 0 2961 3948 236 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy seven tombs guardian 158 355 0 0 9A 0 0 0 0 2 0 2 0 0 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 267 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 167 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 2 0 0 0 0 0 0 0 0 0 0 128 0 2506 2506 735 0 126 90 180 249 180 270 249 0 0 0 5861 5861 563 0 68 135 264 135 203 264 0 0 0 13145 13145 780 0 114 229 451 229 343 451 0 0 0 0 1 xxx xxx 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dopplezon Dopplezon Dopplezon 159 356 0 0 VK 0 0 2 2 3 0 2 9 9 0 50 0 28 28 28 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 85 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96 0 275 330 141 1520 28 9 24 53 18 37 53 0 0 0 538 645 152 0 13 35 92 26 53 92 0 0 0 888 1065 164 0 16 41 130 31 62 130 0 0 0 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Valkyrie Valkyrie Valkyrie 160 357 0 0 VK 0 0 2 2 3 0 2 9 9 0 50 0 28 28 28 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 85 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96 0 275 330 141 1520 28 9 24 53 18 37 53 0 0 0 538 645 152 0 13 35 92 26 53 92 0 0 0 888 1065 164 0 16 41 130 31 62 130 0 0 0 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Act2Hireling NPC 161 358 0 0 SK 0 0 2 2 3 0 2 8 8 1 50 0 12 45 78 0 1 1 1 1 1 1 1 0 1 0 1 1 0 0 0 0 0 0 8 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 120 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 0 1 0 1 1 10 30 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 70 50 0 0 0 0 70 0 0 0 0 0 0 0 0 1 0 0 96 0 150 200 60 0 17 8 10 31 0 0 0 0 0 0 1703 2270 245 0 26 35 170 0 0 0 0 0 0 5134 6845 457 0 60 80 391 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Iron Wolf Iron Wolf NPC 162 359 0 0 IW 0 0 2 2 3 0 2 7 11 1 50 0 1 34 67 0 1 1 1 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 4 0 1hs 0 not melee 0 0 0 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 1 5 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 0 0 1 0 26 1 1 49 0 0 0 0 0 0 4 4 41 0 17 17 1674 0 0 0 0 0 0 15 15 88 0 43 43 4371 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Balrog Balrog Megademon 163 360 1 0 DM 0 0 3 3 3 0 3 10 16 1 50 0 24 57 90 2 1 2 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 hth 80 50 0 0 20 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 60 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 178 0 2 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 70 0 0 0 0 0 80 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 95 114 144 563 32 8 15 61 12 16 45 0 0 0 718 861 371 5250 20 35 215 29 38 159 0 0 0 1974 2369 630 33944 41 73 451 59 78 334 0 0 0 Act 4 H2H A Act 4 Champ A Act 4 Unique A Act 4 (N) H2H A Act 4 (N) Champ A Act 4 (N) Unique A Act 4 (H) H2H A Act 4 (H) Champ A Act 4 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PitLord PitLord Megademon 163 361 1 0 DM 0 0 3 3 3 0 3 10 16 1 50 0 27 60 90 2 1 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 hth 80 50 0 0 15 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 60 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 178 0 3 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 70 0 0 0 0 0 80 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 106 128 162 749 36 9 17 69 13 18 51 0 0 0 755 906 390 6431 21 37 226 30 40 167 0 0 0 1974 2369 630 33944 41 73 451 59 78 334 0 0 0 Act 4 H2H B Act 4 Champ B Act 4 Unique B Act 4 (N) H2H B Act 4 (N) Champ B Act 4 (N) Unique B Act 4 (H) H2H B Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
VenomLord VenomLord Megademon 163 362 1 0 DM 0 0 3 3 3 0 3 10 16 1 50 0 30 63 90 2 2 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 hth 80 50 0 0 10 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 60 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 178 0 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 70 0 0 70 0 0 80 0 0 100 50 0 100 0 0 0 2 0 0 1 0 0 0 0 1 0 0 96 0 118 141 180 997 39 10 18 76 15 20 56 0 0 0 793 951 410 7878 22 39 238 32 41 176 0 0 0 1974 2369 630 33944 41 73 451 59 78 334 0 0 0 Act 4 H2H B Act 4 Champ B Act 4 Unique B Act 4 (N) H2H B Act 4 (N) Champ B Act 4 (N) Unique B Act 4 (H) H2H B Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
NecroSkeleton NecroSkeleton Skeleton 164 363 0 1 SK 0 0 2 2 3 0 2 3 3 0 50 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 0 0 0 0 0 0 9 0 1hs 60 75 15 50 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 100 0 0 0 0 0 100 0 1 0 0 0 0 0 0 1 0 0 80 0 21 21 5 0 3 1 2 3 1 2 3 0 0 0 30 30 5 0 1 2 4 1 2 4 0 0 0 42 42 6 0 1 2 6 1 2 6 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
NecroMage NecroMage Skeleton Mage 165 364 0 1 SK 0 0 2 2 3 0 2 6 9 0 50 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 80 75 15 50 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 5 0 1 202 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 100 0 0 0 0 0 100 0 1 0 0 0 0 0 0 1 0 0 80 0 61 61 24 0 3 1 2 3 1 2 3 0 0 0 88 88 26 0 1 2 4 1 2 4 0 0 0 123 123 28 0 1 2 6 1 2 6 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Griswold Griswold Zombie 166 365 0 1 GZ 0 0 2 2 3 0 3 3 4 1 50 0 5 38 71 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 50 0 0 0 0 0 50 50 0 0 0 0 100 2 1 0 0 0 0 0 0 1 0 0 72 0 79 79 25 191 6 2 6 10 4 9 10 0 0 0 1598 1598 207 3087 13 34 106 26 51 106 0 0 0 5189 5189 416 23861 31 82 264 62 123 264 0 0 0 Griswold Griswold Griswold Griswold (N) Griswold Griswold Griswold (H) Griswold Griswold 0 1 xxx xxx 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
compellingorb compellingorb thingamabob 167 366 0 0 9a 0 0 0 0 1 0 2 0 0 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 100 50 0 0 0 0 100 2 0 0 0 0 0 0 0 0 0 0 96 0 301 602 497 0 1 0 0 0 0 0 0 0 0 0 704 1408 381 0 0 0 0 0 0 0 0 0 0 1579 3158 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
tyrael tyrael NPC 168 367 0 0 TY 0 0 2 2 4 0 4 0 0 1 50 0 99 70 90 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 144 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 1 -100 -20 60 100 0 0 0 0 0 1
youngdiablo youngdiablo special 169 368 0 0 1Z 0 0 3 3 1 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
a trap nova trap 170 369 0 0 9A 0 0 0 0 1 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 50 0 0 0 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 58 65535 90 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 48 24 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 90 90 90 90 90 90 90 90 100 90 90 90 90 90 2 0 0 0 0 0 0 0 0 0 0 128 0 4 20 5 42 3 1 3 3 0 0 0 1 2 6 215 968 185 1207 11 34 95 0 0 0 11 25 206 735 3309 393 9688 29 87 249 0 0 0 29 63 538 0 1 xxx xxx 0 0 0 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
Dummy SpiritMummy SpiritMummy 171 370 1 0 xx 0 0 3 3 3 0 2 10 16 1 50 0 24 57 90 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 80 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 53 96 121 483 24 13 29 45 0 0 0 0 0 0 402 725 310 4507 32 69 159 0 0 0 0 0 0 1105 1993 528 29142 66 142 334 0 0 0 0 0 0 Act 2 H2H C Act 2 Champ C Act 2 Unique C Act 2 (N) H2H C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) H2H C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
LightningSpire LightningSpire turret 172 371 1 0 AE 0 0 1 1 4 0 3 0 0 0 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 50 shoot freq 0 0 0 32 delay 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 279 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 204 27 1 49 27 6 0 0 0 0 0 0 0 0 0 255 255 255 0 90 90 90 70 70 0 90 90 100 0 90 50 90 90 100 0 90 0 0 0 0 0 0 0 0 0 0 0 128 0 50 101 2 283 46 1 3 90 0 0 0 1 2 6 2473 4945 83 8165 11 34 3090 0 0 0 11 25 206 8456 16912 176 65522 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FireTower FireTower turret 173 372 1 0 PB 0 0 3 3 3 0 3 0 0 0 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 50 shoot freq 0 0 0 32 delay 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 203 26 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 0 0 70 90 90 90 0 0 90 90 90 90 0 0 90 0 0 0 0 0 0 0 0 0 0 0 128 0 50 101 2 283 46 1 3 90 0 0 0 1 2 6 2473 4945 83 8165 11 34 3090 0 0 0 11 25 206 8456 16912 176 65522 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Slinger Slinger PantherWoman 174 373 1 0 PW 0 0 2 2 3 0 2 5 10 1 50 0 14 47 80 0 1 3 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 1ht 70 approach prob 70 attack prob 12 friend seek 10 flee freq 15 delay 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 226 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 1 0 0 96 0 16 26 48 113 15 5 12 27 0 0 0 3 5 52 166 267 176 1386 16 37 131 0 0 0 8 17 256 491 790 322 9847 35 82 297 0 0 0 18 39 578 Act 2 Miss A Act 2 Champ A Act 2 Unique A Act 2 (N) Miss A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Miss A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
SpearCat SpearCat PantherWoman 174 374 1 0 PW 0 0 2 2 3 0 2 5 10 1 50 0 15 48 81 0 2 3 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 1ht 70 75 11 15 14 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 227 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 1 0 0 96 0 17 28 52 124 16 5 12 29 0 0 0 3 6 56 169 272 179 1483 16 38 134 0 0 0 8 18 261 498 800 326 10438 35 83 301 0 0 0 19 39 585 Act 2 Miss A Act 2 Champ A Act 2 Unique A Act 2 (N) Miss A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Miss A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
NightSlinger NightSlinger PantherWoman 174 375 1 0 PW 0 0 2 2 3 0 2 5 10 1 50 0 17 50 83 0 2 4 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 1ht 70 80 10 20 13 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 228 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 19 31 59 150 17 6 14 32 0 0 0 3 6 63 176 284 187 1698 17 39 140 0 0 0 9 19 272 510 819 334 11728 36 85 308 0 0 0 19 40 599 Act 2 Miss B Act 2 Champ B Act 2 Unique B Act 2 (N) Miss B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Miss B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
HellSlinger HellSlinger PantherWoman 174 376 1 0 PW 0 0 2 2 3 0 2 5 10 1 50 0 19 52 85 0 3 4 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 1ht 70 85 9 25 12 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 229 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 21 34 66 182 19 6 15 36 0 0 0 3 7 70 183 295 194 1945 17 41 145 0 0 0 9 19 283 522 839 342 13177 37 87 315 0 0 0 19 41 614 Act 2 Miss C Act 2 Champ C Act 2 Unique C Act 2 (N) Miss C Act 2 (N) Champ C Act 2 (N) Unique C Act 2 (H) Miss C Act 2 (H) Champ C Act 2 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Boba Fett NPC 175 377 0 0 GU 0 0 2 2 0 0 2 6 6 1 50 0 99 70 90 0 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 9 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
Dummy Darth Maul NPC 176 378 0 0 GU 0 0 2 2 0 0 2 6 6 1 50 0 99 70 90 0 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 0 0 0 9 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
ReturnedMage ReturnedMage Skeleton 177 379 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 8 41 74 0 1 2 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 20 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 126 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 60 255 0 0 0 0 30 50 0 0 0 0 50 60 50 0 0 0 100 75 2 1 0 0 0 0 0 0 1 0 0 80 0 10 15 40 55 9 0 0 16 0 0 0 0 0 0 150 217 223 759 0 0 115 0 0 0 0 0 0 471 682 434 5703 0 0 275 0 0 0 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BoneMage BoneMage Skeleton 177 380 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 10 43 76 0 1 3 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 20 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 126 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 60 255 0 0 0 0 30 50 0 0 0 0 50 60 50 0 0 0 100 75 2 1 0 0 0 0 0 0 1 0 0 80 0 12 18 50 66 11 0 0 19 0 0 0 0 0 0 157 228 234 869 0 0 120 0 0 0 0 0 0 484 700 446 6408 0 0 282 0 0 0 0 0 0 Act 1 Cast C Act 1 Champ B Act 1 Unique B Act 1 (N) Cast C Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast C Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BaalColdMage BaalColdMage Skeleton 177 381 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 14 47 80 0 2 3 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 20 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 126 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 60 255 0 0 50 0 30 50 0 0 50 0 50 60 50 0 75 0 100 75 2 1 0 0 0 0 0 0 1 0 0 80 0 17 24 70 93 15 0 0 27 0 0 0 0 0 0 172 249 256 1139 0 0 131 0 0 0 0 0 0 509 737 469 8090 0 0 297 0 0 0 0 0 0 Act 5 Cast A Act 5 Champ A Act 5 Unique A Act 5 (N) Cast A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 (H) Cast A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HorrorMage HorrorMage Skeleton 177 382 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 17 50 83 0 2 4 1 1 1 1 1 0 0 0 1 0 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 126 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 0 60 255 0 0 0 0 30 50 0 0 0 0 50 60 50 0 0 0 100 75 2 1 0 0 0 0 0 0 1 0 0 80 0 20 29 85 123 17 0 0 32 0 0 0 0 0 0 183 265 272 1395 0 0 140 0 0 0 0 0 0 528 765 487 9636 0 0 308 0 0 0 0 0 0 Act 2 Cast B Act 2 Champ B Act 2 Unique B Act 2 (N) Cast B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Cast B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ReturnedMage ReturnedMage Skeleton 178 383 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 8 41 74 0 1 2 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 127 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 138 0 0 0 30 0 0 50 0 0 50 0 0 60 50 0 100 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 10 15 40 55 9 0 0 16 0 0 0 0 0 0 150 217 223 759 0 0 115 0 0 0 0 0 0 471 682 434 5703 0 0 275 0 0 0 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BoneMage BoneMage Skeleton 178 384 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 10 43 76 0 1 3 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 127 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 138 0 0 0 30 0 0 50 0 0 50 0 0 60 50 0 100 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 12 18 50 66 11 0 0 19 0 0 0 0 0 0 157 228 234 869 0 0 120 0 0 0 0 0 0 484 700 446 6408 0 0 282 0 0 0 0 0 0 Act 1 Cast C Act 1 Champ C Act 1 Unique C Act 1 (N) Cast C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Cast C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BurningDeadMage BurningDeadMage Skeleton 178 385 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 14 47 80 0 2 3 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 127 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 138 0 0 0 70 0 0 50 0 0 100 0 0 60 50 0 100 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 17 24 70 93 15 0 0 27 0 0 0 0 0 0 172 249 256 1139 0 0 131 0 0 0 0 0 0 509 737 469 8090 0 0 297 0 0 0 0 0 0 Act 2 Cast A Act 2 Champ A Act 2 Unique A Act 2 (N) Cast A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Cast A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HorrorMage HorrorMage Skeleton 178 386 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 17 50 83 0 2 4 1 1 1 1 1 0 0 0 1 0 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 127 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 138 0 0 0 30 0 0 50 0 0 50 0 0 60 50 0 100 0 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 20 29 85 123 17 0 0 32 0 0 0 0 0 0 183 265 272 1395 0 0 140 0 0 0 0 0 0 528 765 487 9636 0 0 308 0 0 0 0 0 0 Act 2 Cast B Act 2 Champ B Act 2 Unique B Act 2 (N) Cast B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Cast B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ReturnedMage ReturnedMage Skeleton 179 387 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 8 41 74 0 1 2 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 128 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 30 0 50 0 0 0 50 0 60 50 0 0 100 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 10 15 40 55 9 0 0 16 0 0 0 0 0 0 150 217 223 759 0 0 115 0 0 0 0 0 0 471 682 434 5703 0 0 275 0 0 0 0 0 0 Act 1 Cast B Act 1 Champ B Act 1 Unique B Act 1 (N) Cast B Act 1 (N) Champ B Act 1 (N) Unique B Act 1 (H) Cast B Act 1 (H) Champ B Act 1 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BoneMage BoneMage Skeleton 179 388 1 1 SK 0 0 2 2 3 0 2 4 4 0 50 1 10 43 76 0 1 3 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 128 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 30 0 50 0 0 0 50 0 60 50 0 0 100 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 12 18 50 66 11 0 0 19 0 0 0 0 0 0 157 228 234 869 0 0 120 0 0 0 0 0 0 484 700 446 6408 0 0 282 0 0 0 0 0 0 Act 1 Cast C Act 1 Champ C Act 1 Unique C Act 1 (N) Cast C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) Cast C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BurningDeadMage BurningDeadMage Skeleton 179 389 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 14 47 80 0 2 3 1 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 128 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 50 30 0 50 0 0 50 50 0 60 50 0 100 75 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 17 24 70 93 15 0 0 27 0 0 0 0 0 0 172 249 256 1139 0 0 131 0 0 0 0 0 0 509 737 469 8090 0 0 297 0 0 0 0 0 0 Act 2 Cast A Act 2 Champ A Act 2 Unique A Act 2 (N) Cast A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Cast A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HorrorMage HorrorMage Skeleton 179 390 1 0 SK 0 0 2 2 3 0 2 5 5 0 50 1 17 50 83 0 2 4 1 1 1 1 1 0 0 0 1 0 0 1 1 0 0 0 9 0 hth 35 0 0 0 0 1 1 1 1 1 1 1 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 128 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 5 0 1 158 6 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 30 0 50 0 0 0 50 0 60 50 0 0 100 0 75 2 1 0 0 0 0 0 0 1 0 0 80 0 20 29 85 123 17 0 0 32 0 0 0 0 0 0 183 265 272 1395 0 0 140 0 0 0 0 0 0 528 765 487 9636 0 0 308 0 0 0 0 0 0 Act 2 Cast B Act 2 Champ B Act 2 Unique B Act 2 (N) Cast B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Cast B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Hell Bovine HellBovine Cow 180 391 1 0 EC 0 0 2 2 3 0 2 5 5 1 50 1 28 61 90 2 5 10 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 hth 80 85 9 50 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 77 165 147 804 28 27 40 53 32 43 57 0 0 0 537 1151 347 6714 59 89 170 71 95 184 0 0 0 1382 2961 551 33116 114 172 334 137 183 361 0 0 0 Cow Act 4 Champ B Act 4 Unique B Cow (N) Act 4 (N) Champ B Act 4 (N) Unique B Cow (H) Act 4 (H) Champ B Act 4 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
window right special 181 392 0 1 VH 0 0 3 3 2 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 50 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65536 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 90 70 90 90 90 90 90 90 90 90 90 90 90 90 2 0 0 0 0 0 0 0 0 0 0 128 0 0 20 5 147 46 1 3 90 0 0 0 1 2 6 22 968 185 4227 11 34 3090 0 0 0 11 25 206 74 3309 393 33920 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0
window left special 182 393 0 1 VJ 0 0 3 3 2 0 3 0 0 1 50 0 1 34 67 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 50 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65536 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 90 70 90 90 90 90 90 90 90 90 90 90 90 90 2 0 0 0 0 0 0 0 0 0 0 128 0 0 20 5 147 46 1 3 90 0 0 0 1 2 6 22 968 185 4227 11 34 3090 0 0 0 11 25 206 74 3309 393 33920 29 87 8070 0 0 0 29 63 538 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0
SpearCat SpearCat PantherWoman 183 394 1 0 PW 0 0 2 2 3 0 2 5 10 1 50 0 15 48 81 0 1 3 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 1ht 70 approach prob 50 attack prob 12 friend seek 10 flee freq 30 delay 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 238 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 15 26 47 118 16 5 12 29 0 0 0 2 6 56 145 254 164 1407 16 38 134 0 0 0 6 17 261 426 746 298 9899 35 83 301 0 0 0 12 37 585 Act 2 Miss A Act 2 Champ A Act 2 Unique A Act 2 (N) Miss A Act 2 (N) Champ A Act 2 (N) Unique A Act 2 (H) Miss A Act 2 (H) Champ A Act 2 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
NightSlinger NightSlinger PantherWoman 183 395 1 0 PW 0 0 2 2 3 0 2 5 10 1 50 0 17 50 83 0 2 3 1 1 0 1 1 0 1 1 1 1 1 1 1 0 0 0 11 0 1ht 70 55 11 15 25 1 1 1 1 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 239 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 96 0 17 29 54 142 17 6 14 32 0 0 0 2 6 63 151 265 171 1611 17 39 140 0 0 0 6 18 272 437 765 305 11122 36 85 308 0 0 0 13 38 599 Act 2 Miss B Act 2 Champ B Act 2 Unique B Act 2 (N) Miss B Act 2 (N) Champ B Act 2 (N) Unique B Act 2 (H) Miss B Act 2 (H) Champ B Act 2 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
RatMan RatMan Fetish 184 396 1 1 FC 0 0 2 2 1 0 1 6 6 1 50 0 9 42 75 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 266 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 48 0 13 22 45 71 13 0 0 24 0 0 0 0 0 0 180 297 229 961 0 0 159 0 0 0 0 0 0 560 922 440 7151 0 0 376 0 0 0 0 0 0 Act 1 H2H C Act 1 Champ C Act 1 Unique C Act 1 (N) H2H C Act 1 (N) Champ C Act 1 (N) Unique C Act 1 (H) H2H C Act 1 (H) Champ C Act 1 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Fetish Fetish Fetish 184 397 1 0 FC 0 0 2 2 1 0 1 7 7 1 50 0 21 54 87 0 1 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 266 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 1 0 1 0 0 48 0 28 47 106 214 28 0 0 54 0 0 0 0 0 0 231 381 294 2164 0 0 204 0 0 0 0 0 0 649 1069 510 14389 0 0 436 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Flayer Flayer Fetish 184 398 1 0 FC 0 0 2 2 1 0 1 8 8 1 50 0 22 55 88 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 266 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 1 0 1 0 0 48 0 30 49 111 235 29 0 0 56 0 0 0 0 0 0 235 388 299 2315 0 0 208 0 0 0 0 0 0 656 1081 516 15252 0 0 441 0 0 0 0 0 0 Act 3 H2H A Act 3 Champ A Act 3 Unique A Act 3 (N) H2H A Act 3 (N) Champ A Act 3 (N) Unique A Act 3 (H) H2H A Act 3 (H) Champ A Act 3 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
SoulKiller SoulKiller Fetish 184 399 1 0 FC 0 0 2 2 1 0 1 9 9 1 50 0 23 56 89 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 266 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 1 0 0 1 0 1 0 0 48 0 31 51 116 258 31 0 0 59 0 0 0 0 0 0 240 395 305 2477 0 0 211 0 0 0 0 0 0 664 1093 522 16168 0 0 446 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
StygianDoll StygianDoll Fetish 184 400 1 0 FC 0 0 2 2 1 0 1 10 10 1 50 0 24 57 90 0 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 266 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 48 0 32 53 121 284 32 0 0 61 0 0 0 0 0 0 244 402 310 2650 0 0 215 0 0 0 0 0 0 671 1105 528 17138 0 0 451 0 0 0 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Mephisto Spirit Spirit 185 401 0 0 M6 0 0 2 2 3 0 2 0 0 1 50 0 24 57 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 90 90 90 90 90 70 90 90 90 90 90 90 90 90 90 90 90 90 2 0 0 0 0 0 0 0 0 0 0 96 0 633 633 178 2205 32 23 35 61 0 0 0 0 0 0 4779 4779 458 20564 55 83 215 0 0 0 0 0 0 13145 13145 780 132962 114 172 451 0 0 0 0 0 0 Trapped Soul Trapped Soul Trapped Soul Trapped Soul (N) Trapped Soul Trapped Soul Trapped Soul (H) Trapped Soul Trapped Soul 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
The Smith The Smith Unique 186 402 0 0 5P 0 0 2 2 3 0 2 7 7 1 50 0 10 43 76 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 -50 0 0 0 0 0 -50 50 0 0 0 0 -50 0 0 0 1 0 1 0 0 1 0 0 96 0 64 64 50 181 13 7 9 24 0 0 0 0 0 0 814 814 234 2393 25 34 146 0 0 0 0 0 0 2501 2501 446 17650 58 78 343 0 0 0 0 0 0 Smith Smith Smith Smith (N) Smith (N) Smith (N) Smith (H) Smith (H) Smith (H) 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
TrappedSoul TrappedSoul special 187 403 0 0 10 0 0 2 2 3 0 3 0 0 1 50 0 30 63 90 1 1 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 1 1 0 0 1 1 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 100 90 50 0 0 0 100 90 2 0 0 0 0 0 0 0 0 0 0 128 0 35 47 2 2 1 3 7 90 0 0 0 10 21 122 238 317 5 19 6 15 280 0 0 0 21 45 380 592 790 8 83 11 27 532 0 0 0 39 85 722 Trapped Soul Trapped Soul Trapped Soul Trapped Soul (N) Trapped Soul Trapped Soul Trapped Soul (H) Trapped Soul Trapped Soul 0 1 xxx xxx 1 0 1 1 3 0 1 1 1 1 1 0 0 0 1 -60 -20 40 70 0 0 0 0 0 0
TrappedSoul TrappedSoul special 188 404 0 0 13 0 0 2 2 3 0 3 0 0 1 50 0 30 63 90 1 1 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 1 1 0 0 1 1 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 70 70 0 0 0 0 100 90 50 0 0 0 100 90 2 0 0 0 0 0 0 0 0 0 0 128 0 35 47 2 2 1 3 7 90 0 0 0 10 21 122 238 317 5 19 6 15 280 0 0 0 21 45 380 592 790 8 83 11 27 532 0 0 0 39 85 722 Trapped Soul Trapped Soul Trapped Soul Trapped Soul (N) Trapped Soul Trapped Soul Trapped Soul (H) Trapped Soul Trapped Soul 0 1 xxx xxx 1 0 1 1 3 0 1 1 1 1 1 0 0 0 1 -60 -20 40 70 0 0 0 0 0 0
Jamella Jamella NPC 189 405 0 0 ja 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Izual Izual's Ghost NPC 190 406 0 0 17 0 0 2 2 4 0 4 0 0 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 144 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 0 0 3 0 0 0 0 0 0 0 0 0 1 -150 -22 44 100 0 0 0 0 0 1
RatMan RatMan Fetish 191 407 1 1 FE 0 0 2 2 1 0 1 6 6 1 50 0 10 43 76 0 1 1 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 1hs 0 55 20 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 158 32 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 1 0 1 0 0 48 0 14 24 50 91 11 2 6 19 4 6 19 0 0 0 184 304 234 1207 9 24 120 17 24 120 0 0 0 567 934 446 8898 21 56 282 39 56 282 0 0 0 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 3 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 3 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Malachai Malachai NPC 192 408 0 0 36 0 0 3 3 4 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 1 0 1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 128 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
The Feature Creep The Smith Hellforge Unique 193 409 0 0 5P 0 0 2 2 3 0 2 8 8 1 50 0 25 58 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 -50 0 0 0 0 0 -50 50 0 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 96 0 395 395 159 1593 30 24 36 57 0 0 0 0 0 0 2920 2920 401 14454 56 84 197 0 0 0 0 0 0 7895 7895 669 87344 114 172 406 0 0 0 0 0 0 Haphesto Haphesto Haphesto Haphesto (N) Haphesto Haphesto Haphesto (H) Haphesto Haphesto 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Expansion Expansion
Wake of Destruction Wake of Destruction Wake of Destruction 194 1 0 e9 0 0 0 0 1 1 1 0 0 0 50 0 13 13 13 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 Rate % 10 Delay with target 15 Delay without target 15 Range 0 1 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 5 10 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 281 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 128 0 27 43 68 0 1 0 0 0 0 0 0 0 0 0 84 134 74 0 0 0 0 0 0 0 0 0 0 145 232 80 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Charged Bolt Sentry Charged Bolt Sentry Charged Bolt Sentry 195 1 0 lg 0 0 0 0 1 1 1 0 0 0 50 0 13 13 13 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 Rate % 10 Delay with target 15 Delay without target 25 Range 0 1 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 306 42 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 128 0 27 43 68 0 1 0 0 0 0 0 0 0 0 0 84 134 74 0 0 0 0 0 0 0 0 0 0 145 232 80 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Lightning Sentry Lightning Sentry Lightning Sentry 196 1 0 lg 0 0 0 0 1 1 1 0 0 0 50 0 25 25 25 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 100 Rate % 10 Delay with target 15 Delay without target 25 Range 0 1 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 313 42 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 128 0 49 79 131 0 1 0 0 0 0 0 0 0 0 0 159 254 142 0 0 0 0 0 0 0 0 0 0 276 442 153 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Blade Creeper Blade Creeper Blade Creeper 197 1 0 b8 0 0 0 0 1 1 1 10 10 0 0 0 6 6 6 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 128 0 14 22 32 0 1 0 0 0 0 0 0 0 0 0 40 64 34 0 0 0 0 0 0 0 0 0 0 68 109 37 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Invis Pet Invis Pet Invis Pet 198 1 0 k9 0 0 0 0 1 1 1 0 0 0 50 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 16 Range 15 Delay 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 128 0 6 6 0 0 1 0 0 0 0 0 0 0 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Inferno Sentry Inferno Sentry Inferno Sentry 199 1 0 e9 0 0 0 0 1 1 1 0 0 0 50 0 25 25 25 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 Rate % 10 Delay with target 15 Delay without target 13 Range 0 1 1 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 311 59 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 128 0 49 79 131 0 1 0 0 0 0 0 0 0 0 0 159 254 142 0 0 0 0 0 0 0 0 0 0 276 442 153 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Death Sentry Death Sentry Death Sentry 200 1 0 lg 0 0 0 0 1 1 1 0 0 0 50 0 32 32 32 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 30 range to corpse 0 50 Delay 25 Range to fire lightning 0 1 1 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 312 42 1 313 42 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 128 0 63 100 168 0 1 0 0 0 0 0 0 0 0 0 203 324 182 0 0 0 0 0 0 0 0 0 0 353 564 196 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Shadow Warrior Shadow Warrior Shadow Warrior 201 1 0 k9 0 0 2 2 1 0 1 0 0 0 50 0 22 22 22 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 40 range to target to pay attention 30 Min distance to follow druid 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 0 259 51 1 274 51 1 260 51 1 275 52 1 269 51 1 255 255 255 40 0 0 0 0 0 40 0 0 0 0 0 40 0 0 0 0 0 2 0 0 0 0 0 1 0 1 0 0 128 0 124 124 116 0 58 0 0 113 0 0 113 0 0 0 186 186 125 0 0 0 168 0 0 168 0 0 0 248 248 135 0 0 0 223 0 0 223 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Shadow Master Shadow Master Shadow Master 202 1 0 k9 0 0 2 2 1 0 1 0 0 0 50 0 32 32 32 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 35 range to target to pay attention 25 Min distance to follow druid 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 0 1 0 0 0 266 58 1 274 51 1 260 51 1 275 52 1 269 51 1 255 255 255 40 0 0 0 0 0 40 0 0 0 0 0 40 0 0 0 0 0 2 0 0 0 0 0 1 0 1 0 0 128 0 188 188 168 0 83 0 0 163 0 0 163 0 0 0 282 282 182 0 0 0 243 0 0 243 0 0 0 376 376 196 0 0 0 323 0 0 323 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Druid Hawk Druid Hawk Hawk 203 1 0 hk 0 0 0 0 3 1 3 10 20 0 50 0 4 4 4 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 10 Max dist from player 6 Target distance to player 5 Min frames between attacks / 10 75 chance to attack 35 Max distance from boss to monster 1 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 1 1 0 0 88 0 10 16 21 0 1 0 0 0 0 0 0 0 0 0 15 24 23 0 0 0 0 0 0 0 0 0 0 20 32 25 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Druid Spirit Wolf Druid Spirit Wolf Druid Spirit Wolf 204 1 0 wf 0 0 2 2 3 0 3 5 10 1 50 0 7 7 7 1 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 22 passiveness - think time between attacks 20 Walk prob 14 Desired range to player 20 max dist to target 26 run to boss range 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 1 0 0 0 292 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 88 0 30 41 58 0 1 0 0 0 0 0 0 0 0 0 45 62 63 0 0 0 0 0 0 0 0 0 0 60 82 67 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Druid Fenris Druid Fenris Druid Fenris 204 1 0 wf 0 0 2 2 3 0 3 5 10 1 50 0 12 12 12 1 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 22 passiveness - think time between attacks 20 Walk prob 25 Chance to eat 24 max dist to target 30 run to boss range 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 1 0 0 0 314 0 1 292 0 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 88 0 49 65 99 0 1 0 0 0 0 0 0 0 0 0 74 98 107 0 0 0 0 0 0 0 0 0 0 98 130 116 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Spirit of Barbs Druid Totem Druid Totem 205 1 0 x4 0 0 2 2 2 0 2 6 6 0 50 0 32 32 32 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 walk away chance 30 Follow boss chance 30 Warp Range 20 Range to run to boss 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 25 25 25 25 70 0 25 25 25 25 100 0 25 25 25 25 100 2 0 0 0 0 0 0 1 0 0 0 88 0 100 113 168 0 1 0 0 0 0 0 0 0 0 0 150 170 182 0 0 0 0 0 0 0 0 0 0 200 226 196 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Heart of Wolverine Druid Totem Druid Totem 205 1 0 x3 0 0 2 2 2 0 2 6 6 0 50 0 20 20 20 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 walk away chance 30 Follow boss chance 30 Warp Range 20 Range to run to boss 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 50 50 0 25 25 25 25 70 0 25 25 25 25 100 0 25 25 25 25 100 2 0 0 0 0 0 0 1 0 0 0 88 0 64 72 105 0 1 0 0 0 0 0 0 0 0 0 96 108 114 0 0 0 0 0 0 0 0 0 0 128 144 123 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Oak Sage Druid Totem Druid Totem 205 1 0 xw 0 0 2 2 2 0 2 6 6 0 50 0 8 8 8 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 20 walk away chance 30 Follow boss chance 30 Warp Range 20 Range to run to boss 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 1 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 25 25 25 25 70 0 25 25 25 25 100 0 25 25 25 25 100 2 0 0 0 0 0 0 1 0 0 0 88 0 28 32 42 0 1 0 0 0 0 0 0 0 0 0 42 48 46 0 0 0 0 0 0 0 0 0 0 56 64 49 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Druid Plague Poppy Druid Plague Poppy Vine Creature 206 1 0 k9 0 0 0 0 1 1 1 7 7 0 50 0 4 4 4 2 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 delay between attacks 20 Vine attack range 25 Think delay 10 Steps to walk away 35 Min distance for warp 1 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 294 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 96 0 13 18 21 0 1 0 0 0 0 0 0 0 0 0 20 27 23 0 0 0 0 0 0 0 0 0 0 26 36 25 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Druid Cycle of Life Druid Cycle of Life Vine Creature 207 1 0 k9 0 0 0 0 1 1 1 7 7 0 50 0 15 15 15 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 50 delay between attacks 20 Vine attack range 25 Think delay 10 Steps to walk away 35 Min distance for warp 1 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 96 0 40 55 79 0 1 0 0 0 0 0 0 0 0 0 60 83 85 0 0 0 0 0 0 0 0 0 0 80 110 92 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Vine Creature Vine Creature Vine Creature 208 1 0 k9 0 0 0 0 1 1 1 7 7 0 50 0 27 27 27 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 50 delay between attacks 20 Vine attack range 25 Think delay 10 Steps to walk away 35 Min distance for warp 1 1 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 1 0 0 0 0 96 0 69 96 142 0 1 0 0 0 0 0 0 0 0 0 104 144 154 0 0 0 0 0 0 0 0 0 0 138 192 165 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Druid Bear Druid Bear Druid Bear 209 1 0 b7 0 0 2 2 3 0 3 5 9 1 50 0 29 29 29 2 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 15 passiveness - think time between attacks 40 Walk prob 50 Knockback hit chance 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 2 1 0 0 0 97 44 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 1 0 0 1 0 0 104 0 114 171 196 0 1 0 0 0 0 0 0 0 0 0 171 257 196 0 0 0 0 0 0 0 0 0 0 228 342 196 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Eagle Eagle Eagle 210 1 0 eg 0 0 2 2 2 0 3 6 6 1 50 0 18 18 18 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 4 8 0 100 5 10 100 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 1 0 1 0 0 0 96 0 36 58 95 0 48 4 14 93 0 0 0 0 0 0 115 184 102 0 4 15 138 0 0 0 0 0 0 199 319 110 0 5 20 183 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wolf Wolf Wolf 211 1 0 40 0 0 2 2 3 0 3 6 6 1 50 0 7 7 7 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 0 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 96 0 16 25 37 0 8 2 6 14 2 6 14 0 0 0 46 74 40 0 2 6 20 2 6 20 0 0 0 79 127 43 0 2 7 27 2 7 27 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bear Bear Bear 212 1 0 TG 0 0 2 2 3 0 3 6 6 1 50 0 5 5 5 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 0 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 0 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 104 0 12 19 30 0 1 1 5 28 0 0 0 0 0 0 34 54 33 0 1 5 40 0 0 0 0 0 0 57 92 35 0 2 7 53 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barricade Door Barricade Door Barricade Door 213 1 0 AJ 0 0 3 3 3 1 3 0 0 0 0 0 26 59 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 50 100 0 0 0 0 50 100 50 0 0 0 50 100 0 0 0 0 0 1 0 0 0 3 0 128 0 51 82 137 0 1 0 0 0 0 0 0 0 0 0 371 594 336 0 0 0 0 0 0 0 0 0 0 987 1579 551 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
Barricade Door Barricade Door Barricade Door 213 1 0 AG 0 0 3 3 3 1 3 0 0 0 0 0 26 59 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 50 100 0 0 0 0 50 100 50 0 0 0 50 100 0 0 0 0 0 1 0 0 0 3 0 128 0 51 82 137 0 1 0 0 0 0 0 0 0 0 0 371 594 336 0 0 0 0 0 0 0 0 0 0 987 1579 551 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
Prison Door Prison Door Prison Door 214 1 0 2Q 0 0 3 3 3 1 3 0 0 0 0 0 26 59 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 50 50 50 50 50 100 50 50 75 75 50 100 75 75 75 75 50 100 0 0 0 0 0 1 0 0 0 3 0 128 0 26 51 137 0 1 0 0 0 0 0 0 0 0 0 186 371 336 0 0 0 0 0 0 0 0 0 0 493 987 551 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Barricade Tower Barricade Tower Barricade Tower 215 1 0 tw 0 0 3 3 3 1 3 0 0 0 0 0 15 48 81 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 3 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 50 100 0 0 0 0 50 100 50 0 0 0 50 100 0 0 0 0 0 1 0 0 0 3 0 128 0 123 184 79 0 1 0 0 0 0 0 0 0 0 0 1210 1815 273 0 0 0 0 0 0 0 0 0 0 3554 5331 496 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 2 0 3 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1258 0 0 0 1
RotWalker RotWalker ReanimatedHorde 216 0 1 0 re 0 0 2 2 3 0 2 1 5 1 50 1 31 64 90 0 2 4 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 8 0 hth 10 Wake-up delay / 10 30 attack prob 30 Awake prob 20 Charge prob 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 293 0 1 107 43 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 70 50 0 0 0 100 70 2 1 0 0 0 0 0 0 0 0 0 72 0 73 109 198 899 45 6 17 87 8 19 58 0 0 0 483 725 442 6908 14 36 265 17 40 179 0 0 0 1184 1776 669 27818 25 66 496 32 73 334 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ReanimatedHorde ReanimatedHorde ReanimatedHorde 216 1 1 0 re 0 0 2 2 3 0 2 1 5 1 50 1 33 66 90 0 2 4 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 8 0 hth 10 Wake-up delay / 10 40 attack prob 30 Awake prob 25 Charge prob 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 293 0 1 107 43 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 80 0 0 0 0 0 80 50 0 0 0 100 80 2 1 0 0 0 0 0 0 0 0 0 72 0 77 116 210 1088 47 7 18 92 9 20 62 0 0 0 498 747 456 7909 14 37 274 18 41 184 0 0 0 1184 1776 669 27818 25 66 496 32 73 334 0 0 0 Act 5 H2H B Act 5 Champ A Act 5 Unique A Act 5 (N) H2H B Act 5 (N) Champ A Act 5 (N) Unique A Act 5 H2H B Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
ProwlingDead ProwlingDead ReanimatedHorde 216 2 1 0 re 0 0 2 2 3 0 2 2 5 1 50 1 35 68 90 0 2 4 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 8 0 hth 10 Wake-up delay / 10 50 attack prob 30 Awake prob 25 Charge prob 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 293 0 1 107 43 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 90 0 0 0 0 0 90 50 0 0 0 100 90 2 1 0 0 0 0 0 0 0 0 0 72 0 82 123 223 1316 50 7 19 98 9 21 66 0 0 0 513 770 470 9056 14 38 282 18 42 190 0 0 0 1184 1776 669 27818 25 66 496 32 73 334 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
UnholyCorpse UnholyCorpse ReanimatedHorde 216 3 1 0 re 0 0 2 2 3 0 2 2 5 1 50 1 40 70 90 0 2 4 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 8 0 hth 10 Wake-up delay / 10 60 attack prob 30 Awake prob 30 Charge prob 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 293 0 1 107 43 1 0 0 0 0 0 0 0 0 0 255 255 255 20 0 50 0 0 70 20 0 50 0 0 100 20 0 50 0 0 100 2 1 0 0 0 0 0 0 0 0 0 72 0 93 140 255 2120 57 8 22 111 11 24 75 0 0 0 528 792 483 10368 15 39 290 19 43 195 0 0 0 1184 1776 669 27818 25 66 496 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
DefiledWarrior DefiledWarrior ReanimatedHorde 216 4 1 0 re 0 0 2 2 3 0 2 3 5 1 50 1 42 70 90 0 2 4 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 8 0 hth 10 Wake-up delay / 10 70 attack prob 30 Awake prob 35 Charge prob 0 1 1 1 1 1 1 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 0 1 0 0 1 293 0 1 107 43 1 0 0 0 0 0 0 0 0 0 255 255 255 0 50 0 0 0 70 0 50 0 0 0 100 50 50 0 0 0 100 2 1 0 0 0 0 0 0 0 0 0 72 0 98 146 268 2565 60 9 23 117 11 25 79 0 0 0 528 792 483 10368 15 39 290 19 43 195 0 0 0 1184 1776 669 27818 25 66 496 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Siege Beast Seige Beast Seige Beast 217 5 1 0 ox 0 0 3 3 2 0 2 3 7 1 50 0 37 70 90 0 1 1 0 1 0 1 1 0 0 0 1 1 1 1 0 0 1 0 8 0 hth 40 hitpoint % to cause fear 50 chance to attack 1 chance to stomp 20 ideal dist from player 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 301 0 1 107 56 1 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 128 0 288 288 194 0 95 21 28 188 0 0 0 0 0 0 1760 1760 398 0 41 54 528 0 0 0 0 0 0 3948 3948 551 0 69 92 903 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
CrushBiest CrushBiest Seige Beast 217 6 1 0 ox 0 0 3 3 2 0 2 3 8 1 50 0 38 70 90 0 1 1 0 1 0 1 1 0 0 0 1 1 1 1 0 0 1 0 8 0 hth 40 hitpoint % to cause fear 50 chance to attack 1 chance to stomp 20 ideal dist from player 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 301 0 2 107 56 2 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 128 0 295 295 200 0 98 21 29 193 0 0 0 0 0 0 1760 1760 398 0 41 54 528 0 0 0 0 0 0 3948 3948 551 0 69 92 903 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
BloodBringer BloodBringer Seige Beast 217 7 1 0 ox 0 0 3 3 2 0 2 4 9 1 50 0 38 70 90 0 1 1 0 1 0 1 1 0 0 0 1 1 1 1 0 0 1 0 8 0 hth 40 hitpoint % to cause fear 50 chance to attack 1 chance to stomp 20 ideal dist from player 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 301 0 3 107 56 3 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 128 0 295 295 200 0 98 21 29 193 0 0 0 0 0 0 1760 1760 398 0 41 54 528 0 0 0 0 0 0 3948 3948 551 0 69 92 903 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
GoreBearer GoreBearer Seige Beast 217 8 1 0 ox 0 0 3 3 2 0 2 5 10 1 50 0 38 70 90 0 1 1 0 1 0 1 1 0 0 0 1 1 1 1 0 0 1 0 8 0 hth 40 hitpoint % to cause fear 50 chance to attack 1 chance to stomp 20 ideal dist from player 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 301 0 4 107 56 5 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 128 0 295 295 200 0 98 21 29 193 0 0 0 0 0 0 1760 1760 398 0 41 54 528 0 0 0 0 0 0 3948 3948 551 0 69 92 903 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
DeamonSteed DeamonSteed Seige Beast 217 9 1 0 ox 0 0 3 3 2 0 2 6 11 1 50 0 38 70 90 0 1 1 0 1 0 1 1 0 0 0 1 1 1 1 0 0 1 0 8 0 hth 40 hitpoint % to cause fear 50 chance to attack 1 chance to stomp 20 ideal dist from player 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 1 301 0 5 107 56 7 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 128 0 295 295 200 0 98 21 29 193 0 0 0 0 0 0 1760 1760 398 0 41 54 528 0 0 0 0 0 0 3948 3948 551 0 69 92 903 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SnowYeti1 SnowYeti1 SnowYeti1 218 10 1 0 io 0 0 3 3 3 0 2 5 8 1 20 0 40 70 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 40 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 9 0 100 8 12 50 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 20 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 96 0 155 186 255 2562 57 8 22 111 11 24 75 0 0 0 880 1056 483 12528 15 39 290 19 43 195 0 0 0 1974 2369 669 33613 25 66 496 32 73 334 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SnowYeti2 SnowYeti2 SnowYeti2 218 11 1 0 io 0 0 3 3 3 0 2 6 6 1 20 0 41 70 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 40 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 9 0 100 12 16 100 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 30 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 96 0 159 191 261 2818 58 8 22 114 11 25 77 0 0 0 880 1056 483 12528 15 39 290 19 43 195 0 0 0 1974 2369 669 33613 25 66 496 32 73 334 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SnowYeti3 SnowYeti3 SnowYeti3 218 12 1 0 io 0 0 3 3 3 0 2 7 7 1 15 0 42 70 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 40 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 9 0 100 16 20 150 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 96 0 163 195 268 3099 60 9 23 117 11 25 79 0 0 0 880 1056 483 12528 15 39 290 19 43 195 0 0 0 1974 2369 669 33613 25 66 496 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SnowYeti4 SnowYeti4 SnowYeti4 218 13 1 0 io 0 0 3 3 3 0 2 7 7 1 15 0 43 70 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 40 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 0 4 9 0 100 20 24 200 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 96 0 166 200 274 3409 61 9 23 120 11 26 80 0 0 0 880 1056 483 12528 15 39 290 19 43 195 0 0 0 1974 2369 669 33613 25 66 496 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
WolfRider1 WolfRider1 WolfRider1 219 14 0 0 wr 0 0 2 2 3 0 2 1 1 1 50 1 23 56 89 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 100 55 12 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 7 0 100 24 32 300 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 55 82 147 419 34 5 13 65 6 14 43 0 0 0 423 635 387 4021 12 32 232 15 35 156 0 0 0 1171 1757 662 26243 25 66 491 32 72 330 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
WolfRider2 WolfRider2 WolfRider2 219 15 0 0 wr 0 0 2 2 3 0 2 1 1 1 50 1 23 56 89 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 90 12 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 7 0 100 24 32 300 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 55 82 147 419 34 5 13 65 6 14 43 0 0 0 423 635 387 4021 12 32 232 15 35 156 0 0 0 1171 1757 662 26243 25 66 491 32 72 330 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
WolfRider3 WolfRider3 WolfRider3 219 16 0 0 wr 0 0 2 2 3 0 2 1 1 1 50 1 23 56 89 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 90 90 12 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 4 7 0 100 24 32 300 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 55 82 147 419 34 5 13 65 6 14 43 0 0 0 423 635 387 4021 12 32 232 15 35 156 0 0 0 1171 1757 662 26243 25 66 491 32 72 330 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Minionexp Minion Minion 220 17 1 0 xx 0 0 3 3 2 0 2 7 10 1 50 1 31 64 90 0 2 4 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 5 0 hth 70 attack prob 15 delay between attack thinks 50 walk prob 15 delay general 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 121 152 186 1172 49 15 19 95 18 22 102 0 0 0 805 1006 416 9006 31 40 290 37 47 314 0 0 0 1974 2467 630 36262 57 73 542 69 87 587 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
Slayerexp Slayer Minion 220 18 1 0 xx 0 0 3 3 2 0 2 7 10 1 50 1 33 66 90 0 2 4 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 5 0 hth 70 attack prob 15 delay between attack thinks 50 walk prob 15 delay general 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 129 161 198 1418 52 16 20 101 19 24 109 0 0 0 830 1038 429 10311 32 41 299 38 48 323 0 0 0 1974 2467 630 36262 57 73 542 69 87 587 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
IceBoar IceBoar Minion 220 19 1 0 xx 0 0 3 3 2 0 2 7 10 1 50 1 35 68 90 0 2 4 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 5 0 hth 70 attack prob 15 delay between attack thinks 50 walk prob 15 delay general 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 136 170 210 1716 55 17 21 107 20 25 115 0 0 0 855 1069 442 11805 33 42 308 39 50 333 0 0 0 1974 2467 630 36262 57 73 542 69 87 587 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
FireBoar FireBoar Minion 220 20 1 0 xx 0 0 3 3 2 0 2 7 10 1 50 1 36 69 90 0 2 4 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 5 0 hth 70 attack prob 15 delay between attack thinks 50 walk prob 15 delay general 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 140 175 216 1887 56 17 22 110 20 26 119 0 0 0 868 1084 449 12631 33 43 312 40 51 338 0 0 0 1974 2467 630 36262 57 73 542 69 87 587 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
HellSpawn HellSpawn Minion 220 21 1 0 xx 0 0 3 3 2 0 2 7 10 1 50 1 37 70 90 0 2 4 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 5 0 hth 70 attack prob 15 delay between attack thinks 50 walk prob 15 delay general 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 1 0 0 0 0 0 64 0 144 180 222 2076 58 17 22 113 21 26 122 0 0 0 880 1100 455 13515 34 43 317 41 51 343 0 0 0 1974 2467 630 36262 57 73 542 69 87 587 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
IceSpawn IceSpawn Minion 220 22 1 0 xx 0 0 3 3 2 0 2 7 10 1 50 1 40 70 90 0 2 4 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 5 0 hth 70 attack prob 15 delay between attack thinks 50 walk prob 15 delay general 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 155 194 240 2763 62 19 24 122 23 29 132 0 0 0 880 1100 455 13515 34 43 317 41 51 343 0 0 0 1974 2467 630 36262 57 73 542 69 87 587 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
GreaterHellSpawn GreaterHellSpawn Minion 220 23 1 0 xx 0 0 3 3 2 0 2 7 10 1 50 1 41 70 90 0 3 5 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 5 0 hth 70 attack prob 15 delay between attack thinks 50 walk prob 15 delay general 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 1 0 0 0 0 0 64 0 159 198 246 3040 64 19 25 125 23 29 135 0 0 0 880 1100 455 13515 34 43 317 41 51 343 0 0 0 1974 2467 630 36262 57 73 542 69 87 587 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
GreaterIceSpawn GreaterIceSpawn Minion 220 24 1 0 xx 0 0 3 3 2 0 2 7 10 1 50 1 42 70 90 0 3 5 1 1 0 0 0 1 0 1 1 0 0 0 0 0 0 0 5 0 hth 70 attack prob 15 delay between attack thinks 50 walk prob 15 delay general 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 163 203 252 3344 65 20 25 128 24 30 138 0 0 0 880 1100 455 13515 34 43 317 41 51 343 0 0 0 1974 2467 630 36262 57 73 542 69 87 587 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
FanaticMinion FanaticMinion SuicideMinion 221 25 1 0 xy 0 0 3 3 2 0 2 10 10 1 50 1 31 64 90 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 0 noelemtattack 5 delay 50 walk prob 4 radius 15 framesuntillexplode 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 168 255 0 0 25 0 0 0 0 0 25 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 24 36 156 1250 80 59 88 158 8 19 58 0 0 0 161 242 348 9602 124 186 483 17 40 179 0 0 0 395 592 528 38663 229 343 903 32 73 334 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
BerserkSlayer BerserkSlayer SuicideMinion 221 26 1 0 xy 0 0 3 3 2 0 2 10 10 1 50 1 33 66 90 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 0 no elementattac 5 delay 50 walk prob 4 radius 15 framesuntillexplode 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 168 255 0 0 30 0 0 0 0 0 30 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 26 39 166 1512 85 63 94 168 9 20 62 0 0 0 166 249 359 10993 128 191 498 18 41 184 0 0 0 395 592 528 38663 229 343 903 32 73 334 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
ConsumedFireBoar ConsumedFireBoar SuicideMinion 221 27 1 0 xy 0 0 3 3 2 0 2 10 10 1 50 1 35 68 90 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 1 fire explosion 5 delay 50 walk prob 5 radius 15 framesuntillexplode 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 168 255 0 0 35 0 0 0 0 0 35 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 27 41 176 1829 90 66 99 178 9 21 66 0 0 0 171 257 370 12586 131 197 513 18 42 190 0 0 0 395 592 528 38663 229 343 903 32 73 334 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
ConsumedIceBoar ConsumedIceBoar SuicideMinion 221 28 1 0 xy 0 0 3 3 2 0 2 10 10 1 50 1 36 69 90 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 50 ice exp and length 5 delay 50 walk prob 5 radius 15 framesuntillexplode 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 168 255 0 0 40 0 0 0 0 0 40 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 28 42 181 2012 93 68 102 183 10 22 68 0 0 0 174 260 376 13467 133 200 520 19 43 192 0 0 0 395 592 528 38663 229 343 903 32 73 334 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
FrenziedHellSpawn FrenziedHellSpawn SuicideMinion 221 29 1 0 xy 0 0 3 3 2 0 2 10 10 1 50 0 37 70 90 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 1 fire explosion 5 delay 50 walk prob 6 radius 15 framesuntillexplode 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 168 255 0 20 70 0 0 0 0 20 100 0 0 0 50 20 100 0 0 0 2 0 0 1 0 1 0 0 0 0 0 64 0 29 43 186 2214 95 69 104 188 10 22 69 0 0 0 176 264 381 14410 135 203 528 19 43 195 0 0 0 395 592 528 38663 229 343 903 32 73 334 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
FrenziedIceSpawn FrenziedIceSpawn SuicideMinion 221 30 1 0 xy 0 0 3 3 2 0 2 10 10 1 50 1 40 70 90 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 75 ice exp and length 5 delay 50 walk prob 6 radius 15 framesuntillexplode 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 168 255 0 0 35 0 0 0 0 0 35 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 31 47 201 2946 103 75 113 203 11 24 75 0 0 0 176 264 381 14410 135 203 528 19 43 195 0 0 0 395 592 528 38663 229 343 903 32 73 334 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
InsaneHellSpawn InsaneHellSpawn SuicideMinion 221 31 1 0 xy 0 0 3 3 2 0 2 10 10 1 50 1 41 70 90 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 1 fire explosion 5 delay 50 walk prob 6 radius 15 framesuntillexplode 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 168 255 0 0 40 0 0 0 0 0 40 0 0 0 50 0 100 0 0 0 2 0 0 1 0 1 0 0 0 0 0 64 0 32 48 206 3241 105 77 115 208 11 25 77 0 0 0 176 264 381 14410 135 203 528 19 43 195 0 0 0 395 592 528 38663 229 343 903 32 73 334 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
InsaneIceSpawn InsaneIceSpawn SuicideMinion 221 32 1 0 xy 0 0 3 3 2 0 2 10 10 1 50 0 42 70 90 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 100 ice exp and length 5 delay 50 walk prob 6 radius 15 framesuntillexplode 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230 168 255 0 20 70 0 0 0 0 20 100 0 0 0 50 20 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 33 49 211 3565 108 79 118 213 11 25 79 0 0 0 176 264 381 14410 135 203 528 19 43 195 0 0 0 395 592 528 38663 229 343 903 32 73 334 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
Succubusexp Succubus Succubae(melee) 222 33 1 0 0B 0 0 2 2 2 0 3 10 10 1 50 0 32 65 90 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 50 chance to move to player 50 chance to curse 15 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 1 310 0 1 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 0 1 0 0 0 96 0 63 100 204 907 42 9 17 81 9 15 81 0 0 0 409 654 449 6776 19 35 245 19 31 245 0 0 0 987 1579 669 25500 34 64 451 34 57 451 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 (H) H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
VileTemptress VileTemptress Succubae(melee) 222 34 1 0 0B 0 0 2 2 2 0 3 11 11 1 50 0 34 67 90 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 50 chance to move to player 50 chance to curse 20 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 1 310 0 1 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 1 0 0 0 1 0 0 0 96 0 66 106 217 1097 44 10 18 86 10 16 86 0 0 0 421 674 463 7758 19 36 253 19 32 253 0 0 0 987 1579 669 25500 34 64 451 34 57 451 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
StygianHarlot StygianHarlot Succubae(melee) 222 35 1 0 0B 0 0 2 2 2 0 3 12 12 1 50 0 35 68 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 50 chance to move to player 50 chance to curse 25 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 2 310 0 2 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 1 0 0 0 1 0 0 0 96 0 68 109 223 1207 46 10 19 89 10 17 89 0 0 0 428 684 470 8301 20 37 256 20 33 256 0 0 0 987 1579 669 25500 34 64 451 34 57 451 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 (H) H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Hell Temptress BlightWing Succubae(melee) 222 36 1 0 0B 0 0 2 2 2 0 3 13 13 1 50 0 40 70 90 0 3 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 50 chance to move to player 50 chance to curse 25 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 2 310 0 2 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 2 0 0 1 0 0 0 1 0 0 0 96 0 78 124 255 1943 52 11 21 101 11 19 101 0 0 0 440 704 483 9504 20 38 264 20 34 264 0 0 0 987 1579 669 25500 34 64 451 34 57 451 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 (H) H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Blood Temptress BloodWitch Succubae(melee) 222 37 1 0 0B 0 0 2 2 2 0 3 14 14 1 50 0 42 70 90 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 50 chance to move to player 50 chance to curse 25 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 3 310 0 3 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 2 0 0 1 0 0 0 1 0 0 0 96 0 81 130 268 2351 54 12 22 106 12 20 106 0 0 0 440 704 483 9504 20 38 264 20 34 264 0 0 0 987 1579 669 25500 34 64 451 34 57 451 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 (H) H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Dominus Dominus Succubae(mag) 223 38 1 0 0C 0 0 2 2 2 0 3 7 7 1 50 0 32 65 90 0 2 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 25 chance to move to player 50 chance to curse 25 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 103 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 1 310 0 1 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 1 0 0 1 0 0 0 96 0 63 100 204 921 46 9 17 89 9 15 81 0 0 0 409 654 449 6886 19 35 270 19 31 245 0 0 0 987 1579 669 25913 34 64 496 34 57 451 0 0 0 Act 5 Cast A Act 5 Champ A Act 5 Unique A Act 5 (N) Cast A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 (H) Cast A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
VileWitch VileWitch Succubae(mag) 223 39 1 0 0C 0 0 2 2 2 0 3 8 8 1 50 0 34 67 90 0 2 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 25 chance to move to player 50 chance to curse 25 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 104 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 1 310 0 1 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 0 1 0 0 0 96 0 66 106 217 1115 49 10 18 95 10 16 86 0 0 0 421 674 463 7884 19 36 278 19 32 253 0 0 0 987 1579 669 25913 34 64 496 34 57 451 0 0 0 Act 5 Cast C Act 5 Champ C Act 5 Unique C Act 5 (N) Cast C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) Cast C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
StygianFury StygianFury Succubae(mag) 223 40 1 0 0C 0 0 2 2 2 0 3 9 9 1 50 0 35 68 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 25 chance to move to player 50 chance to curse 25 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 105 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 2 310 0 2 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 2 0 0 1 1 0 0 1 0 0 0 96 0 68 109 223 1226 50 10 19 98 10 17 89 0 0 0 428 684 470 8436 20 37 282 20 33 256 0 0 0 987 1579 669 25913 34 64 496 34 57 451 0 0 0 Act 5 Cast A Act 5 Champ A Act 5 Unique A Act 5 (N) Cast A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 (H) Cast A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Blood Witch MageWing Succubae(mag) 223 41 1 0 0C 0 0 2 2 2 0 3 10 10 1 50 0 40 70 90 0 3 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 25 chance to move to player 50 chance to curse 25 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 106 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 2 310 0 2 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 1 0 0 1 0 0 0 96 0 78 124 255 1975 57 11 21 111 11 19 101 0 0 0 440 704 483 9658 20 38 290 20 34 264 0 0 0 987 1579 669 25913 34 64 496 34 57 451 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 (H) Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Hell Witch HellBitch Succubae(mag) 223 42 1 0 0C 0 0 2 2 2 0 3 12 12 1 50 0 42 70 90 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 90 Chance to attack 25 chance to move to player 50 chance to curse 25 curse range 0 1 1 1 1 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 107 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 309 0 3 310 0 3 212 0 1 0 0 0 0 0 0 255 255 255 0 0 0 0 80 0 0 0 0 0 100 0 50 0 0 0 100 0 2 0 0 1 1 0 0 1 0 0 0 96 0 81 130 268 2389 60 12 22 117 12 20 106 0 0 0 440 704 483 9658 20 38 290 20 34 264 0 0 0 987 1579 669 25913 34 64 496 34 57 451 0 0 0 Act 5 Cast A Act 5 Champ A Act 5 Unique A Act 5 (N) Cast A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 (H) Cast A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
OverSeer OverSeer OverSeer 224 43 1 0 os 0 0 3 3 3 0 3 4 4 1 50 0 33 66 90 0 1 2 1 1 0 1 1 0 1 0 1 1 1 1 0 0 0 0 9 0 hth 250 Time between cries 55 chance of creating vortex 50 Chance to whip 17 ideal dist from player 10 chance to walk 1 1 1 1 1 1 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 290 0 1 291 0 1 295 0 1 97 47 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 3 0 0 1 0 1 0 0 0 0 0 96 0 258 258 166 2004 43 13 25 84 21 43 62 0 0 0 1660 1660 359 14571 26 51 249 43 87 184 0 0 0 3948 3948 528 51247 46 92 451 78 156 334 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Lasher Lasher OverSeer 224 44 1 0 os 0 0 3 3 3 0 3 4 4 1 50 0 34 67 90 0 1 2 1 1 0 1 1 0 1 0 1 1 1 1 0 0 0 0 9 0 hth 250 Time between cries 60 chance of creating vortex 50 Chance to whip 17 ideal dist from player 10 chance to walk 1 1 1 1 1 1 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 290 0 1 291 0 1 295 0 1 97 47 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 4 0 0 1 0 1 0 0 0 0 0 96 0 265 265 171 2204 44 13 26 86 22 44 64 0 0 0 1685 1685 365 15591 26 52 253 44 88 187 0 0 0 3948 3948 528 51247 46 92 451 78 156 334 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
OverLord OverLord OverSeer 224 45 1 0 os 0 0 3 3 3 0 3 5 5 1 50 0 36 69 90 0 1 2 1 1 0 1 1 0 1 0 1 1 1 1 0 0 0 0 9 0 hth 250 Time between cries 65 chance of creating vortex 50 Chance to whip 17 ideal dist from player 10 chance to walk 1 1 1 1 1 1 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 290 0 1 291 0 1 295 0 1 97 47 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 5 0 0 1 0 1 0 0 0 0 0 96 0 280 280 181 2667 47 14 27 91 23 46 68 0 0 0 1735 1735 376 17851 27 53 260 45 91 192 0 0 0 3948 3948 528 51247 46 92 451 78 156 334 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BloodBoss BloodBoss OverSeer 224 46 1 0 os 0 0 3 3 3 0 3 5 5 1 50 0 37 70 90 0 1 2 1 1 0 1 1 0 1 0 1 1 1 1 0 0 0 0 9 0 hth 250 Time between cries 70 chance of creating vortex 50 Chance to whip 17 ideal dist from player 10 chance to walk 1 1 1 1 1 1 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 290 0 1 291 0 1 295 0 1 97 47 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 6 0 0 1 0 1 0 0 0 0 0 96 0 288 288 186 2934 48 14 28 94 24 47 69 0 0 0 1760 1760 381 19100 27 54 264 46 92 195 0 0 0 3948 3948 528 51247 46 92 451 78 156 334 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HellWhip HellWhip OverSeer 224 47 1 0 os 0 0 3 3 3 0 3 6 6 1 50 0 39 70 90 0 2 3 1 1 0 1 1 0 1 0 1 1 1 1 0 0 0 0 9 0 hth 250 Time between cries 75 chance of creating vortex 50 Chance to whip 17 ideal dist from player 10 chance to walk 1 1 1 1 1 1 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 2 1 0 0 0 290 0 1 291 0 1 295 0 1 97 47 1 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 1 0 0 0 0 0 96 0 303 303 196 3550 51 15 29 99 25 50 73 0 0 0 1760 1760 381 19100 27 54 264 46 92 195 0 0 0 3948 3948 528 51247 46 92 451 78 156 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MinionSpawner MinionSpawner Spawner 225 48 0 0 xa 0 0 3 3 3 0 3 0 0 0 0 0 34 67 90 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 100 frame delay between spawning 40 total mon allowed 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 301 20 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 128 0 45 74 171 1054 33 11 26 64 22 44 64 0 0 0 286 472 365 7456 22 52 187 44 88 187 0 0 0 671 1105 528 24506 39 92 334 78 156 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MinionSlayerSpawner MinionSlayerSpawner Spawner 225 49 0 0 xa 0 0 3 3 3 0 3 0 0 0 0 0 14 47 80 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 100 frame delay between spawning 40 total mon allowed 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 301 20 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 128 0 20 32 70 157 15 5 12 27 10 20 27 0 0 0 201 332 256 1927 16 37 131 31 62 131 0 0 0 597 983 469 13684 35 82 297 69 139 297 0 0 0 0 1 xxx xxx 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MinionIce/fireBoarSpawner MinionIce/fireBoarSpawner Spawner 225 50 0 0 xa 0 0 3 3 3 0 3 0 0 0 0 0 14 47 80 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 100 frame delay between spawning 40 total mon allowed 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 301 20 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 128 0 20 32 70 157 15 5 12 27 10 20 27 0 0 0 201 332 256 1927 16 37 131 31 62 131 0 0 0 597 983 469 13684 35 82 297 69 139 297 0 0 0 0 1 xxx xxx 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MinionIce/fireBoarSpawner MinionIce/fireBoarSpawner Spawner 225 51 0 0 xa 0 0 3 3 3 0 3 0 0 0 0 0 14 47 80 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 100 frame delay between spawning 40 total mon allowed 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 301 20 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 128 0 20 32 70 157 15 5 12 27 10 20 27 0 0 0 201 332 256 1927 16 37 131 31 62 131 0 0 0 597 983 469 13684 35 82 297 69 139 297 0 0 0 0 1 xxx xxx 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Minionice/hellSpawnSpawner Minionice/hellSpawnSpawner Spawner 225 52 0 0 xa 0 0 3 3 3 0 3 0 0 0 0 0 14 47 80 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 100 frame delay between spawning 40 total mon allowed 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 301 20 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 128 0 20 32 70 157 15 5 12 27 10 20 27 0 0 0 201 332 256 1927 16 37 131 31 62 131 0 0 0 597 983 469 13684 35 82 297 69 139 297 0 0 0 0 1 xxx xxx 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MinionIce/fireBoarSpawner MinionIce/fireBoarSpawner Spawner 225 53 0 0 xa 0 0 3 3 3 0 3 0 0 0 0 0 14 47 80 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 100 frame delay between spawning 40 total mon allowed 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 301 20 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 128 0 20 32 70 157 15 5 12 27 10 20 27 0 0 0 201 332 256 1927 16 37 131 31 62 131 0 0 0 597 983 469 13684 35 82 297 69 139 297 0 0 0 0 1 xxx xxx 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MinionIce/fireBoarSpawner MinionIce/fireBoarSpawner Spawner 225 54 0 0 xa 0 0 3 3 3 0 3 0 0 0 0 0 14 47 80 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 100 frame delay between spawning 40 total mon allowed 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 301 20 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 128 0 20 32 70 157 15 5 12 27 10 20 27 0 0 0 201 332 256 1927 16 37 131 31 62 131 0 0 0 597 983 469 13684 35 82 297 69 139 297 0 0 0 0 1 xxx xxx 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Minionice/hellSpawnSpawner Minionice/hellSpawnSpawner Spawner 225 55 0 0 xa 0 0 3 3 3 0 3 0 0 0 0 0 14 47 80 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 0 100 frame delay between spawning 40 total mon allowed 0 0 1 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 301 20 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 128 0 20 32 70 157 15 5 12 27 10 20 27 0 0 0 201 332 256 1927 16 37 131 31 62 131 0 0 0 597 983 469 13684 35 82 297 69 139 297 0 0 0 0 1 xxx xxx 1 0 2 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Imp1 Imp Imp 226 56 1 0 ip 0 0 2 2 1 0 1 7 7 1 50 0 31 64 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 25 Percent hitpoints for fear 14 Random teleport radius 15 Random teleport chance 12 Rand Walk Chance 0 1 1 1 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 207 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 292 0 1 186 0 1 283 0 1 299 0 1 282 54 1 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 41 68 156 792 30 12 24 58 20 40 58 0 0 0 274 451 348 6086 25 50 179 42 84 179 0 0 0 671 1105 528 24506 46 92 334 78 156 334 0 0 0 Act 5 Cast A Act 5 Champ A Act 5 Unique A Act 5 (N) Cast A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 Cast A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
Imp2 Imp Imp 226 57 1 0 ip 0 0 2 2 1 0 1 7 7 1 50 0 33 66 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 5 Distance from tower before teleport 25 Range to fire from tower 45 Chance to fire from tower 7 Tower error range 0 1 1 1 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 208 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 292 0 1 186 0 1 283 0 1 299 0 1 282 54 2 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 44 72 166 958 32 13 25 62 21 43 62 0 0 0 282 465 359 6968 26 51 184 43 87 184 0 0 0 671 1105 528 24506 46 92 334 78 156 334 0 0 0 Act 5 Cast A Act 5 Champ A Act 5 Unique A Act 5 (N) Cast A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 Cast A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
Imp3 Imp Imp 226 58 1 0 ip 0 0 2 2 1 0 1 7 7 1 50 0 34 67 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 10 Range to start walking away 40 Chance Walk Away 22 Range to fire bolt outer 25 Chance bolt outer 0 1 1 1 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 209 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 292 0 1 186 0 1 283 0 2 299 0 1 282 54 3 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 45 74 171 1054 33 13 26 64 22 44 64 0 0 0 286 472 365 7456 26 52 187 44 88 187 0 0 0 671 1105 528 24506 46 92 334 78 156 334 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
Imp4 Imp Imp 226 59 1 0 ip 0 0 2 2 1 0 1 7 7 1 50 0 36 69 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 13 Range to fire bolt inner 60 Chance bolt inner 0 1 1 1 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 210 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 292 0 1 186 0 1 283 0 3 299 0 1 282 54 4 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 48 78 181 1276 35 14 27 68 23 46 68 0 0 0 295 486 376 8536 27 53 192 45 91 192 0 0 0 671 1105 528 24506 46 92 334 78 156 334 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
Imp5 Imp Imp 226 60 1 0 ip 0 0 2 2 1 0 1 7 7 1 50 0 38 70 90 0 3 4 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 211 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 292 0 1 186 0 1 283 0 3 299 0 1 282 54 5 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 1 0 0 1 0 1 0 0 64 0 50 83 191 1543 37 14 29 71 24 48 71 0 0 0 299 493 381 9133 27 54 195 46 92 195 0 0 0 671 1105 528 24506 46 92 334 78 156 334 0 0 0 Act 5 Cast C Act 5 Champ C Act 5 Unique C Act 5 (N) Cast C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 Cast C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
CatapultS CatapultS CatapultS 227 61 1 0 65 0 0 3 3 3 0 2 0 0 0 50 0 34 67 90 0 1 1 1 1 1 1 1 0 0 0 0 1 1 0 0 0 1 0 8 0 hth 15 Chance to attack 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 21 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 133 265 38 1122 1 0 0 0 0 0 0 0 0 0 843 1685 82 7934 0 0 0 0 0 0 0 0 0 1974 3948 118 26079 0 0 0 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 0 2 0 3 0 0 0 1 0 0 0 0 0 1 -70 -80 130 110 0 0 0 0 0 1
CatapultE CatapultE CatapultE 227 62 1 0 64 0 0 3 3 3 0 2 0 0 0 50 0 34 67 90 0 1 1 1 1 1 1 1 0 0 0 0 1 1 0 0 0 1 0 8 0 hth 15 Chance to attack 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 21 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 133 265 38 1122 1 0 0 0 0 0 0 0 0 0 843 1685 82 7934 0 0 0 0 0 0 0 0 0 1974 3948 118 26079 0 0 0 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 0 2 0 3 0 0 0 1 0 0 0 0 0 1 -70 -60 130 110 0 0 0 0 0 1
CatapultSiege CatapultSiege CatapultSiege 227 63 1 0 64 0 0 3 3 3 0 2 0 0 0 50 0 32 65 90 0 1 1 1 1 1 1 1 0 0 0 0 1 1 0 0 0 1 0 8 0 hth 15 Chance to attack 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 21 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 125 250 36 927 1 0 0 0 0 0 0 0 0 0 818 1635 79 6930 0 0 0 0 0 0 0 0 0 1974 3948 118 26079 0 0 0 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 0 2 0 3 0 0 0 1 0 0 0 0 0 1 -70 -60 130 110 0 0 0 0 0 1
CatapultW CatapultW CatapultW 227 64 1 0 ua 0 0 3 3 3 0 2 0 0 0 50 0 34 67 90 0 1 1 1 1 1 1 1 0 0 0 0 1 1 0 0 0 1 0 8 0 hth 15 Chance to attack 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 21 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 133 265 38 1122 1 0 0 0 0 0 0 0 0 0 843 1685 82 7934 0 0 0 0 0 0 0 0 0 1974 3948 118 26079 0 0 0 0 0 0 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 0 2 0 3 0 0 0 1 0 0 0 0 0 1 -70 -80 130 110 0 0 0 0 0 1
Frozen Horror1 Frozen Horror Frozen Horror 228 65 1 0 f0 0 0 3 3 1 0 3 3 3 1 25 0 37 70 90 4 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 60 Chance to attack 40 Chance to walk 60 chance to cast 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 230 45 6 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 216 288 222 2560 48 14 22 94 18 24 69 0 0 0 1320 1760 455 16662 27 43 264 35 46 195 0 0 0 2961 3948 630 44707 46 73 451 59 78 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Frozen Horror2 Frozen Horror Frozen Horror 228 66 1 0 f0 0 0 3 3 1 0 3 3 3 1 15 0 38 70 90 4 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 60 Chance to attack 40 Chance to walk 65 chance to cast 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 230 45 7 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 221 295 228 2816 49 14 23 96 19 24 71 0 0 0 1320 1760 455 16662 27 43 264 35 46 195 0 0 0 2961 3948 630 44707 46 73 451 59 78 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
Frozen Horror3 Frozen Horror Frozen Horror 228 67 1 0 f0 0 0 3 3 1 0 3 3 3 1 0 0 39 70 90 4 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 60 Chance to attack 40 Chance to walk 70 chance to cast 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 230 45 8 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 227 303 234 3097 51 15 23 99 19 25 73 0 0 0 1320 1760 455 16662 27 43 264 35 46 195 0 0 0 2961 3948 630 44707 46 73 451 59 78 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
Frozen Horror4 Frozen Horror Frozen Horror 228 68 1 0 f0 0 0 3 3 1 0 3 3 3 1 0 0 40 70 90 4 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 60 Chance to attack 40 Chance to walk 75 chance to cast 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 230 45 9 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 233 310 240 3407 52 15 24 101 20 26 75 0 0 0 1320 1760 455 16662 27 43 264 35 46 195 0 0 0 2961 3948 630 44707 46 73 451 59 78 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
Frozen Horror5 Frozen Horror Frozen Horror 228 69 1 0 f0 0 0 3 3 1 0 3 3 3 1 0 0 41 70 90 4 2 3 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 60 Chance to attack 40 Chance to walk 80 chance to cast 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 230 45 10 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 75 0 0 0 0 0 85 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 238 318 246 3748 53 15 25 104 20 26 77 0 0 0 1320 1760 455 16662 27 43 264 35 46 195 0 0 0 2961 3948 630 44707 46 73 451 59 78 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0
Blood Lord1 Blood Lord Blood Lord 229 70 1 0 L3 0 0 3 3 1 0 3 9 9 1 50 0 33 66 90 4 1 2 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 0 9 0 hth 90 Chance to attack 85 Chance to walk 50 chance to frenzy 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 215 0 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 193 258 248 1933 64 14 31 126 14 31 126 0 0 0 1245 1660 536 14053 28 64 373 28 64 373 0 0 0 2961 3948 788 49426 50 114 677 50 114 677 0 0 0 Act 5 H2H A Act 5 Champ A Act 5 Unique A Act 5 (N) H2H A Act 5 (N) Champ A Act 5 (N) Unique A Act 5 H2H A Act 5 (H) Champ A Act 5 (H) Unique A 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Blood Lord2 Blood Lord Blood Lord 229 71 1 0 L3 0 0 3 3 1 0 3 9 9 1 40 0 35 68 90 4 1 2 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 0 9 0 hth 90 Chance to attack 85 Chance to walk 60 chance to frenzy 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 215 0 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 204 273 263 2339 68 15 33 133 15 33 133 0 0 0 1283 1710 553 16090 29 66 384 29 66 384 0 0 0 2961 3948 788 49426 50 114 677 50 114 677 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Blood Lord3 Blood Lord Blood Lord 229 72 1 0 L3 0 0 3 3 1 0 3 9 9 1 30 0 36 69 90 4 1 2 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 0 9 0 hth 90 Chance to attack 85 Chance to walk 70 chance to frenzy 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 215 0 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 210 280 270 2573 70 15 34 137 15 34 137 0 0 0 1301 1735 561 17216 29 67 390 29 67 390 0 0 0 2961 3948 788 49426 50 114 677 50 114 677 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Blood Lord4 Blood Lord Blood Lord 229 73 1 0 L3 0 0 3 3 1 0 3 9 9 1 20 0 40 70 90 4 1 2 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 0 9 0 hth 90 Chance to attack 85 Chance to walk 75 chance to frenzy 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 215 0 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 1 0 0 0 0 0 64 0 233 310 300 3767 77 17 38 152 17 38 152 0 0 0 1320 1760 569 18421 30 68 396 30 68 396 0 0 0 2961 3948 788 49426 50 114 677 50 114 677 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Blood Lord5 Blood Lord Blood Lord 229 74 1 0 L3 0 0 3 3 1 0 3 9 9 1 0 0 43 70 90 4 1 2 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 0 9 0 hth 90 Chance to attack 85 Chance to walk 80 chance to frenzy 10 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 1 215 0 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 0 0 2 0 0 0 0 1 0 0 0 0 0 64 0 249 333 323 5013 83 18 40 163 18 40 163 0 0 0 1320 1760 569 18421 30 68 396 30 68 396 0 0 0 2961 3948 788 49426 50 114 677 50 114 677 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Larzuk Larzuk NPC 230 75 1 0 XR 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Drehya Drehya NPC 231 76 1 0 XS 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Malah Malah NPC 232 77 1 0 XT 0 0 2 2 0 0 2 1 1 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Nihlathak Town Nihlathak Town NPC 233 78 1 0 0J 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Qual-Kehk Qual-Kehk NPC 234 79 1 0 XV 0 0 2 2 0 0 2 3 3 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Catapult Spotter S Catapult Spotter S Catapult Spotter S 235 80 1 0 k9 0 0 0 0 1 0 1 0 0 1 50 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 8 Chance to attack 25 delay between attack thinks 25 Range 10 Random range 10 Shots per skill 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 287 0 1 288 0 1 303 0 1 304 0 1 305 0 1 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 0 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
Catapult Spotter E Catapult Spotter E Catapult Spotter E 235 81 1 0 k9 0 0 0 0 1 0 1 0 0 1 50 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 8 Chance to attack 25 delay between attack thinks 25 Range 10 Random range 10 Shots per skill 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 287 0 1 288 0 1 303 0 1 304 0 1 305 0 1 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 0 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
Catapult Spotter Siege Catapult Spotter Siege Catapult Spotter Siege 235 82 1 0 k9 0 0 0 0 1 0 1 0 0 1 50 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 8 Chance to attack 25 delay between attack thinks 25 Range 10 Random range 10 Shots per skill 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 287 0 1 288 0 1 303 0 1 304 0 1 305 0 1 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 0 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
Catapult Spotter W Catapult Spotter W Catapult Spotter W 235 83 1 0 k9 0 0 0 0 1 0 1 0 0 1 50 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 8 Chance to attack 25 delay between attack thinks 25 Range 10 Random range 10 Shots per skill 1 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 287 0 1 288 0 1 303 0 1 304 0 1 305 0 1 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 128 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 0 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
DeckardCain DeckardCain NPC 236 84 0 1 1D 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 0 0 0 0 1 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
tyrael tyrael NPC 237 85 0 0 TY 0 0 2 2 4 0 4 0 0 1 50 0 99 70 90 0 1 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 3 0 hth 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 1 0 0 0 1 0 1 0 1 11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 144 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 1 -100 -20 60 100 0 0 0 0 0 1
Act 5 Combatant Barbarian Fighter NPC 238 86 1 0 0A 0 0 2 2 3 0 2 5 14 1 50 0 24 57 90 0 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 6 0 1hs 15 passiveness - think time between attacks 85 Chance to run to target 15 Range to walk towards target 0 0 1 1 1 0 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 70 0 0 0 0 0 70 0 0 0 0 0 0 0 0 1 0 0 96 0 285 380 360 0 63 5 9 123 0 0 0 0 0 0 2153 2870 926 0 11 22 430 0 0 0 0 0 0 5921 7895 1575 0 23 46 903 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 Combatant Barbarian Fighter NPC 239 87 1 0 0A 0 0 2 2 3 0 2 5 14 1 50 0 30 63 90 0 1 1 1 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 5 0 2hs 15 passiveness - think time between attacks 85 Chance to run to target 15 Range to walk towards target 0 0 1 1 1 0 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 70 0 0 0 0 0 70 0 0 0 0 0 0 0 0 1 0 0 96 0 140 220 380 0 78 17 23 153 0 0 0 0 0 0 560 3170 1024 0 37 49 475 0 0 0 0 0 0 1400 7895 1575 0 69 92 903 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Barricade Wall Right Barricade Wall Right Barricade Wall Right 240 88 1 0 A6 0 0 3 3 3 1 3 0 0 0 0 0 26 59 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 50 100 0 0 0 0 50 100 50 0 0 0 50 100 0 0 0 0 0 1 0 0 0 3 0 128 0 51 82 137 0 1 0 0 0 0 0 0 0 0 0 371 594 336 0 0 0 0 0 0 0 0 0 0 987 1579 551 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Barricade Wall Left Barricade Wall Left Barricade Wall Left 240 89 1 0 AK 0 0 3 3 3 1 3 0 0 0 0 0 26 59 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 50 100 0 0 0 0 50 100 50 0 0 0 50 100 0 0 0 0 0 1 0 0 0 3 0 128 0 51 82 137 0 1 0 0 0 0 0 0 0 0 0 371 594 336 0 0 0 0 0 0 0 0 0 0 987 1579 551 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Nihlathak Nihlathak outside town Not a NPC 241 90 0 1 XU 0 0 2 2 0 0 2 7 7 1 50 0 65 75 95 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 30 chance to teleport 20 teleport range 80 corpse explode prob 75 chance to whip minion 8 min distance before walking away 1 1 1 1 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 1 0 292 0 1 295 0 1 74 0 15 230 48 20 302 0 1 255 255 255 0 0 0 0 70 70 0 0 0 0 70 70 50 0 0 0 70 70 0 0 0 0 0 0 0 0 0 0 1 80 0 249 249 488 17090 124 36 48 246 36 48 246 0 0 0 943 943 609 10819 43 58 424 43 58 424 0 0 0 2083 2083 831 50000 72 97 714 72 97 714 0 0 0 Nihlathak Nihlathak Nihlathak Nihlathak (N) Nihlathak Nihlathak Nihlathak Nihlathak Nihlathak 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Drehya Drehya outside town NPC 242 91 0 1 XS 0 0 2 2 0 0 2 2 2 1 50 0 99 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 31 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 80 1 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Evil hut Something special 243 92 1 1 2T 0 0 3 3 4 0 4 0 0 1 50 0 30 63 90 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 80 frames between spawn 0 15 max spawn 0 0 1 1 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 7 1 1 167 47 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 150 0 0 50 70 70 0 0 0 70 70 70 0 50 0 70 70 70 0 0 0 0 0 0 0 0 0 0 0 0 144 0 176 294 113 810 1 0 0 0 0 0 0 0 0 0 1189 1981 256 6399 0 0 0 0 0 0 0 0 0 2961 4934 394 27569 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 1 1 0 0 0 0 1 -100 -40 145 160 0 0 40 0 1 1
Death Mauler1 Death Mauler Death Mauler 244 93 1 0 m5 0 0 3 3 3 0 3 4 4 1 50 0 32 65 90 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 75 Chance to attack 65 Chance to walk 15 range 50 chance to dig 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 308 46 1 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 64 0 81 100 240 1151 83 10 15 163 8 19 60 0 0 0 531 654 528 8602 21 31 490 18 40 181 0 0 0 1283 1579 788 32371 39 57 903 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
Death Mauler2 Death Mauler Death Mauler 244 94 1 0 m5 0 0 3 3 3 0 3 4 4 1 50 0 35 68 90 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 75 Chance to attack 65 Chance to walk 18 range 60 chance to dig 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 308 46 2 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 0 0 2 0 0 0 0 0 0 0 0 0 0 64 0 89 109 263 1532 90 11 17 178 9 21 66 0 0 0 556 684 553 10538 22 33 513 18 42 190 0 0 0 1283 1579 788 32371 39 57 903 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
Death Mauler3 Death Mauler Death Mauler 244 95 1 0 m5 0 0 3 3 3 0 3 5 5 1 50 0 38 70 90 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 75 Chance to attack 65 Chance to walk 19 range 70 chance to dig 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 308 46 3 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 0 0 0 64 0 96 118 285 2039 98 12 18 193 10 23 71 0 0 0 572 704 569 12065 23 34 528 19 43 195 0 0 0 1283 1579 788 32371 39 57 903 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
Death Mauler4 Death Mauler Death Mauler 244 96 1 0 m5 0 0 3 3 3 0 3 5 5 1 50 0 40 70 90 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 75 Chance to attack 65 Chance to walk 20 range 80 chance to dig 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 308 46 4 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 64 0 101 124 300 2467 103 13 19 203 11 24 75 0 0 0 572 704 569 12065 23 34 528 19 43 195 0 0 0 1283 1579 788 32371 39 57 903 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
Death Mauler5 Death Mauler Death Mauler 244 97 1 0 m5 0 0 3 3 3 0 3 6 6 1 50 0 41 70 90 0 4 5 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 hth 75 Chance to attack 65 Chance to walk 21 range 90 chance to dig 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 308 46 5 0 0 0 0 0 0 0 0 0 0 0 0 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 0 0 0 0 0 0 0 0 64 0 103 127 308 2714 105 13 19 208 11 25 77 0 0 0 572 704 569 12065 23 34 528 19 43 195 0 0 0 1283 1579 788 32371 39 57 903 32 73 334 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0
POW Barbarian Fighter NPC 245 98 1 0 0A 0 0 2 2 3 0 2 4 7 1 50 0 40 70 90 0 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 6 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 50 50 50 50 50 0 50 50 50 50 50 0 50 50 50 50 50 3 0 0 0 0 0 0 0 0 0 0 96 0 775 1085 201 0 1 0 0 0 0 0 0 0 0 0 572 704 569 12065 23 34 528 19 43 195 0 0 0 1283 1579 788 32371 39 57 903 32 73 334 0 0 0 0 1 xxx xxx 1 1 2 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 Townguard Barbarian Fighter NPC 246 99 1 0 0A 0 0 2 2 3 0 2 5 14 1 50 0 30 63 90 0 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 6 0 1hs 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 96 0 1 1 151 0 1 0 0 0 0 0 0 0 0 0 8 8 343 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 Townguard Barbarian Fighter NPC 246 100 1 0 0A 0 0 2 2 3 0 2 5 14 1 50 0 30 63 90 0 1 1 1 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 5 0 2hs 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 96 0 1 1 151 0 1 0 0 0 0 0 0 0 0 0 8 8 343 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Ancient Statue 1 Ancient Statue 1 NPC 247 101 0 0 0G 0 0 2 2 3 0 2 5 14 1 50 0 40 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 6 1 0 302 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 96 1 2 2 201 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
Ancient Statue 2 Ancient Statue 2 NPC 247 102 0 0 0H 0 0 2 2 3 0 2 5 14 1 50 0 40 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 6 1 0 302 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 96 1 2 2 201 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
Ancient Statue 3 Ancient Statue 3 NPC 247 103 0 0 0I 0 0 2 2 3 0 2 5 14 1 50 0 40 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 0 0 1 6 1 0 302 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 96 1 2 2 201 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 1
Ancient Barbarian 1 Ancient Barbarian 1 unique 248 104 0 0 0D 0 0 2 2 3 0 2 10 10 1 0 0 37 70 90 3 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 15 max dist for whirlwind 25 chance to do whirlwind 75 chance to do melee attack 8 Whirlwind pass through distance 0 1 1 1 1 1 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 1 0 151 49 15 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 70 0 70 0 0 70 70 0 70 0 0 70 75 0 100 0 0 70 0 0 0 0 0 1 0 0 0 0 0 96 0 129 144 186 0 0 2 3 188 2 3 188 0 0 0 792 880 381 0 4 7 528 4 7 528 0 0 0 1776 1974 528 0 7 11 903 7 11 903 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Ancient Barbarian 2 Ancient Barbarian 2 unique 248 105 0 0 0F 0 0 2 2 3 0 2 10 10 1 25 0 37 70 90 3 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 hth 15 max dist for throwing axes 50 chance to throw axe 25 chance to shout 25 chance to run away 7 Steps to take walking away 1 1 1 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 140 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 1 0 138 0 5 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 0 0 70 70 0 0 0 0 70 70 0 50 0 0 100 70 0 0 0 0 0 0 1 0 0 0 0 0 96 0 129 144 186 0 0 2 3 188 2 3 188 0 0 0 792 880 381 0 4 7 528 4 7 528 0 0 0 1776 1974 528 0 7 11 903 7 11 903 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Ancient Barbarian 3 Ancient Barbarian 3 unique 248 106 0 0 0E 0 0 2 2 3 0 2 10 10 1 0 0 37 70 90 3 1 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 hth 15 max dist for leap attack 50 chance to do leap attack 75 chance to do melee attack 0 0 1 1 1 1 1 1 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 0 1 1 0 1 0 143 53 5 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 70 0 70 0 0 70 70 0 70 0 0 70 75 0 70 0 0 100 0 0 0 0 0 1 0 0 0 0 0 96 0 129 144 186 0 0 2 3 188 2 3 188 0 0 0 792 880 381 0 4 7 528 4 7 528 0 0 0 1776 1974 528 0 7 11 903 7 11 903 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Throne Baal Throne Baal Throne 249 107 0 0 41 0 0 0 0 3 0 4 6 6 1 0 0 60 70 90 3 1 1 1 1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 6 0 hth 25 chance to curse 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 6 1 1 87 0 5 285 0 1 212 0 1 0 0 0 0 0 0 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 50 0 0 0 1 1 1 0 0 1 0 1 112 0 7666 7666 311 292107 77 28 41 151 41 66 121 0 0 0 29330 29330 392 212353 34 50 264 50 81 211 0 0 0 65785 65785 543 569765 57 85 451 85 137 361 0 0 0 0 1 xxx xxx 0 0 1 0 12 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Crab Baal Crab Baal Crab 250 108 0 0 42 0 0 3 3 3 0 4 6 6 1 15 0 60 75 95 3 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 11 0 hth 0 0 0 0 0 1 1 1 0 1 1 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 2 1 0 1 1 316 0 1 317 57 1 315 0 1 318 0 1 0 0 0 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 50 0 0 0 1 1 1 0 0 1 0 1 112 0 7666 7666 311 297964 77 28 41 151 50 100 454 0 0 0 31414 31414 420 303809 36 53 283 65 130 848 0 0 0 69431 69431 574 777763 60 89 476 109 217 1429 0 0 0 Baal Baal Baal Baal (N) Baal Baal Baal Baal Baal 0 1 xxx xxx 1 0 1 0 12 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Taunt Baal Taunt Baal Taunt 251 109 1 0 K9 0 0 0 0 0 0 0 12 12 1 0 0 0 33 66 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 3 min dist to walk closer 10 neutrals before attack 20 min distance to warp 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 284 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 4 4 180 0 0 0 0 0 0 0 0 0 0 14 14 387 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Putrid Defiler1 Putrid Defiler Putrid Defiler 252 110 1 0 45 0 0 2 2 3 0 4 6 6 1 50 0 35 68 90 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 15 Range to start walking away 5 distance to walk away 0 0 0 1 1 1 1 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 1 1 300 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 100 2 0 0 1 1 1 0 1 1 0 1 112 0 82 136 263 1371 46 7 20 89 0 0 0 0 0 0 513 855 553 9433 13 39 256 0 0 0 0 0 0 1184 1974 788 28977 23 69 451 0 0 0 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Putrid Defiler2 Putrid Defiler Putrid Defiler 252 111 1 0 45 0 0 2 2 3 0 4 6 6 1 50 0 37 70 90 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 15 Range to start walking away 5 distance to walk away 0 0 0 1 1 1 1 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 1 1 300 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 100 2 0 0 1 1 1 0 1 1 0 1 112 0 86 144 278 1659 48 7 21 94 0 0 0 0 0 0 528 880 569 10800 14 41 264 0 0 0 0 0 0 1184 1974 788 28977 23 69 451 0 0 0 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Putrid Defiler3 Putrid Defiler Putrid Defiler 252 112 1 0 45 0 0 2 2 3 0 4 6 6 1 50 0 38 70 90 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 15 Range to start walking away 5 distance to walk away 0 0 0 1 1 1 1 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 1 1 300 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 100 2 0 0 1 1 1 0 1 1 0 1 112 0 89 148 285 1825 49 7 21 96 0 0 0 0 0 0 528 880 569 10800 14 41 264 0 0 0 0 0 0 1184 1974 788 28977 23 69 451 0 0 0 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Putrid Defiler4 Putrid Defiler Putrid Defiler 252 113 1 0 45 0 0 2 2 3 0 4 6 6 1 50 0 39 70 90 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 15 Range to start walking away 5 distance to walk away 0 0 0 1 1 1 1 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 1 1 300 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 100 2 0 0 1 1 1 0 1 1 0 1 112 0 91 151 293 2007 51 7 22 99 0 0 0 0 0 0 528 880 569 10800 14 41 264 0 0 0 0 0 0 1184 1974 788 28977 23 69 451 0 0 0 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Putrid Defiler5 Putrid Defiler Putrid Defiler 252 114 1 0 45 0 0 2 2 3 0 4 6 6 1 50 0 40 70 90 0 1 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 hth 15 Range to start walking away 5 distance to walk away 0 0 0 1 1 1 1 1 0 0 0 1 1 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 1 1 300 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 100 2 0 0 1 1 1 0 1 1 0 1 112 0 93 155 300 2208 52 8 23 101 0 0 0 0 0 0 528 880 569 10800 14 41 264 0 0 0 0 0 0 1184 1974 788 28977 23 69 451 0 0 0 0 0 0 Act 5 Cast B Act 5 Champ B Act 5 Unique B Act 5 (N) Cast B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 Cast B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 0 1 0 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Pain Worm1 Pain Worm Pain Worm 253 115 1 0 46 0 0 2 2 1 0 1 8 10 1 50 0 34 67 90 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 100 0 50 0 2 0 0 1 0 0 1 0 0 0 0 48 0 45 74 171 36 44 6 13 86 0 0 0 0 0 0 286 472 365 252 13 26 253 0 0 0 0 0 0 671 1105 528 828 23 46 451 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Pain Worm2 Pain Worm Pain Worm 253 116 1 0 46 0 0 2 2 1 0 1 8 10 1 50 0 35 68 90 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 100 50 0 2 0 0 1 0 0 1 0 0 0 0 48 0 46 76 176 39 46 7 13 89 0 0 0 0 0 0 291 479 370 270 13 26 256 0 0 0 0 0 0 671 1105 528 828 23 46 451 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Pain Worm3 Pain Worm Pain Worm 253 117 1 0 46 0 0 2 2 1 0 1 8 10 1 50 0 36 69 90 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 1 0 0 0 0 48 0 48 78 181 43 47 7 14 91 0 0 0 0 0 0 295 486 376 288 13 27 260 0 0 0 0 0 0 671 1105 528 828 23 46 451 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Pain Worm4 Pain Worm Pain Worm 253 118 1 0 46 0 0 2 2 1 0 1 8 10 1 50 0 37 70 90 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 50 100 2 0 0 1 0 0 1 0 0 0 0 48 0 49 81 186 47 48 7 14 94 0 0 0 0 0 0 299 493 381 309 14 27 264 0 0 0 0 0 0 671 1105 528 828 23 46 451 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Pain Worm5 Pain Worm Pain Worm 253 119 1 0 46 0 0 2 2 1 0 1 8 10 1 50 0 42 70 90 0 2 2 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 1 0 0 0 0 48 0 55 91 211 76 54 8 16 106 0 0 0 0 0 0 299 493 381 309 14 27 264 0 0 0 0 0 0 671 1105 528 828 23 46 451 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Bunny Bunny Bunny 254 120 0 0 48 1 1 0 0 0 0 1 2 2 1 50 0 99 70 90 0 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Council Member BaalHighPriest High Priest 255 121 1 0 HP 0 0 2 2 3 0 2 10 12 1 50 0 40 70 90 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 75 12 40 40 0 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 189 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 1 0 0 0 62 0 4 179 0 4 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 96 0 155 310 201 2909 39 13 30 75 0 0 0 0 0 0 880 1760 381 14225 23 54 195 0 0 0 0 0 0 1974 3948 528 38166 39 92 334 0 0 0 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 (H) H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
VenomLord VenomLord Megademon 256 122 1 0 DM 0 0 3 3 3 0 3 10 16 1 50 0 40 70 90 2 2 3 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 2 0 hth 80 50 0 0 10 1 1 1 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 190 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 1 0 0 0 178 0 4 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 70 0 0 70 0 0 80 0 0 100 50 0 95 0 0 100 2 0 0 1 0 1 0 0 1 0 0 96 0 155 310 240 3092 52 14 24 101 20 26 75 0 0 0 880 1760 455 15120 24 43 264 35 46 195 0 0 0 1974 3948 630 40567 41 73 451 59 78 334 0 0 0 Act 5 H2H B Act 5 Champ B Act 5 Unique B Act 5 (N) H2H B Act 5 (N) Champ B Act 5 (N) Unique B Act 5 (H) H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0 1 xxx xxx 1 1 1 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Crab to Stairs Baal Crab Baal Crab 257 123 0 0 42 0 0 0 0 3 0 4 6 6 1 50 0 60 70 90 3 1 1 1 1 1 1 1 0 0 0 1 0 0 0 0 0 0 0 6 0 hth 4 Range to stairs before stopping 0 0 0 0 1 1 1 1 1 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 6 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 33 33 33 50 0 0 50 50 50 50 50 0 50 50 50 50 0 0 0 1 1 1 0 0 1 0 1 112 0 2 2 311 3014 1 0 0 0 0 0 0 0 0 0 9 9 392 2191 0 0 0 0 0 0 0 0 0 20 20 543 5878 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 12 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 Hireling 1hs Act5Hireling NPC 258 124 1 0 0A 0 0 2 2 3 0 2 8 14 1 50 0 24 57 90 0 1 1 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 0 6 0 1hs 1 Melee attacker 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 1 5 1 1 10 30 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 70 0 0 0 0 0 70 2 0 0 0 0 0 0 0 1 0 0 96 0 285 380 121 0 32 1 1 61 0 0 0 0 0 0 2153 2870 310 0 33 44 215 0 0 0 0 0 0 5921 7895 528 0 69 92 451 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 Hireling 2hs Act5Hireling NPC 258 125 1 0 0A 0 0 2 2 3 0 2 8 14 1 50 0 30 63 90 0 1 1 1 1 0 0 0 1 0 0 1 1 0 0 0 0 0 0 5 0 2hs 1 Melee attacker 0 0 0 0 1 1 1 0 1 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 1 5 1 1 10 30 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 70 0 0 0 0 0 70 0 0 0 0 0 70 2 0 0 0 0 0 0 0 1 0 0 96 0 140 220 380 0 39 1 1 76 0 0 0 0 0 0 560 3170 343 0 37 49 238 0 0 0 0 0 0 1400 7895 528 0 69 92 451 0 0 0 0 0 0 0 1 xxx xxx 1 1 1 1 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Tentacle Baal Tentacle Baal Tentacle 259 126 1 0 44 0 0 2 2 1 0 1 0 0 1 50 0 34 67 90 4 2 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 70 attack prob 24 delay 10 lifetime 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 0 0 0 48 0 45 74 171 0 44 6 19 86 0 0 0 0 0 0 286 472 365 0 13 39 253 0 0 0 0 0 0 671 1105 528 0 23 69 451 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Tentacle Baal Tentacle Baal Tentacle 259 127 1 0 44 0 0 2 2 1 0 1 0 0 1 50 0 35 68 90 4 2 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 80 attack prob 22 delay 10 lifetime 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 0 0 0 48 0 46 76 176 0 46 7 20 89 0 0 0 0 0 0 291 479 370 0 13 39 256 0 0 0 0 0 0 671 1105 528 0 23 69 451 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Tentacle Baal Tentacle Baal Tentacle 259 128 1 0 44 0 0 2 2 1 0 1 0 0 1 50 0 36 69 90 4 2 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 90 attack prob 20 delay 10 lifetime 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 0 0 0 48 0 48 78 181 0 47 7 20 91 0 0 0 0 0 0 295 486 376 0 13 40 260 0 0 0 0 0 0 671 1105 528 0 23 69 451 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Tentacle Baal Tentacle Baal Tentacle 259 129 1 0 44 0 0 2 2 1 0 1 0 0 1 50 0 37 70 90 4 2 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 90 attack prob 18 delay 10 lifetime 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 0 0 0 48 0 49 81 186 0 48 7 21 94 0 0 0 0 0 0 299 493 381 0 14 41 264 0 0 0 0 0 0 671 1105 528 0 23 69 451 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Tentacle Baal Tentacle Baal Tentacle 259 130 1 0 44 0 0 2 2 1 0 1 0 0 1 50 0 42 70 90 4 2 2 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 hth 90 attack prob 16 delay 10 lifetime 0 0 1 1 0 1 1 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 100 0 2 0 0 1 0 0 0 0 0 0 0 48 0 55 91 211 0 54 8 24 106 0 0 0 0 0 0 299 493 381 0 14 41 264 0 0 0 0 0 0 671 1105 528 0 23 69 451 0 0 0 0 0 0 0 1 xxx xxx 1 0 1 0 3 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0
Injured Barbarian 1 InjuredBarb1 InjuredBarb1 260 131 1 0 6z 1 1 2 2 0 0 1 0 0 1 50 0 99 70 90 0 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 2 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Injured Barbarian 2 InjuredBarb2 InjuredBarb2 261 132 1 0 6z 1 1 2 2 0 0 1 0 0 1 50 0 99 70 90 0 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 2 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Injured Barbarian 3 InjuredBarb3 InjuredBarb3 262 133 1 0 6z 1 1 2 2 0 0 1 0 0 1 50 0 99 70 90 0 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 4 4 497 0 1 0 0 0 0 0 0 0 0 0 9 9 381 0 0 0 0 0 0 0 0 0 0 20 20 528 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 2 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Crab Clone Baal Crab Clone Baal Crab Clone 263 134 0 0 42 0 0 3 3 3 0 4 6 6 1 15 0 60 70 90 3 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 0 0 0 11 0 hth 0 0 0 0 0 1 1 1 0 1 1 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 2 1 0 1 1 316 0 1 317 57 1 315 0 1 318 0 1 0 0 0 255 255 255 0 0 15 15 15 33 0 0 25 25 25 25 50 0 25 25 25 25 0 0 0 1 1 1 0 0 1 0 1 112 0 2300 2300 311 0 77 28 41 151 50 100 454 0 0 0 8800 8800 392 0 34 50 264 61 122 791 0 0 0 19738 19738 543 0 57 85 451 103 206 1354 0 0 0 0 1 xxx xxx 1 0 1 0 12 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
Baals Minion Baals Minion1 Baals Minion1 264 135 1 0 43 0 0 3 3 3 0 3 8 8 1 50 0 55 70 90 3 1 1 1 1 1 1 1 0 0 0 1 1 1 1 0 0 0 0 9 0 hth 90 Chance to attack 85 Chance to walk 50 chance to smite 17 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 1 0 97 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 50 0 50 95 0 0 95 0 50 95 50 0 100 0 50 95 2 0 0 1 0 1 0 0 1 0 0 112 0 528 739 285 21848 140 10 31 278 5 56 264 0 0 0 2200 3080 392 25580 14 41 528 7 74 501 0 0 0 4934 6908 543 68633 23 69 903 11 126 857 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 0 1 0 12 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baals Minion Baals Minion2 Baals Minion2 264 136 1 0 43 0 0 3 3 3 0 3 8 8 1 50 0 57 70 90 3 1 1 1 1 1 1 1 0 0 0 1 1 1 1 0 0 0 0 9 0 hth 90 Chance to attack 85 Chance to walk 50 chance to smite 17 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 1 0 97 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 50 0 50 95 0 0 95 0 50 95 50 0 100 0 50 95 2 0 0 1 0 1 0 0 1 0 0 112 0 547 766 295 26436 145 11 32 288 5 58 273 0 0 0 2200 3080 392 25580 14 41 528 7 74 501 0 0 0 4934 6908 543 68633 23 69 903 11 126 857 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 0 1 0 12 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baals Minion Baals Minion3 Baals Minion3 264 137 1 0 43 0 0 3 3 3 0 3 8 8 1 50 0 60 70 90 3 1 1 1 1 1 1 1 0 0 0 1 1 1 1 0 0 0 0 9 0 hth 90 Chance to attack 85 Chance to walk 50 chance to smite 17 Think delay 0 1 1 1 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 1 1 0 0 1 1 0 0 0 2 1 0 1 0 97 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 0 50 0 50 95 0 0 95 0 50 95 50 0 100 0 50 95 2 0 0 1 0 1 0 0 1 0 0 112 0 575 805 311 35187 153 11 33 303 6 61 287 0 0 0 2200 3080 392 25580 14 41 528 7 74 501 0 0 0 4934 6908 543 68633 23 69 903 11 126 857 0 0 0 Act 5 H2H C Act 5 Champ C Act 5 Unique C Act 5 (N) H2H C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0 1 xxx xxx 1 0 1 0 12 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Worldstone Effect Worldstone Effect Worldstone Effect 265 138 1 0 K9 0 0 0 0 0 0 0 12 12 1 0 0 0 33 66 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 hth 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65535 65535 65535 65535 65535 65535 65535 65535 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 1 0 284 0 1 0 0 0 0 0 0 0 0 0 0 0 0 255 178 64 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 96 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 4 4 180 0 0 0 0 0 0 0 0 0 0 14 14 387 0 0 0 0 0 0 0 0 0 0 0 1 xxx xxx 0 0 1 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

606
txt/MonStats2.txt Normal file
View File

@ -0,0 +1,606 @@
Id Height OverlayHeight pixHeight SizeX SizeY spawnCol MeleeRng BaseW HitClass HDv TRv LGv Rav Lav RHv LHv SHv S1v S2v S3v S4v S5v S6v S7v S8v HD TR LG RA LA RH LH SH S1 S2 S3 S4 S5 S6 S7 S8 TotalPieces mDT mNU mWL mGH mA1 mA2 mBL mSC mS1 mS2 mS3 mS4 mDD mKB mSQ mRN dDT dNU dWL dGH dA1 dA2 dBL dSC dS1 dS2 dS3 dS4 dDD dKB dSQ dRN A1mv A2mv SCmv S1mv S2mv S3mv S4mv noGfxHitTest htTop htLeft htWidth htHeight restore automapCel noMap noOvly isSel alSel noSel shiftSel corpseSel isAtt revive critter small large soft inert objCol deadCol unflatDead Shadow noUniqueShift compositeDeath localBlood Bleed Light light-r light-g light-b Utrans Utrans(N) Utrans(H) Heart BodyPart InfernoLen InfernoAnim InfernoRollback ResurrectMode ResurrectSkill EOL
skeleton1 3 2 80 2 2 0 1hs 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,fla,hax,hax,hax,mac,mac,mac,scm,scm" "nil,buc,lrg,kit,sml" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
skeleton2 3 2 80 2 2 0 1hs 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,fla,hax,hax,hax,mac,mac,mac,scm,scm" "nil,buc,lrg,kit,sml" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
skeleton3 3 2 80 2 2 0 1hs 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,fla,hax,hax,hax,mac,mac,mac,scm,scm" "nil,buc,lrg,kit,sml" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
skeleton4 3 2 80 2 2 0 1hs 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,fla,hax,hax,hax,mac,mac,mac,scm,scm" "nil,buc,lrg,kit,sml" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
skeleton5 3 2 80 2 2 0 1hs 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,fla,hax,hax,hax,mac,mac,mac,scm,scm" "nil,buc,lrg,kit,sml" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" "nil,nil,nil,nil,nil,nil,nil,nil,nil,lit,med,hvy" 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
zombie1 3 2 72 2 2 0 hth 12 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "bld,lhr,shr" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
zombie2 3 2 72 2 2 0 hth 12 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "bld,lhr,shr" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
zombie3 3 2 72 2 2 0 hth 12 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "bld,lhr,shr" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
zombie4 3 2 72 2 2 0 hth 12 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "bld,lhr,shr" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
zombie5 3 2 72 2 2 0 hth 12 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "bld,lhr,shr" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead1 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead2 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead3 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead4 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead5 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
foulcrow1 2 2 88 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
foulcrow2 2 2 88 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
foulcrow3 2 2 88 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
foulcrow4 2 2 88 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
fallen1 1 1 64 2 2 0 hth 3 lit "ssd,clb,axe" "nil,sml,buc,tch" "lit,med" lit lit 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
fallen2 1 1 64 2 2 0 hth 3 lit "ssd,clb,axe" "nil,sml,buc,tch" "lit,med" lit lit 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
fallen3 1 1 64 2 2 0 hth 3 lit "ssd,clb,axe" "nil,sml,buc,tch" "lit,med" lit lit 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
fallen4 1 1 64 2 2 0 hth 3 lit "ssd,clb,axe" "nil,sml,buc,tch" "lit,med" lit lit 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
fallen5 1 1 64 2 2 0 hth 3 lit "ssd,clb,axe" "nil,sml,buc,tch" "lit,med" lit lit 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
brute2 3 3 104 3 3 0 hth 1 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
brute3 3 3 104 3 3 0 hth 1 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
brute4 3 3 104 3 3 0 hth 1 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
brute5 3 3 104 3 3 0 hth 1 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
brute1 3 3 104 3 3 0 hth 1 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
sandraider1 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider2 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider3 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider4 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider5 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
gorgon1 3 2 96 3 3 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
gorgon2 3 2 96 3 3 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
gorgon3 3 2 96 3 3 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
gorgon4 3 2 96 3 3 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
wraith1 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
wraith2 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
wraith3 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
wraith4 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
wraith5 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
corruptrogue1 3 2 80 2 2 0 1hs 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,clb,fla,flc,hax,lsd,mac,scm,ssd,whm,sbr" "nil,buc,lrg,kit" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
corruptrogue2 3 2 80 2 2 0 1hs 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,clb,fla,flc,hax,lsd,mac,scm,ssd,whm,sbr" "nil,buc,lrg,kit" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
corruptrogue3 3 2 80 2 2 0 1hs 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,clb,fla,flc,hax,lsd,mac,scm,ssd,whm,sbr" "nil,buc,lrg,kit" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
corruptrogue4 3 2 80 2 2 0 1hs 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,clb,fla,flc,hax,lsd,mac,scm,ssd,whm,sbr" "nil,buc,lrg,kit" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
corruptrogue5 3 2 80 2 2 0 1hs 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "axe,clb,fla,flc,hax,lsd,mac,scm,ssd,whm,sbr" "nil,buc,lrg,kit" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 10 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
baboon1 3 3 96 3 3 0 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
baboon2 3 3 96 3 3 0 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
baboon3 3 3 96 3 3 0 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
baboon4 3 3 96 3 3 0 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
baboon5 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman1 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman2 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman3 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman4 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman5 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
fallenshaman1 1 2 64 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
fallenshaman2 1 2 64 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
fallenshaman3 1 2 64 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
fallenshaman4 1 2 64 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
fallenshaman5 1 2 64 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
quillrat1 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
quillrat2 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
quillrat3 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
quillrat4 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
quillrat5 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandmaggot1 1 1 48 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandmaggot2 1 1 48 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandmaggot3 1 1 48 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandmaggot4 1 1 48 3 3 0 hth 3 lit med 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandmaggot5 1 1 48 3 3 0 hth 3 lit med 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper1 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper2 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper3 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper4 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper5 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandleaper1 3 1 96 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
sandleaper2 3 1 96 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
sandleaper3 3 1 96 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
sandleaper4 3 1 96 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
sandleaper5 3 1 96 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
pantherwoman1 3 2 96 2 2 0 hth 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" whp buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
pantherwoman2 3 2 96 2 2 0 hth 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" whp buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
pantherwoman3 3 2 96 2 2 0 hth 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" whp buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
pantherwoman4 3 2 96 2 2 0 hth 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" whp buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
swarm1 2 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
swarm2 2 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
swarm3 2 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
swarm4 2 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
scarab1 3 2 80 3 3 0 hth 3 "lit,med" lit "lit,med,hvy" 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
scarab2 3 2 80 3 3 0 hth 3 "lit,med" lit "lit,med,hvy" 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
scarab3 3 2 80 3 3 0 hth 3 "lit,med" lit "lit,med,hvy" 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
scarab4 3 2 80 3 3 0 hth 3 "lit,med" lit "lit,med,hvy" 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
scarab5 3 2 80 3 3 0 hth 3 "lit,med" lit "lit,med,hvy" 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
mummy1 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
mummy2 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
mummy3 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
mummy4 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
mummy5 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 S1 0
unraveler1 3 3 112 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 0 0 0 xxx xxx 1 NU 0
unraveler2 3 3 112 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
unraveler3 3 3 112 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
unraveler4 3 3 112 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
unraveler5 3 3 112 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
chaoshorde1 3 2 96 2 2 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
chaoshorde2 3 2 96 2 2 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
chaoshorde3 3 2 96 2 2 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
chaoshorde4 3 2 96 2 2 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
vulture1 2 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
vulture2 2 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
vulture3 2 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
vulture4 2 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
mosquito1 2 3 96 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
mosquito2 2 3 96 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
mosquito3 2 3 96 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
mosquito4 2 3 96 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
willowisp1 2 3 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 6 255 255 255 xxx xxx 1 NU 0
willowisp2 2 3 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 6 255 255 255 xxx xxx 1 NU 0
willowisp3 2 3 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 6 255 255 255 xxx xxx 1 NU 0
willowisp4 2 3 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 6 255 255 255 xxx xxx 1 NU 0
arach1 1 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
arach2 1 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
arach3 1 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
arach4 1 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
arach5 1 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
thornhulk1 3 3 96 3 3 0 hth 3 "lit,th2,th3,th4,th5" lit lit lit lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
thornhulk2 3 3 96 3 3 0 hth 3 "lit,th2,th3,th4,th5" lit lit lit lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
thornhulk3 3 3 96 3 3 0 hth 3 "lit,th2,th3,th4,th5" lit lit lit lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
thornhulk4 3 3 96 3 3 0 hth 3 "lit,th2,th3,th4,th5" lit lit lit lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
vampire1 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 3 255 138 0 xxx xxx 1 NU 0
vampire2 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 3 255 138 0 xxx xxx 1 NU 0
vampire3 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 3 255 138 0 xxx xxx 1 NU 0
vampire4 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 5 255 0 0 xxx xxx 1 NU 0
vampire5 3 2 96 2 2 0 hth 12 lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 3 255 138 0 xxx xxx 1 NU 0
batdemon1 2 3 96 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
batdemon2 2 3 96 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
batdemon3 2 3 96 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
batdemon4 2 3 96 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
batdemon5 2 3 96 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
fetish1 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
fetish2 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
fetish3 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
fetish4 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
fetish5 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
cain1 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
gheed 0 2 80 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
akara 0 2 80 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
chicken 0 1 96 0 0 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
kashya 0 2 80 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
rat 0 1 96 0 0 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
rogue1 3 2 96 2 2 0 hth 3 lit lit lit lit lit "sbw,lbw" "lit,med" "lit,med" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
hellmeteor 0 0 96 0 0 1 0 hth 3 lit 1 1 1 1 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8 1 1 255 255 255 xxx xxx 1 NU 0
charsi 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
warriv1 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
andariel 3 4 96 3 3 0 hth 3 lit lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 8 255 255 255 2 3 4 xxx xxx 1 NU 0
bird1 0 0 96 0 0 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bird2 0 0 96 0 0 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bat 0 0 96 0 0 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_archer1 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" lit "lbb,lbw,sbb,sbw" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_archer2 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" lit "lbb,lbw,sbb,sbw" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_archer3 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" lit "lbb,lbw,sbb,sbw" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_archer4 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" lit "lbb,lbw,sbb,sbw" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_archer5 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" lit "lbb,lbw,sbb,sbw" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_lancer1 3 2 96 2 2 2 2ht 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "pik,spr,tri" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_lancer2 3 2 96 2 2 2 2ht 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "pik,spr,tri" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_lancer3 3 2 96 2 2 2 2ht 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "pik,spr,tri" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_lancer4 3 2 96 2 2 2 2ht 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "pik,spr,tri" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cr_lancer5 3 2 96 2 2 2 2ht 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "pik,spr,tri" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer1 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer2 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer3 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer4 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer5 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
warriv2 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
atma 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
drognan 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
fara 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cow 0 2 96 3 3 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotbaby1 1 1 32 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotbaby2 1 1 32 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotbaby3 1 1 32 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotbaby4 1 1 32 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotbaby5 1 1 32 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
camel 0 0 96 3 3 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
blunderbore1 3 3 112 3 3 0 hth 3 lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
blunderbore2 3 3 112 3 3 0 hth 3 lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
blunderbore3 3 3 112 3 3 0 hth 3 lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
blunderbore4 3 3 112 3 3 0 hth 3 lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 2 255 255 255 xxx xxx 1 NU 0
maggotegg1 1 1 32 1 1 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotegg2 1 1 32 1 1 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotegg3 1 1 32 1 1 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotegg4 1 1 32 1 1 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotegg5 1 1 32 1 1 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act2male 0 2 96 2 2 0 hth 3 "lit,yng,old,brd" "lit,med,hvy" "lit,med,hvy" "lit,nil,nil,fez,nil,nil,rol,nil,nil," 1 1 1 1 3 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act2female 0 2 96 2 2 0 hth 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" 1 1 1 1 3 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act2child 0 2 96 2 2 0 hth 3 lit 1 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
greiz 0 2 80 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
elzix 0 2 80 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
geglash 0 2 96 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
jerhyn 0 2 80 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
lysander 0 2 80 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act2guard1 0 2 96 2 2 0 hth 3 "lit,med" "lit,med" "lit,med" "lit,med" "lit,med" "spr,glv" lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act2vendor1 0 2 96 2 2 0 hth 3 lit 1 1 1 1 8 1 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act2vendor2 0 2 96 2 2 0 hth 3 lit 1 1 1 1 8 1 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
crownest1 3 3 128 3 3 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
crownest2 3 3 128 3 3 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
crownest3 3 3 128 3 3 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
crownest4 3 3 128 3 3 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
meshif1 0 2 80 2 2 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
duriel 3 4 112 3 3 2 hth 3 lit lit lit lit lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 2 9 255 255 255 2 3 4 xxx xxx 1 NU 0
bonefetish1 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bonefetish2 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bonefetish3 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bonefetish4 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bonefetish5 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
darkguard1 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
darkguard2 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
darkguard3 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
darkguard4 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
darkguard5 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
bloodmage1 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
bloodmage2 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
bloodmage3 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
bloodmage4 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
bloodmage5 3 2 112 2 2 0 hth 3 1 1 1 3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
maggot 0 0 96 0 0 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sarcophagus 3 3 128 1 1 0 hth 3 lit 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 1 1 1 1 201 255 95 xxx xxx 1 NU 0
radament 3 3 112 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 0 0 0 xxx xxx 1 NU 0
firebeast 3 2 112 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 3 255 138 0 xxx xxx 1 NU 0
iceglobe 3 2 112 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 3 0 60 255 xxx xxx 1 NU 0
lightningbeast 3 2 112 2 2 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 3 255 255 255 xxx xxx 1 NU 0
poisonorb 3 2 112 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 1 2 3 102 255 0 xxx xxx 1 NU 0
flyingscimitar 3 1 112 1 1 2 hth 3 lit red 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 3 100 190 255 xxx xxx 1 NU 0
zealot1 3 2 96 2 2 1 hth 3 "nil,hd1,hd2,hd3,hd4" "zz1,zz2,zz3,zz4,zz5,zz6,zz7" "btx,hal,pax,scy" 1 1 1 3 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
zealot2 3 2 96 2 2 1 hth 3 "nil,hd1,hd2,hd3,hd4" "zz1,zz2,zz3,zz4,zz5,zz6,zz7" "btx,hal,pax,scy" 1 1 1 3 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
zealot3 3 2 96 2 2 1 hth 3 "nil,hd1,hd2,hd3,hd4" "zz1,zz2,zz3,zz4,zz5,zz6,zz7" "btx,hal,pax,scy" 1 1 1 3 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
cantor1 3 2 96 2 2 0 hth 3 lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 3 105 190 255 xxx xxx 1 NU 0
cantor2 3 2 96 2 2 0 hth 3 lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 3 105 190 255 xxx xxx 1 NU 0
cantor3 3 2 96 2 2 0 hth 3 lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 3 105 190 255 xxx xxx 1 NU 0
cantor4 3 2 96 2 2 0 hth 3 lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 3 105 190 255 xxx xxx 1 NU 0
mephisto 3 4 112 3 3 3 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 9 255 255 255 2 3 4 xxx xxx 1 NU 0
diablo 3 4 112 3 3 3 hth 12 lit lit lit lit lit lit 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 2 3 4 xxx xxx 6 9 15 NU 0
cain2 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cain3 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cain4 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
frogdemon1 3 1 112 2 2 1 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
frogdemon2 3 1 112 2 2 1 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
frogdemon3 3 1 112 2 2 1 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
summoner 3 2 112 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 9 174 0 255 xxx xxx 1 NU 0
tyrael1 4 4 144 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 -100 -20 60 100 1 1 1 1 1 1 1 11 255 255 255 xxx xxx 1 NU 0
asheara 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
hratli 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
alkor 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
ormus 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
izual 3 2 96 2 2 1 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 9 255 0 0 xxx xxx 1 NU 0
halbu 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
tentacle1 3 3 96 3 3 1 6 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
tentacle2 3 3 96 3 3 1 6 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
tentacle3 3 3 96 3 3 1 6 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
tentaclehead1 3 3 96 3 3 1 6 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
tentaclehead2 3 3 96 3 3 1 6 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
tentaclehead3 3 3 96 3 3 1 6 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
meshif2 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
cain5 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
navi 3 2 80 2 2 0 hth 3 lit lit lit lit lit lbw med med 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bloodraven 3 2 96 2 2 0 bow 3 brv hvy brv hvy hvy lit lbb hvy hvy hvy 1 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bug 0 0 96 0 0 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
scorpion 0 0 96 0 0 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
rogue2 3 2 96 2 2 0 hth 3 lit lit lit lit lit "sbw,lbw" "lit,med" "lit,med" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
roguehire 3 2 96 2 2 0 hth 3 "lit,med" lit lit lit lit "sbw,lbw" "lit,med" "lit,med" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 5 255 255 255 xxx xxx 1 NU 0
rogue3 3 2 96 2 2 0 hth 3 lit lit lit lit lit "sbw,lbw" "lit,med" "lit,med" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
gargoyletrap 0 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 4 4 4 4 4 4 4 4 4 4 4 1 4 4 4 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
skmage_pois1 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" pos pos 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 102 255 0 xxx xxx 1 xx SkeletonRaise 0
skmage_pois2 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" pos pos 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 102 255 0 xxx xxx 1 xx SkeletonRaise 0
skmage_pois3 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" pos pos 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 102 255 0 xxx xxx 1 xx SkeletonRaise 0
skmage_pois4 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" pos pos 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 102 255 0 xxx xxx 1 xx SkeletonRaise 0
fetishshaman1 2 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 14 11 6 NU 0
fetishshaman2 2 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 14 11 6 NU 0
fetishshaman3 2 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 14 11 6 NU 0
fetishshaman4 2 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 14 11 6 NU 0
fetishshaman5 2 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 14 11 6 NU 0
larva 0 1 48 0 0 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotqueen1 3 1 48 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotqueen2 3 1 48 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotqueen3 3 1 48 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotqueen4 3 1 48 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
maggotqueen5 3 1 48 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
claygolem 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
bloodgolem 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
irongolem 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
firegolem 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
familiar 2 2 96 2 2 0 hth 3 lit 1 1 1 8 16 8 8 8 8 8 8 8 8 8 8 8 8 8 8 0 1 1 5 255 255 255 xxx xxx 1 NU 0
act3male 0 2 96 2 2 0 hth 3 "lit,got,brd" "lit,med,hvy" "lit,med,hvy" "lit,med,hev" "lit,med,hev" "nil,ban,fsh,snk" "nil,bsk,buk,sak" "shr,lhr,hbd,tkt" 1 1 1 1 1 1 1 1 8 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
baboon6 3 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act3female 0 2 96 2 2 0 hth 3 "bld,blk,brn,lit" "btp,mtp,stp,svt" "srt,lng,dln" "nil,nil,bsk,buk" "nil,nil,bsk,buk" 1 1 1 1 1 5 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
natalya 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 0 1 1 1 1 255 255 255 xxx xxx 1 NU 0
vilemother1 3 2 96 3 3 1 hth 3 lit lit lit lit lit lit lit 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
vilemother2 3 2 96 3 3 1 hth 3 lit lit lit lit lit lit lit 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
vilemother3 3 2 96 3 3 1 hth 3 lit lit lit lit lit lit lit 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
vilechild1 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
vilechild2 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
vilechild3 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
fingermage1 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 7 255 90 0 xxx xxx 1 NU 0
fingermage2 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 7 255 228 132 xxx xxx 1 NU 0
fingermage3 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 7 255 255 255 xxx xxx 1 NU 0
regurgitator1 3 2 96 3 3 1 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
regurgitator2 3 2 96 3 3 1 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
regurgitator3 3 2 96 3 3 1 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
doomknight1 3 2 144 2 2 2 fgt 3 "col,hod,hrn" lit med med "flc,lsd,bsd,smc" rsp lsp 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 4 255 255 255 xxx xxx 1 NU 0
doomknight2 3 2 144 2 2 2 hth 3 "col,hod,hrn" lit med med "flc,lsd,bsd,smc" rsp lsp "pos,fir,col,unh" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 4 255 255 255 xxx xxx 1 NU 0
doomknight3 3 2 144 2 2 2 mgk 3 "col,hod,hrn" lit med med rsp lsp "pos,fir,col,unh" "pos,fir,col,unh" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 4 255 255 255 xxx xxx 1 NU 0
quillbear1 3 1 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
quillbear2 3 1 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
quillbear3 3 1 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
quillbear4 3 1 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
quillbear5 3 1 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
snake 0 1 96 0 0 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
parrot 0 1 96 0 0 0 hth 3 lit 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
fish 0 1 96 0 0 0 hth 3 lit 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
evilhole1 3 3 128 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
evilhole2 3 3 128 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
evilhole3 3 3 128 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
evilhole4 3 3 128 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
evilhole5 3 3 128 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
trap-firebolt 1 3 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 255 255 255 xxx xxx 1 NU 0
trap-horzmissile 3 3 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
trap-vertmissile 3 3 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
trap-poisoncloud 1 3 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 255 255 255 xxx xxx 1 NU 0
trap-lightning 1 3 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 255 255 255 xxx xxx 1 NU 0
act2guard2 0 2 96 2 2 0 hth 3 "lit,med" "lit,med" "lit,med" "lit,med" "lit,med" "spr,glv" lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 0 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
invisospawner 1 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8 1 1 255 255 255 xxx xxx 1 NU 0
diabloclone 3 3 112 2 2 0 hth 3 lit 1 1 1 1 1 5 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 1 2 255 255 255 5 5 5 xxx xxx 1 NU 0
suckernest1 3 3 128 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
suckernest2 3 3 128 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
suckernest3 3 3 128 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
suckernest4 3 3 128 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act2hire 3 2 96 2 2 2 hth 3 "lit,med" "lit,med" "lit,med" "lit,med" "lit,med" "spr,glv" lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 5 255 255 255 xxx xxx 1 NU 0
minispider 0 1 96 0 0 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
boneprison1 3 0 96 1 1 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
boneprison2 3 0 96 1 1 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
boneprison3 3 0 96 1 1 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
boneprison4 3 0 96 1 1 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bonewall 3 0 96 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 4 4 1 4 1 1 1 1 4 1 1 1 4 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
councilmember1 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
councilmember2 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
councilmember3 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
turret1 3 2 128 2 2 0 hth 3 lit 1 1 1 1 1 1 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
turret2 3 2 128 2 2 0 hth 3 lit 1 1 1 1 1 1 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
turret3 3 2 128 2 2 0 hth 3 lit 1 1 1 1 1 1 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
hydra1 3 1 96 0 0 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 4 255 138 0 xxx xxx 1 NU 0
hydra2 3 1 96 0 0 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 4 255 138 0 xxx xxx 1 NU 0
hydra3 3 1 96 0 0 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 4 255 138 0 xxx xxx 1 NU 0
trap-melee 2 3 128 2 2 2 hth 3 lit 1 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
seventombs 2 2 128 0 0 0 hth 3 lit 1 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 255 255 255 xxx xxx 1 NU 0
dopplezon 3 2 96 2 2 0 hth 3 1 1 2 1 1 1 1 1 1 1 1 4 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
valkyrie 3 2 96 2 2 0 hth 3 1 1 2 1 1 1 1 1 1 1 1 1 4 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
act2guard3 3 2 96 2 2 0 hth 3 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act3hire 3 2 96 2 2 0 1hs 3 lit lit lsd buc 1 1 1 1 4 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 5 255 255 255 xxx xxx 7 11 NU 0
megademon1 3 3 96 3 3 2 hth 3 lit "flb,wax,wsc,wsd" 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 10 11 NU 0
megademon2 3 3 96 3 3 2 hth 3 lit "flb,wax,wsc,wsd" 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 10 11 NU 0
megademon3 3 3 96 3 3 2 hth 3 lit "flb,wax,wsc,wsd" 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 10 11 NU 0
necroskeleton 3 2 80 2 2 0 1hs 3 "lit,med,hvy" "lit,hvy" "lit,hvy" "lit,des,med,hvy" "lit,des,med,hvy" "hax,axe,mac,fla,scm,nil,buc,lrg,kit,nil,lit" "nil,buc,lrg,kit,sml" "nil,lit" "nil,lit" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 255 255 255 255 255 255 xxx xxx 1 NU 0
necromage 3 2 80 2 2 0 hth 3 "lit,med,hvy" "lit,hvy" "lit,hvy" "lit,des,med,hvy" "lit,des,med,hvy" "nil,lit" "nil,lit" "pos,cld,fir,lht" "pos,cld,fir,lht" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 5 255 255 255 255 255 255 xxx xxx 1 NU 0
griswold 3 3 72 2 2 0 hth 1 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
compellingorb 1 2 96 0 0 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 8 8 8 8 8 8 1 1 8 8 1 8 8 8 1 1 1 255 255 255 xxx xxx 1 NU 0
tyrael2 4 4 144 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 -100 -20 60 100 1 1 1 1 1 11 255 255 255 xxx xxx 1 NU 0
darkwanderer 1 2 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 8 1 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
trap-nova 1 3 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 255 255 255 xxx xxx 1 NU 0
spiritmummy 3 2 96 3 3 0 hth 3 lit 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
lightningspire 4 3 128 1 1 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
firetower 3 3 128 3 3 0 hth 3 lit 1 1 1 1 1 1 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
slinger1 3 2 96 2 2 0 1ht 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" jav buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
slinger2 3 2 96 2 2 0 1ht 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" jav buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
slinger3 3 2 96 2 2 0 1ht 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" jav buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
slinger4 3 2 96 2 2 0 1ht 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" jav buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act2guard4 0 2 96 2 2 0 hth 3 "lit,med" "lit,med" "lit,med" "lit,med" "lit,med" "spr,glv" lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
act2guard5 0 2 96 2 2 0 hth 3 "lit,med" "lit,med" "lit,med" "lit,med" "lit,med" "spr,glv" lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
skmage_cold1 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" cld cld 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 0 60 255 xxx xxx 1 xx SkeletonRaise 0
skmage_cold2 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" cld cld 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 0 60 255 xxx xxx 1 xx SkeletonRaise 0
skmage_cold3 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" cld cld 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 0 60 255 xxx xxx 1 xx SkeletonRaise 0
skmage_cold4 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" cld cld 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 0 60 255 xxx xxx 1 xx SkeletonRaise 0
skmage_fire1 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" fir fir 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 138 0 xxx xxx 1 xx SkeletonRaise 0
skmage_fire2 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" fir fir 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 138 0 xxx xxx 1 xx SkeletonRaise 0
skmage_fire3 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" fir fir 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 138 0 xxx xxx 1 xx SkeletonRaise 0
skmage_fire4 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" fir fir 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 138 0 xxx xxx 1 xx SkeletonRaise 0
skmage_ltng1 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" lht lht 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 xx SkeletonRaise 0
skmage_ltng2 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" lht lht 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 xx SkeletonRaise 0
skmage_ltng3 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" lht lht 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 xx SkeletonRaise 0
skmage_ltng4 3 2 80 2 2 0 hth 3 "lit,lit,lit,med,hvy,hvy,hvy" "lit,med,hvy" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" "lit,med,hvy,des" lht lht 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 xx SkeletonRaise 0
hellbovine 3 2 96 2 2 2 hth 3 lit "hal,pax,btx" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
window1 2 3 128 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
window2 2 3 128 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
slinger5 3 2 96 2 2 0 1ht 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" opl buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
slinger6 3 2 96 2 2 0 1ht 3 "lit,bab,fan,pha,pon" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" gpl buc "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" bld 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
fetishblow1 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
fetishblow2 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
fetishblow3 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
fetishblow4 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
fetishblow5 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 xx SkeletonRaise 0
mephistospirit 3 2 96 2 2 0 hth 3 lit 1 1 1 1 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8 1 1 1 3 255 255 255 xxx xxx 1 NU 0
smith 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
trappedsoul1 3 3 128 2 2 1 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -60 -20 40 70 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
trappedsoul2 3 3 128 2 2 1 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -60 -20 40 70 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
jamella 0 2 80 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 1 1 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
izualghost 4 4 144 2 2 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -150 -22 44 100 0 1 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
fetish11 1 1 48 2 2 0 1hs 3 lit "fbl,fsp" 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
malachai 4 2 128 3 3 0 hth 3 lit lit 1 1 2 1 8 8 8 8 8 8 8 8 1 1 8 8 8 8 8 8 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
hephasto 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
Expansion 0
wakeofdestruction 1 1 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
chargeboltsentry 1 1 128 0 0 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
lightningsentry 1 1 128 0 0 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bladecreeper 1 1 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
invisopet 1 1 128 0 0 0 hth 3 lit 1 1 1 1 1 1 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8 1 1 1 1 255 255 255 xxx xxx 1 NU 0
infernosentry 1 1 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 255 255 255 xxx xxx 14 9 NU 0
deathsentry 1 1 128 0 0 0 hth 3 lit lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
shadowwarrior 1 1 128 2 2 0 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
shadowmaster 1 1 128 2 2 0 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
druidhawk 3 3 88 0 0 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 0 1 1 1 255 255 255 xxx xxx 1 NU 0
spiritwolf 3 3 88 2 2 1 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 1 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16 0 1 1 1 1 255 255 255 xxx xxx 1 NU 0
fenris 3 3 88 2 2 1 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 1 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16 0 1 1 1 1 255 255 255 xxx xxx 1 NU 0
spiritofbarbs 2 2 88 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 0 1 1 1 4 255 255 255 xxx xxx 1 NU 0
heartofwolverine 2 2 88 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 0 1 1 1 4 255 50 50 xxx xxx 1 NU 0
oaksage 2 2 88 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 0 1 1 1 4 255 255 255 xxx xxx 1 NU 0
plaguepoppy 1 1 96 0 0 2 hth 3 lit 1 1 1 1 1 1 1 1 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8 0 1 1 1 255 255 255 xxx xxx 1 NU 0
cycleoflife 1 1 96 0 0 1 hth 3 lit 1 1 1 1 1 1 1 1 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8 0 1 1 1 255 255 255 xxx xxx 1 NU 0
vinecreature 1 1 96 0 0 1 hth 3 lit 1 1 1 1 1 1 1 1 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8 0 1 1 1 255 255 255 xxx xxx 1 NU 0
druidbear 3 3 104 2 2 2 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 1 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
eagle 2 3 96 2 2 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
wolf 3 3 96 2 2 0 hth 3 lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bear 3 3 104 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
barricadedoor1 3 3 128 3 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
barricadedoor2 3 3 128 3 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
prisondoor 3 3 128 3 3 3 0 hth 3 lit 1 1 1 1 1 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
barricadetower 3 3 128 3 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 8 1 8 8 8 8 8 8 8 8 1 8 8 8 2 1258 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
reanimatedhorde1 3 2 72 2 2 0 hth 3 "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" clm "lit,hvy" "lit,hvy" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
reanimatedhorde2 3 2 72 2 2 0 hth 3 "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" clm "lit,hvy" "lit,hvy" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
reanimatedhorde3 3 2 72 2 2 0 hth 3 "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" clm "lit,hvy" "lit,hvy" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
reanimatedhorde4 3 2 72 2 2 0 hth 3 "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" clm "lit,hvy" "lit,hvy" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
reanimatedhorde5 3 2 72 2 2 0 hth 3 "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" "lit,hvy" clm "lit,hvy" "lit,hvy" 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
siegebeast1 2 2 128 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
siegebeast2 2 2 128 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
siegebeast3 2 2 128 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
siegebeast4 2 2 128 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
siegebeast5 2 2 128 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
snowyeti1 3 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
snowyeti2 3 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
snowyeti3 3 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
snowyeti4 3 2 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
wolfrider1 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
wolfrider2 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
wolfrider3 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
minion1 2 2 64 3 3 0 hth 3 lit lit "lit,med,hvy" "med,hvy" lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
minion2 2 2 64 3 3 0 hth 3 lit lit "lit,med,hvy" "med,hvy" lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
minion3 2 2 64 3 3 0 hth 3 lit lit "lit,med,hvy" "med,hvy" lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
minion4 2 2 64 3 3 0 hth 3 med lit "lit,med,hvy" "med,hvy" lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
minion5 2 2 64 3 3 0 hth 3 med lit "lit,med,hvy" "med,hvy" lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
minion6 2 2 64 3 3 0 hth 3 med lit "lit,med,hvy" "med,hvy" lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
minion7 2 2 64 3 3 0 hth 3 hvy lit "lit,med,hvy" "med,hvy" lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
minion8 2 2 64 3 3 0 hth 3 hvy lit "lit,med,hvy" "med,hvy" lit 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
suicideminion1 2 2 64 3 3 0 hth 3 hvy lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
suicideminion2 2 2 64 3 3 0 hth 3 hvy lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
suicideminion3 2 2 64 3 3 0 hth 3 hvy lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
suicideminion4 2 2 64 3 3 0 hth 3 med lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
suicideminion5 2 2 64 3 3 0 hth 3 med lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
suicideminion6 2 2 64 3 3 0 hth 3 med lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
suicideminion7 2 2 64 3 3 0 hth 3 hvy lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
suicideminion8 2 2 64 3 3 0 hth 3 hvy lit 1 1 2 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 5 230 168 255 xxx xxx 1 NU 0
succubus1 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubus2 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubus3 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubus4 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubus5 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubuswitch1 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubuswitch2 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubuswitch3 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubuswitch4 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
succubuswitch5 2 3 96 2 2 0 hth 3 lit lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
overseer1 3 3 96 3 3 0 hth 3 lit lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
overseer2 3 3 96 3 3 0 hth 3 lit lit hvy lit lit lit med lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
overseer3 3 3 96 3 3 0 hth 3 med hvy lit "lit,hvy" lit med "lit,med" lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
overseer4 3 3 96 3 3 0 hth 3 "med,hvy" hvy lit hvy lit "med,med" lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
overseer5 3 3 96 3 3 0 hth 3 hvy hvy hvy hvy lit hvy hvy lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
minionspawner1 3 3 128 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
minionspawner2 3 3 128 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
minionspawner3 3 3 128 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
minionspawner4 3 3 128 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
minionspawner5 3 3 128 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
minionspawner6 3 3 128 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
minionspawner7 3 3 128 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
minionspawner8 3 3 128 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
imp1 1 1 64 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 6 NU 0
imp2 1 1 64 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 6 NU 0
imp3 1 1 64 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 6 NU 0
imp4 1 1 64 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 6 NU 0
imp5 1 1 64 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 6 NU 0
catapult1 3 2 64 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -70 -80 130 110 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
catapult2 3 2 64 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -70 -60 130 110 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
catapult3 3 2 64 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -70 -60 130 110 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
catapult4 3 2 64 3 3 0 hth 3 lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -70 -80 130 110 2 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
frozenhorror1 1 3 64 3 3 4 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 9 10 NU 0
frozenhorror2 1 3 64 3 3 4 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 9 10 NU 0
frozenhorror3 1 3 64 3 3 4 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 9 10 NU 0
frozenhorror4 1 3 64 3 3 4 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 9 10 NU 0
frozenhorror5 1 3 64 3 3 4 hth 3 lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 9 10 NU 0
bloodlord1 1 3 64 3 3 4 hth 3 "lit,hev" lit lit lit lit "axe,fla" "axe,fla" "lit,hev" "lit,hev" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
bloodlord2 1 3 64 3 3 4 hth 3 "lit,hev" lit lit "lit,hev" "lit,hev" "axe,fla" "axe,fla" "lit,hev" "lit,hev" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
bloodlord3 1 3 64 3 3 4 hth 3 "lit,hev" lit lit "lit,hev" "lit,hev" "axe,fla" "axe,fla" "lit,hev" "lit,hev" 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
bloodlord4 1 3 64 3 3 4 hth 3 "lit,hev" lit hev hev hev "axe,fla" "axe,fla" hev hev 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
bloodlord5 1 3 64 3 3 4 hth 3 "lit,hev" lit hev hev hev "axe,fla" "axe,fla" hev hev 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
larzuk 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
drehya 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
malah 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
nihlathak 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
qual-kehk 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
catapultspotter1 1 1 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8 1 1 255 255 255 xxx xxx 1 NU 0
catapultspotter2 1 1 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8 1 1 255 255 255 xxx xxx 1 NU 0
catapultspotter3 1 1 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8 1 1 255 255 255 xxx xxx 1 NU 0
catapultspotter4 1 1 128 0 0 0 hth 3 lit 1 1 1 1 1 1 1 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8 1 1 255 255 255 xxx xxx 1 NU 0
cain6 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
tyrael3 4 4 144 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 -100 -20 60 100 1 1 1 1 1 1 1 11 255 255 255 xxx xxx 1 NU 0
act5barb1 3 2 96 2 2 0 1hs 3 "fhm,ghm" "lit,med,hvy" "axe,lsd" "axe,lsd" "lit,med" "lit,med" 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act5barb2 3 2 96 2 2 0 2hs 3 "fhm,ghm" "lit,med,hvy" bsd "lit,med" "lit,med" 1 1 1 1 1 5 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
barricadewall1 3 3 128 3 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
barricadewall2 3 3 128 3 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
nihlathakboss 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
drehyaiced 0 2 80 2 2 0 hth 3 lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
evilhut 4 4 144 3 3 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -100 -40 145 160 1 1 1 1 1 1 1 1 1 7 255 255 150 xxx xxx 1 NU 0
deathmauler1 3 3 64 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
deathmauler2 3 3 64 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
deathmauler3 3 3 64 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
deathmauler4 3 3 64 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
deathmauler5 3 3 64 3 3 0 hth 3 lit 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 250 0 0 xxx xxx 1 NU 0
act5pow 3 2 96 2 2 0 hth 3 hed lit bhn bhn lit lit 1 1 1 1 1 1 6 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 2 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act5barb3 3 2 96 2 2 0 1hs 3 "fhm,ghm" "lit,med,hvy" "axe,lsd" "axe,lsd" "lit,med" "lit,med" 1 1 1 1 1 1 6 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
act5barb4 3 2 96 2 2 0 2hs 3 "fhm,ghm" "lit,med,hvy" bsd "lit,med" "lit,med" 1 1 1 1 1 5 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
ancientstatue1 3 2 96 2 2 0 hth 3 lit lit lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 6 255 0 0 xxx xxx 1 NU 0
ancientstatue2 3 2 96 2 2 0 hth 3 lit lit lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 6 255 0 0 xxx xxx 1 NU 0
ancientstatue3 3 2 96 2 2 0 hth 3 lit lit lit 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 6 255 0 0 xxx xxx 1 NU 0
ancientbarb1 3 2 96 2 2 3 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 0 0 xxx xxx 1 NU 0
ancientbarb2 3 2 96 2 2 3 hth 3 lit lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 0 0 xxx xxx 1 NU 0
ancientbarb3 3 2 96 2 2 3 hth 3 lit lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 0 0 xxx xxx 1 NU 0
baalthrone 3 4 112 0 0 3 hth 12 lit lit lit lit lit lit 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 6 255 255 255 2 3 4 xxx xxx 1 NU 0
baalcrab 3 4 112 3 3 3 hth 12 lit lit lit lit lit lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 2 3 4 xxx xxx 1 10 11 NU 0
baaltaunt 0 0 96 0 0 0 hth 3 lit 1 1 1 1 1 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8 1 1 255 255 255 xxx xxx 1 NU 0
putriddefiler1 3 4 112 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
putriddefiler2 3 4 112 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
putriddefiler3 3 4 112 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
putriddefiler4 3 4 112 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
putriddefiler5 3 4 112 2 2 0 hth 3 lit lit lit 1 1 1 3 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
painworm1 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
painworm2 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
painworm3 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
painworm4 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
painworm5 1 1 48 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bunny 0 1 96 0 0 0 hth 3 lit 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
baalhighpriest 3 2 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
venomlord 3 3 96 3 3 2 hth 3 lit "flb,wax,wsc,wsd" 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 10 11 NU 0
baalcrabstairs 3 4 112 0 0 3 hth 12 lit lit lit lit lit lit 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 2 6 255 255 255 2 3 4 xxx xxx 1 NU 0
act5hire1 3 2 96 2 2 0 1hs 3 "fhm,ghm" "lit,med,hvy" "axe,lsd" "axe,lsd" "lit,med" "lit,med" 1 1 1 1 1 1 6 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
act5hire2 3 2 96 2 2 0 2hs 3 "fhm,ghm" "lit,med,hvy" bsd "lit,med" "lit,med" 1 1 1 1 1 5 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 5 255 255 255 xxx xxx 1 NU 0
baaltentacle1 1 1 48 2 2 4 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
baaltentacle2 1 1 48 2 2 4 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
baaltentacle3 1 1 48 2 2 4 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
baaltentacle4 1 1 48 2 2 4 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
baaltentacle5 1 1 48 2 2 4 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
injuredbarb1 0 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 255 255 255 xxx xxx 1 NU 0
injuredbarb2 0 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 255 255 255 xxx xxx 1 NU 0
injuredbarb3 0 1 96 2 2 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 255 255 255 xxx xxx 1 NU 0
baalclone 3 4 112 3 3 3 hth 12 lit lit lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 1 1 11 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8 1 1 1 1 1 1 1 1 2 255 255 255 2 3 4 xxx xxx 1 10 11 NU 0
baalminion1 3 3 112 3 3 3 hth 12 lit lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
baalminion2 3 3 112 3 3 3 hth 12 lit lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
baalminion3 3 3 112 3 3 3 hth 12 lit lit lit lit lit lit lit lit lit 1 1 1 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 2 255 255 255 xxx xxx 1 NU 0
worldstoneeffect 0 0 96 0 0 0 hth 3 lit 1 1 1 1 1 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8 1 1 15 255 178 64 xxx xxx 1 NU 0
sk_archer6 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer7 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer8 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer9 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sk_archer10 3 2 96 2 2 0 bow 3 "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" "lit,med,hvy" sbw 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
bighead6 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead7 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead8 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead9 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
bighead10 3 3 96 3 3 0 hth 3 lit lit 1 1 2 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
goatman6 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman7 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman8 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman9 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
goatman10 3 2 96 2 2 0 2hs 3 lit "btx,hal,lax,mau,scy,whm" 1 1 1 3 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
foulcrow5 2 2 88 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
foulcrow6 2 2 88 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
foulcrow7 2 2 88 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
foulcrow8 2 2 88 2 2 0 hth 12 lit 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 2 1 255 255 255 xxx xxx 1 NU 0
clawviper6 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper7 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper8 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper9 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
clawviper10 3 2 80 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider6 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider7 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider8 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider9 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0
sandraider10 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1 1 1 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 1 1 1 1 1 1 1 1 255 255 255 xxx xxx 1 NU 0

577
txt/MonType.txt Normal file
View File

@ -0,0 +1,577 @@
Name Token DT_Dir NU_Dir WL_Dir GH_Dir A1_Dir A2_Dir BL_Dir SC_Dir S1_Dir S2_Dir S3_Dir S4_Dir DD_Dir KB_Dir SQ_Dir RN_Dir
Skeleton SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Corpse SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Bone Warrior SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Burning Dead SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Horror SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Frozen Dead ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Carcass ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ghoul ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Drowned ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Plague Bearer ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
bighead 1 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
bighead 2 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
bighead 3 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
bighead 4 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
bighead 5 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Foul Crow BK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Hawk BK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Black Vulture BK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Cloud Stalker BK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Enraged Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Demented Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Deranged Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Depraved Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Warped Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Brute YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Crusher YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Yeti YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Wailing Beast YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Gargantuan Beast YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Sand Raider SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Marauder SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Invader SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Infidel SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Assailant SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Gorgon GO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Stone Stalker GO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Serpent Queen GO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Stygian Watcher GO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ghost WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Wraith WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Specter WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Apparition WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Shape WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Vile Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Stalker CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Black Rogue CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Flesh Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dune Beast BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Rock Dweller BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Jungle Hunter BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Doom Ape BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Temple Guard BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ice Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Rock Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Night Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Moon Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Hell Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Enraged Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Demented Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Deranged Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Depraved Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Warped Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ice Rat SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Spike Fiend SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Thorn Beast SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Razor Spine SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Jungle Urchin SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Sand Maggot SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Rock Worm SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Devourer SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Giant Lamprey SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Eater of Worlds SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Tomb Viper SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Claw Viper SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Salamander SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Poison Spitter SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Serpent Magi SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Sand Leaper SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Cave Leaper SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Fire Burst SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Tree Lurker SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Razor Pit Demon SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Huntress PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Saber Cat PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Panthress PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Hell Cat PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Itchies SW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Balack Locusts SW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Plague Bugs SW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Hell Swarm SW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dung Soldier SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Sand Warrior SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Scarab SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Steel Weevil SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Albino Roach SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
mummy1 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
mummy2 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
mummy3 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
mummy4 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
mummy5 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Hollow One GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Guardian GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Unraveler GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Horadrim Ancient GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baal Mummy GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Damned Horde CH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Warped Horde CH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Wicked Horde CH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Unholy Horde CH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Carrion Bird VD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Undead Scavenger VD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Hell Buzzard VD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Winged Nightmare VD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Sucker MO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Feeder MO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Hook MO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Wing MO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Gloam Wisp WW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Swamp Wisp WW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Fire Spark WW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Hell Spark WW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Arach SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Sand Fisher SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Poison Spinner SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Flame Spider SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Spider Magi SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Thorned Hulk TH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Bramble Hulk TH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Thrasher TH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Spikefist TH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ghoul Lord VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Night Lord VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Lord VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Lord VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
The Banished VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Desert Wing BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Fiend BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Gloombat BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Diver BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Familiar BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Rat Man FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Fetish FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Flayer FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Soul Killer FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Stygian Doll FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
deckardcain DC 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
gheed GH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
akara PS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
chicken CK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
kashya RC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
rat RT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
rogue RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
hellmeteor K9 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8
charsi CI 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
warriv WA 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
andariel AN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
smallbird BS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
largebird BL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
bat B9 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Vile Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Stalker CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Black Rogue CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Flesh Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Vile Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dark Stalker CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Black Rogue CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Flesh Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Skeleton SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Corpse SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Bone Warrior SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Burning Dead SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Horror SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
warriv WX 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
asthih AS 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
drognan DR 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
olfar OF 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
cow CW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Sand Maggot SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Rock Worm SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Devourer SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Giant Lamprey SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Eater of Worlds SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Camel CM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
PinHead1 PN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
PinHead2 PN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
PinHead3 PN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
PinHead4 PN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
MaggotEgg1 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
MaggotEgg2 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
MaggotEgg3 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
MaggotEgg4 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
MaggotEgg5 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act2Male 2M 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act2Female 2F 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act2Child 2C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
greiz GR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
elzix EL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
geglash GE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
jerhyn JE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
lysander LY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
guard act 2 GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act2Vendor1 M1 8 1 8 8 8 8 8 8 1 8 8 8 8 8 8 8
Act2Vendor2 M2 8 1 8 8 8 8 8 8 1 8 8 8 8 8 8 8
FoulCrowNest BN 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
BloodhawkNest BN 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
BlackVultureNest BN 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
CloudStalkerNest BN 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
meshif MS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Duriel DU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Rat Man FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Fetish FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Flayer FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Soul Killer FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Stygian Doll FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Darkguard xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Darkknight xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Bloodguard xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Bloodknight xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Darkpaladin xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Cantor xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Demonist xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blackmagus xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Diabolist xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Hellmagus xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Maggot MA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Mummy Sarcophagus MG 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
Radament RD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
FireBeast FM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
IceBeast IM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
SparkBeast xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
PoisonOrb PM 1 1 1 8 8 8 8 8 1 8 8 8 1 8 8 8
FlyingScimitar ST 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ZakarumZealot1 ZZ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ZakarumZealot2 ZZ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ZakarumZealot3 ZZ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ZakarumPriest1 ZP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ZakarumPriest2 ZP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ZakarumPriest3 ZP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ZakarumPriest4 ZP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Mephisto MP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Diablo DI 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
deckardcain 2D 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
deckardcain 2d 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
deckardcain 4D 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Amphibian FD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Amphibian FD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Amphibian FD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Summoner SU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
tyrael TX 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
asheara AH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
hratli HR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
alkor AL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ormus OR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
izual 22 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
halbu 20 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
tentacle1 TN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
tentacle2 TN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
tentacle3 TN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
tentaclehead1 TE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
tentaclehead2 TE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
tentaclehead3 TE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
meshif M3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
deckardcain 1D 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
forestfairy RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
bloodraven CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Bug BG 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
Scorpion DS 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
RogueWander RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
RogueHireable RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
RogueTownShoot RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
GargoyleTrap GT 1 4 4 4 4 4 4 4 4 4 4 4 1 4 4 4
CorpseMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BoneMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BurningDeadMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HorrorMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
RatManShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
FetishShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
FlayerShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
SoulKillerShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
StygianDollShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Larva LV 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
ClayGolum G1 1 8 8 8 8 8 8 8 1 8 8 8 1 8 8 8
BloodGolum G2 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
IronGolum G4 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
FireGolum G3 1 8 8 8 8 8 8 8 1 8 8 8 1 8 8 8
familiar FI 8 16 8 8 8 8 8 8 8 8 8 8 8 8 8 8
act3npc N4 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
NightMarauder BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
act3npc N3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
taintedsunaltar TZ 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
vilemother VM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
vilemother VM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
vilemother VM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
viledog VC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
viledog VC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
viledog VC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
fingermage FR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
fingermage FR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
fingermage FR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
regurgitator CS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
regurgitator CS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
regurgitator CS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
undeadhorror UM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
undeadhorror UM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
undeadhorror UM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
quillbear S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
spikegiant S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
thornbrute S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
razorbeast S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
gianturchin S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
snake CO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
parrot PR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
fish FJ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
trapfirebolt 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
trapchargedbolt 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
traparrow 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
trappoisonnova 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
trapchainlightning 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
xxx GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
InvisoSpawner K9 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8
DiabloClone xx 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
suckernest DH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
suckernest DH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
suckernest DH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
suckernest DH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
guard GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
spider LS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
prison 67 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
prison 66 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
prison 69 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
prison 68 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Bonewall BW 4 4 1 4 1 1 1 1 4 1 1 1 4 1 1 1
HighPriest1 HP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HighPriest1 HP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HighPriest1 HP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Turret PB 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
Turret PB 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
Turret PB 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
Hydra HX 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
Hydra 21 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
Hydra HZ 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
Column M4 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
seven tombs illusion 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Dopplezon VK 4 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1
Valkyrie VK 4 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1
Act2Hireling SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act3Hireling IW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Megademon1 DM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Megademon2 DM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Megademon3 DM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
NecroSkeleton SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
NecroMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Griswold GZ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
compelling orb 9a 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
tyrael act 4 TY 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
dark wanderer 1Z 1 8 1 8 8 8 8 8 8 8 8 8 1 8 8 8
trap nova 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
mummy spirit xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
arcane column thing AE 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
desert turret 2 PB 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
Panther Jav PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Panther Jav PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Panther Jav PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Panther Jav PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
boba fett GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
darth maul GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
CorpseMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BoneMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BurningDeadMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HorrorMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
CorpseMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BoneMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BurningDeadMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HorrorMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
CorpseMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BoneMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BurningDeadMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HorrorMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Moo EC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
window right VH 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
window left VJ 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
OrangePotPanther PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
GreenPotPanther PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Rat Man FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Fetish FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Flayer FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Soul Killer FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Stygian Doll FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Mephisto Spirit M6 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
Smith 5P 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
trapped soul 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
trapped soul 13 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
jamella ja 8 8 8 8 8 8 8 8 1 1 8 8 8 8 8 8
Izual Spirit 17 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
fetish special FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
malachai 36 8 8 8 8 8 8 8 8 1 1 8 8 8 8 8 8
Smith 5P 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Expansion 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Spike Generator e9 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Charge Bolt Sentry lg 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Lightning Sentry lg 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Blade Creeper b8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Invis Pet k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
Inferno Sentry e9 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Death Sentry lg 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Shadow Warrior k9 1 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1
Shadow Apprentice k9 1 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1
Druid Hawk hk 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Druid Spirit Wolf wf 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
Druid Fenris wf 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
Druid Spirit of Barbs x4 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Druid Heart of Wolverine x3 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Druid Oak Sage xw 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Druid Plague Poppy k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
Druid Cycle of Life k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
Druid Vine Creature k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
Druid Bear b7 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
Eagle eg 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Wolf 40 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
Bear TG 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
Barricade Door Right AJ 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8
Barricade Door Left AG 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8
Prison Door 2Q 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8
Barricade Tower ac 1 1 8 1 8 8 8 8 8 8 8 8 1 8 8 8
RotWalker re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ReanimatedHorde re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ProwlingDead re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
UnholyCorpse re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
DefiledWarrior re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Seige Beast ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
CrushBeast ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BloodBringer ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
GoreBearer ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
DeamonSteed ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
snowyeti1 io 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
snowyeti2 io 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
snowyeti3 io 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
snowyeti4 io 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
wolfrider1 wr 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
wolfrider2 wr 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
wolfrider3 wr 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Minion xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Slayer xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
IceBoar xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
FireBoar xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HellSpawn xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
IceSpawn xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
GreaterHellSpawn xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
GreaterIceSpawn xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
FanaticMinion xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BerserkSlayer xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ConsumedGireBoar xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
ConsumedIceBoar xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
FrenziedHellSpawn xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
FrenziedIceSpawn xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
InsaneHellSpawn xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
InsaneIceSpawn xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Succubus 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
VileTemptress 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
StygianHarlot 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BlightWing 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BloodBitch 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Dominus 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
VileWitch 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
StygianFury 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
MageWing 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HellBitch 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
OverSeer os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Lasher os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
OverLord os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BloodBoss os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
HellWhip os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Catapult s 65 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Catapult e 64 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Catapult Siege 64 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Catapult w ua 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Larzuk XR 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
Drehya XS 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
Malah XT 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
Nihlathak Town 0J 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
Qual-Kehk XV 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
Catapult Spotter S k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
Catapult Spotter E k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
Catapult Spotter Siege k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
Catapult Spotter W k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
deckardcain DC 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
tyrael act 4 TY 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
Act 5 Combatant 1 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act 5 Combatant 2 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Barricade Door Right a6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Barricade Door Left AK 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Nihlathak Town XU 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
Drehya XS 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
Generic Spawner 2T 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Death Mauler 1 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Death Mauler 2 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Death Mauler 3 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Death Mauler 4 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Death Mauler 5 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
pow 0a 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act 5 TownGuard 1 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act 5 TownGuard 2 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ancient Statue 1 0G 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ancient Statue 2 0H 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ancient Statue 3 0I 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ancient Barbarian 1 0D 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ancient Barbarian 2 0F 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Ancient Barbarian 3 0E 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baal Throne 41 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Baal Crab 42 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
Baal Taunt K9 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8
Putrid Defiler1 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Putrid Defiler2 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Putrid Defiler3 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Putrid Defiler4 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Putrid Defiler5 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Pain Worm1 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Pain Worm2 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Pain Worm3 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Pain Worm4 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Pain Worm5 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Rabbit 48 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BaalHighPriest HP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
BaalMegademon DM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baal Crab To Stairs 42 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
Act 5 Hirable 1HS 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Act 5 Hirable 2HS 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baal Tentacle1 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baal Tentacle2 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baal Tentacle3 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baal Tentacle4 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baal Tentacle5 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
InjuredBarbarian 1 6z 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
InjuredBarbarian 2 7j 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
InjuredBarbarian 3 7i 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Baal Crab 42 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
Baals Minion1 43 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baals Minion2 43 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Baals Minion3 43 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
Worldstone Effect K9 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8

44
txt/MonUMod.txt Normal file
View File

@ -0,0 +1,44 @@
uniquemod id enabled version xfer champion fPick exclude1 exclude2 cpick cpick (N) cpick (H) upick upick (N) upick (H) fInit constants *constant desc *eol
none 0 0 0 1 20 champion chance 0
rndname 1 1 0 0 100 minion +hp% 0
hpmultiply 2 1 0 0 75 minion +hp% (N) 0
light 3 1 0 0 50 minion +hp% (H) 0
leveladd 4 1 0 0 200 champion +hp% 0
strong 5 1 0 1 6 6 6 150 champion +hp% (N) 0
fast 6 1 0 1 3 6 6 6 100 champion +hp% (H) 0
curse 7 1 0 1 6 6 6 300 unique +hp% 0
resist 8 1 0 1 6 6 200 unique +hp% (N) 0
fire 9 1 0 1 6 6 6 100 unique +hp% (H) 0
poisondead 10 1 0 0 75 champion +tohit% 0
durieldead 11 1 0 0 100 champion +dmg% 0
bloodraven 12 1 0 0 50 minion +tohit% 0
rage 13 1 0 0 100 unique +tohit% 0
spcdamage 14 1 0 0 75 minion +dmg% (strong) 0
partydead 15 1 0 0 150 unique +dmg% (strong) 0
champion 16 1 0 1 1 1 1 1 0 minion +elem min dmg% 0
lightning 17 1 0 1 sandleaper 6 6 6 33 minion +elem min dmg% (N) 0
cold 18 1 0 1 6 6 6 33 minion +elem min dmg% (H) 0
hireable 19 1 0 0 0 minion +elem max dmg% 0
scarab 20 1 0 0 50 minion +elem max dmg% (N) 0
killself 21 1 0 0 50 minion +elem max dmg% (H) 0
questcomplete 22 1 0 0 33 champion +elem min dmg% 0
poisonhit 23 1 0 0 33 champion +elem min dmg% (N) 0
thief 24 0 0 1 33 champion +elem min dmg% (H) 0
manahit 25 1 0 1 6 6 6 50 champion +elem max dmg% 0
teleport 26 1 0 1 1 6 6 6 50 champion +elem max dmg% (N) 0
spectralhit 27 1 0 1 6 6 6 50 champion +elem max dmg% (H) 0
stoneskin 28 1 0 1 6 6 6 66 unique +elem min dmg% 0
multishot 29 1 0 1 2 6 6 6 66 unique +elem min dmg% (N) 0
aura 30 1 0 0 6 6 6 66 unique +elem min dmg% (H) 0
goboom 31 1 0 0 100 unique +elem max dmg% 0
firespike_explode 32 1 100 0 100 unique +elem max dmg% (N) 0
suicideminion_explode 33 1 100 0 100 unique +elem max dmg% (H) 0
ai_after_death 34 1 100 0 0
shatter_on_death 35 1 100 0 0
ghostly 36 1 100 1 1 1 1 1 0
fanatic 37 1 100 1 1 1 1 1 0
possessed 38 1 100 1 1 1 1 1 0
berserk 39 1 100 1 1 1 1 1 0
worms_on_death 40 1 100 0 0
always_run_ai 41 1 100 0 0
lightningdeath 42 1 100 0 0

18
txt/Npc.txt Normal file
View File

@ -0,0 +1,18 @@
npc buy mult sell mult rep mult questflag A questbuymult A questsellmult A questrepmult A questflag B questbuymult B questsellmult B questrepmult B questflag C questbuymult C questsellmult C questrepmult C max buy max buy (N) max buy (H)
gheed 512 1088 128 4 1024 922 1024 5000 25000 25000
charsi 512 960 128 4 1024 922 1024 5000 25000 25000
akara 512 1024 128 4 1024 922 1024 5000 25000 25000
lysander 512 1024 128 9 1024 922 1024 10000 25000 25000
drognan 512 1024 128 9 1024 922 1024 10000 25000 25000
elzix 512 1024 128 9 1024 922 1024 10000 25000 25000
fara 512 1024 128 9 1024 922 1024 10000 25000 25000
hratli 512 1024 128 17 1024 922 1024 15000 25000 25000
alkor 512 1024 128 17 1024 922 1024 15000 25000 25000
ormus 512 1024 128 17 1024 922 1024 15000 25000 25000
asheara 512 1024 128 17 1024 922 1024 15000 25000 25000
jamella 512 1024 128 41 1024 922 1024 20000 25000 25000
halbu 512 1024 128 41 1024 922 1024 20000 25000 25000
malah 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 25000 25000
drehya 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 25000 25000
larzuk 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 25000 25000
nihlathak town 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 25000 25000

9
txt/ObjMode.txt Normal file
View File

@ -0,0 +1,9 @@
Name Token
Neutral NU
Operating OP
Opened ON
Special1 S1
Special2 S2
Special3 S3
Special4 S4
Special5 S5

575
txt/ObjType.txt Normal file
View File

@ -0,0 +1,575 @@
Name Token Beta
Not Used NU0 0
Casket #5 C5 1
Outdoor Shrine SF 1
Casket #6 C6 1
Urn #1 U1 0
Large Chest R L1 1
Large Chest L L2 1
Barrel B1 1
Tower Tome TT 1
Urn #2 U2 0
Bench BE 1
Barrel Exploding BX 1
Fountain FN 1
Door Gate Left D1 1
Door Gate Right D2 1
Door Wooden Left D3 1
Door Wooden Right D4 1
Stone 1 S1 1
Stone 2 S2 1
Stone 3 S3 1
Stone 4 S4 1
Stone 5 S5 1
Stone 6 S6 1
Door Courtyard Left D5 1
Door Courtyard Right D6 1
Door Cathedral D7 1
Gibbet GI 1
Door Monastery D8 1
Hole in Ground HI 1
Brazier BR 1
Inifuss Tree IT 1
Blood Fountain BF 1
Crucifix Large CL 1
Candles 1 A1 1
Candles 2 A2 1
Standard 1 N1 1
Standard 2 N2 1
Tiki Torch TO 1
Wall Torch WT 1
Rogue Bonfire RB 1
River 1 R1 1
River 2 R2 1
River 3 R3 1
River 4 R4 1
River 5 R5 1
Town 1 Ambient SS 1
Crate CT 1
Andariel Door AD 1
Rogue Torch 1 T1 1
Rogue Torch 2 T2 1
Casket 1 C1 1
Casket 2 C2 1
Urn #3 U3 0
Casket Raised C4 1
Rogue Corpse Z1 1
Rogue Corpse Z2 1
Rogue Rolling Corpse Z5 1
Rogue Staked 1 Z3 1
Rogue Staked 2 Z4 1
Town Portal TP 1
Portal Permanent PP 1
Stone Sound SS 1
Door Small Cathedral D9 1
Door Small Cathedral DA 1
Wooden Door DB 1
River Sound Only 1 X1 1
River Sound Only 1 X2 1
Ripple 1 1R 1
Ripple 2 2R 1
Ripple 3 3R 1
Ripple 4 4R 1
Forest Night 1 F1 1
Forest Night 2 F2 1
Yeti Dung YD 1
Trap Door TD 0
Dock Door DD 0
Sewer Drip SZ 1
ShrineHealth SH 1
Town Ambient SS 1
Casket 3 C3 1
Obelisk 1 OB 1
Forest Altar AF 1
Bubbling pool of blood B2 1
Horn Shrine HS 1
Healing Well HW 1
Bull Shrine BC 0
stele SG 0
tomb chest 1 CA 0
tomb chest 2 CB 0
mummy coffin MC 0
desert obelisk DO 0
tomb door left TL 0
tomb door right TR 0
innerhellmana iz 0
urn #4 U4 0
urn #5 U5 0
innerhellhealth iy 0
innershrine1 ix 0
tomb door left 2 TS 0
tomb door right 2 TU 0
secret door #1 SJ 1
Brazier B3 1
Floor brazier FB 1
flies FL 1
Armor Stand 1 A3 1
Armor Stand 2 A4 1
Weapon Rack 1 W1 1
Weapon Rack 2 W2 1
Malus HM 1
palace shrine P2 0
not used n5 0
Fountain 1 F3 1
not used n6 0
Fountain 2 F4 0
not used n7 0
Fountain 3 F5 1
Snake woman SN 0
jungle torch JT 0
Fountain 4 F6 1
waypoint portal wp 1
dungeonhealwell dj 0
jerhyn ss 0
jerhyn ss 0
innerhellshrine2 iw 0
innerhellshrine3 iv 0
innerhellobject3 iu 0
innerhellobject4 is 0
innerhellobject5 ir 0
hellobject4 hg 0
hidden door 2 h2 0
well zw 1
zzz 9b 0
cwell zc 1
arcane shrine az 1
dshrine2 zs 0
shrine3 zr 0
dshrine1 zd 0
dwell zl 0
cavwell zy 1
chest2 q1 1
chest3 q2 1
chest1 q3 1
jug1 q4 0
jug2 q5 0
Lchest1 q6 1
waypointinnerhell wi 0
dchest2 q9 0
dchestr q7 0
dchestl q8 0
sptomb za 0
templeshrine zv 0
dshrine4 ze 0
seven tomb receptacle HA 0
duriels door DX 0
guard corpse GC 1
rock c7 1
waypoint wm 0
waypoint wn 1
corpse cp 1
rockb cq 1
fire small FX 1
fire medium FY 1
fire large FZ 1
cliff cf 1
mana well1 MB 1
mana well2 MD 1
mana well3 MF 0
mana well4 MH 0
mana well5 MJ 0
log cz 1
jungle healwell JH 0
corpseb sx 1
mana well6 Mk 0
mana well7 Mi 0
rockc RY 1
rockd RZ 1
chesst c8 1
chest c9 1
guardonastick GS 0
bookshelf1 b4 1
bookshelf2 b5 1
jungle chest JC 0
coffin tm 0
jchest jz 0
jshrine jy 0
jobject1 jx 0
jobject3 jw 0
jobject4 jv 0
jobject5 ju 0
cain portal tp 1
jshrine3 js 0
jshrine4 jr 0
teleport pad 7h 0
lam esen's tome ab 0
dstairL 9c 1
dstairr sv 1
test object trap melee a5 1
jshrinewood jq 0
chest c0 1
mafistoshrine1 mz 0
mafistoshrine2 my 0
mafistoshrine3 mx 0
mafistomana mw 0
mobject1 mv 0
mobject2 mu 0
mobject3 mt 0
mafistohealth mr 1
wrok rw 0
basket 1 bd 0
basket 2 bj 0
logw lw 0
wrob wb 0
bubbles yb 0
logx wd 0
rokb wc 0
watc we 0
waty wy 0
logz lx 0
webtree1 w3 0
webtree2 w4 0
webtree3 w5 0
webtree4 w6 0
hobject1 70 0
cacoon CN 0
cacoon 2 CC 0
hobject3 ib 0
hshrine1 ia 0
blgb QX 0
blga qw 0
slimedoor1 SQ 0
slimedoor2 SY 0
hshrine2 ht 0
hshrine3 hq 0
hobject2 hv 0
blgc Qy 0
blgd Qz 0
hhealthwell ho 0
waypointj wz 0
waypointh wv 0
burningbody bz 1
gchest1 cy 1
gchest2 cx 1
gchest3 cu 1
glchest3 cd 1
rnest rn 1
burningbody2 by 1
ratchest ra 1
beda qa 1
bedb qb 1
hell mana shrine hn 0
cowa ew 1
gidbinn altar ga 0
gidbinn decoy gd 0
right light 11 0
left light 12 0
diablo start ss 0
stol s9 1
wdda wg 1
wddb wh 1
skla QS 0
holyshrine HL 1
tombspikes A7 0
cshrine1 s0 1
jashrine1 jb 1
jahshrine jd 1
jamshrine jf 1
goopile GP 0
bank b6 1
wirt's corpse BP 1
gold placement 1g 1
guardcorpse2 GF 0
dead villager 1 dg 0
dead villager 2 df 0
flame1 f8 1
wumpus f9 1
caveheal shrine ce 1
cavemana shrine cg 1
caveshrine cj 1
dungeonmanawell de 0
magicshrine wj 0
sewerhealwell wk 0
sewermanawell wl 0
sewershrine2 ws 0
brazier bi 0
anubiscoffin QC 0
brazier bm 0
brazier bo 0
brazier bq 0
waypoint w7 0
ubed ub 0
iron grate door left dv 0
iron grate door right dn 0
wooden grate door left dp 0
wooden grate door right dt 0
wooden door left dk 0
wooden door right dl 0
tombwalltorchL qd 0
tombwalltorchR qe 0
arcane sanctuary portal ay 0
haramshrine1 hb 0
haramshrine2 hc 0
maggotwellheal qf 0
maggotwellmana qg 0
arcanesantuaryshrine hd 0
teleportpad 7h 0
teleportpad aa 0
teleportpad aa 0
arcane rune #1 7a 0
arcane rune #2 7b 0
arcane rune #3 7c 0
arcane rune #4 7d 0
arcane rune #5 7e 0
arcane rune #6 7f 0
arcane rune #7 7g 0
harem guard 1 qh 0
harem guard 2 qi 0
harem guard 3 qj 0
harem guard 4 qk 0
eunuch ss 0
ahshrine ax 0
amshrine au 0
Not Used pp 0
twell hu 0
swaypoint qm 0
twaypoint ql 0
s3shrine qn 0
ddbody qo 0
stra V1 0
strb V2 0
mchest1L xb 0
mchest1R xc 0
mchest2L xd 0
mchest2R xe 0
schest1L xf 0
schest3L xg 0
schest2r xh 0
schest3r xi 0
steeg stone y6 0
guild vault y4 0
trophy case y2 0
message board y3 0
mbridge xj 0
hellgate 1y 0
kmshrine xl 0
khshrine xm 0
hellfire1 e3 0
hellfire2 e4 0
hellfire3 e5 0
helllava1 e6 0
helllava2 e7 0
helllava3 e8 0
helllightsource1 ss 0
helllightsource2 ss 0
helllightsource3 ss 0
chest xk 0
chest xk 0
chest xk 0
tome tt 0
hell brazier e1 0
hell brazier e2 0
rockpile xn 0
dshrine2 xo 0
dbasket xp 0
hhobject4 xq 0
duda ea 0
dungncasket vb 0
sewerstairs ve 0
sewerlever vf 0
darkwandererstart ss 0
trapped placeholder ss 0
jungletorch2 vg 0
forgottentowerchest L1 1
innerhellbone y1 0
skla Qt 0
rfga ud 0
hellbridge xx 0
fora ux 0
Guild portal pp 1
hratli start ss 0
hratli end ss 0
guyq uy 0
guyq 15 0
Natalya Start ss 0
damnedsoul 18 0
damnedsoul 19 0
cain start ss 0
reallythelastobject sv 0
chest y7 0
casket y8 0
chest y9 0
chest ya 0
chest yc 0
diablo seal 30 0
diablo seal 31 0
diablo seal 32 0
diablo seal 33 0
diablo seal 34 0
sparklechest yf 0
pfwaypoint yg 0
fissure fh 0
hellbrazier he 0
hellsmoke 35 0
waypoint yi 0
hellbrazier 9f 0
compelling orb 55 0
chest xk 0
chest xk 0
chest xk 0
fortress brazier #1 98 0
fortress brazier #2 99 0
Expansion 0
Siege Control zq 0
ptox px 0
pyox py 0
echest 6q 0
eshrine1 6r 0
eshrine2 6s 0
eobject1 3w 0
eflag ym 0
ebarrel yn 0
eexplodingbarrel yo 0
ewoodchest yp 0
eshrine3 yq 0
emanashrine yr 0
ehealthshrine ys 0
eburialchestL yt 0
eburialchestR yu 0
ewell yv 0
eshrine4 yw 0
eshrine2wsnow yx 0
ewaypoint yy 0
echestL yz 0
ewoodchestR 6a 0
echestSL 6b 0
echestSR 6c 0
etorch1 6d 0
ecfra 2w 0
ettr 2x 0
etorch1 6e 0
eburningbodies 6f 0
eburningpit 6g 0
eflag 6h 0
eflg 2y 0
chan 2z 0
ejar1 6i 0
ejar2 6j 0
ejar3 6k 0
eswing 6L 0
epole 6m 0
eshit 6n 0
gate 2v 0
eshit2 6o 0
ehgate 6p 0
banner 1 ao 0
banner 2 ap 0
eexplodingchest 6t 0
specialchest 6u 0
deathpole 6v 0
Ldeathpole 6w 0
Altar 6x 0
dummy ss 0
dummy ss 0
dummy ss 0
dummy ss 0
icecave_obj 6y 0
icecave_health 8a 0
icecave_mana 8b 0
icecave_evilurn 8c 0
icecave_jar1 8d 0
icecave_jar2 8e 0
icecave_jar3 8f 0
icecave_jar4 8g 0
icecave_jar5 8h 0
icecave_shrine2 8i 0
wussiecage ss 0
statue 60 0
statue 61 0
statue 62 0
deadbarbarian 8j 0
client smoke oz 0
icecave_shrine1 8k 0
icecave_torch 8L 0
icecave_torch2 8m 0
ttor 2p 0
baals_manawell 8n 0
baals_healthwell 8o 0
baals_tomb1 8p 0
baals_tomb2 8q 0
baals_tomb3 8r 0
baals_shrine1 8s 0
baals_torch1 8t 0
baals_torch2 8u 0
snowy_mana 8v 0
snowy_health 8w 0
snowy_well 8x 0
baals_waypoint 8y 0
snowy_shrine3 8z 0
wilderness_waypoint 5a 0
snowy_shrine4 5b 0
baals_well 5c 0
baals_shrine2 5d 0
snowy_object1 5e 0
snowy_woodchestL 5f 0
snowy_woodchestR 5g 0
baals_shrine3 5h 0
snowy_woodchest2L 5i 0
snowy_woodchest2R 5j 0
snowy_hangingbodies 5k 0
snowy_debris 5L 0
pene 2q 0
temple_shrine1 5m 0
snowy_mrpole 5n 0
icave_waypoint 5o 0
etemple_shrine2 5t 0
etemple_well 5q 0
etemple_torch1 5r 0
etemple_torch2 5s 0
etemple_object1 5u 0
etemple_object2 5v 0
ebaals_mrbox 5w 0
eicecave_well 5x 0
etemple_shrine3 5y 0
etemple_health 5z 0
etemple_mana 3a 0
dummy ss 0
ebaals_tomb1L 3b 0
ebaals_tomb2L 3c 0
ebaals_tomb3L 3d 0
ubub 2u 0
sbub 2s 0
eredbaals_tomb1 3f 0
eredbaals_tomb1L 3g 0
eredbaals_tomb2 3h 0
eredbaals_tomb2L 3i 0
eredbaals_tomb3 3j 0
eredbaals_tomb3L 3k 0
eredbaals_mrbox 3L 0
eredbaals_torch1 3m 0
eredbaals_torch2 3n 0
etemple_candle 3o 0
etemple_waypoint 3p 0
edeadperson 3q 0
etemple_groundtomb 3s 0
Larzuk Greeting ss 0
Larzuk Standard ss 0
etemple_groundtombL 3t 0
edeadperson2 3u 0
ancientsaltar 4a 0
ancientsdoor 4b 0
eweaponrackR 3x 0
eweaponrackL 3y 0
earmorstandR 3z 0
earmorstandL 4c 0
esummittorch 9g 0
efuneralpire 9h 0
eburninglogs 9i 0
stma 2o 0
edeadperson2L 3v 0
client only thingie ss 0
fana 2n 0
BBQB 29 0
btor 25 0
invisible ancient ss 0
collision ss 0
baalsportal 4x 0
summitdoor 4u 0
lastportal pp 0
onemorelastportal pp 0
zoo ss 0
keeper 7z 0
baalsportal2 4x 0
fireplaceguy 7y 0
dummy ss 0
dummy ss 0

575
txt/Objects.txt Normal file
View File

@ -0,0 +1,575 @@
Name description - not loaded Id Token SpawnMax Selectable0 Selectable1 Selectable2 Selectable3 Selectable4 Selectable5 Selectable6 Selectable7 TrapProb SizeX SizeY nTgtFX nTgtFY nTgtBX nTgtBY FrameCnt0 FrameCnt1 FrameCnt2 FrameCnt3 FrameCnt4 FrameCnt5 FrameCnt6 FrameCnt7 FrameDelta0 FrameDelta1 FrameDelta2 FrameDelta3 FrameDelta4 FrameDelta5 FrameDelta6 FrameDelta7 CycleAnim0 CycleAnim1 CycleAnim2 CycleAnim3 CycleAnim4 CycleAnim5 CycleAnim6 CycleAnim7 Lit0 Lit1 Lit2 Lit3 Lit4 Lit5 Lit6 Lit7 BlocksLight0 BlocksLight1 BlocksLight2 BlocksLight3 BlocksLight4 BlocksLight5 BlocksLight6 BlocksLight7 HasCollision0 HasCollision1 HasCollision2 HasCollision3 HasCollision4 HasCollision5 HasCollision6 HasCollision7 IsAttackable0 Start0 Start1 Start2 Start3 Start4 Start5 Start6 Start7 EnvEffect IsDoor BlocksVis Orientation Trans OrderFlag0 OrderFlag1 OrderFlag2 OrderFlag3 OrderFlag4 OrderFlag5 OrderFlag6 OrderFlag7 PreOperate Mode0 Mode1 Mode2 Mode3 Mode4 Mode5 Mode6 Mode7 Yoffset Xoffset Draw Red Green Blue HD TR LG RA LA RH LH SH S1 S2 S3 S4 S5 S6 S7 S8 TotalPieces SubClass Xspace Yspace NameOffset MonsterOK OperateRange ShrineFunction Restore Parm0 Parm1 Parm2 Parm3 Parm4 Parm5 Parm6 Parm7 Act Lockable Gore Sync Flicker Damage Beta Overlay CollisionSubst Left Top Width Height OperateFn PopulateFn InitFn ClientFn RestoreVirgins BlockMissile DrawUnder OpenWarp AutoMap
Dummy test data 0 NU0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Casket Casket #5 1 C5 1 1 0 0 0 0 0 0 0 20 5 3 0 3 0 0 1 7 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 6 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 5 5 -90 1 6 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0
Shrine Shrine 2 SF 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 21 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 20 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -145 0 2 0 1 3 84 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 3 84 0 0 2 2 1 0 0 0 0 0 310
Casket Casket #6 3 C6 1 1 0 0 0 0 0 0 0 0 5 3 0 3 0 0 1 7 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 6 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 5 5 -73 1 4 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0
LargeUrn Urn #1 4 U1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 8 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -57 1 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
chest LargeChestR 5 L1 2 1 0 0 0 0 0 0 0 15 1 2 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -50 1 2 0 1 15 0 0 0 0 0 0 0 7 1 0 1 0 100 1 0 0 15 0 0 0 4 3 3 0 1 0 0 0 0
chest LargeChestL 6 L2 2 1 0 0 0 0 0 0 0 15 2 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -50 1 2 0 1 15 0 0 0 0 0 0 0 7 1 0 1 0 100 1 0 0 15 0 0 0 4 3 3 0 1 0 0 0 0
Barrel Barrel 7 B1 1 1 0 0 1 1 1 1 1 0 1 1 0 0 0 0 1 10 1 0 0 0 0 0 210 160 0 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 9 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 2 -70 1 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 5 4 0 0 1 0 1 0 0
TowerTome Tower Tome 8 TT 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 1 3 1 1 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 6 0 4 0 0 0 0 0 427
Urn Urn #2 9 U2 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 8 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 -70 1 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
Dummy Bench 10 BE 0 0 0 0 0 0 0 0 0 0 7 1 0 0 0 0 1 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barrel BarrelExploding 11 BX 1 1 0 0 1 1 1 1 1 0 1 1 0 0 0 0 1 9 1 0 0 0 0 0 210 160 0 256 256 256 256 256 0 0 0 0 0 0 0 0 0 11 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 9 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 2 2 -70 1 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 7 0 0 0 1 0 1 0 0
Dummy RogueFountain 12 FN 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 9 0 0 0 0 0 0 0 128 256 256 256 256 256 256 256 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Door Door Gate Left 13 D1 0 1 0 1 0 1 1 1 1 0 1 3 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 2 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 4 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 5 0 0 0 0 0 0
Door Door Gate Right 14 D2 0 1 0 1 0 1 1 1 1 0 3 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 4 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 0 0 0 0
Door Door Wooden Left 15 D3 0 1 0 1 0 1 1 1 1 0 1 3 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 2 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 4 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Door Door Wooden Right 16 D4 0 1 0 1 0 1 1 1 1 0 3 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 3 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
StoneAlpha StoneAlpha 17 S1 0 1 0 1 0 1 1 1 1 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 6 0 0 0 0 0 314
StoneBeta StoneBeta 18 S2 0 1 0 1 0 1 1 1 1 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 6 0 0 0 0 0 314
StoneGamma StoneGamma 19 S3 0 1 0 1 0 1 1 1 1 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 6 0 0 0 0 0 314
StoneDelta StoneDelta 20 S4 0 1 0 1 0 1 1 1 1 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 6 0 0 0 0 0 314
StoneLambda StoneLambda 21 S5 0 1 0 1 0 1 1 1 1 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 6 0 0 0 0 0 314
StoneTheta StoneTheta 22 S6 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 0 0 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 0 0 0 0 0 0 314
Door Door Courtyard Left 23 D5 0 1 0 1 0 1 1 1 1 0 1 7 0 0 0 0 1 3 1 3 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 0 1 1 2 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 1 0 1 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Door Door Courtyard Right 24 D6 0 1 0 1 0 1 1 1 1 0 7 1 0 0 0 0 1 3 1 3 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 1 0 1 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Door Door Cathedral Double 25 D7 0 1 0 1 0 1 1 1 1 0 9 1 0 0 0 0 1 4 1 4 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 1 0 -11 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Gibbet Cain's Been Captured 26 GI 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 4 28 1 1 0 0 0 0 14 90 0 0 128 128 128 128 1 0 0 0 0 0 0 0 5 10 5 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 28 29 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 15 -14 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 10 0 7 0 0 0 0 0 0
Door Door Monastery Double Right 27 D8 0 1 0 1 0 1 1 1 1 0 7 1 0 0 0 0 1 4 1 4 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 1 0 1 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
HoleAnim Hole in Ground 28 HI 1 1 0 0 0 0 0 0 0 0 5 3 0 3 0 0 1 9 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
Dummy Brazier 29 BR 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 20 20 0 0 0 0 0 200 200 200 200 200 200 200 50 0 0 1 0 0 0 0 0 0 19 18 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -90 0 2 0 1 0 0 0 0 0 5 2 0 7 0 0 0 1 100 1 0 0 0 0 0 0 11 0 8 0 0 0 0 0 0
Inifuss inifuss tree 30 IT 1 1 0 0 0 0 0 0 0 0 5 5 0 3 0 0 1 1 1 1 1 1 1 1 50 50 59 50 50 50 50 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -250 0 6 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 1 -40 -40 80 80 12 0 9 0 0 0 0 0 313
Dummy Fountain 31 BF 1 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 6 6 0 0 0 0 0 0 60 60 128 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy crucifix 32 CL 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Candles1 33 A1 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 10 10 10 10 10 10 10 10 128 256 256 256 256 256 256 256 1 0 0 0 0 0 0 0 18 18 18 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 213 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 1 0 0 0 1 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy Candles2 34 A2 0 0 0 0 0 0 0 0 0 0 1 3 0 0 0 0 10 10 10 10 10 10 10 10 128 256 256 256 256 256 256 256 1 0 0 0 0 0 0 0 18 18 18 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 213 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 1 0 0 0 1 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy Standard1 35 N1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 10 10 10 10 10 10 10 10 128 256 256 256 256 256 256 256 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Standard2 36 N2 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 10 10 10 10 10 10 10 10 128 256 256 256 256 256 256 256 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy Torch1 Tiki 37 TO 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 10 20 20 20 20 20 10 200 200 200 256 256 256 256 256 0 0 1 0 0 0 0 0 0 19 19 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 7 0 0 0 0 100 1 0 0 0 0 0 0 13 0 8 0 0 0 0 0 0
Dummy Torch2 Wall 38 WT 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 10 10 10 10 10 10 10 256 256 256 256 256 256 256 256 0 1 1 0 0 0 0 0 17 19 19 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 1 0 0 0 1 100 1 0 0 0 0 0 0 11 0 8 0 0 0 0 0 0
fire RogueBonfire 39 RB 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 10 20 20 20 10 10 10 10 128 256 256 256 256 256 256 256 1 1 1 0 0 0 0 0 0 19 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 6 2 0 1 0 0 0 1 100 1 0 0 0 0 0 0 0 0 0 14 0 0 0 0 0
Dummy River1 40 R1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 8 8 8 8 8 8 128 256 256 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -9 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy River2 41 R2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 8 8 8 8 8 8 128 256 256 256 256 256 256 256 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -9 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy River3 42 R3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 8 8 8 8 8 8 128 256 256 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -9 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy River4 43 R4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 8 8 8 8 8 8 128 256 256 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -9 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy River5 44 R5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 8 8 8 8 1 8 8 128 256 256 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 -9 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
AmbientSound ambient sound generator 45 S1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0
Crate Crate 46 CT 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 8 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 2 -45 1 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 14 5 0 0 0 0 1 0 0
Door Andariel's Door 47 AD 0 1 0 1 0 1 1 1 1 0 7 1 0 0 0 0 1 4 1 4 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 1 0 1 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Dummy RogueTorch 48 T1 0 0 0 0 0 0 0 0 0 0 2 1 0 0 0 0 9 9 9 9 9 9 9 9 256 256 256 256 256 256 256 256 1 1 1 1 1 1 1 1 19 19 19 17 17 17 17 17 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 1 0 0 0 1 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy RogueTorch 49 T2 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 9 9 9 9 9 9 9 9 256 256 256 256 256 256 256 256 1 1 1 1 1 1 1 1 19 19 19 17 17 17 17 17 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 1 0 0 0 1 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Casket CasketR 50 C1 1 1 0 0 0 0 0 0 0 0 5 3 0 3 0 0 1 4 1 1 1 1 1 1 256 80 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 4 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 9 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -70 1 4 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0
Casket CasketL 51 C2 1 1 0 0 0 0 0 0 0 0 3 5 3 0 0 0 1 4 1 1 1 1 1 1 256 80 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 4 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -70 1 4 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0
Urn Urn #3 52 U3 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 8 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -45 1 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
Casket Casket 53 C4 1 1 0 0 0 0 0 0 0 0 5 3 0 3 0 0 1 4 1 1 1 1 1 1 256 80 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 4 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 4 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 5 5 -90 1 4 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0
RogueCorpse Rogue corpse 1 54 Z1 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 100 1 0 0 0 0 0 0 14 6 0 0 1 0 2 0 0
RogueCorpse Rogue corpse 2 55 Z2 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 100 1 0 0 0 0 0 0 14 6 0 0 1 0 2 0 0
RogueCorpse rolling rogue corpse 56 Z5 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 7 1 0 0 0 0 0 192 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 7 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 100 1 0 0 0 0 0 0 14 6 0 0 1 0 2 0 0
CorpseOnStick rogue on a stick 1 57 Z3 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 0 0 0 0 0 192 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 9 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -100 1 2 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 100 1 0 0 0 0 0 0 14 7 0 0 1 0 0 0 0
CorpseOnStick rogue on a stick 2 58 Z4 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 0 0 0 0 0 192 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 9 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -100 1 2 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 100 1 0 0 0 0 0 0 14 7 0 0 1 0 0 0 0
Portal Town portal 59 TP 0 0 0 1 0 0 0 0 0 0 4 4 0 0 0 0 0 15 15 15 0 0 0 0 200 200 200 200 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 1 120 120 255 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 0 0 -70 0 2 0 0 0 0 0 0 0 5 2 0 15 0 0 0 1 100 1 0 1 -40 -100 80 110 15 0 11 0 0 0 0 0 0
Portal Permanent town portal 60 PP 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 15 15 15 0 0 0 0 200 200 200 200 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 255 120 120 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 15 0 0 1 1 100 1 0 1 -40 -100 80 110 15 0 12 0 0 0 0 0 0
Dummy Invisible object 61 SS 0 0 0 0 0 0 0 0 0 0 5 5 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 13 0 0 0 0 0 0
Door Door Cathedral Left 62 D9 0 1 0 1 0 1 1 1 1 0 1 4 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 2 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 1 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Door Door Cathedral Right 63 DA 0 1 0 1 0 1 1 1 1 0 4 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 1 1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Door Door Wooden Left #2 64 DB 0 1 0 1 0 1 1 1 1 0 1 4 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 2 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 4 -1 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 1 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Dummy invisible river sound1 65 X1 0 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 1 0 0 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy invisible river sound2 66 X2 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 1 0 0 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy ripple 67 1R 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0
Dummy ripple 68 2R 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0
Dummy ripple 69 3R 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0
Dummy ripple 70 4R 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 3 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0
Dummy forest night sound #1 71 F1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy forest night sound #2 72 F2 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy yeti dung 73 YD 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Trap Door Trap Door 74 TD 0 1 0 1 0 0 0 0 0 0 3 3 0 0 0 0 1 1 1 1 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 16 0 0 0 0 0 2 1 223
Door "Door by Dock, Act 2" 75 DD 0 1 0 1 0 1 1 1 1 0 1 3 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 1 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 6 0 1 -20 -80 40 40 0 0 0 0 2 0 0 1 0 100 0 0 0 -20 -80 40 40 8 0 0 0 0 0 0 0 0
Dummy sewer drip 76 SZ 0 0 0 0 0 0 0 0 0 0 5 5 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Shrine healthorama 77 SH 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 16 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -70 0 2 0 1 1 84 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 1 84 0 0 2 2 1 0 0 0 0 0 310
Dummy invisible town sound 78 TA 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 3 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Casket casket #3 79 C3 1 1 0 0 0 0 0 0 0 0 4 6 3 0 0 0 1 7 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 6 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 -4 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 6 8 -80 1 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0
Obelisk obelisk 80 OB 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 24 1 1 0 0 0 0 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 2 0 0 -235 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 17 3 0 0 0 0 0 0 0
Shrine forest altar 81 AF 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 10 21 1 0 0 0 0 0 128 128 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 17 7 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 20 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -120 0 2 0 1 3 84 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 3 84 0 0 2 2 1 0 0 0 0 0 310
Dummy bubbling pool of blood 82 B2 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 17 0 0 0 0 0 0 0 64 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Shrine horn shrine 83 HS 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 21 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 20 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -20 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -120 0 2 0 1 3 84 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 3 84 0 0 2 2 1 0 0 0 0 0 310
Shrine healing well 84 HW 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 16 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 84 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 1 84 0 0 2 2 1 0 0 0 0 0 310
Shrine "bull shrine,health, tombs" 85 BC 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -85 0 2 0 1 1 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 1 85 0 0 2 2 1 0 0 0 0 0 310
Dummy "stele,magic shrine, stone, desert" 86 SG 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 180 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -150 0 2 0 1 3 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 3 85 0 0 2 2 1 0 0 0 0 0 310
Chest3 "tombchest 1, largechestL" 87 CA 2 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 2 1 0 1 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
Chest3 tombchest 2 largechestR 88 CB 2 1 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 2 1 0 1 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
Sarcophagus "mummy coffinL, tomb" 89 MC 0 1 0 0 0 0 0 0 0 0 3 5 3 0 0 0 1 7 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 5 5 -65 1 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0
Obelisk desert obelisk 90 DO 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 17 1 0 0 0 0 0 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 -220 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 17 2 1 0 0 0 0 0 0
Door tomb door left 91 TL 0 1 0 1 0 1 1 1 1 0 1 7 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 0 1 1 2 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 0 0 -8 -11 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 2 0 0 1 0 100 0 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Door tomb door right 92 TR 0 1 0 1 0 1 1 1 1 0 7 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 0 0 2 18 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 2 0 0 1 0 100 0 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Shrine mana shrineforinnerhell 93 iz 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 11 15 1 0 0 0 0 0 160 160 160 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 1 0 0 -60 0 2 0 1 2 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 2 0 0 0 2 2 1 0 0 0 0 0 310
LargeUrn Urn #4 94 U4 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 6 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
LargeUrn Urn #5 95 U5 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 6 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
Shrine health shrineforinnerhell 96 iy 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 11 15 1 0 0 0 0 0 160 160 160 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 2 1 0 0 -60 0 2 0 1 1 96 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 1 96 0 0 2 2 1 0 0 0 0 0 310
Shrine innershrinehell 97 ix 0 1 0 0 0 0 0 0 0 0 4 4 0 0 0 0 1 13 1 1 0 0 0 0 160 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 3 0 0 0 2 2 1 0 0 0 0 0 310
Door tomb door left 2 98 TS 0 1 0 1 0 1 1 1 1 0 1 7 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 0 1 1 2 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 2 0 0 1 0 100 0 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Door tomb door right 2 99 TU 0 1 0 1 0 1 1 1 1 0 7 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 2 0 0 1 0 100 0 0 0 -20 -80 40 40 8 0 0 0 0 1 0 0 0
Duriel's Lair Portal to Duriel's Lair 100 SJ 0 1 1 1 1 0 0 0 0 0 1 3 0 0 0 0 1 16 1 0 0 0 0 0 200 200 200 256 256 256 256 256 0 0 0 0 0 0 0 0 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 -38 -14 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 -40 -80 80 80 43 0 0 0 0 0 0 0 0
Dummy Brazier3 101 B3 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 20 1 0 0 0 0 0 200 200 200 200 200 200 200 50 0 1 0 0 0 0 0 0 0 17 18 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -45 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 0 0 100 1 0 0 0 0 0 0 11 0 14 0 0 0 0 0 0
Dummy Floor brazier 102 FB 1 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 20 20 0 0 0 0 0 200 200 200 200 200 200 200 50 1 0 1 0 0 0 0 0 0 17 18 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -43 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 0 0 100 1 0 0 0 0 0 0 11 0 8 0 0 0 0 0 0
Dummy flies 103 FL 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 12 0 0 0 0 0 0 0 256 256 256 256 256 256 256 256 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ArmorStand Armor Stand 1R 104 A3 2 1 0 0 0 0 0 0 0 0 2 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 7 0 0 1 0 100 1 0 0 0 0 0 0 19 0 0 0 1 0 0 0 0
ArmorStand Armor Stand 2L 105 A4 2 1 0 0 0 0 0 0 0 0 1 2 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 7 0 0 1 0 100 1 0 0 0 0 0 0 19 0 0 0 1 0 0 0 0
WeaponRack Weapon Rack 1R 106 W1 2 1 0 0 0 0 0 0 0 0 2 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 7 0 0 1 0 100 1 0 0 0 0 0 0 20 0 0 0 1 0 0 0 0
WeaponRack Weapon Rack 2L 107 W2 2 1 0 0 0 0 0 0 0 0 1 2 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 7 0 0 1 0 100 1 0 0 0 0 0 0 20 0 0 0 1 0 0 0 0
Malus Malus 108 HM 0 1 0 0 0 0 0 0 0 0 2 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 21 0 15 0 0 0 0 0 316
Shrine "palace shrine, healthR, harom, arcane Sanctuary" 109 P2 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 109 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 1 109 0 0 2 2 1 0 0 0 0 0 310
not used drinker 110 n5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 21 0 0 0 0 72 256 256 72 256 256 256 256 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 -10 -35 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 0 8 16 4 0 0 0 0 0
well Fountain 1 111 F3 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 10 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
not used gesturer 112 n6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 15 25 0 0 0 87 256 256 80 192 256 256 256 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 10 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 0 8 16 5 0 0 0 0 0
well "Fountain 2, well, desert, tomb" 113 F4 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 10 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
not used turner 114 n7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 21 0 0 0 0 144 256 256 160 256 256 256 256 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 -5 -5 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 0 8 16 6 0 0 0 0 0
well Fountain 3 115 F5 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 10 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
Shrine "snake woman, magic shrine, tomb, arcane sanctuary" 116 SN 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 20 20 1 0 0 0 0 0 128 128 0 0 0 0 0 0 1 0 0 0 0 0 0 0 10 17 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 190 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -120 0 2 0 1 3 109 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 3 109 0 0 2 2 1 0 0 0 0 0 310
Dummy jungle torch 117 JT 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 29 0 0 0 0 0 256 256 256 200 200 200 200 50 0 0 1 0 0 0 0 0 0 19 18 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -90 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 0 0 0 0 0 0 0 11 0 8 0 0 0 0 0 0
Well Fountain 4 118 F6 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 10 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 5 0 0 1 0 100 1 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
Waypoint waypoint portal 119 wp 0 1 0 1 0 0 0 0 0 0 5 5 0 0 0 0 1 15 8 0 0 0 0 0 200 200 200 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 1 0 0 1 1 100 1 0 0 0 0 0 0 23 0 17 0 0 0 0 0 0
Dummy "healthshrine, act 3, dungeun" 120 dj 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 17 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 120 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 1 120 0 0 2 2 1 0 0 0 0 0 310
jerhyn placeholder #1 121 ss 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 11 0 18 0 0 0 0 0 0
jerhyn placeholder #2 122 ss 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 11 0 19 0 0 0 0 0 0
Shrine innershrinehell2 123 iw 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 96 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 3 96 0 0 2 2 1 0 0 0 0 0 310
Shrine innershrinehell3 124 iv 0 1 0 0 0 0 0 0 0 0 4 3 0 0 0 0 15 15 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -235 0 2 0 1 3 96 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 3 96 0 0 2 2 1 0 0 0 0 0 310
hidden stash ihobject3 inner hell 125 iu 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 13 13 1 0 0 0 0 0 128 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
skull pile skullpile inner hell 126 is 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 13 1 0 0 0 0 0 128 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
hidden stash ihobject5 inner hell 127 ir 1 1 0 0 0 0 0 0 0 15 4 4 0 0 0 0 1 13 1 0 0 0 0 0 128 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
hidden stash hobject4 inner hell 128 hg 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 13 1 0 0 0 0 0 128 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
Door secret door 1 129 h2 0 1 0 0 0 0 0 0 0 0 1 5 0 0 0 0 1 15 1 0 0 0 0 0 256 128 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -70 0 3 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 0 0 0 0 18 0 0 0 0 1 0 0 0
Well pool act 1 wilderness 130 zw 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 1 0 0 0 0 0 128 128 128 128 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 32 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 1 0 0 1 0 100 1 0 0 750 128 1 3 22 8 16 0 0 0 0 0 309
Dummy vile dog afterglow 131 9b 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 0 0 59 0 0 0 0 0 0
Well cathedralwell act 1 inside 132 zc 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 1 0 0 0 0 0 128 128 128 128 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 32 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 3 0 0 1 0 100 1 0 0 750 128 1 3 22 8 16 0 0 0 0 0 309
shrine shrine1_arcane sanctuary 133 xx 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 8 8 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 4 1 0 0 -235 0 2 0 1 3 319 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 3 85 0 0 2 2 1 0 0 0 0 0 310
shrine dshrine2 act 2 shrine 134 zs 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 1 10 1 1 0 0 0 0 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 3 85 0 0 2 2 1 0 0 0 0 0 310
shrine desertshrine3 act 2 shrine 135 zr 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 -235 0 2 0 1 3 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 3 85 0 0 2 2 1 0 0 0 0 0 310
shrine dshrine1 act 2 shrine 136 zd 0 1 0 0 0 0 0 0 0 0 6 3 0 0 0 0 1 10 1 1 0 0 0 0 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 -235 0 2 0 1 3 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 3 85 0 0 2 2 1 0 0 0 0 0 310
Well "desertwell act 2 well, desert, tomb" 137 zl 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 1 0 0 0 0 0 128 128 0 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 32 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 2 0 0 1 0 100 0 0 0 750 128 1 3 22 8 16 0 0 0 0 0 309
Well cavewell act 1 caves 138 zy 0 1 1 0 0 0 0 0 0 0 4 4 0 0 0 0 10 10 1 0 0 0 0 0 128 128 128 128 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 32 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 1 0 0 1 0 100 1 0 0 750 128 1 3 22 8 16 0 0 0 0 0 309
chest chest-r-large act 1 139 q1 1 1 0 0 0 0 0 0 0 15 3 2 0 0 0 0 1 3 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest chest-r-tallskinney act 1 140 q2 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 3 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest chest-r-med act 1 141 q3 1 1 0 0 0 0 0 0 0 15 3 2 0 0 0 0 1 3 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
jug "jug1 act 2, desert" 142 q4 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 1 0 1 0 0
jug "jug2 act 2, desert" 143 q5 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 1 0 1 0 0
chest Lchest1 act 1 144 q6 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
Waypoint waypointi inner hell 145 wi 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 200 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 8 0 0 1 1 100 0 0 0 0 0 0 0 23 0 17 0 0 0 0 0 0
chest "dchest2R act 2, desert, tomb, chest-r-med" 146 q9 1 1 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 3 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 3 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest "dchestr act 2, desert, tomb, chest -r large" 147 q7 1 1 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 3 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 3 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest "dchestL act 2, desert, tomb chest l large" 148 q8 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 3 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 3 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
taintedsunaltar tainted sun altar quest 149 za 0 1 0 0 0 0 0 0 0 0 4 2 0 0 0 0 1 11 1 1 0 0 0 0 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 -235 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 1 0 0 0 0 0 24 0 20 0 0 0 0 0 0
shrine "dshrine1 act 2 , desert" 150 zv 0 1 0 0 0 0 0 0 0 0 5 5 0 0 0 0 8 8 1 1 0 0 0 0 140 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 3 85 0 0 2 2 1 0 0 0 0 0 310
shrine "dshrine4 act 2, desert" 151 ze 0 1 0 0 0 0 0 0 0 0 5 4 0 0 0 0 1 10 1 1 0 0 0 0 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 3 85 0 0 2 2 1 0 0 0 0 0 310
orifice Where you place the Horadric staff 152 HA 0 1 1 1 0 0 0 0 0 0 3 3 0 0 0 0 1 1 1 1 1 0 0 0 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25 25 25 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 1 0 0 0 0 0 25 0 21 8 0 0 0 0 0
Door tyrael's door 153 DX 0 0 0 0 0 0 0 0 0 0 1 5 0 0 0 0 1 12 1 12 1 1 1 1 200 200 200 200 200 200 200 200 0 0 0 0 0 0 0 0 0 18 18 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 1 0 0 0 0 0 0 0 0 12 0 0 0 0 0 0 1 2 0 2 2 2 2 2 2 2 2 0 1 1 1 1 1 1 0 0 -18 -8 1 255 190 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 6 0 1 -20 -80 40 40 0 0 0 0 2 0 0 1 0 100 0 0 0 -20 -80 40 40 0 0 38 0 0 1 0 0 0
corpse guard corpse 154 GC 1 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 10 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 3 0 0 1 0 100 0 0 0 0 0 0 0 14 6 0 0 0 0 0 0 0
hidden stash rock act 1 wilderness 155 c7 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 2 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
Waypoint waypoint act 2 156 wm 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 2 0 0 1 1 100 0 0 0 0 0 0 0 23 3 17 0 0 0 0 0 0
Waypoint waypoint act 1 wilderness 157 wn 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 1 0 0 1 1 100 1 0 0 0 0 0 0 23 3 17 0 0 0 0 0 0
skeleton corpse 158 cp 1 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
hidden stash rockb act 1 wilderness 159 cq 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
fire fire small 160 FX 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 26 0 0 0 0 0 0 256 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 0 0 100 1 0 0 0 0 0 0 11 0 22 0 0 0 0 0 0
fire fire medium 161 FY 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 26 0 0 0 0 0 0 256 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 0 0 100 1 0 0 0 0 0 0 11 0 22 0 0 0 0 0 0
fire fire large 162 FZ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 26 0 0 0 0 0 0 256 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 1 0 0 0 0 0 0 0 15 0 0 0 0 100 1 0 0 1 0 0 0 11 0 22 0 0 0 0 0 0
hiding spot cliff act 1 wilderness 163 cf 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
Shrine mana well1 164 MB 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 85 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 2 85 0 0 2 2 1 0 0 0 0 0 310
Shrine mana well2 165 MD 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 77 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 2 77 0 0 2 2 1 0 0 0 0 0 310
Shrine "mana well3, act 2, tomb, " 166 MF 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 2 85 0 0 2 2 1 0 0 0 0 0 310
Shrine "mana well4, act 2, harom" 167 MH 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 85 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 2 85 0 0 2 2 1 0 0 0 0 0 310
Shrine mana well5 168 MJ 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 85 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 2 85 0 0 2 2 1 0 0 0 0 0 310
hollow log log 169 cz 0 1 0 0 0 0 0 0 0 0 5 1 0 3 0 0 1 1 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
Shrine jungle healwell act 3 170 JH 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 170 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 1 170 0 0 2 2 1 0 0 0 0 0 310
skeleton corpseb 171 sx 1 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 18 0 0 0 14 3 2 0 1 0 0 0 0
Shrine "health well, health shrine, desert" 172 Mk 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 172 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 1 172 0 0 2 2 1 0 0 0 0 0 310
Shrine "mana well7, mana shrine, desert" 173 Mi 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 172 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 2 172 0 0 2 2 1 0 0 0 0 0 310
loose rock rockc act 1 wilderness 174 RY 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 1 -18 -20 36 30 14 3 0 0 0 0 0 0 0
loose boulder rockd act 1 wilderness 175 RZ 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
chest chest-L-med 176 c8 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest chest-L-large 177 c9 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
GuardCorpse "guard on a stick, desert, tomb, harom" 178 GS 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 7 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 3 0 1 1 0 100 1 0 0 0 0 0 0 14 6 2 0 1 0 0 0 0
bookshelf bookshelf1 179 b4 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 26 3 2 0 1 0 0 0 0
bookshelf bookshelf2 180 b5 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 26 3 2 0 1 0 0 0 0
chest jungle chest act 3 181 JC 2 1 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 4 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
coffin tombcoffin 182 tm 0 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 2 1 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
chest "chest-L-med, jungle" 183 jz 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 4 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
Shrine jungle shrine2 184 jy 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 184 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 184 0 0 2 2 1 0 0 0 0 0 310
stash jungle object` act3 185 jx 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 3 1 0 0 0 0 0 0 180 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 11 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 51 3 2 0 1 0 0 0 0
stash jungle object` act3 186 jw 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 16 1 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 34 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 51 3 2 0 1 0 0 0 0
stash jungle object` act3 187 jv 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 14 1 0 0 0 0 0 0 350 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 13 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 51 3 2 0 1 0 0 0 0
stash jungle object` act3 188 ju 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 16 1 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 33 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 51 3 2 0 1 0 0 0 0
Dummy cain portal 189 tP 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 15 9 15 1 0 0 0 160 200 160 160 0 0 0 0 0 0 1 1 0 0 0 0 0 18 19 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 14 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 1 100 100 255 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 61 0 0 0 0 0 0
Shrine jungle shrine3 act 3 190 js 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 184 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 184 0 0 2 2 1 0 0 0 0 0 310
Shrine jungle shrine4 act 3 191 jr 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 184 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 184 0 0 2 2 1 0 0 0 0 0 310
teleport pad teleportation pad 192 7h 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 30 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 1 -30 -80 60 80 27 3 0 0 0 0 0 0 0
LamTome Lam Esen's Tome 193 ab 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 3 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 28 3 23 0 0 0 0 0 427
stair stairsl 194 sl 0 1 0 1 0 0 0 0 0 15 6 10 0 0 0 0 1 9 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 5 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 0 0 0 0 47 3 0 0 0 0 0 1 694
stair stairsr 195 sv 0 1 0 1 0 0 0 0 0 15 10 6 0 0 0 0 1 9 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 5 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 0 0 0 0 47 3 0 0 0 0 0 1 693
a trap test data floortrap 196 a5 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 30 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 -18 2 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 0 0 0 0 11 3 24 0 0 0 0 0 0
Shrine jungleshrine act 3 197 jq 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 184 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 184 0 0 2 2 1 0 0 0 0 0 310
chest "chest-L-tallskinney, general chest r?" 198 c0 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
Shrine mafistoshrine 199 mz 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
Shrine mafistoshrine 200 my 0 1 0 0 0 0 0 0 0 0 5 3 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
Shrine mafistoshrine 201 mx 0 1 0 0 0 0 0 0 0 0 4 4 0 0 0 0 13 13 1 1 0 0 0 0 160 160 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
Shrine mafistomana 202 mw 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 1 17 1 1 0 0 0 0 256 125 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -235 0 2 0 1 2 206 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 2 206 0 0 2 2 1 0 0 0 0 0 310
stash mafistolair 203 mv 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
stash box 204 mu 1 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 3 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
stash altar 205 mt 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 13 3 1 0 0 0 0 0 256 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
Shrine mafistohealth 206 mr 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 1 17 1 1 0 0 0 0 256 125 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -200 0 2 0 1 1 206 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 1 206 0 0 2 2 1 0 0 0 0 0 310
dummy water rocks in act 3 wrok 207 rw 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Basket basket 1 208 bd 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -70 1 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 3 1 2 0 0 0 1 0 0
Basket basket 2 209 bj 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 9 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -70 1 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 3 1 2 0 0 0 1 0 0
Dummy water logs in act 3 ne logw 210 lw 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy water rocks girl in act 3 wrob 211 wb 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy bubbles in act3 water 212 yb 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 20 0 0 0 0 0 0 0 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy water logs in act 3 logx 213 wd 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy water rocks in act 3 rokb 214 wc 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy water rocks girl in act 3 watc 215 we 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy water rocks in act 3 waty 216 wy 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy water logs in act 3 logz 217 lx 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy web covered tree 1 218 w3 1 0 0 0 0 0 0 0 0 15 3 9 0 0 0 0 1 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0
Dummy web covered tree 2 219 w4 1 0 0 0 0 0 0 0 0 15 9 3 0 0 0 0 1 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0
Dummy web covered tree 3 220 w5 1 0 0 0 0 0 0 0 0 15 3 3 0 0 0 0 1 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0
Dummy web covered tree 4 221 w6 1 0 0 0 0 0 0 0 0 15 3 3 0 0 0 0 1 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0
pillar hobject1 222 70 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 13 12 1 0 0 0 0 0 128 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
cocoon cacoon 223 CN 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 16 5 0 0 0 0 0 0 128 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 255 4 0 0 1 0 100 0 0 0 18 0 0 0 14 3 2 0 0 0 0 0 0
cocoon cacoon 2 224 CC 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 5 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 255 4 0 0 1 0 100 0 0 0 18 0 0 0 14 3 2 0 0 0 0 0 0
skullpile hobject1 225 ib 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 21 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 1 0 0 0 0
Shrine outershrinehell 226 ia 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 1 13 1 1 0 0 0 0 160 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 96 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 3 96 0 0 2 2 1 0 0 0 0 0 310
dummy water rock girl act 3 nw blgb 227 QX 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
dummy big log act 3 sw blga 228 qw 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
door slimedoor1 229 SQ 0 1 0 0 0 0 0 0 0 0 7 1 0 0 0 0 1 14 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 0 2 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 5 20 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 5 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 29 3 0 0 0 1 0 0 0
door slimedoor2 230 SY 0 1 0 0 0 0 0 0 0 0 1 7 0 0 0 0 1 14 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 2 0 2 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 3 -23 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 5 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 29 3 0 0 0 1 0 0 0
Shrine outershrinehell2 231 ht 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 1 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 96 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 3 96 0 0 2 2 1 0 0 0 0 0 310
Shrine outershrinehell3 232 hq 0 1 0 0 0 0 0 0 0 0 4 4 0 0 0 0 15 15 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -235 0 2 0 1 3 96 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 3 96 0 0 2 2 1 0 0 0 0 0 310
pillar hobject2 233 hv 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 13 13 1 0 0 0 0 0 150 150 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
dummy Big log act 3 se blgc 234 Qy 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
dummy Big log act 3 nw blgd 235 Qz 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 10 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Shrine health wellforhell 236 ho 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 11 15 1 0 0 0 0 0 160 160 160 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 1 0 0 -60 0 2 0 1 1 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 18 0 0 0 2 2 1 0 0 0 0 0 310
Waypoint act3waypoint town 237 wz 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 4 0 0 1 1 100 0 0 0 0 0 0 0 23 3 17 0 0 0 0 0 0
Waypoint waypointh 238 wv 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 8 0 0 1 1 100 0 0 0 0 0 0 0 23 3 17 0 0 0 0 0 0
body burning town 239 bz 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 0 9 14 0 0 0 0 0 0 640 160 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
chest gchest1L general 240 cy 1 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest gchest2R general 241 cx 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest gchest3R general 242 cu 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest glchest3L general 243 cd 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
ratnest sewers 244 rn 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 10 1 0 0 0 0 0 0 640 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 254 3 0 0 1 0 100 1 0 0 18 0 0 0 14 3 2 0 1 0 0 0 0
body burning town 245 by 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 15 0 0 0 0 0 0 0 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 1 0 0 0 0 3 22 0 1 0 0 0 0
ratnest sewers 246 ra 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 10 1 0 0 0 0 0 0 640 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 254 3 0 0 1 0 100 1 0 0 18 0 0 0 4 3 2 0 1 0 0 0 0
bed bed act 1 247 qa 1 1 0 0 0 0 0 0 0 15 4 2 0 0 0 0 1 11 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 1 3 2 0 0 0 0 0 0
bed bed act 1 248 qb 1 1 0 0 0 0 0 0 0 15 2 4 0 0 0 0 1 11 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 1 3 2 0 0 0 0 0 0
manashrine mana wellforhell 249 hn 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 11 15 1 0 0 0 0 0 160 160 160 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 1 0 0 -60 0 2 0 1 2 96 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 2 96 0 0 2 2 1 0 0 0 0 0 310
a trap exploding cow for Tristan and ACT 3 only¡­¡­Very Rare 1 or 2 250 ew 1 1 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 22 1 0 0 0 0 0 0 300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 5 0 0 1 0 100 1 0 0 18 0 0 0 30 9 0 0 1 0 0 0 0
gidbinn altar gidbinn altar 251 ga 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 1 12 16 0 0 0 0 0 0 150 150 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 3 39 0 0 0 0 0 0
gidbinn gidbinn decoy 252 gd 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 8 19 0 0 0 0 0 0 150 150 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 31 3 25 0 0 0 0 0 315
Dummy diablo right light 253 11 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 125 125 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 1 0 2 0 8 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy diablo left light 254 12 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 125 125 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 18 0 0 0 0 4 2 0 8 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy diablo start point 255 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 133 133 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 8 0 1 1 0 100 0 0 0 0 0 0 0 0 0 55 0 1 0 0 0 0
Dummy stool for act 1 cabin 256 s9 1 0 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 0 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
Dummy wood for act 1 cabin 257 wg 1 0 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 0 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
Dummy more wood for act 1 cabin 258 wh 1 0 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 0 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 14 3 0 0 0 0 0 0 0
Dummy skeleton spawn for hell facing nw 259 QS 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 26 1 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 125 125 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -60 0 2 0 1 0 0 0 0 2 0 2 0 8 0 0 0 1 100 0 0 0 0 0 0 0 14 3 26 7 0 0 0 0 0
Shrine "holyshrine for monastery,catacombs,jail" 260 HL 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 16 16 0 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -80 0 2 0 1 3 77 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 3 77 0 0 2 2 1 0 0 0 0 0 310
a trap spikes for tombs floortrap 261 A7 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 30 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 -15 5 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 11 3 24 0 0 0 0 0 0
Shrine act 1 cathedral 262 s0 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 15 15 1 1 0 0 0 0 160 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 77 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 3 77 0 0 2 2 1 0 0 0 0 0 310
Shrine act 1 jail 263 jb 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 15 15 1 1 0 0 0 0 160 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 77 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 3 77 0 0 2 2 1 0 0 0 0 0 310
Shrine act 1 jail 264 jd 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 11 11 1 1 0 0 0 0 160 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 1 264 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 1 264 0 0 2 2 1 0 0 0 0 0 310
Shrine act 1 jail 265 jf 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 11 11 1 1 0 0 0 0 160 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 2 264 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 2 264 0 0 2 2 1 0 0 0 0 0 310
goo pile goo pile for sand maggot lair 266 GP 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 10 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 18 0 0 0 14 3 27 0 0 0 0 0 0
bank bank 267 b6 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -40 0 2 0 1 1 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 1 0 0 0 32 3 0 0 0 0 0 0 319
wirt's body wirt's body 268 BP 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 1 1 0 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 18 0 0 0 33 3 0 0 1 0 2 0 0
dummy gold placeholder 269 1g 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 0 0 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 0 0 0 0 14 3 28 0 0 0 0 0 0
corpse guard corpse 2 270 GF 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 1 10 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 14 3 2 0 1 0 0 0 0
corpse dead villager 1 271 dg 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 1 10 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 14 3 0 0 1 0 0 0 0
corpse dead villager 2 272 df 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 1 10 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 14 3 0 0 1 0 0 0 0
Dummy "yet another flame, no damage" 273 f8 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 0 0 0 0 0 0 0 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 0 0 100 1 0 0 0 0 0 0 14 3 0 0 0 0 0 0 0
hidden stash tiny pixel shaped thingie 274 f9 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 0 0 0 0 14 3 0 0 0 0 0 0 0
Shrine health shrine for caves 275 ce 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -85 0 2 0 1 1 275 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 1 275 0 0 2 2 1 0 0 0 0 0 310
Shrine mana shrine for caves 276 cg 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -85 0 2 0 1 2 275 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 2 275 0 0 2 2 1 0 0 0 0 0 310
Shrine cave magic shrine 277 cg 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 16 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -85 0 2 0 1 3 275 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 3 275 0 0 2 2 1 0 0 0 0 0 310
Shrine "manashrine, act 3, dungeun" 278 de 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 17 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 120 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 2 120 0 0 2 2 1 0 0 0 0 0 310
Shrine "magic shrine, act 3 sewers." 279 wj 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 13 13 1 0 0 0 0 0 256 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -95 0 2 0 1 3 282 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 282 0 0 2 2 1 0 0 0 0 0 310
Shrine "healthwell, act 3, sewers" 280 wk 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 1 17 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 282 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
Shrine "manawell, act 3, sewers" 281 wl 0 1 0 0 0 0 0 0 0 0 3 4 0 0 0 0 1 17 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 282 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 2 282 0 0 2 2 1 0 0 0 0 0 310
Shrine "magic shrine, act 3 sewers, dungeon." 282 ws 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 13 13 1 0 0 0 0 0 256 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 4 1 0 0 -95 0 2 0 1 3 282 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 282 0 0 2 2 1 0 0 0 0 0 310
dummy "brazier_celler, act 2" 283 bi 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 20 0 0 0 0 0 0 0 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 1 2 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 100 0 0 0 1 0 0 0 3 0 0 0 0 0 0 0 0
sarcophagus "anubis coffin, act2, tomb" 284 qc 0 1 0 0 0 0 0 0 0 0 3 5 3 0 0 0 1 8 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 5 5 -65 1 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0
dummy "brazier_general, act 2, sewers, tomb, desert" 285 bm 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 20 0 0 0 0 0 0 0 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 1 2 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 100 0 0 0 1 0 0 0 14 3 0 0 0 0 0 0 0
Dummy "brazier_tall, act 2, desert, town, tombs" 286 bo 1 0 0 0 0 0 0 0 0 15 3 3 0 0 0 0 20 0 0 0 0 0 0 0 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 1 2 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 100 0 0 0 1 0 0 0 14 3 0 0 0 0 0 0 0
Dummy "brazier_small, act 2, desert, town, tombs" 287 bq 1 0 0 0 0 0 0 0 0 15 2 2 0 0 0 0 20 0 0 0 0 0 0 0 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 1 2 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 100 0 0 0 1 0 0 0 14 3 0 0 0 0 0 0 0
Waypoint "waypoint, celler" 288 w7 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 8 0 0 1 1 100 0 0 0 0 0 0 0 23 3 17 0 0 0 0 0 0
bed bed for harum 289 ub 1 1 0 0 0 0 0 0 0 15 5 5 0 0 0 0 1 11 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 1 0 0 1 0 100 0 0 1 -50 0 100 80 14 3 0 0 0 0 0 0 0
door iron grate door left 290 dv 0 1 0 1 0 1 1 1 1 0 1 3 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 -5 -8 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 0 0 0 -20 -80 40 40 8 3 0 0 0 0 0 0 0
door iron grate door right 291 dn 0 1 0 1 0 1 1 1 1 0 3 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 8 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 0 0 0 -20 -80 40 40 8 3 0 0 0 0 0 0 0
door wooden grate door left 292 dp 0 1 0 1 0 1 1 1 1 0 1 3 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 2 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 -5 -9 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 0 0 0 -20 -80 40 40 8 3 0 0 0 0 0 0 0
door wooden grate door right 293 dt 0 1 0 1 0 1 1 1 1 0 3 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 -3 8 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 0 0 0 -20 -80 40 40 8 3 0 0 0 0 0 0 0
door wooden door left 294 dk 0 1 0 1 0 1 1 1 1 0 1 3 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 2 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 -3 -10 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 0 0 0 -20 -80 40 40 8 3 0 0 0 1 0 0 0
door wooden door right 295 dl 0 1 0 1 0 1 1 1 1 0 3 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 7 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 1 6 0 1 -20 -80 40 40 0 0 0 0 1 0 0 1 0 100 0 0 0 -20 -80 40 40 8 3 0 0 0 1 0 0 0
Dummy wall torch left for tombs 296 qd 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 29 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 0 0 0 0 0 0 0 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 100 0 0 0 0 0 0 0 14 3 0 0 0 0 0 0 0
Dummy wall torch right for tombs 297 qe 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 29 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 0 0 0 0 0 0 0 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 100 0 0 0 0 0 0 0 14 3 0 0 0 0 0 0 0
portal arcane sanctuary portal 298 ay 0 1 0 1 0 0 0 0 0 0 5 2 0 0 0 0 30 30 30 30 0 0 0 0 200 200 200 200 0 0 0 0 1 0 1 0 0 0 0 0 0 17 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 120 120 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 16 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 2 0 0 0 1 100 0 0 1 -30 -80 60 80 34 3 29 0 0 0 0 0 339
magic shrine "magic shrine, act 2, haram" 299 hb 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 15 15 1 0 0 0 0 0 256 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -95 0 2 0 1 3 301 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 301 0 0 2 2 1 0 0 0 0 0 310
magic shrine "magic shrine, act 2, haram" 300 hc 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 20 13 1 0 0 0 0 0 256 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -95 0 2 0 1 3 301 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 301 0 0 2 2 1 0 0 0 0 0 310
Dummy maggot well health 301 qf 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 16 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -80 0 2 0 1 1 301 0 0 0 0 0 0 1 0 0 1 0 100 0 0 0 1 301 0 0 2 2 1 0 0 0 0 0 310
manashrine maggot well mana 302 qg 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 16 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -80 0 2 0 1 2 301 0 0 0 0 0 0 1 0 0 1 0 100 0 0 0 2 301 0 0 2 2 1 0 0 0 0 0 310
magic shrine "magic shrine, act 3 arcane sanctuary." 303 hd 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 15 1 0 0 0 0 0 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -95 0 2 0 1 3 319 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 301 60 80 2 2 1 0 0 0 0 0 310
teleportation pad teleportation pad 304 7h 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 30 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 1 -30 -80 60 80 27 3 0 0 0 0 0 0 0
teleportation pad teleportation pad 305 aa 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 30 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 1 -30 -80 60 80 27 3 0 0 0 0 0 0 0
teleportation pad teleportation pad 306 aa 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 30 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 1 -30 -80 60 80 27 3 0 0 0 0 0 0 0
Dummy arcane thing 307 7a 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 1 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 125 125 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy arcane thing 308 7b 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 1 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 125 125 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy arcane thing 309 7c 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 1 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 125 125 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy arcane thing 310 7d 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 1 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 125 125 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy arcane thing 311 7e 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 1 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 125 125 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy arcane thing 312 7f 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 1 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 125 125 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy arcane thing 313 7g 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 1 1 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 125 125 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
dead guard harem guard 1 314 qh 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 14 3 0 0 1 0 0 0 0
dead guard harem guard 2 315 qi 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 14 3 0 0 1 0 0 0 0
dead guard harem guard 3 316 qj 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 14 3 0 0 1 0 0 0 0
dead guard harem guard 4 317 qk 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 14 3 0 0 1 0 0 0 0
eunuch harem blocker 318 ss 0 0 0 0 0 0 0 0 0 0 1 7 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 0 3 30 0 0 0 0 0 0
Dummy "healthwell, act 2, arcane" 319 ax 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 17 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 319 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
manashrine "healthwell, act 2, arcane" 320 au 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 17 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 319 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
Dummy test data 321 pp 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 100 0 0 0 0 0 0 0 14 3 0 0 0 0 0 0 0
Well "tombwell act 2 well, tomb" 322 hu 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 11 11 1 0 0 0 0 0 128 128 0 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 32 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 2 0 0 1 0 100 0 0 0 750 128 1 3 22 8 16 0 0 0 0 0 309
Waypoint waypoint act2 sewer 323 qm 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 2 0 0 1 1 100 1 0 0 0 0 0 0 23 2 17 0 0 0 0 0 0
Waypoint waypoint act3 travincal 324 ql 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 4 0 0 1 1 100 1 0 0 0 0 0 0 23 3 17 0 0 0 0 0 0
magic shrine "magic shrine, act 3, sewer" 325 qn 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 20 20 1 0 0 0 0 0 130 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -95 0 2 0 1 3 301 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 301 0 0 2 2 1 0 0 0 0 0 310
dead body "act3, sewer" 326 qo 0 1 0 0 0 0 0 0 0 0 3 1 0 0 0 0 1 18 1 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 0 0 0 0 0 0 0 3 3 0 0 0 0 0 0 0
dummy torch (act 3 sewer) stra 327 V1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 0 0 0 0 0 0 0 160 160 160 160 128 256 256 256 1 0 1 0 0 0 0 0 10 19 19 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
dummy torch (act 3 kurast) strb 328 V2 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 0 0 0 0 0 0 0 160 160 160 160 128 256 256 256 1 0 1 0 0 0 0 0 10 19 19 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 236 176 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
chest mafistochestlargeLeft 329 xb 1 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest mafistochestlargeright 330 xc 1 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest mafistochestmedleft 331 xd 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest mafistochestmedright 332 xe 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest spiderlairchestlargeLeft 333 xf 1 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest spiderlairchesttallLeft 334 xg 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest spiderlairchestmedright 335 xh 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest spiderlairchesttallright 336 xi 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
Steeg Stone steeg stone 337 y6 1 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 16 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 0 0 0 0 0 0 0 35 0 0 0 0 0 0 0 0
Guild Vault guild vault 338 y4 1 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -120 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 0 0 0 1 0 0 0 36 0 35 0 0 0 0 0 0
Trophy Case trophy case 339 y2 1 1 0 0 0 0 0 0 0 0 2 3 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -120 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 0 0 0 0 0 0 0 37 0 36 0 0 0 0 0 0
Message Board message board 340 y3 1 1 0 0 0 0 0 0 0 0 2 3 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 0 0 0 0 0 0 0 38 0 40 0 0 0 0 0 0
Dummy mephisto bridge 341 xj 1 0 0 0 0 0 0 0 0 15 11 5 0 0 0 0 1 28 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 -20 -45 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 4 1 0 1 0 100 1 0 0 18 0 0 0 4 0 45 0 0 0 1 0 0
portal hellgate 342 1y 1 0 0 1 0 0 0 0 0 15 1 1 0 0 0 0 30 30 30 0 0 0 0 0 128 128 128 0 0 0 0 0 1 0 1 0 0 0 0 0 15 17 19 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 2 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 100 100 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 4 16 0 0 -60 0 2 0 1 18 0 0 0 0 5 2 0 12 1 0 1 1 100 1 0 1 -40 -80 80 80 46 0 44 0 0 0 0 0 339
Shrine "manawell, act 3, kurast" 343 xl 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 17 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 344 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
Shrine "healthwell, act 3, kurast" 344 xm 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 17 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 344 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
Dummy hellfire1 345 e3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 140 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 5 2 0 8 0 0 0 1 100 0 0 0 0 0 0 0 0 0 22 0 0 0 0 0 0
Dummy hellfire2 346 e4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 140 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 5 2 0 8 0 0 0 1 100 0 0 0 0 0 0 0 0 0 22 0 0 0 0 0 0
Dummy hellfire3 347 e5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 140 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 5 2 0 8 0 0 0 1 100 0 0 0 0 0 0 0 0 0 22 0 0 0 0 0 0
Dummy helllava1 348 e6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 140 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy helllava2 349 e7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 140 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy helllava3 350 e8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 140 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy helllightsource1 351 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 5 2 0 8 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy helllightsource1 352 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 5 2 0 8 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy helllightsource1 353 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 100 100 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 5 2 0 8 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
chest horadric cube chest 354 xk 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 5 2 0 15 1 0 1 1 100 1 1 0 18 0 0 0 39 3 31 0 0 0 0 0 318
chest horadric scroll chest 355 xk 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 5 2 0 15 1 0 1 1 100 1 1 0 18 0 0 0 40 3 32 0 0 0 0 0 318
chest staff of kings chest 356 xk 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 5 2 0 15 1 0 1 1 100 1 1 0 18 0 0 0 41 3 33 0 0 0 0 0 318
Tome yet another tome 357 TT 0 1 1 1 0 0 0 0 0 0 1 1 0 0 0 0 1 3 1 1 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 1 0 0 0 0 0 42 0 0 0 0 0 0 0 427
fire hell brazier 358 E1 1 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 20 20 0 0 0 0 0 0 150 150 0 0 0 0 0 0 1 1 1 0 0 0 0 0 19 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 255 236 176 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 -7 9 -90 0 2 0 1 0 0 0 0 0 5 2 0 8 0 0 0 1 100 0 0 0 0 0 0 0 11 0 34 0 0 1 0 0 0
fire hell brazier 359 E2 1 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 20 20 0 0 0 0 0 0 150 150 0 0 0 0 0 0 1 1 1 0 0 0 0 0 19 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 255 236 176 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 -7 10 -90 0 2 0 1 0 0 0 0 0 5 2 0 8 0 0 0 1 100 0 0 0 0 0 0 0 11 0 34 0 0 1 0 0 0
RockPIle dungeon 360 xn 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 13 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 3 3 33 0 0 0 0 0 0
magic shrine "magic shrine, act 3,dundeon" 361 qo 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 13 13 1 0 0 0 0 0 256 400 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -95 0 2 0 1 3 301 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 3 301 0 0 2 2 1 0 0 0 0 0 310
basket dungeon 362 xp 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 13 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 18 0 0 0 3 3 33 0 1 0 1 0 0
HungSkeleton outerhell skeleton 363 jw 1 1 0 0 0 0 0 0 0 15 4 4 0 0 0 0 1 13 1 0 0 0 0 0 0 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 18 0 0 0 14 3 2 0 0 0 0 0 0
Dummy guy for dungeon 364 ea 1 1 0 0 0 0 0 0 0 15 2 1 0 0 0 0 28 15 10 0 0 0 0 0 128 128 128 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 128 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 14 0 1 1 0 100 0 0 0 18 0 0 0 1 3 2 0 0 0 0 0 0
casket casket for Act 3 dungeon 365 vb 1 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 5 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 2 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 1 3 0 0 0 0 0 0 0
sewer stairs stairs for act 3 sewer quest 366 ve 0 0 0 1 0 0 0 0 0 0 5 5 0 0 0 0 0 20 0 0 0 0 0 0 0 150 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 44 0 41 0 0 0 0 0 223
sewer lever lever for act 3 sewer quest 367 vf 0 1 0 0 0 0 0 0 0 0 3 5 0 0 0 0 0 32 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 3 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 45 0 42 0 0 0 0 0 304
darkwanderer start position 368 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 0 43 0 0 0 0 0 0
dummy trapped soul placeholder 369 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 0 0 0 0 0 3 46 0 0 0 0 0 0
Dummy torch for act3 town 370 VG 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 30 0 0 0 0 0 0 0 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0 5 2 0 4 0 0 1 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
chest LargeChestR 371 L1 2 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 13 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -50 1 2 0 1 15 0 0 0 0 0 0 0 15 1 0 1 0 100 1 0 0 15 0 0 0 0 0 47 0 1 0 0 0 0
BoneChest innerhellbonepile 372 y1 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 13 1 0 0 0 0 0 0 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 18 0 0 0 14 3 2 0 0 0 0 0 0
Dummy skeleton spawn for hell facing ne 373 Qt 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 26 1 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 125 125 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -60 0 2 0 1 0 0 0 0 2 0 2 0 8 0 0 0 1 100 0 0 0 0 0 0 0 3 3 26 7 0 0 0 0 0
Dummy fog act 3 water rfga 374 ud 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 39 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 2 0 1 0 0 0 0 0 0 0 0 12 0 0 0 0 100 0 0 0 0 0 0 0 11 3 0 0 0 0 0 0 0
Dummy Not used 375 xx 1 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 33 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 0 0 0 18 0 0 0 0 3 33 0 0 0 0 0 0
Hellforge Forge hell 376 ux 0 1 0 1 0 0 0 0 0 0 3 3 0 0 0 0 22 22 22 22 22 0 0 0 128 128 128 128 128 128 256 256 1 0 1 0 1 1 0 0 13 17 19 15 13 13 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 -10 1 255 236 176 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 4 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 0 0 0 0 49 3 48 0 0 0 0 0 0
Guild Portal Portal to next guild level 377 PP 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 15 15 15 15 0 0 0 0 100 100 100 100 0 0 0 0 1 0 1 0 0 0 0 0 19 18 19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 120 120 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 16 0 0 1 1 100 1 0 0 0 0 0 0 43 0 0 0 0 0 0 0 0
Dummy hratli start 378 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 0 49 0 0 0 0 0 0
Dummy hratli end 379 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0
TrappedSoul Burning guy for outer hell 380 uy 1 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 8 21 7 1 8 0 0 140 120 140 120 1 140 0 0 1 0 1 0 0 0 0 0 17 15 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 20 -3 1 255 200 200 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -70 0 2 0 1 1 0 0 0 0 0 0 0 8 0 1 0 0 100 0 0 0 0 0 0 0 48 9 51 0 0 0 0 0 0
TrappedSoul Burning guy for outer hell 381 15 1 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 8 21 7 1 8 0 0 140 120 140 120 1 140 0 0 1 0 1 0 0 0 0 0 17 15 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 20 -3 1 255 200 200 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -70 0 2 0 1 1 0 0 0 0 0 0 0 8 0 1 0 0 100 0 0 0 0 0 0 0 48 9 51 0 0 0 0 0 0
Dummy natalya start 382 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 4 0 0 1 0 100 0 0 0 0 0 0 0 0 0 52 0 0 0 0 0 0
TrappedSoul guy stuck in hell 383 18 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 10 1 0 0 0 0 0 133 133 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 8 0 1 1 0 100 0 0 0 0 0 0 0 3 3 2 0 1 0 0 0 0
TrappedSoul guy stuck in hell 384 19 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 10 1 0 0 0 0 0 133 133 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 8 0 1 1 0 100 0 0 0 0 0 0 0 3 3 2 0 1 0 0 0 0
Dummy cain start position 385 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 100 1 0 0 0 0 0 0 3 3 54 0 1 0 0 0 0
Dummy stairsr 386 sv 0 0 0 1 0 0 0 0 0 15 10 6 0 0 0 0 1 9 1 0 0 0 0 0 0 120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -60 0 5 0 1 0 0 0 0 0 0 0 0 15 0 0 1 0 100 1 0 0 0 0 0 0 50 3 53 0 0 0 0 1 693
chest arcanesanctuarybigchestLeft 387 y7 1 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
casket arcanesanctuarycasket 388 y8 1 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest arcanesanctuarybigchestRight 389 y9 1 1 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest arcanesanctuarychestsmallLeft 390 ya 1 1 0 0 0 0 0 0 0 15 1 2 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
chest arcanesanctuarychestsmallRight 391 yc 1 1 0 0 0 0 0 0 0 15 2 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 1 0 1 0 100 0 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
Seal Diablo seal 392 30 0 1 0 0 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 0 128 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 15 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 128 128 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 4 0 1 0 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 0 0 0 0 54 0 56 0 0 0 0 0 306
Seal Diablo seal 393 31 0 1 0 0 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 0 128 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 15 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 128 128 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 4 0 1 0 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 0 0 0 0 52 0 56 0 0 0 0 0 306
Seal Diablo seal 394 32 0 1 0 0 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 0 128 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 15 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 128 128 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 4 0 1 0 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 0 0 0 0 55 0 56 0 0 0 0 0 306
Seal Diablo seal 395 33 0 1 0 0 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 0 128 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 15 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 128 128 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 4 0 1 0 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 0 0 0 0 52 0 56 0 0 0 0 0 306
Seal Diablo seal 396 34 0 1 0 0 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 0 128 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 15 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 128 128 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 4 0 1 0 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 0 0 0 0 56 0 56 0 0 0 0 0 306
chest sparklychest 397 yf 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 5 2 0 15 1 0 1 1 100 1 1 0 18 0 0 0 4 3 57 0 0 0 0 0 0
Waypoint waypoint pandamonia fortress 398 yg 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 8 0 0 1 1 100 0 0 0 0 0 0 0 23 2 17 0 0 0 0 0 0
fissure fissure for act 4 inner hell 399 fh 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 49 12 0 0 0 0 0 256 256 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 8 0 0 1 0 100 0 0 0 0 0 0 0 0 0 58 0 0 0 0 0 0
Dummy "brazier for act 4, hell mesa" 400 he 1 0 0 0 0 0 0 0 0 15 2 2 0 0 0 0 29 0 0 0 0 0 0 0 200 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 0 2 0 1 1 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 1 0 0 0 14 3 0 0 0 0 0 0 0
Dummy smoke 401 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 180 55 55 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 8 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Waypoint waypoint valleywaypoint 402 yi 0 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0 1 15 15 0 0 0 0 0 200 200 160 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 8 0 0 1 1 100 0 0 0 0 0 0 0 23 2 17 0 0 0 0 0 307
fire hell brazier 403 9f 1 0 0 0 0 0 0 0 0 15 2 2 0 0 0 0 20 0 0 0 0 0 0 0 200 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 0 2 0 1 1 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 1 0 0 0 14 3 0 0 0 0 0 0 0
compellingorb compelling orb 404 55 1 1 0 0 0 0 0 0 0 15 3 3 0 0 0 0 29 29 1 0 0 0 0 0 128 128 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -60 0 2 0 1 1 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 1 0 0 0 53 3 60 0 0 0 0 0 305
chest khalim chest 405 xk 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 5 2 0 15 1 0 1 1 100 1 1 0 18 0 0 0 57 3 0 0 0 0 0 0 318
chest khalim chest 406 xk 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 5 2 0 15 1 0 1 1 100 1 1 0 18 0 0 0 59 3 0 0 0 0 0 0 318
chest khalim chest 407 xk 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 12 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 5 2 0 15 1 0 1 1 100 1 1 0 18 0 0 0 58 3 0 0 0 0 0 0 318
Dummy fortress brazier #1 408 98 1 0 0 0 0 0 0 0 0 15 2 2 0 0 0 0 20 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 0 2 0 1 1 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 1 0 0 0 0 3 0 0 0 0 0 0 0
Dummy fortress brazier #2 409 99 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 20 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 0 2 0 1 1 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 1 0 0 0 0 3 0 0 0 0 0 0 0
Expansion
Siege Control To control siege machines 408 zq 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 16 1 0 1 0 100 0 0 0 18 0 0 0 46 0 0 0 0 0 0 0 0
ptox Pot O Torch (level 1) 409 px 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 22 22 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
pyox fire pit (level 1) 410 py 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 22 22 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
chestR expansion no snow 413 6q 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
Shrine3wilderness expansion no snow 414 6r 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 20 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
Shrine2wilderness expansion no snow 415 6s 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
hiddenstash expansion no snow 416 3w 2 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 11 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
flag wilderness expansion no snow 417 ym 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 27 0 0 0 0 0 0 0 120 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
barrel wilderness expansion no snow 418 yn 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 8 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
barrel wilderness wilderness/siege 419 6t 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 0 0 0 0 0 210 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 2 2 -70 1 2 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 14 3 0 0 1 0 1 0 0
woodchestL expansion no snow 420 yp 2 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 10 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
Shrine3wilderness expansion no snow 421 yq 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
manashrine expansion no snow 422 yr 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 13 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 172 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 2 172 0 0 2 2 1 0 0 0 0 0 310
healthshrine expansion no snow 423 ys 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 13 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 282 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
burialchestL expansion no snow 424 yt 2 1 0 0 0 0 0 0 0 15 2 3 0 0 0 0 1 8 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
burialchestR expansion no snow 425 ys 2 1 0 0 0 0 0 0 0 15 3 2 0 0 0 0 1 8 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
well expansion no snow 426 yv 0 1 1 0 0 0 0 0 0 0 4 4 0 0 0 0 10 10 1 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
Shrine2wilderness expansion no snow 427 yw 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 21 16 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
Shrine2wilderness expansion no snow 428 yx 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 20 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
Waypoint expansion no snow 429 yy 0 1 0 1 0 0 0 0 0 0 5 5 0 0 0 0 1 15 15 0 0 0 0 0 200 200 100 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 16 0 0 0 1 100 1 0 0 0 0 0 0 23 0 17 0 0 0 0 0 0
ChestL expansion no snow 430 yz 2 1 0 0 0 0 0 0 0 15 1 2 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
woodchestR expansion no snow 431 6a 2 1 0 0 0 0 0 0 0 15 2 1 0 0 0 0 1 10 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
ChestSL expansion no snow 432 6b 2 1 0 0 0 0 0 0 0 15 1 2 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
ChestSR expansion no snow 433 6c 2 1 0 0 0 0 0 0 0 15 2 1 0 0 0 0 1 4 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
etorch1 expansion no snow 434 6d 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 22 1 1 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
ecfra camp fire 435 2w 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 22 22 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
ettr town torch 436 2x 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 22 22 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
etorch2 expansion no snow 437 6e 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 1 1 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
burningbodies wilderness/siege 438 6f 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 22 1 1 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 4 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
burningpit wilderness/siege 439 6g 0 0 0 0 0 0 0 0 0 0 3 4 0 0 0 0 22 1 1 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 4 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
tribal flag wilderness/siege 440 6h 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 27 0 0 0 0 0 0 0 120 60 175 256 256 256 256 256 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
eflg town flag 441 2y 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 21 21 21 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
chan chandeleir 442 2z 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 11 11 11 0 0 0 0 0 128 128 128 128 128 128 128 128 1 1 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 -130 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
jar1 wilderness/siege 443 6i 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
jar2 wilderness/siege 444 6j 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
jar3 wilderness/siege 445 6k 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
swingingheads wilderness 446 6L 0 0 0 0 0 0 0 0 0 0 5 2 0 0 0 0 21 0 0 0 0 0 0 0 120 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
pole wilderness 447 6m 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 21 0 0 0 0 0 0 0 120 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
animated skulland rockpile expansion no snow 448 6n 2 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 22 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
gate town main gate 449 2v 0 1 0 0 0 0 0 0 0 0 1 7 0 0 0 0 1 25 1 0 0 0 0 0 128 128 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 61 3 0 0 0 0 0 0 0
pileofskullsandrocks seige 450 6o 0 0 0 0 0 0 0 0 0 0 5 5 0 0 0 0 22 0 0 0 0 0 0 0 120 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 14 3 0 0 0 0 0 0 0
hellgate seige 451 6p 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 22 22 0 0 0 0 0 0 60 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
banner 1 preset in enemy camp 452 ao 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 16 0 0 0 0 0 0 0 128 256 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 1 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
banner 2 preset in enemy camp 453 ap 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 16 0 0 0 0 0 0 0 128 256 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 1 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
explodingchest wilderness/siege 454 6t 1 1 0 0 0 0 0 0 0 0 1 3 0 0 0 0 1 10 1 0 0 0 0 0 210 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 0 0 0 0 0 0 1 1 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 1 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 2 2 -70 1 2 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 30 3 0 0 1 0 1 0 0
chest specialchest 455 6u 1 1 0 0 0 0 0 0 0 15 2 1 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 1 0 0 0 100 1 1 0 18 0 0 0 4 3 57 0 1 0 0 0 0
deathpole wilderness 456 6v 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 23 0 0 0 0 0 0 0 160 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Ldeathpole wilderness 457 6w 0 0 0 0 0 0 0 0 0 0 3 1 0 0 0 0 23 0 0 0 0 0 0 0 160 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Altar inside of temple 458 6x 0 0 0 0 0 0 0 0 0 0 2 3 0 0 0 0 20 0 0 0 0 0 0 0 150 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
dummy Drehya Start In Town 459 ss 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 66 0 0 0 0 0 0
dummy Drehya Start Outside Town 460 ss 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 67 0 0 0 0 0 0
dummy Nihlathak Start In Town 461 ss 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 68 0 0 0 0 0 0
dummy Nihlathak Start Outside Town 462 ss 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 256 256 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 69 0 0 0 0 0 0
hidden stash icecave_ 463 6y 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 7 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 15 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
healthshrine icecave_ 464 8a 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 13 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 282 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
manashrine icecave_ 465 8b 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 13 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 172 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 2 172 0 0 2 2 1 0 0 0 0 0 310
evilurn icecave_ 466 8c 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 7 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 255 16 0 0 0 0 100 1 0 0 18 0 0 0 68 3 3 0 1 0 0 0 0
icecavejar1 icecave_ 467 8d 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
icecavejar2 icecave_ 468 8e 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
icecavejar3 icecave_ 469 8f 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
icecavejar4 icecave_ 470 8g 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
icecavejar4 icecave_ 471 8h 1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 8 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
icecaveshrine2 icecave_ 472 8i 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
cagedwussie1 caged fellow 473 60 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 128 128 128 128 1 0 0 0 0 0 0 0 0 10 5 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 28 29 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 0 62 0 0 0 0 0 310
Ancient Statue 3 statue 474 60 0 1 0 1 0 0 0 0 0 0 3 3 0 0 0 0 1 20 1 16 1 0 0 0 48 128 0 128 128 128 128 128 1 0 0 0 0 0 0 0 8 0 9 0 0 0 0 0 1 1 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 -5 -5 1 255 255 255 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 1 0 0 0 0 0 0 62 0 63 0 0 0 0 0 0
Ancient Statue 1 statue 475 61 0 1 0 1 0 0 0 0 0 0 3 3 0 0 0 0 1 20 1 16 1 0 0 0 48 128 0 128 128 128 128 128 1 0 0 0 0 0 0 0 8 0 9 0 0 0 0 0 1 1 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 -5 -5 1 255 255 255 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 1 0 0 0 0 0 0 63 0 64 0 0 0 0 0 0
Ancient Statue 2 statue 476 62 0 1 0 1 0 0 0 0 0 0 3 3 0 0 0 0 1 20 1 16 1 0 0 0 48 128 0 128 128 128 128 128 1 0 0 0 0 0 0 0 8 0 9 0 0 0 0 0 1 1 1 1 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 -10 -8 1 255 255 255 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 2 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 1 0 0 0 0 0 0 64 0 65 0 0 0 0 0 0
deadbarbarian seige/wilderness 477 8j 1 1 0 0 0 0 0 0 0 15 2 3 0 0 0 0 1 9 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
clientsmoke client smoke 478 oz 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 9 0 0 0 0 0
icecaveshrine2 icecave_ 479 8k 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
icecave_torch1 icecave_ 480 8L 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 1 1 0 0 0 0 0 200 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
icecave_torch2 icecave_ 481 8m 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 1 1 0 0 0 0 0 200 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
ttor expansion tiki torch 482 2p 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 22 22 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
manashrine baals 483 8n 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 13 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 172 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 2 172 0 0 2 2 1 0 0 0 0 0 310
healthshrine baals 484 8o 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 1 13 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 172 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 2 172 0 0 2 2 1 0 0 0 0 0 310
tomb1 baal's lair 485 8p 1 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb2 baal's lair 486 8q 1 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb3 baal's lair 487 8r 1 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
magic shrine baal's lair 488 8s 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 20 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
torch1 baal's lair 489 8t 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 1 1 0 0 0 0 0 200 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
torch2 baal's lair 490 8u 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 1 1 0 0 0 0 0 200 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
manashrine snowy 491 8v 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 13 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 172 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 2 172 0 0 2 2 1 0 0 0 0 0 310
healthshrine snowy 492 8w 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 13 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 282 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
well snowy 493 8x 0 1 1 0 0 0 0 0 0 0 4 4 0 0 0 0 10 10 1 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
Waypoint baals_waypoint 494 8y 0 1 0 1 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 200 200 100 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 16 0 0 0 1 100 1 0 0 0 0 0 0 23 0 17 0 0 0 0 0 307
magic shrine snowy_shrine3 495 8z 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
Waypoint wilderness_waypoint 496 5a 0 1 0 1 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 200 200 100 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 16 0 0 0 1 100 1 0 0 0 0 0 0 23 0 17 0 0 0 0 0 307
magic shrine snowy_shrine3 497 5b 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 21 16 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
well baalslair 498 5c 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 1 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
magic shrine2 baal's lair 499 5d 0 1 0 0 0 0 0 0 0 0 2 4 0 0 0 0 13 13 1 1 0 0 0 0 256 125 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
object1 snowy 500 5e 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 10 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
woodchestL snowy 501 5f 2 1 0 0 0 0 0 0 0 15 1 3 0 0 0 0 1 10 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
woodchestR snowy 502 5g 2 1 0 0 0 0 0 0 0 15 3 1 0 0 0 0 1 11 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
magic shrine baals_shrine3 503 5h 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 13 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
woodchest2L snowy 504 5f 2 1 0 0 0 0 0 0 0 15 2 3 0 0 0 0 1 8 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
woodchest2R snowy 505 5f 2 1 0 0 0 0 0 0 0 15 3 2 0 0 0 0 1 8 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 20 0 0 0 0 0 0 0 16 1 0 0 0 100 0 0 0 20 0 0 0 4 3 3 0 1 0 0 0 0
swingingheads snowy 506 5k 0 0 0 0 0 0 0 0 0 0 5 2 0 0 0 0 22 0 0 0 0 0 0 0 120 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
debris snowy 507 5l 0 0 0 0 0 0 0 0 0 0 4 4 0 0 0 0 22 0 0 0 0 0 0 0 120 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
pene Pen breakable door 508 2q 0 1 0 0 0 0 0 0 0 0 1 7 0 0 0 0 1 10 1 0 0 0 0 0 128 128 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 61 3 0 0 0 0 0 0 0
magic shrine temple 509 5h 0 1 0 0 0 0 0 0 0 0 4 3 0 0 0 0 20 13 1 1 0 0 0 0 256 256 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
mrpole snowy 510 5k 0 0 0 0 0 0 0 0 0 0 5 5 0 0 0 0 21 0 0 0 0 0 0 0 60 60 175 256 256 256 256 256 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Waypoint icecave 511 5a 0 1 0 1 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 200 200 100 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 16 0 0 0 1 100 1 0 0 0 0 0 0 23 0 17 0 0 0 0 0 307
magic shrine temple 512 5t 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 17 9 1 1 0 0 0 0 80 80 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
well temple 513 5q 0 1 1 0 0 0 0 0 0 0 4 4 0 0 0 0 10 10 1 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
torch1 temple 514 5r 0 0 0 0 0 0 0 0 0 0 1 3 0 0 0 0 20 1 1 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
torch1 temple 515 5s 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 1 1 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
object1 temple 516 5u 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 8 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
object2 temple 517 5v 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 9 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
mrbox baals 518 5w 1 1 0 0 0 0 0 0 0 0 3 1 0 0 0 0 1 7 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
well icecave 519 5x 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 1 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
magic shrine temple 520 5y 0 1 0 0 0 0 0 0 0 0 2 2 0 0 0 0 20 20 1 1 0 0 0 0 200 200 256 0 0 0 0 0 1 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 1 0 0 -235 0 2 0 1 3 206 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 3 206 0 0 2 2 1 0 0 0 0 0 310
healthshrine temple 521 5z 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 13 1 1 0 0 0 0 256 125 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 282 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 1 282 0 0 2 2 1 0 0 0 0 0 310
manashrine temple 522 3a 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 13 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 2 172 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 2 172 0 0 2 2 1 0 0 0 0 0 310
red light (touch me) for blacksmith 523 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 160 55 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 0 1 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
tomb1L baal's lair 524 3b 1 1 0 0 0 0 0 0 0 15 3 5 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb2L baal's lair 525 3c 1 1 0 0 0 0 0 0 0 15 3 5 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb3L baal's lair 526 3d 1 1 0 0 0 0 0 0 0 15 3 5 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
ubub Ice cave bubbles 01 527 2u 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 0 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
sbub Ice cave bubbles 01 528 2s 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 30 1 0 0 0 0 0 128 128 128 128 128 128 128 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 10 0 0 0 0 0
tomb1 redbaal's lair 529 3f 1 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb1L redbaal's lair 530 3g 1 1 0 0 0 0 0 0 0 15 3 5 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb2 redbaal's lair 531 3h 1 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb2L redbaal's lair 532 3i 1 1 0 0 0 0 0 0 0 15 3 5 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb3 redbaal's lair 533 3j 1 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
tomb3L redbaal's lair 534 3k 1 1 0 0 0 0 0 0 0 15 3 5 0 0 0 0 1 6 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
mrbox redbaals 535 3L 1 1 0 0 0 0 0 0 0 0 3 1 0 0 0 0 1 7 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 3 0 0 1 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 1 1 -55 1 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 3 1 2 0 1 0 1 0 0
torch1 redbaal's lair 536 3m 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 1 1 0 0 0 0 0 160 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
torch2 redbaal's lair 537 3n 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 1 1 0 0 0 0 0 160 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
candles temple 538 3o 0 0 0 0 0 0 0 0 0 0 2 5 0 0 0 0 20 1 1 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Waypoint temple 539 3p 0 1 0 1 0 0 0 0 0 0 5 5 0 0 0 0 1 20 20 0 0 0 0 0 200 200 100 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 16 0 0 0 1 100 1 0 0 0 0 0 0 23 0 17 0 0 0 0 0 307
deadperson everywhere 540 3q 1 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 16 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
groundtomb temple 541 3s 1 1 0 0 0 0 0 0 0 15 5 3 0 0 0 0 1 6 1 0 0 0 0 0 0 280 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
Dummy Larzuk Greeting 542 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 70 0 0 0 0 0 0
Dummy Larzuk Standard 543 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 71 0 0 0 0 0 0
groundtombL temple 544 3t 1 1 0 0 0 0 0 0 0 15 3 5 0 0 0 0 1 6 1 0 0 0 0 0 0 280 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
deadperson2 everywhere 545 3u 0 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 11 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
ancientsaltar ancientsaltar 546 4a 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 30 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 19 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 65 0 72 12 0 0 0 0 1467
To The Worldstone Keep Level 1 ancientsdoor 547 4b 0 1 0 1 0 0 0 0 0 0 5 8 0 0 0 0 1 50 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 -47 17 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 7 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 1 -30 -100 70 100 66 0 73 0 0 0 0 0 0
eweaponrackR everywhere 548 3x 2 1 0 0 0 0 0 0 0 0 2 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 20 0 0 0 1 0 0 0 0
eweaponrackL everywhere 549 3y 2 1 0 0 0 0 0 0 0 0 1 2 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 20 0 0 0 1 0 0 0 0
earmorstandR everywhere 550 3z 2 1 0 0 0 0 0 0 0 0 2 1 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 19 0 0 0 1 0 0 0 0
earmorstandL everywhere 551 4c 2 1 0 0 0 0 0 0 0 0 1 2 0 0 0 0 1 1 1 1 1 1 1 1 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -50 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 0 0 0 0 19 0 0 0 1 0 0 0 0
torch2 summit 552 9g 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 1 1 0 0 0 0 0 190 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
funeralpire outside 553 9h 0 0 0 0 0 0 0 0 0 0 3 4 0 0 0 0 20 1 1 0 0 0 0 0 130 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
burninglogs outside 554 9i 0 0 0 0 0 0 0 0 0 0 3 4 0 0 0 0 20 1 1 0 0 0 0 0 130 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
stma Ice cave steam 555 2o 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 0 0 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
deadperson2 everywhere 556 3v 0 1 0 0 0 0 0 0 0 15 2 2 0 0 0 0 1 11 1 0 0 0 0 0 0 256 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 1 2 0 1 18 0 0 0 0 0 0 0 16 0 0 0 0 100 1 0 0 18 0 0 0 4 3 3 0 1 0 0 0 0
Dummy Baal's lair 557 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 11 0 0 0 0 0
fana frozen anya 558 2n 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 20 0 1 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 67 0 74 15 0 0 0 0 1468
BBQB BBQ Bunny 559 29 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 44 44 44 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
btor Baal Torch Big 560 25 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 22 0 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 2 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
Dummy invisible ancient 561 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 50 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 69 0 0 13 0 0 0 0 0
Dummy invisible base 562 ss 0 0 0 0 0 0 0 0 0 0 5 5 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Worldstone Chamber baals portal 563 4x 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 1 50 40 0 0 0 0 0 256 256 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -80 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 70 0 75 16 0 0 0 0 0
Glacial Caves Level 1 summit door 564 4u 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 31 1 0 0 0 0 0 128 128 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 17 0 0 0 0 0 0 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 -33 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -30 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 71 0 76 0 0 0 0 0 0
strlastcinematic last portal 565 pp 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 0 0 0 0 0 128 128 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 72 0 77 0 0 0 0 0 0
Harrogath last last portal 566 pp 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 0 0 0 0 0 128 128 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 73 0 78 0 0 0 0 0 0
Zoo test data 567 ss 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 79 17 0 0 0 0 0
Keeper test data 568 7z 0 0 0 0 0 0 0 0 0 0 2 2 0 0 0 0 22 0 0 0 0 0 0 0 111 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 18 0 0 0 0 0
Throne of Destruction baals portal 569 4x 0 0 1 1 0 0 0 0 0 0 1 1 0 0 0 0 1 50 40 0 0 0 0 0 256 256 256 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 70 0 75 16 0 0 0 0 0
Dummy fire place guy 570 7y 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 9 0 0 0 0 0 0 0 111 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy door blocker 571 ss 0 0 0 0 0 0 0 0 0 0 5 2 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dummy door blocker 572 ss 0 0 0 0 0 0 0 0 0 0 2 5 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 16 0 0 1 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

295
txt/Overlay.txt Normal file
View File

@ -0,0 +1,295 @@
Overlay Filename Frames Character PreDraw 1ofN Dir Open Beta Xoffset Yoffset Height1 Height2 Height3 Height4 AnimRate LoopWaitTime Trans InitRadius Radius Red Green Blue NumDirections LocalBlood
Null null 2 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Lightning ShockHitSm 20 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 11 11 255 255 255 1 0
CastResistFire AuraResistFireFrontCast 11 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 193 103 1 0
AuraResistFire AuraResistFireFront 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 193 103 1 0
CastResistCold AuraResistColdBackCast 11 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 210 210 255 1 0
AuraResistCold AuraResistColdBack 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 210 210 255 1 0
CastResistLight AuraResistLightningBackCast 11 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 255 200 1 0
AuraResistLight AuraResistLightningBack 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 255 200 1 0
CastResistAll AuraResistAllCast 20 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 1 10 211 148 255 1 0
AuraResistAllFront AuraResistAllFront 20 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 6 6 211 148 255 1 0
AuraResistAllBack AuraResistAllBack 20 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 6 6 211 148 255 1 0
AuraMightFront AuraMightFront 15 Paladin 0 1 0 1 1 4 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
AuraMightBack AuraMightBack 15 Paladin 1 1 0 1 1 4 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
AuraPrayerFront AuraPrayerFront 16 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
AuraPrayerBack AuraPrayerBack 16 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
AuraHolyFireFront AuraHolyFireFront 12 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
AuraHolyFireBack AuraHolyFireBack 12 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HItHolyFire AuraHolyFireHit 12 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
TargetHolyFire AuraHfireIndicate 19 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
AuraThornsFront AuraThornsFront 18 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
AuraThornsBack AuraThornsBack 18 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HItThorns AuraThornsHit 10 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
TargetThorns AuraHfireIndicate 19 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
AuraDefianceFront AuraDefianceFront 15 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
AuraDefianceBack AuraDefianceBack 15 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
AuraFanatic AuraFanatic 20 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Healing OverlayH 17 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Receiving AmazonHealSpell 20 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 8 255 184 199 1 0
CastUndead HolyBoltCloud 16 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FireCast FireCast_for_Sorceress 14 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 178 64 1 0
FireCast2 FireCast2 16 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 178 64 1 0
IceCast1 IceCastNew01 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
IceCast2 IceCastNew02 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
IceCast3 IceCastNew03 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
LightCast LightningCast 10 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 255 255 1 0
FireExplode FireExplode 12 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 14 14 255 193 103 1 0
IceExplode IceExplode 16 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 14 14 210 210 255 1 0
Warmth Warmth 14 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 8 255 193 103 1 0
FrozenArmor FrozenArmor 24 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 13 200 200 255 1 0
ShiverArmor FrozenArmor 24 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 13 200 200 255 1 0
ChillArmor FrozenArmor 24 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 13 200 200 255 1 0
Shivers Cast AuraResistColdCast 11 Sorceress 1 1 0 0 0 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
FrozenArmorHit AuraResistColdCast 11 Sorceress 1 1 0 0 0 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
ShiverArmorHit AuraResistColdCast 11 Sorceress 1 1 0 1 1 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
ChillArmorHit AuraResistColdCast 11 Sorceress 1 1 0 0 0 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
Teleport Teleport 18 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 5 255 255 200 1 0
SRFireHit SRFireHit 16 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 193 103 1 0
CastInnerSight EOZCast 29 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 255 255 1 0
InnerSight HardenArmor 24 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 255 255 1 0
CastSlowMissiles HOAcast 21 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 255 255 1 0
HandOfAthena HOAmissileExplode 9 Amazon 0 1 0 0 0 0 0 0 0 0 0 16 0 3 2 2 255 255 255 1 0
CastFistOfAres FOACast 20 Amazon 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 6 255 255 255 1 0
DurielDeadFwd DurielBloodsplatOverlayFwd 26 ? 1 1 0 0 0 0 0 0 0 0 0 8 0 5 0 0 255 255 255 1 1
FamiliarCast FamiliarCast 21 Necro 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
DoubleDamage1 impacting01 4 all 0 3 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
DoubleDamage2 impacting02 4 all 0 2 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
DoubleDamage3 impacting03 4 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
Shrine Shimmer 00 ShrineShimmer00 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer 01 ShrineShimmer01 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Armor ShrineArmor 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Combat ShrineCombat 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Resist Lightning ShrineResistLightning 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Resist Fire ShrineResistFire 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Resist Cold ShrineResistCold 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Resist Poison ShrineResistPoison 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Skill ShrineSkill 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Mana Regen ShrineManaRegen 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Stamina ShrineStamina 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Shrine Shimmer Experience ShrineExperience 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
Curse Hit CurseHit 10 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 193 103 1 0
Item Gleam Gleam 8 item 0 1 0 1 1 0 0 0 0 0 0 16 4000 3 0 0 255 255 255 1 0
multi gleam multigleam 10 objects 0 1 0 0 0 0 0 0 0 0 0 10 4000 3 0 0 255 255 255 1 0
npc hail NPCSpeechBalloon 16 npcs 0 1 0 1 1 -5 -7 -30 0 0 -50 9 7000 3 0 0 255 255 255 1 0
test #3 Gleam 8 test 0 1 0 1 1 10 -14 0 0 0 0 11 4000 3 0 0 255 255 255 1 0
test #4 Gleam 8 test 0 1 0 1 1 -10 -12 0 0 0 0 12 4000 3 0 0 255 255 255 1 0
ShoutStart ShoutStart 20 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 1 6 255 255 255 1 0
Shout Shout 20 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 1 6 255 255 255 1 0
Taunt CurseConfuseEffect 24 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 193 103 1 0
Zakarum Priest Die Zakarum_Priest_DeathGlow 24 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 2 2 103 193 255 1 0
Thorned Hulk Die ThornedHulkDeathOverlay 25 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 2 2 255 193 103 1 0
Dust BAJumpLandPuff01 8 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
FireHit FireHit 8 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 3 1 255 193 103 1 0
Frog Demon Die FrogExplode 14 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Fetish Aura FetishFreakOut 16 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Raven Raise Dead Front brraisedeadfront 16 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Raven Raise Dead Back brraisedeadback 16 all 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
EnergyShield ManaShieldBall 8 Sorceress 0 1 0 0 0 0 0 0 0 0 0 8 0 5 0 0 255 255 255 1 0
EnergyShieldHit0 ManaShieldDir00 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
EnergyShieldHit1 ManaShieldDir02 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
EnergyShieldHit2 ManaShieldDir04 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
EnergyShieldHit3 ManaShieldDir06 9 Sorceress 1 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
EnergyShieldHit4 ManaShieldDir08 9 Sorceress 1 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
EnergyShieldHit5 ManaShieldDir10 9 Sorceress 1 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
EnergyShieldHit6 ManaShieldDir12 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
EnergyShieldHit7 ManaShieldDir14 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
ChillBlood ChillBloodPuff_curse 14 all 1 1 0 0 0 0 0 14 0 -14 -60 16 0 3 3 3 81 81 255 1 0
ThunderStormFront null 2 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 8 8 255 255 255 1 0
ThunderStormBack ThunderstormCast_operate 19 Sorceress 1 1 0 0 0 0 0 0 0 0 0 16 0 3 8 8 255 255 255 1 0
ThunderStormCast ThunderstormCast 10 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 8 255 255 255 1 0
BlessedAimFront BlessedAim_front 10 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
BlessedAimBack BlessedAim_back 10 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
StaminaFront Stamina_front 16 Paladin 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
StaminaBack Stamina_back 16 Paladin 1 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
ConcentrationFront Concentration_front 10 Paladin 0 1 0 0 0 0 0 0 0 0 0 3 0 3 0 0 255 255 255 1 0
ConcentrationBack Concentration_back 10 Paladin 1 1 0 0 0 0 0 0 0 0 0 3 0 3 0 0 255 255 255 1 0
HolyFreeze HolyFreeze 15 Paladin 1 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
CleansingFront Cleansing_front 16 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
CleansingBack Cleansing_back 16 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
HolyShockFront HolyShock_front 14 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HolyShockBack HolyShock_back 14 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HolyShockHit ShockHitSm 20 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 11 11 255 255 255 1 0
SanctuaryFront SanctuaryAura_Front 12 Paladin 1 1 0 0 0 0 -1 0 0 0 0 16 0 3 0 0 255 255 255 1 0
SanctuaryBack SanctuaryAura_Back 12 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
SanctuaryKnockBack SanctuaryKnockback 13 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
MeditationFront Meditation 13 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
MeditationBack null 2 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
FanaticismFront Fanatacism_Front 30 Paladin 0 1 0 0 0 0 -1 0 0 0 0 6 0 3 0 0 255 255 255 1 0
FanaticismBack Fanatacism_Back 30 Paladin 1 1 0 0 0 0 0 0 0 0 0 6 0 3 0 0 255 255 255 1 0
RedemptionFront null 2 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
RedemptionBack Redemption 12 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
ConvictionFront null 2 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
ConvictionBack Conviction 21 all 1 1 0 0 0 0 0 0 0 0 0 6 0 3 0 0 255 255 255 1 0
Mephisto MephistoOverlay 26 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
ConversionCast AuraResistColdBackCast 11 Monster 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 10 210 210 255 1 0
ConversionAura Conversion 10 Monster 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
Charge Charge 8 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
FingerMageSpiderExplode FingerMageSpiderXplode 6 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
FingerMageSpiderCurse FingerMageCurse 15 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
CurseAmplifyDamage CurseAmplifyDamageEffect 24 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 1 6 255 64 64 1 0
CurseDimVision CurseDimVisionEffect 24 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 1 6 255 210 210 1 0
CurseWeaken CurseWeakenEffect 24 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 1 6 255 210 210 1 0
CurseIronMaiden CurseIronMaidenEffect 29 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 1 6 255 0 0 1 0
CurseTerror CurseTerrorEffect 20 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
CurseAttract CurseAttractHarmEffect 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 255 0 0 1 0
CurseReverseVampire CurseReverseVampireEffect 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
CurseConfuse CurseConfuseEffect 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 255 0 1 0
CurseDecrpify CurseDecrepifyEffect 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 0 255 1 0
CurseLowerResistance CurseLowerResistEffect 29 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 0 255 1 0
HitIronMaiden AuraThornsHit 10 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
HitReverseVampire CurseRevVampireHit 13 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
BoneArmorCast BoneShieldEmerge 12 Necro 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
BoneArmorFront BoneShieldFront 24 Necro 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
BoneArmorBack BoneShieldBack 24 Necro 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
BoneArmorNull1 null 2 Necro 0 1 0 1 1 0 0 0 0 0 0 4 0 3 0 0 0 0 0 1 0
BoneArmorNull2 null 2 Necro 0 1 0 1 1 0 0 0 0 0 0 2 0 3 0 0 0 0 0 1 0
DiabloLightning RedShockEffectSmall 20 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
VultureDemonFeathers vdfeathers 26 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 5 2 2 255 255 255 4 0
Bash BABash 9 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
Stun Stun 12 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
BattleCry BattleCry 15 all 0 1 0 0 0 0 0 14 0 -14 -60 8 0 3 0 0 0 0 0 1 0
SRIceHit SRIceHit 16 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 103 193 255 1 0
StealLife CurseRevVampireHit 13 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
StealMana VampiricHitMana 13 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Enchant FireEnchant 17 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 9 255 178 64 1 0
BattleOrdersCast BattleOrdersStart 11 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
BattleOrders BattleOrders 20 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
DurielDeadRear DurielBloodsplatOverlayRear 26 ? 1 1 0 0 0 0 0 0 0 0 0 8 0 5 0 0 255 255 255 1 1
TentacleBloodRipple BloodRipple 16 Monster 0 1 0 0 0 0 0 0 0 0 0 8 0 8 2 2 0 0 0 1 1
HandOfGod HolyShockHit 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 2 2 255 255 255 1 0
BattleCommandCast BattleCommandStart 20 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
BattleCommand BattleCommand 20 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
BerserkFront BerserkOverlay 24 Bar 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
BerserkBack null 2 Bar 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Frenzy Frenzy 25 Bar 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
FireGolemRise FireGolemOverlay 16 all 0 1 0 0 0 0 0 0 0 0 0 10 0 3 2 5 255 0 0 1 0
ValkyrieStart ValkarieEmerge 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Valkyrie ValkarieGlow 20 all 1 1 0 0 0 5 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
Whirlwind BAWhirlwind01 8 Bar 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
VampireSteal VampiricHitHealth 8 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
FingerMageSpiderFlames FingerMageFlames 14 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 2 2 255 64 64 1 0
WarcryHit WarcryHit 16 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
DopplezonAppear DopplezonAppear 19 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 4 255 255 255 1 0
HydraStart1 HydraGroundFireStart 16 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HydraStart2 HydraGroundFireStart 16 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HydraStart3 HydraGroundFireStart 16 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HydraLoop1 HydraGroundFire 20 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HydraLoop2 HydraGroundFire 20 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HydraLoop3 HydraGroundFire 20 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HydraEnd1 HydraGroundFireEnd 16 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HydraEnd2 HydraGroundFireEnd 16 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
HydraEnd3 HydraGroundFireEnd 16 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
LightJet LIGHTJET 13 object 0 1 0 0 0 0 0 0 0 0 0 4 0 3 0 0 255 255 255 1 0
HoradricLight HoradricLightBeam 21 object 0 1 0 0 0 0 0 0 0 0 0 5 0 3 0 0 255 255 255 1 0
MonFrenzy FrenzyThornhulk 25 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Willowispdeath willodeathoverlay 20 Monster 0 1 0 0 0 0 0 0 0 0 0 20 0 3 1 4 178 178 178 1 0
MegaDemonDeath firedeath 20 Monster 0 1 0 0 0 0 0 0 0 0 0 8 0 3 2 2 255 64 64 1 0
LightCast2 LightningCastRunesFront 10 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 255 255 1 0
UndeadHorrorDeath UMFire 20 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 2 2 255 255 255 1 0
FetishDeath1 BoneFetishDeathBones 11 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 5 0 0 255 255 255 1 0
FetishDeath2 BoneFetishDeathCloud 10 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Expansion
PsychicHammerHit Expansion\PsyHammerHit 7 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
PsychicHammerCast Expansion\PsyHammerOverlay 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
FistofWillCast Expansion\PsyHammerOverlay 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
FrontKick Willodeathoverlay 20 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Druid Fire Cast 1 Expansion\Fire_Overlay_A 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Druid Fire Cast 2 Expansion\Fire_Overlay_B 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
BlastofWindCast Expansion\ColdWindOverlay 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Siege Beast Dust Expansion\SeigeBeast_Dust 14 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
WolfMorph expansion\druidmorph 13 all 0 1 0 0 0 0 0 0 0 0 0 20 0 3 0 0 255 255 255 1 0
WolfUndoMorph expansion\druidmorph 13 all 0 1 0 0 0 0 0 0 0 0 0 10 0 3 0 0 255 255 255 1 0
BearMorph expansion\druidmorph 13 all 0 1 0 0 0 0 0 0 0 0 0 20 0 3 0 0 255 255 255 1 0
BearUndoMorph expansion\druidmorph 13 all 0 1 0 0 0 0 0 0 0 0 0 10 0 3 0 0 255 255 255 1 0
SpawnedMinion Expansion\minionspawnover 20 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
BloodLustState BloodRipple 15 all 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Suicide Death Overlay Expansion\Suicide_Death_Overlay 20 all 0 1 0 0 0 0 0 0 0 0 0 6 0 3 0 0 255 255 255 1 1
Oak Sage Overlay Expansion\oak_sage_Aura 11 all 1 1 0 0 0 0 0 0 0 0 0 6 0 3 0 0 255 255 255 1 0
Volcano Flame Expansion\volcano_Fire 29 all 0 1 0 0 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
CycloneArmor1Front Expansion\CycloneArmorAFront 11 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
CycloneArmor1Back Expansion\CycloneArmorABack 11 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
CycloneArmor2Front Expansion\CycloneArmorBFront 11 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
CycloneArmor2Back Expansion\CycloneArmorBBack 11 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
CycloneArmor3Front Expansion\CycloneArmorCFront 11 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
CycloneArmor3Back Expansion\CycloneArmorCBack 11 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Cloaked Expansion\CloakOfShadows 16 all 0 1 0 0 0 0 0 -46 -60 -74 -120 16 0 3 1 2 255 210 210 1 0
AssassinFistImpact Expansion\DeadlyFistHit 5 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 3 3 255 255 255 1 0
AssassinFootImpact Expansion\DeadlyFistHit 5 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 3 3 255 255 255 1 0
TwisterFront Expansion\TwisterFront 40 all 0 1 0 0 1 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
TwisterBack Expansion\TwisterBack 40 all 1 1 0 0 1 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
BladeShield Expansion\blade_shield 20 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
RabiesPlague Expansion\rabies 30 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
SpawnedBirthFlames Expansion\SpawnedBirthFlames 8 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 1 3 255 0 0 1 0
SpawnedFlames Expansion\SpawnedFlames 8 all 1 1 0 0 0 0 0 0 0 0 0 8 0 3 1 3 255 0 0 1 0
Defense Curse expansion\succcurseoverlay1 11 all 0 1 0 0 0 0 0 14 0 -14 -60 8 0 3 1 6 255 193 103 1 0
Blood Mana expansion\succcurseoverlay2 10 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
Burning Expansion\On_Fire 19 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 64 64 1 0
Catapult Death S Expansion\catadeathoversouth 21 all 0 1 0 0 0 0 0 14 0 -14 -60 8 0 3 1 6 255 64 64 1 0
Catapult Death E Expansion\catadeathovereast 21 all 0 1 0 0 0 0 0 14 0 -14 -60 8 0 3 1 6 255 64 64 1 0
Ice Cage expansion\icecage_neutral 1 Monster 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Ice Cage Melt expansion\icecage_melt 30 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 1 0
Succubae Death expansion\succ1deathoverlay 18 Monster 0 1 0 0 0 0 0 0 0 0 0 10 0 3 0 0 0 0 0 1 0
Progressive Damage 1 expansion\MISSILE_A_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Damage 2 expansion\MISSILE_A_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Damage 3 expansion\MISSILE_A_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Steal 1 expansion\MISSILE_B_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Steal 2 expansion\MISSILE_B_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Steal 3 expansion\MISSILE_B_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Other 1 expansion\MISSILE_C_A 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Other 2 expansion\MISSILE_C_B 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Other 3 expansion\MISSILE_C_C 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Fire 1 expansion\MISSILE_RED_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Fire 2 expansion\MISSILE_RED_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Fire 3 expansion\MISSILE_RED_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Fire 2 Attack FireCast_for_Sorceress 14 all 0 1 0 0 0 0 0 0 0 0 0 32 0 3 0 0 0 0 0 1 0
Progressive Fire 3 Attack FireCast2 16 all 0 1 0 0 0 0 0 0 0 0 0 32 0 3 0 0 0 0 0 1 0
Progressive Cold 1 expansion\MISSILE_BLUE_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Cold 2 expansion\MISSILE_BLUE_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Cold 3 expansion\MISSILE_BLUE_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Cold 2 Attack IceCastNew01 15 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Cold 3 Attack IceCastNew02 15 all 0 1 0 0 0 0 0 0 0 0 0 32 0 3 0 0 0 0 0 1 0
Progressive Lightning 1 expansion\MISSILE_WHITE_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Lightning 2 expansion\MISSILE_WHITE_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Lightning 3 expansion\MISSILE_WHITE_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Lightning 2 Attack expansion\skill_norotate 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Progressive Lightning 3 Attack expansion\skill_norotate 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Spirit of Barbs expansion\spirit_of_barbs 12 all 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Heart of Wolverine expansion\Heart_of_Wolverine 30 all 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Inpregnated expansion\painwormcurse 10 all 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
Quickness expansion\quickness 9 Assasin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
VenomClaws expansion\venomclaws 10 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
DragonFlight expansion\DragonFlight 9 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul1 expansion\Maul_A_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul2 expansion\Maul_B_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul3 expansion\Maul_C_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul4 expansion\Maul_D_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul5 expansion\Maul_E_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage1 expansion\feral_rage_A_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage2 expansion\feral_rage_B_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage3 expansion\feral_rage_C_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage4 expansion\feral_rage_D_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage5 expansion\feral_rage_E_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
ShadowWarriorAppear expansion\ShadowAppear 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
ShadowWarriorFade expansion\ShadowAppear 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Fade expansion\fade 20 Assasin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
DireWolfCharged expansion\DireWolfCharged 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
DireWolfCharged expansion\poisonhit 8 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
BaalOnThrone expansion\baalshield 11 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
Death Sentry expansion\dethsentry01 12 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul1Back expansion\Maul_A_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul2Back expansion\Maul_B_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul3Back expansion\Maul_C_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul4Back expansion\Maul_D_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
Maul5Back expansion\Maul_E_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage1Back expansion\feral_rage_A_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage2Back expansion\feral_rage_B_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage3Back expansion\feral_rage_C_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage4Back expansion\feral_rage_D_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
FeralRage5Back expansion\feral_rage_E_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
TigerStrikeA expansion\tiger_Strike_A 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
TigerStrikeB expansion\tiger_Strike_B 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
TigerStrikeC expansion\tiger_Strike_C 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
CobraStrikeA expansion\Cobra_Strike_A 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
CobraStrikeB expansion\Cobra_Strike_B 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
CobraStrikeC expansion\Cobra_Strike_C 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0

21
txt/PetType.txt Normal file
View File

@ -0,0 +1,21 @@
pet type idx group basemax warp range partysend unsummon automap name drawhp icontype baseicon mclass1 micon1 mclass2 micon2 mclass3 micon3 mclass4 micon4 eol
none 0 0
single 1 1 1 1 1 0
valkyrie 2 0 1 1 1 1 StrUI4 1 1 valkarieicon 0
golem 3 0 1 1 1 1 StrUI0 1 3 earthgolumicon 290 bloodgolumicon 291 metalgolumicon 292 firegolumicon 0
skeleton 4 0 1 1 1 1 StrUI1 1 2 skeletonicon 0
skeletonmage 5 0 1 1 1 1 StrUI2 1 2 skeletonmageicon 0
revive 6 0 1 1 1 1 StrUI3 1 2 revivedicon 0
hireable 7 1 1 1 1 1 rogueicon 338 act2hireableicon 359 act3hireableicon 561 barbhirable_icon 0
dopplezon 8 0 1 1 1 0
invis 9 0 1 0
raven 10 0 1 strUI5 2 raven 0
spiritwolf 11 1 0 1 1 1 1 strUI6 1 2 wolf 0
fenris 12 1 0 1 1 1 1 UIFenirsui 1 2 wolf 0
totem 13 0 1 1 1 1 strUI14 1 3 oaksage 423 heartofwolverine 422 spiritofbarbs 0
vine 14 0 1 1 1 1 strUI13 1 3 plaguepoppy 426 cycleoflife 427 vines 0
grizzly 15 1 0 1 1 1 1 strUI7 1 1 bear 0
shadowwarrior 16 0 1 1 1 1 UiShadowUI 1 1 shadowassassin 0
assassintrap 17 0 1 0
pettrap 18 0 1 0
hydra 19 0 1 0

9
txt/PlayerClass.txt Normal file
View File

@ -0,0 +1,9 @@
Player Class Code
Amazon ama
Sorceress sor
Necromancer nec
Paladin pal
Barbarian bar
Expansion
Druid dru
Assassin ass

21
txt/PlrMode.txt Normal file
View File

@ -0,0 +1,21 @@
Name Token
Death DT
Neutral NU
Walk WL
Run RN
Get Hit GH
Town Neutral TN
Town Walk TW
Attack1 A1
Attack2 A2
Block BL
Cast SC
Throw TH
Kick KK
Skill1 S1
Skill2 S2
Skill3 S3
Skill4 S4
Dead DD
Sequence GH
Knock back GH

9
txt/PlrType.txt Normal file
View File

@ -0,0 +1,9 @@
Name Token
Amazon AM
Sorceress SO
Necromancer NE
Paladin PA
Barbarian BA
Expansion
Druid DZ
Assassin AI

269
txt/Properties.txt Normal file
View File

@ -0,0 +1,269 @@
code *done set1 val1 func1 stat1 set2 val2 func2 stat2 set3 val3 func3 stat3 set4 val4 func4 stat4 set5 val5 func5 stat5 set6 val6 func6 stat6 set7 val7 func7 stat7 *desc *param *min *max *notes *eol
ac 1 1 armorclass none 0
ac-miss 1 1 armorclass_vs_missile none 0
ac-hth 1 1 armorclass_vs_hth none 0
red-dmg 1 1 normal_damage_reduction none 0
red-dmg% 1 1 damageresist none 0
ac% 1 2 item_armor_percent none 0
red-mag 1 1 magic_damage_reduction none 0
str 1 1 strength none 0
dex 1 1 dexterity none 0
vit 1 1 vitality none 0
enr 1 1 energy none 0
mana 1 1 maxmana none 0
mana% 1 1 item_maxmana_percent none 0
hp 1 1 maxhp none 0
hp% 1 1 item_maxhp_percent none 0
att 1 1 tohit none 0
block 1 1 toblock none 0
cold-min 1 1 coldmindam none 0
cold-max 1 1 coldmaxdam none 0
cold-len 1 1 coldlength none 0
fire-min 1 1 firemindam none 0
fire-max 1 1 firemaxdam none 0
ltng-min 1 1 lightmindam none 0
ltng-max 1 1 lightmaxdam none 0
pois-min 1 1 poisonmindam none 0
pois-max 1 1 poisonmaxdam none 0
pois-len 1 1 poisonlength none 0
dmg-min 1 5 none 0
dmg-max 1 6 none 0
dmg% 1 7 none 0
dmg-to-mana 1 1 item_damagetomana none 0
res-fire 1 1 fireresist none 0
res-fire-max 1 1 maxfireresist none 0
res-ltng 1 1 lightresist none 0
res-ltng-max 1 1 maxlightresist none 0
res-cold 1 1 coldresist none 0
res-cold-max 1 1 maxcoldresist none 0
res-mag 1 1 magicresist none 0
res-mag-max 1 1 maxmagicresist none 0
res-pois 1 1 poisonresist none 0
res-pois-max 1 1 maxpoisonresist none 0
res-all 1 1 fireresist 3 lightresist 3 coldresist 3 poisonresist none 0
res-all-max 1 1 maxfireresist 3 maxlightresist 3 maxcoldresist 3 maxpoisonresist none 0
abs-fire% 1 1 item_absorbfire_percent none 0
abs-fire 1 1 item_absorbfire none 0
abs-ltng% 1 1 item_absorblight_percent none 0
abs-ltng 1 1 item_absorblight none 0
abs-mag% 1 1 item_absorbmagic_percent none 0
abs-mag 1 1 item_absorbmagic none 0
abs-cold% 1 1 item_absorbcold_percent none 0
abs-cold 1 1 item_absorbcold none 0
dur 1 1 maxdurability none 0
dur% 1 13 item_maxdurability_percent none 0
regen 1 1 hpregen none 0
thorns 1 1 item_attackertakesdamage none 0
swing1 1 8 item_fasterattackrate none 0
swing2 1 8 item_fasterattackrate none 0
swing3 1 8 item_fasterattackrate none 0
gold% 1 1 item_goldbonus none 0
mag% 1 1 item_magicbonus none 0
knock 1 1 item_knockback none 0
regen-stam 1 1 staminarecoverybonus none 0
regen-mana 1 1 manarecoverybonus none 0
stam 1 1 maxstamina none 0
time 1 1 item_timeduration none 0
manasteal 1 1 manadrainmindam none 0
lifesteal 1 1 lifedrainmindam none 0
ama 1 0 21 item_addclassskills none 0
pal 1 3 21 item_addclassskills none 0
nec 1 2 21 item_addclassskills none 0
sor 1 1 21 item_addclassskills none 0
bar 1 4 21 item_addclassskills none 0
herb 1 1 item_doubleherbduration none 0
light 1 1 item_lightradius none 0
color 1 1 1 item_lightcolor none 0
ease 1 1 item_req_percent none 0
move1 1 8 item_fastermovevelocity none 0
move2 1 8 item_fastermovevelocity none 0
move3 1 8 item_fastermovevelocity none 0
balance1 1 8 item_fastergethitrate none 0
balance2 1 8 item_fastergethitrate none 0
balance3 1 8 item_fastergethitrate none 0
block1 1 8 item_fasterblockrate none 0
block2 1 8 item_fasterblockrate none 0
block3 1 8 item_fasterblockrate none 0
cast1 1 8 item_fastercastrate none 0
cast2 1 8 item_fastercastrate none 0
cast3 1 8 item_fastercastrate none 0
res-pois-len 1 1 item_poisonlengthresist none 0
dmg 1 1 item_normaldamage none 0
howl 1 1 item_howl none 0
stupidity 1 1 item_stupidity none 0
ignore-ac 1 1 item_ignoretargetac none 0
reduce-ac 1 1 item_fractionaltargetac none 0
noheal 1 1 item_preventheal none 0
half-freeze 1 1 item_halffreezeduration none 0
att% 1 1 item_tohit_percent none 0
dmg-ac 1 1 item_damagetargetac none 0
dmg-demon 1 1 item_demondamage_percent none 0
dmg-undead 1 1 item_undeaddamage_percent none 0
att-demon 1 1 item_demon_tohit none 0
att-undead 1 1 item_undead_tohit none 0
throw 1 1 item_throwable none 0
fireskill 1 1 21 item_elemskill none 0
allskills 1 1 item_allskills none 0
light-thorns 1 1 item_attackertakeslightdamage none 0
freeze 1 1 item_freeze chance in 128 length in frames none 0
openwounds 1 1 item_openwounds none 0
crush 1 1 item_crushingblow none 0
kick 1 1 item_kickdamage none 0
mana-kill 1 1 item_manaafterkill none 0
demon-heal 1 1 item_healafterdemonkill none 0
bloody 1 1 item_extrablood none 0
deadly 1 1 item_deadlystrike none 0
slow 1 1 item_slow none 0
nofreeze 1 1 item_cannotbefrozen none 0
stamdrain 1 1 item_staminadrainpct none 0
reanimate 1 24 item_reanimate none 0
pierce 1 1 item_pierce none 0
magicarrow 1 1 item_magicarrow none 0
explosivearrow 1 1 item_explosivearrow none 0
Expansion
dru 1 5 21 item_addclassskills All Druid Skills none 0
ass 1 6 21 item_addclassskills All Assassin Skills none 0
skill 1 22 item_singleskill none 0
skilltab 1 10 item_addskill_tab none 0
aura 1 22 item_aura none 0
att-skill 1 11 item_skillonattack Proc Skill on Swing Skill # % Chance Level none 0
hit-skill 1 11 item_skillonhit Proc Skill on Hit Skill # % Chance Level none 0
gethit-skill 1 11 item_skillongethit Proc Skill on Get Hit Skill # % Chance Level none 0
gembonus Increase chance of finding Gems none 0
regen-dur none 0
fire-fx none 0
ltng-fx none 0
sock 1 14 item_numsockets none 0
dmg-fire 1 15 firemindam 16 firemaxdam Fire Damage Min Max none 0
dmg-ltng 1 15 lightmindam 16 lightmaxdam Lightning Damage Min Max none 0
dmg-mag 1 15 magicmindam 16 magicmaxdam Magic Damge Min Max none 0
dmg-cold 1 15 coldmindam 16 coldmaxdam 17 coldlength Cold Damage Length (Frames) Min Max none 0
dmg-pois 1 15 poisonmindam 16 poisonmaxdam 17 poisonlength Poison Damage Length (Frames) Min Max none 0
dmg-throw 1 15 item_throw_mindamage 16 item_throw_maxdamage Throwing Damage Min Max none 0
dmg-norm 1 15 mindamage 16 maxdamage Normal Damage Modifier Min Max none 0
ac/lvl 1 17 item_armor_perlevel AC per Player Level ac/lvl (8ths) none 0
ac%/lvl 1 17 item_armorpercent_perlevel AC% per Player Level ac%/lvl (8ths) none 0
hp/lvl 1 17 item_hp_perlevel HP per Player Level hp/lvl (8ths) none 0
mana/lvl 1 17 item_mana_perlevel Mana per Player Level (8ths) none 0
dmg/lvl 1 17 item_maxdamage_perlevel Max Damage per Player Level (8ths) none 0
dmg%/lvl 1 17 item_maxdamage_percent_perlevel Max Damage % per Player Level (8ths) none 0
str/lvl 1 17 item_strength_perlevel Strength per Player Level (8ths) none 0
dex/lvl 1 17 item_dexterity_perlevel Dexterity per Player Level (8ths) none 0
enr/lvl 1 17 item_energy_perlevel Energy per Player Level (8ths) none 0
vit/lvl 1 17 item_vitality_perlevel Vitality per Player Level (8ths) none 0
att/lvl 1 17 item_tohit_perlevel Attack per Player Level att/lvl (1) none 0
att%/lvl 1 17 item_tohitpercent_perlevel Attack% per Player Level att%/lvl (8ths) none 0
dmg-cold/lvl 1 17 item_cold_damagemax_perlevel Max Cold Damage per Player Level (8ths) none 0
dmg-fire/lvl 1 17 item_fire_damagemax_perlevel Max Fire Damage per Player Level (8ths) none 0
dmg-ltng/lvl 1 17 item_ltng_damagemax_perlevel Max Lightning Dmg per Player Level (8ths) none 0
dmg-pois/lvl 1 17 item_pois_damagemax_perlevel Max Poison Dmg per Player Level (8ths) none 0
res-cold/lvl 1 17 item_resist_cold_perlevel Resist Cold% per Player Level (8ths) none 0
res-fire/lvl 1 17 item_resist_fire_perlevel Resist Fire% per Player Level (8ths) none 0
res-ltng/lvl 1 17 item_resist_ltng_perlevel Resist Lightning% per Player Level (8ths) none 0
res-pois/lvl 1 17 item_resist_pois_perlevel Resist Poison% per Player Level (8ths) none 0
abs-cold/lvl 1 17 item_absorb_cold_perlevel Absorb Cold Dmg per Player Level (8ths) none 0
abs-fire/lvl 1 17 item_absorb_fire_perlevel Absorb Fire Dmg per Player Level (8ths) none 0
abs-ltng/lvl 1 17 item_absorb_ltng_perlevel Absorb Lightning Dmg per Player Lvl (8ths) none 0
abs-pois/lvl 1 17 item_absorb_pois_perlevel Absorb Poison Dmg per Player Lvl (8ths) none 0
thorns/lvl 1 17 item_thorns_perlevel Damage to Attacker per Player Lvl (8ths) none 0
gold%/lvl 1 17 item_find_gold_perlevel +% Gold Dropped per Player Lvl (8ths) none 0
mag%/lvl 1 17 item_find_magic_perlevel +% Magical per Player Lvl (8ths) none 0
regen-stam/lvl 1 17 item_regenstamina_perlevel +% Stamina Regeneration per Player Lvl (8ths) none 0
stam/lvl 1 17 item_stamina_perlevel Stamina per Player Level (8ths) none 0
dmg-dem/lvl 1 17 item_damage_demon_perlevel Damage to Demons % per Player Level (8ths) none 0
dmg-und/lvl 1 17 item_damage_undead_perlevel Damage to Undead % per Player Level (8ths) none 0
att-dem/lvl 1 17 item_tohit_demon_perlevel Attack Demons + per Player Level att/lvl (1) none 0
att-und/lvl 1 17 item_tohit_undead_perlevel Attack Undead + per Player Level att/lvl (1) none 0
crush/lvl 1 17 item_crushingblow_perlevel +% Chance of Crushing Blow per Player Level (8ths) none 0
wounds/lvl 1 17 item_openwounds_perlevel +% Chance of Open Wounds per Player Level (8ths) none 0
kick/lvl 1 17 item_kick_damage_perlevel Kick Damage per Player Level (8ths) none 0
deadly/lvl 1 17 item_deadlystrike_perlevel +% Chance of Deadly Strike per Player Level (8ths) none 0
gems%/lvl +% Chance of finding Gems per Player Level (8ths) none 0
rep-dur 1 17 item_replenish_durability regenerates durability speed (see note) regenerates 1 durability point per 100/lvl seconds 0
rep-quant 1 17 item_replenish_quantity regenerates quantity speed (see note) regenerates 1 quantity per 100/lvl seconds 0
stack 1 1 item_extra_stack Increased stack size min count max count none 0
item% +% Chance of finding item item type min chance max chance random chance from min to max is assigned to item 0
dmg-slash Slashing Damage min max random amount from min to max is assigned to item 0
dmg-slash% Slashing Damage % min % max % random amount from min to max is assigned to item 0
dmg-crush Crush Damage min max random amount from min to max is assigned to item 0
dmg-crush% Crush Damage % min % max % random amount from min to max is assigned to item 0
dmg-thrust Thrust Damage min max random amount from min to max is assigned to item 0
dmg-thrust% Thrust Damage % min % max % random amount from min to max is assigned to item 0
abs-slash Absorb Slashing Damage min amt max amt random amount from min to max is assigned to item 0
abs-crush Absorb Crushing Damage min amt max amt random amount from min to max is assigned to item 0
abs-thrust Absorb Thrusting Damage min amt max amt random amount from min to max is assigned to item 0
abs-slash% Absorb Slashing Damage % min % max % random amount from min to max is assigned to item 0
abs-crush% Absorb Crushing Damage % min % max % random amount from min to max is assigned to item 0
abs-thrust% Absorb Thrusting Damage % min % max % random amount from min to max is assigned to item 0
ac/time 1 18 item_armor_bytime "AC / time increment (0=day, 1=dusk, 2=night, 3=dawn)" center period min max "max at center period, min at opposite period, linear progression" 0
ac%/time 1 18 item_armorpercent_bytime AC% / time increment (8 periods) center period min max "max at center period, min at opposite period, linear progression" 0
hp/time 1 18 item_hp_bytime HP / time increment center period min max "max at center period, min at opposite period, linear progression" 0
mana/time 1 18 item_mana_bytime Mana / time increment center period min max "max at center period, min at opposite period, linear progression" 0
dmg/time 1 18 item_maxdamage_bytime Max Damage / time increment center period min max "max at center period, min at opposite period, linear progression" 0
dmg%/time 1 18 item_maxdamage_percent_bytime Max Damage % / time increment center period min max "max at center period, min at opposite period, linear progression" 0
str/time 1 18 item_strength_bytime Strength / time increment center period min max "max at center period, min at opposite period, linear progression" 0
dex/time 1 18 item_dexterity_bytime Dexterity / time increment center period min max "max at center period, min at opposite period, linear progression" 0
enr/time 1 18 item_energy_bytime Energy / time increment center period min max "max at center period, min at opposite period, linear progression" 0
vit/time 1 18 item_vitality_bytime Vitality / time increment center period min max "max at center period, min at opposite period, linear progression" 0
att/time 1 18 item_tohit_bytime To hit / time increment center period min max "max at center period, min at opposite period, linear progression" 0
att%/time 1 18 item_tohitpercent_bytime To Hit % / time increment center period min max "max at center period, min at opposite period, linear progression" 0
dmg-cold/time 1 18 item_cold_damagemax_bytime Cold Damage Max / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
dmg-fire/time 1 18 item_fire_damagemax_bytime Fire Damage Max / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
dmg-ltng/time 1 18 item_ltng_damagemax_bytime Lightning Damage Max / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
dmg-pois/time 1 18 item_pois_damagemax_bytime Poison Damage Max / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
res-cold/time 1 18 item_resist_cold_bytime Resist Cold / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
res-fire/time 1 18 item_resist_fire_bytime Resist Fire / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
res-ltng/time 1 18 item_resist_ltng_bytime Resist Lightning / time inc center period min max "max at center period, min at opposite period, linear progression" 0
res-pois/time 1 18 item_resist_pois_bytime Resist Poison / time inc center period min max "max at center period, min at opposite period, linear progression" 0
abs-cold/time 1 18 item_absorb_cold_bytime Absorb Cold / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
abs-fire/time 1 18 item_absorb_fire_bytime Absorb Fire / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
abs-ltng/time 1 18 item_absorb_ltng_bytime Absorb Lightning / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
abs-pois/time 1 18 item_absorb_pois_bytime Absorb Poison / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
gold%/time 1 18 item_find_gold_bytime Find Gold Amt % / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
mag%/time 1 18 item_find_magic_bytime Find Magic % / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
regen-stam/time 1 18 item_regenstamina_bytime % / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
stam/time 1 18 item_stamina_bytime Stamina / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
dmg-dem/time 1 18 item_damage_demon_bytime Damage to Demons % / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
dmg-und/time 1 18 item_damage_undead_bytime Damage to Undead % / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
att-dem/time 1 18 item_tohit_demon_bytime To Hit Demons % / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
att-und/time 1 18 item_tohit_undead_bytime To Hit Undead % / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
crush/time 1 18 item_crushingblow_bytime % chance of Crushing Blow / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
wounds/time 1 18 item_openwounds_bytime +% chance of Open Wounds / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
kick/time 1 18 item_kick_damage_bytime Kick Damage / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
deadly/time 1 18 item_deadlystrike_bytime +% chance of Deadly Strike / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
gems%/time +% chance of finding Gems / time inc. center period min max "max at center period, min at opposite period, linear progression" 0
pierce-fire 1 1 passive_fire_pierce Negates % of Enemy Cold Resistance min max none 0
pierce-ltng 1 1 passive_ltng_pierce Negates % of Enemy Fire Resistance min max none 0
pierce-cold 1 1 passive_cold_pierce Negates % of Enemy Lightning Resistance min max none 0
pierce-pois 1 1 passive_pois_pierce Negates % of Enemy Poison Resistance min max none 0
dmg-mon Damage vs. specific Monster Type monster min max none 0
dmg%-mon Damage % vs. specific Monster Type monster min max none 0
att-mon To Hit vs. specific Monster Type monster min max none 0
att%-mon To Hit % vs. specific Monster Type monster min max none 0
ac-mon AC vs. specific Monster Type monster min max none 0
ac%-mon AC% vs. specific Monster Type monster min max none 0
indestruct 1 20 Indestructible none 0
charged 1 19 item_charged_skill Charged Skill skill charges level none 0
extra-fire 1 1 passive_fire_mastery 0
extra-ltng 1 1 passive_ltng_mastery 0
extra-cold 1 1 passive_cold_mastery 0
extra-pois 1 1 passive_pois_mastery 0
dmg-elem 1 15 firemindam 16 firemaxdam 15 lightmindam 16 lightmaxdam 15 coldmindam 16 coldmaxdam 17 coldlength 0
dmg-elem-min 1 1 firemindam 3 lightmindam 3 coldmindam 0
dmg-elem-max 1 1 firemaxdam 3 lightmaxdam 3 coldmaxdam 17 coldlength 0
all-stats 1 1 strength 3 energy 3 dexterity 3 vitality 0
addxp 1 1 item_addexperience additional xp gain 0
heal-kill 1 1 item_healafterkill life gained after each kill 0
cheap 1 1 item_reducedprices reduces vendor prices min max none 0
rip 1 1 item_restinpeace slain monsters' corpses can't be used 1 1 none 0
att-mon% 1 24 attack_vs_montype attack% vs. monster type mon type min max 0
dmg-mon% 1 24 damage_vs_montype damage% vs. monster type mon type min max 0
kill-skill 1 11 item_skillonkill Proc Skill on killing something Skill # % Chance Level 0
death-skill 1 11 item_skillondeath Proc Skill on getting killed Skill # % Chance Level 0
levelup-skill 1 11 item_skillonlevelup Proc Skill on level up Skill # % Chance Level 0
skill-rand 1 12 item_singleskill Bonus to random skill Level min Skill # max Skill # 0
fade 1 17 fade only use on monprop fade type 0
levelreq 1 1 item_levelreq 0
ethereal 1 23 0
oskill 1 22 item_nonclassskill Skill min level max level none 0
state 1 24 state state 1 1 0

47
txt/RarePrefix.txt Normal file
View File

@ -0,0 +1,47 @@
name version itype1 itype2 itype3 itype4 itype5 itype6 itype7 etype1 etype2 etype3 etype4 add multiply divide
Beast 0 armo weap misc 0 0 0
Eagle 0 armo weap misc 0 0 0
Raven 0 armo weap misc 0 0 0
Viper 0 armo weap misc 0 0 0
GhoulRI 0 armo weap misc 0 0 0
Skull 0 armo weap misc 0 0 0
Blood 0 armo weap misc 0 0 0
Dread 0 armo weap misc 0 0 0
Doom 0 armo weap misc 0 0 0
Grim 0 armo weap misc 0 0 0
Bone 0 armo weap misc 0 0 0
Death 0 armo weap misc 0 0 0
Shadow 0 armo weap misc 0 0 0
Storm 0 armo weap misc 0 0 0
Rune 0 armo weap misc 0 0 0
PlagueRI 0 armo weap misc 0 0 0
Stone 0 armo weap misc 0 0 0
Wraithra 0 armo weap misc 0 0 0
Spirit 0 armo rod 0 0 0
Storm 0 armo weap 0 0 0
Demon 0 armo weap 0 0 0
Cruel 0 armo weap 0 0 0
Empyrion 0 rod 0 0 0
Bramble 0 armo weap 0 0 0
Pain 0 armo weap 0 0 0
Loath 0 armo weap 0 0 0
Glyph 0 armo weap 0 0 0
Imp 0 armo weap 0 0 0
Fiendra 0 armo weap 0 0 0
Hailstone 0 armo weap 0 0 0
Gale 0 armo weap 0 0 0
Dire 0 armo weap 0 0 0
Soul 0 armo weap 0 0 0
Brimstone 0 armo weap 0 0 0
Corpse 0 armo weap 0 0 0
Carrion 0 armo weap 0 0 0
Holocaust 0 tors helm shld swor axe 0 0 0
Havoc 0 armo weap misc 0 0 0
Bitter 0 armo weap misc 0 0 0
Entropy 0 ring amul 0 0 0
Chaos 0 ring amul 0 0 0
Order 0 ring amul scep 0 0 0
Rule 0 rod 0 0 0
Warp 0 0 0 0
Rift 0 0 0 0
Corruption 0 ring amul 0 0 0

156
txt/RareSuffix.txt Normal file
View File

@ -0,0 +1,156 @@
name version itype1 itype2 itype3 itype4 itype5 itype6 itype7 etype1 etype2 etype3 etype4 add multiply divide
bite 0 swor knif spea pole axe h2h 0 0 0
scratch 0 swor knif spea pole h2h 0 0 0
scalpel 0 swor knif 0 0 0
fang 0 swor knif spea pole 0 0 0
gutter 0 swor knif spea pole 0 0 0
thirst 0 swor knif spea pole axe h2h 0 0 0
razor 0 swor knif axe h2h 0 0 0
scythe 0 swor axe pole 0 0 0
edge 0 swor knif axe 0 0 0
saw 0 swor 0 0 0
splitter 0 axe mace club hamm 0 0 0
cleaver 0 swor axe 0 0 0
sever 0 swor axe 0 0 0
sunder 0 axe 0 0 0
rend 0 axe 0 0 0
mangler 0 axe mace club hamm 0 0 0
slayer 0 axe 0 0 0
reaver 0 axe 0 0 0
spawn 0 axe hamm 0 0 0
gnash 0 axe club hamm 0 0 0
star 0 mace hamm scep wand 0 0 0
blow 0 mace club hamm scep 0 0 0
smasher 0 mace club hamm scep 0 0 0
Bane 0 mace scep wand 0 0 0
crusher 0 mace club hamm scep 0 0 0
breaker 0 mace club hamm scep 0 0 0
grinder 0 mace club hamm scep 0 0 0
crack 0 mace club hamm scep wand 0 0 0
mallet 0 hamm club 0 0 0
knell 0 mace club scep wand 0 0 0
lance 0 spea pole 0 0 0
spike 0 swor knif spea pole 0 0 0
impaler 0 swor knif spea pole 0 0 0
skewer 0 swor knif spea 0 0 0
prod 0 spea pole 0 0 0
scourge 0 spea pole 0 0 0
wand 0 wand 0 0 0
wrack 0 spea pole 0 0 0
barb 0 swor knif axe spea pole h2h 0 0 0
needle 0 swor knif spea miss 0 0 0
dart 0 spea miss 0 0 0
bolt 0 miss jave 0 0 0
quarrel 0 miss 0 0 0
fletch 0 miss 0 0 0
flight 0 miss jave 0 0 0
nock 0 miss 0 0 0
horn 0 helm miss knif 0 0 0
stinger 0 swor knif spea miss 0 0 0
quill 0 knif miss 0 0 0
goad 0 spea pole staf 0 0 0
branch 0 spea staf bow 0 0 0
spire 0 staf 0 0 0
song 0 weap 0 0 0
call 0 rod 0 0 0
cry 0 rod 0 0 0
spell 0 rod 0 0 0
chant 0 rod 0 0 0
weaver 0 rod 0 0 0
gnarl 0 club wand staf 0 0 0
visage 0 helm 0 0 0
crest 0 helm 0 0 0
circlet 0 helm 0 0 0
veil 0 helm 0 0 0
hood 0 helm 0 0 0
mask 0 helm 0 0 0
brow 0 helm 0 0 0
casque 0 helm 0 0 0
visor 0 helm 0 0 0
cowl 0 helm 0 0 0
hide 0 tors 0 0 0
Pelt 0 tors 0 0 0
carapace 0 tors 0 0 0
coat 0 tors 0 0 0
wrap 0 tors 0 0 0
suit 0 tors 0 0 0
cloak 0 tors 0 0 0
shroud 0 tors 0 0 0
jack 0 tors 0 0 0
mantle 0 tors 0 0 0
guard 0 shld 0 0 0
badge 0 shld 0 0 0
rock 0 shld 0 0 0
aegis 0 shld 0 0 0
ward 0 shld 0 0 0
tower 0 shld 0 0 0
shield 0 shld 0 0 0
wing 0 shld amul 0 0 0
mark 0 shld amul 0 0 0
emblem 0 shld amul 0 0 0
hand 0 glov 0 0 0
fist 0 glov h2h 0 0 0
claw 0 glov h2h 0 0 0
clutches 0 glov 0 0 0
grip 0 glov ring 0 0 0
grasp 0 glov ring 0 0 0
hold 0 glov ring 0 0 0
touch 0 glov ring 0 0 0
finger 0 glov ring 0 0 0
knuckle 0 glov 0 0 0
shank 0 boot 0 0 0
spur 0 boot 0 0 0
tread 0 boot 0 0 0
stalker 0 boot 0 0 0
greave 0 boot 0 0 0
blazer 0 boot 0 0 0
nails 0 boot spea pole 0 0 0
trample 0 boot 0 0 0
Brogues 0 boot 0 0 0
track 0 boot 0 0 0
slippers 0 boot 0 0 0
clasp 0 belt amul 1 1 1
buckle 0 belt 1 1 1
harness 0 belt 1 1 1
lock 0 belt 1 1 1
fringe 0 belt 1 1 1
winding 0 belt 1 1 1
chain 0 belt 1 1 1
strap 0 belt 1 1 1
lash 0 belt 1 1 1
cord 0 belt 1 1 1
knot 0 ring 0 0 0
circle 0 ring 0 0 0
loop 0 ring 0 0 0
eye 0 misc 0 0 0
turn 0 ring 0 0 0
spiral 0 ring 0 0 0
coil 0 ring 0 0 0
gyre 0 ring orb jewl 0 0 0
band 0 ring 0 0 0
whorl 0 ring orb jewl 0 0 0
talisman 0 amul jewl 0 0 0
heart 0 amul orb jewl 0 0 0
noose 0 amul 0 0 0
necklace 0 amul 0 0 0
collar 0 amul 0 0 0
beads 0 amul 0 0 0
torc 0 amul 0 0 0
gorget 0 amul 0 0 0
scarab 0 amul jewl 0 0 0
wood 0 spea pole wand staf 0 0 0
brand 0 blun 0 0 0
bludgeon 0 blun 0 0 0
cudgel 0 club wand 0 0 0
loom 0 miss 0 0 0
harp 0 miss 0 0 0
master 0 ring 0 0 0
barRI 0 blun spea pole 0 0 0
hew 0 swor knif axe 0 0 0
crook 0 staf 0 0 0
mar 0 swor knif mace club hamm spea 0 0 0
shell 0 tors helm shld 0 0 0
stake 0 spea pole 0 0 0
picket 0 spea pole 0 0 0
pale 0 spea pole 0 0 0
flange 0 tors mace hamm scep 0 0 0

170
txt/Runes.txt Normal file
View File

@ -0,0 +1,170 @@
Name Rune Name complete server itype1 itype2 itype3 itype4 itype5 itype6 etype1 etype2 etype3 Rune1 Rune2 Rune3 Rune4 Rune5 Rune6 T1Code1 T1Param1 T1Min1 T1Max1 T1Code2 T1Param2 T1Min2 T1Max2 T1Code3 T1Param3 T1Min3 T1Max3 T1Code4 T1Param4 T1Min4 T1Max4 T1Code5 T1Param5 T1Min5 T1Max5 T1Code6 T1Param6 T1Min6 T1Max6
Runeword1 Ancient's Pledge 1 1 shld r08 r09 r07 res-cold 30 30 res-all 13 13 ac% 50 50 dmg-to-mana 10 10
Runeword2 Armageddon 1 1 axe club pole hamm r11 r31 r32 r12 r11 r06 dmg% 185 185 att 300 300 swing2 20 20 lifesteal 3 3
Runeword3 Authority 1 1 helm r33 r25 r22 ac% 100 100 res-all 5 5 allskills 1 1 str 20 20
Runeword4 The Beast 1 1 axe club hamm r33 r03 r22 r23 r17 dmg% 200 200 crush 25 25 openwounds 25 25 dmg-undead 50 50 dmg-demon 50 50
Runeword5 Beauty 1 1 helm r01 r08 r05 light 2 2 mag% 50 50 balance2 20 20
Runeword6 Black 1 1 club hamm mace r16 r12 r02 dmg-undead 25 25 att-undead 50 50 manasteal 7 7 dmg% 133 133 lifesteal 7 7
Runeword7 Blood 1 1 spea axe swor r31 r30 r01 r22 dmg% 175 175 openwounds 75 75 deadly 25 25 lifesteal 13 13 str 13 13
Runeword8 Bone 1 1 spea wand r17 r02 att-undead 200 200 dmg-undead 75 75 dmg% 180 180 manasteal 9 9 skilltab 7 4 4
Runeword9 Bramble 1 1 tors r05 r08 ac% 47 47 res-fire 3 3 res-ltng 33 33 move1 10 10
Runeword10 Brand 1 1 scep swor r01 r15 r08 r06 light 1 1 dmg-fire 10 30 dmg% 100 100 res-cold 35 35
Runeword11 Breath of the Dying 1 1 weap r31 r07 r24 r28 r09 r20 dmg% 100 100 dmg-cold 9 15 mana-kill 5 5
Runeword12 Broken Promise 1 1 weap r07 r27 r14 pois-max 200 200 dmg-cold 6 11 att 250 250 dmg% 25 25
Runeword13 Call to Arms 1 1 weap r10 r06 r10 r23 dmg% 77 77 ac 200 200 dex 15 15 thorns 21 21 att 200 200
Runeword14 Bound by Duty 1 1 tors r03 r11 r01 r09 ac% 70 70 balance3 30 30 skilltab 11 2 2 hp 30 30
Runeword15 Chance 1 1 weap r28 r08 mag% 50 50 gold% 100 100 stupidity 1 1 dmg% 42 42
Runeword16 Chaos 1 1 tors r29 r09 r02 r13 ac% 80 80 res-fire 30 30 str 15 15 gethit-skill 38 50 7
Runeword17 Crescent Moon 1 1 axe swor pole r02 r15 r22 dmg% 100 100 manasteal 7 7 swing3 30 30 att% 20 20
Runeword18 Darkness 1 1 mele r07 r11 r25 r04 r10 dmg% 120 120 lifesteal 3 3 stupidity 1 1
Runeword19 Daylight 1 1 mele r11 r03 r31 dmg% 120 120 light 3 3 manasteal 3 3 dmg-fire 33 99
Runeword20 Death 1 1 weap r14 r20 r04 r07 r05 deadly 33 33 dmg% 133 133 noheal 1 1 dmg-pois 25 200 200 lifesteal 5 5
Runeword21 Deception 1 1 knif r18 r14 r05 dmg-pois 100 52 52 manasteal 10 10 ignore-ac 1 1 dmg% 199 199 slow 50 50
Runeword22 Delirium 1 1 helm r20 r09 r16 ac% 77 77 res-cold 44 44 res-fire 55 55 res-pois 66 66 res-ltng 3 3 regen -3 -3
Runeword23 Desire 1 helm r28 r09 r06 res-pois 0 25 25
Runeword24 Despair 1 mele r21 r32 r17 r21 r09 res-pois 0 25 25
Runeword25 Destruction 1 axe club hamm r05 r08 r25 r11 res-pois 0 25 25
Runeword26 Doomsayer 1 axe club hamm r13 r30 r21 r06 r05 r10 res-pois 0 25 25
Runeword27 Dragon 1 mele r22 r04 r17 r05 r28 res-pois 0 25 25
Runeword28 Dread 1 mele r20 r01 r18 r15 res-pois 0 25 25
Runeword29 Dream 1 helm r08 r05 res-pois 0 25 25
Runeword30 Duress 1 tors r13 r22 r10 res-pois 0 25 25
Runeword31 Edge 1 axe swor knif r30 r09 res-pois 0 25 25
Runeword32 Destiny's Daughter 1 helm r04 r26 r01 res-pois 0 25 25
Runeword33 Enigma 1 tors r32 r30 r06 res-pois 0 25 25
Runeword34 Enlightenment 1 helm r10 r02 res-pois 0 25 25
Runeword35 Envy 1 helm r18 r03 res-pois 0 25 25
Runeword36 Eternity 1 mele r21 r01 r07 r20 r30 res-pois 0 25 25
Runeword37 Exile's Path 1 shld r07 r04 r03 r10 res-pois 0 25 25
Runeword38 Faith 1 shld r19 r32 r22 r08 res-pois 0 25 25
Runeword39 Famine 1 axe club r02 r26 r02 r03 r20 res-pois 0 25 25
Runeword40 Flickering Flame 1 swor r21 r05 r07 res-pois 0 25 25
Runeword41 Fortitude 1 club hamm mace scep r13 r05 r03 res-pois 0 25 25
Runeword42 Fortune's Favor 1 knif r05 r11 r29 r15 r26 res-pois 0 25 25
Runeword43 Amity 1 shld r13 r07 res-pois 0 25 25
Runeword44 Fury 1 mele r31 r17 r24 res-pois 0 25 25
Runeword45 Gloom 1 axe r25 r06 r13 res-pois 0 25 25
Runeword46 Glory 1 mele r23 r19 r07 r02 res-pois 0 25 25
Runeword47 Widowmaker 1 miss r17 r24 r02 r02 res-pois 0 25 25
Runeword48 Hand of Justice 1 mace scep r18 r02 r33 r29 r22 r16 res-pois 0 25 25
Runeword49 Harmony 1 tors r12 r33 r15 res-pois 0 25 25
Runeword50 Hatred 1 mele r08 r10 r21 r16 r07 res-pois 0 25 25
Runeword51 Heart of the Oak 1 staf club r01 r04 r05 r15 res-pois 0 25 25
Runeword52 Heaven's Will 1 scep r23 r15 r18 r13 r11 r18 res-pois 0 25 25
Runeword53 Holy Tears 1 scep r24 r08 r07 r25 res-pois 0 25 25
Runeword54 Holy Thunder 1 scep r07 r01 r02 r05 res-pois 0 25 25
Runeword55 Honor 1 mele r06 r09 r12 r08 r08 res-pois 0 25 25
Runeword56 Dweomer 1 staf r04 r07 r03 r08 res-pois 0 25 25
Runeword57 Humility 1 helm r06 r13 r01 res-pois 0 25 25
Runeword58 Hunger 1 swor knif axe spea r08 r15 res-pois 0 25 25
Runeword59 Ice 1 swor knif axe spea r07 r15 r16 r04 res-pois 0 25 25
Runeword60 Infinity 1 staf r01 r01 r12 r07 res-pois 0 25 25
Runeword61 Innocence 1 scep r06 r22 res-pois 0 25 25
Runeword62 Insight 1 helm r01 r04 r19 res-pois 0 25 25
Runeword63 Jealousy 1 weap r15 r16 r09 r20 res-pois 0 25 25
Runeword64 Judgment 1 mele r20 r09 r07 r01 r11 res-pois 0 25 25
Runeword65 King's Grace 1 swor scep r04 r02 r05 res-pois 0 25 25
Runeword66 Kingslayer 1 swor axe r23 r09 r25 res-pois 0 25 25
Runeword67 Knight's Vigil 1 mele r08 r04 r05 r17 r01 res-pois 0 25 25
Runeword68 Thirst for Knowledge 1 helm r09 r20 res-pois 0 25 25
Runeword69 Last Wish 1 shld r12 r10 r08 r06 res-pois 0 25 25
Runeword70 Law 1 shld r22 r08 r19 r01 res-pois 0 25 25
Runeword71 Lawbringer 1 mele r22 r20 r30 res-pois 0 25 25
Runeword72 Leaf 1 staf r02 r06 res-pois 0 25 25
Runeword73 Lightning 1 mele r16 r15 r12 r01 res-pois 0 25 25
Runeword74 Lionheart 1 tors r09 r17 r16 res-pois 0 25 25
Runeword75 Lore 1 helm r11 r10 res-pois 0 25 25
Runeword76 The Lovers 1 shld r25 r19 r25 r29 res-pois 0 25 25
Runeword77 Loyalty 1 shld r04 r08 r22 res-pois 0 25 25
Runeword78 Lust 1 mele r12 r01 r09 r01 r28 r02 res-pois 0 25 25
Runeword79 Madness 1 helm r25 r27 res-pois 0 25 25
Runeword80 Malice 1 mele r03 r01 r04 res-pois 0 25 25
Runeword81 Melody 1 miss r10 r16 r05 res-pois 0 25 25
Runeword82 Memory 1 staf r31 r09 r04 r01 res-pois 0 25 25
Runeword83 Mist 1 mele r11 r08 res-pois 0 25 25
Runeword84 Morning Dew 1 shld r01 r26 r03 res-pois 0 25 25
Runeword85 Mystery 1 staf r12 r05 r20 res-pois 0 25 25
Runeword86 Myth 1 staf r27 r33 r15 r06 res-pois 0 25 25
Runeword87 Nadir 1 helm r01 r03 res-pois 0 25 25
Runeword88 Nature's Kingdom 1 club r22 r05 r22 r08 res-pois 0 25 25
Runeword89 Nightfall 1 mele r08 r06 r25 r11 res-pois 0 25 25
Runeword90 Oath 1 scep r16 r01 r04 r09 res-pois 0 25 25
Runeword91 Obedience 1 tors r16 r17 res-pois 0 25 25
Runeword92 Oblivion 1 axe hamm mace r31 r33 r01 r16 r15 r29 res-pois 0 25 25
Runeword93 Obsession 1 mele r01 r12 r06 r07 res-pois 0 25 25
Runeword94 Passion 1 mele r23 r03 r16 res-pois 0 25 25
Runeword95 Patience 1 helm r11 r12 res-pois 0 25 25
Runeword96 Pattern 1 weap r07 r09 r07 r03 r02 res-pois 0 25 25
Runeword97 Peace 1 shld r22 r06 r02 r20 res-pois 0 25 25
Runeword98 Winter 1 mele r01 r06 r01 r09 r05 r01 res-pois 0 25 25
Runeword99 Penitence 1 mele r10 r15 r06 res-pois 0 25 25
Runeword100 Peril 1 weap r19 r03 res-pois 0 25 25
Runeword101 Pestilence 1 weap r03 r18 r03 r12 res-pois 0 25 25
Runeword102 Phoenix 1 mele r11 r29 r09 r15 res-pois 0 25 25
Runeword103 Piety 1 scep r01 r30 r05 res-pois 0 25 25
Runeword104 Pillar of Faith 1 scep r21 r20 r06 r07 r06 res-pois 0 25 25
Runeword105 Plague 1 knif swor spea r21 r13 res-pois 0 25 25
Runeword106 Praise 1 scep mace r26 r05 res-pois 0 25 25
Runeword107 Prayer 1 scep r12 r05 r13 r03 res-pois 0 25 25
Runeword108 Pride 1 mele r14 r19 r05 res-pois 0 25 25
Runeword109 Principle 1 mele r33 r04 r23 res-pois 0 25 25
Runeword110 Prowess in Battle 1 weap r13 r08 res-pois 0 25 25
Runeword111 Prudence 1 tors r23 r03 res-pois 0 25 25
Runeword112 Punishment 1 mele r02 r04 r08 r23 res-pois 0 25 25
Runeword113 Purity 1 mele r03 r11 r27 r09 r18 res-pois 0 25 25
Runeword114 Question 1 staf r12 r01 r06 res-pois 0 25 25
Runeword115 Radiance 1 helm r05 r03 r07 res-pois 0 25 25
Runeword116 Rain 1 club r32 r06 res-pois 0 25 25
Runeword117 Reason 1 helm r11 r26 r20 res-pois 0 25 25
Runeword118 Red 1 weap r13 r09 r16 res-pois 0 25 25
Runeword119 Rhyme 1 shld r09 r12 res-pois 0 25 25
Runeword120 Rift 1 axe r02 r03 r09 r02 r18 r06 res-pois 0 25 25
Runeword121 Sanctuary 1 shld r18 r03 r08 r10 res-pois 0 25 25
Runeword122 Serendipity 1 club mace scep r06 r19 res-pois 0 25 25
Runeword123 Shadow 1 h2h r28 r06 r08 r10 res-pois 0 25 25
Runeword124 Shadow of Doubt 1 helm r07 r11 res-pois 0 25 25
Runeword125 Silence 1 weap r17 r09 r19 r20 r16 r20 res-pois 0 25 25
Runeword126 Siren's Song 1 mele r28 r10 r07 r20 res-pois 0 25 25
Runeword127 Smoke 1 tors r15 r03 res-pois 0 25 25
Runeword128 Sorrow 1 mele r03 r04 r13 r25 r04 res-pois 0 25 25
Runeword129 Spirit 1 weap r23 r01 r01 r30 r13 res-pois 0 25 25
Runeword130 Splendor 1 shld r05 r17 res-pois 0 25 25
Runeword131 Starlight 1 staf swor r20 r04 r03 res-pois 0 25 25
Runeword132 Stealth 1 scep r05 r01 res-pois 0 25 25
Runeword133 Steel 1 swor axe mace r04 r03 res-pois 0 25 25
Runeword134 Still Water 1 mele r01 r10 res-pois 0 25 25
Runeword135 Sting 1 swor knif r04 r11 r17 res-pois 0 25 25
Runeword136 Stone 1 mace hamm club r08 r10 r01 res-pois 0 25 25
Runeword137 Storm 1 axe hamm r01 r03 r15 r04 r03 res-pois 0 25 25
Runeword138 Strength 1 mele r09 r07 res-pois 0 25 25
Runeword139 Tempest 1 weap r05 r02 r08 r24 res-pois 0 25 25
Runeword140 Temptation 1 helm r01 r18 res-pois 0 25 25
Runeword141 Terror 1 weap r24 r06 r19 r01 res-pois 0 25 25
Runeword142 Thirst 1 mele r02 r09 res-pois 0 25 25
Runeword143 Thought 1 helm r13 r16 res-pois 0 25 25
Runeword144 Thunder 1 hamm mace axe r15 r24 res-pois 0 25 25
Runeword145 Time 1 staf r29 r25 r30 r04 r31 r18 res-pois 0 25 25
Runeword146 Tradition 1 scep r01 r09 r04 r08 res-pois 0 25 25
Runeword147 Treachery 1 mele r29 r18 r26 res-pois 0 25 25
Runeword148 Trust 1 helm r11 r02 r32 res-pois 0 25 25
Runeword149 Truth 1 swor r19 r22 r27 r26 r04 r17 res-pois 0 25 25
Runeword150 Unbending Will 1 tors r09 r32 r07 r07 res-pois 0 25 25
Runeword151 Valor 1 mele r04 r01 r28 res-pois 0 25 25
Runeword152 Vengeance 1 weap r06 r11 r01 res-pois 0 25 25
Runeword153 Venom 1 weap r09 r12 r23 res-pois 0 25 25
Runeword154 Victory 1 mele r07 r04 r02 r01 res-pois 0 25 25
Runeword155 Voice 1 helm r03 r06 res-pois 0 25 25
Runeword156 Void 1 mele r11 r01 r31 r08 r21 res-pois 0 25 25
Runeword157 War 1 weap r25 r11 r04 r03 r04 res-pois 0 25 25
Runeword158 Water 1 mele r05 r27 r33 r16 res-pois 0 25 25
Runeword159 Wealth 1 tors r07 r21 r01 res-pois 0 25 25
Runeword160 Whisper 1 mele r14 r03 r01 res-pois 0 25 25
Runeword161 White 1 wand r17 r06 r02 res-pois 0 25 25
Runeword162 Wind 1 mele r29 r01 res-pois 0 25 25
Runeword163 Wings of Hope 1 mele r10 r03 r17 r03 r08 res-pois 0 25 25
Runeword164 Wisdom 1 staf r08 r31 r08 r18 r01 res-pois 0 25 25
Runeword165 Woe 1 mele r03 r04 r06 r09 r14 res-pois 0 25 25
Runeword166 Wonder 1 wand r04 r12 r24 res-pois 0 25 25
Runeword167 Wrath 1 mele r08 r05 r28 r15 r01 res-pois 0 25 25
Runeword168 Youth 1 tors r08 r15 r03 r17 r21 res-pois 0 25 25
Runeword169 Zephyr 1 miss r07 r06 res-pois 0 25 25

34
txt/SetItems.txt Normal file
View File

@ -0,0 +1,34 @@
Name version level NumItems transform transformcolor Item1 Item1 Suffix Item1 Rarity Item1 Add Item1 Lvlreq Item1 cost mult Item1 cost add I1Code1 I1Param1 I1Min1 I1Max1 I1Code2 I1Param2 I1Min2 I1Max2 I1CodeA I1ParamA I1MinA I1MaxA I1CodeB I1ParamB I1MinB I1MaxB I1CodeC I1ParamC I1MinC I1MaxC I1CodeD I1ParamD I1MinD I1MaxD I1CodeE I1ParamE I1MinE I1MaxE Item2 Item2 Suffix Item2 Rarity Item2 Add Item2 LvlReq Item2 cost mult Item2 cost add I2Code1 I2Param1 I2Min1 I2Max1 I2Code2 I2Param2 I2Min2 I2Max2 I2CodeA I2ParamA I2MinA I2MaxA I2CodeB I2ParamB I2MinB I2MaxB I2CodeC I2ParamC I2MinC I2MaxC I2CodeD I2ParamD I2MinD I2MaxD I2CodeE I2ParamE I2MinE I2MaxE Item3 Item3 Suffix Item3 Rarity Item3 Add Item3 Lvlreq Item3 cost mult Item3 cost add I3Code1 I3Param1 I3Min1 I3Max1 I3Code2 I3Param2 I3Min2 I3Max2 I3CodeA I3ParamA I3MinA I3MaxA I3CodeB I3ParamB I3MinB I3MaxB I3CodeC I3ParamC I3MinC I3MaxC I3CodeD I3ParamD I3MinD I3MaxD I3CodeE I3ParamE I3MinE I3MaxE Item4 Item4 Suffix Item4 Rarity Item4 Add Item4 Lvlreq Item4 cost mult Item4 cost add I4Code1 I4Param1 I4Min1 I4Max1 I4Code2 I4Param2 I4Min2 I4Max2 I4CodeA I4ParamA I4MinA I4MaxA I4CodeB I4ParamB I4MinB I4MaxB I4CodeC I4ParamC I4MinC I4MaxC I4CodeD I4ParamD I4MinD I4MaxD I4CodeE I4ParamE I4MinE I4MaxE Item5 Item5 Suffix Item5 Rarity Item5 Add Item5 Lvlreq Item5 cost mult Item5 cost add I5Code1 I5Param1 I5Min1 I5Max1 I5Code2 I5Param2 I5Min2 I5Max2 I5CodeA I5ParamA I5MinA I5MaxA I5CodeB I5ParamB I5MinB I5MaxB I5CodeC I5ParamC I5MinC I5MaxC I5CodeD I5ParamD I5MinD I5MaxD I5CodeE I5ParamE I5MinE I5MaxE Item6 Item6 Suffix Item6 Rarity Item6 Add Item6 Lvlreq Item6 cost add I6Code1 I6Param1 I6Min1 I6Max1 I6Code2 I6Param2 I6Min2 I6Max2 I6CodeA I6ParamA I6MinA I6MaxA I6CodeB I6ParamB I6MinB I6MaxB I6CodeC I6ParamC I6MinC I6MaxC I6CodeD I6ParamD I6MinD I6MaxD I6CodeE I6ParamE I6MinE I6MaxE PCode2 PParam2 PMin2 PMax2 PCode3 PParam3 PMin3 PMax3 PCode4 PParam4 PMin4 PMax4 PCode5 PParam5 PMin5 PMax5 FCode1 FParam1 FMin1 FMax1 FCode2 FParam2 FMin2 FMax2 FCode3 FParam3 FMin3 FMax3 FCode4 FParam4 FMin4 FMax4 FCode5 FParam5 FMin5 FMax5 FCode6 FParam6 FMin6 FMax6
Civerb's Vestments 0 13 3 1 13 lrg Civerb's Ward 7 1 9 5 2500 ac 0 15 15 block 0 15 15 mana 0 21 22 res-pois 0 25 26 amu Civerb's Icon 7 2 9 5 2500 regen-mana 0 40 40 regen 0 4 4 res-cold 0 25 25 ac 0 25 25 gsc Civerb's Cudgel 7 0 9 5 2500 att 0 75 75 dmg-max 0 17 23 dmg/lvl 8 res-fire 0 15 15 str 0 15 15 dmg-undead 0 200 200 res-ltng 0 25 25
Hsarus' Defense 0 4 3 1 8 mbt Hsarus' Iron Heel 7 2 3 5 2500 res-fire 0 25 25 move2 0 20 20 att/lvl 20 buc Hsarus' Iron Fist 7 2 3 5 2500 red-dmg 0 2 2 str 0 10 10 ac/lvl 20 mbl Hsarus' Iron Stay 7 2 3 5 2500 res-cold 0 20 20 hp 0 20 20 ac/lvl 20 thorns 5 5 dmg-max 0 5 5 nofreeze 0 1 1 res-ltng 0 25 25
Cleglaw's Brace 0 6 3 1 7 lsd Cleglaw's Tooth 7 2 4 5 2500 att% 0 30 30 deadly 0 50 50 dmg/lvl 10 sml Cleglaw's Claw 7 2 4 5 2500 ac 0 17 17 res-pois-len 0 75 75 res-all 0 15 15 mgl Cleglaw's Pincers 7 2 4 5 2500 knock 0 1 1 slow 0 25 25 att/lvl 20 ac 50 50 ac 0 50 50 manasteal 0 6 6 crush 0 35 35 swing2 20 20
Iratha's Finery 0 21 4 1 2 amu Iratha's Collar 7 2 15 5 2500 res-pois 0 30 30 res-pois-len 0 75 75 res-all 15 15 tgl Iratha's Cuff 7 2 15 5 2500 res-cold 0 30 30 half-freeze 0 1 1 swing2 0 20 20 crn Iratha's Coil 7 2 15 5 2500 res-fire 0 30 30 res-ltng 0 30 30 ac/lvl 16 tbl Iratha's Cord 7 2 15 5 2500 ac 0 25 25 dmg-min 0 5 5 dex 10 10 ac 50 50 move2 20 20 res-all 0 20 20 res-fire-max 0 10 10 res-cold-max 0 10 10 res-ltng-max 0 10 10 res-pois-max 0 10 10 dex 0 15 15
Isenhart's Armory 0 11 4 1 15 bsd Isenhart's Lightbrand 7 2 8 5 2500 dmg-min 0 10 10 swing2 0 20 20 att/lvl 10 gts Isenhart's Parry 7 2 8 5 2500 ac 0 40 40 light-thorns 0 4 4 res-all 0 8 8 brs Isenhart's Case 7 2 8 5 2500 ac 0 40 40 red-mag 0 2 2 ac/lvl 16 fhl Isenhart's Horns 7 2 8 5 2500 dex 0 6 6 red-dmg 0 2 2 res-all 8 8 str 10 10 dex 10 10 lifesteal 0 5 5 res-all 0 10 10 att% 0 35 35 block 30 30 move2 20 20
Vidala's Rig 0 19 4 1 4 lbb Vidala's Barb 7 2 14 5 2500 ltng-min 0 1 1 ltng-max 0 20 20 att/lvl 16 tbt Vidala's Fetlock 7 2 14 5 2500 stam 0 150 150 move3 0 30 30 res-all 0 8 8 lea Vidala's Ambush 7 2 14 5 2500 ac 0 50 50 dex 0 11 11 res-fire 24 24 ac/lvl 20 amu Vidala's Snare 7 2 14 5 2500 hp 0 15 15 res-cold 0 20 20 mag% 50 50 att 75 75 dex 15 15 dmg-cold 50 15 20 freeze 32 25 25 pierce 0 50 50 str 10 10
Milabrega's Regalia 0 23 4 1 5 kit Milabrega's Orb 7 2 17 5 2500 mag% 0 20 20 ac 0 25 25 hp 50 50 ac% 50 50 wsp Milabrega's Rod 7 0 17 5 2500 pal 0 1 1 dmg% 0 50 50 light 0 2 2 crn Milabrega's Diadem 7 2 17 5 2500 hp 0 15 15 mana 0 15 15 res-cold 40 40 aar Milabrega's Robe 7 2 17 5 2500 thorns 0 3 3 red-dmg 0 2 2 ac% 100 100 att 75 75 att 125 125 lifesteal 0 8 8 pal 0 2 2 manasteal 0 10 10 res-pois 0 15 15
Cathan's Traps 0 15 5 1 11 bst Cathan's Rule 7 2 11 5 2500 fireskill 0 1 1 fire-max 0 10 10 mana 50 50 res-all 10 10 chn Cathan's Mesh 7 2 11 5 2500 ac 0 15 15 ease 0 -50 -50 thorns 0 5 5 res-fire 30 30 msk Cathan's Visage 7 2 11 5 2500 mana 0 20 20 res-cold 0 25 25 ac/lvl 16 amu Cathan's Sigil 7 2 11 5 2500 balance1 0 10 10 light-thorns 0 5 5 att 50 50 mag% 25 25 rin Cathan's Seal 7 2 11 5 2500 lifesteal 0 6 6 red-dmg 0 2 2 str 10 10 dmg-fire 15 20 res-ltng 25 25 att 0 60 60 red-mag 0 3 3 res-all 0 25 25 cast1 0 10 10 mana 0 20 20
Tancred's Battlegear 0 27 5 1 16 mpi Tancred's Crowbill 7 2 20 5 2500 att 0 75 75 dmg% 0 80 80 mana 20 20 swing2 20 20 ful Tancred's Spine 7 2 20 5 2500 hp 0 40 40 str 0 15 15 ac/lvl 16 lbt Tancred's Hobnails 7 2 20 5 2500 regen-stam 0 25 25 dex 0 10 10 move3 30 30 str 10 10 amu Tancred's Weird 7 2 20 5 2500 red-dmg 0 2 2 red-mag 0 1 1 mag% 78 78 att 60 60 bhm Tancred's Skull 7 2 20 5 2500 dmg% 0 10 10 att 0 40 40 res-all 10 10 dmg-ltng 15 15 lifesteal 5 5 gold% 0 75 75 res-all 0 10 10 slow 0 35 35 manasteal 0 5 5
Sigon's Complete Steel 0 9 6 1 0 ghm Sigon's Visor 7 2 6 5 2500 mana 0 30 30 ac 0 25 25 att/lvl 16 gth Sigon's Shelter 7 2 6 5 2500 ac% 0 25 25 res-ltng 0 30 30 thorns 0 20 20 hgl Sigon's Gage 7 2 6 5 2500 str 0 10 10 att 0 20 20 swing3 30 30 hbt Sigon's Sabot 7 2 6 5 2500 move2 0 20 20 res-cold 0 40 40 att 50 50 mag% 50 50 hbl Sigon's Wrap 7 2 6 5 2500 res-fire 0 20 20 hp 0 20 20 ac/lvl 16 tow Sigon's Guard 7 2 6 60000 allskills 0 1 1 block 0 20 20 lifesteal 10 10 ac 100 100 res-fire 0 12 12 thorns 0 12 12 red-dmg 0 7 7 fire-max 0 24 24 mana 20 20
Infernal Tools 0 7 3 1 13 cap Infernal Cranium 7 2 5 5 2500 res-all 0 10 10 dmg-to-mana 0 20 20 ac/lvl 16 gwn Infernal Torch 7 2 5 5 2500 dmg-min 0 8 8 nec 0 1 1 att/lvl 20 tbl Infernal Sign 7 2 5 5 2500 ac 0 25 25 hp 0 20 20 res-pois 25 25 half-freeze 1 1 dmg-pois 80 25 25 mana 10 10 att% 0 20 20 nec 0 1 1 openwounds 0 20 20 manasteal 6 6
Berserker's Garb 0 5 3 1 8 hlm Berserker's Headgear 7 2 3 5 2500 ac 0 15 15 res-fire 0 25 25 att/lvl 16 spl Berserker's Hauberk 7 2 3 5 2500 red-mag 0 2 2 bar 0 1 1 ac/lvl 24 2ax Berserker's Hatchet 7 2 3 5 2500 att% 0 30 30 manasteal 0 5 5 dmg% 50 50 hp 50 50 res-pois-len 0 75 75 pois-min 0 16 16 pois-max 0 32 32 pois-len 0 75 75 ac 75 75
Death's Disguise 0 8 3 1 7 lgl Death's Hand 7 2 6 5 2500 res-pois 0 50 50 res-pois-len 0 75 75 swing3 30 30 lbl Death's Guard 7 2 6 5 2500 ac 0 20 20 nofreeze 0 1 1 res-all 0 15 15 wsd Death's Touch 7 2 6 5 2500 dmg% 0 25 25 lifesteal 0 4 4 dmg-cold 75 25 75 lifesteal 8 8 att% 0 40 40 dmg-min 0 10 10 res-all 0 25 25
Angelical Raiment 0 17 4 1 1 sbr Angelic Sickle 7 2 12 5 2500 att 0 75 75 dmg-undead 0 250 250 dmg% 75 75 swing3 30 30 rng Angelic Mantle 7 2 12 5 2500 red-dmg 0 3 3 ac% 0 40 40 ac 0 150 150 res-fire 50 50 rin Angelic Halo 3 2 12 5 2500 regen 0 6 6 hp 0 20 20 att/lvl 24 mag% 50 50 amu Angelic Wings 7 2 12 5 2500 light 0 3 3 dmg-to-mana 0 20 20 hp 75 75 allskills 1 1 dex 10 10 mana 50 50 res-all 0 25 25 half-freeze 0 1 1 mag% 0 40 40 regen-mana 8 8
Arctic Gear 0 3 4 1 15 swb Arctic Horn 7 2 2 5 2500 att% 0 20 20 dmg% 0 50 50 att/lvl 16 dmg-cold 75 20 30 qui Arctic Furs 7 2 2 5 2500 ac% 0 275 325 res-all 0 10 10 ac/lvl 24 res-cold 15 15 vbl Arctic Binding 7 2 2 5 2500 res-cold 0 40 40 ac 0 30 30 mag% 40 40 res-cold 10 10 tgl Arctic Mitts 7 2 3 5 2500 hp 0 20 20 swing1 0 10 10 att 50 50 dex 10 10 str 5 5 hp 50 50 cold-min 0 6 6 cold-max 0 14 14 cold-len 0 100 100 nofreeze 0 1 1
Arcanna's Tricks 0 20 4 1 4 amu Arcanna's Sign 1 2 15 5 2500 mana 0 15 15 regen-mana 0 20 20 mag% 50 50 res-fire 20 20 wst Arcanna's Deathwand 7 2 15 5 2500 sor 0 1 1 deadly 0 25 25 mana 0 50 50 regen-mana 5 5 skp Arcanna's Head 7 2 15 5 2500 regen 0 4 4 thorns 0 2 2 ac/lvl 24 res-ltng 15 15 ltp Arcanna's Flesh 7 2 15 5 2500 light 0 2 2 red-dmg 0 3 3 ac 100 100 enr 10 10 mana 25 25 hp 50 50 cast3 0 20 20 manasteal 0 5 5 mana 0 25 25
Expansion
Natalya's Odium 100 22 4 1 3 xh9 Natalya's Totem 7 0 59 5 5000 ac 0 135 135 dex 0 25 25 str 0 10 10 res-all 0 10 10 red-mag 0 3 3 7qr Natalya's Mark 7 0 79 5 5000 swing3 0 40 40 dmg% 0 200 200 ignore-ac 0 1 1 dmg-cold 100 50 50 dmg-fire 0 12 17 dmg-undead 200 200 dmg-demon 200 200 ucl Natalya's Shadow 7 0 73 5 5000 ac 0 150 150 hp/lvl 8 skilltab 19 2 2 res-pois-len 75 75 res-pois 25 25 xmb Natalya's Soul 7 0 25 5 5000 ac 0 75 75 move3 0 40 40 regen-stam/lvl 2 dur 50 50 res-cold 15 15 res-ltng 15 15 red-mag 0 15 15 ac 0 200 200 res-pois 20 20 res-all 50 50 allskills 3 3 ac 150 150 lifesteal 16 16 manasteal 16 16
Aldur's Watchtower 100 29 4 1 19 dr8 Aldur's Stony Gaze 7 0 36 5 5000 ac 90 90 regen-mana 17 17 light 0 5 5 balance3 24 24 res-cold 25 25 uul Aldur's Deception 7 0 76 5 5000 ac 300 300 skilltab 16 1 1 str 20 20 dex 15 15 res-ltng 0 30 30 ease -50 -50 skilltab 17 1 1 9mt Aldur's Gauntlet 7 0 42 5 5000 dmg% 200 200 dmg-ltng 50 75 lifesteal 10 10 swing3 30 30 dmg-demon 200 200 manasteal 5 5 xtb Aldur's Advance 7 0 45 5 5000 indestruct 1 1 regen-stam 0 32 32 hp 50 50 dmg-to-mana 10 10 move3 40 40 stam 180 180 att 100 100 mag% 50 50 lifesteal 10 10 res-all 50 50 allskills 3 3 ac 150 150 manasteal 10 10 mana 150 150
Immortal King 100 37 6 1 2 ba5 Immortal King's Will 7 47 5 5000 ac 125 125 gold% 37 37 skilltab 14 2 2 light 4 4 mag% 25 40 uar Immortal King's Soul Cage 7 76 5 5000 ac 400 400 gethit-skill 52 5 5 skilltab 12 2 2 res-pois 50 50 zhb Immortal King's Detail 7 0 29 5 5000 ac 36 36 res-fire 28 28 res-ltng 31 31 str 25 25 xhg Immortal King's Forge 7 30 5 5000 ac 65 65 str 20 20 dex 20 20 gethit-skill 38 12 4 xhb Immortal King's Pillar 7 31 5 5000 ac 75 75 move3 40 40 att 110 110 hp 44 44 7m7 Immortal King's Stone Crusher 7 76 75000 indestruct 1 1 swing3 40 40 dmg-demon 200 200 dmg-undead 200 200 crush 35 40 dmg% 200 200 att 50 50 att 75 75 att 125 125 att 200 200 res-all 50 50 allskills 3 3 hp 150 150 red-mag 10 10
Tal Rasha's Wrappings 100 26 5 1 18 zmb Tal Rasha's Fire-Spun Cloth 7 53 5 5000 ease -20 -20 mana 30 30 dex 20 20 dmg-to-mana 37 37 mag% 10 15 amu Tal Rasha's Adjudication 1 67 5 5000 res-ltng 33 33 sor 2 2 hp 50 50 dmg-ltng 3 32 mana 42 42 oba Tal Rasha's Lidless Eye 7 65 5 5000 hp 57 57 mana 77 77 enr 10 10 cast3 20 20 skill 65 1 1 skill 61 2 2 skill 63 1 1 uth Tal Rasha's Howling Wind 7 71 5 5000 ease -60 -60 red-mag 15 15 mag% 88 88 res-cold 40 40 res-fire 40 40 res-ltng 40 40 ac 400 400 xsk Tal Rasha's Horadric Crest 7 66 5 5000 mana 30 30 hp 60 60 ac 45 45 res-all 15 15 lifesteal 10 10 manasteal 10 10 regen 10 10 mag% 65 65 balance3 24 24 res-all 50 50 allskills 3 3 ac 150 150 hp 150 150 ac-miss 50 50
Griswold's Legacy 100 44 4 1 16 urn Griswold's Valor 7 69 5 5000 ac% 50 75 abs-cold/lvl 2 2 sock 2 ease -40 -40 mag% 20 30 res-all 5 5 xar Griswold's Heart 7 45 5 5000 ac 500 500 skilltab 11 2 2 sock 3 str 20 20 ease -40 -40 7ws Griswolds's Redemption 7 53 5 5000 dmg% 175 175 swing3 40 40 dmg-undead 200 200 ease -20 -20 sock 3 paf Griswold's Honor 7 68 5 5000 ac 108 108 sock 3 block3 65 65 str 20 20 dex 30 30 res-all 50 50 allskills 3 3 att 200 200 hp 150 150
Trang-Oul's Avatar 100 32 5 1 14 uh9 Trang-Oul's Guise 7 65 5 5000 ac 80 100 balance3 24 24 thorns 20 20 mana 150 150 regen 5 5 xul Trang-Oul's Scales 7 49 5 5000 ease -40 -40 ac-miss 100 100 res-pois 40 40 skilltab 8 2 2 move3 40 40 ac% 150 150 ne9 Trang-Oul's Wing 7 54 5 5000 ac 125 125 str 25 25 dex 15 15 res-fire 38 45 block 30 30 res-pois 40 40 skilltab 7 2 2 xmg Trang-Oul's Claws 7 45 5 5000 ac 30 30 cast3 20 20 res-cold 30 30 skilltab 6 2 2 utc Trang-Oul's Girth 7 47 5 5000 ac 75 100 stam 30 30 regen 5 5 hp 66 66 nofreeze 1 1 ease -40 -40 mana 25 50 regen-mana 15 15 regen-mana 15 15 regen-mana 15 15 res-all 50 50 allskills 3 3 mana 100 100 ac 200 200 regen 5 5 regen-mana 15 15
M'avina's Battle Hymn 100 21 5 1 0 ci3 M'avina's True Sight 7 59 5 5000 ac 150 150 regen 10 10 swing2 30 30 mana 25 25 uld M'avina's Embrace 7 70 5 5000 gethit-skill 55 10 3 ease -30 -30 red-mag 5 12 skilltab 1 2 2 ac/lvl 32 ac 350 350 xtg M'avina's Icy Clutch 7 32 5 5000 ac 45 50 dmg-cold 150 6 18 half-freeze 1 1 gold% 56 56 str 10 10 dex 15 15 zvb M'avina's Tenet 7 45 5 5000 ac 50 50 move3 40 40 manasteal 10 15 light 5 5 amc M'avina's Caster 7 70 5 5000 dmg% 188 188 swing3 40 40 gethit-skill 48 10 3 att 50 50 str 20 20 dex 30 30 res-all 50 50 allskills 3 3 ac 100 100 att 100 100 mag% 100 100
The Disciple 100 39 5 1 4 amu Telling of Beads 1 30 5 5000 res-pois 35 50 allskills 1 1 res-cold 18 18 thorns 8 10 ulg Laying of Hands 7 63 5 5000 ac 25 25 swing2 20 20 abs-fire% 50 50 dmg-demon 350 350 hit-skill 101 10 3 xlb Rite of Passage 7 29 5 5000 ac 25 25 move3 30 30 half-freeze 1 1 stam 15 25 uui Spiritual Custodian 7 43 5 5000 ac 305 415 res-fire 24 24 gethit-skill 48 25 3 dmg-pois 50 125 175 umc Credendum 7 65 5 5000 ac 50 50 str 10 10 dex 10 10 res-all 15 15 ac 150 150 dmg-pois 75 75 75 str 10 10 dex 10 10 res-all 50 50 allskills 2 2 mana 100 100
Heaven's Brethren 100 55 4 0 7ma Dangoon's Teaching 7 68 5 5000 dmg/lvl 12 swing3 40 40 hit-skill 44 10 3 dmg-fire 20 30 uts Heaven's Taebaek 7 81 5 5000 ac 50 50 mana 0 100 100 res-ltng 30 30 thorns 30 30 indestruct 1 1 block 25 25 block3 30 30 xrs Haemosu's Adament 7 44 5 5000 ac 500 500 ac-miss 35 35 hp 75 75 ac-hth 40 40 ease -20 -20 uhm Ondal's Almighty 7 69 5 5000 ac 50 50 ease -40 -40 hit-skill 72 10 3 str 10 10 dex 15 15 balance3 24 24 regen-stam 50 50 regen 20 20 dmg-fire 30 30 res-all 50 50 allskills 2 2 nofreeze 1 1 light 5 5
Orphan's Call 100 41 4 1 1 xhm Guillaume's Face 7 34 5 5000 ac% 120 120 balance3 30 30 crush 35 35 deadly 15 15 str 15 15 ztb Wilhelm's Pride 7 42 5 5000 ac% 75 75 manasteal 5 5 res-cold 10 10 lifesteal 5 5 xvg Magnus' Skin 7 37 5 5000 ac% 50 50 res-fire 15 15 swing2 20 20 light 3 3 att 100 100 xml Wihtstan's Guard 7 29 5 5000 ac% 175 175 block3 40 40 block 55 55 half-freeze 1 1 light 5 5 hp 35 35 thorns 5 5 ac 100 100 hp 50 50 dex 10 10 str 20 20 ac 100 100 res-all 15 15 mag% 0 80 80
Hwanin's Majesty 100 28 4 1 xrn Hwanin's Splendor 7 45 5 5000 regen 20 20 red-mag 10 10 res-cold 37 37 ac% 100 100 xcl Hwanin's Refuge 7 30 5 5000 ac 200 200 res-pois 27 27 hp 100 100 gethit-skill 42 10 3 mbl Hwanin's Seal 7 0 35 5 5000 dmg-ltng 3 33 noheal 1 1 ac/lvl 12 dmg-to-mana 12 12 9vo Hwanin's Justice 7 28 5 5000 att 330 330 indestruct 1 1 hit-skill 45 10 3 swing3 40 40 dmg% 200 200 dmg-ltng 5 25 ac 100 100 ac 200 200 allskills 2 2 lifesteal 20 20 move3 30 30 res-all 30 30
Sazabi's Grand Tribute 100 34 3 1 5 7ls Sazabi's Cobalt Redeemer 7 73 5 5000 dmg% 150 150 dmg-cold 50 25 35 swing3 40 40 dmg-demon 318 318 indestruct 1 1 dex 15 15 str 5 5 upl Sazabi's Ghost Liberator 7 67 5 5000 ac 400 400 balance3 30 30 str 25 25 att-demon 300 300 hp 50 75 xhl Sazabi's Mental Sheath 7 43 5 5000 ac 100 100 allskills 1 1 res-fire 15 20 res-ltng 15 20 move3 40 40 res-all 30 30 lifesteal 15 15 hp% 27 27
Bul-Kathos' Children 100 50 2 1 11 7gd Bul-Kathos' Sacred Charge 7 61 5 5000 crush 35 35 res-all 20 20 swing2 20 20 knock 1 1 dmg% 200 200 7wd Bul-Kathos' Tribal Guardian 7 54 5 5000 res-fire 50 50 dmg-pois 50 255 255 swing2 20 20 str 20 20 dmg% 200 200 dmg-fire 20 20 allskills 2 2 att 200 200 ac 25 25 dmg-undead 200 200 dmg-demon 200 200
Cow King's Leathers 100 20 3 0 xap Cow King's Horns 7 25 5 5000 ac 75 75 half-freeze 1 1 dmg-to-mana 35 35 thorns 10 10 stu Cow King's Hide 7 18 5 5000 res-all 18 18 ac% 60 60 hp 30 30 gethit-skill 53 18 5 vbt Cow King's Hoofs 7 13 5 5000 ac 25 35 move3 30 30 mag% 25 25 dex 20 20 dmg-fire 25 35 res-pois 25 25 stam 100 100 str 20 20 gold% 100 100 mag% 100 100 gethit-skill 42 25 5 swing3 30 30
Naj's Ancient Set 100 43 3 0 6cs Naj's Puzzler 7 0 78 5 5000 enr 0 35 35 dmg% 0 150 150 swing3 30 30 cast3 0 30 30 dmg-ltng 6 45 mana 70 70 allskills 1 1 ult Naj's Light Plate 7 0 71 5 5000 ease -60 -60 hp 65 65 res-all 25 25 dmg-to-mana 45 45 allskills 1 1 ac 300 300 ci0 Naj's Circlet 7 28 5 5000 ac 75 75 dmg-fire 25 35 Light 5 5 str 15 15 gethit-skill 53 12 5 ac 175 175 allskills 1 1 regen 10 10 dex 15 15 res-all 50 50 str 20 20 mana 100 100
McAuley's Folly 100 20 4 1 17 cap McAuley's Paragon 3 0 25 5 5000 mag% 35 35 thorns 8 8 ac/lvl 8 vbt McAuley's Riprap 7 0 20 5 5000 move3 40 40 att 100 100 str 5 5 dex 10 10 vgl McAuley's Taboo 7 28 5 5000 ac 20 25 swing2 20 20 hp 40 40 dmg-pois 75 30 36 bwn McAuley's Superstition 7 25 5 5000 dmg% 2 75 75 mana 25 25 manasteal 8 8 cast3 20 20 dmg-cold 50 25 75 ac 50 50 att 75 75 allskills 1 1 mag% 50 50 mana 50 50 lifesteal 4 4

34
txt/Sets.txt Normal file
View File

@ -0,0 +1,34 @@
index name version level PCode2a PParam2a PMin2a PMax2a PCode2b PParam2b PMin2b PMax2b PCode3a PParam3a PMin3a PMax3a PCode3b PParam3b PMin3b PMax3b PCode4a PParam4a PMin4a PMax4a PCode4b PParam4b PMin4b PMax4b PCode5a PParam5a PMin5a PMax5a PCode5b PParam5b PMin5b PMax5b FCode1 FParam1 FMin1 FMax1 FCode2 FParam2 FMin2 FMax2 FCode3 FParam3 FMin3 FMax3 FCode4 FParam4 FMin4 FMax4 FCode5 FParam5 FMin5 FMax5 FCode6 FParam6 FMin6 FMax6 FCode7 FParam7 FMin7 FMax7 FCode8 FParam8 FMin8 FMax8 *eol
Civerb's Vestments Civerb's Vestments 0 13 res-fire 15 15 str 0 15 15 dmg-undead 0 200 200 res-ltng 0 25 25 0
Hsarus' Defense Hsarus' Defense 0 4 thorns 5 5 dmg-max 0 5 5 nofreeze 0 1 1 res-ltng 0 25 25 0
Cleglaw's Brace Cleglaw's Brace 0 6 ac 50 50 ac 0 50 50 manasteal 0 6 6 crush 0 35 35 swing2 20 20 0
Iratha's Finery Iratha's Finery 0 21 ac 50 50 move2 20 20 res-all 0 20 20 res-fire-max 0 10 10 res-cold-max 0 10 10 res-ltng-max 0 10 10 res-pois-max 0 10 10 dex 0 15 15 0
Isenhart's Armory Isenhart's Armory 0 11 str 10 10 dex 10 10 lifesteal 0 5 5 res-all 0 10 10 att% 0 35 35 block 30 30 move2 20 20 0
Vidala's Rig Vidala's Rig 0 19 att 75 75 dex 15 15 dmg-cold 50 15 20 freeze 0 1 1 pierce 0 50 50 str 10 10 0
Milabrega's Regalia Milabrega's Regalia 0 23 att 75 75 att 125 125 lifesteal 0 8 8 pal 0 2 2 manasteal 0 10 10 res-pois 0 15 15 0
Cathan's Traps Cathan's Traps 0 15 dmg-fire 15 20 res-ltng 25 25 att 0 60 60 red-mag 0 3 3 res-all 0 25 25 cast1 0 10 10 mana 0 20 20 0
Tancred's Battlegear Tancred's Battlegear 0 27 dmg-ltng 15 15 lifesteal 5 5 gold% 0 75 75 res-all 0 10 10 slow 0 35 35 manasteal 0 5 5 0
Sigon's Complete Steel Sigon's Complete Steel 0 9 lifesteal 10 10 ac 100 100 res-fire 0 12 12 thorns 0 12 12 red-dmg 0 7 7 fire-max 0 24 24 mana 20 20 0
Infernal Tools Infernal Tools 0 7 dmg-pois 80 25 25 mana 10 10 att% 0 20 20 nec 0 1 1 openwounds 0 20 20 manasteal 6 6 0
Berserker's Garb Berserker's Garb 0 5 hp 50 50 res-pois-len 0 75 75 pois-min 0 16 16 pois-max 0 32 32 pois-len 0 75 75 ac 75 75 0
Death's Disguise Death's Disguise 0 8 lifesteal 8 8 att% 0 40 40 dmg-min 0 10 10 res-all 0 25 25 0
Angelical Raiment Angelical Raiment 0 17 dex 10 10 mana 50 50 res-all 0 25 25 half-freeze 0 1 1 mag% 0 40 40 regen-mana 8 8 0
Arctic Gear Arctic Gear 0 3 str 5 5 hp 50 50 cold-min 0 6 6 cold-max 0 14 14 cold-len 0 100 100 nofreeze 0 1 1 0
Arcanna's Tricks Arcanna's Tricks 0 20 mana 25 25 hp 50 50 cast3 0 20 20 manasteal 0 5 5 mana 0 25 25 0
Expansion
Natalya's Odium Natalya's Odium 100 22 red-mag 15 15 ac 200 200 res-pois 20 20 res-all 50 50 ass 3 3 ac 150 150 lifesteal 14 14 manasteal 14 14 red-dmg% 30 30 fade 1 1 0
Aldur's Watchtower Aldur's Watchtower 100 29 att% 150 150 mag% 50 50 lifesteal 10 10 res-all 50 50 dru 3 3 ac 150 150 manasteal 10 10 mana 150 150 dmg% 350 350 state fullsetgeneric 1 1 0
Immortal King Immortal King 100 37 att 50 50 att 75 75 att 125 125 att 200 200 res-all 50 50 bar 3 3 hp 150 150 red-mag 10 10 state fullsetgeneric 1 1 0
Tal Rasha's Wrappings Tal Rasha's Wrappings 100 26 regen 10 10 mag% 65 65 balance2 25 25 res-all 50 50 sor 3 3 ac 150 150 hp 150 150 ac-miss 50 50 state fullsetgeneric 1 1 0
Griswold's Legacy Griswold's Legacy 100 44 str 20 20 dex 30 30 res-all 50 50 pal 3 3 att 200 200 hp 150 150 state fullsetgeneric 1 1 balance2 30 30 0
Trang-Oul's Avatar Trang-Oul's Avatar 100 32 regen-mana 15 15 oskill Fire Ball 18 18 regen-mana 15 15 oskill Fire Wall 13 13 regen-mana 15 15 oskill Meteor 10 10 res-all 50 50 nec 3 3 mana 100 100 ac 200 200 state monsterset 1 1 regen-mana 15 15 oskill Fire Mastery 3 3 lifesteal 20 20 0
M'avina's Battle Hymn M'avina's Battle Hymn 100 21 str 20 20 dex 30 30 res-all 50 50 ama 3 3 ac 100 100 att 100 100 mag% 100 100 state fullsetgeneric 1 1 0
The Disciple The Disciple 100 39 ac 150 150 dmg-pois 75 75 75 str 10 10 dex 10 10 res-all 50 50 allskills 2 2 mana 100 100 0
Heaven's Brethren Heaven's Brethren 100 55 regen-stam 50 50 regen 20 20 dmg-fire 30 30 res-all 50 50 allskills 2 2 nofreeze 1 1 light 5 5 0
Orphan's Call Orphan's Call 100 41 hp 35 35 thorns 5 5 ac 100 100 hp 50 50 dex 10 10 str 20 20 ac 100 100 res-all 15 15 mag% 0 80 80 0
Hwanin's Majesty Hwanin's Majesty 100 28 ac 100 100 ac 200 200 allskills 2 2 lifesteal 20 20 move3 30 30 res-all 30 30 0
Sazabi's Grand Tribute Sazabi's Grand Tribute 100 34 move3 40 40 res-all 30 30 lifesteal 15 15 hp% 27 27 0
Bul-Kathos' Children Bul-Kathos' Children 100 50 dmg-fire 20 20 allskills 2 2 att 200 200 ac 25 25 dmg-undead 200 200 dmg-demon 200 200 0
Cow King's Leathers Cow King's Leathers 100 20 res-pois 25 25 stam 100 100 str 20 20 gold% 100 100 mag% 100 100 gethit-skill 42 25 5 swing3 30 30 0
Naj's Ancient Set Naj's Ancient Set 100 43 ac 175 175 allskills 1 1 regen 10 10 dex 15 15 res-all 50 50 str 20 20 mana 100 100 0
McAuley's Folly McAuley's Folly 100 20 ac 50 50 att 75 75 allskills 1 1 mag% 50 50 mana 50 50 lifesteal 4 4 0

24
txt/Shrines.txt Normal file
View File

@ -0,0 +1,24 @@
Shrine Type Shrine name Effect Code Arg0 Arg1 Duration in frames reset time in minutes rarity view name niftyphrase effectclass LevelMin
None None none 0 100 100 0 2 1 blah blah 0 0
Recharge Refill fills health and mana 1 100 100 0 2 1 blah blah 4 1
Recharge Health Boost doubles current health (even over maximum) (OUT) 2 200 400 0 5 2 blah blah 2 1
Recharge Mana Boost "doubles current mana ("") (OUT)" 3 200 400 0 5 2 blah blah 3 1
Recharge Health Exchange "takes 1/2 health, gives 5 times that number to current mana (OUT)" 4 50 500 0 0 3 blah blah 2 2
Recharge Mana Exchange "takes 1/2 mana, gives 5 times that number to current health (OUT)" 5 50 500 0 0 3 blah blah 3 2
Booster Armor Boost +100% AC 6 100 1 2400 5 2 blah blah 4 5
Booster Combat Boost "+200% to hit, +200% min and max damage" 7 200 200 2400 5 2 blah blah 4 8
Booster Resist Fire Boost +75% to resist fire 8 75 0 3600 5 2 blah blah 4 5
Booster Resist Cold Boost +75% to resist cold 9 75 0 3600 5 2 blah blah 4 26
Booster Resist Lightning Boost +75% to resist lightning 10 75 0 3600 5 2 blah blah 4 32
Booster Resist Poison Boost "+75% to resist poison, and poison duration = 0" 11 75 0 3600 5 2 blah blah 4 21
Booster Skill Boost +2 to all skill levels 12 2 0 2400 5 2 blah blah 4 1
Booster Recharge Boost +400% mana recharge rate 13 400 0 2400 5 2 blah blah 4 1
Booster Stamina Boost Unlimited stamina 14 200 0 4800 5 3 blah blah 4 1
Booster Experience Boost 50% more experience per kill 15 0 0 3600 0 3 blah blah 4 1
Magic Shrine of Enirhs reverses character name (OUT) 16 0 0 0 0 3 blah blah 1 1
Magic Portal to unknown opens a portal to town 17 0 0 0 0 2 blah blah 1 3
Magic Gem Upgrade "upgrades a random gem (up to one before max level if available), or gives a random gem" 18 0 0 0 0 3 blah blah 1 4
Magic Storm Shrine "all players and monsters lose 1/2 current HP, shoots fireballs" 19 50 2000 0 0 2 blah blah 1 1
Magic Warping Shrine nearest monster becomes unique 20 0 0 0 0 3 blah blah 1 3
Magic Exploding Shrine drops 5-10 exploding potions & tosses out exploding potions in random directions/distances 21 5 10 0 0 3 blah blah 1 1
Magic Poison Shrine drops 5-10 poison gas potions & creates ring of poison gas around shrine 22 5 10 0 0 3 blah blah 1 1

74
txt/SkillCalc.txt Normal file
View File

@ -0,0 +1,74 @@
code *desc
ln12 a+lvl*b
dm12 ((110*lvl) * (b-a))/(100 * (lvl+6)) + a
ln34 a+lvl*b
dm34 ((110*lvl) * (b-a))/(100 * (lvl+6)) + a
ln56 a+lvl*b
dm56 ((110*lvl) * (b-a))/(100 * (lvl+6)) + a
ln78 a+lvl*b
dm78 ((110*lvl) * (b-a))/(100 * (lvl+6)) + a
par1 a
par2 a
par3 a
par4 a
par5 a
par6 a
par7 a
par8 a
lvl skill level
edmn elemental damage min
edmx elemental damage max
edln elemental damage len
toht to hit
mana mana cost
mps mana per second calc
math mastery: to hit
madm mastery: damage
macr mastery: critical
m1en "desc missile 1, min elemental dmg"
m1ex "desc missile 1, max elemental dmg"
m1el "desc missile 1, elemental length"
m2en "desc missile 2, min elemental dmg"
m2ex "desc missile 2, max elemental dmg"
m2el "desc missile 2, elemental length"
m3en "desc missile 3, min elemental dmg"
m3ex "desc missile 3, max elemental dmg"
m3el "desc missile 3, elemental length"
m1rn "desc missile 1, range"
m2rn "desc missile 2, range"
m3rn "desc missile 3, range"
edns "elemental damage min, 256ths"
edxs "elemental damage max, 256ths"
ulvl unit level
blvl base skill level
usmc "mana cost, 256ths"
m1eo "desc missile 1, min elem dmg, 256ths"
m1ey "desc missile 1, max elem dmg, 256ths"
m2eo "desc missile 2, min elem dmg, 256ths"
m2ey "desc missile 2, max elem dmg, 256ths"
me3o "desc missile 3, min elem dmg, 256ths"
me3y "desc missile 3, max elem dmg, 256ths"
enma elemental damage min + mastery
exma elemental damage max + mastery
edma elemental duration + mastery
enms "elemental damage min, 256ths + mastery"
exms "elemental damage max, 256ths + mastery"
len auralen field
clc1 calc1 field
clc2 calc2 field
clc3 calc3 field
clc4 calc4 field
rng aurarange field
ast1 aurastat field
ast2 aurastat field
ast3 aurastat field
ast4 aurastat field
ast5 aurastat field
ast6 aurastat field
pst1 passivestat field
pst2 passivestat field
pst3 passivestat field
pst4 passivestat field
pst5 passivestat field
pets petmax field
skpt skill points field

222
txt/SkillDesc.txt Normal file
View File

@ -0,0 +1,222 @@
skilldesc SkillPage SkillRow SkillColumn ListRow ListPool IconCel str name str short str long str alt str mana descdam ddam calc1 ddam calc2 p1dmelem p1dmmin p1dmmax p2dmelem p2dmmin p2dmmax p3dmelem p3dmmin p3dmmax descatt descmissile1 descmissile2 descmissile3 descline1 desctexta1 desctextb1 desccalca1 desccalcb1 descline2 desctexta2 desctextb2 desccalca2 desccalcb2 descline3 desctexta3 desctextb3 desccalca3 desccalcb3 descline4 desctexta4 desctextb4 desccalca4 desccalcb4 descline5 desctexta5 desctextb5 desccalca5 desccalcb5 descline6 desctexta6 desctextb6 desccalca6 desccalcb6 dsc2line1 dsc2texta1 dsc2textb1 dsc2calca1 dsc2calcb1 dsc2line2 dsc2texta2 dsc2textb2 dsc2calca2 dsc2calcb2 dsc2line3 dsc2texta3 dsc2textb3 dsc2calca3 dsc2calcb3 dsc2line4 dsc2texta4 dsc2textb4 dsc2calca4 dsc2calcb4 dsc3line1 dsc3texta1 dsc3textb1 dsc3calca1 dsc3calcb1 dsc3line2 dsc3texta2 dsc3textb2 dsc3calca2 dsc3calcb2 dsc3line3 dsc3texta3 dsc3textb3 dsc3calca3 dsc3calcb3 dsc3line4 dsc3texta4 dsc3textb4 dsc3calca4 dsc3calcb4 dsc3line5 dsc3texta5 dsc3textb5 dsc3calca5 dsc3calcb5 dsc3line6 dsc3texta6 dsc3textb6 dsc3calca6 dsc3calcb6 dsc3line7 dsc3texta7 dsc3textb7 dsc3calca7 dsc3calcb7 eol
attack 0 0 0 0 0 2 skillname0 skillsd0 skillld0 skillan0 1 2 0
kick 0 0 0 -1 0 0 skillname1 skillsd1 skillld1 skillan1 2 0
throw 0 0 0 0 0 6 skillname2 skillsd2 skillld2 skillan2 3 3 0
unsummon 0 0 0 0 0 4 skillname3 skillsd3 skillld3 skillan3 0
left hand throw 0 0 0 0 0 12 skillname4 skillsd4 skillld4 skillan4 4 4 0
left hand swing 0 0 0 -1 0 10 skillname5 skillsd5 skillld5 skillan5 0
magic arrow 1 1 2 1 0 0 skillname6 skillsd6 skillld6 skillan6 StrSkill3 5 1 1 10 11 10 9 8 66 Convphy2elemalt 1+(lvl-1)*1 0
fire arrow 1 1 3 1 0 2 skillname7 skillsd7 skillxld7 skillan7 StrSkill3 5 1 1 11 10 9 8 66 Convphy2magalt 3+(lvl-1)*2 40 Sksyn skillname7 2 63 skillname16 Firedplev par8 0
inner sight 2 1 1 2 0 4 skillname8 skillsd8 skillld8 skillan8 StrSkill3 1 19 StrSkill18 ln56 5 StrSkill25 -edmn 12 StrSkill20 ln34 0
critical strike 2 1 3 2 0 6 skillname9 skillsd9 skillld9 skillan9 StrSkill3 7 StrSkill24 dm12 0
jab 3 1 1 3 0 8 skillname10 skillsd10 skillld10 skillan10 StrSkill3 7 ln34 1 1 2 StrSkill4 StrSkill23 ln34 2 StrSkill22 StrSkill23 toht 25 StrSkill61 0
cold arrow 1 2 1 1 0 10 skillname11 skillsd11 skillxld11 skillan11 StrSkill3 5 1 1 11 10 9 8 66 Convphy2magalt 3+(lvl-1)*2 40 Sksyn skillname11 2 63 skillname21 Colddplev par8 0
multiple shot 1 2 2 1 0 12 skillname12 skillsd12 skillld12 skillan12 StrSkill3 5 1 1 7 StrSkill9 "min(24,ln12)" 73 WeapDamsk 3 4 0
dodge 2 2 2 2 0 14 skillname13 skillsd13 skillld13 skillan13 StrSkill3 7 StrSkill24 dm12 0
power strike 3 2 2 3 0 16 skillname14 skillsd14 skillld14 skillan14 StrSkill3 5 1 1 11 10 9 8 40 Sksyn skillname14 2 63 skillname20 Ltngdplev par8 63 skillname24 Ltngdplev par8 63 skillname34 Ltngdplev par8 63 skillname35 Ltngdplev par8 0
poison javelin 3 2 3 3 0 18 skillname15 skillsd15 skillld15 skillan15 StrSkill3 22 1 1 14 40 Sksyn skillname15 2 63 skillname25 Poisdplev par8 0
exploding arrow 1 3 3 1 0 20 skillname16 skillsd16 skillxld16 skillan16 StrSkill3 6 1 1 11 10 9 8 40 Sksyn skillname16 2 63 skillname7 Firedplev par8 0
slow missiles 2 3 1 2 0 22 skillname17 skillsd17 skillld17 skillan17 StrSkill3 1 19 StrSkill18 ln56 3 StrSkill67 StrSkill23 ln12 12 StrSkill20 ln34 0
avoid 2 3 2 2 0 24 skillname18 skillsd18 skillld18 skillan18 StrSkill3 7 StrSkill24 dm12 0
impale 3 3 1 3 0 26 skillname19 skillsd19 skillld19 skillan19 StrSkill3 7 ln12 1 1 3 StrSkill65 StrSkill23 par6-dm34 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 ln12 0
lightning bolt 3 3 3 3 0 28 skillname20 skillsd20 skillld20 skillan20 StrSkill3 21 1 11 10 9 8 66 Convphy2magalt 100 73 WeapDamsk 3 4 40 Sksyn skillname20 2 63 skillname14 Ltngdplev par8 63 skillname24 Ltngdplev par8 63 skillname34 Ltngdplev par8 63 skillname35 Ltngdplev par8 0
ice arrow 1 4 1 1 0 30 skillname21 skillsd21 skillxld21 skillan21 StrSkill3 5 1 1 12 StrSkill62 edln 10 9 8 40 Sksyn skillname21 2 63 skillname11 Colddplev par8 63 skillname31 FrezLenplev par7 0
guided arrow 1 4 2 1 0 32 skillname22 skillsd22 skillld22 skillan22 StrSkill3 7 ln34 1 2 StrSkill4 StrSkill23 ln34 0
penetrate 2 4 3 2 0 34 skillname23 skillsd23 skillld23 skillan23 StrSkill3 2 StrSkill10 StrSkill23 ln12 0
charged strike 3 4 2 3 0 36 skillname24 skillsd24 skillld24 skillan24 StrSkill3 17 1 10 9 3 StrSkill72 StrSkill73 par1 + lvl/par2 40 Sksyn skillname24 2 63 skillname14 Ltngdplev par8 63 skillname20 Ltngdplev par8 63 skillname34 Ltngdplev par8 63 skillname35 Ltngdplev par8 0
plague javelin 3 4 3 3 0 38 skillname25 skillsd25 skillld25 skillan25 StrSkill3 22 1 1 14 2 StrSkill22 StrSkill23 toht 40 Sksyn skillname25 2 63 skillname15 Poisdplev par8 0
strafe 1 5 2 1 0 40 skillname26 skillsd26 skillld26 skillan26 StrSkill3 7 ln12 1 1 2 StrSkill4 StrSkill23 ln12 3 StrSkill86 StrSkill87 "min(lvl+par3,par4)" 73 WeapDamsk 3 4 0
immolation arrow 1 5 3 1 0 42 skillname27 skillsd27 skillxld27 skillan27 StrSkill3 6 1 immolationfire 1 22 23 StrSkill82 24 StrSkill83 2 StrSkill22 StrSkill23 toht 40 Sksyn skillname27 2 63 skillname7 AFDImm 5 63 skillname16 Firedplev par8 0
dopplezon 2 5 1 2 0 44 skillname28 skillsd28 skillld28 skillan28 StrSkill3 1 12 StrSkill20 ln12 2 StrSkill42 StrSkill23 lvl*par4 0
evade 2 5 2 2 0 46 skillname29 skillsd29 skillld29 skillan29 StrSkill3 7 StrSkill24 dm12 0
fend 3 5 1 3 0 48 skillname30 skillsd30 skillld30 skillan30 StrSkill3 7 ln34 1 1 2 StrSkill4 StrSkill23 ln34 2 StrSkill30 StrSkill23 toht 0
freezing arrow 1 6 1 1 0 50 skillname31 skillsd31 skillxld31 skillan31 StrSkill3 6 1 1 12 StrSkill62 edln 10 2 StrSkill22 StrSkill23 toht 19 StrSkill18 par1 40 Sksyn skillname31 2 63 skillname11 Colddplev par8 63 skillname21 FrezLenplev par7 0
valkyrie 2 6 1 2 0 52 skillname32 skillsd32 skillld32 skillan32 StrSkill3 1 2 StrSkill31 StrSkill23 (lvl-1)*par3 4 StrSkill22 toht 2 StrSkill4 StrSkill23 par2*(lvl-1) 13 par1 * (lvl - 1) + skill('Dopplezon'.blvl) * par8 40 Sksyn skillname32 2 63 skillname28 Hpplev par8 67 skillname23 AttRateplev 40 25 skillname9 25 skillname13 25 skillname18 25 skillname29 0
pierce 2 6 3 2 0 54 skillname33 skillsd33 skillld33 skillan33 StrSkill3 7 StrSkill24 dm12 0
lightning strike 3 6 2 3 0 56 skillname34 skillsd34 skillld34 skillan34 StrSkill3 17 1 10 7 StrSkill11 ln34 40 Sksyn skillname34 2 63 skillname14 Ltngdplev par8 63 skillname20 Ltngdplev par8 63 skillname24 Ltngdplev par8 63 skillname35 Ltngdplev par8 0
lightning fury 3 6 3 3 0 58 skillname35 skillsd35 skillld35 skillan35 StrSkill3 22 1 10 3 StrSkill72 StrSkill27 ln12 40 Sksyn skillname35 2 63 skillname14 Ltngdplev par8 63 skillname20 Ltngdplev par8 63 skillname24 Ltngdplev par8 63 skillname34 Ltngdplev par8 0
fire bolt 1 1 2 1 0 0 skillname36 skillsd36 skillld36 skillan36 StrSkill3 5 11 10 9 8 1 40 Sksyn skillname36 2 63 skillname47 Firedplev par8 63 skillname56 Firedplev par8 0
warmth 1 1 3 1 0 2 skillname37 skillsd37 skillld37 skillan37 StrSkill3 7 StrSkill23 ln12 0
charged bolt 2 1 2 2 0 4 skillname38 skillsd38 skillld38 skillan38 StrSkill3 5 1 7 StrSkill27 "min(24,ln12)" 10 40 Sksyn skillname38 2 63 skillname49 Ltngdplev par8 0
ice bolt 3 1 2 3 0 6 skillname39 skillsd39 skillld39 skillan39 StrSkill3 5 1 11 10 9 8 40 Sksyn skillname39 2 63 skillname44 Colddplev par8 63 skillname45 Colddplev par8 63 skillname55 Colddplev par8 63 skillname59 Colddplev par8 63 skillname64 Colddplev par8 0
frozen armor 3 1 3 3 0 8 skillname40 skillsd40 skillld40 skillan40 StrSkill3 1 12 StrSkill62 ln56*(100+((skill('Shiver Armor'.blvl)+skill('Chilling Armor'.blvl))*par8))/100 12 StrSkill20 ln34+(skill('Shiver Armor'.blvl)+skill('Chilling Armor'.blvl))*par7 3 StrSkill31 StrSkill23 ln12 40 Sksyn skillname40 2 67 skillname50 Secplev2 (par7 + 12)/25 63 skillname50 FrezLenplev par8 67 skillname60 Secplev2 (par7 + 12)/25 63 skillname60 FrezLenplev par8 0
inferno 1 2 1 1 0 10 skillname41 skillsd41 skillld41 skillan41 StrSkill3 8 3 StrSkill3 StrSkill34 mps 19 StrSkill56 ln12/4 11 26 5 StrSkill115 par3 40 Sksyn skillname41 2 63 skillname37 Firedplev par8 0
static field 2 2 1 2 0 12 skillname42 skillsd42 skillxld42 skillan42 StrSkill3 1 19 StrSkill18 ln12 3 StrSkill33 StrSkill23 par4 0
telekinesis 2 2 3 2 0 14 skillname43 skillsd43 skillld43 skillan43 StrSkill3 5 1 10 0
frost nova 3 2 1 3 0 16 skillname44 skillsd44 skillld44 skillan44 StrSkill3 5 1 11 10 40 Sksyn skillname44 2 63 skillname59 Colddplev par8 63 skillname64 Colddplev par8 0
ice blast 3 2 2 3 0 18 skillname45 skillsd45 skillld45 skillan45 StrSkill3 5 1 12 StrSkill62 edln 10 40 Sksyn skillname45 2 63 skillname39 Colddplev par8 63 skillname55 FrezLenplev par7 63 skillname59 Colddplev par8 63 skillname64 Colddplev par8 0
blaze 1 3 1 1 0 20 skillname46 skillsd46 skillld46 skillan46 StrSkill3 9 blaze 1 27 23 StrSkill82 0
fire ball 1 3 2 1 0 22 skillname47 skillsd47 skillld47 skillan47 StrSkill3 5 fireball 1 11 10 9 8 28 40 Sksyn skillname47 2 63 skillname36 Firedplev par8 63 skillname56 Firedplev par8 0
nova 2 3 1 2 0 24 skillname48 skillsd48 skillld48 skillan48 StrSkill3 5 1 10 0
lightning 2 3 2 2 0 26 skillname49 skillsd49 skillld49 skillan49 StrSkill3 5 1 11 10 9 8 40 Sksyn skillname49 2 63 skillname38 Ltngdplev par8 63 skillname48 Ltngdplev par8 63 skillname53 Ltngdplev par8 0
shiver armor 3 3 3 3 0 28 skillname50 skillsd50 skillld50 skillan50 StrSkill3 5 1 11 10 3 StrSkill31 StrSkill23 ln12 12 StrSkill20 ln34+(skill('Frozen Armor'.blvl)+skill('Chilling Armor'.blvl))*par7 40 Sksyn skillname50 2 67 skillname40 Secplev2 (par7 + 12)/25 63 skillname40 Colddplev par8 67 skillname60 Secplev2 (par7 + 12)/25 63 skillname60 Colddplev par8 0
fire wall 1 4 1 1 0 30 skillname51 skillsd51 skillld51 skillan51 StrSkill3 9 firewallmaker 1 29 27 30 StrSkill82 0
enchant 1 4 3 1 0 32 skillname52 skillsd52 skillld52 skillan52 StrSkill3 1 2 StrSkill30 StrSkill23 toht 10 12 StrSkill20 ln12 40 Sksyn skillname52 2 63 skillname37 Firedplev par8 0
chain lightning 2 4 2 2 0 34 skillname53 skillsd53 skillld53 skillan53 StrSkill3 5 1 10 7 StrSkill11 ln34/par5 40 Sksyn skillname53 2 63 skillname38 Ltngdplev par8 63 skillname48 Ltngdplev par8 63 skillname49 Ltngdplev par8 0
teleport 2 4 3 2 0 36 skillname54 skillsd54 skillld54 skillan54 StrSkill3 1 0
glacial spike 3 4 2 3 0 38 skillname55 skillsd55 skillld55 skillan55 StrSkill3 5 1 12 StrSkill62 ln34 * (100 + skill('Blizzard'.blvl) * par7) / 100 10 19 StrSkill18 ln12 40 Sksyn skillname55 2 63 skillname39 Colddplev par8 63 skillname45 Colddplev par8 63 skillname59 FrezLenplev par7 63 skillname64 Colddplev par8 0
meteor 1 5 2 1 0 40 skillname56 skillsd56 skillld56 skillan56 StrSkill3 5 meteorfire 1 22 19 StrSkill18 ln12 10 40 Sksyn skillname56 2 63 skillname36 Firedplev par8 63 skillname47 Firedplev par8 63 skillname41 AFDImm 3 0
thunder storm 2 5 1 2 0 42 skillname57 skillsd57 skillld57 skillan57 StrSkill3 5 1 10 12 StrSkill20 ln12 0
energy shield 2 5 3 2 0 44 skillname58 skillsd58 skillld58 skillan58 StrSkill3 1 3 StrSkill40 StrSkill23 "min(edmn,95)" 12 StrSkill20 ln12 40 Sksyn skillname58 2 18 skillname43 0
blizzard 3 5 1 3 0 46 skillname59 skillsd59 skillld59 skillan59 StrSkill3 5 blizzardcenter 1 23 StrSkill20 10 40 Sksyn skillname59 2 63 skillname39 Colddplev par8 63 skillname45 Colddplev par8 63 skillname55 Colddplev par8 0
chilling armor 3 5 3 3 0 48 skillname60 skillsd60 skillld60 skillan60 StrSkill3 5 1 10 12 StrSkill20 ln34+(skill('Frozen Armor'.blvl)+skill('Shiver Armor'.blvl))*par7 3 StrSkill31 StrSkill23 ln12 40 Sksyn skillname60 2 67 skillname40 Secplev2 (par7 + 12)/25 63 skillname40 Colddplev par8 67 skillname50 Secplev2 (par7 + 12)/25 63 skillname50 Colddplev par8 0
fire mastery 1 6 2 1 0 50 skillsname61 skillsd61 skillld61 skillan61 StrSkill3 2 StrSkill5 StrSkill23 ln12 0
hydra 1 6 3 1 0 52 skillname62 skillsd62 skillld62 skillan62 StrSkill3 5 1 24 StrSkill113 12 StrSkill20 ln12 40 Sksyn skillname62 2 63 skillname36 Firedplev par8 63 skillname47 Firedplev par8 0
lightning mastery 2 6 2 2 0 54 skillname63 skillxsd63 skillxld63 skillan63 StrSkill3 2 StrSkill7 StrSkill23 ln12 0
frozen orb 3 6 1 3 0 56 skillname64 skillsd64 skillld64 skillan64 StrSkill3 5 1 11 10 9 8 40 Sksyn skillname64 2 63 skillname39 Colddplev par8 0
cold mastery 3 6 2 3 0 58 skillname65 skillsd65 skillld65 skillan65 StrSkill3 7 StrSkill23 ln12 0
amplify damage 1 1 2 1 0 0 skillname66 skillsd66 skillld66 skillan66 StrSkill3 1 12 StrSkill20 ln34 19 StrSkill18 ln12 2 StrSkill37 StrSkill23 par5 0
teeth 2 1 2 2 0 2 skillname67 skillsd67 skillld67 skillan67 StrSkill3 5 1 10 7 StrSkill28 "min(ln12,24)" 40 Sksyn skillname67 2 63 skillname78 Magdplev par8 63 skillname84 Magdplev par8 63 skillname88 Magdplev par8 63 skillname93 Magdplev par8 0
bone armor 2 1 3 2 0 4 skillname68 skillsd68 skillld68 skillan68 StrSkill3 1 3 StrSkill40 StrSkill41 (ln12 + (skill('Bone Wall'.blvl) + skill('Bone Prison'.blvl)) * par8) 40 Sksyn skillname68 2 67 skillname78 Damabsplev par8 67 skillname88 Damabsplev par8 0
skeleton mastery 3 1 1 3 0 6 skillname69 skillsd69 skillld69 skillan69 StrSkill3 32 StrSkill97 StrSkill4 lvl*par4 32 StrSkill97 StrSkill42 lvl*par3 33 StrSkill96 StrSkill43 70 StrSkill96 StrSkill42 lvl*par1 70 StrSkill95 StrSkill4 lvl*par2 70 StrSkill95 StrSkill42 lvl*par1 0
raise skeleton 3 1 3 3 0 8 skillname70 skillsd70 skillld70 skillan70 StrSkill3 1 36 StrSkill94 StrSkill44 (lvl < 4) ?lvl:(2+lvl/3) 13 (lvl < 4) ? 0 : (par2 * (lvl - 3)) skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par1) 5 StrSkill21 5+(lvl+skill('Skeleton Mastery'.lvl))*par5 5 StrSkill22 5+(lvl+skill('Skeleton Mastery'.lvl))*par4 2 StrSkill4 StrSkill23 ((lvl < 4) ? 0 : ((lvl-3)*par3)) 34 40 Sksyn skillname70 2 18 skillname69 18 skillname89 0
dim vision 1 2 1 1 0 10 skillname71 skillsd71 skillld71 skillan71 StrSkill3 1 31 StrSkill20 ln34 19 StrSkill18 ln12 0
weaken 1 2 3 1 0 12 skillname72 skillsd72 skillld72 skillan72 StrSkill3 1 12 StrSkill20 ln34 19 StrSkill18 ln12 3 StrSkill38 StrSkill23 -par5 0
poison dagger 2 2 1 2 0 14 skillname73 skillsd73 skillld73 skillan73 StrSkill3 5 1 1 2 StrSkill22 StrSkill23 toht 14 40 Sksyn skillname73 2 63 skillname83 Poisdplev par8 63 skillname92 Poisdplev par8 0
corpse explosion 2 2 2 2 0 16 skillname74 skillsd74 skillld74 skillan74 StrSkill3 1 37 StrSkill18 ln34 38 StrSkill4 StrSkill46 par1 par2 0
clay golem 3 2 2 3 0 18 skillname75 skillsd75 skillld75 skillan75 StrSkill3 1 3 Cgslow StrSkill23 dm34 4 StrSkill30 lvl*par8 39 13 (100+(par1 * (lvl - 1)))*(100+skill('Golem Mastery'.ln12) + (skill('BloodGolem'.blvl)*skill('BloodGolem'.par8)))/100-100 5 StrSkill21 100+skill('IronGolem'.lvl)*skill('IronGolem'.par8) 5 StrSkill22 40 + skill('Golem Mastery'.ln56) + (lvl*par8) 40 Sksyn skillname75 2 18 skillname79 18 skillname89 63 skillname85 Hpplev skill('BloodGolem'.par8) 67 skillname90 Defplev skill('IronGolem'.par8) 63 skillname94 Damplev skill('FireGolem'.par8) 0
iron maiden 1 3 2 1 0 20 skillname76 skillsd76 skillld76 skillan76 StrSkill3 1 19 StrSkill18 ln12 12 StrSkill20 ln34 7 StrSkill55 ln56 0
terror 1 3 3 1 0 22 skillname77 skillsd77 skillld77 skillan77 StrSkill3 1 12 StrSkill20 ln34 19 StrSkill18 ln12 0
bone wall 2 3 3 2 0 24 skillname78 skillsd78 skillld78 skillan78 StrSkill3 1 12 StrSkill20 par2 13 (par1 * (lvl-1)) + ((skill('Bone Armor'.blvl)+skill('Bone Prison'.blvl))*par8) 40 Sksyn skillname78 2 63 skillname68 Hpplev par8 63 skillname88 Hpplev par8 0
golem mastery 3 3 1 3 0 26 skillname79 skillsd79 skillld79 skillan79 StrSkill3 2 StrSkill89 StrSkill23 dm34 4 StrSkill30 ln56 2 StrSkill42 StrSkill23 lvl*par1 0
raise skeletal mage 3 3 3 3 0 28 skillname80 skillsd80 skillld80 skillan80 StrSkill3 1 36 StrSkill43a StrSkill44a (lvl < 4) ?lvl:(2+lvl/3) 5 StrSkill21 (lvl+skill('Skeleton Mastery'.lvl))*par5 13 skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par1) 40 Sksyn skillname80 2 18 skillname69 18 skillname89 0
confuse 1 4 1 1 0 30 skillname81 skillsd81 skillld81 skillan81 StrSkill3 1 31 StrSkill20 ln34 19 StrSkill18 ln12 0
life tap 1 4 2 1 0 32 skillname82 skillsd82 skillld82 skillan82 StrSkill3 1 12 StrSkill20 ln34 19 StrSkill18 ln12 3 StrSkill50 StrSkill79 ln56 0
poison explosion 2 4 1 2 0 34 skillname83 skillsd83 skillld83 skillan83 StrSkill3 5 1 14 40 Sksyn skillname83 2 63 skillname73 Poisdplev par8 63 skillname92 Poisdplev par8 0
bone spear 2 4 2 2 0 36 skillname84 skillsd84 skillld84 skillan84 StrSkill3 5 1 11 10 9 8 40 Sksyn skillname84 2 63 skillname67 Magdplev par8 63 skillname78 Magdplev par8 63 skillname88 Magdplev par8 63 skillname93 Magdplev par8 0
bloodgolem 3 4 2 3 0 38 skillname85 skillsd85 skillld85 skillan85 StrSkill3 1 39 3 StrSkill80 StrSkill81 dm12 5 StrSkill21 120+skill('IronGolem'.lvl)*skill('IronGolem'.par8) 5 StrSkill22 60 + skill('Golem Mastery'.ln56)+skill('Clay Golem'.blvl)*skill('Clay Golem'.par8) 13 skill('Golem Mastery'.ln12) 40 Sksyn skillname85 2 18 skillname79 18 skillname89 67 skillname75 AttRateplev skill('Clay Golem'.par8) 67 skillname90 Defplev skill('IronGolem'.par8) 63 skillname94 Damplev skill('FireGolem'.par8) 0
attract 1 5 1 1 0 40 skillname86 skillsd86 skillxld86 skillan86 StrSkill3 1 31 StrSkill20 ln34 19 StrSkill18 ln12 0
decrepify 1 5 3 1 0 42 skillname87 skillsd87 skillld87 skillan87 StrSkill3 1 12 StrSkill20 ln34 19 StrSkill18 ln12 0
bone prison 2 5 3 2 0 44 skillname88 skillsd88 skillld88 skillan88 StrSkill3 1 12 StrSkill20 par2 13 (par1 * (lvl-1)) + ((skill('Bone Armor'.blvl)+skill('Bone Wall'.blvl))*par8) 40 Sksyn skillname88 2 63 skillname68 Hpplev par8 63 skillname78 Hpplev par8 0
summon resist 3 5 1 3 0 46 skillname89 skillsd89 skillld89 skillan89 StrSkill3 2 StrSkill54 StrSkill23 dm12 0
irongolem 3 5 2 3 0 48 skillname90 skillsd90 skillld90 skillan90 StrSkill3 1 4 StrSkill31 lvl*par8 7 StrSkill55 ln12 18 StrSkill112 5 StrSkill21 140+lvl*par8 5 StrSkill22 80 + skill('Golem Mastery'.ln56)+skill('Clay Golem'.blvl)*skill('Clay Golem'.par8) 39 13 skill('Golem Mastery'.ln12) + (skill('BloodGolem'.blvl)*skill('BloodGolem'.par8)) 40 Sksyn skillname90 2 18 skillname79 18 skillname89 67 skillname75 AttRateplev skill('Clay Golem'.par8) 63 skillname85 Hpplev skill('BloodGolem'.par8) 63 skillname94 Damplev skill('FireGolem'.par8) 0
lower resist 1 6 2 1 0 50 skillname91 skillsd91 skillld91 skillan91 StrSkill3 1 3 StrSkill54 StrSkill23 -dm56 12 StrSkill20 ln34 19 StrSkill18 ln12 0
poison nova 2 6 1 2 0 52 skillname92 skillsd92 skillld92 skillan92 StrSkill3 5 1 14 40 Sksyn skillname92 2 63 skillname73 Poisdplev par8 63 skillname83 Poisdplev par8 0
bone spirit 2 6 2 2 0 54 skillname93 skillsd93 skillld93 skillan93 StrSkill3 5 1 10 40 Sksyn skillname93 2 63 skillname67 Magdplev par8 63 skillname78 Magdplev par8 63 skillname84 Magdplev par8 63 skillname88 Magdplev par8 0
firegolem 3 6 2 3 0 56 skillname94 skillsd94 skillld94 skillan94 StrSkill3 1 35 skillname102 sklvl('Holy Fire'.ln56.edmn) sklvl('Holy Fire'.ln56.edmx) 41 edmn+sklvl('Holy Fire'.ln56.edmn)*sklvl('Holy Fire'.ln56.par5) edmx+sklvl('Holy Fire'.ln56.edmx)*sklvl('Holy Fire'.ln56.par5) 3 StrSkill40 StrSkill103 dm12 5 StrSkill21 200+skill('IronGolem'.lvl)*skill('IronGolem'.par8) 5 StrSkill22 120 + skill('Golem Mastery'.ln56)+skill('Clay Golem'.blvl)*skill('Clay Golem'.par8) 13 skill('Golem Mastery'.ln12) + (skill('BloodGolem'.blvl)*skill('BloodGolem'.par8)) 40 Sksyn skillname94 2 18 skillname79 18 skillname89 67 skillname75 AttRateplev skill('Clay Golem'.par8) 63 skillname85 Hpplev skill('BloodGolem'.par8) 67 skillname90 Defplev skill('IronGolem'.par8) 0
revive 3 6 3 3 0 58 skillname95 skillsd95 skillld95 skillan95 StrSkill3 1 5 StrSkill97 lvl 2 StrSkill4 StrSkill23 skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par4) 2 StrSkill42 StrSkill23 par1 + skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par3) 12 StrSkill20 ln34 40 Sksyn skillname95 2 18 skillname69 18 skillname89 0
sacrifice 1 1 1 1 0 0 skillname96 skillsd96 skillld96 skillan96 StrSkill3 7 ln12+skill('Redemption'.blvl)*par8+skill('Fanaticism'.blvl)*par7 1 1 2 StrSkill4 StrSkill23 ln12+skill('Redemption'.blvl)*par8+skill('Fanaticism'.blvl)*par7 2 StrSkill10 StrSkill23 toht 68 StrSkill23 StrSkill47 par3 40 Sksyn skillname96 2 63 skillname124 Damplev par8 63 skillname122 Damplev par7 0
smite 1 1 3 1 0 2 skillname97 skillsd97 skillld97 skillan97 StrSkill3 10 1 12 StrSkill48 "min(250,ln12)" 2 StrSkill4 StrSkill23 ln34 0
might 2 1 1 2 0 4 skillname98 skillsd98 skillld98 skillan98 StrSkill3 2 StrSkill4 StrSkill23 ln34 19 StrSkill18 ln12 0
prayer 3 1 1 3 0 6 skillname99 skillsd99 skillld99 skillan99 StrSkill3 1 4 StrSkill50 edmn 19 StrSkill18 ln12 0
resist fire 3 1 3 3 0 8 skillname100 skillsd100 skillld100 skillan100 StrSkill3 2 StrSkill51 StrSkill23 dm34 19 StrSkill18 ln12 0
holy bolt 1 2 2 1 0 10 skillname101 skillsd101 skillld101 skillan101 StrSkill3 5 1 47 StrSkill50 ln12 * (100 + skill('Prayer'.blvl) * par7) / 100 ln34 * (100 + skill('Prayer'.blvl) * par7) / 100 10 40 Sksyn skillname101 2 63 skillname112 Magdplev par8 63 skillname121 Magdplev par8 63 skillname99 Healplev par7 0
holy fire 2 2 2 2 0 12 skillname102 skillsd102 skillld102 skillan102 StrSkill3 5 1 43 StrSkill5 edns edxs 38 StrSkill5 strEskilllighttoattack edns*par5/256 edxs*par5/256 19 StrSkill18 ln12 40 Sksyn skillname102 2 63 skillname100 Firedplev par8 63 skillname125 Firedplev par7 0
thorns 2 2 3 2 0 14 skillname103 skillsd103 skillld103 skillan103 StrSkill3 7 StrSkill55 ln34 19 StrSkill18 ln12 0
defiance 3 2 2 3 0 16 skillname104 skillsd104 skillld104 skillan104 StrSkill3 2 StrSkill31 StrSkill23 ln34 19 StrSkill18 ln12 0
resist cold 3 2 3 3 0 18 skillname105 skillsd105 skillld105 skillan105 StrSkill3 2 StrSkill52 StrSkill23 dm34 19 StrSkill18 ln12 0
zeal 1 3 1 1 0 20 skillname106 skillsd106 skillld106 skillan106 StrSkill3 7 ((lvl < 5) ? 0 : ((lvl-4) * par4) )+skill('Sacrifice'.blvl)*par8 2 1 7 StrSkill11 "min((par5 + lvl -1), par6)" 2 StrSkill4 StrSkill23 ((lvl < 5) ? 0 : ((lvl-4) * par4) )+skill('Sacrifice'.blvl)*par8 2 StrSkill30 StrSkill23 toht 40 Sksyn skillname106 2 63 skillname96 Damplev par8 0
charge 1 3 3 1 0 22 skillname107 skillsd107 skillld107 skillan107 StrSkill3 7 ln34+(skill('Vigor'.blvl)+skill('Might'.blvl))*par8 2 1 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 ln34+(skill('Vigor'.blvl)+skill('Might'.blvl))*par8 40 Sksyn skillname107 2 63 skillname115 Damplev par8 63 skillname98 Damplev par8 0
blessed aim 2 3 1 2 0 24 skillname108 skillsd108 skillld108 skillan108 StrSkill3 2 StrSkill22 StrSkill23 ln34 19 StrSkill18 ln12 0
cleansing 3 3 1 3 0 38 skillname109 skillsd109 skillld109 skillan109 StrSkill3 4 StrSkill50 skill('Prayer'.edmn) 3 StrSkill74 StrSkill23 dm34 19 StrSkill18 ln12 67 skillname99 Healplev2 skill('Prayer'.edmn) 40 Sksyn skillname109 2 18 skillname99 0
resist lightning 3 3 3 3 0 28 skillname110 skillsd110 skillld110 skillan110 StrSkill3 2 StrSkill53 StrSkill23 dm34 19 StrSkill18 ln12 0
vengeance 1 4 1 1 0 40 skillname111 skillsd111 skillld111 skillan111 StrSkill3 11 1 1 2 StrSkill22 StrSkill23 toht 2 StrSkill7 StrSkill23 ln12+skill('Resist Lightning'.blvl)*par8+skill('Salvation'.blvl)*par7 2 StrSkill6 StrSkill23 ln12+skill('Resist Cold'.blvl)*par8+skill('Salvation'.blvl)*par7 2 StrSkill5 StrSkill23 ln12+skill('Resist Fire'.blvl)*par8+skill('Salvation'.blvl)*par7 11 2 StrSkill30 StrSkill23 ln34 40 Sksyn skillname111 2 63 skillname100 Firedplev par8 63 skillname105 Colddplev par8 63 skillname110 Ltngdplev par8 63 skillname125 ElemDampLev par7 0
blessed hammer 1 4 2 1 0 32 skillname112 skillsd112 skillld112 skillan112 StrSkill3 12 1 48 40 Sksyn skillname112 2 63 skillname108 Magdplev par8 63 skillname115 Magdplev par8 0
concentration 2 4 1 2 0 34 skillname113 skillsd113 skillld113 skillan113 StrSkill3 1 2 StrSkill4 StrSkill23 ln34 3 StrSkill76 StrSkill23 par5 19 StrSkill18 ln12 0
holy freeze 2 4 2 2 0 36 skillname114 skillsd114 skillld114 skillan114 StrSkill3 5 3 StrSkill77 StrSkill23 dm34 10 38 StrSkill6 strEskilllighttoattack edns*par5/256 edxs*par5/256 19 StrSkill18 ln12 40 Sksyn skillname114 2 63 skillname105 Colddplev par8 63 skillname125 Colddplev par7 0
vigor 3 4 2 3 0 26 skillname115 skillsd115 skillld115 skillan115 StrSkill3 2 StrSkill69 StrSkill23 ln34 2 StrSkill71 StrSkill23 ln34 2 StrSkill70 StrSkill23 dm56 19 StrSkill18 ln12 0
conversion 1 5 1 1 0 30 skillname116 skillsd116 skillld116 skillan116 StrSkill3 5 1 1 12 StrSkill20 ln12 3 StrSkill99 StrSkill23 dm34 0
holy shield 1 5 3 1 0 42 skillname117 skillsd117 skillld117 skillan117 StrSkill3 1 2 StrSkill110 StrSkill23 dm56 2 StrSkill31 StrSkill23 ln34+skill('Defiance'.blvl)*par8 12 StrSkill20 ln12 49 ItemStats1o 40 Sksyn skillname117 2 63 skillname104 Defplev par8 0
holy shock 2 5 2 2 0 44 skillname118 skillsd118 skillxld118 skillan118 StrSkill3 5 10 38 StrSkill7 strEskilllighttoattack 1 edxs*par5/256 19 StrSkill18 ln12 40 Sksyn skillname118 2 63 skillname110 Ltngdplev par8 63 skillname125 Ltngdplev par7 0
sanctuary 2 5 3 2 0 46 skillname119 skillsd119 skillld119 skillan119 StrSkill3 5 10 67 ModStr4f StrSkill23 ln34 19 StrSkill18 ln12 40 Sksyn skillname119 2 63 skillname109 Magdplev par8 0
meditation 3 5 1 3 0 48 skillname120 skillsd120 skillld120 skillan120 StrSkill3 4 StrSkill50 skill('Prayer'.edmn) 2 StrSkill88 StrSkill23 ln34 19 StrSkill18 ln12 67 skillname99 Healplev2 skill('Prayer'.edmn) 40 Sksyn skillname120 2 18 skillname99 0
fist of the heavens 1 6 2 1 0 50 skillname121 skillsd121 skillld121 skillan121 StrSkill3 5 fistoftheheavensbolt 1 10 50 StrSkill91 40 Sksyn skillname121 2 63 skillname101 Hbdplev 15 63 skillname118 Ltngdplev par8 0
fanaticism 2 6 1 2 0 52 skillname122 skillxsd122 skillxld122 skillan122 StrSkill3 1 2 StrSkill22 StrSkill23 toht 2 StrSkill106 StrSkill23 dm34 2 FanYDam StrSkill23 ln56 2 PartDam StrSkill23 ln56/2 19 StrSkill18 ln12 0
conviction 2 6 3 2 0 56 skillname123 skillxsd123 skillld123 skillan123 StrSkill3 3 StrSkill90 StrSkill23 "-min(ln34,150)" 2 StrSkill21 StrSkill23 -dm56 19 StrSkill18 ln12 0
redemption 3 6 2 3 0 54 skillname124 skillsd124 skillxld124 skillan124 StrSkill3 3 StrSkill107 StrSkill108 ln56 3 StrSkill109 StrSkill23 dm34 19 StrSkill18 ln12 0
salvation 3 6 3 3 0 58 skillname125 skillsd125 skillld125 skillan125 StrSkill3 2 StrSkill54 StrSkill23 dm34 19 StrSkill18 ln12 0
bash 1 1 2 1 0 0 skillname126 skillsd126 skillld126 skillan126 StrSkill3 7 clc1 ln34 1 1 4 StrSkill4 ln34 2 StrSkill4 StrSkill23 clc1 2 StrSkill22 StrSkill23 toht 40 Sksyn skillname126 2 63 skillname139 Damplev par8 63 skillname144 AttRateplev par7 0
sword mastery 2 1 1 2 0 2 skillname127 skillsd127 skillld127 skillan127 StrSkill3 51 eskillincasemasteryX macr 2 StrSkill22 StrSkill23 math 2 StrSkill4 StrSkill23 madm 0
axe mastery 2 1 2 2 0 4 skillname128 skillsd128 skillld128 skillan128 StrSkill3 51 eskillincasemasteryX macr 2 StrSkill22 StrSkill23 math 2 StrSkill4 StrSkill23 madm 0
mace mastery 2 1 3 2 0 6 skillname129 skillsd129 skillld129 skillan129 StrSkill3 51 eskillincasemasteryX macr 2 StrSkill22 StrSkill23 math 2 StrSkill4 StrSkill23 madm 0
howl 3 1 1 3 0 8 skillname130 skillsd130 skillld130 skillan130 StrSkill3 1 12 StrSkill59 ln56 19 StrSkill58 ln34 0
find potion 3 1 3 3 0 10 skillname131 skillsd131 skillld131 skillan131 StrSkill3 1 7 StrSkill24 dm12 0
leap 1 2 1 1 0 12 skillname132 skillsd132 skillld132 skillan132 StrSkill3 1 19 StrSkill18 dm12 0
double swing 1 2 3 1 0 14 skillname133 skillsd133 skillld133 skillan133 StrSkill3 19 clc1 2 5 StrSkill3 usmc/128 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 clc1 40 Sksyn skillname133 2 63 skillname126 Damplev par8 0
pole arm mastery 2 2 1 2 0 16 skillname134 skillsd134 skillld134 skillan134 StrSkill3 51 eskillincasemasteryX macr 2 StrSkill22 StrSkill23 math 2 StrSkill4 StrSkill23 madm 0
throwing mastery 2 2 2 2 0 18 skillname135 skillsd135 skillld135 skillan135 StrSkill3 51 eskillincasemasteryX macr 2 StrSkill22 StrSkill23 math 2 StrSkill4 StrSkill23 madm 0
spear mastery 2 2 3 2 0 20 skillname136 skillsd136 skillld136 skillan136 StrSkill3 51 eskillincasemasteryX macr 2 StrSkill22 StrSkill23 math 2 StrSkill4 StrSkill23 madm 0
taunt 3 2 1 3 0 22 skillname137 skillsd137 skillld137 skillan137 StrSkill3 1 3 StrSkill57 StrSkill23 ln12 3 StrSkill38 StrSkill23 ln34 0
shout 3 2 2 3 0 24 skillname138 skillsd138 skillld138 skillan138 StrSkill3 1 12 StrSkill20 len 2 StrSkill21 StrSkill23 ln12 40 Sksyn skillname138 2 67 skillname149 Secplev2 par8/25 67 skillname155 Secplev2 par8/25 0
stun 1 3 2 1 0 26 skillname139 skillsd139 skillld139 skillan139 StrSkill3 7 clc1 1 1 12 StrSkill20 "min(250,edln)" 3 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 clc1 40 Sksyn skillname139 2 63 skillname126 Damplev par8 63 skillname144 AttRateplev par7 63 skillname154 Durateplev par6 0
double throw 1 3 3 1 0 28 skillname140 skillsd140 skillld140 skillan140 StrSkill3 13 2 5 StrSkill3 usmc/128 8 2 StrSkill4 StrSkill23 clc1 40 Sksyn skillname140 2 63 skillname133 Damplev par8 0
increased stamina 2 3 1 2 0 30 skillname141 skillsd141 skillld141 skillan141 StrSkill3 2 StrSkill71 StrSkill23 ln12 0
find item 3 3 3 3 0 32 skillname142 skillsd142 skillld142 skillan142 StrSkill3 1 7 StrSkill24 dm12 0
leap attack 1 4 1 1 0 34 skillname143 skillsd143 skillld143 skillan143 StrSkill3 7 clc1 2 1 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 clc1 40 Sksyn skillname143 2 63 skillname132 Damplev par8 0
concentrate 1 4 2 1 0 36 skillname144 skillsd144 skillld144 skillan144 StrSkill3 7 clc1 1 1 2 StrSkill4 StrSkill23 clc1 2 StrSkill22 StrSkill23 toht 2 StrSkill31 StrSkill23 ln34 2 StrSkill39 StrSkill23 clc4 40 Sksyn skillname144 2 63 skillname126 Damplev par8 63 skillname149 Damplev par7 63 skillname152 Magdplev 1 0
iron skin 2 4 3 2 0 38 skillname145 skillsd145 skillld145 skillan145 StrSkill3 6 StrSkill23 ln12 0
battle cry 3 4 1 3 0 40 skillname146 skillsd146 skillld146 skillan146 StrSkill3 1 3 StrSkill4 StrSkill23 ln56 3 StrSkill21 StrSkill23 ln34 12 StrSkill20 ln12 0
frenzy 1 5 3 1 0 42 skillname147 skillsd147 skillld147 skillan147 StrSkill3 19 clc1 2 5 StrSkill3 usmc/128 52 StrSkill89 StrSkill23 15*(par4-par3)/100+par3 dm34 52 StrSkill106 StrSkill23 15*(par6-par5)/100+par5 dm56 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 clc1 12 StrSkill20 par7 2 StrSkill39 StrSkill23 clc4 40 Sksyn skillname147 2 63 skillname133 Damplev par8 63 skillname137 Damplev par8 63 skillname152 Magdplev 1 0
increased speed 2 5 1 2 0 44 skillname148 skillsd148 skillld148 skillan148 StrSkill3 2 StrSkill89 StrSkill23 dm12 0
battle orders 3 5 2 3 0 46 skillname149 skillsd149 skillld149 skillan149 StrSkill3 1 3 StrSkill101 StrSkill23 ln34 3 StrSkill100 StrSkill23 ln34 3 StrSkill102 StrSkill23 ln34 12 StrSkill20 len 40 Sksyn skillname149 2 67 skillname138 Secplev2 par8/25 67 skillname155 Secplev2 par8/25 0
grim ward 3 5 3 3 0 48 skillname150 skillsd150 skillld150 skillan150 StrSkill3 1 19 StrSkill18 ln12 12 StrSkill20 ln34 0
whirlwind 1 6 1 1 0 50 skillname151 skillsd151 skillld151 skillan151 StrSkill3 1 clc1 1 1 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 clc1 0
berserk 1 6 2 1 0 52 skillname152 skillsd152 skillld152 skillan152 StrSkill3 7 clc1 2 1 12 StrSkill20 "par4-min(((110*lvl)/(lvl+6)*(par4-par3)/100),(par4-par3))" 2 StrSkill39 StrSkill23 clc1 2 StrSkill22 StrSkill23 toht 40 Sksyn skillname152 2 63 skillname130 Damplev par8 63 skillname138 Damplev par8 0
natural resistance 2 6 3 2 0 54 skillname153 skillsd153 skillld153 skillan153 StrSkill3 2 StrSkill90 StrSkill23 dm12 0
war cry 3 6 1 3 0 56 skillname154 skillsd154 skillld154 skillan154 StrSkill3 5 1 12 StrSkill48 "min(250,ln12)" 9 10 40 Sksyn skillname154 2 63 skillname130 Damplev par8 63 skillname137 Damplev par8 63 skillname146 Damplev par8 0
battle command 3 6 2 3 0 58 skillname155 skillsd155 skillld155 skillan155 StrSkill3 1 12 StrSkill20 len 40 Sksyn skillname155 2 67 skillname138 Secplev2 par8/25 67 skillname149 Secplev2 par8/25 0
scroll of identify 0 0 0 4 1 14 skillname217 skillsd217 skillld217 skillan217 53 isc 0
book of identify 0 0 0 4 0 14 skillname218 skillsd218 skillld218 skillan218 55 ibk 0
scroll of townportal 0 0 0 4 2 18 skillname219 skillsd219 skillld219 skillan219 54 tsc 0
book of townportal 0 0 0 4 0 18 skillname220 skillsd220 skillld220 skillan220 56 tbk 0
raven 1 1 2 1 0 0 Skillname222 Skillsd222 Skillld222 Skillan222 Eskillincaseraven 1 5 ESkillHawk "min(lvl,par2)" 7 StrSkill11 ln56 9 0
plague poppy 1 1 3 1 0 2 Skillname223 Skillsd223 Skillld223 Skillan223 StrSkill3 1 14 13 (lvl-1)*par3 0
wearwolf 2 1 1 2 0 20 Skillname224 Skillsd224 Skillld224 Skillan224 StrSkill3 2 StrSkill106 StrSkill23 dm34 2 StrSkill10 StrSkill23 toht 12 StrSkill20 1000+skill('shape shifting'.ln12) 2 StrSkill71 StrSkill23 par1 2 StrSkill42 StrSkill23 par2+skill('shape shifting'.ln34) 1 40 Sksyn Skillname224 2 18 Skillname225 0
shape shifting 2 1 2 2 0 52 Skillname225 Skillsd225 Skillld225 Skillan225 StrSkill3 57 StrSkill20 ln12 2 StrSkill100 StrSkill23 ln34 0
firestorm 3 1 1 3 0 32 Skillname226 Skillsd226 Skillld226 Skillan226 StrSkill3 9 27 1 40 Sksyn Skillname226 2 63 Skillname230 Firedplev par8 63 Skillname235 Firedplev par8 0
oak sage 1 2 1 1 0 16 Skillname227 Skillsd227 Skillld227 Skillan227 StrSkill3 1 19 StrSkill18 ln78 2 StrSkill42 StrSkill23 ln12 13 (lvl-1)*par1 0
summon spirit wolf 1 2 2 1 0 6 Skillname228 Skillsd228 Skillld228 Skillan228 StrSkill3 2 StrSkill21 StrSkill23 ln56 2 StrSkill22 StrSkill23 ln12 5 ESkillWolves "min(lvl,par3)" 9 skill('Summon Grizzly'.ln12) 13 (skill('summon fenris'.lvl) > 0) ? skill('summon fenris'.ln12) : 0 1 40 Sksyn Skillname228 2 25 Skillname238 25 Skillname248 0
wearbear 2 2 3 2 0 22 Skillname229 Skillsd229 Skillld229 Skillan229 StrSkill3 2 StrSkill21 StrSkill23 ln34 2 StrSkill4 StrSkill23 ln12 12 StrSkill20 1000+skill('shape shifting'.ln12) 2 StrSkill42 StrSkill23 par5 + skill('Shape Shifting'.ln34) 1 40 Sksyn Skillname229 2 18 Skillname225 0
molten boulder 3 2 1 3 0 34 Skillname230 Skillsd230 Skillld230 Skillan230 StrSkill3 5 moltenboulderfirepath 1 22 10 9 40 Sksyn Skillname230 2 63 Skillname245 Damplev par7 63 Skillname226 Firedplev par8 0
arctic blast 3 2 3 3 0 36 Skillname231 Skillsd231 Skillld231 Skillan231 StrSkill3 8 3 StrSkill3 StrSkill34 mps 19 StrSkill56 ln12/4 11 26 5 StrSkill115 par3 40 Sksyn Skillname231 2 63 Skillname251 Colddplev par8 63 Skillname236 Colddplev par8 0
cycle of life 1 3 3 1 0 8 Skillname232 Skillsd232 Skillld232 Skillan232 StrSkill3 1 3 StrSkill50 StrSkill23 dm56 13 (lvl-1)*par3 0
feral rage 2 3 1 2 0 54 Skillname233 Skillsd233 Skillld233 Skillan233 StrSkill3 7 ln56 2 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 ln56 52 EskillLifeSteal StrSkill23 4 par2 * lvl + 8 52 StrSkill89 StrSkill23 19 ((110*(par8+lvl/par7)) * (par4-par3))/(100 * ((par8+lvl/par7)+6)) + par3 12 StrSkill20 par1 1 0
maul 2 3 3 2 0 56 Skillname234 Skillsd234 Skillld234 Skillan234 StrSkill3 1 2 2 StrSkill22 StrSkill23 toht 52 StrSkill4 StrSkill23 par3 par3 * (lvl/par7+par8) 12 StrSkill48 dm56 12 StrSkill20 par4 1 0
eruption 3 3 1 3 0 38 Skillname235 Skillsd235 Skillld235 Skillan235 StrSkill3 5 erruption center 23 StrSkill20 10 1 40 Sksyn Skillname235 2 63 Skillname226 Firedplev par8 63 Skillname245 Firedplev par8 0
cyclone armor 3 3 3 3 0 40 Skillname236 Skillsd236 Skillld236 Skillan236 StrSkill3 1 3 StrSkill40 StrSkill41 (ln12*(100+(skill('Twister'.blvl)+skill('Tornado'.blvl)+skill('Hurricane'.blvl))*par8)/100) 40 Sksyn Skillname236 2 63 Skillname241 Damplev par8 63 Skillname246 Damplev par8 63 Skillname251 Damplev par8 0
heart of wolverine 1 4 1 1 0 10 Skillname237 Skillsd237 Skillld237 Skillan237 StrSkill3 1 19 StrSkill18 ln78 2 StrSkill22 StrSkill23 ln34 2 StrSkill4 StrSkill23 ln56 13 (lvl-1)*par1 0
summon fenris 1 4 2 1 0 12 Skillname238 Skillsd238 Skillld238 Skillan238 StrSkill3 2 StrSkill42 StrSkill23 ln12 5 ESkillWolves "min(lvl,par3)" 9 skill('Summon Grizzly'.ln12) 13 ln12 2 StrSkill21 StrSkill23 skill('Summon Spirit Wolf'.ln56) 2 StrSkill22 StrSkill23 skill('Summon Spirit Wolf'.ln12) 1 40 Sksyn Skillname238 2 25 Skillname228 25 Skillname248 0
rabies 2 4 1 2 0 24 Skillname239 Skillsd239 Skillld239 Skillan239 StrSkill3 23 2 14 2 StrSkill22 StrSkill23 toht 1 40 Sksyn Skillname239 2 63 Skillname223 Poisdplev par8 0
fire claws 2 4 2 2 0 26 Skillname240 Skillsd240 Skillld240 Skillan240 StrSkill3 5 1 1 2 StrSkill22 StrSkill23 toht 10 9 40 Sksyn Skillname240 2 63 Skillname226 Firedplev par8 63 Skillname230 Firedplev par8 63 Skillname235 Firedplev par8 63 Skillname245 Firedplev par8 0
twister 3 4 2 3 0 42 Skillname241 Skillsd241 Skillld241 Skillan241 StrSkill3 5 9 1 12 StrSkill48 par2 40 Sksyn Skillname241 2 63 Skillname246 Damplev par8 63 Skillname251 Damplev par8 0
vines 1 5 3 1 0 14 Skillname242 Skillsd242 Skillld242 Skillan242 StrSkill3 1 3 StrSkill88 StrSkill23 dm56 13 (lvl-1)*par3 0
hunger 2 5 2 2 0 58 Skillname243 Skillsd243 Skillld243 Skillan243 StrSkill3 14 1 1 2 StrSkill22 StrSkill23 toht 3 EskillManaSteal StrSkill23 dm34 3 EskillLifeSteal StrSkill23 dm12 3 StrSkill4 StrSkill23 par5 0
shock wave 2 5 3 2 0 28 Skillname244 Skillsd244 Skillld244 Skillan244 StrSkill3 5 1 10 9 12 StrSkill48 ln12 0
volcano 3 5 1 3 0 44 Skillname245 Skillsd245 Skillld245 Skillan245 StrSkill3 5 11 10 9 8 1 40 Sksyn Skillname245 2 63 Skillname230 Damplev par7 63 Skillname235 Firedplev par8 63 Skillname250 Firedplev par8 0
tornado 3 5 2 3 0 46 Skillname246 Skillsd246 Skillld246 Skillan246 StrSkill3 5 11 10 9 8 1 40 Sksyn Skillname246 2 63 Skillname236 Damplev par8 63 Skillname241 Damplev par8 63 Skillname251 Damplev par8 0
spirit of barbs 1 6 1 1 0 4 Skillname247 Skillsd247 Skillld247 Skillan247 StrSkill3 1 19 StrSkill18 ln78 7 StrSkill55 ln34 13 (lvl-1)*par1 0
summon grizzly 1 6 2 1 0 18 Skillname248 Skillsd248 Skillld248 Skillan248 StrSkill3 2 StrSkill4 StrSkill23 ln12 9 ln12 2 StrSkill21 StrSkill23 skill('Summon Spirit Wolf'.ln56) 2 StrSkill22 StrSkill23 skill('Summon Spirit Wolf'.ln12) 13 skill('summon fenris'.ln12) 1 40 Sksyn Skillname248 2 25 Skillname228 25 Skillname238 0
fury 2 6 1 2 0 30 Skillname249 Skillsd249 Skillld249 Skillan249 StrSkill3 7 ln34 2 1 2 StrSkill4 StrSkill23 ln34 2 StrSkill30 StrSkill23 toht 7 StrSkill11 "min((par5+lvl-1),par6)" 0
armageddon 3 6 1 3 0 50 Skillname250 Skillsd250 Skillld250 Skillan250 StrSkill3 5 armageddonfire 10 22 1 19 StrSkill18 par3 12 StrSkill20 ln12 + skill('Eruption'.blvl) * par7 40 Sksyn Skillname250 2 67 Skillname235 Secplev2 2 63 Skillname226 Firedplev par8 63 Skillname230 Firedplev par8 63 Skillname245 Firedplev par8 0
hurricane 3 6 2 3 0 48 Skillname251 Skillsd251 Skillld251 Skillan251 StrSkill3 5 10 1 19 StrSkill18 par3 12 StrSkill20 ln12 + skill('Cyclone Armor'.blvl) * par7 40 Sksyn Skillname251 2 67 Skillname236 Secplev2 2 63 Skillname241 Damplev par8 63 Skillname246 Damplev par8 0
fire trauma 1 1 2 1 0 0 Skillname252 Skillsd252 Skillld252 Skillan252 StrSkill3 5 1 10 19 StrSkill18 par1 40 Sksyn Skillname252 2 63 Skillname257 Firedplev par8 63 Skillname262 Firedplev par8 63 Skillname263 Firedplev par8 63 Skillname272 Firedplev par8 63 Skillname273 Firedplev par8 63 Skillname277 Firedplev par8 0
claw mastery 2 1 2 2 0 20 Skillname253 Skillsd253 Skillld253 Skillan253 StrSkill3 51 eskillincasemasteryX macr 2 StrSkill22 StrSkill23 math 2 StrSkill4 StrSkill23 madm 0
psychic hammer 2 1 3 2 0 22 Skillname254 Skillsd254 Skillld254 Skillan254 StrSkill3 5 1 100 11 10 9 8 0
tiger strike 3 1 2 3 0 40 Skillname255 Skillsd255 Skillld255 Skillan255 StrSkill3 5 1 1 2 StrSkill22 StrSkill23 toht 2 Eskillpowerup3 Eskillpuddgmper 3*ln12 2 Eskillpowerup2 Eskillpuddgmper 2*ln12 2 Eskillpowerup1 Eskillpuddgmper ln12 0
dragon talon 3 1 3 3 0 42 Skillname256 Skillsd256 Skillld256 Skillan256 StrSkill3 15 5 1 2 StrSkill22 StrSkill23 toht 2 Eskillkickdamage StrSkill23 ln12 36 EskillKickSing EskillKickPlur lvl/6+1 0
shock field 1 2 1 1 0 2 Skillname257 Skillsd257 Skillld257 Skillan257 StrSkill3 5 shock field on ground 1 38 StrSkill7 StrSkill34 edmn edmx 23 StrSkill20 5 ESkillSpikes par1+lvl/par2+skill('Fire Trauma'.blvl)/3 40 Sksyn Skillname257 2 71 Skillname252 Missplev3 3 63 Skillname262 Ltngdplev par8 63 Skillname272 Ltngdplev par8 63 Skillname277 Ltngdplev par8 0
blade sentinel 1 2 3 1 0 4 Skillname258 Skillsd258 Skillld258 Skillan258 StrSkill3 5 72 WeapDamsk 3 8 9 12 StrSkill20 ln12 1 0
quickness 2 2 1 2 0 36 Skillname259 Skillsd259 Skillld259 Skillan259 StrSkill3 1 12 StrSkill20 ln56 2 StrSkill89 StrSkill23 dm12 2 StrSkill106 StrSkill23 dm34 0
fists of fire 3 2 1 3 0 44 Skillname260 Skillsd260 Skillld260 Skillan260 StrSkill3 20 fire enma exma fire enma exma fire enma+m1eo*50/256 exma+m1ey*50/256 2 fistsoffirefirewall 1 2 StrSkill22 StrSkill23 toht 17 Eskillfistsoffire1 Eskillpowerup3 m1eo*50/256 m1ey*50/256 19 Eskillfistsoffire2 Eskillpowerup2 par1 24 Eskillfistsoffire1 Eskillpowerup1 40 Sksyn Skillname260 2 63 Skillname281 Firedplev par8 0
dragon claw 3 2 3 3 0 46 Skillname261 Skillsd261 Skillld261 Skillan261 StrSkill3 19 ln12 2 1 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 ln12 0
charged bolt sentry 1 3 1 1 0 6 Skillname262 Skillsd262 Skillld262 Skillan262 StrSkill3 10 1 3 StrSkill72 StrSkill73 ln34 + skill('Shock Field'.blvl)/3 3 ESkillShoots ESkillTimes par1 + skill('Lightning Sentry'.blvl)/4 40 Sksyn Skillname262 2 71 Skillname257 Boltplev3 3 71 Skillname272 Shotplev3 4 63 Skillname252 Ltngdplev par8 63 Skillname272 Ltngdplev par8 63 Skillname277 Ltngdplev par8 0
wake of fire sentry 1 3 2 1 0 8 Skillname263 Skillsd263 Skillld263 Skillan263 StrSkill3 1 10 3 ESkillShoots ESkillTimes par1 40 Sksyn Skillname263 2 63 Skillname252 Firedplev par8 63 Skillname273 Firedplev par8 0
weapon block 2 3 2 2 0 26 Skillname264 Skillsd264 Skillld264 Skillan264 StrSkill3 7 StrSkill24 dm12 0
cloak of shadows 2 3 3 2 0 24 Skillname265 Skillsd265 Skillld265 Skillan265 StrSkill3 2 StrSkill25 StrSkill23 "-min(ln56,95)" 2 StrSkill31 StrSkill23 ln78 12 StrSkill20 ln34 1 19 StrSkill56 dm12 0
cobra strike 3 3 2 3 0 50 Skillname266 Skillsd266 Skillld266 Skillan266 StrSkill3 5 1 1 2 StrSkill22 StrSkill23 toht 2 Eskillpowerup3 Eskillpudmana 2*ln12 2 Eskillpowerup2 Eskillpudmana ln12 2 Eskillpowerup1 Eskillpudlife ln12 0
blade fury 1 4 3 1 0 10 Skillname267 Skillsd267 Skillld267 Skillan267 StrSkill3 24 61 StrSkill3 EskillPerBlade usmc 10 72 WeapDamsk 3 4 9 5 StrSkill115 par3 0
fade 2 4 1 2 0 30 Skillname268 Skillsd268 Skillld268 Skillan268 StrSkill3 1 12 StrSkill20 ln56 3 StrSkill54 StrSkill23 dm12 3 StrSkill85 StrSkill23 dm34 0
shadow warrior 2 4 2 2 0 38 Skillname269 Skillsd269 Skillld269 Skillan269 StrSkill3 1 2 StrSkill31 StrSkill23 (lvl-1)*par3 4 StrSkill22 lvl*par2 13 (lvl-1)*par1 0
claws of thunder 3 4 1 3 0 58 Skillname270 Skillsd270 Skillld270 Skillan270 StrSkill3 20 ltng enma exma ltng enma+m2en exma+m2ex ltng enma+m2en+m3en exma+m2ex+m3ex 2 clawsofthundernova clawsofthunderbolt 1 2 StrSkill22 StrSkill23 toht 62 Eskillpowerup3 Eskillthunder3 m3en m3ex 62 Eskillpowerup2 Eskillthunder2 m2en m2ex 24 Eskillthunder1 Eskillpowerup1 40 Sksyn Skillname270 2 63 Skillname281 Ltngdplev par8 0
dragon tail 3 4 3 3 0 48 Skillname271 Skillsd271 Skillld271 Skillan271 StrSkill3 16 5 1 2 StrSkill22 StrSkill23 toht 2 Eskillfistsoffire1 StrSkill23 ln12 19 StrSkill18 par3 0
lightning sentry 1 5 1 1 0 12 Skillname272 Skillsd272 Skillld272 Skillan272 StrSkill3 5 1 10 3 ESkillShoots ESkillTimes par1 40 Sksyn Skillname272 2 63 Skillname257 Ltngdplev par8 63 Skillname262 Ltngdplev par8 63 Skillname277 Ltngdplev par8 0
inferno sentry 1 5 2 1 0 14 Skillname273 Skillsd273 Skillld273 Skillan273 StrSkill3 8 0 3 1 59 StrSkill5 edns*25/768 edxs*25/768 3 ESkillShoots ESkillTimes par1 40 Sksyn Skillname273 2 42 Skillname263 Rangplev 0 5 63 Skillname252 Firedplev par7 63 Skillname263 Firedplev par8 63 Skillname277 Firedplev par7 0
mind blast 2 5 3 2 0 34 Skillname274 Skillsd274 Skillld274 Skillan274 StrSkill3 5 3 StrSkill99 StrSkill23 dm56 12 StrSkill48 "min(250,edln)" 9 1 16 StrSkill20 par3 par3+par4 0
blades of ice 3 5 1 3 0 52 Skillname275 Skillsd275 Skillld275 Skillan275 StrSkill3 20 cold enma exma cold enma exma cold enma exma 2 1 2 StrSkill22 StrSkill23 toht 12 Eskillbladesofice3 Eskillpowerup3 edln 19 Eskillbladesofice2 Eskillpowerup2 par1 24 Eskillbladesofice1 Eskillpowerup1 par1 40 Sksyn Skillname275 2 63 Skillname281 Colddplev par8 0
dragon flight 3 5 3 3 0 54 Skillname276 Skillsd276 Skillld276 Skillan276 StrSkill3 15 5 1 2 StrSkill22 StrSkill23 toht 2 Eskillkickdamage StrSkill23 ln12 0
death sentry 1 6 1 1 0 16 Skillname277 Skillsd277 Skillld277 Skillan277 StrSkill3 5 1 10 37 StrSkill18 skill('mon death sentry'.par3) + skill('mon death sentry'.par4) * (lvl - 1) 3 ESkillShoots ESkillTimes par1 + skill('Fire Trauma'.blvl)/3 38 Corexpdam StrSkill46 skill('mon death sentry'.par1) skill('mon death sentry'.par2) 40 Sksyn Skillname277 2 71 Skillname252 Shotplev3 3 63 Skillname272 Ltngdplev par8 0
blade shield 1 6 3 1 0 18 Skillname278 Skillsd278 Skillld278 Skillan278 StrSkill3 5 1 12 StrSkill20 ln12 72 WeapDamsk 1 4 9 0
venom 2 6 1 2 0 28 Skillname279 Skillsd279 Skillld279 Skillan279 StrSkill3 1 12 StrSkill20 ln12 14 0
shadow master 2 6 2 2 0 32 Skillname280 Skillsd280 Skillld280 Skillan280 StrSkill3 1 2 StrSkill54 StrSkill23 ((110*(lvl-1))/(lvl+5)*(par4-par3))/100+par3 4 StrSkill22 lvl*par2 13 (lvl-1)*par1 0
royal strike 3 6 2 3 0 56 Skillname281 Skillsd281 Skillld281 Skillan281 StrSkill3 18 fire m1en m1ex ltng m2en m2ex cold m3en m3ex 1 royalstrikemeteor royalstrikechainlightning royalstrikechaosice 1 2 StrSkill22 StrSkill23 toht 62 Eskillpowerup3 Eskillphoenix3 m3en m3ex 62 Eskillpowerup2 Eskillphoenix2 m2en m2ex 38 StrSkill83 StrSkill34 miss('royalstrikemeteorfire'.edns)*75/256 miss('royalstrikemeteorfire'.edxs)*75/256 62 Eskillpowerup1 Eskillphoenix1 m1en m1ex 40 Sksyn Skillname281 2 63 Skillname260 Firedplev 10 63 Skillname260 AFDImm 6 63 Skillname270 Ltngdplev 13 63 Skillname275 Colddplev 10 0
delerium change 0 0 0 0 0 2 Runeword22 Runeword22 Runeword22 Runeword22 StrSkill3 0

321
txt/Skills.txt Normal file
View File

@ -0,0 +1,321 @@
skill Id charclass ClassReq Monster Enhanceable AttackRank itemclass1 itemclass2 itemclass3 itemclass4 itemclass5 itemclass6 anim monanim seqnum isaura Durability Shiver UseAttackRate LineOfSight TargetableOnly SearchEnemyXY SearchMonsterNear SelectDead SearchOpenXY TargetPet TargetAlly ItemEffect range AttackNoMana reqlevel reqstr reqdex reqint reqvit reqskill1 reqskill2 reqskill3 State1 State2 State3 Delay SkillPage SkillRow SkillColumn IconCel leftskl manashift mana lvlmana Interrupt InTown Periodic Finishing Passive Param1 Param1 Description Param2 Param2 Description Param3 Param3 Description Param4 Param4 Description Param5 Param5 Description Param6 Param6 Description effect leveleffect InGame Done Open Beta What's left? - code What's Left - art ToHit LevToHit HitShift SrcDam MinDam MaxDam LevDam1 LevDam2 LevDam3 EType EMin EMax ELev1 ELev2 ELev3 ELen ELevLen1 ELevLen2 ELevLen3 caster state cost mult cost add
Attack 0 0 0 0 0 xxx xxx xxx xxx xxx xxx attack attack 0 0 0 1 1 0 1 1 0 0 0 0 0 0 both 1 1 0 0 0 0 0 1 2 0 0 0 0 2 0 8 0 0 1 0 0 1 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Normal attacking na 1 1 1 1 nothing ? 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Kick 1 0 0 0 0 xxx xxx xxx xxx xxx xxx kick seq 0 0 0 1 0 0 1 1 0 0 0 0 0 0 h2h 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "hit knocks monster back 1 square, does 1 damage" na 1 1 1 1 nothing ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Throw 2 0 0 0 0 1js 1ss 1jt 1st 1ht 1hs throw seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 0 0 0 6 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? throw a weapon na 1 1 1 1 Done? ? 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Unsummon 3 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 1 0 0 0 0 1 0 0 range 0 1 0 0 0 0 0 1 2 0 0 0 0 4 0 8 0 0 1 1 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? releases a summoned creature from your control na 1 0 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Left Hand Throw 4 0 0 0 0 1js 1ss 1jt 1st xxx xxx sk4 seq 0 0 1 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 0 0 0 12 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? throw a weapon with left hand (otherwise identical) na 1 0 1 1 stuff ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Left Hand Swing 5 0 0 0 0 1js 1ss 1jt 1st ht2 xxx sk3 sk3 0 0 1 1 1 0 1 1 0 0 0 0 0 0 both 0 1 0 0 0 0 0 0 0 0 0 0 0 10 0 8 0 0 1 0 0 0 0 66 percent damage 0 ? 0 ? 0 ? 0 ? 0 ? "swing with left hand, 75% speed (faster), 66% damage" na 1 0 1 1 stuff ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Magic Arrow 6 ama 0 0 1 0 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 1 1 2 0 0 5 12 -1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Creates an arrow from mana +1 damage 1 1 0 1 *Check ? 0 0 7 8 0 0 2 2 2 0 0 0 0 0 0 0 0 0 256 1000
Fire Arrow 7 ama 0 0 1 0 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 1 1 3 2 0 6 12 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? +2-5 fire damage +2 fire damage 1 1 0 1 *Check ? 0 0 8 8 0 0 0 0 0 fire 1 4 2 2 2 0 0 0 0 256 1000
Inner Sight 8 ama 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 2 1 1 4 1 7 10 0 1 0 0 0 0 40 min% monster ac 80 max% monster ac 200 duration 100 duration per level 20 radius of effect 0 radius per level all monsters in radius get small light source. And highlit monsters have -20 AC/level extar duration and more AC loss 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Critical Strike 9 ama 0 0 1 4 1ht 2ht bow xbw xxx xxx none seq 0 0 0 0 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 2 1 3 6 1 8 0 0 1 0 0 0 1 5 min % to do double damage 80 max % to do double damage 0 ? 0 ? 0 ? 0 ? Passive 10% chance to do double damage on a hit more of a chance 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Jab 10 ama 1 0 1 3 1ht 2ht xxx xxx xxx xxx seq seq 1 0 1 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 3 1 1 8 0 6 8 1 1 0 0 0 0 0 ? 0 ? -15 Percent damage base 3 Percent damage per level 0 ? 0 ? "does 4 hits, each at 66% regular damage" more damage as per dave 1 1 0 1 *Check ? 10 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Cold Arrow 11 ama 0 0 1 4 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 0 0 0 0 1 2 1 10 0 6 12 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? extra 5 frames slow and +1 cold dam 1 1 0 1 *Check new blue shift 0 0 8 4 0 0 0 0 0 cold 3 3 2 2 2 100 30 30 30 384 3000
Multiple Shot 12 ama 0 0 1 7 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 Magic Arrow 0 0 0 0 1 2 2 12 0 7 8 2 1 0 0 0 0 2 number of arrows to fire 1 additional arrows per level 1 Acivation frame of arrows. 0 ? 0 ? 0 ? Fires a spread of arrows towards the target. extra arrows/level 1 1 0 1 *Check ? 0 0 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Dodge 13 ama 1 0 1 0 xxx xxx xxx xxx xxx xxx sk1 seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 h2h 0 6 0 0 0 0 0 0 0 0 2 2 2 14 1 8 0 0 1 0 0 0 1 10 min % dodge 65 max % dodge 0 ? 0 ? 0 ? 0 ? PASSIVE chance that amazon jumps aside and takes no HTH dam. Only if not moving more of a chance 1 1 0 1 *Check New animation 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Power Strike 14 ama 0 0 1 4 1ht 2ht xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 Jab 0 0 0 0 3 2 2 16 0 6 8 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? does 1-8 lightning damage +4 lightning damage 1 1 0 1 *Check ? 10 5 8 8 0 0 0 0 0 ltng 1 16 6 8 10 0 0 0 0 384 3000
Poison Javelin 15 ama 0 0 1 2 1ht xxx xxx xxx xxx xxx throw seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 0 0 0 0 3 2 3 18 0 6 16 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "half normal damage, poison damage, trails poison gas" "+half damage, +1 poison damage" 1 1 0 1 *Check ? 0 0 0 0 0 0 0 0 0 pois 32 48 16 16 16 75 0 0 0 384 3000
Exploding Arrow 16 ama 0 0 1 5 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Fire Arrow Multiple Shot 0 0 0 0 1 3 3 20 0 7 10 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? explodes for 8-16 fire damage 5 square radius +2 fire damage 1 1 0 1 *Check new arrow? 0 0 8 8 0 0 0 0 0 fire 2 4 5 5 5 0 0 0 0 512 8000
Slow Missiles 17 ama 1 0 1 8 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Inner Sight 0 0 0 0 2 3 1 22 1 7 10 0 1 0 0 0 0 33 % velocity for missiles 0 % velocity per level 300 duration 150 duration per level 20 radius of effect 0 radius per level Highlights enemies like eye of zeus. Effected target's missiles fly at 1/3 speed more duration 1 1 0 1 *Check missile hit overlay 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Avoid 18 ama 0 0 1 0 xxx xxx xxx xxx xxx xxx sk1 seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 h2h 0 12 0 0 0 0 Dodge 0 0 0 0 2 3 2 24 1 8 0 0 1 0 0 0 1 15 min % avoid 75 max % avoid 0 ? 0 ? 0 ? 0 ? PASSIVE like dodge but for missiles and magic missiles more of a chance 1 1 0 1 *Check New animation 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Impale 19 ama 1 0 1 6 1ht 2ht xxx xxx xxx xxx seq seq 8 0 1 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Jab 0 0 0 0 3 3 1 26 0 8 3 0 1 0 0 0 0 300 Percent damage 5 % damage per level 0 % chance durability loss delta min 30 % chance durability loss delta max 1 % durability lost 50 % max chance durability loss "300% Damange, durability loss" attack bonus 1 1 0 1 *Check sequencing 25 7 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Lightning Bolt 20 ama 0 0 1 6 1ht xxx xxx xxx xxx xxx throw seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Poison Javelin 0 0 0 0 3 3 3 28 0 6 24 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? thrown javelin (-type) becomes lightning bolt (GFX and add lightning hit) +8 lightning damage 1 1 0 1 *Check ? 0 0 8 8 0 0 0 0 0 ltng 1 40 8 8 8 0 0 0 0 512 8000
Ice Arrow 21 ama 0 0 1 6 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Cold Arrow 0 0 0 0 1 4 1 30 0 6 16 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "1/2 damage, freezes target for 10 frames" extra 2 frames freeze 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 cold 6 10 4 4 4 50 5 5 5 640 16000
Guided Arrow 22 ama 0 0 1 4 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Cold Arrow Multiple Shot 0 0 0 0 1 4 2 32 0 6 32 -1 1 0 0 0 0 15 Search range 0 ? 0 Damage percent 5 damage % per level 0 ? 0 ? "200% speed, arrow ALWAYS hits target, or seeks a target" "-10% speed, +5% damage" 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Penetrate 23 ama 0 0 1 1 1ht 2ht bow xbw xxx xxx none seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Critical Strike 0 0 0 0 2 4 3 34 1 8 0 0 1 0 0 0 1 35 add % to hit with missiles base 10 add % to hit with missiles/level 0 ? 0 ? 0 ? 0 ? PASSIVE additional chance to hit with missiles (penetrate the armor) more of a chance 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Charged Strike 24 ama 0 0 1 5 1ht 2ht xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Power Strike Lightning Bolt 0 0 0 0 3 4 2 36 0 6 16 1 1 0 0 0 0 3 Bolts to send out 0 Additional bolts per level 0 ? 0 ? 0 ? 0 ? "adds 6-10 lightning damage, releases 3 charged bolts (1-4)" "+2lightning damage,+1charged bolt" 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 ltng 1 30 10 12 14 0 0 0 0 640 16000
Plague Javelin 25 ama 0 0 1 3 1ht xxx xxx xxx xxx xxx throw seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Lightning Bolt 0 0 0 100 3 4 3 38 0 8 7 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "trails poison gas, hit always poisons, poison cloud radius 3" "+half damage, +1 poison damage" 1 1 0 0 *Check improve poison clouds 0 0 3 0 0 0 0 0 0 pois 10 16 3 5 8 75 0 0 0 640 16000
Strafe 26 ama 1 0 1 0 bow xbw xxx xxx xxx xxx attack seq 0 0 0 0 1 0 0 0 0 0 0 0 0 0 range 0 24 0 0 0 0 Guided Arrow 0 0 0 0 1 5 2 40 0 8 11 0 1 0 0 0 0 5 Damage increase 5 Damage increase per level 4 Base Shots to take (+1 per level) 10 Max shots to take 25 Radius 50 % frame rollback fires an arrow at every target on screen +10% damage 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Immolation Arrow 27 ama 0 0 1 6 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 24 0 0 0 0 Exploding Arrow 0 0 0 0 1 5 3 42 0 8 6 1 1 0 0 0 0 2 Fire disc radius 3 Radial Damage Radius 0 ? 0 ? 0 ? 0 ? explodes for 8-16 fire damagebig radius of firewall-type action +2 fire damage 1 1 0 0 *Check ? 0 0 8 4 0 0 0 0 0 fire 4 10 6 6 6 0 0 0 0 768 32000
Dopplezon 28 ama 0 0 1 4 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Slow Missiles 0 0 0 0 2 5 1 44 1 6 76 -3 1 0 0 0 0 250 duration of decoy 125 duration per level 50 percent hitpoints of caster 0 ? 0 ? 0 ? creates an identical copy of the amazon that draws fire more duration 1 1 0 0 *Check Overlays 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Evade 29 ama 0 0 1 0 xxx xxx xxx xxx xxx xxx sk1 seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 h2h 0 24 0 0 0 0 Avoid 0 0 0 0 2 5 2 46 1 8 0 0 1 0 0 0 1 10 min % evade 65 max % evade 0 ? 0 ? 0 ? 0 ? PASSIVE like dodge but when walking or running more of a chance 1 1 0 0 *Check New animation 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Fend 30 ama 1 0 1 0 1ht 2ht xxx xxx xxx xxx attack seq 9 0 1 0 0 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Impale 0 0 0 0 3 5 1 48 0 8 5 0 0 0 0 0 0 1 additional target/level 60 % frame rollback 70 % damage percent 10 damage % per level 0 ? 0 ? "attacks all adjacent targets, +20% to hit" "+10% damage, +5% to hit" 1 1 0 0 *Check seqencing 40 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Freezing Arrow 31 ama 0 0 1 7 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 30 0 0 0 0 Ice Arrow 0 0 0 0 1 6 1 50 0 8 9 1 1 0 0 0 0 5 Radius of impact 0 ? 0 ? 0 ? 0 ? 0 ? freezes target +5 secs time frame 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 cold 6 10 6 6 6 50 0 0 0 896 64000
Valkyrie 32 ama 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Dopplezon Evade 0 0 0 0 2 6 1 52 1 8 25 4 1 0 0 0 0 20 % hitpoints more per level 20 % damage increase per level 5 % AC increase per level 5 % To hit increase per level 25 Magic Item level 3 Magic Item level per level oooh scary valkyrie beast. Comes to fight for amazon none 1 1 0 0 *Check palletized Amazon 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Pierce 33 ama 0 0 1 0 bow xbw xxx xxx xxx xxx none seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 range 0 30 0 0 0 0 Penetrate 0 0 0 0 2 6 3 54 1 8 0 0 1 1 0 0 1 10 min % chance 100 max % chance 4 max possible piercings 0 ? 0 ? 0 ? PASSIVE chance that a missile does damage/effect AND continues thru target more of a chance 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Lightning Strike 34 ama 0 0 1 8 1ht 2ht xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 30 0 0 0 0 Charged Strike 0 0 0 0 3 6 2 56 0 8 9 0 1 0 0 0 0 10 radius of jump to next target 0 ? 2 Target hits 1 Target hits per level 0 ? 0 ? "does 10-20 lightning damage, sends out chainlightning effect" +2 lightning damage 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 ltng 5 25 10 10 10 0 0 0 0 896 64000
Lightning Fury 35 ama 0 0 1 8 1ht xxx xxx xxx xxx xxx throw seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 range 0 30 0 0 0 0 Plague Javelin 0 0 0 0 3 6 3 58 0 7 20 1 1 0 0 0 0 2 lightning spells from target 1 extra spells/level 15 Target search radius 0 ? 0 ? 0 ? Like Lightning Bolt but with 2+level lightnings going from target to nearest targets +10% damage 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 ltng 1 40 10 13 16 0 0 0 0 896 64000
Fire Bolt 36 sor 0 0 1 2 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 1 1 2 0 0 7 5 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? missile does 3-6 damage +1 damage 1 1 0 1 *Check ? 0 0 7 0 0 0 0 0 0 fire 6 12 3 5 7 0 0 0 0 256 1000
Warmth 37 sor 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 1 1 3 2 1 8 0 0 1 1 0 0 1 30 increase in mana recovery 12 additional increase/level 0 ? 0 ? 0 ? 0 ? PASSIVE increases mana recovery rate by 50% +25% recovery 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 fire 0 0 0 0 0 0 0 0 0 256 1000
Charged Bolt 38 sor 0 0 1 1 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 2 1 2 4 0 5 24 4 1 0 0 0 0 3 Bolts to send out 1 Additional bolts per level 0 ? 0 ? 0 ? 0 ? 3 charged bolts fly randomly 2-4 damage each +1 bolt 1 1 0 1 *Check ? 0 0 7 0 0 0 0 0 0 ltng 4 8 1 1 2 0 0 0 0 256 1000
Ice Bolt 39 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 3 1 2 6 0 8 3 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? does 3 points cold damage. Target is 1/2 speed for 30 frames "+1 damage, +5 frames" 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 cold 3 5 1 2 3 150 35 35 35 256 1000
Frozen Armor 40 sor 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 3 1 3 8 1 8 7 0 1 1 0 0 0 30 % AC base 5 % AC per level 3000 Duration 300 Duration per level 30 Freeze Frames 3 Freeze Frames per level Changed ac bonus to %. Took out dur/level. Added frames per level. "+2 ac, + 2 seconds" 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 STATE_FROZENARMOR 256 1000
Inferno 41 sor 1 0 1 7 xxx xxx xxx xxx xxx xxx seq seq 6 0 0 0 0 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 0 0 0 0 1 2 1 10 0 4 9 1 1 0 0 0 0 20 base ranged (doubled) 3 level range (doubled) 6 Min Mana to start casting 0 ? 0 ? 0 ? Hold Sorc in 1 frame of anim. Eminate missiles from closer to sorc "+1 range, +1 second dur" 1 1 0 1 *Check ? 0 0 2 0 0 0 0 0 0 fire 32 64 24 26 28 0 0 0 0 384 3000
Static Field 42 sor 0 0 1 10 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 0 0 0 0 2 2 1 12 1 8 9 0 1 0 0 0 0 5 Base radius of effect. 1 Level radius bonus. 1 Minimum Damage. 25 Percent Damage. 0 ? 0 ? everything in 10 square radius takes 30% (current) damage +2 range 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Telekinesis 43 sor 0 0 1 10 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 3 14 1 8 7 0 1 1 0 0 0 25 On-screen cast range. 35 Chance to knockback/stun. 0 ? 0 ? 0 ? 0 ? "triggers doors, levers, etc. and grabs items from afar, knockback on monsters" na 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 ltng 1 2 1 1 1 0 0 0 0 384 3000
Frost Nova 44 sor 0 0 1 6 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 0 0 0 0 3 2 1 16 1 8 9 1 1 0 0 0 0 9 radius of freeze 3 additional radius/level 0 ? 0 ? 0 ? 0 ? Cold nova speeds +10% 1 1 0 1 *Check OverlayC and palette shift 0 0 8 0 0 0 0 0 0 cold 2 4 2 3 4 200 25 25 25 384 3000
Ice Blast 45 sor 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 Ice Bolt 0 0 0 0 3 2 2 18 0 7 12 1 1 0 0 0 0 75 Duration of freeze 5 additional duration/level 0 ? 0 ? 0 ? 0 ? "1) removed splash damage. 2) make it total freeze, not slow down" pause for +1 frame 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 cold 10 10 7 7 7 0 0 0 0 384 3000
Blaze 46 sor 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Inferno 0 0 0 0 1 3 1 20 1 7 22 1 1 0 0 0 0 50 Min Frames 500 Max Frames 0 ? 0 ? 0 ? 0 ? "trails fire behind caster,ala Tron game. Each sprite lasts 2 sec. 1pt dam/fram" "+1 sec dur, +10% damage" 1 1 0 1 *Check ? 0 0 4 0 0 0 0 0 0 fire 4 8 2 3 4 0 0 0 0 512 8000
Fire Ball 47 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Fire Bolt 0 0 0 0 1 3 2 22 0 7 10 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? like fire bolt with area damage. 10-24 damage +15% damage 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 fire 6 14 7 7 7 0 0 0 0 512 8000
Nova 48 sor 0 0 1 2 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Static Field 0 0 0 0 2 3 1 24 1 8 15 1 1 0 0 0 0 12 number of missiles 4 additional missiles per level 0 ? 0 ? 0 ? 0 ? "if you don't know what nova does, you're fired" more missiles 1 1 0 1 *Check "OverlayL, nova missile" 0 0 8 0 0 0 0 0 0 ltng 1 20 7 7 7 0 0 0 0 512 8000
Lightning 49 sor 0 0 1 6 xxx xxx xxx xxx xxx xxx seq seq 12 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Charged Bolt 0 0 0 0 2 3 2 26 0 7 16 1 1 0 0 0 0 10 minimum damage 20 max damage 4 increase in dam/level (min & max) 0 ? 0 ? 0 ? "(procedural?) bolt of lightning shot at and through target, length of 1 screen" more damage 1 1 0 1 *Check "overlayL, procedual bolt" 0 0 8 0 0 0 0 0 0 ltng 1 40 8 8 8 0 0 0 0 512 8000
Shiver Armor 50 sor 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Ice Blast Frozen Armor 0 0 0 0 3 3 3 28 1 8 11 0 1 1 0 0 0 45 % AC base 6 % AC per level 3000 Duration 300 duration per level 0 ? 0 ? target slows down and is damaged "more duration, more damage" 1 1 0 1 *Check "overlayC, overlayV palette shifted" 0 0 8 0 0 0 0 0 0 cold 6 8 2 3 4 100 0 0 0 512 8000
Fire Wall 51 sor 0 0 1 4 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 0 4 0 0 0 0 1 0 0 1 none 0 18 0 0 0 0 Blaze 0 0 0 35 1 4 1 30 1 8 22 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? creates wall of fire more duration/length 1 1 0 0 *Check ? 0 0 4 0 0 0 0 0 0 fire 14 20 6 7 9 0 0 0 0 640 16000
Enchant 52 sor 0 0 1 4 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 1 1 1 none 0 18 0 0 0 0 Warmth Fire Ball 0 0 0 0 1 4 3 32 1 8 25 2 1 1 0 0 0 3600 duration 600 duration per level 0 ? 0 ? 0 ? 0 ? "turns target's sword into flaming weapon, with slightly slower attack" more damage 1 1 0 0 *Check "overlayF, weapon ovelay component" 0 0 8 0 0 0 0 0 0 fire 8 10 2 4 6 0 0 0 0 640 16000
Chain Lightning 53 sor 0 0 1 2 xxx xxx xxx xxx xxx xxx seq cast 12 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Lightning 0 0 0 0 2 4 2 34 0 8 9 1 1 0 0 0 0 8 radius of jump to next target 0 ? 26 bolts (5ths) 1 bolts per level (5ths) 0 ? 0 ? "like lightning but if there is a (previously unhit) target within 6 squares, jumps to it" "more damage, more radius" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 ltng 1 40 11 13 15 0 0 0 0 640 16000
Teleport 54 sor 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Telekinesis 0 0 0 0 2 4 3 36 1 8 24 -1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? teleports to target square. (good for testing too) na 1 1 0 0 *Check done 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Glacial Spike 55 sor 0 0 1 7 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Ice Blast 0 0 0 0 3 4 2 38 0 7 20 1 1 0 0 0 0 4 radius 0 radius per level 50 freeze frames 3 freeze frames per level 0 ? 0 ? "like ice Blast, but bigger radius and does damage to specific target" more damage 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 cold 16 24 7 7 7 0 0 0 0 640 16000
Meteor 56 sor 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 1 0 0 1 none 0 24 0 0 0 0 Fire Ball Fire Wall 0 0 0 50 1 5 2 40 1 7 34 1 1 0 0 0 0 6 radius of explosion 0 radius per level 30 Frames of fire 15 Frames of fire per level 0 ? 0 ? "giant meteor comes from sky and hits target square 60 frames after cast, immol arrow type" "more damage, more radius" 1 1 0 0 *Check "lightsource target, meteor missile, immolation explosion" 0 0 8 0 0 0 0 0 0 fire 80 100 24 40 80 0 0 0 0 768 32000
Thunder Storm 57 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Nova Chain Lightning 0 0 0 0 2 5 1 42 1 8 19 0 1 0 0 0 0 800 duration 200 additional duration/level 25 minimum repeat time 100 repeat time factor 0 min % repeat time 100 max % repeat time "after 60 frames and every 60 thereafter, lightning bolt from sky hits random unfriendly target in radius" "longer duration, bigger radius" 1 1 0 0 *Check "proc lightning from sky, thunder sounds" 0 0 8 0 0 0 0 0 0 ltng 1 100 10 10 11 0 0 0 0 768 32000
Energy Shield 58 sor 0 0 1 4 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Teleport Chain Lightning 0 0 0 0 2 5 3 44 1 8 5 0 1 1 0 0 0 3600 duration 1200 additional duration/level 5 min % absorbtion 75 max % absorbtion 8 Mana Damage mult in Fourths 0 ? all non-physical damage (and a percent of physical) is applied to mana for duration of shield "longer duration, more physical" 1 1 0 0 *Check done 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Blizzard 59 sor 0 0 1 7 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 1 0 0 1 none 0 24 0 0 0 0 Frost Nova Glacial Spike 0 0 0 45 3 5 1 46 1 8 23 1 1 0 0 0 0 7 radius 0 ? 4 Missile delay 0 Change duration in Missiles.xls 0 ? 0 ? random spot in target area is hit by an ice shard from the sky every 2 frames longer duration 1 1 0 0 *Check "overlayC, darken act and wind noise" 0 0 8 0 0 0 0 0 0 cold 30 50 12 25 40 50 0 0 0 768 32000
Chilling Armor 60 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 24 0 0 0 0 Shiver Armor 0 0 0 0 3 5 3 48 1 8 17 0 1 1 0 0 0 45 % AC Bonus 5 % AC bonus per level 3600 duration 150 duration per level 0 ? 0 ? "AC bonus, fires ice bolt at source of missile attacks except poison and firewall" longer duration 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 cold 4 6 1 2 3 100 0 0 0 768 32000
Fire Mastery 61 sor 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 0 0 0 0 1 6 2 50 1 8 0 0 1 0 0 0 1 30 % Damage bonus 7 % Damage bonus per level 0 ? 0 ? 0 ? 0 ? PASSIVE adds 10% damage/level to fire spells(tab) ? 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 fire 0 0 0 0 0 0 0 0 0 896 64000
Hydra 62 sor 0 0 1 7 xxx xxx xxx xxx xxx xxx cast sk1 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Enchant 0 0 0 50 1 6 3 52 1 7 40 1 1 0 0 0 0 250 duration 0 additional duration/level 0 ? 0 ? 0 ? 0 ? "like guardian in D1, multi-headed beastie fires 75% firebolts (x3 damage), 25% fireballs" longer duration 1 1 0 0 *Check "overlayF, explosion creates: Hydra" 0 0 8 0 0 0 0 0 0 fire 12 17 5 7 9 0 0 0 0 896 64000
Lightning Mastery 63 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 0 0 0 0 2 6 2 54 1 8 0 0 1 0 0 0 1 50 % Damage bonus 12 % Damage bonus per level 0 ? 0 ? 0 ? 0 ? PASSIVE reduces mana cost of cold spells by 10% (of current) ? 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Frozen Orb 64 sor 0 0 1 8 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Blizzard 0 0 0 25 3 6 1 56 0 7 50 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? a slow moving pulsating orb that fires icebolts and explodes in a frost nova more damage 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 cold 35 40 6 10 14 200 25 25 25 896 64000
Cold Mastery 65 sor 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 0 0 0 0 3 6 2 58 1 8 0 0 1 0 0 0 1 10 min % resist chance 100 max % resist chance 0 ? 0 ? 0 ? 0 ? PASSIVE reduces target's chance to resist by 5%/level ? 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Amplify Damage 66 nec 0 0 1 10 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 1 1 2 0 1 8 4 0 1 0 0 0 0 3 radius 1 radius per level 200 duration 75 additional duration/level 100 % additional damage taken 0 ? CURSE double damage taken by affected creature longer duration 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Teeth 67 nec 0 0 1 1 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 2 1 2 2 0 7 6 1 1 0 0 0 0 2 number of missiles 1 additional missiles/level 0 ? 0 ? 0 ? 0 ? shoots out randomly directed missiles (generally forward) like quill rat more missiles 1 1 0 1 *Check ? 0 0 7 0 0 0 0 0 0 mag 4 8 2 2 2 0 0 0 0 256 1000
Bone Armor 68 nec 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 2 1 3 4 1 8 11 1 1 1 0 0 0 20 damage absorbed 10 additional absorbed/level 0 ? 0 ? 0 ? 0 ? "creates 2 damage absorbing bone orbiters, each sucking up the first 6 points that come in" extra orbiter 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Skeleton Mastery 69 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 Raise Skeleton 0 0 0 0 3 1 1 6 1 8 0 0 1 0 0 0 1 7 additional hit points/level 2 additional damage per level 0 ? 0 ? 0 ? 0 ? PASSIVE boosts summoned necroskeletons and necromages (also add component look tabe) oh so much 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Raise Skeleton 70 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 1 1 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 3 1 3 8 1 8 6 1 1 0 0 0 0 5 % chance of shield 0 ? 0 ? 0 ? 0 ? 0 ? Brings undead corpse back (CAST 1 per skill level) more castable 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Dim Vision 71 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 0 0 0 0 1 2 1 10 1 8 9 0 1 0 0 0 0 4 radius 1 radius per level 175 duration 50 additional duration/level 0 ? 0 ? "CURSE lower affected creature's vision radius to 5 + (monlevel - charlevel), minimum 3" longer duration 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Weaken 72 nec 0 0 1 9 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 Amplify Damage 0 0 0 0 1 2 3 12 1 8 4 0 1 0 0 0 0 9 radius 1 radius per level 350 duration 60 additional duration/level 33 % damage target can do 0 ? CURSE target does 1/2 physical damage longer duration 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Poison Dagger 73 nec 0 0 1 4 xxx xxx xxx xxx xxx xxx attack seq 0 0 0 1 0 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 0 0 0 0 2 2 1 14 0 6 12 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? added bonus to hit params ------> better poison 1 1 0 1 *Check ? 15 10 1 8 0 0 0 0 0 pois 18 40 10 15 20 50 0 0 0 384 3000
Corpse Explosion 74 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 1 1 0 0 0 1 none 0 6 0 0 0 0 Teeth 0 0 0 0 2 2 2 16 1 8 15 1 1 0 0 0 0 60 % of base monster HP min damage 100 % of base monster HP max damage 8 radius (half squares) 1 additional radius/level (half squares) 0 ? 0 ? targeted corpse explodes doing damage to all in radius and destroying remains bigger radius 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Clay Golem 75 nec 0 0 1 5 xxx xxx xxx xxx xxx xxx cast sk1 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 3 2 2 18 1 8 15 3 1 0 0 0 0 35 % HP bonus per level 35 % Damage bonus per level 0 ? 0 ? 0 ? 0 ? summons a golem to fight for caster (like hirable) better golem 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Iron Maiden 76 nec 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Amplify Damage 0 0 0 0 1 3 2 20 1 8 5 0 1 0 0 0 0 7 radius 0 radius per level 300 duration 60 additional duration/level 200 % damage returned to accursed 25 % additional returned/level CURSE creature takes 1/4 the damage it deals out (like reverse thorns) h2h and missiles "longer duration, more damage" 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Terror 77 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Weaken 0 0 0 0 1 3 3 22 1 8 7 0 1 0 0 0 0 4 radius 0 radius per level 200 duration 25 additional duration/level 24 Distance to run 2 Distance per level CURSE target runs away in fear longer duration 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Bone Wall 78 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Bone Armor 0 0 0 0 2 3 3 24 1 8 17 0 1 0 0 0 0 25 % additional HP per level 1200 MAX duration 8 Max Monsters per wall 0 "Level, max monsters per wall" 0 ? 0 ? "creates bone wall (like fire wall), that is completely destroyed when any segment takes full damage" greater length and more HP 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Golem Mastery 79 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Clay Golem 0 0 0 0 3 3 1 26 1 8 0 0 1 0 0 0 1 20 % HP bonus per level 0 ? 0 min velocity increase 40 max velocity increase 0 ? 0 ? Enhances golem's speed and hitpoints more 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Raise Skeletal Mage 80 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 1 1 0 0 0 0 none 0 12 0 0 0 0 Raise Skeleton 0 0 0 0 3 3 3 28 1 8 8 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? <---I took out the HP and AC params. Make sure they cast a higher level spell per level more castable 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Confuse 81 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Dim Vision 0 0 0 0 1 4 1 30 1 8 13 0 1 0 0 0 0 6 radius 1 radius per level 250 duration 50 additional duration/level 0 ? 0 ? CURSE monster chooses random target (friendly or not) longer duration 1 0 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Life Tap 82 nec 0 0 1 4 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Iron Maiden 0 0 0 0 1 4 2 32 1 8 9 0 1 0 0 0 0 4 radius 1 radius per level 400 duration 60 additional duration/level 50 % damage healed 0 % additional heal/level CURSE target returns to attacker 10% damage it takes (heals attacker) "longer duration, more returned" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Poison Explosion 83 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 1 1 0 0 0 1 none 0 18 0 0 0 0 Poison Dagger Corpse Explosion 0 0 0 0 2 4 1 34 1 8 8 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Corpse Explosion with poison +1 range 1 1 0 0 *Check ? 0 0 4 0 0 0 0 0 0 pois 8 16 2 4 6 50 0 0 0 640 16000
Bone Spear 84 nec 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Corpse Explosion 0 0 0 0 2 4 2 36 0 6 28 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Fire bone missile more damage 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 mag 16 24 8 8 8 0 0 0 0 640 16000
BloodGolem 85 nec 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Clay Golem 0 0 0 0 3 4 2 38 1 8 25 4 1 0 0 0 0 75 min % life stolen 150 max % life stolen 30 % stolen life xfer to caster 35 %additional golem damage per level 10 % damage on golem xfered to caster 25 % caster healing xfered to golem "summons a golem from target corpse, it steals 5% life from targets" better golem 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Attract 86 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 0 0 0 0 1 none 0 24 0 0 0 0 Confuse 0 0 0 0 1 5 1 40 1 8 17 0 1 0 0 0 0 9 radius 0 radius per level 300 duration 90 additional duration/level 0 ? 0 ? CURSE single target (not area) becomes all monster's (within radius) target of choice "longer duration, bigger radius" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Decrepify 87 nec 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 24 0 0 0 0 Terror 0 0 0 0 1 5 3 42 1 8 11 0 1 0 0 0 0 6 radius 0 radius per level 100 duration 15 additional duration/level -50 "% slowed, -dam, -dam resist" 0 ? CURSE movement is slowed 50% and no run longer duration 1 1 0 0 Mon in state can't run. ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Bone Prison 88 nec 0 0 1 10 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 0 0 0 0 1 none 0 24 0 0 0 0 Bone Wall Bone Spear 0 0 0 0 2 5 3 44 1 8 27 -1 1 0 0 0 0 25 % additional HP per level 1200 MAX duration 0 ? 0 ? 0 ? 0 ? creates bone wall in radius around target "more HP, less mana" 1 1 0 0 *Check art 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Summon Resist 89 nec 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Golem Mastery 0 0 0 0 3 5 1 46 1 8 44 -3 1 0 0 0 1 20 min % resist 75 max % resist 0 ? 0 ? 0 ? 0 ? "Summoned monsters resist cold, lightning, fire and poison" more resistance 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
IronGolem 90 nec 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 0 0 0 0 0 none 0 24 0 0 0 0 BloodGolem 0 0 0 0 3 5 2 48 1 8 35 0 1 0 0 0 0 150 % thorns damage back (level 2) 15 % thorns damage back per level 20 % damage bounced back vs player 2 % additional bounce back/level vs player 0 ? 0 ? "summons a golem from a target item, acts as if it has that item equipped" better golem 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Lower Resist 91 nec 0 0 1 8 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Life Tap Decrepify 0 0 0 0 1 6 2 50 1 8 22 0 1 0 0 0 0 7 radius 1 radius per level 500 duration 50 additional duration/level 25 min % resist lower 70 max % resist lower CURSE lowers target resistances "longer duration, more reduction" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Poison Nova 92 nec 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Poison Explosion 0 0 0 0 2 6 1 52 1 8 20 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Nova with poison like nova? 1 1 0 0 *Check ? 0 0 4 0 0 0 0 0 0 pois 14 25 4 5 8 50 0 0 0 896 64000
Bone Spirit 93 nec 0 0 1 7 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Bone Spear 0 0 0 0 2 6 2 54 0 7 24 1 1 0 0 0 0 15 Search range 0 ? 0 ? 0 ? 0 ? 0 ? Fire a homing bone missile more damage 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 mag 20 30 16 17 18 0 0 0 0 896 64000
FireGolem 94 nec 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 IronGolem 0 0 0 0 3 6 2 56 1 8 50 10 1 0 0 0 0 25 min % fire absorbtion 100 max % fire absorbtion 0 % damage increase 25 % damage increase per level 8 Holy Fire Aura level 1 Plus Holy Fire Aura level "summons a golem that takes negative fire damage (is healed), has fire hit" better golem 1 0 0 0 AI ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Revive 95 nec 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 1 0 0 0 0 none 0 30 0 0 0 0 Raise Skeletal Mage IronGolem 0 0 0 0 3 6 3 58 1 8 45 0 1 0 0 0 0 200 additional hp percent 0 ? 4500 Duration 0 additional duration/level 20 Velocity bonus for revived 0 ? "revives target corpse as the monster it was (w/grey palette and undead), to fight for caster" "less mana, additional HP" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Sacrifice 96 pal 0 0 1 7 !bw xxx xxx xxx xxx xxx attack seq 2 0 1 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 1 1 1 0 0 8 0 0 1 0 0 0 0 180 Percent damage 12 percent damage per level 8 percent damage to self 0 ? 0 ? 0 ? <----- Make sure it works for any melee attack +20% damage 1 1 0 1 *Check seq 20 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Smite 97 pal 0 0 1 9 *sd xxx xxx xxx xxx xxx sk1 seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 1 1 3 2 0 8 2 0 0 0 0 0 0 15 Stun Length 5 additional frames/level 15 Percent bonus damage 15 percent damage per level 0 ? 0 ? "Attack with shield (dmg from items.xls), knock back, stuns for 12 frames" adds 1 damage and 3 frame stun 1 1 0 1 *Check seq 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Might 98 pal 0 0 1 9 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 1 4 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 40 % additional damage 10 % additional damage/level 0 ? 0 ? aura adds 10% damage - PARTY - also add a flat +1 min/max damage additional radius/effect 1 1 0 1 *Check overlayH 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Prayer 99 pal 0 0 1 7 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 3 1 1 6 1 4 16 3 1 1 1 0 0 11 radius 2 additional radius per level 2 hp regen every 2 seconds 1 additional hp regen/level 0 ? 0 ? "aura regens HP - PARTY changed to constant rate, not %" additional radius/effect 1 1 0 1 *Check "overlayH, overlayR" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Resist Fire 100 pal 0 0 1 8 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 3 1 3 8 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 35 min % resist 150 max % resist 0 ? 0 ? aura - PARTY (maybe we should make a curve that approaches 90%) additional radius/effect 1 1 0 1 *Check "overlayA, auraR" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Holy Bolt 101 pal 0 0 1 7 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 1 1 1 none 0 6 0 0 0 0 0 0 0 0 1 2 2 10 0 6 16 1 1 0 0 0 0 1 min hitpoints healed 2 hitpoints healed per level 6 max hitpoints healed 2 hitpoints healed per level 0 ? 0 ? bolt hits undead only for 4-8 damage +2 damage 1 1 0 1 *Check "overlayU, Holy Boly missile" 0 0 8 0 0 0 0 0 0 mag 8 16 6 6 6 0 0 0 0 384 3000
Holy Fire 102 pal 0 0 1 0 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 Might 0 0 0 0 2 2 2 12 1 8 0 0 1 1 1 0 0 6 radius 1 additional radius per level 0 ? 0 ? 0 ? 0 ? aura - every 2 second a pulse of fire hits against enemies in range additional radius/effect 1 1 0 1 *Check overlayH 0 0 6 0 0 0 0 0 0 fire 4 12 3 4 5 0 0 0 0 384 3000
Thorns 103 pal 0 0 1 9 *sd xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 3 14 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 250 % damage bounced back 40 % additional bounce back/level 30 % damage bounced back vs player 5 % additional bounce back/level vs player aura physical damage by monsters is reflected back - PARTY additional radius/effect 1 1 0 1 *Check none 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Defiance 104 pal 0 0 1 4 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 3 2 2 16 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 70 % additional AC 10 % additional AC/level 0 ? 0 ? aura boosts AC - PARTY additional radius/effect 1 1 0 1 *Check "overlayA, auraD" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Resist Cold 105 pal 0 0 1 6 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 3 2 3 18 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 35 min % resist 150 max % resist 0 ? 0 ? aura - PARTY (maybe we should make a curve that approaches 90%) additional radius/effect 1 1 0 1 *Check "overlayH, overlayR" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Zeal 106 pal 0 0 1 2 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 0 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Sacrifice 0 0 0 0 1 3 1 20 0 8 2 0 1 0 0 0 0 0 ? 100 % frame rollback 0 % damage percent 0 damage % per level 2 Targets 5 Max targets each level allows the paladin to hit 1 extra adjacent monster (in the same amount of time) 1 extra target and + to hit 1 1 0 1 *Check overlayF 10 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Charge 107 pal 1 0 1 2 !bw xxx xxx xxx xxx xxx seq seq 4 0 1 1 0 0 1 1 0 0 0 0 0 0 none 1 12 0 0 0 0 Smite 0 0 0 0 1 3 3 22 0 8 9 0 0 0 0 0 0 150 percent increase in velocity 0 ? 100 plus % damage 25 plus % dam per level 0 ? 0 ? charge to target Rhino-demon style (become missile) / do STR/10 damage +20% damage 1 1 0 1 *Check seq 50 15 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Blessed Aim 108 pal 0 0 1 6 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Might 0 0 0 0 2 3 1 24 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 75 % attack# bonus 15 % additional attack# bonus 0 ? 0 ? aura adds 10% to attack number - PARTY +10% attack number 1 1 0 1 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Cleansing 109 pal 0 0 1 3 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Prayer 0 0 0 0 3 3 1 38 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 30 min % reduction 90 max % reduction 0 ? 0 ? aura - poison and curse durations are reduced - PARTY further reduced 1 1 0 1 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Resist Lightning 110 pal 0 0 1 6 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 0 0 0 0 3 3 3 28 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 35 min % resist 150 max % resist 0 ? 0 ? aura - PARTY additional radius/effect 1 1 0 1 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Vengeance 111 pal 0 0 1 3 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Zeal 0 0 0 0 1 4 1 40 0 6 16 1 1 0 0 0 0 70 percent damage 6 percent damage per level 0 ? 0 ? 0 ? 0 ? "adds 25% fire, 25% lightning and 25% cold damage to attack, +25 to hit" +5% more 1 1 0 0 *Check "overlayF, seq, multiple damage overlays" 20 10 8 8 0 0 0 0 0 cold 0 0 0 0 0 30 15 15 15 640 16000
Blessed Hammer 112 pal 0 0 1 2 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Holy Bolt 0 0 0 0 1 4 2 32 0 6 20 1 1 0 0 0 0 4 Concentration influence in 8ths 0 ? 0 ? 0 ? 0 ? 0 ? "spiraling (unaimed) missile doesn't hit friendlies, double damage vs. undead" +4 damage 1 1 0 0 *Check "overlayU, hammer missile" 0 0 8 0 0 0 0 0 0 mag 12 16 8 8 8 0 0 0 0 640 16000
Concentration 113 pal 0 0 1 6 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Blessed Aim 0 0 0 0 2 4 1 34 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 60 % additional damage 15 $ additional damage/level 20 percent chance that attack will not be interrupted 0 ? aura gives 20% chance that an interrupting hit (hard hit) does not interrupt - PARTY +7% chance 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Holy Freeze 114 pal 0 0 1 8 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Holy Fire 0 0 0 0 2 4 2 36 1 8 0 0 1 1 1 0 0 6 radius 1 additional radius per level 25 min% slowing 60 max% slowing 0 ? 0 ? aura - monsters in radius are slowed (25%) and blued bigger radius and more slowed 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Vigor 115 pal 0 0 1 1 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Cleansing Defiance 0 0 0 0 3 4 2 26 1 8 0 0 1 1 1 0 0 15 radius 3 additional radius per level 50 % faster stamina recovery and max stamina 25 % additional stamina recovery and max stamina 7 min % speed increase 50 max % speed increase aura boosts stamina recovery - PARTY faster recovery 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Conversion 116 pal 0 0 1 0 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Vengeance 0 0 0 0 1 5 1 30 0 8 4 0 1 0 0 0 0 400 duration of conversion (frames) 0 additional frames/level 0 min % chance convert 50 max % chance convert 0 ? 0 ? "chance to convert target to fight for paladin, (Scale chance by monster level?)" +25 frames effect 1 1 0 0 *Check "overlayF, target monster pal white" 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Holy Shield 117 pal 0 0 1 3 *sd xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Charge Blessed Hammer 0 0 0 0 1 5 3 42 1 8 35 0 1 1 0 0 0 750 duration of shield 250 duration/level 25 AC bonus 15 AC bonus per level 5 min % ToBlock Add 25 max % ToBlockAdd "creates shield (equiped) AC=12,absorbs 5 damage form every attack up to 200" "AC+2, absorbs +1" 1 1 0 0 *Check "overlayF, Holy Shield component" 0 0 8 0 3 6 2 3 4 0 0 0 0 0 0 0 0 0 768 32000
Holy Shock 118 pal 0 0 1 4 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Holy Freeze 0 0 0 0 2 5 2 44 1 8 0 0 1 1 1 0 0 11 radius 0 additional radius per level 20 max light damage added 7 max light damage per level 0 ? 0 ? aura fires a charged bolt at every enemy that enters radius "additional bolt, bigger radius" 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 ltng 1 10 3 4 5 0 0 0 0 768 32000
Sanctuary 119 pal 0 0 1 0 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Thorns Holy Freeze 0 0 0 0 2 5 3 46 1 8 1 0 1 1 1 0 0 5 radius 1 additional radius per level 150 % damage to undead 30 % damage per level 0 ? 0 ? undead cannot pass into radius. This aura drains mana (slowly) ! additional radius 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 mag 8 16 4 4 4 0 0 0 0 768 32000
Meditation 120 pal 0 0 1 7 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Cleansing 0 0 0 0 3 5 1 48 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 300 % boost to mana recovery 25 % additional boost/level 0 ? 0 ? aura boosts mana recovery - PARTY "+5% boost, bigger radius" 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Fist of the Heavens 121 pal 0 0 1 7 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 0 0 0 0 1 none 0 30 0 0 0 0 Blessed Hammer Conversion 0 0 0 100 1 6 2 50 0 8 25 0 1 0 0 0 0 6 holy bolts to release 1 holy bolts per level 0 ? 0 ? 0 ? 0 ? target undead (not unique) is bannished 20%+ 5*(paladin level-monster level) +10% chance 1 1 0 0 *Check "overlayU, Hand of God" 0 0 8 0 0 0 0 0 0 ltng 150 200 10 12 14 0 0 0 0 896 64000
Fanaticism 122 pal 0 0 1 8 xxx xxx xxx xxx xxx xxx aura sk1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Concentration 0 0 0 0 2 6 1 52 1 8 0 0 1 1 1 0 0 11 radius 0 additional radius per level 10 min% boost 40 max% boost 50 % damage boost 17 % damage bonus per level aura boosts attack speed - PARTY faster yet even 1 1 0 0 *Check 40 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Conviction 123 pal 1 0 1 6 !bw xxx xxx xxx xxx xxx aura seq 5 1 1 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Sanctuary 0 0 0 0 2 6 3 56 1 8 0 0 1 1 1 0 0 20 radius 0 additional radius per level 30 % resist reduction 5 % resist reduction per level 40 min % AC reduction 100 max % AC reduction reduce AC and Resistance of enemies in radius min 0 resist 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Redemption 124 pal 0 0 1 0 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Vigor 0 0 0 0 3 6 2 54 1 8 0 0 1 1 1 0 0 11 radius 0 additional radius per level 10 min % chance redeem 100 max % chance redeem 25 HP and mana gained 5 HP and mana gained/level "aura check every 2 secs for each dead body, destroy it, give mana and hp to paladin" "bigger chance, more gain" 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Salvation 125 pal 0 0 1 8 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 0 0 0 0 3 6 3 58 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 50 min % resist 120 max % resist 0 ? 0 ? aura - PARTY additional radius/effect 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Bash 126 bar 0 0 1 7 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 1 1 2 0 0 8 2 0 1 0 0 0 0 50 Damage % base 5 Damage % per level 1 Min Damage 1 Min Damager per level 0 ? 0 ? <----- Make sure it works for any melee attack (including 2 weapons) + (skilllevel*5)% damage 1 1 1 1 *Check ? 20 5 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Sword Mastery 127 bar 0 0 1 0 1hs 2hs xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 1 2 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +2% to hit/level 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Axe Mastery 128 bar 0 0 1 0 1hs 2hs xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 2 4 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +3% max damage/level 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Mace Mastery 129 bar 0 0 1 0 1hs 2hs xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 3 6 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +3% min damage/level 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Howl 130 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 3 1 1 8 1 8 4 0 1 0 0 0 0 2 Velocity/level increase 1 Plev+Slev+n 24 Distance to retreat 5 Distance per level 75 Time to retreat 25 Time per level all monsters in radius retreat if charlevel+skilllevel > targetlevel "bigger radius, bigger retreat" 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Find Potion 131 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 1 1 0 0 0 0 h2h 0 1 0 0 0 0 0 0 0 0 3 1 3 10 1 8 2 0 1 0 0 0 0 0 min chance to find heart 100 max chance to find heart 30 Chance of finding a mana potion 10 Chance of finding rejuv 0 ? 0 ? target a corpse for 5%+3%/skilllevel chance to get heart. Destroys corpse better chance 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 3000
Leap 132 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx seq seq 13 0 1 0 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 1 2 1 12 0 8 2 0 1 0 0 0 0 4 min distance 30 max distance 4 Knockback range 1 knockback range per level 0 ? 0 ? jump as far as possible (within max distance) towards target square longer range 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Double Swing 133 bar 0 0 1 5 1js 1ss 1jt 1st xxx xxx seq seq 11 0 1 1 1 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 Bash 0 0 0 0 1 2 3 14 0 8 2 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? swing 2 weapons in 1 seq move -4% speed (faster) 1 1 0 1 *Check ? 15 5 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Pole Arm Mastery 134 bar 0 0 1 0 stf xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 1 16 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. -2% speed/level 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Throwing Mastery 135 bar 0 0 1 0 1hs 1ht 1hs xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 2 18 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +1 missile velocity/level 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Spear Mastery 136 bar 0 0 1 0 1ht 2ht xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 3 20 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +.25 range/level 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Taunt 137 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast sk1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 none 0 6 0 0 0 0 Howl 0 0 0 0 3 2 1 22 1 8 3 0 1 0 0 0 0 -5 % to hit for target -2 % to hit/level -5 % damage for target -2 % damage/level 0 ? 0 ? closest monster will fight until dead at -5% to hit and -5% damage if charlevel+skilllevel > targetlevel -2% to hit and damage for target 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Shout 138 bar 0 0 1 8 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 Howl 0 0 0 0 3 2 2 24 1 8 6 0 1 0 0 0 0 100 % AC bonus for friendlies 10 % AC bonus per level 400 duration 50 duration/level 0 ? 0 ? AC bonus to you and party members. +20 duration 1 1 0 1 Test in multiplayer ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Stun 139 bar 0 0 1 0 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Bash 0 0 0 0 1 3 2 26 0 8 2 0 1 0 0 0 0 30 Frames the target is stunned 5 additional frames/level 0 ? 0 ? 0 ? 0 ? "Target is stunned for 4 frames, even on miss" +2 frames 1 1 0 1 *Check ? 15 5 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Double Throw 140 bar 0 0 1 5 1js 1ss 1jt 1st xxx xxx seq seq 15 0 1 1 1 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Double Swing 0 0 0 0 1 3 3 28 0 8 1 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Throw primary and secondary weapons in one move. Seq coming… -5% speed 1 1 0 1 *Check ? 20 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Increased Stamina 141 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 0 0 0 0 2 3 1 30 1 8 0 0 1 0 1 0 1 30 % stamina increase 15 % stamina increase per level 0 ? 0 ? 0 ? 0 ? PASSIVE 20%/level bonus to stamina 20% more 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Find Item 142 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 1 1 0 0 0 0 h2h 0 12 0 0 0 0 Find Potion 0 0 0 0 3 3 3 32 1 8 7 0 1 0 0 0 0 5 min chance to find heart 60 max chance to find heart 30 % chance high quality 5 % chance magic item 0 ? 0 ? target a corpse for 10%+5%/skilllevel chance to get item. Destroys corpse better chance 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Leap Attack 143 bar 0 0 1 6 !bw xxx xxx xxx xxx xxx seq seq 14 0 1 0 0 0 1 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Leap 0 0 0 0 1 4 1 34 0 8 9 0 1 0 0 0 0 4 min distance 30 max distance 100 Min % damage bonus 30 % damage bonus 4 Knockback range 2 knockback range per level Leap to target monster (who is frozen in place!) and give it a quick Bash more damage/range 1 1 0 0 *Check ? 50 15 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Concentrate 144 bar 0 0 1 0 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Stun 0 0 0 0 1 4 2 36 0 8 2 0 0 0 0 0 0 70 Damage % base 5 Damage % per level 100 % AC bonus 10 % AC bonus per level 0 ? 0 ? "Attack is uninteruptible (take damage, but don't interupt)" AC/attack bonus while executing 1 1 0 0 *Check ? 60 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Iron Skin 145 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 0 0 0 0 2 4 3 38 1 8 0 0 1 0 1 0 1 30 % AC bonus 10 % AC bonus per level 0 ? 0 ? 0 ? 0 ? PASSIVE 15% AC bonus +10%/level 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Battle Cry 146 bar 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Taunt 0 0 0 0 3 4 1 40 1 8 5 0 1 0 0 0 0 300 duration 60 duration/level -50 % AC bonus -2 % AC bonus per level -25 $ damage bonus -1 % damage bonus per level all monsters in radius have AC=0 and do -25% damage for duration bigger radius/longer duration 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Frenzy 147 bar 0 0 1 3 1js 1ss 1jt 1st xxx xxx seq seq 11 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Double Throw 0 0 0 0 1 5 3 42 0 8 3 0 0 0 0 0 0 90 Damage % base 5 Damage % per level 20 min % run speed increase 200 max % run speed increase 0 min % attack speed increase 50 max % attack speed increase "If Frenzy attack hits. Barbarian is 33% faster (attack and velocity) for 2 seconds, cumulative as long as you keep hitting" "longer duration, hit bonus" 1 1 0 0 *Check ? 100 7 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Increased Speed 148 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Increased Stamina 0 0 0 0 2 5 1 44 1 8 0 0 1 0 1 0 1 7 min % speed increase 50 max % speed increase 0 ? 0 ? 0 ? 0 ? adds to walk and run velocity more adds 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Battle Orders 149 bar 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Shout 0 0 0 0 3 5 2 46 1 8 7 0 1 0 0 0 0 750 duration 150 duration/level 35 Base % increase 3 Increase per level 0 ? 0 ? "Every party member within radius, always hits and for 2X damage (h2h and missiles) for duration" bigger radius/duration 1 1 0 0 *Check ? 50 10 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Grim Ward 150 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 1 1 0 0 0 0 h2h 0 24 0 0 0 0 Find Item 0 0 0 0 3 5 3 48 1 8 4 0 1 0 0 0 0 3 radius 1 radius/level 1000 duration 0 duration/level 10 Distance to run 60 Monster scare duration "Target a corpse and turn it into a ""grim ward"", all monsters with radius turned scaredy cat for duration" bigger radius/duration 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Whirlwind 151 bar 0 0 1 3 !bw xxx xxx xxx xxx xxx seq seq 10 0 1 0 0 0 1 0 0 0 0 0 0 0 none 1 30 0 0 0 0 Leap Attack Concentrate 0 0 0 0 1 6 1 50 0 7 50 1 0 0 0 0 0 -50 Damage percent per attack 8 Damage percent per level 1 Attacks per tick 0 ? 0 ? 0 ? "Barbarian rotates in attack mode (hold contact frame) while travelling to target location, hitting all in path. Uninteruptable and always gets to target, like ""charge""" faster veloctiy/bonus to hit 1 1 0 0 *Check ? 0 5 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Berserk 152 bar 0 0 1 4 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 30 0 0 0 0 Concentrate 0 0 0 0 1 6 2 52 0 8 4 0 1 0 0 0 0 150 Damage % base 15 Damage % per level 25 min vulnerable duration 75 max vulerable duration 0 damage resist bonus 0 ? "(2X mastery curve) hit and damage bonus. Damage is ""Magic-type"". Barbarian has AC=0 and is takes 50% extra damage for duration." less duration 1 1 0 0 *Check ? 100 15 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Natural Resistance 153 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Iron Skin 0 0 0 0 2 6 3 54 1 8 0 0 1 0 1 0 1 0 min % resistance bonus 80 max % resistance bonus 0 ? 0 ? 0 ? 0 ? PASSIVE (1/2 mastery curve) bonus to all resistances curve 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
War Cry 154 bar 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Battle Cry Battle Orders 0 0 0 0 3 6 1 56 1 8 10 1 1 0 0 0 0 25 stun length 5 stun length per level 0 ? 0 ? 0 ? 0 ? all monsters in radius take 20 damage and are stunned for duration more damage/bigger radius 1 1 0 0 *Check ? 0 0 8 0 20 30 6 7 8 0 0 0 0 0 0 0 0 0 896 64000
Battle Command 155 bar 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Battle Orders 0 0 0 0 3 6 2 58 1 8 11 0 1 0 0 0 0 300 duration 100 duration/level 0 ? 0 ? 0 ? 0 ? add 1 skill level to all party members skills (+10% hit/damage for pets) bigger radius/duration 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Fire Hit 156 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 1 base damage 5 extra per level 50 duration 50 duration/level 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
UnHolyBolt 157 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SkeletonRaise 158 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 1 1 1 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MaggotEgg 159 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ShamanFire 160 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MagottUp 161 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MagottDown 162 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MagottLay 163 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
AndrialSpray 164 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Jump 165 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Swarm Move 166 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Nest 167 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Quick Strike 168 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 1 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
VampireFireball 169 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
VampireFirewall 170 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
VampireMeteor 171 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 5 radius of explosion 1 radius/level 30 Frames of fire 15 Frames of fire per level 0 ? 0 ? "giant meteor comes from sky and hits target square 60 frames after cast, immol arrow type" "more damage, more radius" 1 0 0 0 *Check "lightsource target, meteor missile, immolation explosion" 0 0 8 0 0 0 0 0 0 fire 5 10 5 5 5 0 0 0 0 0
GargoyleTrap 172 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 18 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SpiderLay 173 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 30 Slow Duration/Level 75 Duration/Level 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
VampireHeal 174 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
VampireRaise 175 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 1 1 1 1 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Submerge 176 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FetishAura 177 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 10 Base stat mod 50 Duration/Level 5 Stat Mod/Level 10 Base Range ( + 2/Lvl ) 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FetishInferno 178 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ZakarumHeal 179 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 15 ? 30 ? 5 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Emerge 180 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Resurrect 181 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 1 1 1 1 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bestow 182 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 1 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MissileSkill1 183 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MonTeleport 184 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrimeLightning 185 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrimeBolt 186 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrimeBlaze 187 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 60 duration/level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrimeFirewall 188 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrimeSpike 189 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 4 radius 0 radius per level 25 freeze frames 10 freeze frames per level 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrimeIceNova 190 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrimePoisonball 191 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PrimePoisonNova 192 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DiabLight 193 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DiabCold 194 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 200 Frames 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 mag 1 8 5 5 5 0 0 0 0 0
DiabFire 195 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
FingerMageSpider 196 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 30 base frames 10 frames per level 24 unshifted damage per frame 0 ? 0 ? 0 ? "A spider comes out, tracks you, hits you, curses you for xx frames" ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DiabWall 197 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DiabRun 198 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 22 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 17 33 9 9 9 0 0 0 0 0 0 0 0 0 0
DiabPrison 199 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
PoisonBallTrap 200 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 10 20 10 10 10 0 0 0 0 0 0 0 0 0 0
AndyPoisonBolt 201 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HireableMissile 202 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DesertTurret 203 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 26 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
ArcaneTower 204 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 27 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MonBlizzard 205 1 1 1 3 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mosquito 206 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 34 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 2 4 2 2 2 2 4 3 3 3 200 0 0 0 0
CursedBallTrapRight 207 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 10 20 5 5 5 0 0 0 0 0 0 0 0 0 0
CursedBallTrapLeft 208 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 10 20 5 5 5 0 0 0 0 0 0 0 0 0 0
MonFrozenArmor 209 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 30 % AC base 5 % AC per level 3600 Duration 300 Duration per level 30 Freeze Frames 3 Freeze Frames per level ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 STATE_FROZENARMOR 0
MonBoneArmor 210 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 20 damage absorbed 10 additional absorbed/level 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MonBoneSpirit 211 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 15 Search range 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MonCurseCast 212 1 1 1 5 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 1 1 2 0 1 8 0 0 1 0 0 0 0 3 radius 1 radius per level 300 duration 60 additional duration/level 100 % additional damage taken 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
HellMeteor 213 1 1 1 4 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
RegurgitatorEat 214 1 1 1 2 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "Regurgitator eats a corpse, causing blood to fly, and enabling his missile attack" ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MonFrenzy 215 1 1 1 3 xxx xxx xxx xxx xxx xxx seq a2 0 0 0 1 1 0 1 1 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 200 duration 25 duration/level 30 min % speed increase 110 max % speed increase 0 ? 0 ? ? ? 1 1 0 0 ? ? 10 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
QueenDeath 216 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 41 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Scroll of Identify 217 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 0 0 0 14 0 8 0 0 0 1 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? na 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Book of Identify 218 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 0 0 0 14 0 8 0 0 0 1 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? na 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Scroll of Townportal 219 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 0 0 0 18 0 8 0 0 0 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? na 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Book of Townportal 220 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 0 0 0 18 0 8 0 0 0 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? na 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Expansion 0 0 ? 0 ? 0 0 0
Raven 221 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 1 1 2 0 1 8 6 0 1 0 0 0 0 -2 monster level = your level + this + SkillLevel 5 Max ravens 0 ? 0 ? 12 Attacks 1 Attacks per level summon ravens to peck out the eyes of your foes ? 1 0 0 1 ? ? 100 15 8 0 2 4 1 1 1 0 0 0 0 0 0 0 0 0 256 1000
Plague Poppy 222 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 1 1 3 2 1 8 8 0 1 0 0 0 0 3 Number of vines 1 vines per level 20 % more hitpoints per level 0 ? 0 ? 0 ? a type of vine that spreads disease to enemies it contacts ? 1 0 0 1 ? ? 0 0 0 0 0 0 0 0 0 pois 12 16 7 12 15 100 0 0 0 256 1000
Dire Wolf 223 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 22 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 25 2 1 1 20 1 8 15 0 0 1 0 0 0 25 % stamina increase 25 % hitpoints increase 10 % min speed increase 80 % max speed increase 0 ? 0 ? turns player into a dire wolf ? 1 0 0 1 ? ? 50 15 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Shape Shifting 224 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 Dire Wolf 0 0 0 0 2 1 2 52 0 8 0 0 1 0 0 0 1 1000 Base duration of all forms 500 Bonus duration per level 20 % base hitpoint bonus 5 % hitpoints per level 0 ? 0 ? helps shape-changing abilities ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Firestorm 225 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 15 3 1 1 32 0 8 4 0 1 0 0 0 0 3 Number of missiles 0 Number of missiles per level 0 ? 0 ? 0 ? 0 ? charged bolt like fire missiles ? 1 0 0 1 ? ? 0 0 2 0 0 0 0 0 0 fire 3 6 3 4 5 0 0 0 0 256 1000
Oak Sage 226 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 1 2 0 1 2 1 16 1 8 15 1 1 0 0 0 0 30 % hitpoints more per level 5 % hitpoint bonus per level 250 duration of aura 0 ? 0 ? 0 ? spirit pet that increases the hitpoints of you and your pets ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Summon Spirit Wolf 227 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 Raven 0 1 2 0 1 2 2 6 1 8 15 0 1 0 0 0 0 50 % feral add to attack 15 % feral attack per level 5 max wolves 7 defense points per level 50 % defense bonus 15 % defense bonus per level summon a wolf to fight for you ? 1 0 0 1 ? ? 75 12 8 0 2 5 1 2 4 0 0 0 0 0 0 0 0 0 384 3000
Mammoth Bear 228 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 22 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 1 2 25 2 2 3 22 1 8 15 0 1 1 0 0 0 50 % Base bonus damage 7 % bonus damage per level 25 % increase armorclass 5 % armor class per level 100 % Base bonus hitpoints 0 % base hitpoints per level turns player into a mammoth bear ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Molten Boulder 229 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 Firestorm 0 0 0 50 3 2 1 34 0 7 20 1 1 0 0 0 0 7 Explosion Radius 0 ? 0 ? 0 ? 0 ? 0 ? huge boulder that trails fire and knocks back enemies ? 1 0 0 1 ? ? 0 0 2 0 0 0 0 0 0 fire 10 14 7 9 11 0 0 0 0 384 3000
Arctic Blast 230 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx seq seq 18 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 3 2 3 36 0 4 6 1 1 0 0 0 0 35 base ranged (doubled) 2 level range (doubled) 4 Min Mana to start casting 0 ? 0 ? 0 ? "inferno, only cold" ? 1 0 0 1 ? ? 0 0 2 0 0 0 0 0 0 cold 21 40 16 17 18 100 15 10 10 384 3000
Cycle of Life 231 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Plague Poppy 0 1 2 0 1 3 3 8 1 8 10 0 1 0 0 0 0 10 Radius 0 Life steal moved --> 20 % more hitpoints per level 0 ? 3 min % life steal 12 max % life steal a type of vine that eats corpses and gives you health ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Feral Rage 232 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx a1 seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Dire Wolf 1 0 0 0 2 3 1 54 0 8 3 0 1 0 0 0 0 500 duration 2 % life steal per hit 10 Min Speed boost 70 Max Speed boost 50 % damage increase 5 % damage increase per level "as a werewolf, work up a rage which increases speed and life stealing" ? 1 0 0 1 ? ? 20 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Maul 233 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx a1 seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Mammoth Bear 2 0 0 0 2 3 3 56 0 8 3 0 1 0 0 0 0 2 Levels per charge 3 Min charge 25 damage per charge 500 duration 25 min stun duration 150 max stun duration "as a werebear, work up a rage which increases damage and stun length" ? 1 0 0 1 ? ? 20 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Eruption 234 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 1 0 0 1 none 0 12 0 0 0 0 Molten Boulder 0 0 0 50 3 3 1 38 1 8 15 0 1 0 0 0 0 7 radius 6 Missile delay 0 Change duration in Missiles.xls 0 ? 0 ? 0 ? fiery cracks in the ground over an area ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 fire 15 25 6 12 16 0 0 0 0 512 8000
Cyclone Armor 235 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Arctic Blast 0 0 0 0 3 3 3 40 1 8 5 1 1 1 0 0 0 40 damage absorbed 12 additional absorbed/level 0 ? 0 ? 0 ? 0 ? wind shield deflects missiles ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Heart of Wolverine 236 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Oak Sage 0 1 2 0 1 4 1 10 1 8 20 1 1 0 0 0 0 20 bonus hitpoints per level 3 Bonus Level 25 % attack rating bonus 7 % attack rating bonus per lvl 20 % damage increase 7 % damage increase per level spirit pet that adds to attack rating of party within a radius ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Summon Fenris 237 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Oak Sage Summon Spirit Wolf 0 1 2 0 1 4 2 12 1 8 20 0 1 0 0 0 0 50 % feral hitpoints 25 % feral hitpoints per level 3 max fenri 500 rage duration 100 % damage with rage 4 defense points per level summon a wolf to fight for you ? 1 0 0 1 ? ? 150 8 8 0 7 12 2 3 6 0 0 0 0 0 0 0 0 0 640 16000
Rabies 238 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx sk3 sk3 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Feral Rage 1 0 0 0 2 4 1 24 0 8 10 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "as a dire wolf, bite causes disease" ? 1 0 0 1 ? ? 50 7 3 0 0 0 0 0 0 pois 6 14 4 5 6 100 0 0 0 640 16000
Fire Claws 239 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx a2 seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Feral Rage Maul 1 2 0 0 2 4 2 26 0 8 4 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "as a bear, inflicts a fiery mauling attack" ? 1 0 0 1 ? ? 50 15 8 8 0 0 0 0 0 fire 15 20 6 12 20 0 0 0 0 640 16000
Twister 240 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Cyclone Armor 0 0 0 0 3 4 2 42 0 8 7 0 1 0 0 0 0 3 Number of twisters 10 Frames the target is stunned 0 ? 0 ? 0 ? 0 ? "wtwisters that wander aimlessly, enemies are carried along with it." ? 1 0 0 1 ? ? 0 0 7 0 12 16 4 7 9 0 0 0 0 0 0 0 0 0 640 16000
Vines 241 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Cycle of Life 0 1 2 0 1 5 3 14 1 8 14 1 1 0 0 0 0 3 Number of vines 1 vines per level 20 % more hitpoints per level 0 Mana steal moved --> 1 min % mana steal 8 max % mana steal vine entity spreads parts of itself underneath enemies to slow them ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Hunger 242 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx sk3 sk3 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Fire Claws 1 2 0 0 2 5 2 58 0 8 3 0 1 0 0 0 0 50 min % life steal 200 max % life steal 50 min % mana steal 200 max % mana steal -75 % damage penalty 0 ? life/mana stealing bite attack ? 1 0 0 1 ? ? 50 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Shock Wave 243 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Maul 2 0 0 0 2 5 3 28 0 8 7 0 1 0 0 0 0 40 stun length 15 stun length per level 0 ? 0 ? 0 ? 0 ? "as a mammoth bear, slams ground to create a nova-like shockwave" ? 1 0 0 1 ? ? 0 0 8 0 10 20 3 5 7 0 0 0 0 0 0 0 0 0 768 32000
Volcano 244 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 1 0 0 1 none 0 24 0 0 0 0 Eruption 0 0 0 100 3 5 1 44 1 8 25 0 1 0 0 0 0 12 debris range 2 delay between debris 0 ? 0 ? 0 ? 0 ? ground opens up and boulders spew ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 fire 15 20 4 8 12 0 0 0 0 768 32000
Tornado 245 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 1 none 0 24 0 0 0 0 Twister 0 0 0 0 3 5 2 46 0 8 10 0 1 0 0 0 0 15 Frame delay between damage 3 Radius of damage 0 ? 0 ? 0 ? 0 ? a big twister that travels in a straighter line ? 1 0 0 1 ? ? 0 0 8 0 25 35 8 14 20 0 0 0 0 0 0 0 0 0 768 32000
Spirit of Barbs 246 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Heart of Wolverine 0 1 2 0 1 6 1 4 1 8 25 1 1 0 0 0 0 20 % hitpoints more per level 0 Bonus Level 50 % thorns damage back 10 % thorns damage back per level 3 % damage bounced back vs player 1 % additional bounce back/level vs player spirit pet that adds to damage done by party within radius ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Summon Grizzly 247 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Summon Fenris 0 1 2 0 1 6 2 18 1 8 40 0 1 0 0 0 0 25 % feral add to damage 10 % feral damage per level 0 ? 0 ? 0 ? 0 ? summons a bear to fight for you. ? 1 0 0 1 ? ? 300 0 8 0 30 60 10 15 20 0 0 0 0 0 0 0 0 0 896 64000
Fury 248 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 h2h 0 30 0 0 0 0 Rabies 1 0 0 0 2 6 1 30 0 8 4 0 1 0 0 0 0 0 ? 100 % frame rollback 100 % damage percent 17 damage % per level 2 Targets 5 Max targets "as a dire wolf, attacks multiple times on one or adjacent targets" ? 1 0 0 1 ? ? 50 7 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Armageddon 249 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Volcano Hurricane 0 0 0 150 3 6 1 50 1 8 35 0 1 0 0 0 0 250 base duration 0 duration per level 8 radius to drop meteors 6 frame delay between rocks 0 ? 0 ? "combination of volcano, eruption and hurricane" ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 fire 25 75 15 20 25 0 0 0 0 896 64000
Hurricane 250 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Tornado 0 0 0 150 3 6 2 48 1 8 30 0 1 0 0 0 0 250 base duration 0 duration per level 8 radius 15 frames per hit search 0 ? 0 ? massive windstorm that damages all enemies on screen over time ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 cold 25 50 7 10 12 50 0 0 0 896 64000
Fire Trauma 251 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 1 1 2 0 0 5 24 1 1 0 0 0 0 0 Range in missile spreadsheet 0 ? 0 ? 0 ? 0 ? 0 ? Throws several fire spikes on the ground ? 1 0 0 1 ? "exploding, sound" 0 0 7 0 0 0 0 0 0 fire 6 8 4 8 10 0 0 0 0 256 1000
Claw Mastery 252 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 2 1 2 20 0 8 0 0 1 0 0 0 1 30 Attack rating bonus percent 10 Percent attack rating per level 35 % damage percent 4 damage % per level 0 ? 0 ? passive skill increases attack rating by percent ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Psychic Hammer 253 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 4 1 0 1 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 3 22 1 6 16 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? knock back and injure target with psychic power ? 1 0 0 1 ? "target overlay, player overlay, sound" 0 0 7 0 4 10 2 3 4 0 0 0 0 0 0 0 0 0 256 1000
Tiger Strike 254 ass 0 0 1 0 !bw xxx xxx xxx xxx xxx attack a2 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 3 1 2 40 0 8 1 0 1 0 0 0 0 100 % Damage bonus 20 % damage per level 225 duration of all progressive skills 50 tohit bonus for each charge-up 0 ? 0 ? raises HTH damage ? 1 0 0 1 ? player anim 40 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Dragon Talon 255 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx kick a1 19 0 0 1 0 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 3 1 3 42 0 8 6 0 1 0 0 1 0 0 Percent damage 7 percent damage per level 0 ? 0 ? 0 ? 0 ? kick with knockback ? 1 0 0 1 ? target overlay 40 12 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
Shock Field 256 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 Fire Trauma 0 0 0 0 1 2 1 2 0 8 6 0 1 0 0 0 0 6 Number of missiles 4 Levels per missile 0 ? 0 ? 0 ? 0 ? creates an electric field that remains for a period of time ? 1 0 0 1 ? missile graphic 0 0 7 0 0 0 0 0 0 ltng 10 12 2 5 7 0 0 0 0 384 3000
Blade Sentinel 257 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 0 0 0 50 1 2 3 4 0 8 7 0 1 0 0 0 0 100 duration 0 duration per level 5 Total number assassin traps 3 Total number pet traps 0 ? 0 ? A mechanical device that roams. Proximity detonates it to do explosive damage. ? 1 0 0 1 ? "missile graphic, explosion" 0 0 8 0 6 10 3 4 5 0 0 0 0 0 0 0 0 0 384 3000
Quickness 258 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 Claw Mastery 0 0 0 0 2 2 1 36 1 8 10 0 1 1 0 0 0 15 % min increased walk speed 70 % max increased walk speed 15 min % increased attack speed 60 max % increased attack speed 3000 duration 300 duration per level raises attack speed for a ll physical attacks ? 1 0 0 1 ? cast overlay 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Fists of Fire 259 ass 0 0 1 0 hth ht1 ht2 xxx xxx xxx seq seq 16 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 0 0 0 0 3 2 1 44 0 8 2 0 1 0 0 0 0 3 Radius of explosion 4 Radius of firewall fragments 0 ? 0 ? 0 ? 0 ? 2 handed attack for HTH ? 1 0 0 1 ? player anim 50 10 8 8 0 0 0 0 0 fire 6 10 5 9 16 0 0 0 0 384 3000
Dragon Claw 260 ass 0 0 1 0 ht2 xxx xxx xxx xxx xxx seq seq 16 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 Dragon Talon 0 0 0 0 3 2 3 46 0 8 2 0 1 0 0 1 0 50 % Damage bonus 5 % damage per level 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 1 ? player anim 50 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
Charged Bolt Sentry 261 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Shock Field 0 0 0 0 1 3 1 6 1 8 13 0 1 0 0 0 0 5 Shots fired 0 ? 5 Bolts to send out 0 Bolts to send out per level 0 ? 0 ? a trap that emits charged bolts at passing enemies ? 1 0 0 1 ? "generator, missile" 0 0 7 0 0 0 0 0 0 ltng 2 14 3 4 6 0 0 0 0 512 8000
Wake of Fire Sentry 262 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Fire Trauma 0 0 0 0 1 3 2 8 1 8 13 0 1 0 0 0 0 5 Shots fired 0 ? 0 ? 0 ? 0 ? 0 ? a trap that sprays fire spikes over a wide area over time ? 1 0 0 1 ? "generator, sound" 0 0 8 0 0 0 0 0 0 fire 5 10 2 3 4 0 0 0 0 512 8000
Weapon Block 263 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Claw Mastery 0 0 0 0 2 3 2 26 1 8 0 0 1 0 0 0 1 20 min % dodge 65 max % dodge 0 ? 0 ? 0 ? 0 ? gives a chance to stun on all attacks ? 1 0 0 1 ? "cloud, sound" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Cloak of Shadows 264 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Psychic Hammer 0 0 0 0 2 3 3 24 1 8 13 0 1 0 0 0 0 30 min radius of effect 30 max radius of effect 200 duration 0 Duration per level 15 Defense decrease min 60 Defense decrease max Enemies blinded and more succeptable to damage ? 1 0 0 1 ? player overlay 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Cobra Strike 265 ass 0 0 1 0 !bw xxx xxx xxx xxx xxx attack a2 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Tiger Strike 0 0 0 0 3 3 2 50 0 8 2 0 1 0 0 0 0 40 Base percent life steal 5 Percent life steal per level 0 ? 0 ? 0 ? 0 ? Hit the target HTH to leech some of it's life into yours ? 1 0 0 1 ? target cursor 60 15 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
Blade Fury 266 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx seq cast 23 0 0 0 0 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Blade Sentinel Wake of Fire Sentry 0 0 0 0 1 4 3 10 0 3 4 1 1 0 0 0 0 0 "Don't Use, missile range mod" 0 "Don't Use, missile range mod" 3 Min Mana to start casting 3 Frame delay between blades 0 ? 0 ? a spinning blade device that goes before the player ? 1 0 0 1 ? "genarator, missile" 0 0 8 0 8 10 3 5 8 0 0 0 0 0 0 0 0 0 640 16000
Fade 267 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Quickness 0 0 0 0 2 4 1 30 1 8 10 0 1 1 0 0 0 10 min Elemental resistance 75 max elemental resist 40 min curse length reduction 90 max curse length reduction 3000 duration 300 Duration per level raises all resistance for a time ? 1 0 0 1 ? missile 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Shadow Warrior 268 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Cloak of Shadows Weapon Block 0 0 0 0 2 4 2 38 1 8 27 2 1 0 0 0 0 12 Pluse % HP per level 15 Plus % To Hit per level 12 Plus % AC per level 0 ? 0 ? 2 item quality per level creates a powerful shadow warrior to fight with you ? 1 0 0 1 ? "cloud, sound" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Claws of Thunder 269 ass 0 0 1 0 hth ht1 ht2 xxx xxx xxx seq seq 16 0 0 1 1 0 0 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Fists of Fire 0 0 0 0 3 4 1 58 0 8 4 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? summon the spirit of the tiger ? 1 0 0 1 ? target overlay 80 15 8 8 0 0 0 0 0 ltng 1 80 10 20 30 0 0 0 0 640 16000
Dragon Tail 270 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx kick a1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Dragon Claw 0 0 0 0 3 4 3 48 0 8 10 0 1 0 0 1 0 50 Percent area damage min 10 percent area damage per level 6 Radius -40 Attack rate penalty 0 ? 0 ? summersaults to a random nearby empty location ? 1 0 0 1 ? player anim 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
Lightning Sentry 271 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 24 0 0 0 0 Charged Bolt Sentry 0 0 0 0 1 5 1 12 1 8 20 0 1 0 0 0 0 10 Shots fired 0 ? 0 ? 0 ? 0 ? 0 ? a trap that shoots lightning at passing enemies ? 1 0 0 1 ? "generator, missile" 0 0 8 0 0 0 0 0 0 ltng 10 20 5 7 10 0 0 0 0 768 32000
Inferno Sentry 272 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 24 0 0 0 0 Wake of Fire Sentry 0 0 0 0 1 5 2 14 1 8 20 0 1 0 0 0 0 10 Shots fired 0 ? 0 ? 0 ? 0 ? 0 ? sprays inferno at passing targets ? 1 0 0 1 ? missile 0 0 4 0 0 0 0 0 0 fire 20 50 18 22 28 0 0 0 0 768 32000
Mind Blast 273 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 1 0 0 0 0 0 0 range 0 24 0 0 0 0 Cloak of Shadows 0 0 0 0 2 5 3 34 1 8 15 0 1 0 0 0 0 50 length of stun 5 additional lengh of stun 150 conversion length min 100 conversion length random range 15 chance for conversion 40 max chance for conversion instant blast at the taret spot. The longer it is charged up the more powerful the blast. ? 1 0 0 1 ? "target explosion, player overlay" 0 0 8 0 10 20 2 5 8 0 0 0 0 0 0 0 0 0 768 32000
Blades of Ice 274 ass 0 0 1 0 hth ht1 ht2 xxx xxx xxx seq seq 16 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Claws of Thunder 0 0 0 0 3 5 1 52 0 8 3 0 1 0 0 0 0 5 Second level radius 6 Third level radius 0 ? 0 ? 0 ? 0 ? Chance of blocking with a HTH armed left hand ? 1 0 0 1 ? player anim 70 10 8 8 0 0 0 0 0 cold 15 35 8 10 20 100 10 10 10 768 32000
Dragon Flight 275 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx seq seq 21 0 0 1 0 0 0 0 1 0 0 0 0 0 range 1 24 0 0 0 0 Dragon Tail 0 0 0 50 3 5 3 54 0 8 15 0 1 0 0 0 0 100 % Damage bonus 25 % damage per level 0 ? 0 ? 0 ? 0 ? summersaults through the air and lands to do kick damage ? 1 0 0 1 ? sequence 100 20 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
Death Sentry 276 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 30 0 0 0 0 Lightning Sentry 0 0 0 0 1 6 1 16 1 8 20 0 1 0 0 0 0 5 Shots fired 0 ? 0 ? 0 ? 0 ? 0 ? zaps corpses with a corpse explode ? 1 0 0 1 ? "missile, missile fire clouds" 0 0 8 0 0 0 0 0 0 ltng 20 30 4 5 8 0 0 0 0 896 64000
Blade Shield 277 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Blade Fury 0 0 0 0 1 6 3 18 1 8 27 2 1 1 0 0 0 500 duration 100 duration per level 25 frame delay between attacks 5 radius to attack in 0 ? 0 ? an armor of blades that slice at enemies that get too close. ? 1 0 0 1 ? ? 0 0 8 0 1 30 5 6 7 0 0 0 0 0 0 0 0 0 896 64000
Venom 278 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Fade 0 0 0 0 2 6 1 28 1 8 12 0 1 1 0 0 0 3000 duration 100 duration per level 0 ? 0 ? 0 ? 0 ? unknown ? 1 0 0 1 ? player overlay 0 0 4 0 0 0 0 0 0 pois 12 25 4 6 8 50 0 0 0 896 64000
Shadow Master 279 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Shadow Warrior 0 0 0 0 2 6 2 32 1 8 40 0 1 0 0 0 0 15 Pluse % HP per level 15 Plus % To Hit per level 5 Min % resist all 80 Max % resist all 0 ? 3 item quality per level ? ? 1 0 0 1 ? "cloud, sound" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Royal Strike 280 ass 0 0 1 0 !bw xxx xxx xxx xxx xxx attack a2 0 0 0 1 1 0 0 1 0 0 0 0 0 0 h2h 1 30 0 0 0 0 Cobra Strike Blades of Ice 0 0 0 0 3 6 2 56 0 8 4 0 1 0 0 0 0 8 radius of jump to next target 6 radius of meteor explosion 30 Frames of fire 15 Frames of fire per level 16 chaos ice bolts 0 ? Hit the target HTH to leech some of it's life into yours ? 1 0 0 1 ? target cursor 70 15 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
Wake Of Destruction Sentry 281 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 6 Number of missiles 2 Number of missiles per level 0 ? 2 Min Range 0 ? 0 ? Monster created by Drop Spike Generator uses this skill "more spikes, lasts longer" 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Imp Inferno 282 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 6 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 30 base ranged (doubled) 3 level range (doubled) 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 4 0 0 0 0 0 0 fire 12 25 10 10 10 0 0 0 0 0
Imp Fireball 283 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "fires fireballs and it will explode, okay…I dont really care" ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Taunt 284 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 45 Delay in poison clouds 3 Delay in lightning 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Corpse Explode 285 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk3 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 1 % of base monster HP min damage 1 % of base monster HP max damage 6 radius (half squares) for damage 1 additional radius/level (half squares) for damage 40 Radius of search for corpses 0 ? targeted corpse explodes doing damage to all in radius and destroying remains bigger radius 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Monster Spawn 286 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk3 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Catapult Charged Ball 287 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 4 Charged bolts per level 0 ? 0 ? 0 ? 0 ? 0 ? Launches a lightning ball that creates charged bolts More bolts 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Catapult Spike Ball 288 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 20 Spikes to launch 5 Spikes per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Suck Blood 289 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 25 Percent life to boss 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0
Cry Help 290 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 100 Time for minions to attack target 20 Time per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Healing Vortex 291 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 10 20 5 5 5 0 0 0 0 0 0 0 0 0 0
Teleport 2 292 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Self-resurrect 293 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Vine Attack 294 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 4 Vines launched 1 vines per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Overseer Whip 295 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 65 Chance Bloodlust 250 Bloodlust duration 80 Velocity change 80 Speed change 50 Armor change 100 Damage change ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Barbs Aura 296 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 1 0 0 30 Radius 0 radius per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wolverine Aura 297 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 1 0 0 30 Radius 0 radius per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Oak Sage Aura 298 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 1 0 0 30 Radius 0 radius per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Imp Fire Missile 299 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Impregnate 300 1 1 1 0 xxx xxx xxx xxx xxx xxx sk1 sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Siege Beast Stomp 301 0 0 0 0 xxx xxx xxx xxx xxx xxx a2 a2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 8 screen shake magnitude 5 screen shake bulid 20 screen shake duration 15 screen shake fade 25 radius of effect 0 ? Siege beast stomps and hurts stuff no levels 1 0 0 0 ? ? 0 0 8 0 20 60 10 10 10 0 0 0 0 0 0 0 0 0 0
MinionSpawner 302 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
CatapultBlizzard 303 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
CatapultPlague 304 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
CatapultMeteor 305 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 5 radius of explosion 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
BoltSentry 306 1 1 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 Refer to skill Charged Bolt Sentry 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
CorpseCycler 307 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
DeathMaul 308 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 1 ? ? 0 0 8 0 10 20 4 4 4 0 0 0 0 0 0 0 0 0 0
Defense Curse 309 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 3 radius 1 radius per level 200 duration 75 additional duration/level -50 % defense change -5 %defense per level ? ? 1 1 0 1 ? ? 0 0 8 0 10 20 4 4 4 0 0 0 0 0 0 0 0 0 0
Blood Mana 310 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 3 radius 1 radius per level 200 duration 75 additional duration/level 40 Max hitpoints to remove curse 0 ? ? ? 1 1 0 1 ? ? 0 0 8 0 10 20 4 4 4 0 0 0 0 0 0 0 0 0 0
inferno sentry 311 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 40 range times two 0 0 0 0 0 0 0 0 0 ? ? ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
death sentry 312 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 1 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 40 % of base monster HP min damage 80 % of base monster HP max damage 10 radius (half squares) 1 additional radius/level (half squares) 0 0 0 ? ? ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sentry lightning 313 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 10 minimum damage 20 max damage 4 increase in dam/level (min & max) 0 ? 0 ? 0 ? ? ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
fenris rage 314 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Tentacle 315 1 1 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Baal Nova 316 1 1 1 0 xxx xxx xxx xxx xxx xxx sk3 sk3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 fire 50 75 16 16 16 0 0 0 0 0
Baal Inferno 317 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 75 base ranged (doubled) 5 level range (doubled) 1 Bolts to send out 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 mag 64 96 64 64 64 0 0 0 0 0
Baal Cold Missiles 318 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 cold 20 40 6 8 11 200 50 50 50 STATE_NONE 0

51
txt/SoundEnviron.txt Normal file
View File

@ -0,0 +1,51 @@
Handle Index Song Day Ambience Night Ambience Day Event Night Event Event Delay Indoors Material 1 Material 2 EAX Environ EAX Env Size EAX Env Diff EAX Room Vol EAX Room HF EAX Decay Time EAX Decay HF EAX Reflect EAX Reflect Delay EAX Reverb EAX Rev Delay EAX Room Roll EAX Air Absorb
ESOUNDENVIRON_NONE 0 0 0 0 0 0 250 0 0 0 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_TOWN_1 1 4672 70 71 0 0 250 0 1 5 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_WILDERNESS 2 4678 70 71 192 197 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_TRISTRAM 3 4676 70 71 192 197 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_CAVE 4 4656 54 54 87 87 200 1 1 0 5 11600 1000 -1000 -300 2700 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_CRYPT 5 4657 55 55 95 95 500 1 2 0 5 11600 1000 -1240 -300 1700 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_MONASTERY 6 4666 63 63 157 157 250 0 1 3 7 19600 1000 -1650 -500 3300 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_COURTYARD 7 4666 63 63 157 157 250 0 1 3 7 19600 1000 -1650 -500 3300 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_BARRACKS 8 4666 52 52 82 82 800 1 1 0 6 21600 1000 -1540 -476 2600 590 -789 20 -289 30 0 -5000
ESOUNDENVIRON_CATHEDRAL 9 4666 53 53 77 77 500 1 2 0 7 19600 1000 -1240 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_CATACOMBS 10 4666 52 52 82 82 800 1 2 0 5 11600 1000 -1600 -300 2310 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_ANDARIEL_LAIR 11 4666 52 52 82 82 250 1 2 0 6 11600 1000 -1540 -476 2600 590 -789 20 -289 30 0 -5000
ESOUNDENVIRON_TOWN_2 12 4673 56 57 172 177 250 0 3 4 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_DESERT 13 4658 56 57 100 100 250 0 4 3 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_VALLEY_OF_KINGS 14 4677 56 57 100 100 250 0 4 3 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_SEWERS 15 4669 65 65 87 87 150 1 2 0 13 13500 1000 -1650 -237 1400 790 -1214 13 395 20 0 -5000
ESOUNDENVIRON_HAREM 16 4660 58 58 110 110 750 1 2 0 9 36200 1000 -1700 -698 4000 330 -1166 20 16 30 0 -5000
ESOUNDENVIRON_CORRUPT_HAREM 17 4660 58 58 110 110 750 1 2 0 9 36200 1000 -1700 -698 4000 330 -1166 20 16 30 0 -5000
ESOUNDENVIRON_BASEMENT 18 4660 52 52 110 110 750 1 2 0 10 50300 1000 -1592 -1000 3300 230 -602 20 198 30 0 -5000
ESOUNDENVIRON_TOMBS 19 4671 54 54 138 138 500 1 2 4 9 36200 1000 -1356 -698 3400 330 -1166 20 16 56 0 -5000
ESOUNDENVIRON_MAGGOT_LAIR 20 4664 67 67 77 77 500 1 1 0 13 13500 1000 -1500 -237 1800 790 -1214 13 395 20 0 -5000
ESOUNDENVIRON_DURIEL_LAIR 21 4671 67 67 77 77 500 1 2 0 13 13500 1000 -1500 -237 2000 790 -1214 13 395 20 0 -5000
ESOUNDENVIRON_ARCANE 22 4668 62 62 0 0 250 0 2 0 7 19600 1000 -2091 -500 4000 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_TOWN_3 23 4674 68 69 182 187 500 0 1 0 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_JUNGLE 24 4661 59 60 118 123 300 0 1 0 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_KURAST 25 4662 68 60 128 133 325 0 1 0 17 100000 270 -2175 -2500 1800 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_KURAST_SEWER 26 4663 54 54 95 95 500 1 2 0 5 11600 1000 -1200 -300 2700 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_DUNGEON 27 4670 65 65 138 138 250 1 2 0 5 11600 1000 -1240 -300 1700 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_TEMPLE 28 4663 53 53 162 162 250 0 2 0 9 36200 1000 -1700 -698 4100 1167 -1166 20 16 30 0 -5000
ESOUNDENVIRON_SPIDER_LAIR 29 4670 54 54 72 72 250 1 1 0 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
ESOUNDENVIRON_MEPHISTO_LAIR 30 4663 52 52 162 162 250 1 2 0 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_TOWN_4 31 4675 62 62 0 0 500 0 1 0 5 11600 1000 -1600 -300 2310 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_MESA 32 4665 62 62 82 82 300 0 1 0 12 1800 1000 -2300 -300 4700 590 -1217 7 441 11 0 -5000
ESOUNDENVIRON_LAVA 33 4665 61 61 143 143 300 0 1 0 12 1800 1000 -2300 -300 4700 590 -1217 7 441 11 0 -5000
ESOUNDENVIRON_DIABLO_LAIR 34 4659 61 61 143 143 300 0 1 0 12 1800 1000 -2100 -300 4700 590 -1217 7 441 11 0 -5000
ESOUNDENVIRON_GUILD 35 4678 70 71 0 0 250 0 1 5 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_XTOWN 36 4683 70 71 0 0 250 0 1 3 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_BARRICADE 37 4681 70 71 72 77 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_BARRICADESNOW 38 4681 70 71 72 77 250 0 1 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_ICECAVE1 39 4680 54 54 87 138 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
ESOUNDENVIRON_ICECAVE2 40 4680 54 54 138 87 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
ESOUNDENVIRON_ICECAVE3 41 4680 54 54 87 138 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
ESOUNDENVIRON_MOUNTAINTOP 42 4681 63 63 72 77 250 0 3 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_XTEMPLEENTRANCE 43 4681 63 63 77 72 500 0 1 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_XTEMPLE 44 4682 52 52 162 162 250 1 1 2 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_XTEMPLEBOSS 45 4682 52 52 72 72 250 1 1 2 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_XHELL 46 4665 62 62 143 143 300 1 1 0 12 1800 1000 -2300 -300 4700 590 -1217 7 441 11 0 -5000
ESOUNDENVIRON_BAALTEMPLE 47 4679 52 52 82 82 250 1 2 5 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_BAALTHRONE 48 4679 52 52 82 82 250 1 2 5 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_WORLDSTONE 49 4679 53 53 82 82 250 1 2 0 7 19600 1000 -1240 -500 4750 700 -1230 20 -2 29 0 -5000

4699
txt/Sounds.txt Normal file

File diff suppressed because it is too large Load Diff

161
txt/States.txt Normal file
View File

@ -0,0 +1,161 @@
state
STATE_NONE
STATE_FREEZE
STATE_POISON
STATE_RESISTFIRE
STATE_RESISTCOLD
STATE_RESISTLIGHT
STATE_RESISTMAGIC
STATE_PLAYERBODY
STATE_RESISTALL
STATE_AMPLIFYDAMAGE
STATE_FROZENARMOR
STATE_COLD
STATE_INFERNO
STATE_BLAZE
STATE_BONEARMOR
STATE_CONCENTRATE
STATE_ENCHANT
STATE_INNERSIGHT
STATE_SKILL_MOVE
STATE_WEAKEN
STATE_CHILLINGARMOR
STATE_STUNNED
STATE_SPIDERLAY
STATE_DIMVISION
STATE_SLOWED
STATE_FETISHAURA
STATE_SHOUT
STATE_TAUNT
STATE_CONVICTION
STATE_CONVICTED
STATE_ENERGYSHIELD
STATE_VENOMCLAWS
STATE_BATTLEORDERS
STATE_MIGHT
STATE_PRAYER
STATE_HOLYFIRE
STATE_THORNS
STATE_DEFIANCE
STATE_THUNDERSTORM
STATE_LIGHTNINGBOLT
STATE_BLESSEDAIM
STATE_STAMINA
STATE_CONCENTRATION
STATE_HOLYWIND
STATE_HOLYWINDCOLD
STATE_CLEANSING
STATE_HOLYSHOCK
STATE_SANCTUARY
STATE_MEDITATION
STATE_FANATICISM
STATE_REDEMPTION
STATE_BATTLECOMMAND
STATE_PREVENTHEAL
STATE_CONVERSION
STATE_UNINTERRUPTABLE
STATE_IRONMAIDEN
STATE_TERROR
STATE_ATTRACT
STATE_LIFETAP
STATE_CONFUSE
STATE_DECREPIFY
STATE_LOWERRESIST
STATE_OPENWOUNDS
STATE_DOPPLEZON
STATE_CRITICALSTRIKE
STATE_DODGE
STATE_AVOID
STATE_PENETRATE
STATE_EVADE
STATE_PIERCE
STATE_WARMTH
STATE_FIREMASTERY
STATE_LIGHTNINGMASTERY
STATE_COLDMASTERY
STATE_SWORDMASTERY
STATE_AXEMASTERY
STATE_MACEMASTERY
STATE_POLEARMMASTERY
STATE_THROWINGMASTERY
STATE_SPEARMASTERY
STATE_INCREASEDSTAMINA
STATE_IRONSKIN
STATE_INCREASEDSPEED
STATE_NATURALRESISTANCE
STATE_FINGERMAGECURSE
STATE_NOMANAREGEN
STATE_JUSTHIT
STATE_SLOWMISSILES
STATE_SHIVERARMOR
STATE_BATTLECRY
STATE_BLUE
STATE_RED
STATE_DEATH_DELAY
STATE_VALKYRIE
STATE_FRENZY
STATE_BERSERK
STATE_REVIVE
STATE_ITEMFULLSET
STATE_SOURCEUNIT
STATE_REDEEMED
STATE_HEALTHPOT
STATE_HOLYSHIELD
STATE_JUST_PORTALED
STATE_MONFRENZY
STATE_CORPSE_NODRAW
STATE_ALIGNMENT
STATE_MANAPOT
STATE_SHATTER
STATE_SYNC_WARPED
STATE_CONVERSION_SAVE
STATE_PREGNANT
STATE_111
STATE_RABIES
STATE_DEFENSE_CURSE
STATE_BLOOD_MANA
STATE_BURNING
STATE_DRAGONFLIGHT
STATE_MAUL
STATE_CORPSE_NOSELECT
STATE_SHADOWWARRIOR
STATE_FERALRAGE
STATE_SKILLDELAY
STATE_PROGRESSIVE_DAMAGE
STATE_PROGRESSIVE_STEAL
STATE_PROGRESSIVE_OTHER
STATE_PROGRESSIVE_FIRE
STATE_PROGRESSIVE_COLD
STATE_PROGRESSIVE_LIGHTNING
STATE_SHRINE_ARMOR
STATE_SHRINE_COMBAT
STATE_SHRINE_RESIST_LIGHTNING
STATE_SHRINE_RESIST_FIRE
STATE_SHRINE_RESIST_COLD
STATE_SHRINE_RESIST_POISON
STATE_SHRINE_SKILL
STATE_SHRINE_MANA_REGEN
STATE_SHRINE_STAMINA
STATE_SHRINE_EXPERIENCE
STATE_FENRIS_RAGE
STATE_WOLF
STATE_BEAR
STATE_BLOODLUST
STATE_CHANGECLASS
STATE_ATTACHED
STATE_HURRICANE
STATE_ARMAGEDDON
STATE_INVIS
STATE_BARBS
STATE_WOLVERINE
STATE_OAKSAGE
STATE_VINE_BEAST
STATE_CYCLONEARMOR
STATE_CLAWMASTERY
STATE_CLOAK_OF_SHADOWS
STATE_RECYCLED
STATE_WEAPONBLOCK
STATE_CLOAKED
STATE_QUICKNESS
STATE_BLADESHIELD
STATE_FADE

5
txt/StorePage.txt Normal file
View File

@ -0,0 +1,5 @@
Store Page Code
Armor Page armo
Weapons Page weap
Magic Page mag
Misc Page misc

68
txt/SuperUniques.txt Normal file
View File

@ -0,0 +1,68 @@
Name Class Mod1 Mod2 Mod3 MinGrp MaxGrp EClass AutoPos Stacks
Bishibosh 58 8 9 0 2 2 0 1 0
Bonebreak 0 5 8 0 5 5 0 1 0
Coldcrow 160 18 0 0 4 4 0 1 0
Rakanishu 20 17 6 0 8 8 0 0 0
Treehead WoodFist 24 5 6 0 2 2 0 1 0
Griswold 365 7 0 0 0 0 0 1 0
The Countess 45 9 0 0 6 6 0 1 0
Pitspawn Fouldog 11 7 18 0 4 4 0 1 0
Flamespike the Crawler 66 9 7 0 6 6 0 1 0
Boneash 276 8 5 18 0 0 0 1 0
Radament 229 6 0 0 3 3 0 1 0
Bloodwitch the Wild 83 5 7 0 5 5 0 1 0
Fangskin 75 17 6 0 4 4 0 1 0
Beetleburst 92 8 0 0 3 3 0 1 0
Leatherarm 97 5 18 0 5 5 0 1 0
Coldworm the Burrower 284 18 8 0 0 0 0 0 0
Fire Eye 31 9 6 0 3 3 0 1 0
Dark Elder 9 6 8 0 4 4 0 1 0
The Summoner 250 5 6 0 0 0 0 1 0
Ancient Kaa the Soulless 103 25 5 17 3 3 0 1 0
The Smith 402 5 0 0 0 0 0 1 0
Web Mage the Burning 125 5 7 0 5 5 0 1 0
Witch Doctor Endugu 281 8 9 0 6 6 0 1 0
Stormtree 129 6 17 0 4 4 0 1 0
Sarina the Battlemaid 47 6 27 0 9 9 0 1 0
Icehawk Riftwing 138 18 26 0 7 7 0 1 0
Ismail Vilehand 345 6 7 0 2 2 0 1 0
Geleb Flamefinger 346 5 9 0 2 2 0 1 0
Bremm Sparkfist 347 30 18 0 2 2 0 1 0
Toorc Icefist 345 18 28 0 0 0 0 1 0
Wyand Voidfinger 346 25 26 0 0 0 0 1 0
Maffer Dragonhand 347 5 6 0 0 0 0 1 0
Winged Death 362 5 7 0 7 7 0 1 0
The Tormentor 120 8 9 0 5 5 0 1 0
Taintbreeder 299 6 0 0 6 6 0 1 0
Riftwraith the Cannibal 308 18 26 0 8 8 0 1 0
Infector of Souls 362 6 27 0 9 9 0 1 0
Lord De Seis 312 5 30 24 5 5 0 1 0
Grand Vizier of Chaos 306 5 9 0 9 9 0 1 0
The Cow King 391 8 17 0 6 6 0 1 0
Corpsefire 5 27 0 0 5 5 0 1 0
The Feature Creep 409 27 30 0 0 0 0 1 0
Expansion
Siege Boss 43 5 0 0 0 0 1 0 1
Ancient Barbarian 1 104 0 0 0 0 0 1 0 1
Ancient Barbarian 2 105 0 0 0 0 0 1 0 1
Ancient Barbarian 3 106 0 0 0 0 0 1 0 1
Axe Dweller 72 8 9 0 2 2 1 0 0
Bonesaw Breaker 1 5 8 0 5 5 1 0 0
Dac Farren 58 18 0 0 4 4 1 0 0
Megaflow Rectifier 17 1 6 0 8 8 1 0 0
Eyeback Unleashed 93 5 6 0 2 2 1 0 0
Threash Socket 7 7 0 0 0 0 1 0 0
Pindleskin 4 9 0 0 6 6 1 0 0
Snapchip Shatter 65 7 18 0 4 4 1 0 0
Anodized Elite 36 9 7 0 6 6 1 0 0
Vinvear Molech 39 8 5 18 0 0 1 0 0
Sharp Tooth Sayer 45 6 0 0 3 3 1 0 0
Magma Torquer 60 5 7 0 5 5 1 0 0
Blaze Ripper 97 17 6 0 4 4 1 0 0
Frozenstein 13 18 25 0 5 6 1 0 0
Nihlathak 90 0 0 0 0 0 1 0 1
Baal Subject 1 62 9 0 0 5 5 0 0 1
Baal Subject 2 105 23 0 0 3 3 0 0 1
Baal Subject 3 121 17 0 0 5 5 1 0 1
Baal Subject 4 122 6 0 0 8 8 1 0 1
Baal Subject 5 135 27 0 0 5 5 1 0 1

708
txt/TreasureClass.txt Normal file
View File

@ -0,0 +1,708 @@
Treasure Class Picks Unique Set Rare Magic NoDrop Item1 Prob1 Item2 Prob2 Item3 Prob3 Item4 Prob4 Item5 Prob5 Item6 Prob6 Item7 Prob7 Item8 Prob8 Item9 Prob9 Item10 Prob10 Term
Gold 1 gld 1 0
Jewelry A 1 rin 8 amu 4 jew 1 cm3 2 cm2 2 cm1 2 0
Jewelry B 1 rin 8 amu 4 jew 1 cm3 2 cm2 2 cm1 2 0
Jewelry C 1 rin 8 amu 4 jew 1 cm3 2 cm2 2 cm1 2 0
Chipped Gem 1 gcv 1 gcy 1 gcb 1 gcg 1 gcr 1 gcw 1 skc 1 0
Flawed Gem 1 gfv 1 gfy 1 gfb 1 gfg 1 gfr 1 gfw 1 skf 1 0
Normal Gem 1 gsv 1 gsy 1 gsb 1 gsg 1 gsr 1 gsw 1 sku 1 0
Flawless Gem 1 gzv 1 gly 1 glb 1 glg 1 glr 1 glw 1 skl 1 0
Perfect Gem 1 gpv 1 gpy 1 gpb 1 gpg 1 gpr 1 gpw 1 skz 1 0
Ammo 1 aqv 1 cqv 1 0
Misc 0 1 key 3 tsc 3 isc 3 opl 2 gpl 2 0
Misc 1 1 key 3 tsc 3 isc 3 opm 2 gpm 2 0
Misc 2 1 key 3 tsc 3 isc 3 ops 2 gps 2 0
Hpotion 1 1 hp1 8 hp2 3 mp1 3 mp2 2 rvs 1 0
Hpotion 2 1 hp1 4 hp2 4 hp3 2 mp2 2 mp3 2 rvs 1 0
Hpotion 3 1 hp2 4 hp3 4 hp4 2 mp3 2 mp4 2 rvs 1 0
Hpotion 4 1 hp3 4 hp4 4 hp5 2 mp4 2 mp5 2 rvs 1 0
Hpotion 5 1 hp3 2 hp4 4 hp5 4 mp5 4 rvs 1 0
Hpotion 6 1 hp4 4 hp5 6 mp4 2 mp5 4 rvs 1 0
Potion 1 1 hp1 12 hp2 4 mp1 5 mp2 4 rvs 1 vps 4 0
Potion 2 1 hp1 4 hp2 8 hp3 5 mp2 2 mp3 5 rvs 1 vps 2 yps 3 wms 1 0
Potion 3 1 hp2 6 hp3 6 hp4 4 mp3 3 mp4 3 rvs 1 vps 2 yps 2 wms 1 0
Potion 4 1 hp3 6 hp4 6 hp5 4 mp4 3 mp5 3 rvs 1 vps 2 yps 2 wms 1 0
Potion 5 1 hp3 4 hp4 6 hp5 6 mp5 5 rvs 1 vps 2 yps 2 wms 1 0
Potion 6 1 hp4 6 hp5 8 mp4 1 mp5 5 rvs 1 vps 2 yps 2 wms 1 0
Runes 1 1 r01 3 r02 2
Runes 2 1 r03 3 r04 2 Runes 1 9
Runes 3 1 r05 3 r06 2 Runes 2 20
Runes 4 1 r07 3 r08 2 Runes 3 30
Runes 5 1 r09 3 r10 2 Runes 4 50
Runes 6 1 r11 3 r12 2 Runes 5 90
Runes 7 1 r13 3 r14 2 Runes 6 170
Runes 8 1 r15 3 r16 2 Runes 7 330
Runes 9 1 r17 3 r18 2 Runes 8 650
Runes 10 1 r19 3 r20 2 Runes 9 1290
Runes 11 1 r21 3 r22 2 Runes 10 2570
Runes 12 1 r23 3 r24 2 Runes 11 5130
Runes 13 1 r25 3 r26 2 Runes 12 10250
Runes 14 1 r27 3 r28 2 Runes 13 20340
Runes 15 1 r29 3 r30 2 Runes 14 40970
Runes 16 1 r31 3 r32 2 Runes 15 81880
Runes 17 1 r33 1 Runes 16 32770
Act 1 Junk 1 Potion 1 8 Misc 0 4 Ammo 4 0
Act 2 Junk 1 Act 1 Junk 2 Potion 2 8 Misc 1 4 Ammo 4 0
Act 3 Junk 1 Act 2 Junk 2 Potion 3 8 Misc 2 4 Ammo 4 0
Act 4 Junk 1 Act 3 Junk 2 Potion 4 8 Misc 2 4 Ammo 4 0
Act 5 Junk 1 Act 4 Junk 2 Potion 5 8 Misc 2 4 Ammo 4 0
Act 1 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 2 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 3 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 4 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 5 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 1 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 2 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 3 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 4 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 5 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 1 Equip A 1 weap3 7 armo3 7 0
Act 1 Equip B 1 weap3 3 armo3 3 weap6 7 armo6 7 0
Act 1 Equip C 1 weap3 1 armo3 1 weap6 3 armo6 3 weap9 7 armo9 7 weap12 1 armo12 1 0
Act 2 Equip A 1 weap6 1 armo6 1 weap9 3 armo9 3 weap12 7 armo12 7 weap15 1 armo15 1 Act 1 Equip C 20 0
Act 2 Equip B 1 weap9 1 armo9 1 weap12 3 armo12 3 weap15 7 armo15 7 weap18 1 armo18 1 Act 2 Equip A 20 0
Act 2 Equip C 1 weap12 1 armo12 1 weap15 3 armo15 3 weap18 7 armo18 7 weap21 1 armo21 1 Act 2 Equip B 20 0
Act 3 Equip A 1 weap15 1 armo15 1 weap18 3 armo18 3 weap21 7 armo21 7 weap24 1 armo24 1 Act 2 Equip C 40 0
Act 3 Equip B 1 weap18 1 armo18 1 weap21 3 armo21 3 weap24 7 armo24 7 weap27 1 armo27 1 Act 3 Equip A 40 0
Act 3 Equip C 1 weap21 1 armo21 1 weap24 3 armo24 3 weap27 7 armo27 7 weap30 1 armo30 1 Act 3 Equip B 40 0
Act 4 Equip A 1 weap24 1 armo24 1 weap27 3 armo27 3 weap30 7 armo30 7 weap33 1 armo33 1 Act 3 Equip C 60 0
Act 4 Equip B 1 weap27 1 armo27 1 weap30 3 armo30 3 weap33 7 armo33 7 weap36 1 armo36 1 Act 4 Equip A 60 0
Act 5 Equip A 1 weap27 1 armo27 1 weap30 3 armo30 3 weap33 7 armo33 7 weap36 5 armo36 5 Act 4 Equip B 80 0
Act 5 Equip B 1 weap30 1 armo30 1 weap33 3 armo33 3 weap36 7 armo36 7 weap39 1 armo39 1 Act 5 Equip A 80 0
Act 5 Equip C 1 weap30 1 armo30 1 weap33 3 armo33 3 weap36 7 armo36 7 weap39 1 armo39 1 Act 5 Equip B 80 0
Act 1 (N) Equip A 1 weap30 1 armo30 1 weap33 3 armo33 3 weap36 7 armo36 7 weap39 5 armo39 5 Act 5 Equip C 100 Act 5 Equip B 100 0
Act 1 (N) Equip B 1 weap33 1 armo33 1 weap36 3 armo36 3 weap39 7 armo39 7 weap42 1 armo42 1 Act 1 (N) Equip A 110 Act 5 Equip B 110 0
Act 2 (N) Equip A 1 weap33 1 armo33 1 weap36 3 armo36 3 weap39 7 armo39 7 weap42 5 armo42 5 Act 1 (N) Equip B 120 Act 5 Equip B 120 0
Act 2 (N) Equip B 1 weap36 1 armo36 1 weap39 3 armo39 3 weap42 7 armo42 7 weap45 1 armo45 1 Act 2 (N) Equip A 130 Act 5 Equip B 130 0
Act 3 (N) Equip A 1 weap36 1 armo36 1 weap39 3 armo39 3 weap42 7 armo42 7 weap45 5 armo45 5 Act 2 (N) Equip B 140 Act 5 Equip B 140 0
Act 3 (N) Equip B 1 weap39 1 armo39 1 weap42 3 armo42 3 weap45 7 armo45 7 weap48 1 armo48 1 Act 3 (N) Equip A 150 Act 5 Equip B 150 0
Act 4 (N) Equip A 1 weap39 1 armo39 1 weap42 3 armo42 3 weap45 7 armo45 7 weap48 5 armo48 5 Act 3 (N) Equip B 160 Act 5 Equip B 160 0
Act 4 (N) Equip B 1 weap42 1 armo42 1 weap45 3 armo45 3 weap48 7 armo48 7 weap51 1 armo51 1 Act 4 (N) Equip A 170 Act 5 Equip B 170 0
Act 5 (N) Equip A 1 weap42 1 armo42 1 weap45 3 armo45 3 weap48 7 armo48 7 weap51 5 armo51 5 Act 4 (N) Equip B 180 Act 5 Equip B 180 0
Act 5 (N) Equip B 1 weap45 1 armo45 1 weap48 3 armo48 3 weap51 7 armo51 7 weap54 1 armo54 1 Act 5 (N) Equip A 190 Act 5 Equip B 190 0
Act 5 (N) Equip C 1 weap45 1 armo45 1 weap48 3 armo48 3 weap51 7 armo51 7 weap54 1 armo54 1 Act 5 (N) Equip B 200 Act 5 Equip B 200 0
Act 1 (H) Equip A 1 weap45 1 armo45 1 weap48 3 armo48 3 weap51 7 armo51 7 weap54 5 armo54 5 Act 5 (N) Equip C 210 Act 5 (N) Equip C 600 0
Act 1 (H) Equip B 1 weap48 1 armo48 1 weap51 3 armo51 3 weap54 7 armo54 7 weap57 1 armo57 1 Act 1 (H) Equip A 220 Act 5 (N) Equip C 640 0
Act 2 (H) Equip A 1 weap48 1 armo48 1 weap51 3 armo51 3 weap54 7 armo54 7 weap57 5 armo57 5 Act 1 (H) Equip B 230 Act 5 (N) Equip C 680 0
Act 2 (H) Equip B 1 weap51 1 armo51 1 weap54 3 armo54 3 weap57 7 armo57 7 weap60 1 armo60 1 Act 2 (H) Equip A 240 Act 5 (N) Equip C 720 0
Act 3 (H) Equip A 1 weap51 1 armo51 1 weap54 3 armo54 3 weap57 7 armo57 7 weap60 5 armo60 5 Act 2 (H) Equip B 250 Act 5 (N) Equip C 760 0
Act 3 (H) Equip B 1 weap54 1 armo54 1 weap57 3 armo57 3 weap60 7 armo60 7 weap63 1 armo63 1 Act 3 (H) Equip A 260 Act 5 (N) Equip C 800 0
Act 4 (H) Equip A 1 weap54 1 armo54 1 weap57 3 armo57 3 weap60 7 armo60 7 weap63 5 armo63 5 Act 3 (H) Equip B 270 Act 5 (N) Equip C 840 0
Act 4 (H) Equip B 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 1 armo66 1 Act 4 (H) Equip A 280 Act 5 (N) Equip C 880 0
Act 5 (H) Equip A 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 3 armo66 3 Act 4 (H) Equip B 290 Act 5 (N) Equip C 920 0
Act 5 (H) Equip B 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 5 armo66 5 Act 5 (H) Equip A 300 Act 5 (N) Equip C 960 0
Act 5 (H) Equip C 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 5 armo66 5 Act 5 (H) Equip B 310 Act 5 (N) Equip C 1000 0
Act 1 Melee A 1 mele3 7 armo3 7 0
Act 1 Melee B 1 mele3 3 armo3 3 mele6 7 armo6 7 0
Act 1 Melee C 1 mele3 1 armo3 1 mele6 3 armo6 3 mele9 7 armo9 7 mele12 1 armo12 1 0
Act 2 Melee A 1 mele6 1 armo6 1 mele9 3 armo9 3 mele12 7 armo12 7 mele15 1 armo15 1 Act 1 Melee C 20 0
Act 2 Melee B 1 mele9 1 armo9 1 mele12 3 armo12 3 mele15 7 armo15 7 mele18 1 armo18 1 Act 2 Melee A 20 0
Act 2 Melee C 1 mele12 1 armo12 1 mele15 3 armo15 3 mele18 7 armo18 7 mele21 1 armo21 1 Act 2 Melee B 20 0
Act 3 Melee A 1 mele15 1 armo15 1 mele18 3 armo18 3 mele21 7 armo21 7 mele24 1 armo24 1 Act 2 Melee C 40 0
Act 3 Melee B 1 mele18 1 armo18 1 mele21 3 armo21 3 mele24 7 armo24 7 mele27 1 armo27 1 Act 3 Melee A 40 0
Act 3 Melee C 1 mele21 1 armo21 1 mele24 3 armo24 3 mele27 7 armo27 7 mele30 1 armo30 1 Act 3 Melee B 40 0
Act 4 Melee A 1 mele24 1 armo24 1 mele27 3 armo27 3 mele30 7 armo30 7 mele33 1 armo33 1 Act 3 Melee C 60 0
Act 4 Melee B 1 mele27 1 armo27 1 mele30 3 armo30 3 mele33 7 armo33 7 mele36 1 armo36 1 Act 4 Melee A 60 0
Act 5 Melee A 1 mele27 1 armo27 1 mele30 3 armo30 3 mele33 7 armo33 7 mele36 5 armo36 5 Act 4 Melee B 80 0
Act 5 Melee B 1 mele30 1 armo30 1 mele33 3 armo33 3 mele36 7 armo36 7 mele39 1 armo39 1 Act 5 Melee A 80 0
Act 5 Melee C 1 mele30 1 armo30 1 mele33 3 armo33 3 mele36 7 armo36 7 mele39 1 armo39 1 Act 5 Melee B 80 0
Act 1 (N) Melee A 1 mele30 1 armo30 1 mele33 3 armo33 3 mele36 7 armo36 7 mele39 5 armo39 5 Act 5 Melee C 100 Act 5 Melee B 100 0
Act 1 (N) Melee B 1 mele33 1 armo33 1 mele36 3 armo36 3 mele39 7 armo39 7 mele42 1 armo42 1 Act 1 (N) Melee A 110 Act 5 Melee B 110 0
Act 2 (N) Melee A 1 mele33 1 armo33 1 mele36 3 armo36 3 mele39 7 armo39 7 mele42 5 armo42 5 Act 1 (N) Melee B 120 Act 5 Melee B 120 0
Act 2 (N) Melee B 1 mele36 1 armo36 1 mele39 3 armo39 3 mele42 7 armo42 7 mele45 1 armo45 1 Act 2 (N) Melee A 130 Act 5 Melee B 130 0
Act 3 (N) Melee A 1 mele36 1 armo36 1 mele39 3 armo39 3 mele42 7 armo42 7 mele45 5 armo45 5 Act 2 (N) Melee B 140 Act 5 Melee B 140 0
Act 3 (N) Melee B 1 mele39 1 armo39 1 mele42 3 armo42 3 mele45 7 armo45 7 mele48 1 armo48 1 Act 3 (N) Melee A 150 Act 5 Melee B 150 0
Act 4 (N) Melee A 1 mele39 1 armo39 1 mele42 3 armo42 3 mele45 7 armo45 7 mele48 5 armo48 5 Act 3 (N) Melee B 160 Act 5 Melee B 160 0
Act 4 (N) Melee B 1 mele42 1 armo42 1 mele45 3 armo45 3 mele48 7 armo48 7 mele51 1 armo51 1 Act 4 (N) Melee A 170 Act 5 Melee B 170 0
Act 5 (N) Melee A 1 mele42 1 armo42 1 mele45 3 armo45 3 mele48 7 armo48 7 mele51 5 armo51 5 Act 4 (N) Melee B 180 Act 5 Melee B 180 0
Act 5 (N) Melee B 1 mele45 1 armo45 1 mele48 3 armo48 3 mele51 7 armo51 7 mele54 1 armo54 1 Act 5 (N) Melee A 190 Act 5 Melee B 190 0
Act 5 (N) Melee C 1 mele45 1 armo45 1 mele48 3 armo48 3 mele51 7 armo51 7 mele54 1 armo54 1 Act 5 (N) Melee B 200 Act 5 Melee B 200 0
Act 1 (H) Melee A 1 mele45 1 armo45 1 mele48 3 armo48 3 mele51 7 armo51 7 mele54 5 armo54 5 Act 5 (N) Melee C 210 Act 5 (N) Melee B 600 0
Act 1 (H) Melee B 1 mele48 1 armo48 1 mele51 3 armo51 3 mele54 7 armo54 7 mele57 1 armo57 1 Act 1 (H) Melee A 220 Act 5 (N) Melee B 640 0
Act 2 (H) Melee A 1 mele48 1 armo48 1 mele51 3 armo51 3 mele54 7 armo54 7 mele57 5 armo57 5 Act 1 (H) Melee B 230 Act 5 (N) Melee B 680 0
Act 2 (H) Melee B 1 mele51 1 armo51 1 mele54 3 armo54 3 mele57 7 armo57 7 mele60 1 armo60 1 Act 2 (H) Melee A 240 Act 5 (N) Melee B 720 0
Act 3 (H) Melee A 1 mele51 1 armo51 1 mele54 3 armo54 3 mele57 7 armo57 7 mele60 5 armo60 5 Act 2 (H) Melee B 250 Act 5 (N) Melee B 760 0
Act 3 (H) Melee B 1 mele54 1 armo54 1 mele57 3 armo57 3 mele60 7 armo60 7 mele63 1 armo63 1 Act 3 (H) Melee A 260 Act 5 (N) Melee B 800 0
Act 4 (H) Melee A 1 mele54 1 armo54 1 mele57 3 armo57 3 mele60 7 armo60 7 mele63 5 armo63 5 Act 3 (H) Melee B 270 Act 5 (N) Melee B 840 0
Act 4 (H) Melee B 1 mele57 1 armo57 1 mele60 3 armo60 3 mele63 7 armo63 7 mele66 1 armo66 1 Act 4 (H) Melee A 280 Act 5 (N) Melee B 880 0
Act 5 (H) Melee A 1 mele57 1 armo57 1 mele60 3 armo60 3 mele63 7 armo63 7 mele66 3 armo66 3 Act 4 (H) Melee B 290 Act 5 (N) Melee B 920 0
Act 5 (H) Melee B 1 mele57 1 armo57 1 mele60 3 armo60 3 mele63 7 armo63 7 mele66 5 armo66 5 Act 5 (H) Melee A 300 Act 5 (N) Melee B 960 0
Act 5 (H) Melee C 1 mele57 1 armo57 1 mele60 3 armo60 3 mele63 7 armo63 7 mele66 5 armo66 5 Act 5 (H) Melee B 310 Act 5 (N) Melee B 1000 0
Act 1 Bow A 1 bow3 36 0
Act 1 Bow B 1 bow3 20 bow6 16 0
Act 1 Bow C 1 bow3 10 bow6 16 bow9 10 0
Act 2 Bow A 1 bow3 3 bow6 15 bow9 15 bow12 3 0
Act 2 Bow B 1 bow3 1 bow6 7 bow9 20 bow12 7 bow15 1 0
Act 2 Bow C 1 bow3 1 bow6 3 bow9 14 bow12 14 bow15 3 bow18 1 0
Act 3 Bow A 1 bow3 1 bow6 3 bow9 6 bow12 12 bow15 6 bow18 3 bow21 1 0
Act 3 Bow B 1 bow3 1 bow6 3 bow9 6 bow12 8 bow15 8 bow18 6 bow21 3 bow24 1 0
Act 3 Bow C 1 bow3 1 bow6 2 bow9 5 bow12 7 bow15 8 bow18 7 bow21 4 bow24 2 0
Act 4 Bow A 1 bow6 1 bow9 3 bow12 6 bow15 8 bow18 8 bow21 6 bow24 3 bow27 1 Act 3 Bow C 80 0
Act 4 Bow B 1 bow6 1 bow9 2 bow12 5 bow15 7 bow18 8 bow21 7 bow24 4 bow27 2 Act 4 Bow A 80 0
Act 5 Bow A 1 bow9 1 bow12 3 bow15 6 bow18 8 bow21 8 bow24 6 bow27 3 bow30 1 Act 4 Bow B 80 0
Act 5 Bow B 1 bow9 1 bow12 2 bow15 5 bow18 7 bow21 8 bow24 7 bow27 4 bow30 2 Act 5 Bow A 80 0
Act 5 Bow C 1 bow9 1 bow12 2 bow15 5 bow18 7 bow21 8 bow24 7 bow27 4 bow30 2 Act 5 Bow B 80 0
Act 1 (N) Bow A 1 bow12 1 bow15 3 bow18 6 bow21 8 bow24 8 bow27 6 bow30 3 bow33 1 Act 5 Bow C 100 Act 5 Bow B 100 0
Act 1 (N) Bow B 1 bow12 1 bow15 2 bow18 5 bow21 7 bow24 8 bow27 7 bow30 4 bow33 2 Act 1 (N) Bow A 110 Act 5 Bow B 110 0
Act 2 (N) Bow A 1 bow15 1 bow18 3 bow21 6 bow24 8 bow27 8 bow30 6 bow33 3 bow36 1 Act 1 (N) Bow B 120 Act 5 Bow B 120 0
Act 2 (N) Bow B 1 bow15 1 bow18 2 bow21 5 bow24 7 bow27 8 bow30 7 bow33 4 bow36 2 Act 2 (N) Bow A 130 Act 5 Bow B 130 0
Act 3 (N) Bow A 1 bow18 1 bow21 3 bow24 6 bow27 8 bow30 8 bow33 6 bow36 3 bow39 1 Act 2 (N) Bow B 140 Act 5 Bow B 140 0
Act 3 (N) Bow B 1 bow18 1 bow21 2 bow24 5 bow27 7 bow30 8 bow33 7 bow36 4 bow39 2 Act 3 (N) Bow A 150 Act 5 Bow B 150 0
Act 4 (N) Bow A 1 bow21 1 bow24 3 bow27 6 bow30 8 bow33 8 bow36 6 bow39 3 bow42 1 Act 3 (N) Bow B 160 Act 5 Bow B 160 0
Act 4 (N) Bow B 1 bow21 1 bow24 2 bow27 5 bow30 7 bow33 8 bow36 7 bow39 4 bow42 2 Act 4 (N) Bow A 170 Act 5 Bow B 170 0
Act 5 (N) Bow A 1 bow24 1 bow27 3 bow30 6 bow33 8 bow36 8 bow39 6 bow42 3 bow45 1 Act 4 (N) Bow B 180 Act 5 Bow B 180 0
Act 5 (N) Bow B 1 bow24 1 bow27 2 bow30 5 bow33 7 bow36 8 bow39 7 bow42 4 bow45 2 Act 5 (N) Bow A 190 Act 5 Bow B 190 0
Act 5 (N) Bow C 1 bow24 1 bow27 2 bow30 5 bow33 7 bow36 8 bow39 7 bow42 4 bow45 2 Act 5 (N) Bow B 200 Act 5 Bow B 200 0
Act 1 (H) Bow A 1 bow27 1 bow30 3 bow33 6 bow36 8 bow39 8 bow42 6 bow45 3 bow48 1 Act 5 (N) Bow C 210 Act 5 (N) Bow B 600 0
Act 1 (H) Bow B 1 bow27 1 bow30 2 bow33 5 bow36 7 bow39 8 bow42 7 bow45 4 bow48 2 Act 1 (H) Bow A 220 Act 5 Bow B 640 0
Act 2 (H) Bow A 1 bow30 1 bow33 3 bow36 6 bow39 8 bow42 8 bow45 6 bow48 3 bow51 1 Act 1 (H) Bow B 230 Act 5 Bow B 680 0
Act 2 (H) Bow B 1 bow30 1 bow33 2 bow36 5 bow39 7 bow42 8 bow45 7 bow48 4 bow51 2 Act 2 (H) Bow A 240 Act 5 Bow B 720 0
Act 3 (H) Bow A 1 bow33 1 bow36 3 bow39 6 bow42 8 bow45 8 bow48 6 bow51 3 bow54 1 Act 2 (H) Bow B 250 Act 5 Bow B 760 0
Act 3 (H) Bow B 1 bow33 1 bow36 2 bow39 5 bow42 7 bow45 8 bow48 7 bow51 4 bow54 2 Act 3 (H) Bow A 260 Act 5 Bow B 800 0
Act 4 (H) Bow A 1 bow36 1 bow39 3 bow42 6 bow45 8 bow48 8 bow51 6 bow54 3 bow57 1 Act 3 (H) Bow B 270 Act 5 Bow B 840 0
Act 4 (H) Bow B 1 bow36 1 bow39 2 bow42 5 bow45 7 bow48 8 bow51 7 bow54 4 bow57 2 Act 4 (H) Bow A 280 Act 5 Bow B 880 0
Act 5 (H) Bow A 1 bow39 1 bow42 3 bow45 6 bow48 8 bow51 8 bow54 6 bow57 3 bow60 1 Act 4 (H) Bow B 290 Act 5 Bow B 920 0
Act 5 (H) Bow B 1 bow42 1 bow45 3 bow48 6 bow51 8 bow54 8 bow57 6 bow60 3 bow63 1 Act 5 (H) Bow A 300 Act 5 Bow B 960 0
Act 5 (H) Bow C 1 bow42 1 bow45 3 bow48 6 bow51 8 bow54 8 bow57 6 bow60 3 bow63 1 Act 5 (H) Bow B 310 Act 5 Bow B 1000 0
Act 1 Magic A 1 tsc 2 isc 4 mp1 6 0
Act 1 Magic B 1 tsc 2 isc 4 mp1 4 mp2 2 0
Act 1 Magic C 1 tsc 2 isc 4 mp1 2 mp2 4 0
Act 2 Magic A 1 tsc 2 isc 4 mp1 1 mp2 4 mp3 1 0
Act 2 Magic B 1 tsc 2 isc 4 mp1 1 mp2 3 mp3 2 0
Act 2 Magic C 1 tsc 2 isc 4 mp2 2 mp3 3 mp4 1 0
Act 3 Magic A 1 tsc 2 isc 4 mp3 4 mp4 2 0
Act 3 Magic B 1 tsc 2 isc 4 mp3 3 mp4 3 0
Act 3 Magic C 1 tsc 2 isc 4 mp3 2 mp4 3 mp5 1 0
Act 4 Magic A 1 tsc 2 isc 4 mp3 1 mp4 4 mp5 1 0
Act 4 Magic B 1 tsc 2 isc 4 mp4 4 mp5 2 0
Act 5 Magic A 1 tsc 2 isc 4 mp4 3 mp5 3 0
Act 5 Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 Magic C 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 2 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 2 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 3 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 3 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 4 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 4 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (N) Magic C 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 2 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 2 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 3 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 3 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 4 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 4 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (H) Magic C 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 Good 1 Jewelry A 5 Chipped Gem 5 0
Act 2 Good 1 Jewelry B 20 Chipped Gem 12 Flawed Gem 4 Runes 1 3 Runes 2 3 0
Act 3 Good 1 Jewelry C 20 Chipped Gem 8 Flawed Gem 8 Runes 3 3 Runes 4 3 0
Act 4 Good 1 Jewelry C 50 Chipped Gem 14 Flawed Gem 28 Normal Gem 42 Runes 5 14 Runes 6 7 0
Act 5 Good 1 Jewelry C 50 Chipped Gem 6 Flawed Gem 8 Normal Gem 24 Flawless Gem 4 Runes 7 10 0
Act 1 (N) Good 1 Jewelry C 60 Chipped Gem 6 Flawed Gem 8 Normal Gem 28 Flawless Gem 14 Runes 8 14 0
Act 2 (N) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 9 14 0
Act 3 (N) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 10 14 0
Act 4 (N) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 11 14 0
Act 5 (N) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 12 14 0
Act 1 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 13 14 0
Act 2 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 14 14 0
Act 3 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 15 14 0
Act 4 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 16 14 0
Act 5 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 17 14 0
Act 1 Chest A 4 100 gld 15 Act 1 Junk 15 Act 1 Equip A 10 Act 1 Good 2 0
Act 1 Chest B 4 100 gld 15 Act 1 Junk 15 Act 1 Equip B 10 Act 1 Good 2 0
Act 1 Chest C 4 100 gld 15 Act 1 Junk 12 Act 2 Junk 3 Act 1 Equip C 15 Act 1 Good 2 0
Act 2 Chest A 4 100 gld 15 Act 2 Junk 15 Act 2 Equip A 10 Act 2 Good 2 0
Act 2 Chest B 4 100 gld 15 Act 2 Junk 15 Act 2 Equip B 10 Act 2 Good 2 0
Act 2 Chest C 4 100 gld 15 Act 2 Junk 12 Act 3 Junk 3 Act 2 Equip C 15 Act 2 Good 2 0
Act 3 Chest A 4 100 gld 15 Act 3 Junk 15 Act 3 Equip A 10 Act 3 Good 2 0
Act 3 Chest B 4 100 gld 15 Act 3 Junk 15 Act 3 Equip B 10 Act 3 Good 2 0
Act 3 Chest C 4 100 gld 15 Act 3 Junk 15 Act 3 Equip C 10 Act 3 Good 2 0
Act 4 Chest A 4 100 gld 15 Act 4 Junk 15 Act 4 Equip A 10 Act 4 Good 2 0
Act 4 Chest B 4 100 gld 15 Act 4 Junk 15 Act 4 Equip B 10 Act 4 Good 2 0
Act 4 Chest C 4 100 gld 15 Act 4 Junk 15 Act 4 Equip B 10 Act 4 Good 2 0
Act 5 Chest A 4 100 gld 15 Act 5 Junk 15 Act 5 Equip A 10 Act 5 Good 2 0
Act 5 Chest B 4 100 gld 15 Act 5 Junk 15 Act 5 Equip B 10 Act 5 Good 2 0
Act 5 Chest C 4 100 gld 15 Act 5 Junk 15 Act 5 Equip B 10 Act 5 Good 2 0
Act 1 (N) Chest A 4 100 gld 15 Act 1 (N) Junk 15 Act 1 (N) Equip A 10 Act 1 (N) Good 2 0
Act 1 (N) Chest B 4 100 gld 15 Act 1 (N) Junk 15 Act 1 (N) Equip B 10 Act 1 (N) Good 2 0
Act 1 (N) Chest C 4 100 gld 15 Act 1 (N) Junk 15 Act 1 (N) Equip B 10 Act 1 (N) Good 2 0
Act 2 (N) Chest A 4 100 gld 15 Act 2 (N) Junk 15 Act 2 (N) Equip A 10 Act 2 (N) Good 2 0
Act 2 (N) Chest B 4 100 gld 15 Act 2 (N) Junk 15 Act 2 (N) Equip B 10 Act 2 (N) Good 2 0
Act 2 (N) Chest C 4 100 gld 15 Act 2 (N) Junk 15 Act 2 (N) Equip B 10 Act 2 (N) Good 2 0
Act 3 (N) Chest A 4 100 gld 15 Act 3 (N) Junk 15 Act 3 (N) Equip A 10 Act 3 (N) Good 2 0
Act 3 (N) Chest B 4 100 gld 15 Act 3 (N) Junk 15 Act 3 (N) Equip B 10 Act 3 (N) Good 2 0
Act 3 (N) Chest C 4 100 gld 15 Act 3 (N) Junk 15 Act 3 (N) Equip B 10 Act 3 (N) Good 2 0
Act 4 (N) Chest A 4 100 gld 15 Act 4 (N) Junk 15 Act 4 (N) Equip A 10 Act 4 (N) Good 2 0
Act 4 (N) Chest B 4 100 gld 15 Act 4 (N) Junk 15 Act 4 (N) Equip B 10 Act 4 (N) Good 2 0
Act 4 (N) Chest C 4 100 gld 15 Act 4 (N) Junk 15 Act 4 (N) Equip C 10 Act 4 (N) Good 2 0
Act 5 (N) Chest A 4 100 gld 15 Act 5 (N) Junk 15 Act 5 (N) Equip A 10 Act 5 (N) Good 2 0
Act 5 (N) Chest B 4 100 gld 15 Act 5 (N) Junk 15 Act 5 (N) Equip B 10 Act 5 (N) Good 2 0
Act 5 (N) Chest C 4 100 gld 15 Act 5 (N) Junk 15 Act 5 (N) Equip B 10 Act 5 (N) Good 2 0
Act 1 (H) Chest A 4 100 gld 15 Act 1 (H) Junk 15 Act 1 (H) Equip A 10 Act 1 (H) Good 2 0
Act 1 (H) Chest B 4 100 gld 15 Act 1 (H) Junk 15 Act 1 (H) Equip B 10 Act 1 (H) Good 2 0
Act 1 (H) Chest C 4 100 gld 15 Act 1 (H) Junk 15 Act 1 (H) Equip B 10 Act 1 (H) Good 2 0
Act 2 (H) Chest A 4 100 gld 15 Act 2 (H) Junk 15 Act 2 (H) Equip A 10 Act 2 (H) Good 2 0
Act 2 (H) Chest B 4 100 gld 15 Act 2 (H) Junk 15 Act 2 (H) Equip B 10 Act 2 (H) Good 2 0
Act 2 (H) Chest C 4 100 gld 15 Act 2 (H) Junk 15 Act 2 (H) Equip B 10 Act 2 (H) Good 2 0
Act 3 (H) Chest A 4 100 gld 15 Act 3 (H) Junk 15 Act 3 (H) Equip A 10 Act 3 (H) Good 2 0
Act 3 (H) Chest B 4 100 gld 15 Act 3 (H) Junk 15 Act 3 (H) Equip B 10 Act 3 (H) Good 2 0
Act 3 (H) Chest C 4 100 gld 15 Act 3 (H) Junk 15 Act 3 (H) Equip B 10 Act 3 (H) Good 2 0
Act 4 (H) Chest A 4 100 gld 15 Act 4 (H) Junk 15 Act 4 (H) Equip A 10 Act 4 (H) Good 2 0
Act 4 (H) Chest B 4 100 gld 15 Act 4 (H) Junk 15 Act 4 (H) Equip B 10 Act 4 (H) Good 2 0
Act 4 (H) Chest C 4 100 gld 15 Act 4 (H) Junk 15 Act 4 (H) Equip B 10 Act 4 (H) Good 2 0
Act 5 (H) Chest A 4 100 gld 15 Act 5 (H) Junk 15 Act 5 (H) Equip A 10 Act 5 (H) Good 2 0
Act 5 (H) Chest B 4 100 gld 15 Act 5 (H) Junk 15 Act 5 (H) Equip B 10 Act 5 (H) Good 2 0
Act 5 (H) Chest C 4 100 gld 15 Act 5 (H) Junk 15 Act 5 (H) Equip B 10 Act 5 (H) Good 2 0
Act 1 H2H A 1 180 gld 21 Act 1 Equip A 16 Act 1 Junk 21 Act 1 Good 2 0
Act 1 H2H B 1 180 gld 21 Act 1 Equip B 16 Act 1 Junk 21 Act 1 Good 2 0
Act 1 H2H C 1 180 gld 21 Act 1 Equip C 16 Act 1 Junk 21 Act 1 Good 2 0
Act 2 H2H A 1 180 gld 21 Act 2 Equip A 16 Act 2 Junk 21 Act 2 Good 2 0
Act 2 H2H B 1 180 gld 21 Act 2 Equip B 16 Act 2 Junk 21 Act 2 Good 2 0
Act 2 H2H C 1 180 gld 21 Act 2 Equip C 16 Act 2 Junk 21 Act 3 Good 2 0
Act 3 H2H A 1 180 gld 21 Act 3 Equip A 16 Act 3 Junk 21 Act 3 Good 2 0
Act 3 H2H B 1 180 gld 21 Act 3 Equip B 16 Act 3 Junk 21 Act 3 Good 2 0
Act 3 H2H C 1 180 gld 21 Act 3 Equip C 16 Act 3 Junk 21 Act 3 Good 2 0
Act 4 H2H A 1 180 gld 21 Act 4 Equip A 16 Act 4 Junk 21 Act 4 Good 2 0
Act 4 H2H B 1 180 gld 21 Act 4 Equip B 16 Act 4 Junk 21 Act 4 Good 2 0
Act 5 H2H A 1 180 gld 21 Act 5 Equip A 16 Act 5 Junk 21 Act 5 Good 2 0
Act 5 H2H B 1 180 gld 21 Act 5 Equip B 16 Act 5 Junk 21 Act 5 Good 2 0
Act 5 H2H C 1 180 gld 21 Act 5 Equip C 16 Act 5 Junk 21 Act 5 Good 2 0
Act 1 (N) H2H A 1 180 gld 21 Act 1 (N) Equip A 16 Act 1 (N) Junk 21 Act 1 (N) Good 2 0
Act 1 (N) H2H B 1 180 gld 21 Act 1 (N) Equip B 16 Act 1 (N) Junk 21 Act 1 (N) Good 2 0
Act 1 (N) H2H C 1 180 gld 21 Act 1 (N) Equip B 16 Act 1 (N) Junk 21 Act 1 (N) Good 2 0
Act 2 (N) H2H A 1 180 gld 21 Act 2 (N) Equip A 16 Act 2 (N) Junk 21 Act 2 (N) Good 2 0
Act 2 (N) H2H B 1 180 gld 21 Act 2 (N) Equip B 16 Act 2 (N) Junk 21 Act 2 (N) Good 2 0
Act 2 (N) H2H C 1 180 gld 21 Act 2 (N) Equip B 16 Act 2 (N) Junk 21 Act 2 (N) Good 2 0
Act 3 (N) H2H A 1 180 gld 21 Act 3 (N) Equip A 16 Act 3 (N) Junk 21 Act 3 (N) Good 2 0
Act 3 (N) H2H B 1 180 gld 21 Act 3 (N) Equip B 16 Act 3 (N) Junk 21 Act 3 (N) Good 2 0
Act 3 (N) H2H C 1 180 gld 21 Act 3 (N) Equip B 16 Act 3 (N) Junk 21 Act 3 (N) Good 2 0
Act 4 (N) H2H A 1 180 gld 21 Act 4 (N) Equip A 16 Act 4 (N) Junk 21 Act 4 (N) Good 2 0
Act 4 (N) H2H B 1 180 gld 21 Act 4 (N) Equip B 16 Act 4 (N) Junk 21 Act 4 (N) Good 2 0
Act 5 (N) H2H A 1 180 gld 21 Act 5 (N) Equip A 16 Act 5 (N) Junk 21 Act 5 (N) Good 2 0
Act 5 (N) H2H B 1 180 gld 21 Act 5 (N) Equip B 16 Act 5 (N) Junk 21 Act 5 (N) Good 2 0
Act 5 (N) H2H C 1 180 gld 21 Act 5 (N) Equip C 16 Act 5 (N) Junk 21 Act 5 (N) Good 2 0
Act 1 (H) H2H A 1 180 gld 21 Act 1 (H) Equip A 16 Act 1 (H) Junk 21 Act 1 (H) Good 2 0
Act 1 (H) H2H B 1 180 gld 21 Act 1 (H) Equip B 16 Act 1 (H) Junk 21 Act 1 (H) Good 2 0
Act 1 (H) H2H C 1 180 gld 21 Act 1 (H) Equip B 16 Act 1 (H) Junk 21 Act 1 (H) Good 2 0
Act 2 (H) H2H A 1 180 gld 21 Act 2 (H) Equip A 16 Act 1 (H) Junk 21 Act 2 (H) Good 2 0
Act 2 (H) H2H B 1 180 gld 21 Act 2 (H) Equip B 16 Act 1 (H) Junk 21 Act 2 (H) Good 2 0
Act 2 (H) H2H C 1 180 gld 21 Act 2 (H) Equip B 16 Act 1 (H) Junk 21 Act 2 (H) Good 2 0
Act 3 (H) H2H A 1 180 gld 21 Act 3 (H) Equip A 16 Act 1 (H) Junk 21 Act 3 (H) Good 2 0
Act 3 (H) H2H B 1 180 gld 21 Act 3 (H) Equip B 16 Act 1 (H) Junk 21 Act 3 (H) Good 2 0
Act 3 (H) H2H C 1 180 gld 21 Act 3 (H) Equip B 16 Act 1 (H) Junk 21 Act 3 (H) Good 2 0
Act 4 (H) H2H A 1 180 gld 21 Act 4 (H) Equip A 16 Act 1 (H) Junk 21 Act 4 (H) Good 2 0
Act 4 (H) H2H B 1 180 gld 21 Act 4 (H) Equip B 16 Act 1 (H) Junk 21 Act 4 (H) Good 2 0
Act 5 (H) H2H A 1 180 gld 21 Act 5 (H) Equip A 16 Act 1 (H) Junk 21 Act 5 (H) Good 2 0
Act 5 (H) H2H B 1 180 gld 21 Act 5 (H) Equip B 16 Act 1 (H) Junk 21 Act 5 (H) Good 2 0
Act 5 (H) H2H C 1 180 gld 21 Act 5 (H) Equip C 16 Act 1 (H) Junk 21 Act 5 (H) Good 2 0
Act 1 Cast A 1 180 gld 18 Act 1 Equip A 15 Act 1 Junk 18 Act 1 Good 2 Act 1 Magic A 7 0
Act 1 Cast B 1 180 gld 18 Act 1 Equip B 15 Act 1 Junk 18 Act 1 Good 2 Act 1 Magic B 7 0
Act 1 Cast C 1 180 gld 18 Act 1 Equip C 15 Act 1 Junk 18 Act 1 Good 2 Act 1 Magic C 7 0
Act 2 Cast A 1 180 gld 18 Act 2 Equip A 15 Act 2 Junk 18 Act 2 Good 2 Act 2 Magic A 7 0
Act 2 Cast B 1 180 gld 18 Act 2 Equip B 15 Act 2 Junk 18 Act 2 Good 2 Act 2 Magic B 7 0
Act 2 Cast C 1 180 gld 18 Act 2 Equip C 15 Act 2 Junk 18 Act 3 Good 2 Act 2 Magic C 7 0
Act 3 Cast A 1 180 gld 18 Act 3 Equip A 15 Act 3 Junk 18 Act 3 Good 2 Act 3 Magic A 7 0
Act 3 Cast B 1 180 gld 18 Act 3 Equip B 15 Act 3 Junk 18 Act 3 Good 2 Act 3 Magic B 7 0
Act 3 Cast C 1 180 gld 18 Act 3 Equip C 15 Act 3 Junk 18 Act 3 Good 2 Act 3 Magic C 7 0
Act 4 Cast A 1 180 gld 18 Act 4 Equip A 15 Act 4 Junk 18 Act 4 Good 2 Act 4 Magic A 7 0
Act 4 Cast B 1 180 gld 18 Act 4 Equip B 15 Act 4 Junk 18 Act 4 Good 2 Act 4 Magic B 7 0
Act 5 Cast A 1 180 gld 18 Act 5 Equip A 15 Act 5 Junk 18 Act 5 Good 2 Act 5 Magic A 7 0
Act 5 Cast B 1 180 gld 18 Act 5 Equip B 15 Act 5 Junk 18 Act 5 Good 2 Act 5 Magic B 7 0
Act 5 Cast C 1 180 gld 18 Act 5 Equip C 15 Act 5 Junk 18 Act 5 Good 2 Act 5 Magic C 7 0
Act 1 (N) Cast A 1 180 gld 18 Act 1 (N) Equip A 15 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Magic A 7 0
Act 1 (N) Cast B 1 180 gld 18 Act 1 (N) Equip B 15 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Magic B 7 0
Act 1 (N) Cast C 1 180 gld 18 Act 1 (N) Equip B 15 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Magic B 7 0
Act 2 (N) Cast A 1 180 gld 18 Act 2 (N) Equip A 15 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Magic A 7 0
Act 2 (N) Cast B 1 180 gld 18 Act 2 (N) Equip B 15 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Magic B 7 0
Act 2 (N) Cast C 1 180 gld 18 Act 2 (N) Equip B 15 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Magic B 7 0
Act 3 (N) Cast A 1 180 gld 18 Act 3 (N) Equip A 15 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Magic A 7 0
Act 3 (N) Cast B 1 180 gld 18 Act 3 (N) Equip B 15 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Magic B 7 0
Act 3 (N) Cast C 1 180 gld 18 Act 3 (N) Equip B 15 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Magic B 7 0
Act 4 (N) Cast A 1 180 gld 18 Act 4 (N) Equip A 15 Act 4 (N) Junk 18 Act 4 (N) Good 2 Act 4 (N) Magic A 7 0
Act 4 (N) Cast B 1 180 gld 18 Act 4 (N) Equip B 15 Act 4 (N) Junk 18 Act 4 (N) Good 2 Act 4 (N) Magic B 7 0
Act 5 (N) Cast A 1 180 gld 18 Act 5 (N) Equip A 15 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Magic A 7 0
Act 5 (N) Cast B 1 180 gld 18 Act 5 (N) Equip B 15 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Magic B 7 0
Act 5 (N) Cast C 1 180 gld 18 Act 5 (N) Equip C 15 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Magic B 7 0
Act 1 (H) Cast A 1 180 gld 18 Act 1 (H) Equip A 15 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Magic A 7 0
Act 1 (H) Cast B 1 180 gld 18 Act 1 (H) Equip B 15 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Magic B 7 0
Act 1 (H) Cast C 1 180 gld 18 Act 1 (H) Equip B 15 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Magic B 7 0
Act 2 (H) Cast A 1 180 gld 18 Act 2 (H) Equip A 15 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Magic A 7 0
Act 2 (H) Cast B 1 180 gld 18 Act 2 (H) Equip B 15 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Magic B 7 0
Act 2 (H) Cast C 1 180 gld 18 Act 2 (H) Equip B 15 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Magic B 7 0
Act 3 (H) Cast A 1 180 gld 18 Act 3 (H) Equip A 15 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Magic A 7 0
Act 3 (H) Cast B 1 180 gld 18 Act 3 (H) Equip B 15 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Magic B 7 0
Act 3 (H) Cast C 1 180 gld 18 Act 3 (H) Equip B 15 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Magic B 7 0
Act 4 (H) Cast A 1 180 gld 18 Act 4 (H) Equip A 15 Act 1 (H) Junk 18 Act 4 (H) Good 2 Act 4 (H) Magic A 7 0
Act 4 (H) Cast B 1 180 gld 18 Act 4 (H) Equip B 15 Act 1 (H) Junk 18 Act 4 (H) Good 2 Act 4 (H) Magic B 7 0
Act 5 (H) Cast A 1 180 gld 18 Act 5 (H) Equip A 15 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Magic A 7 0
Act 5 (H) Cast B 1 180 gld 18 Act 5 (H) Equip B 15 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Magic B 7 0
Act 5 (H) Cast C 1 180 gld 18 Act 5 (H) Equip C 15 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Magic B 7 0
Act 1 Miss A 1 180 gld 18 Act 1 Equip A 13 Act 1 Junk 18 Act 1 Good 2 Act 1 Bow A 6 Ammo 3 0
Act 1 Miss B 1 180 gld 18 Act 1 Equip B 13 Act 1 Junk 18 Act 1 Good 2 Act 1 Bow B 6 Ammo 3 0
Act 1 Miss C 1 180 gld 18 Act 1 Equip C 13 Act 1 Junk 18 Act 1 Good 2 Act 1 Bow C 6 Ammo 3 0
Act 2 Miss A 1 180 gld 18 Act 2 Equip A 13 Act 2 Junk 18 Act 2 Good 2 Act 2 Bow A 6 Ammo 3 0
Act 2 Miss B 1 180 gld 18 Act 2 Equip B 13 Act 2 Junk 18 Act 2 Good 2 Act 2 Bow B 6 Ammo 3 0
Act 2 Miss C 1 180 gld 18 Act 2 Equip C 13 Act 2 Junk 18 Act 3 Good 2 Act 2 Bow C 6 Ammo 3 0
Act 3 Miss A 1 180 gld 18 Act 3 Equip A 13 Act 3 Junk 18 Act 3 Good 2 Act 3 Bow A 6 Ammo 3 0
Act 3 Miss B 1 180 gld 18 Act 3 Equip B 13 Act 3 Junk 18 Act 3 Good 2 Act 3 Bow B 6 Ammo 3 0
Act 3 Miss C 1 180 gld 18 Act 3 Equip C 13 Act 3 Junk 18 Act 3 Good 2 Act 3 Bow C 6 Ammo 3 0
Act 4 Miss A 1 180 gld 18 Act 4 Equip A 13 Act 4 Junk 18 Act 4 Good 2 Act 4 Bow A 6 Ammo 3 0
Act 4 Miss B 1 180 gld 18 Act 4 Equip B 13 Act 4 Junk 18 Act 4 Good 2 Act 4 Bow B 6 Ammo 3 0
Act 5 Miss A 1 180 gld 18 Act 5 Equip A 13 Act 5 Junk 18 Act 5 Good 2 Act 5 Bow A 6 Ammo 3 0
Act 5 Miss B 1 180 gld 18 Act 5 Equip B 13 Act 5 Junk 18 Act 5 Good 2 Act 5 Bow B 6 Ammo 3 0
Act 5 Miss C 1 180 gld 18 Act 5 Equip C 13 Act 5 Junk 18 Act 5 Good 2 Act 5 Bow B 6 Ammo 3 0
Act 1 (N) Miss A 1 180 gld 18 Act 1 (N) Equip A 13 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Bow A 6 Ammo 3 0
Act 1 (N) Miss B 1 180 gld 18 Act 1 (N) Equip B 13 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Bow B 6 Ammo 3 0
Act 1 (N) Miss C 1 180 gld 18 Act 1 (N) Equip B 13 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Bow B 6 Ammo 3 0
Act 2 (N) Miss A 1 180 gld 18 Act 2 (N) Equip A 13 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Bow A 6 Ammo 3 0
Act 2 (N) Miss B 1 180 gld 18 Act 2 (N) Equip B 13 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Bow B 6 Ammo 3 0
Act 2 (N) Miss C 1 180 gld 18 Act 2 (N) Equip B 13 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Bow B 6 Ammo 3 0
Act 3 (N) Miss A 1 180 gld 18 Act 3 (N) Equip A 13 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Bow A 6 Ammo 3 0
Act 3 (N) Miss B 1 180 gld 18 Act 3 (N) Equip B 13 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Bow B 6 Ammo 3 0
Act 3 (N) Miss C 1 180 gld 18 Act 3 (N) Equip B 13 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Bow B 6 Ammo 3 0
Act 4 (N) Miss A 1 180 gld 18 Act 4 (N) Equip A 13 Act 4 (N) Junk 18 Act 4 (N) Good 2 Act 4 (N) Bow A 6 Ammo 3 0
Act 4 (N) Miss B 1 180 gld 18 Act 4 (N) Equip B 13 Act 4 (N) Junk 18 Act 4 (N) Good 2 Act 4 (N) Bow B 6 Ammo 3 0
Act 5 (N) Miss A 1 180 gld 18 Act 5 (N) Equip A 13 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Bow A 6 Ammo 3 0
Act 5 (N) Miss B 1 180 gld 18 Act 5 (N) Equip B 13 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Bow B 6 Ammo 3 0
Act 5 (N) Miss C 1 180 gld 18 Act 5 (N) Equip C 13 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Bow B 6 Ammo 3 0
Act 1 (H) Miss A 1 180 gld 18 Act 1 (H) Equip A 13 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Bow A 6 Ammo 3 0
Act 1 (H) Miss B 1 180 gld 18 Act 1 (H) Equip B 13 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Bow B 6 Ammo 3 0
Act 1 (H) Miss C 1 180 gld 18 Act 1 (H) Equip B 13 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Bow B 6 Ammo 3 0
Act 2 (H) Miss A 1 180 gld 18 Act 2 (H) Equip A 13 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Bow A 6 Ammo 3 0
Act 2 (H) Miss B 1 180 gld 18 Act 2 (H) Equip B 13 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Bow B 6 Ammo 3 0
Act 2 (H) Miss C 1 180 gld 18 Act 2 (H) Equip B 13 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Bow B 6 Ammo 3 0
Act 3 (H) Miss A 1 180 gld 18 Act 3 (H) Equip A 13 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Bow A 6 Ammo 3 0
Act 3 (H) Miss B 1 180 gld 18 Act 3 (H) Equip B 13 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Bow B 6 Ammo 3 0
Act 3 (H) Miss C 1 180 gld 18 Act 3 (H) Equip B 13 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Bow B 6 Ammo 3 0
Act 4 (H) Miss A 1 180 gld 18 Act 4 (H) Equip A 13 Act 1 (H) Junk 18 Act 4 (H) Good 2 Act 4 (H) Bow A 6 Ammo 3 0
Act 4 (H) Miss B 1 180 gld 18 Act 4 (H) Equip B 13 Act 1 (H) Junk 18 Act 4 (H) Good 2 Act 4 (H) Bow B 6 Ammo 3 0
Act 5 (H) Miss A 1 180 gld 18 Act 5 (H) Equip A 13 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Bow A 6 Ammo 3 0
Act 5 (H) Miss B 1 180 gld 18 Act 5 (H) Equip B 13 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Bow B 6 Ammo 3 0
Act 5 (H) Miss C 1 180 gld 18 Act 5 (H) Equip C 13 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Bow B 6 Ammo 3 0
Act 1 Wraith A 1 100 Act 1 Good 3 Act 1 Magic A 25 0
Act 1 Wraith B 1 100 Act 1 Good 3 Act 1 Magic B 25 0
Act 1 Wraith C 1 100 Act 1 Good 3 Act 1 Magic C 25 0
Act 2 Wraith A 1 100 Act 2 Good 3 Act 2 Magic A 25 0
Act 2 Wraith B 1 100 Act 2 Good 3 Act 2 Magic B 25 0
Act 2 Wraith C 1 100 Act 3 Good 3 Act 2 Magic C 25 0
Act 3 Wraith A 1 100 Act 3 Good 3 Act 3 Magic A 25 0
Act 3 Wraith B 1 100 Act 3 Good 3 Act 3 Magic B 25 0
Act 3 Wraith C 1 100 Act 3 Good 3 Act 3 Magic C 25 0
Act 4 Wraith A 1 100 Act 4 Good 3 Act 4 Magic A 25 0
Act 4 Wraith B 1 100 Act 4 Good 3 Act 4 Magic B 25 0
Act 5 Wraith A 1 100 Act 5 Good 3 Act 5 Magic A 25 0
Act 5 Wraith B 1 100 Act 5 Good 3 Act 5 Magic B 25 0
Act 5 Wraith C 1 100 Act 5 Good 3 Act 5 Magic C 25 0
Act 1 (N) Wraith A 1 100 Act 1 (N) Good 3 Act 1 (N) Magic A 25 0
Act 1 (N) Wraith B 1 100 Act 1 (N) Good 3 Act 1 (N) Magic B 25 0
Act 1 (N) Wraith C 1 100 Act 1 (N) Good 3 Act 1 (N) Magic B 25 0
Act 2 (N) Wraith A 1 100 Act 2 (N) Good 3 Act 2 (N) Magic A 25 0
Act 2 (N) Wraith B 1 100 Act 2 (N) Good 3 Act 2 (N) Magic B 25 0
Act 2 (N) Wraith C 1 100 Act 2 (N) Good 3 Act 2 (N) Magic B 25 0
Act 3 (N) Wraith A 1 100 Act 3 (N) Good 3 Act 3 (N) Magic A 25 0
Act 3 (N) Wraith B 1 100 Act 3 (N) Good 3 Act 3 (N) Magic B 25 0
Act 3 (N) Wraith C 1 100 Act 3 (N) Good 3 Act 3 (N) Magic B 25 0
Act 4 (N) Wraith A 1 100 Act 4 (N) Good 3 Act 4 (N) Magic A 25 0
Act 4 (N) Wraith B 1 100 Act 4 (N) Good 3 Act 4 (N) Magic B 25 0
Act 5 (N) Wraith A 1 100 Act 5 (N) Good 3 Act 5 (N) Magic A 25 0
Act 5 (N) Wraith B 1 100 Act 5 (N) Good 3 Act 5 (N) Magic B 25 0
Act 5 (N) Wraith C 1 100 Act 5 (N) Good 3 Act 5 (N) Magic C 25 0
Act 1 (H) Wraith A 1 100 Act 1 (H) Good 3 Act 1 (H) Magic A 25 0
Act 1 (H) Wraith B 1 100 Act 1 (H) Good 3 Act 1 (H) Magic B 25 0
Act 1 (H) Wraith C 1 100 Act 1 (H) Good 3 Act 1 (H) Magic B 25 0
Act 2 (H) Wraith A 1 100 Act 2 (H) Good 3 Act 2 (H) Magic A 25 0
Act 2 (H) Wraith B 1 100 Act 2 (H) Good 3 Act 2 (H) Magic B 25 0
Act 2 (H) Wraith C 1 100 Act 2 (H) Good 3 Act 2 (H) Magic B 25 0
Act 3 (H) Wraith A 1 100 Act 3 (H) Good 3 Act 3 (H) Magic A 25 0
Act 3 (H) Wraith B 1 100 Act 3 (H) Good 3 Act 3 (H) Magic B 25 0
Act 3 (H) Wraith C 1 100 Act 3 (H) Good 3 Act 3 (H) Magic B 25 0
Act 4 (H) Wraith A 1 100 Act 4 (H) Good 3 Act 4 (H) Magic A 25 0
Act 4 (H) Wraith B 1 100 Act 4 (H) Good 3 Act 4 (H) Magic B 25 0
Act 5 (H) Wraith A 1 100 Act 5 (H) Good 3 Act 5 (H) Magic A 25 0
Act 5 (H) Wraith B 1 100 Act 5 (H) Good 3 Act 5 (H) Magic B 25 0
Act 5 (H) Wraith C 1 100 Act 5 (H) Good 3 Act 5 (H) Magic C 25 0
Act 1 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 Equip A 37 Act 1 Good 3 0
Act 1 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 Equip B 37 Act 1 Good 3 0
Act 1 Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 Equip C 37 Act 1 Good 3 0
Act 2 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 Equip A 37 Act 2 Good 3 0
Act 2 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 Equip B 37 Act 2 Good 3 0
Act 2 Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 Equip C 37 Act 3 Good 3 0
Act 3 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 Equip A 37 Act 3 Good 3 0
Act 3 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 Equip B 37 Act 3 Good 3 0
Act 3 Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 Equip C 37 Act 3 Good 3 0
Act 4 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 Equip A 37 Act 4 Good 3 0
Act 4 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 Equip B 37 Act 4 Good 3 0
Act 5 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 Equip A 37 Act 5 Good 3 0
Act 5 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 Equip B 37 Act 5 Good 3 0
Act 5 Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 Equip C 37 Act 5 Good 3 0
Act 1 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (N) Equip A 37 Act 1 (N) Good 3 0
Act 1 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (N) Equip B 37 Act 1 (N) Good 3 0
Act 1 (N) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (N) Equip B 37 Act 1 (N) Good 3 0
Act 2 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (N) Equip A 37 Act 2 (N) Good 3 0
Act 2 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (N) Equip B 37 Act 2 (N) Good 3 0
Act 2 (N) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (N) Equip B 37 Act 2 (N) Good 3 0
Act 3 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (N) Equip A 37 Act 3 (N) Good 3 0
Act 3 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (N) Equip B 37 Act 3 (N) Good 3 0
Act 3 (N) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (N) Equip B 37 Act 3 (N) Good 3 0
Act 4 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 (N) Equip A 37 Act 4 (N) Good 3 0
Act 4 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 (N) Equip B 37 Act 4 (N) Good 3 0
Act 5 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (N) Equip A 37 Act 5 (N) Good 3 0
Act 5 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (N) Equip B 37 Act 5 (N) Good 3 0
Act 5 (N) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (N) Equip C 37 Act 5 (N) Good 3 0
Act 1 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (H) Equip A 37 Act 1 (H) Good 3 0
Act 1 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (H) Equip B 37 Act 1 (H) Good 3 0
Act 1 (H) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (H) Equip B 37 Act 1 (H) Good 3 0
Act 2 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (H) Equip A 37 Act 2 (H) Good 3 0
Act 2 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (H) Equip B 37 Act 2 (H) Good 3 0
Act 2 (H) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (H) Equip B 37 Act 2 (H) Good 3 0
Act 3 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (H) Equip A 37 Act 3 (H) Good 3 0
Act 3 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (H) Equip B 37 Act 3 (H) Good 3 0
Act 3 (H) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (H) Equip B 37 Act 3 (H) Good 3 0
Act 4 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 (H) Equip A 37 Act 4 (H) Good 3 0
Act 4 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 (H) Equip B 37 Act 4 (H) Good 3 0
Act 5 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (H) Equip A 37 Act 5 (H) Good 3 0
Act 5 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (H) Equip B 37 Act 5 (H) Good 3 0
Act 5 (H) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (H) Equip C 37 Act 5 (H) Good 3 0
Act 1 Cpot A -2 0 Hpotion 1 4 0
Act 1 Cpot B -2 0 Hpotion 1 4 0
Act 1 Cpot C -2 0 Hpotion 1 4 0
Act 2 Cpot A -2 0 Hpotion 1 4 Hpotion 2 8 0
Act 2 Cpot B -2 0 Hpotion 1 4 Hpotion 2 8 0
Act 2 Cpot C -2 0 Hpotion 1 4 Hpotion 2 8 0
Act 3 Cpot A -2 0 Hpotion 1 4 Hpotion 2 8 Hpotion 3 24 0
Act 3 Cpot B -2 0 Hpotion 1 4 Hpotion 2 8 Hpotion 3 24 0
Act 3 Cpot C -2 0 Hpotion 1 4 Hpotion 2 8 Hpotion 3 24 0
Act 4 Cpot A -2 0 Hpotion 1 1 Hpotion 2 1 Hpotion 3 2 Hpotion 4 4 0
Act 4 Cpot B -2 0 Hpotion 1 1 Hpotion 2 1 Hpotion 3 2 Hpotion 4 4 0
Act 5 Cpot A -2 0 Hpotion 2 1 Hpotion 3 2 Hpotion 4 4 Hpotion 5 8 0
Act 5 Cpot B -2 0 Hpotion 2 1 Hpotion 3 2 Hpotion 4 4 Hpotion 5 8 0
Act 5 Cpot C -2 0 Hpotion 2 1 Hpotion 3 2 Hpotion 4 4 Hpotion 5 8 0
Act 1 (N) Cpot A -2 0 Hpotion 3 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 0
Act 1 (N) Cpot B -2 0 Hpotion 3 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 (N) Cpot C -2 0 Hpotion 3 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (N) Cpot A -2 0 Hpotion 3 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (N) Cpot B -2 0 Hpotion 3 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (N) Cpot C -2 0 Hpotion 3 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (N) Cpot A -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (N) Cpot B -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (N) Cpot C -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 4 (N) Cpot A -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 4 (N) Cpot B -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (N) Cpot A -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (N) Cpot B -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (N) Cpot C -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 (H) Cpot C -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (H) Cpot C -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (H) Cpot C -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 4 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 4 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (H) Cpot C -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 Champ A -2 0 Act 1 Citem A 1 Act 1 Cpot A 2 0
Act 1 Champ B -2 0 Act 1 Citem B 1 Act 1 Cpot B 1 0
Act 1 Champ C -2 0 Act 1 Citem C 1 Act 1 Cpot C 1 0
Act 2 Champ A -2 0 Act 2 Citem A 1 Act 2 Cpot A 1 0
Act 2 Champ B -2 0 Act 2 Citem B 1 Act 2 Cpot B 1 0
Act 2 Champ C -2 0 Act 2 Citem C 1 Act 2 Cpot C 1 0
Act 3 Champ A -2 0 Act 3 Citem A 1 Act 3 Cpot A 1 0
Act 3 Champ B -2 0 Act 3 Citem B 1 Act 3 Cpot B 1 0
Act 3 Champ C -2 0 Act 3 Citem C 1 Act 3 Cpot C 1 0
Act 4 Champ A -2 0 Act 4 Citem A 1 Act 4 Cpot A 1 0
Act 4 Champ B -2 0 Act 4 Citem B 1 Act 4 Cpot B 1 0
Act 5 Champ A -2 0 Act 5 Citem A 1 Act 5 Cpot A 1 0
Act 5 Champ B -2 0 Act 5 Citem B 1 Act 5 Cpot B 1 0
Act 5 Champ C -2 0 Act 5 Citem C 1 Act 5 Cpot C 1 0
Act 1 (N) Champ A -2 0 Act 1 (N) Citem A 1 Act 1 (N) Cpot A 1 0
Act 1 (N) Champ B -2 0 Act 1 (N) Citem B 1 Act 1 (N) Cpot B 1 0
Act 1 (N) Champ C -2 0 Act 1 (N) Citem C 1 Act 1 (N) Cpot C 1 0
Act 2 (N) Champ A -2 0 Act 2 (N) Citem A 1 Act 2 (N) Cpot A 1 0
Act 2 (N) Champ B -2 0 Act 2 (N) Citem B 1 Act 2 (N) Cpot B 1 0
Act 2 (N) Champ C -2 0 Act 2 (N) Citem C 1 Act 2 (N) Cpot C 1 0
Act 3 (N) Champ A -2 0 Act 3 (N) Citem A 1 Act 3 (N) Cpot A 1 0
Act 3 (N) Champ B -2 0 Act 3 (N) Citem B 1 Act 3 (N) Cpot B 1 0
Act 3 (N) Champ C -2 0 Act 3 (N) Citem C 1 Act 3 (N) Cpot C 1 0
Act 4 (N) Champ A -2 0 Act 4 (N) Citem A 1 Act 4 (N) Cpot A 1 0
Act 4 (N) Champ B -2 0 Act 4 (N) Citem B 1 Act 4 (N) Cpot B 1 0
Act 5 (N) Champ A -2 0 Act 5 (N) Citem A 1 Act 5 (N) Cpot A 1 0
Act 5 (N) Champ B -2 0 Act 5 (N) Citem B 1 Act 5 (N) Cpot B 1 0
Act 1 (H) Champ A -2 0 Act 1 (H) Citem A 1 Act 1 (H) Cpot A 1 0
Act 1 (H) Champ B -2 0 Act 1 (H) Citem B 1 Act 1 (H) Cpot B 1 0
Act 1 (H) Champ C -2 0 Act 1 (H) Citem C 1 Act 1 (H) Cpot C 1 0
Act 2 (H) Champ A -2 0 Act 2 (H) Citem A 1 Act 2 (H) Cpot A 1 0
Act 2 (H) Champ B -2 0 Act 2 (H) Citem B 1 Act 2 (H) Cpot B 1 0
Act 2 (H) Champ C -2 0 Act 2 (H) Citem C 1 Act 2 (H) Cpot C 1 0
Act 3 (H) Champ A -2 0 Act 3 (H) Citem A 1 Act 3 (H) Cpot A 1 0
Act 3 (H) Champ B -2 0 Act 3 (H) Citem B 1 Act 3 (H) Cpot B 1 0
Act 3 (H) Champ C -2 0 Act 3 (H) Citem C 1 Act 3 (H) Cpot C 1 0
Act 4 (H) Champ A -2 0 Act 4 (H) Citem A 1 Act 4 (H) Cpot A 1 0
Act 4 (H) Champ B -2 0 Act 4 (H) Citem B 1 Act 4 (H) Cpot B 1 0
Act 5 (H) Champ A -2 0 Act 5 (H) Citem A 1 Act 5 (H) Cpot A 1 0
Act 5 (H) Champ B -2 0 Act 5 (H) Citem B 1 Act 5 (H) Cpot B 1 0
Act 5 (H) Champ C -2 0 Act 5 (H) Citem C 1 Act 5 (H) Cpot C 1 0
Act 1 Uitem A 1 800 800 800 1024 0 Act 1 Equip A 58 Act 1 Good 4 0
Act 1 Uitem B 1 800 800 800 1024 0 Act 1 Equip B 58 Act 1 Good 4 0
Act 1 Uitem C 1 800 800 800 1024 0 Act 1 Equip C 58 Act 1 Good 4 0
Act 2 Uitem A 1 800 800 800 1024 0 Act 2 Equip A 58 Act 2 Good 4 0
Act 2 Uitem B 1 800 800 800 1024 0 Act 2 Equip B 58 Act 2 Good 4 0
Act 2 Uitem C 1 800 800 800 1024 0 Act 2 Equip C 58 Act 3 Good 4 0
Act 3 Uitem A 1 800 800 800 1024 0 Act 3 Equip A 58 Act 3 Good 4 0
Act 3 Uitem B 1 800 800 800 1024 0 Act 3 Equip B 58 Act 3 Good 4 0
Act 3 Uitem C 1 800 800 800 1024 0 Act 3 Equip C 58 Act 3 Good 4 0
Act 4 Uitem A 1 800 800 800 1024 0 Act 4 Equip A 58 Act 4 Good 4 0
Act 4 Uitem B 1 800 800 800 1024 0 Act 4 Equip B 58 Act 4 Good 4 0
Act 5 Uitem A 1 800 800 800 1024 0 Act 5 Equip A 58 Act 5 Good 4 0
Act 5 Uitem B 1 800 800 800 1024 0 Act 5 Equip B 58 Act 5 Good 4 0
Act 5 Uitem C 1 800 800 800 1024 0 Act 5 Equip C 58 Act 5 Good 4 0
Act 1 (N) Uitem A 1 800 800 800 1024 0 Act 1 (N) Equip A 58 Act 1 (N) Good 4 0
Act 1 (N) Uitem B 1 800 800 800 1024 0 Act 1 (N) Equip B 58 Act 1 (N) Good 4 0
Act 1 (N) Uitem C 1 800 800 800 1024 0 Act 1 (N) Equip B 58 Act 1 (N) Good 4 0
Act 2 (N) Uitem A 1 800 800 800 1024 0 Act 2 (N) Equip A 58 Act 2 (N) Good 4 0
Act 2 (N) Uitem B 1 800 800 800 1024 0 Act 2 (N) Equip B 58 Act 2 (N) Good 4 0
Act 2 (N) Uitem C 1 800 800 800 1024 0 Act 2 (N) Equip B 58 Act 2 (N) Good 4 0
Act 3 (N) Uitem A 1 800 800 800 1024 0 Act 3 (N) Equip A 58 Act 3 (N) Good 4 0
Act 3 (N) Uitem B 1 800 800 800 1024 0 Act 3 (N) Equip B 58 Act 3 (N) Good 4 0
Act 3 (N) Uitem C 1 800 800 800 1024 0 Act 3 (N) Equip B 58 Act 3 (N) Good 4 0
Act 4 (N) Uitem A 1 800 800 800 1024 0 Act 4 (N) Equip A 58 Act 4 (N) Good 4 0
Act 4 (N) Uitem B 1 800 800 800 1024 0 Act 4 (N) Equip B 58 Act 4 (N) Good 4 0
Act 5 (N) Uitem A 1 800 800 800 1024 0 Act 5 (N) Equip A 58 Act 5 (N) Good 4 0
Act 5 (N) Uitem B 1 800 800 800 1024 0 Act 5 (N) Equip B 58 Act 5 (N) Good 4 0
Act 5 (N) Uitem C 1 800 800 800 1024 0 Act 5 (N) Equip C 58 Act 5 (N) Good 4 0
Act 1 (H) Uitem A 1 800 800 800 1024 0 Act 1 (H) Equip A 58 Act 1 (H) Good 4 0
Act 1 (H) Uitem B 1 800 800 800 1024 0 Act 1 (H) Equip B 58 Act 1 (H) Good 4 0
Act 1 (H) Uitem C 1 800 800 800 1024 0 Act 1 (H) Equip B 58 Act 1 (H) Good 4 0
Act 2 (H) Uitem A 1 800 800 800 1024 0 Act 2 (H) Equip A 58 Act 2 (H) Good 4 0
Act 2 (H) Uitem B 1 800 800 800 1024 0 Act 2 (H) Equip B 58 Act 2 (H) Good 4 0
Act 2 (H) Uitem C 1 800 800 800 1024 0 Act 2 (H) Equip B 58 Act 2 (H) Good 4 0
Act 3 (H) Uitem A 1 800 800 800 1024 0 Act 3 (H) Equip A 58 Act 3 (H) Good 4 0
Act 3 (H) Uitem B 1 800 800 800 1024 0 Act 3 (H) Equip B 58 Act 3 (H) Good 4 0
Act 3 (H) Uitem C 1 800 800 800 1024 0 Act 3 (H) Equip B 58 Act 3 (H) Good 4 0
Act 4 (H) Uitem A 1 800 800 800 1024 0 Act 4 (H) Equip A 58 Act 4 (H) Good 4 0
Act 4 (H) Uitem B 1 800 800 800 1024 0 Act 4 (H) Equip B 58 Act 4 (H) Good 4 0
Act 5 (H) Uitem A 1 800 800 800 1024 0 Act 5 (H) Equip A 58 Act 5 (H) Good 4 0
Act 5 (H) Uitem B 1 800 800 800 1024 0 Act 5 (H) Equip B 58 Act 5 (H) Good 4 0
Act 5 (H) Uitem C 1 800 800 800 1024 0 Act 5 (H) Equip C 58 Act 5 (H) Good 4 0
Act 1 Unique A -3 0 Act 1 Uitem A 1 Act 1 Cpot A 2 0
Act 1 Unique B -3 0 Act 1 Uitem B 1 Act 1 Cpot B 2 0
Act 1 Unique C -3 0 Act 1 Uitem C 1 Act 1 Cpot C 2 0
Act 2 Unique A -3 0 Act 2 Uitem A 1 Act 2 Cpot A 2 0
Act 2 Unique B -3 0 Act 2 Uitem B 1 Act 2 Cpot B 2 0
Act 2 Unique C -3 0 Act 2 Uitem C 1 Act 2 Cpot C 2 0
Act 3 Unique A -3 0 Act 3 Uitem A 1 Act 3 Cpot A 2 0
Act 3 Unique B -3 0 Act 3 Uitem B 1 Act 3 Cpot B 2 0
Act 3 Unique C -3 0 Act 3 Uitem C 1 Act 3 Cpot C 2 0
Act 4 Unique A -3 0 Act 4 Uitem A 1 Act 4 Cpot A 2 0
Act 4 Unique B -3 0 Act 4 Uitem B 1 Act 4 Cpot B 2 0
Act 5 Unique A -3 0 Act 5 Uitem A 1 Act 5 Cpot A 2 0
Act 5 Unique B -3 0 Act 5 Uitem B 1 Act 5 Cpot B 2 0
Act 5 Unique C -3 0 Act 5 Uitem C 1 Act 5 Cpot C 2 0
Act 1 (N) Unique A -3 0 Act 1 (N) Uitem A 1 Act 1 (N) Cpot A 2 0
Act 1 (N) Unique B -3 0 Act 1 (N) Uitem B 1 Act 1 (N) Cpot B 2 0
Act 1 (N) Unique C -3 0 Act 1 (N) Uitem C 1 Act 1 (N) Cpot C 2 0
Act 2 (N) Unique A -3 0 Act 2 (N) Uitem A 1 Act 2 (N) Cpot A 2 0
Act 2 (N) Unique B -3 0 Act 2 (N) Uitem B 1 Act 2 (N) Cpot B 2 0
Act 2 (N) Unique C -3 0 Act 2 (N) Uitem C 1 Act 2 (N) Cpot C 2 0
Act 3 (N) Unique A -3 0 Act 3 (N) Uitem A 1 Act 3 (N) Cpot A 2 0
Act 3 (N) Unique B -3 0 Act 3 (N) Uitem B 1 Act 3 (N) Cpot B 2 0
Act 3 (N) Unique C -3 0 Act 3 (N) Uitem C 1 Act 3 (N) Cpot C 2 0
Act 4 (N) Unique A -3 0 Act 4 (N) Uitem A 1 Act 4 (N) Cpot A 2 0
Act 4 (N) Unique B -3 0 Act 4 (N) Uitem B 1 Act 4 (N) Cpot B 2 0
Act 5 (N) Unique A -3 0 Act 5 (N) Uitem A 1 Act 5 (N) Cpot A 2 0
Act 5 (N) Unique B -3 0 Act 5 (N) Uitem B 1 Act 5 (N) Cpot B 2 0
Act 5 (N) Unique C -3 0 Act 5 (N) Uitem C 1 Act 5 (N) Cpot C 2 0
Act 1 (H) Unique A -3 0 Act 1 (H) Uitem A 1 Act 1 (H) Cpot A 2 0
Act 1 (H) Unique B -3 0 Act 1 (H) Uitem B 1 Act 1 (H) Cpot B 2 0
Act 1 (H) Unique C -3 0 Act 1 (H) Uitem C 1 Act 1 (H) Cpot C 2 0
Act 2 (H) Unique A -3 0 Act 2 (H) Uitem A 1 Act 2 (H) Cpot A 2 0
Act 2 (H) Unique B -3 0 Act 2 (H) Uitem B 1 Act 2 (H) Cpot B 2 0
Act 2 (H) Unique C -3 0 Act 2 (H) Uitem C 1 Act 2 (H) Cpot C 2 0
Act 3 (H) Unique A -3 0 Act 3 (H) Uitem A 1 Act 3 (H) Cpot A 2 0
Act 3 (H) Unique B -3 0 Act 3 (H) Uitem B 1 Act 3 (H) Cpot B 2 0
Act 3 (H) Unique C -3 0 Act 3 (H) Uitem C 1 Act 3 (H) Cpot C 2 0
Act 4 (H) Unique A -3 0 Act 4 (H) Uitem A 1 Act 4 (H) Cpot A 2 0
Act 4 (H) Unique B -3 0 Act 4 (H) Uitem B 1 Act 4 (H) Cpot B 2 0
Act 5 (H) Unique A -3 0 Act 5 (H) Uitem A 1 Act 5 (H) Cpot A 2 0
Act 5 (H) Unique B -3 0 Act 5 (H) Uitem B 1 Act 5 (H) Cpot B 2 0
Act 5 (H) Unique C -3 0 Act 5 (H) Uitem C 1 Act 5 (H) Cpot C 2 0
Quill 1 1 200 gld 19 Act 1 Junk 19 0
Quill 2 1 200 gld 19 Act 1 Junk 19 0
Quill 3 1 200 gld 19 Act 1 Junk 19 Act 1 Good 1 0
Quill 4 1 200 gld 19 Act 1 Junk 19 Act 1 Good 1 0
Quill 5 1 200 gld 19 Act 3 Junk 19 Act 3 Good 1 0
Quill 1 (N) 1 200 gld 19 Act 1 (N) Junk 19 0
Quill 2 (N) 1 200 gld 19 Act 1 (N) Junk 19 Act 1 (N) Good 1 0
Quill 3 (N) 1 200 gld 19 Act 1 (N) Junk 19 Act 1 (N) Good 1 0
Quill 4 (N) 1 200 gld 19 Act 1 (N) Junk 19 Act 1 (N) Good 1 0
Quill 5 (N) 1 200 gld 19 Act 3 (N) Junk 19 Act 3 (N) Good 1 0
Quill 1 (H) 1 200 gld 19 Act 1 (H) Junk 19 0
Quill 2 (H) 1 200 gld 19 Act 1 (H) Junk 19 Act 1 (H) Good 3 0
Quill 3 (H) 1 200 gld 19 Act 1 (H) Junk 19 Act 1 (H) Good 3 0
Quill 4 (H) 1 200 gld 19 Act 1 (H) Junk 19 Act 1 (H) Good 3 0
Quill 5 (H) 1 200 gld 19 Act 3 (H) Junk 19 Act 3 (H) Good 3 0
Swarm 1 1 250 Potion 2 12 Misc 1 6 Act 2 Good 1 Act 2 Magic A 6 0
Swarm 2 1 250 Potion 3 12 Misc 2 6 Act 3 Good 1 Act 3 Magic A 6 0
Swarm 1 (N) 1 250 Potion 6 12 Misc 2 6 Act 2 (N) Good 1 Act 2 (N) Magic A 6 0
Swarm 2 (N) 1 250 Potion 6 12 Misc 2 6 Act 3 (N) Good 1 Act 3 (N) Magic A 6 0
Swarm 1 (H) 1 250 Potion 6 12 Misc 2 6 Act 2 (H) Good 1 Act 2 (H) Magic A 6 0
Swarm 2 (H) 1 250 Potion 6 12 Misc 2 6 Act 3 (H) Good 1 Act 3 (H) Magic A 6 0
Andariel 7 983 983 983 1024 19 "gld,mul=1280" 11 Act 2 Equip A 19 Act 2 Junk 15 Act 2 Good 3 0
Andariel (N) 7 983 983 983 1024 19 "gld,mul=1536" 11 Act 2 (N) Equip A 19 Act 2 (N) Junk 15 Act 2 (N) Good 3 0
Andariel (H) 7 983 983 983 1024 19 "gld,mul=2048" 11 Act 2 (H) Equip A 19 Act 2 (H) Junk 15 Act 2 (H) Good 3 0
Duriel 7 983 983 983 1024 19 "gld,mul=1280" 11 Act 3 Equip A 19 Act 3 Junk 15 Act 3 Good 3 0
Duriel (N) 7 983 983 983 1024 19 "gld,mul=1536" 11 Act 3 (N) Equip A 19 Act 3 (N) Junk 15 Act 3 (N) Good 3 0
Duriel (H) 7 983 983 983 1024 19 "gld,mul=2048" 11 Act 3 (H) Equip A 19 Act 3 (H) Junk 15 Act 3 (H) Good 3 0
Radament 5 800 800 800 1024 19 "gld,mul=1280" 11 Act 3 Equip B 19 Act 3 Junk 15 Act 3 Good 3 0
Radament (N) 5 800 800 800 1024 19 "gld,mul=1536" 11 Act 3 (N) Equip B 19 Act 3 (N) Junk 15 Act 3 (N) Good 3 0
Radament (H) 5 800 800 800 1024 19 "gld,mul=2048" 11 Act 3 (H) Equip C 19 Act 3 (H) Junk 15 Act 3 (H) Good 3 0
Flying Scimitar 1 200 Act 2 Good 3 scm 57 0
Flying Scimitar (N) 1 200 Act 2 (N) Good 3 scm 25 9sm 32 0
Flying Scimitar (H) 1 200 Act 2 (H) Good 3 scm 7 9sm 18 7sm 32 0
Mephisto 7 983 983 983 1024 15 "gld,mul=1280" 5 Act 4 Equip A 52 Act 4 Junk 5 Act 4 Good 3 0
Mephisto (N) 7 983 983 983 1024 15 "gld,mul=1536" 5 Act 4 (N) Equip A 52 Act 4 (N) Junk 5 Act 4 (N) Good 3 0
Mephisto (H) 7 983 983 983 1024 15 "gld,mul=2048" 5 Act 4 (H) Equip A 52 Act 4 (H) Junk 5 Act 4 (H) Good 3 0
Diablo 7 983 983 983 1024 15 "gld,mul=1280" 5 Act 5 Equip A 52 Act 5 Junk 5 Act 5 Good 3 0
Diablo (N) 7 983 983 983 1024 15 "gld,mul=1536" 5 Act 5 (N) Equip A 52 Act 5 (N) Junk 5 Act 5 (N) Good 3 0
Diablo (H) 7 983 983 983 1024 15 "gld,mul=2048" 5 Act 5 (H) Equip A 52 Act 5 (H) Junk 5 Act 5 (H) Good 3 0
Summoner 5 800 800 800 1024 19 "gld,mul=1280" 9 Act 2 Equip C 15 Act 3 Junk 5 Act 2 Good 3 Act 3 Magic A 4 0
Summoner (N) 5 800 800 800 1024 19 "gld,mul=1536" 9 Act 2 (N) Equip C 15 Act 3 (N) Junk 5 Act 2 (N) Good 3 Act 3 (N) Magic A 4 0
Summoner (H) 5 800 800 800 1024 19 "gld,mul=2048" 9 Act 2 (H) Equip C 15 Act 3 (H) Junk 5 Act 2 (H) Good 3 Act 3 (H) Magic A 4 0
Council 4 800 800 800 1024 19 "gld,mul=1280" 9 Act 4 Equip A 15 Act 4 Junk 5 Act 4 Good 3 Act 4 Magic A 4 0
Council (N) 4 800 800 800 1024 19 "gld,mul=1536" 9 Act 4 (N) Equip A 15 Act 4 (N) Junk 5 Act 4 (N) Good 3 Act 4 (N) Magic A 4 0
Council (H) 4 800 800 800 1024 19 "gld,mul=2048" 9 Act 4 (H) Equip A 15 Act 4 (H) Junk 5 Act 4 (H) Good 3 Act 4 (H) Magic A 4 0
Griswold -3 0 Act 1 Uitem C 1 Act 1 Melee B 2 0
Griswold (N) -3 0 Act 1 (H) Uitem C 1 Act 1 (N) Melee B 2 0
Griswold (H) -3 0 Act 1 (H) Uitem C 1 Act 1 (H) Melee B 2 0
Cow 1 200 gld 19 Act 5 Equip A 19 Act 5 Junk 19 Act 5 Good 3 0
Cow (N) 1 200 gld 19 Act 5 (N) Equip A 19 Act 5 (N) Junk 19 Act 5 (N) Good 3 0
Cow (H) 1 200 gld 19 Act 5 (H) Equip B 19 Act 1 (H) Junk 19 Act 5 (H) Good 3 0
Trapped Soul 1 200 gld 19 Act 4 Equip A 8 Act 4 Junk 33 0
Trapped Soul (N) 1 200 gld 19 Act 4 (N) Equip A 8 Act 4 (N) Junk 33 0
Trapped Soul (H) 1 200 gld 19 Act 4 (H) Equip A 8 Act 4 (H) Junk 33 0
Haphesto 5 800 800 800 1024 19 "gld,mul=1280" 14 Act 5 Equip A 19 Act 5 Junk 5 Act 5 Good 3 0
Haphesto (N) 5 800 800 800 1024 19 "gld,mul=1536" 14 Act 5 (N) Equip A 19 Act 5 (N) Junk 5 Act 5 (N) Good 3 0
Haphesto (H) 5 800 800 800 1024 19 "gld,mul=2048" 14 Act 5 (H) Equip A 19 Act 5 (H) Junk 5 Act 5 (H) Good 3 0
Nihlathak 5 800 800 800 1024 19 "gld,mul=1280" 14 Act 5 Equip B 19 Act 5 Junk 5 Act 5 Good 3 0
Nihlathak (N) 5 800 800 800 1024 19 "gld,mul=1536" 14 Act 5 (N) Equip B 19 Act 5 (N) Junk 5 Act 5 (N) Good 3 0
Nihlathak (H) 5 800 800 800 1024 19 "gld,mul=2048" 14 Act 5 (H) Equip B 19 Act 5 (H) Junk 5 Act 5 (H) Good 3 0
Baal 7 983 983 983 1024 15 "gld,mul=1280" 5 Act 1 (N) Equip A 52 Act 1 (N) Junk 5 Act 1 (N) Good 3 0
Baal (N) 7 983 983 983 1024 15 "gld,mul=1536" 5 Act 1 (H) Equip A 52 Act 1 (H) Junk 5 Act 1 (H) Good 3 0
Baal (H) 7 983 983 983 1024 15 "gld,mul=2048" 5 Act 5 (H) Equip B 52 Act 5 (H) Junk 5 Act 5 (H) Good 3 0
Blood Raven 5 800 800 800 1024 19 "gld,mul=1280" 14 Act 1 Equip B 19 Act 1 Junk 5 Act 1 Good 3 0
Blood Raven (N) 5 800 800 800 1024 19 "gld,mul=1536" 14 Act 1 (N) Equip B 19 Act 1 (N) Junk 5 Act 1 (N) Good 3 0
Blood Raven (H) 5 800 800 800 1024 19 "gld,mul=2048" 14 Act 1 (H) Equip B 19 Act 1 (H) Junk 5 Act 1 (H) Good 3 0
Smith -3 0 Act 1 Uitem C 1 Act 1 Melee B 2
Smith (N) -3 0 Act 1 (H) Uitem C 1 Act 1 (N) Melee B 2
Smith (H) -3 0 Act 1 (H) Uitem C 1 Act 1 (H) Melee B 2

718
txt/TreasureClassEx.txt Normal file
View File

@ -0,0 +1,718 @@
Treasure Class Picks Unique Set Rare Magic NoDrop Item1 Prob1 Item2 Prob2 Item3 Prob3 Item4 Prob4 Item5 Prob5 Item6 Prob6 Item7 Prob7 Item8 Prob8 Item9 Prob9 Item10 Prob10 Term
Gold 1 gld 1 0
Jewelry A 1 rin 8 amu 4 jew 1 cm3 2 cm2 2 cm1 2 0
Jewelry B 1 rin 8 amu 4 jew 1 cm3 2 cm2 2 cm1 2 0
Jewelry C 1 rin 8 amu 4 jew 1 cm3 2 cm2 2 cm1 2 0
Chipped Gem 1 gcv 1 gcy 1 gcb 1 gcg 1 gcr 1 gcw 1 skc 1 0
Flawed Gem 1 gfv 1 gfy 1 gfb 1 gfg 1 gfr 1 gfw 1 skf 1 0
Normal Gem 1 gsv 1 gsy 1 gsb 1 gsg 1 gsr 1 gsw 1 sku 1 0
Flawless Gem 1 gzv 1 gly 1 glb 1 glg 1 glr 1 glw 1 skl 1 0
Perfect Gem 1 gpv 1 gpy 1 gpb 1 gpg 1 gpr 1 gpw 1 skz 1 0
Ammo 1 aqv 1 cqv 1 0
Misc 0 1 key 3 tsc 3 isc 3 opl 2 gpl 2 0
Misc 1 1 key 3 tsc 3 isc 3 opm 2 gpm 2 0
Misc 2 1 key 3 tsc 3 isc 3 ops 2 gps 2 0
Hpotion 1 1 hp1 8 hp2 3 mp1 3 mp2 2 rvs 1 0
Hpotion 2 1 hp1 1 hp2 4 hp3 3 mp2 2 mp3 2 rvs 1 0
Hpotion 3 1 hp2 1 hp3 4 hp4 3 mp3 2 mp4 2 rvs 1 0
Hpotion 4 1 hp3 1 hp4 4 hp5 3 mp4 2 mp5 2 rvs 1 0
Hpotion 5 1 hp3 1 hp4 4 hp5 4 mp5 4 rvs 1 0
Hpotion 6 1 hp4 4 hp5 6 mp4 2 mp5 4 rvs 1 0
Potion 1 1 hp1 12 hp2 4 mp1 5 mp2 4 rvs 1 vps 4 0
Potion 2 1 hp1 4 hp2 8 hp3 5 mp2 2 mp3 5 rvs 1 vps 2 yps 3 wms 1 0
Potion 3 1 hp2 6 hp3 6 hp4 4 mp3 3 mp4 3 rvs 1 vps 2 yps 2 wms 1 0
Potion 4 1 hp3 6 hp4 6 hp5 4 mp4 3 mp5 3 rvs 1 vps 2 yps 2 wms 1 0
Potion 5 1 hp3 4 hp4 6 hp5 6 mp5 5 rvs 1 vps 2 yps 2 wms 1 0
Potion 6 1 hp4 6 hp5 8 mp4 1 mp5 5 rvs 1 vps 2 yps 2 wms 1 0
Runes 1 1 r01 3 r02 2
Runes 2 1 r03 3 r04 2 Runes 1 9
Runes 3 1 r05 3 r06 2 Runes 2 20
Runes 4 1 r07 3 r08 2 Runes 3 30
Runes 5 1 r09 3 r10 2 Runes 4 50
Runes 6 1 r11 3 r12 2 Runes 5 90
Runes 7 1 r13 3 r14 2 Runes 6 170
Runes 8 1 r15 3 r16 2 Runes 7 330
Runes 9 1 r17 3 r18 2 Runes 8 650
Runes 10 1 r19 3 r20 2 Runes 9 1290
Runes 11 1 r21 3 r22 2 Runes 10 2570
Runes 12 1 r23 3 r24 2 Runes 11 5130
Runes 13 1 r25 3 r26 2 Runes 12 10250
Runes 14 1 r27 3 r28 2 Runes 13 20340
Runes 15 1 r29 3 r30 2 Runes 14 40970
Runes 16 1 r31 3 r32 2 Runes 15 81880
Runes 17 1 r33 1 Runes 16 32770
Act 1 Junk 1 Potion 1 8 Misc 0 4 Ammo 4 0
Act 2 Junk 1 Act 1 Junk 2 Potion 2 8 Misc 0 4 Ammo 4 0
Act 3 Junk 1 Act 2 Junk 2 Potion 3 8 Misc 1 4 Ammo 4 0
Act 4 Junk 1 Act 3 Junk 2 Potion 4 8 Misc 1 4 Ammo 4 0
Act 5 Junk 1 Act 4 Junk 2 Potion 5 8 Misc 2 4 Ammo 4 0
Act 1 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 2 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 3 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 4 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 5 (N) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 1 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 2 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 3 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 4 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 5 (H) Junk 1 Act 5 Junk 2 Potion 6 8 Misc 2 4 Ammo 4 0
Act 1 Equip A 1 weap3 7 armo3 7 0
Act 1 Equip B 1 weap3 3 armo3 3 weap6 7 armo6 7 0
Act 1 Equip C 1 weap3 1 armo3 1 weap6 3 armo6 3 weap9 7 armo9 7 weap12 1 armo12 1 0
Act 2 Equip A 1 weap6 1 armo6 1 weap9 3 armo9 3 weap12 7 armo12 7 weap15 1 armo15 1 Act 1 Equip C 20 0
Act 2 Equip B 1 weap9 1 armo9 1 weap12 3 armo12 3 weap15 7 armo15 7 weap18 1 armo18 1 Act 2 Equip A 20 0
Act 2 Equip C 1 weap12 1 armo12 1 weap15 3 armo15 3 weap18 7 armo18 7 weap21 1 armo21 1 Act 2 Equip B 20 0
Act 3 Equip A 1 weap15 1 armo15 1 weap18 3 armo18 3 weap21 7 armo21 7 weap24 1 armo24 1 Act 2 Equip C 40 0
Act 3 Equip B 1 weap18 1 armo18 1 weap21 3 armo21 3 weap24 7 armo24 7 weap27 1 armo27 1 Act 3 Equip A 40 0
Act 3 Equip C 1 weap21 1 armo21 1 weap24 3 armo24 3 weap27 7 armo27 7 weap30 1 armo30 1 Act 3 Equip B 40 0
Act 4 Equip A 1 weap24 1 armo24 1 weap27 3 armo27 3 weap30 7 armo30 7 weap33 1 armo33 1 Act 3 Equip C 60 0
Act 4 Equip B 1 weap27 1 armo27 1 weap30 3 armo30 3 weap33 7 armo33 7 weap36 1 armo36 1 Act 4 Equip A 60 0
Act 5 Equip A 1 weap27 1 armo27 1 weap30 3 armo30 3 weap33 7 armo33 7 weap36 5 armo36 5 Act 4 Equip B 80 0
Act 5 Equip B 1 weap30 1 armo30 1 weap33 3 armo33 3 weap36 7 armo36 7 weap39 1 armo39 1 Act 5 Equip A 80 0
Act 5 Equip C 1 weap30 1 armo30 1 weap33 3 armo33 3 weap36 7 armo36 7 weap39 1 armo39 1 Act 5 Equip B 80 0
Act 1 (N) Equip A 1 weap30 1 armo30 1 weap33 3 armo33 3 weap36 7 armo36 7 weap39 5 armo39 5 Act 5 Equip C 100 Act 5 Equip B 100 0
Act 1 (N) Equip B 1 weap33 1 armo33 1 weap36 3 armo36 3 weap39 7 armo39 7 weap42 1 armo42 1 Act 1 (N) Equip A 110 Act 5 Equip B 110 0
Act 1 (N) Equip C 1 weap33 1 armo33 1 weap36 3 armo36 3 weap39 7 armo39 7 weap42 1 armo42 1 Act 1 (N) Equip A 110 Act 5 Equip B 110 0
Act 2 (N) Equip A 1 weap33 1 armo33 1 weap36 3 armo36 3 weap39 7 armo39 7 weap42 5 armo42 5 Act 1 (N) Equip B 120 Act 5 Equip B 120 0
Act 2 (N) Equip B 1 weap36 1 armo36 1 weap39 3 armo39 3 weap42 7 armo42 7 weap45 1 armo45 1 Act 2 (N) Equip A 130 Act 5 Equip B 130 0
Act 2 (N) Equip C 1 weap36 1 armo36 1 weap39 3 armo39 3 weap42 7 armo42 7 weap45 1 armo45 1 Act 2 (N) Equip A 130 Act 5 Equip B 130 0
Act 3 (N) Equip A 1 weap36 1 armo36 1 weap39 3 armo39 3 weap42 7 armo42 7 weap45 5 armo45 5 Act 2 (N) Equip B 140 Act 5 Equip B 140 0
Act 3 (N) Equip B 1 weap39 1 armo39 1 weap42 3 armo42 3 weap45 7 armo45 7 weap48 1 armo48 1 Act 3 (N) Equip A 150 Act 5 Equip B 150 0
Act 3 (N) Equip C 1 weap39 1 armo39 1 weap42 3 armo42 3 weap45 7 armo45 7 weap48 1 armo48 1 Act 3 (N) Equip A 150 Act 5 Equip B 150 0
Act 4 (N) Equip A 1 weap39 1 armo39 1 weap42 3 armo42 3 weap45 7 armo45 7 weap48 5 armo48 5 Act 3 (N) Equip B 160 Act 5 Equip B 160 0
Act 4 (N) Equip B 1 weap42 1 armo42 1 weap45 3 armo45 3 weap48 7 armo48 7 weap51 1 armo51 1 Act 4 (N) Equip A 170 Act 5 Equip B 170 0
Act 4 (N) Equip C 1 weap42 1 armo42 1 weap45 3 armo45 3 weap48 7 armo48 7 weap51 1 armo51 1 Act 4 (N) Equip A 170 Act 5 Equip B 170 0
Act 5 (N) Equip A 1 weap42 1 armo42 1 weap45 3 armo45 3 weap48 7 armo48 7 weap51 5 armo51 5 Act 4 (N) Equip B 180 Act 5 Equip B 180 0
Act 5 (N) Equip B 1 weap45 1 armo45 1 weap48 3 armo48 3 weap51 7 armo51 7 weap54 1 armo54 1 Act 5 (N) Equip A 190 Act 5 Equip B 190 0
Act 5 (N) Equip C 1 weap45 1 armo45 1 weap48 3 armo48 3 weap51 7 armo51 7 weap54 1 armo54 1 Act 5 (N) Equip B 200 Act 5 Equip B 200 0
Act 1 (H) Equip A 1 weap45 1 armo45 1 weap48 3 armo48 3 weap51 7 armo51 7 weap54 5 armo54 5 Act 5 (N) Equip C 210 Act 5 (N) Equip C 600 0
Act 1 (H) Equip C 1 weap48 1 armo48 1 weap51 3 armo51 3 weap54 7 armo54 7 weap57 1 armo57 1 Act 1 (H) Equip A 220 Act 5 (N) Equip C 640 0
Act 1 (H) Equip B 1 weap48 1 armo48 1 weap51 3 armo51 3 weap54 7 armo54 7 weap57 1 armo57 1 Act 1 (H) Equip A 220 Act 5 (N) Equip C 640 0
Act 2 (H) Equip A 1 weap48 1 armo48 1 weap51 3 armo51 3 weap54 7 armo54 7 weap57 5 armo57 5 Act 1 (H) Equip B 230 Act 5 (N) Equip C 680 0
Act 2 (H) Equip B 1 weap51 1 armo51 1 weap54 3 armo54 3 weap57 7 armo57 7 weap60 1 armo60 1 Act 2 (H) Equip A 240 Act 5 (N) Equip C 720 0
Act 2 (H) Equip C 1 weap51 1 armo51 1 weap54 3 armo54 3 weap57 7 armo57 7 weap60 1 armo60 1 Act 2 (H) Equip A 240 Act 5 (N) Equip C 720 0
Act 3 (H) Equip A 1 weap51 1 armo51 1 weap54 3 armo54 3 weap57 7 armo57 7 weap60 5 armo60 5 Act 2 (H) Equip B 250 Act 5 (N) Equip C 760 0
Act 3 (H) Equip B 1 weap54 1 armo54 1 weap57 3 armo57 3 weap60 7 armo60 7 weap63 1 armo63 1 Act 3 (H) Equip A 260 Act 5 (N) Equip C 800 0
Act 3 (H) Equip C 1 weap54 1 armo54 1 weap57 3 armo57 3 weap60 7 armo60 7 weap63 1 armo63 1 Act 3 (H) Equip A 260 Act 5 (N) Equip C 800 0
Act 4 (H) Equip A 1 weap54 1 armo54 1 weap57 3 armo57 3 weap60 7 armo60 7 weap63 5 armo63 5 Act 3 (H) Equip B 270 Act 5 (N) Equip C 840 0
Act 4 (H) Equip B 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 1 armo66 1 Act 4 (H) Equip A 280 Act 5 (N) Equip C 880 0
Act 4 (H) Equip C 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 1 armo66 1 Act 4 (H) Equip A 280 Act 5 (N) Equip C 880 0
Act 5 (H) Equip A 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 3 armo66 3 Act 4 (H) Equip B 290 Act 5 (N) Equip C 920 0
Act 5 (H) Equip B 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 5 armo66 5 Act 5 (H) Equip A 300 Act 5 (N) Equip C 960 0
Act 5 (H) Equip C 1 weap57 1 armo57 1 weap60 3 armo60 3 weap63 7 armo63 7 weap66 5 armo66 5 Act 5 (H) Equip B 310 Act 5 (N) Equip C 1000 0
Act 1 Melee A 1 mele3 7 armo3 7 0
Act 1 Melee B 1 mele3 3 armo3 3 mele6 7 armo6 7 0
Act 1 Melee C 1 mele3 1 armo3 1 mele6 3 armo6 3 mele9 7 armo9 7 mele12 1 armo12 1 0
Act 2 Melee A 1 mele6 1 armo6 1 mele9 3 armo9 3 mele12 7 armo12 7 mele15 1 armo15 1 Act 1 Melee C 20 0
Act 2 Melee B 1 mele9 1 armo9 1 mele12 3 armo12 3 mele15 7 armo15 7 mele18 1 armo18 1 Act 2 Melee A 20 0
Act 2 Melee C 1 mele12 1 armo12 1 mele15 3 armo15 3 mele18 7 armo18 7 mele21 1 armo21 1 Act 2 Melee B 20 0
Act 3 Melee A 1 mele15 1 armo15 1 mele18 3 armo18 3 mele21 7 armo21 7 mele24 1 armo24 1 Act 2 Melee C 40 0
Act 3 Melee B 1 mele18 1 armo18 1 mele21 3 armo21 3 mele24 7 armo24 7 mele27 1 armo27 1 Act 3 Melee A 40 0
Act 3 Melee C 1 mele21 1 armo21 1 mele24 3 armo24 3 mele27 7 armo27 7 mele30 1 armo30 1 Act 3 Melee B 40 0
Act 4 Melee A 1 mele24 1 armo24 1 mele27 3 armo27 3 mele30 7 armo30 7 mele33 1 armo33 1 Act 3 Melee C 60 0
Act 4 Melee B 1 mele27 1 armo27 1 mele30 3 armo30 3 mele33 7 armo33 7 mele36 1 armo36 1 Act 4 Melee A 60 0
Act 5 Melee A 1 mele27 1 armo27 1 mele30 3 armo30 3 mele33 7 armo33 7 mele36 5 armo36 5 Act 4 Melee B 80 0
Act 5 Melee B 1 mele30 1 armo30 1 mele33 3 armo33 3 mele36 7 armo36 7 mele39 1 armo39 1 Act 5 Melee A 80 0
Act 5 Melee C 1 mele30 1 armo30 1 mele33 3 armo33 3 mele36 7 armo36 7 mele39 1 armo39 1 Act 5 Melee B 80 0
Act 1 (N) Melee A 1 mele30 1 armo30 1 mele33 3 armo33 3 mele36 7 armo36 7 mele39 5 armo39 5 Act 5 Melee C 100 Act 5 Melee B 100 0
Act 1 (N) Melee B 1 mele33 1 armo33 1 mele36 3 armo36 3 mele39 7 armo39 7 mele42 1 armo42 1 Act 1 (N) Melee A 110 Act 5 Melee B 110 0
Act 2 (N) Melee A 1 mele33 1 armo33 1 mele36 3 armo36 3 mele39 7 armo39 7 mele42 5 armo42 5 Act 1 (N) Melee B 120 Act 5 Melee B 120 0
Act 2 (N) Melee B 1 mele36 1 armo36 1 mele39 3 armo39 3 mele42 7 armo42 7 mele45 1 armo45 1 Act 2 (N) Melee A 130 Act 5 Melee B 130 0
Act 3 (N) Melee A 1 mele36 1 armo36 1 mele39 3 armo39 3 mele42 7 armo42 7 mele45 5 armo45 5 Act 2 (N) Melee B 140 Act 5 Melee B 140 0
Act 3 (N) Melee B 1 mele39 1 armo39 1 mele42 3 armo42 3 mele45 7 armo45 7 mele48 1 armo48 1 Act 3 (N) Melee A 150 Act 5 Melee B 150 0
Act 4 (N) Melee A 1 mele39 1 armo39 1 mele42 3 armo42 3 mele45 7 armo45 7 mele48 5 armo48 5 Act 3 (N) Melee B 160 Act 5 Melee B 160 0
Act 4 (N) Melee B 1 mele42 1 armo42 1 mele45 3 armo45 3 mele48 7 armo48 7 mele51 1 armo51 1 Act 4 (N) Melee A 170 Act 5 Melee B 170 0
Act 5 (N) Melee A 1 mele42 1 armo42 1 mele45 3 armo45 3 mele48 7 armo48 7 mele51 5 armo51 5 Act 4 (N) Melee B 180 Act 5 Melee B 180 0
Act 5 (N) Melee B 1 mele45 1 armo45 1 mele48 3 armo48 3 mele51 7 armo51 7 mele54 1 armo54 1 Act 5 (N) Melee A 190 Act 5 Melee B 190 0
Act 5 (N) Melee C 1 mele45 1 armo45 1 mele48 3 armo48 3 mele51 7 armo51 7 mele54 1 armo54 1 Act 5 (N) Melee B 200 Act 5 Melee B 200 0
Act 1 (H) Melee A 1 mele45 1 armo45 1 mele48 3 armo48 3 mele51 7 armo51 7 mele54 5 armo54 5 Act 5 (N) Melee C 210 Act 5 (N) Melee B 600 0
Act 1 (H) Melee B 1 mele48 1 armo48 1 mele51 3 armo51 3 mele54 7 armo54 7 mele57 1 armo57 1 Act 1 (H) Melee A 220 Act 5 (N) Melee B 640 0
Act 2 (H) Melee A 1 mele48 1 armo48 1 mele51 3 armo51 3 mele54 7 armo54 7 mele57 5 armo57 5 Act 1 (H) Melee B 230 Act 5 (N) Melee B 680 0
Act 2 (H) Melee B 1 mele51 1 armo51 1 mele54 3 armo54 3 mele57 7 armo57 7 mele60 1 armo60 1 Act 2 (H) Melee A 240 Act 5 (N) Melee B 720 0
Act 3 (H) Melee A 1 mele51 1 armo51 1 mele54 3 armo54 3 mele57 7 armo57 7 mele60 5 armo60 5 Act 2 (H) Melee B 250 Act 5 (N) Melee B 760 0
Act 3 (H) Melee B 1 mele54 1 armo54 1 mele57 3 armo57 3 mele60 7 armo60 7 mele63 1 armo63 1 Act 3 (H) Melee A 260 Act 5 (N) Melee B 800 0
Act 4 (H) Melee A 1 mele54 1 armo54 1 mele57 3 armo57 3 mele60 7 armo60 7 mele63 5 armo63 5 Act 3 (H) Melee B 270 Act 5 (N) Melee B 840 0
Act 4 (H) Melee B 1 mele57 1 armo57 1 mele60 3 armo60 3 mele63 7 armo63 7 mele66 1 armo66 1 Act 4 (H) Melee A 280 Act 5 (N) Melee B 880 0
Act 5 (H) Melee A 1 mele57 1 armo57 1 mele60 3 armo60 3 mele63 7 armo63 7 mele66 3 armo66 3 Act 4 (H) Melee B 290 Act 5 (N) Melee B 920 0
Act 5 (H) Melee B 1 mele57 1 armo57 1 mele60 3 armo60 3 mele63 7 armo63 7 mele66 5 armo66 5 Act 5 (H) Melee A 300 Act 5 (N) Melee B 960 0
Act 5 (H) Melee C 1 mele57 1 armo57 1 mele60 3 armo60 3 mele63 7 armo63 7 mele66 5 armo66 5 Act 5 (H) Melee B 310 Act 5 (N) Melee B 1000 0
Act 1 Bow A 1 bow3 36 0
Act 1 Bow B 1 bow3 20 bow6 16 0
Act 1 Bow C 1 bow3 10 bow6 16 bow9 10 0
Act 2 Bow A 1 bow3 3 bow6 15 bow9 15 bow12 3 0
Act 2 Bow B 1 bow3 1 bow6 7 bow9 20 bow12 7 bow15 1 0
Act 2 Bow C 1 bow3 1 bow6 3 bow9 14 bow12 14 bow15 3 bow18 1 0
Act 3 Bow A 1 bow3 1 bow6 3 bow9 6 bow12 12 bow15 6 bow18 3 bow21 1 0
Act 3 Bow B 1 bow3 1 bow6 3 bow9 6 bow12 8 bow15 8 bow18 6 bow21 3 bow24 1 0
Act 3 Bow C 1 bow3 1 bow6 2 bow9 5 bow12 7 bow15 8 bow18 7 bow21 4 bow24 2 0
Act 4 Bow A 1 bow6 1 bow9 3 bow12 6 bow15 8 bow18 8 bow21 6 bow24 3 bow27 1 Act 3 Bow C 80 0
Act 4 Bow B 1 bow6 1 bow9 2 bow12 5 bow15 7 bow18 8 bow21 7 bow24 4 bow27 2 Act 4 Bow A 80 0
Act 5 Bow A 1 bow9 1 bow12 3 bow15 6 bow18 8 bow21 8 bow24 6 bow27 3 bow30 1 Act 4 Bow B 80 0
Act 5 Bow B 1 bow9 1 bow12 2 bow15 5 bow18 7 bow21 8 bow24 7 bow27 4 bow30 2 Act 5 Bow A 80 0
Act 5 Bow C 1 bow9 1 bow12 2 bow15 5 bow18 7 bow21 8 bow24 7 bow27 4 bow30 2 Act 5 Bow B 80 0
Act 1 (N) Bow A 1 bow12 1 bow15 3 bow18 6 bow21 8 bow24 8 bow27 6 bow30 3 bow33 1 Act 5 Bow C 100 Act 5 Bow B 100 0
Act 1 (N) Bow B 1 bow12 1 bow15 2 bow18 5 bow21 7 bow24 8 bow27 7 bow30 4 bow33 2 Act 1 (N) Bow A 110 Act 5 Bow B 110 0
Act 2 (N) Bow A 1 bow15 1 bow18 3 bow21 6 bow24 8 bow27 8 bow30 6 bow33 3 bow36 1 Act 1 (N) Bow B 120 Act 5 Bow B 120 0
Act 2 (N) Bow B 1 bow15 1 bow18 2 bow21 5 bow24 7 bow27 8 bow30 7 bow33 4 bow36 2 Act 2 (N) Bow A 130 Act 5 Bow B 130 0
Act 3 (N) Bow A 1 bow18 1 bow21 3 bow24 6 bow27 8 bow30 8 bow33 6 bow36 3 bow39 1 Act 2 (N) Bow B 140 Act 5 Bow B 140 0
Act 3 (N) Bow B 1 bow18 1 bow21 2 bow24 5 bow27 7 bow30 8 bow33 7 bow36 4 bow39 2 Act 3 (N) Bow A 150 Act 5 Bow B 150 0
Act 4 (N) Bow A 1 bow21 1 bow24 3 bow27 6 bow30 8 bow33 8 bow36 6 bow39 3 bow42 1 Act 3 (N) Bow B 160 Act 5 Bow B 160 0
Act 4 (N) Bow B 1 bow21 1 bow24 2 bow27 5 bow30 7 bow33 8 bow36 7 bow39 4 bow42 2 Act 4 (N) Bow A 170 Act 5 Bow B 170 0
Act 5 (N) Bow A 1 bow24 1 bow27 3 bow30 6 bow33 8 bow36 8 bow39 6 bow42 3 bow45 1 Act 4 (N) Bow B 180 Act 5 Bow B 180 0
Act 5 (N) Bow B 1 bow24 1 bow27 2 bow30 5 bow33 7 bow36 8 bow39 7 bow42 4 bow45 2 Act 5 (N) Bow A 190 Act 5 Bow B 190 0
Act 5 (N) Bow C 1 bow24 1 bow27 2 bow30 5 bow33 7 bow36 8 bow39 7 bow42 4 bow45 2 Act 5 (N) Bow B 200 Act 5 Bow B 200 0
Act 1 (H) Bow A 1 bow27 1 bow30 3 bow33 6 bow36 8 bow39 8 bow42 6 bow45 3 bow48 1 Act 5 (N) Bow C 210 Act 5 (N) Bow B 600 0
Act 1 (H) Bow B 1 bow27 1 bow30 2 bow33 5 bow36 7 bow39 8 bow42 7 bow45 4 bow48 2 Act 1 (H) Bow A 220 Act 5 Bow B 640 0
Act 2 (H) Bow A 1 bow30 1 bow33 3 bow36 6 bow39 8 bow42 8 bow45 6 bow48 3 bow51 1 Act 1 (H) Bow B 230 Act 5 Bow B 680 0
Act 2 (H) Bow B 1 bow30 1 bow33 2 bow36 5 bow39 7 bow42 8 bow45 7 bow48 4 bow51 2 Act 2 (H) Bow A 240 Act 5 Bow B 720 0
Act 3 (H) Bow A 1 bow33 1 bow36 3 bow39 6 bow42 8 bow45 8 bow48 6 bow51 3 bow54 1 Act 2 (H) Bow B 250 Act 5 Bow B 760 0
Act 3 (H) Bow B 1 bow33 1 bow36 2 bow39 5 bow42 7 bow45 8 bow48 7 bow51 4 bow54 2 Act 3 (H) Bow A 260 Act 5 Bow B 800 0
Act 4 (H) Bow A 1 bow36 1 bow39 3 bow42 6 bow45 8 bow48 8 bow51 6 bow54 3 bow57 1 Act 3 (H) Bow B 270 Act 5 Bow B 840 0
Act 4 (H) Bow B 1 bow36 1 bow39 2 bow42 5 bow45 7 bow48 8 bow51 7 bow54 4 bow57 2 Act 4 (H) Bow A 280 Act 5 Bow B 880 0
Act 5 (H) Bow A 1 bow39 1 bow42 3 bow45 6 bow48 8 bow51 8 bow54 6 bow57 3 bow60 1 Act 4 (H) Bow B 290 Act 5 Bow B 920 0
Act 5 (H) Bow B 1 bow42 1 bow45 3 bow48 6 bow51 8 bow54 8 bow57 6 bow60 3 bow63 1 Act 5 (H) Bow A 300 Act 5 Bow B 960 0
Act 5 (H) Bow C 1 bow42 1 bow45 3 bow48 6 bow51 8 bow54 8 bow57 6 bow60 3 bow63 1 Act 5 (H) Bow B 310 Act 5 Bow B 1000 0
Act 1 Magic A 1 tsc 2 isc 4 mp1 6 0
Act 1 Magic B 1 tsc 2 isc 4 mp1 4 mp2 2 0
Act 1 Magic C 1 tsc 2 isc 4 mp1 2 mp2 4 0
Act 2 Magic A 1 tsc 2 isc 4 mp1 1 mp2 4 mp3 1 0
Act 2 Magic B 1 tsc 2 isc 4 mp1 1 mp2 3 mp3 2 0
Act 2 Magic C 1 tsc 2 isc 4 mp2 2 mp3 3 mp4 1 0
Act 3 Magic A 1 tsc 2 isc 4 mp3 4 mp4 2 0
Act 3 Magic B 1 tsc 2 isc 4 mp3 3 mp4 3 0
Act 3 Magic C 1 tsc 2 isc 4 mp3 2 mp4 3 mp5 1 0
Act 4 Magic A 1 tsc 2 isc 4 mp3 1 mp4 4 mp5 1 0
Act 4 Magic B 1 tsc 2 isc 4 mp4 4 mp5 2 0
Act 5 Magic A 1 tsc 2 isc 4 mp4 3 mp5 3 0
Act 5 Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 Magic C 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 2 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 2 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 3 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 3 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 4 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 4 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (N) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (N) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (N) Magic C 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 2 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 2 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 3 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 3 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 4 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 4 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (H) Magic A 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (H) Magic B 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 5 (H) Magic C 1 tsc 2 isc 4 mp4 2 mp5 4 0
Act 1 Good 1 Jewelry A 5 Chipped Gem 5 0
Act 2 Good 1 Jewelry B 20 Chipped Gem 12 Flawed Gem 4 Runes 1 3 Runes 2 3 0
Act 3 Good 1 Jewelry C 20 Chipped Gem 8 Flawed Gem 8 Runes 3 3 Runes 4 3 0
Act 4 Good 1 Jewelry C 50 Chipped Gem 14 Flawed Gem 28 Normal Gem 42 Runes 5 14 Runes 6 7 0
Act 5 Good 1 Jewelry C 50 Chipped Gem 6 Flawed Gem 8 Normal Gem 24 Flawless Gem 4 Runes 7 10 0
Act 1 (N) Good 1 Jewelry C 60 Chipped Gem 6 Flawed Gem 8 Normal Gem 28 Flawless Gem 14 Runes 8 14 0
Act 2 (N) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 9 14 0
Act 3 (N) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 10 14 0
Act 4 (N) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 11 14 0
Act 5 (N) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 12 14 0
Act 1 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 13 14 0
Act 2 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 14 14 0
Act 3 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 15 14 0
Act 4 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 16 14 0
Act 5 (H) Good 1 Jewelry C 60 Chipped Gem 4 Flawed Gem 10 Normal Gem 14 Flawless Gem 28 Runes 17 14 0
Act 1 Chest A 4 100 gld 15 Act 1 Junk 15 Act 1 Equip A 10 Act 1 Good 2 0
Act 1 Chest B 4 100 gld 15 Act 1 Junk 15 Act 1 Equip B 10 Act 1 Good 2 0
Act 1 Chest C 4 100 gld 15 Act 1 Junk 12 Act 2 Junk 3 Act 1 Equip C 15 Act 1 Good 2 0
Act 2 Chest A 4 100 gld 15 Act 2 Junk 15 Act 2 Equip A 10 Act 2 Good 2 0
Act 2 Chest B 4 100 gld 15 Act 2 Junk 15 Act 2 Equip B 10 Act 2 Good 2 0
Act 2 Chest C 4 100 gld 15 Act 2 Junk 12 Act 3 Junk 3 Act 2 Equip C 15 Act 2 Good 2 0
Act 3 Chest A 4 100 gld 15 Act 3 Junk 15 Act 3 Equip A 10 Act 3 Good 2 0
Act 3 Chest B 4 100 gld 15 Act 3 Junk 15 Act 3 Equip B 10 Act 3 Good 2 0
Act 3 Chest C 4 100 gld 15 Act 3 Junk 15 Act 3 Equip C 10 Act 3 Good 2 0
Act 4 Chest A 4 100 gld 15 Act 4 Junk 15 Act 4 Equip A 10 Act 4 Good 2 0
Act 4 Chest B 4 100 gld 15 Act 4 Junk 15 Act 4 Equip B 10 Act 4 Good 2 0
Act 4 Chest C 4 100 gld 15 Act 4 Junk 15 Act 4 Equip B 10 Act 4 Good 2 0
Act 5 Chest A 4 100 gld 15 Act 5 Junk 15 Act 5 Equip A 10 Act 5 Good 2 0
Act 5 Chest B 4 100 gld 15 Act 5 Junk 15 Act 5 Equip B 10 Act 5 Good 2 0
Act 5 Chest C 4 100 gld 15 Act 5 Junk 15 Act 5 Equip B 10 Act 5 Good 2 0
Act 1 (N) Chest A 4 100 gld 15 Act 1 (N) Junk 15 Act 1 (N) Equip A 10 Act 1 (N) Good 2 0
Act 1 (N) Chest B 4 100 gld 15 Act 1 (N) Junk 15 Act 1 (N) Equip B 10 Act 1 (N) Good 2 0
Act 1 (N) Chest C 4 100 gld 15 Act 1 (N) Junk 15 Act 1 (N) Equip B 10 Act 1 (N) Good 2 0
Act 2 (N) Chest A 4 100 gld 15 Act 2 (N) Junk 15 Act 2 (N) Equip A 10 Act 2 (N) Good 2 0
Act 2 (N) Chest B 4 100 gld 15 Act 2 (N) Junk 15 Act 2 (N) Equip B 10 Act 2 (N) Good 2 0
Act 2 (N) Chest C 4 100 gld 15 Act 2 (N) Junk 15 Act 2 (N) Equip B 10 Act 2 (N) Good 2 0
Act 3 (N) Chest A 4 100 gld 15 Act 3 (N) Junk 15 Act 3 (N) Equip A 10 Act 3 (N) Good 2 0
Act 3 (N) Chest B 4 100 gld 15 Act 3 (N) Junk 15 Act 3 (N) Equip B 10 Act 3 (N) Good 2 0
Act 3 (N) Chest C 4 100 gld 15 Act 3 (N) Junk 15 Act 3 (N) Equip B 10 Act 3 (N) Good 2 0
Act 4 (N) Chest A 4 100 gld 15 Act 4 (N) Junk 15 Act 4 (N) Equip A 10 Act 4 (N) Good 2 0
Act 4 (N) Chest B 4 100 gld 15 Act 4 (N) Junk 15 Act 4 (N) Equip B 10 Act 4 (N) Good 2 0
Act 4 (N) Chest C 4 100 gld 15 Act 4 (N) Junk 15 Act 4 (N) Equip C 10 Act 4 (N) Good 2 0
Act 5 (N) Chest A 4 100 gld 15 Act 5 (N) Junk 15 Act 5 (N) Equip A 10 Act 5 (N) Good 2 0
Act 5 (N) Chest B 4 100 gld 15 Act 5 (N) Junk 15 Act 5 (N) Equip B 10 Act 5 (N) Good 2 0
Act 5 (N) Chest C 4 100 gld 15 Act 5 (N) Junk 15 Act 5 (N) Equip B 10 Act 5 (N) Good 2 0
Act 1 (H) Chest A 4 100 gld 15 Act 1 (H) Junk 15 Act 1 (H) Equip A 10 Act 1 (H) Good 2 0
Act 1 (H) Chest B 4 100 gld 15 Act 1 (H) Junk 15 Act 1 (H) Equip B 10 Act 1 (H) Good 2 0
Act 1 (H) Chest C 4 100 gld 15 Act 1 (H) Junk 15 Act 1 (H) Equip B 10 Act 1 (H) Good 2 0
Act 2 (H) Chest A 4 100 gld 15 Act 2 (H) Junk 15 Act 2 (H) Equip A 10 Act 2 (H) Good 2 0
Act 2 (H) Chest B 4 100 gld 15 Act 2 (H) Junk 15 Act 2 (H) Equip B 10 Act 2 (H) Good 2 0
Act 2 (H) Chest C 4 100 gld 15 Act 2 (H) Junk 15 Act 2 (H) Equip B 10 Act 2 (H) Good 2 0
Act 3 (H) Chest A 4 100 gld 15 Act 3 (H) Junk 15 Act 3 (H) Equip A 10 Act 3 (H) Good 2 0
Act 3 (H) Chest B 4 100 gld 15 Act 3 (H) Junk 15 Act 3 (H) Equip B 10 Act 3 (H) Good 2 0
Act 3 (H) Chest C 4 100 gld 15 Act 3 (H) Junk 15 Act 3 (H) Equip B 10 Act 3 (H) Good 2 0
Act 4 (H) Chest A 4 100 gld 15 Act 4 (H) Junk 15 Act 4 (H) Equip A 10 Act 4 (H) Good 2 0
Act 4 (H) Chest B 4 100 gld 15 Act 4 (H) Junk 15 Act 4 (H) Equip B 10 Act 4 (H) Good 2 0
Act 4 (H) Chest C 4 100 gld 15 Act 4 (H) Junk 15 Act 4 (H) Equip B 10 Act 4 (H) Good 2 0
Act 5 (H) Chest A 4 100 gld 15 Act 5 (H) Junk 15 Act 5 (H) Equip A 10 Act 5 (H) Good 2 0
Act 5 (H) Chest B 4 100 gld 15 Act 5 (H) Junk 15 Act 5 (H) Equip B 10 Act 5 (H) Good 2 0
Act 5 (H) Chest C 4 100 gld 15 Act 5 (H) Junk 15 Act 5 (H) Equip B 10 Act 5 (H) Good 2 0
Act 1 H2H A 1 180 gld 21 Act 1 Equip A 16 Act 1 Junk 21 Act 1 Good 2 0
Act 1 H2H B 1 180 gld 21 Act 1 Equip B 16 Act 1 Junk 21 Act 1 Good 2 0
Act 1 H2H C 1 180 gld 21 Act 1 Equip C 16 Act 1 Junk 21 Act 1 Good 2 0
Act 2 H2H A 1 180 gld 21 Act 2 Equip A 16 Act 2 Junk 21 Act 2 Good 2 0
Act 2 H2H B 1 180 gld 21 Act 2 Equip B 16 Act 2 Junk 21 Act 2 Good 2 0
Act 2 H2H C 1 180 gld 21 Act 2 Equip C 16 Act 2 Junk 21 Act 3 Good 2 0
Act 3 H2H A 1 180 gld 21 Act 3 Equip A 16 Act 3 Junk 21 Act 3 Good 2 0
Act 3 H2H B 1 180 gld 21 Act 3 Equip B 16 Act 3 Junk 21 Act 3 Good 2 0
Act 3 H2H C 1 180 gld 21 Act 3 Equip C 16 Act 3 Junk 21 Act 3 Good 2 0
Act 4 H2H A 1 180 gld 21 Act 4 Equip A 16 Act 4 Junk 21 Act 4 Good 2 0
Act 4 H2H B 1 180 gld 21 Act 4 Equip B 16 Act 4 Junk 21 Act 4 Good 2 0
Act 5 H2H A 1 180 gld 21 Act 5 Equip A 16 Act 5 Junk 21 Act 5 Good 2 0
Act 5 H2H B 1 180 gld 21 Act 5 Equip B 16 Act 5 Junk 21 Act 5 Good 2 0
Act 5 H2H C 1 180 gld 21 Act 5 Equip C 16 Act 5 Junk 21 Act 5 Good 2 0
Act 1 (N) H2H A 1 180 gld 21 Act 1 (N) Equip A 16 Act 1 (N) Junk 21 Act 1 (N) Good 2 0
Act 1 (N) H2H B 1 180 gld 21 Act 1 (N) Equip B 16 Act 1 (N) Junk 21 Act 1 (N) Good 2 0
Act 1 (N) H2H C 1 180 gld 21 Act 1 (N) Equip B 16 Act 1 (N) Junk 21 Act 1 (N) Good 2 0
Act 2 (N) H2H A 1 180 gld 21 Act 2 (N) Equip A 16 Act 2 (N) Junk 21 Act 2 (N) Good 2 0
Act 2 (N) H2H B 1 180 gld 21 Act 2 (N) Equip B 16 Act 2 (N) Junk 21 Act 2 (N) Good 2 0
Act 2 (N) H2H C 1 180 gld 21 Act 2 (N) Equip B 16 Act 2 (N) Junk 21 Act 2 (N) Good 2 0
Act 3 (N) H2H A 1 180 gld 21 Act 3 (N) Equip A 16 Act 3 (N) Junk 21 Act 3 (N) Good 2 0
Act 3 (N) H2H B 1 180 gld 21 Act 3 (N) Equip B 16 Act 3 (N) Junk 21 Act 3 (N) Good 2 0
Act 3 (N) H2H C 1 180 gld 21 Act 3 (N) Equip B 16 Act 3 (N) Junk 21 Act 3 (N) Good 2 0
Act 4 (N) H2H A 1 180 gld 21 Act 4 (N) Equip A 16 Act 4 (N) Junk 21 Act 4 (N) Good 2 0
Act 4 (N) H2H B 1 180 gld 21 Act 4 (N) Equip B 16 Act 4 (N) Junk 21 Act 4 (N) Good 2 0
Act 5 (N) H2H A 1 180 gld 21 Act 5 (N) Equip A 16 Act 5 (N) Junk 21 Act 5 (N) Good 2 0
Act 5 (N) H2H B 1 180 gld 21 Act 5 (N) Equip B 16 Act 5 (N) Junk 21 Act 5 (N) Good 2 0
Act 5 (N) H2H C 1 180 gld 21 Act 5 (N) Equip C 16 Act 5 (N) Junk 21 Act 5 (N) Good 2 0
Act 1 (H) H2H A 1 180 gld 21 Act 1 (H) Equip A 16 Act 1 (H) Junk 21 Act 1 (H) Good 2 0
Act 1 (H) H2H B 1 180 gld 21 Act 1 (H) Equip B 16 Act 1 (H) Junk 21 Act 1 (H) Good 2 0
Act 1 (H) H2H C 1 180 gld 21 Act 1 (H) Equip B 16 Act 1 (H) Junk 21 Act 1 (H) Good 2 0
Act 2 (H) H2H A 1 180 gld 21 Act 2 (H) Equip A 16 Act 1 (H) Junk 21 Act 2 (H) Good 2 0
Act 2 (H) H2H B 1 180 gld 21 Act 2 (H) Equip B 16 Act 1 (H) Junk 21 Act 2 (H) Good 2 0
Act 2 (H) H2H C 1 180 gld 21 Act 2 (H) Equip B 16 Act 1 (H) Junk 21 Act 2 (H) Good 2 0
Act 3 (H) H2H A 1 180 gld 21 Act 3 (H) Equip A 16 Act 1 (H) Junk 21 Act 3 (H) Good 2 0
Act 3 (H) H2H B 1 180 gld 21 Act 3 (H) Equip B 16 Act 1 (H) Junk 21 Act 3 (H) Good 2 0
Act 3 (H) H2H C 1 180 gld 21 Act 3 (H) Equip B 16 Act 1 (H) Junk 21 Act 3 (H) Good 2 0
Act 4 (H) H2H A 1 180 gld 21 Act 4 (H) Equip A 16 Act 1 (H) Junk 21 Act 4 (H) Good 2 0
Act 4 (H) H2H B 1 180 gld 21 Act 4 (H) Equip B 16 Act 1 (H) Junk 21 Act 4 (H) Good 2 0
Act 5 (H) H2H A 1 180 gld 21 Act 5 (H) Equip A 16 Act 1 (H) Junk 21 Act 5 (H) Good 2 0
Act 5 (H) H2H B 1 180 gld 21 Act 5 (H) Equip B 16 Act 1 (H) Junk 21 Act 5 (H) Good 2 0
Act 5 (H) H2H C 1 180 gld 21 Act 5 (H) Equip C 16 Act 1 (H) Junk 21 Act 5 (H) Good 2 0
Act 1 Cast A 1 180 gld 18 Act 1 Equip A 15 Act 1 Junk 18 Act 1 Good 2 Act 1 Magic A 7 0
Act 1 Cast B 1 180 gld 18 Act 1 Equip B 15 Act 1 Junk 18 Act 1 Good 2 Act 1 Magic B 7 0
Act 1 Cast C 1 180 gld 18 Act 1 Equip C 15 Act 1 Junk 18 Act 1 Good 2 Act 1 Magic C 7 0
Act 2 Cast A 1 180 gld 18 Act 2 Equip A 15 Act 2 Junk 18 Act 2 Good 2 Act 2 Magic A 7 0
Act 2 Cast B 1 180 gld 18 Act 2 Equip B 15 Act 2 Junk 18 Act 2 Good 2 Act 2 Magic B 7 0
Act 2 Cast C 1 180 gld 18 Act 2 Equip C 15 Act 2 Junk 18 Act 3 Good 2 Act 2 Magic C 7 0
Act 3 Cast A 1 180 gld 18 Act 3 Equip A 15 Act 3 Junk 18 Act 3 Good 2 Act 3 Magic A 7 0
Act 3 Cast B 1 180 gld 18 Act 3 Equip B 15 Act 3 Junk 18 Act 3 Good 2 Act 3 Magic B 7 0
Act 3 Cast C 1 180 gld 18 Act 3 Equip C 15 Act 3 Junk 18 Act 3 Good 2 Act 3 Magic C 7 0
Act 4 Cast A 1 180 gld 18 Act 4 Equip A 15 Act 4 Junk 18 Act 4 Good 2 Act 4 Magic A 7 0
Act 4 Cast B 1 180 gld 18 Act 4 Equip B 15 Act 4 Junk 18 Act 4 Good 2 Act 4 Magic B 7 0
Act 5 Cast A 1 180 gld 18 Act 5 Equip A 15 Act 5 Junk 18 Act 5 Good 2 Act 5 Magic A 7 0
Act 5 Cast B 1 180 gld 18 Act 5 Equip B 15 Act 5 Junk 18 Act 5 Good 2 Act 5 Magic B 7 0
Act 5 Cast C 1 180 gld 18 Act 5 Equip C 15 Act 5 Junk 18 Act 5 Good 2 Act 5 Magic C 7 0
Act 1 (N) Cast A 1 180 gld 18 Act 1 (N) Equip A 15 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Magic A 7 0
Act 1 (N) Cast B 1 180 gld 18 Act 1 (N) Equip B 15 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Magic B 7 0
Act 1 (N) Cast C 1 180 gld 18 Act 1 (N) Equip B 15 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Magic B 7 0
Act 2 (N) Cast A 1 180 gld 18 Act 2 (N) Equip A 15 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Magic A 7 0
Act 2 (N) Cast B 1 180 gld 18 Act 2 (N) Equip B 15 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Magic B 7 0
Act 2 (N) Cast C 1 180 gld 18 Act 2 (N) Equip B 15 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Magic B 7 0
Act 3 (N) Cast A 1 180 gld 18 Act 3 (N) Equip A 15 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Magic A 7 0
Act 3 (N) Cast B 1 180 gld 18 Act 3 (N) Equip B 15 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Magic B 7 0
Act 3 (N) Cast C 1 180 gld 18 Act 3 (N) Equip B 15 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Magic B 7 0
Act 4 (N) Cast A 1 180 gld 18 Act 4 (N) Equip A 15 Act 4 (N) Junk 18 Act 4 (N) Good 2 Act 4 (N) Magic A 7 0
Act 4 (N) Cast B 1 180 gld 18 Act 4 (N) Equip B 15 Act 4 (N) Junk 18 Act 4 (N) Good 2 Act 4 (N) Magic B 7 0
Act 5 (N) Cast A 1 180 gld 18 Act 5 (N) Equip A 15 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Magic A 7 0
Act 5 (N) Cast B 1 180 gld 18 Act 5 (N) Equip B 15 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Magic B 7 0
Act 5 (N) Cast C 1 180 gld 18 Act 5 (N) Equip C 15 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Magic B 7 0
Act 1 (H) Cast A 1 180 gld 18 Act 1 (H) Equip A 15 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Magic A 7 0
Act 1 (H) Cast B 1 180 gld 18 Act 1 (H) Equip B 15 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Magic B 7 0
Act 1 (H) Cast C 1 180 gld 18 Act 1 (H) Equip B 15 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Magic B 7 0
Act 2 (H) Cast A 1 180 gld 18 Act 2 (H) Equip A 15 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Magic A 7 0
Act 2 (H) Cast B 1 180 gld 18 Act 2 (H) Equip B 15 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Magic B 7 0
Act 2 (H) Cast C 1 180 gld 18 Act 2 (H) Equip B 15 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Magic B 7 0
Act 3 (H) Cast A 1 180 gld 18 Act 3 (H) Equip A 15 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Magic A 7 0
Act 3 (H) Cast B 1 180 gld 18 Act 3 (H) Equip B 15 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Magic B 7 0
Act 3 (H) Cast C 1 180 gld 18 Act 3 (H) Equip B 15 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Magic B 7 0
Act 4 (H) Cast A 1 180 gld 18 Act 4 (H) Equip A 15 Act 1 (H) Junk 18 Act 4 (H) Good 2 Act 4 (H) Magic A 7 0
Act 4 (H) Cast B 1 180 gld 18 Act 4 (H) Equip B 15 Act 1 (H) Junk 18 Act 4 (H) Good 2 Act 4 (H) Magic B 7 0
Act 5 (H) Cast A 1 180 gld 18 Act 5 (H) Equip A 15 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Magic A 7 0
Act 5 (H) Cast B 1 180 gld 18 Act 5 (H) Equip B 15 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Magic B 7 0
Act 5 (H) Cast C 1 180 gld 18 Act 5 (H) Equip C 15 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Magic B 7 0
Act 1 Miss A 1 180 gld 18 Act 1 Equip A 13 Act 1 Junk 18 Act 1 Good 2 Act 1 Bow A 6 Ammo 3 0
Act 1 Miss B 1 180 gld 18 Act 1 Equip B 13 Act 1 Junk 18 Act 1 Good 2 Act 1 Bow B 6 Ammo 3 0
Act 1 Miss C 1 180 gld 18 Act 1 Equip C 13 Act 1 Junk 18 Act 1 Good 2 Act 1 Bow C 6 Ammo 3 0
Act 2 Miss A 1 180 gld 18 Act 2 Equip A 13 Act 2 Junk 18 Act 2 Good 2 Act 2 Bow A 6 Ammo 3 0
Act 2 Miss B 1 180 gld 18 Act 2 Equip B 13 Act 2 Junk 18 Act 2 Good 2 Act 2 Bow B 6 Ammo 3 0
Act 2 Miss C 1 180 gld 18 Act 2 Equip C 13 Act 2 Junk 18 Act 3 Good 2 Act 2 Bow C 6 Ammo 3 0
Act 3 Miss A 1 180 gld 18 Act 3 Equip A 13 Act 3 Junk 18 Act 3 Good 2 Act 3 Bow A 6 Ammo 3 0
Act 3 Miss B 1 180 gld 18 Act 3 Equip B 13 Act 3 Junk 18 Act 3 Good 2 Act 3 Bow B 6 Ammo 3 0
Act 3 Miss C 1 180 gld 18 Act 3 Equip C 13 Act 3 Junk 18 Act 3 Good 2 Act 3 Bow C 6 Ammo 3 0
Act 4 Miss A 1 180 gld 18 Act 4 Equip A 13 Act 4 Junk 18 Act 4 Good 2 Act 4 Bow A 6 Ammo 3 0
Act 4 Miss B 1 180 gld 18 Act 4 Equip B 13 Act 4 Junk 18 Act 4 Good 2 Act 4 Bow B 6 Ammo 3 0
Act 5 Miss A 1 180 gld 18 Act 5 Equip A 13 Act 5 Junk 18 Act 5 Good 2 Act 5 Bow A 6 Ammo 3 0
Act 5 Miss B 1 180 gld 18 Act 5 Equip B 13 Act 5 Junk 18 Act 5 Good 2 Act 5 Bow B 6 Ammo 3 0
Act 5 Miss C 1 180 gld 18 Act 5 Equip C 13 Act 5 Junk 18 Act 5 Good 2 Act 5 Bow B 6 Ammo 3 0
Act 1 (N) Miss A 1 180 gld 18 Act 1 (N) Equip A 13 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Bow A 6 Ammo 3 0
Act 1 (N) Miss B 1 180 gld 18 Act 1 (N) Equip B 13 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Bow B 6 Ammo 3 0
Act 1 (N) Miss C 1 180 gld 18 Act 1 (N) Equip B 13 Act 1 (N) Junk 18 Act 1 (N) Good 2 Act 1 (N) Bow B 6 Ammo 3 0
Act 2 (N) Miss A 1 180 gld 18 Act 2 (N) Equip A 13 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Bow A 6 Ammo 3 0
Act 2 (N) Miss B 1 180 gld 18 Act 2 (N) Equip B 13 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Bow B 6 Ammo 3 0
Act 2 (N) Miss C 1 180 gld 18 Act 2 (N) Equip B 13 Act 2 (N) Junk 18 Act 2 (N) Good 2 Act 2 (N) Bow B 6 Ammo 3 0
Act 3 (N) Miss A 1 180 gld 18 Act 3 (N) Equip A 13 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Bow A 6 Ammo 3 0
Act 3 (N) Miss B 1 180 gld 18 Act 3 (N) Equip B 13 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Bow B 6 Ammo 3 0
Act 3 (N) Miss C 1 180 gld 18 Act 3 (N) Equip B 13 Act 3 (N) Junk 18 Act 3 (N) Good 2 Act 3 (N) Bow B 6 Ammo 3 0
Act 4 (N) Miss A 1 180 gld 18 Act 4 (N) Equip A 13 Act 4 (N) Junk 18 Act 4 (N) Good 2 Act 4 (N) Bow A 6 Ammo 3 0
Act 4 (N) Miss B 1 180 gld 18 Act 4 (N) Equip B 13 Act 4 (N) Junk 18 Act 4 (N) Good 2 Act 4 (N) Bow B 6 Ammo 3 0
Act 5 (N) Miss A 1 180 gld 18 Act 5 (N) Equip A 13 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Bow A 6 Ammo 3 0
Act 5 (N) Miss B 1 180 gld 18 Act 5 (N) Equip B 13 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Bow B 6 Ammo 3 0
Act 5 (N) Miss C 1 180 gld 18 Act 5 (N) Equip C 13 Act 5 (N) Junk 18 Act 5 (N) Good 2 Act 5 (N) Bow B 6 Ammo 3 0
Act 1 (H) Miss A 1 180 gld 18 Act 1 (H) Equip A 13 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Bow A 6 Ammo 3 0
Act 1 (H) Miss B 1 180 gld 18 Act 1 (H) Equip B 13 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Bow B 6 Ammo 3 0
Act 1 (H) Miss C 1 180 gld 18 Act 1 (H) Equip B 13 Act 1 (H) Junk 18 Act 1 (H) Good 2 Act 1 (H) Bow B 6 Ammo 3 0
Act 2 (H) Miss A 1 180 gld 18 Act 2 (H) Equip A 13 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Bow A 6 Ammo 3 0
Act 2 (H) Miss B 1 180 gld 18 Act 2 (H) Equip B 13 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Bow B 6 Ammo 3 0
Act 2 (H) Miss C 1 180 gld 18 Act 2 (H) Equip B 13 Act 1 (H) Junk 18 Act 2 (H) Good 2 Act 2 (H) Bow B 6 Ammo 3 0
Act 3 (H) Miss A 1 180 gld 18 Act 3 (H) Equip A 13 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Bow A 6 Ammo 3 0
Act 3 (H) Miss B 1 180 gld 18 Act 3 (H) Equip B 13 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Bow B 6 Ammo 3 0
Act 3 (H) Miss C 1 180 gld 18 Act 3 (H) Equip B 13 Act 1 (H) Junk 18 Act 3 (H) Good 2 Act 3 (H) Bow B 6 Ammo 3 0
Act 4 (H) Miss A 1 180 gld 18 Act 4 (H) Equip A 13 Act 1 (H) Junk 18 Act 4 (H) Good 2 Act 4 (H) Bow A 6 Ammo 3 0
Act 4 (H) Miss B 1 180 gld 18 Act 4 (H) Equip B 13 Act 1 (H) Junk 18 Act 4 (H) Good 2 Act 4 (H) Bow B 6 Ammo 3 0
Act 5 (H) Miss A 1 180 gld 18 Act 5 (H) Equip A 13 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Bow A 6 Ammo 3 0
Act 5 (H) Miss B 1 180 gld 18 Act 5 (H) Equip B 13 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Bow B 6 Ammo 3 0
Act 5 (H) Miss C 1 180 gld 18 Act 5 (H) Equip C 13 Act 1 (H) Junk 18 Act 5 (H) Good 2 Act 5 (H) Bow B 6 Ammo 3 0
Act 1 Wraith A 1 100 Act 1 Good 4 Act 1 Magic A 25 0
Act 1 Wraith B 1 100 Act 1 Good 4 Act 1 Magic B 25 0
Act 1 Wraith C 1 100 Act 1 Good 4 Act 1 Magic C 25 0
Act 2 Wraith A 1 100 Act 2 Good 4 Act 2 Magic A 25 0
Act 2 Wraith B 1 100 Act 2 Good 4 Act 2 Magic B 25 0
Act 2 Wraith C 1 100 Act 3 Good 4 Act 2 Magic C 25 0
Act 3 Wraith A 1 100 Act 3 Good 4 Act 3 Magic A 25 0
Act 3 Wraith B 1 100 Act 3 Good 4 Act 3 Magic B 25 0
Act 3 Wraith C 1 100 Act 3 Good 4 Act 3 Magic C 25 0
Act 4 Wraith A 1 100 Act 4 Good 4 Act 4 Magic A 25 0
Act 4 Wraith B 1 100 Act 4 Good 4 Act 4 Magic B 25 0
Act 5 Wraith A 1 100 Act 5 Good 4 Act 5 Magic A 25 0
Act 5 Wraith B 1 100 Act 5 Good 4 Act 5 Magic B 25 0
Act 5 Wraith C 1 100 Act 5 Good 4 Act 5 Magic C 25 0
Act 1 (N) Wraith A 1 100 Act 1 (N) Good 4 Act 1 (N) Magic A 25 0
Act 1 (N) Wraith B 1 100 Act 1 (N) Good 4 Act 1 (N) Magic B 25 0
Act 1 (N) Wraith C 1 100 Act 1 (N) Good 4 Act 1 (N) Magic B 25 0
Act 2 (N) Wraith A 1 100 Act 2 (N) Good 4 Act 2 (N) Magic A 25 0
Act 2 (N) Wraith B 1 100 Act 2 (N) Good 4 Act 2 (N) Magic B 25 0
Act 2 (N) Wraith C 1 100 Act 2 (N) Good 4 Act 2 (N) Magic B 25 0
Act 3 (N) Wraith A 1 100 Act 3 (N) Good 4 Act 3 (N) Magic A 25 0
Act 3 (N) Wraith B 1 100 Act 3 (N) Good 4 Act 3 (N) Magic B 25 0
Act 3 (N) Wraith C 1 100 Act 3 (N) Good 4 Act 3 (N) Magic B 25 0
Act 4 (N) Wraith A 1 100 Act 4 (N) Good 4 Act 4 (N) Magic A 25 0
Act 4 (N) Wraith B 1 100 Act 4 (N) Good 4 Act 4 (N) Magic B 25 0
Act 5 (N) Wraith A 1 100 Act 5 (N) Good 4 Act 5 (N) Magic A 25 0
Act 5 (N) Wraith B 1 100 Act 5 (N) Good 4 Act 5 (N) Magic B 25 0
Act 5 (N) Wraith C 1 100 Act 5 (N) Good 4 Act 5 (N) Magic C 25 0
Act 1 (H) Wraith A 1 100 Act 1 (H) Good 4 Act 1 (H) Magic A 25 0
Act 1 (H) Wraith B 1 100 Act 1 (H) Good 4 Act 1 (H) Magic B 25 0
Act 1 (H) Wraith C 1 100 Act 1 (H) Good 4 Act 1 (H) Magic B 25 0
Act 2 (H) Wraith A 1 100 Act 2 (H) Good 4 Act 2 (H) Magic A 25 0
Act 2 (H) Wraith B 1 100 Act 2 (H) Good 4 Act 2 (H) Magic B 25 0
Act 2 (H) Wraith C 1 100 Act 2 (H) Good 4 Act 2 (H) Magic B 25 0
Act 3 (H) Wraith A 1 100 Act 3 (H) Good 4 Act 3 (H) Magic A 25 0
Act 3 (H) Wraith B 1 100 Act 3 (H) Good 4 Act 3 (H) Magic B 25 0
Act 3 (H) Wraith C 1 100 Act 3 (H) Good 4 Act 3 (H) Magic B 25 0
Act 4 (H) Wraith A 1 100 Act 4 (H) Good 4 Act 4 (H) Magic A 25 0
Act 4 (H) Wraith B 1 100 Act 4 (H) Good 4 Act 4 (H) Magic B 25 0
Act 5 (H) Wraith A 1 100 Act 5 (H) Good 4 Act 5 (H) Magic A 25 0
Act 5 (H) Wraith B 1 100 Act 5 (H) Good 4 Act 5 (H) Magic B 25 0
Act 5 (H) Wraith C 1 100 Act 5 (H) Good 4 Act 5 (H) Magic C 25 0
Act 1 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 Equip A 37 Act 1 Good 3 0
Act 1 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 Equip B 37 Act 1 Good 3 0
Act 1 Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 Equip C 37 Act 1 Good 3 0
Act 2 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 Equip A 37 Act 2 Good 3 0
Act 2 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 Equip B 37 Act 2 Good 3 0
Act 2 Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 Equip C 37 Act 3 Good 3 0
Act 3 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 Equip A 37 Act 3 Good 3 0
Act 3 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 Equip B 37 Act 3 Good 3 0
Act 3 Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 Equip C 37 Act 3 Good 3 0
Act 4 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 Equip A 37 Act 4 Good 3 0
Act 4 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 Equip B 37 Act 4 Good 3 0
Act 5 Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 Equip A 37 Act 5 Good 3 0
Act 5 Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 Equip B 37 Act 5 Good 3 0
Act 5 Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 Equip C 37 Act 5 Good 3 0
Act 1 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (N) Equip A 37 Act 1 (N) Good 3 0
Act 1 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (N) Equip B 37 Act 1 (N) Good 3 0
Act 1 (N) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (N) Equip B 37 Act 1 (N) Good 3 0
Act 2 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (N) Equip A 37 Act 2 (N) Good 3 0
Act 2 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (N) Equip B 37 Act 2 (N) Good 3 0
Act 2 (N) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (N) Equip B 37 Act 2 (N) Good 3 0
Act 3 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (N) Equip A 37 Act 3 (N) Good 3 0
Act 3 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (N) Equip B 37 Act 3 (N) Good 3 0
Act 3 (N) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (N) Equip B 37 Act 3 (N) Good 3 0
Act 4 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 (N) Equip A 37 Act 4 (N) Good 3 0
Act 4 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 (N) Equip B 37 Act 4 (N) Good 3 0
Act 5 (N) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (N) Equip A 37 Act 5 (N) Good 3 0
Act 5 (N) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (N) Equip B 37 Act 5 (N) Good 3 0
Act 5 (N) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (N) Equip C 37 Act 5 (N) Good 3 0
Act 1 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (H) Equip A 37 Act 1 (H) Good 3 0
Act 1 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (H) Equip B 37 Act 1 (H) Good 3 0
Act 1 (H) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 1 (H) Equip B 37 Act 1 (H) Good 3 0
Act 2 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (H) Equip A 37 Act 2 (H) Good 3 0
Act 2 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (H) Equip B 37 Act 2 (H) Good 3 0
Act 2 (H) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 2 (H) Equip B 37 Act 2 (H) Good 3 0
Act 3 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (H) Equip A 37 Act 3 (H) Good 3 0
Act 3 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (H) Equip B 37 Act 3 (H) Good 3 0
Act 3 (H) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 3 (H) Equip B 37 Act 3 (H) Good 3 0
Act 4 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 (H) Equip A 37 Act 4 (H) Good 3 0
Act 4 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 4 (H) Equip B 37 Act 4 (H) Good 3 0
Act 5 (H) Citem A 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (H) Equip A 37 Act 5 (H) Good 3 0
Act 5 (H) Citem B 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (H) Equip B 37 Act 5 (H) Good 3 0
Act 5 (H) Citem C 1 800 800 800 1024 0 "gld,mul=1280" 60 Act 5 (H) Equip C 37 Act 5 (H) Good 3 0
Act 1 Cpot A -2 0 Hpotion 1 1 0
Act 1 Cpot B -2 0 Hpotion 1 1 0
Act 1 Cpot C -2 0 Hpotion 1 1 0
Act 2 Cpot A -2 0 Hpotion 2 1 0
Act 2 Cpot B -2 0 Hpotion 2 1 0
Act 2 Cpot C -2 0 Hpotion 2 1 0
Act 3 Cpot A -2 0 Hpotion 3 1 0
Act 3 Cpot B -2 0 Hpotion 3 1 0
Act 3 Cpot C -2 0 Hpotion 3 1 0
Act 4 Cpot A -2 0 Hpotion 3 1 Hpotion 4 2 0
Act 4 Cpot B -2 0 Hpotion 3 1 Hpotion 4 2 0
Act 5 Cpot A -2 0 Hpotion 4 1 Hpotion 5 2 0
Act 5 Cpot B -2 0 Hpotion 4 1 Hpotion 5 2 0
Act 5 Cpot C -2 0 Hpotion 4 1 Hpotion 5 2 0
Act 1 (N) Cpot A -2 0 Hpotion 4 1 Hpotion 5 2 Hpotion 6 4 0
Act 1 (N) Cpot B -2 0 Hpotion 4 1 Hpotion 5 2 Hpotion 6 4 7 0
Act 1 (N) Cpot C -2 0 Hpotion 4 1 Hpotion 5 2 Hpotion 6 4 7 0
Act 2 (N) Cpot A -2 0 Hpotion 4 1 Hpotion 5 2 Hpotion 6 4 7 0
Act 2 (N) Cpot B -2 0 Hpotion 4 1 Hpotion 5 2 Hpotion 6 4 7 0
Act 2 (N) Cpot C -2 0 Hpotion 4 1 Hpotion 5 2 Hpotion 6 4 7 0
Act 3 (N) Cpot A -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (N) Cpot B -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (N) Cpot C -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 4 (N) Cpot A -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 4 (N) Cpot B -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (N) Cpot A -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (N) Cpot B -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (N) Cpot C -2 0 rvs 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 (H) Cpot C -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 2 (H) Cpot C -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 3 (H) Cpot C -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 4 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 4 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (H) Cpot A -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (H) Cpot B -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 5 (H) Cpot C -2 0 rvl 1 Hpotion 4 2 Hpotion 5 4 Hpotion 6 8 7 0
Act 1 Champ A -2 0 Act 1 Citem A 1 Act 1 Cpot A 2 0
Act 1 Champ B -2 0 Act 1 Citem B 1 Act 1 Cpot B 1 0
Act 1 Champ C -2 0 Act 1 Citem C 1 Act 1 Cpot C 1 0
Act 2 Champ A -2 0 Act 2 Citem A 1 Act 2 Cpot A 1 0
Act 2 Champ B -2 0 Act 2 Citem B 1 Act 2 Cpot B 1 0
Act 2 Champ C -2 0 Act 2 Citem C 1 Act 2 Cpot C 1 0
Act 3 Champ A -2 0 Act 3 Citem A 1 Act 3 Cpot A 1 0
Act 3 Champ B -2 0 Act 3 Citem B 1 Act 3 Cpot B 1 0
Act 3 Champ C -2 0 Act 3 Citem C 1 Act 3 Cpot C 1 0
Act 4 Champ A -2 0 Act 4 Citem A 1 Act 4 Cpot A 1 0
Act 4 Champ B -2 0 Act 4 Citem B 1 Act 4 Cpot B 1 0
Act 5 Champ A -2 0 Act 5 Citem A 1 Act 5 Cpot A 1 0
Act 5 Champ B -2 0 Act 5 Citem B 1 Act 5 Cpot B 1 0
Act 5 Champ C -2 0 Act 5 Citem C 1 Act 5 Cpot C 1 0
Act 1 (N) Champ A -2 0 Act 1 (N) Citem A 1 Act 1 (N) Cpot A 2 0
Act 1 (N) Champ B -2 0 Act 1 (N) Citem B 1 Act 1 (N) Cpot B 2 0
Act 1 (N) Champ C -2 0 Act 1 (N) Citem C 1 Act 1 (N) Cpot C 2 0
Act 2 (N) Champ A -2 0 Act 2 (N) Citem A 1 Act 2 (N) Cpot A 2 0
Act 2 (N) Champ B -2 0 Act 2 (N) Citem B 1 Act 2 (N) Cpot B 2 0
Act 2 (N) Champ C -2 0 Act 2 (N) Citem C 1 Act 2 (N) Cpot C 2 0
Act 3 (N) Champ A -2 0 Act 3 (N) Citem A 1 Act 3 (N) Cpot A 2 0
Act 3 (N) Champ B -2 0 Act 3 (N) Citem B 1 Act 3 (N) Cpot B 2 0
Act 3 (N) Champ C -2 0 Act 3 (N) Citem C 1 Act 3 (N) Cpot C 2 0
Act 4 (N) Champ A -2 0 Act 4 (N) Citem A 1 Act 4 (N) Cpot A 2 0
Act 4 (N) Champ B -2 0 Act 4 (N) Citem B 1 Act 4 (N) Cpot B 2 0
Act 4 (N) Champ C -2 0 Act 4 (N) Citem B 1 Act 4 (N) Cpot B 2
Act 5 (N) Champ A -2 0 Act 5 (N) Citem A 1 Act 5 (N) Cpot A 2 0
Act 5 (N) Champ B -2 0 Act 5 (N) Citem B 1 Act 5 (N) Cpot B 2 0
Act 5 (N) Champ C -2 0 Act 5 (N) Citem C 1 Act 5 (N) Cpot C 2
Act 1 (H) Champ A -2 0 Act 1 (H) Citem A 1 Act 1 (H) Cpot A 3 0
Act 1 (H) Champ B -2 0 Act 1 (H) Citem B 1 Act 1 (H) Cpot B 3 0
Act 1 (H) Champ C -2 0 Act 1 (H) Citem C 1 Act 1 (H) Cpot C 3 0
Act 2 (H) Champ A -2 0 Act 2 (H) Citem A 1 Act 2 (H) Cpot A 3 0
Act 2 (H) Champ B -2 0 Act 2 (H) Citem B 1 Act 2 (H) Cpot B 3 0
Act 2 (H) Champ C -2 0 Act 2 (H) Citem C 1 Act 2 (H) Cpot C 3 0
Act 3 (H) Champ A -2 0 Act 3 (H) Citem A 1 Act 3 (H) Cpot A 3 0
Act 3 (H) Champ B -2 0 Act 3 (H) Citem B 1 Act 3 (H) Cpot B 3 0
Act 3 (H) Champ C -2 0 Act 3 (H) Citem C 1 Act 3 (H) Cpot C 3 0
Act 4 (H) Champ A -2 0 Act 4 (H) Citem A 1 Act 4 (H) Cpot A 3 0
Act 4 (H) Champ B -2 0 Act 4 (H) Citem B 1 Act 4 (H) Cpot B 3 0
Act 5 (H) Champ A -2 0 Act 5 (H) Citem A 1 Act 5 (H) Cpot A 3 0
Act 5 (H) Champ B -2 0 Act 5 (H) Citem B 1 Act 5 (H) Cpot B 3 0
Act 5 (H) Champ C -2 0 Act 5 (H) Citem C 1 Act 5 (H) Cpot C 3 0
Act 1 Uitem A 1 800 800 800 1024 0 Act 1 Equip A 58 Act 1 Good 4 0
Act 1 Uitem B 1 800 800 800 1024 0 Act 1 Equip B 58 Act 1 Good 4 0
Act 1 Uitem C 1 800 800 800 1024 0 Act 1 Equip C 58 Act 1 Good 4 0
Act 2 Uitem A 1 800 800 800 1024 0 Act 2 Equip A 58 Act 2 Good 4 0
Act 2 Uitem B 1 800 800 800 1024 0 Act 2 Equip B 58 Act 2 Good 4 0
Act 2 Uitem C 1 800 800 800 1024 0 Act 2 Equip C 58 Act 3 Good 4 0
Act 3 Uitem A 1 800 800 800 1024 0 Act 3 Equip A 58 Act 3 Good 4 0
Act 3 Uitem B 1 800 800 800 1024 0 Act 3 Equip B 58 Act 3 Good 4 0
Act 3 Uitem C 1 800 800 800 1024 0 Act 3 Equip C 58 Act 3 Good 4 0
Act 4 Uitem A 1 800 800 800 1024 0 Act 4 Equip A 58 Act 4 Good 4 0
Act 4 Uitem B 1 800 800 800 1024 0 Act 4 Equip B 58 Act 4 Good 4 0
Act 5 Uitem A 1 800 800 800 1024 0 Act 5 Equip A 58 Act 5 Good 4 0
Act 5 Uitem B 1 800 800 800 1024 0 Act 5 Equip B 58 Act 5 Good 4 0
Act 5 Uitem C 1 800 800 800 1024 0 Act 5 Equip C 58 Act 5 Good 4 0
Act 1 (N) Uitem A 1 800 800 800 1024 0 Act 1 (N) Equip A 58 Act 1 (N) Good 4 0
Act 1 (N) Uitem B 1 800 800 800 1024 0 Act 1 (N) Equip B 58 Act 1 (N) Good 4 0
Act 1 (N) Uitem C 1 800 800 800 1024 0 Act 1 (N) Equip B 58 Act 1 (N) Good 4 0
Act 2 (N) Uitem A 1 800 800 800 1024 0 Act 2 (N) Equip A 58 Act 2 (N) Good 4 0
Act 2 (N) Uitem B 1 800 800 800 1024 0 Act 2 (N) Equip B 58 Act 2 (N) Good 4 0
Act 2 (N) Uitem C 1 800 800 800 1024 0 Act 2 (N) Equip B 58 Act 2 (N) Good 4 0
Act 3 (N) Uitem A 1 800 800 800 1024 0 Act 3 (N) Equip A 58 Act 3 (N) Good 4 0
Act 3 (N) Uitem B 1 800 800 800 1024 0 Act 3 (N) Equip B 58 Act 3 (N) Good 4 0
Act 3 (N) Uitem C 1 800 800 800 1024 0 Act 3 (N) Equip B 58 Act 3 (N) Good 4 0
Act 4 (N) Uitem A 1 800 800 800 1024 0 Act 4 (N) Equip A 58 Act 4 (N) Good 4 0
Act 4 (N) Uitem B 1 800 800 800 1024 0 Act 4 (N) Equip B 58 Act 4 (N) Good 4 0
Act 5 (N) Uitem A 1 800 800 800 1024 0 Act 5 (N) Equip A 58 Act 5 (N) Good 4 0
Act 5 (N) Uitem B 1 800 800 800 1024 0 Act 5 (N) Equip B 58 Act 5 (N) Good 4 0
Act 5 (N) Uitem C 1 800 800 800 1024 0 Act 5 (N) Equip C 58 Act 5 (N) Good 4 0
Act 1 (H) Uitem A 1 800 800 800 1024 0 Act 1 (H) Equip A 58 Act 1 (H) Good 4 0
Act 1 (H) Uitem B 1 800 800 800 1024 0 Act 1 (H) Equip B 58 Act 1 (H) Good 4 0
Act 1 (H) Uitem C 1 800 800 800 1024 0 Act 1 (H) Equip B 58 Act 1 (H) Good 4 0
Act 2 (H) Uitem A 1 800 800 800 1024 0 Act 2 (H) Equip A 58 Act 2 (H) Good 4 0
Act 2 (H) Uitem B 1 800 800 800 1024 0 Act 2 (H) Equip B 58 Act 2 (H) Good 4 0
Act 2 (H) Uitem C 1 800 800 800 1024 0 Act 2 (H) Equip B 58 Act 2 (H) Good 4 0
Act 3 (H) Uitem A 1 800 800 800 1024 0 Act 3 (H) Equip A 58 Act 3 (H) Good 4 0
Act 3 (H) Uitem B 1 800 800 800 1024 0 Act 3 (H) Equip B 58 Act 3 (H) Good 4 0
Act 3 (H) Uitem C 1 800 800 800 1024 0 Act 3 (H) Equip B 58 Act 3 (H) Good 4 0
Act 4 (H) Uitem A 1 800 800 800 1024 0 Act 4 (H) Equip A 58 Act 4 (H) Good 4 0
Act 4 (H) Uitem B 1 800 800 800 1024 0 Act 4 (H) Equip B 58 Act 4 (H) Good 4 0
Act 5 (H) Uitem A 1 800 800 800 1024 0 Act 5 (H) Equip A 58 Act 5 (H) Good 4 0
Act 5 (H) Uitem B 1 800 800 800 1024 0 Act 5 (H) Equip B 58 Act 5 (H) Good 4 0
Act 5 (H) Uitem C 1 800 800 800 1024 0 Act 5 (H) Equip C 58 Act 5 (H) Good 4 0
Act 1 Unique A -3 0 Act 1 Uitem A 1 Act 1 Cpot A 2 0
Act 1 Unique B -3 0 Act 1 Uitem B 1 Act 1 Cpot B 2 0
Act 1 Unique C -3 0 Act 1 Uitem C 1 Act 1 Cpot C 2 0
Act 2 Unique A -3 0 Act 2 Uitem A 1 Act 2 Cpot A 2 0
Act 2 Unique B -3 0 Act 2 Uitem B 1 Act 2 Cpot B 2 0
Act 2 Unique C -3 0 Act 2 Uitem C 1 Act 2 Cpot C 2 0
Act 3 Unique A -3 0 Act 3 Uitem A 1 Act 3 Cpot A 2 0
Act 3 Unique B -3 0 Act 3 Uitem B 1 Act 3 Cpot B 2 0
Act 3 Unique C -3 0 Act 3 Uitem C 1 Act 3 Cpot C 2 0
Act 4 Unique A -3 0 Act 4 Uitem A 1 Act 4 Cpot A 2 0
Act 4 Unique B -3 0 Act 4 Uitem B 1 Act 4 Cpot B 2 0
Act 5 Unique A -3 0 Act 5 Uitem A 1 Act 5 Cpot A 2 0
Act 5 Unique B -3 0 Act 5 Uitem B 1 Act 5 Cpot B 2 0
Act 5 Unique C -3 0 Act 5 Uitem C 1 Act 5 Cpot C 2 0
Act 1 (N) Unique A -3 0 Act 1 (N) Uitem A 2 Act 1 (N) Cpot A 7 0
Act 1 (N) Unique B -3 0 Act 1 (N) Uitem B 2 Act 1 (N) Cpot B 7 0
Act 1 (N) Unique C -3 0 Act 1 (N) Uitem C 2 Act 1 (N) Cpot C 7 0
Act 2 (N) Unique A -3 0 Act 2 (N) Uitem A 2 Act 2 (N) Cpot A 7 0
Act 2 (N) Unique B -3 0 Act 2 (N) Uitem B 2 Act 2 (N) Cpot B 7 0
Act 2 (N) Unique C -3 0 Act 2 (N) Uitem C 2 Act 2 (N) Cpot C 7 0
Act 3 (N) Unique A -3 0 Act 3 (N) Uitem A 2 Act 3 (N) Cpot A 7 0
Act 3 (N) Unique B -3 0 Act 3 (N) Uitem B 2 Act 3 (N) Cpot B 7 0
Act 3 (N) Unique C -3 0 Act 3 (N) Uitem C 2 Act 3 (N) Cpot C 7 0
Act 4 (N) Unique A -3 0 Act 4 (N) Uitem A 2 Act 4 (N) Cpot A 7 0
Act 4 (N) Unique B -3 0 Act 4 (N) Uitem B 2 Act 4 (N) Cpot B 7 0
Act 5 (N) Unique A -3 0 Act 5 (N) Uitem A 2 Act 5 (N) Cpot A 7 0
Act 5 (N) Unique B -3 0 Act 5 (N) Uitem B 2 Act 5 (N) Cpot B 7 0
Act 5 (N) Unique C -3 0 Act 5 (N) Uitem C 2 Act 5 (N) Cpot C 7 0
Act 1 (H) Unique A -3 0 Act 1 (H) Uitem A 1 Act 1 (H) Cpot A 5 0
Act 1 (H) Unique B -3 0 Act 1 (H) Uitem B 1 Act 1 (H) Cpot B 5 0
Act 1 (H) Unique C -3 0 Act 1 (H) Uitem C 1 Act 1 (H) Cpot C 5 0
Act 2 (H) Unique A -3 0 Act 2 (H) Uitem A 1 Act 2 (H) Cpot A 5 0
Act 2 (H) Unique B -3 0 Act 2 (H) Uitem B 1 Act 2 (H) Cpot B 5 0
Act 2 (H) Unique C -3 0 Act 2 (H) Uitem C 1 Act 2 (H) Cpot C 5 0
Act 3 (H) Unique A -3 0 Act 3 (H) Uitem A 1 Act 3 (H) Cpot A 5 0
Act 3 (H) Unique B -3 0 Act 3 (H) Uitem B 1 Act 3 (H) Cpot B 5 0
Act 3 (H) Unique C -3 0 Act 3 (H) Uitem C 1 Act 3 (H) Cpot C 5 0
Act 4 (H) Unique A -3 0 Act 4 (H) Uitem A 1 Act 4 (H) Cpot A 5 0
Act 4 (H) Unique B -3 0 Act 4 (H) Uitem B 1 Act 4 (H) Cpot B 5 0
Act 5 (H) Unique A -3 0 Act 5 (H) Uitem A 1 Act 5 (H) Cpot A 5 0
Act 5 (H) Unique B -3 0 Act 5 (H) Uitem B 1 Act 5 (H) Cpot B 5 0
Act 5 (H) Unique C -3 0 Act 5 (H) Uitem C 1 Act 5 (H) Cpot C 5 0
Quill 1 1 200 gld 19 Act 1 Junk 19 0
Quill 2 1 200 gld 19 Act 1 Junk 19 0
Quill 3 1 200 gld 19 Act 1 Junk 19 Act 1 Good 1 0
Quill 4 1 200 gld 19 Act 1 Junk 19 Act 1 Good 1 0
Quill 5 1 200 gld 19 Act 3 Junk 19 Act 3 Good 1 0
Quill 1 (N) 1 200 gld 19 Act 1 (N) Junk 19 0
Quill 2 (N) 1 200 gld 19 Act 1 (N) Junk 19 Act 1 (N) Good 1 0
Quill 3 (N) 1 200 gld 19 Act 1 (N) Junk 19 Act 1 (N) Good 1 0
Quill 4 (N) 1 200 gld 19 Act 1 (N) Junk 19 Act 1 (N) Good 1 0
Quill 5 (N) 1 200 gld 19 Act 3 (N) Junk 19 Act 3 (N) Good 1 0
Quill 1 (H) 1 200 gld 19 Act 1 (H) Junk 19 0
Quill 2 (H) 1 200 gld 19 Act 1 (H) Junk 19 Act 1 (H) Good 3 0
Quill 3 (H) 1 200 gld 19 Act 1 (H) Junk 19 Act 1 (H) Good 3 0
Quill 4 (H) 1 200 gld 19 Act 1 (H) Junk 19 Act 1 (H) Good 3 0
Quill 5 (H) 1 200 gld 19 Act 3 (H) Junk 19 Act 3 (H) Good 3 0
Swarm 1 1 250 Potion 2 12 Misc 1 6 Act 2 Good 1 Act 2 Magic A 6 0
Swarm 2 1 250 Potion 3 12 Misc 2 6 Act 3 Good 1 Act 3 Magic A 6 0
Swarm 1 (N) 1 250 Potion 6 12 Misc 2 6 Act 2 (N) Good 1 Act 2 (N) Magic A 6 0
Swarm 2 (N) 1 250 Potion 6 12 Misc 2 6 Act 3 (N) Good 1 Act 3 (N) Magic A 6 0
Swarm 1 (H) 1 250 Potion 6 12 Misc 2 6 Act 2 (H) Good 1 Act 2 (H) Magic A 6 0
Swarm 2 (H) 1 250 Potion 6 12 Misc 2 6 Act 3 (H) Good 1 Act 3 (H) Magic A 6 0
Andariel 7 983 983 983 1024 19 "gld,mul=1280" 11 Act 2 Equip A 19 Act 2 Junk 15 Act 2 Good 3 0
Andariel (N) 7 983 983 983 1024 19 "gld,mul=1536" 11 Act 2 (N) Equip A 19 Act 2 (N) Junk 15 Act 2 (N) Good 3 0
Andariel (H) 7 983 983 983 1024 19 "gld,mul=2048" 11 Act 2 (H) Equip A 19 Act 2 (H) Junk 15 Act 2 (H) Good 3 0
Duriel 7 983 983 983 1024 19 "gld,mul=1280" 11 Act 3 Equip A 19 Act 3 Junk 15 Act 3 Good 3 0
Duriel (N) 7 983 983 983 1024 19 "gld,mul=1536" 11 Act 3 (N) Equip A 19 Act 3 (N) Junk 15 Act 3 (N) Good 3 0
Duriel (H) 7 983 983 983 1024 19 "gld,mul=2048" 11 Act 3 (H) Equip A 19 Act 3 (H) Junk 15 Act 3 (H) Good 3 0
Radament 5 800 800 800 1024 19 "gld,mul=1280" 11 Act 3 Equip B 19 Act 3 Junk 15 Act 3 Good 3 0
Radament (N) 5 800 800 800 1024 19 "gld,mul=1536" 11 Act 3 (N) Equip B 19 Act 3 (N) Junk 15 Act 3 (N) Good 3 0
Radament (H) 5 800 800 800 1024 19 "gld,mul=2048" 11 Act 3 (H) Equip C 19 Act 3 (H) Junk 15 Act 3 (H) Good 3 0
Flying Scimitar 1 200 Act 2 Good 3 scm 57 0
Flying Scimitar (N) 1 200 Act 2 (N) Good 3 scm 25 9sm 32 0
Flying Scimitar (H) 1 200 Act 2 (H) Good 3 scm 7 9sm 18 7sm 32 0
Mephisto 7 983 983 983 1024 15 "gld,mul=1280" 5 Act 4 Equip A 52 Act 4 Junk 5 Act 4 Good 3 0
Mephisto (N) 7 983 983 983 1024 15 "gld,mul=1536" 5 Act 4 (N) Equip A 52 Act 4 (N) Junk 5 Act 4 (N) Good 3 0
Mephisto (H) 7 983 983 983 1024 15 "gld,mul=2048" 5 Act 4 (H) Equip A 52 Act 4 (H) Junk 5 Act 4 (H) Good 3 0
Diablo 7 983 983 983 1024 15 "gld,mul=1280" 5 Act 5 Equip A 52 Act 5 Junk 5 Act 5 Good 3 0
Diablo (N) 7 983 983 983 1024 15 "gld,mul=1536" 5 Act 5 (N) Equip A 52 Act 5 (N) Junk 5 Act 5 (N) Good 3 0
Diablo (H) 7 983 983 983 1024 15 "gld,mul=2048" 5 Act 5 (H) Equip A 52 Act 5 (H) Junk 5 Act 5 (H) Good 3 0
Summoner 5 800 800 800 1024 19 "gld,mul=1280" 9 Act 2 Equip C 15 Act 3 Junk 5 Act 2 Good 3 Act 3 Magic A 4 0
Summoner (N) 5 800 800 800 1024 19 "gld,mul=1536" 9 Act 2 (N) Equip C 15 Act 3 (N) Junk 5 Act 2 (N) Good 3 Act 3 (N) Magic A 4 0
Summoner (H) 5 800 800 800 1024 19 "gld,mul=2048" 9 Act 2 (H) Equip C 15 Act 3 (H) Junk 5 Act 2 (H) Good 3 Act 3 (H) Magic A 4 0
Council 4 800 800 800 1024 19 "gld,mul=1280" 9 Act 4 Equip A 15 Act 4 Junk 5 Act 4 Good 3 Act 4 Magic A 4 0
Council (N) 4 800 800 800 1024 19 "gld,mul=1536" 9 Act 4 (N) Equip A 15 Act 4 (N) Junk 5 Act 4 (N) Good 3 Act 4 (N) Magic A 4 0
Council (H) 4 800 800 800 1024 19 "gld,mul=2048" 9 Act 4 (H) Equip A 15 Act 4 (H) Junk 5 Act 4 (H) Good 3 Act 4 (H) Magic A 4 0
Griswold -3 0 Act 1 Uitem C 1 Act 1 Melee B 2 0
Griswold (N) -3 0 Act 1 (H) Uitem C 1 Act 1 (N) Melee B 2 0
Griswold (H) -3 0 Act 1 (H) Uitem C 1 Act 1 (H) Melee B 2 0
Cow 1 200 gld 19 Act 5 Equip A 19 Act 5 Junk 19 Act 5 Good 3 0
Cow (N) 1 200 gld 19 Act 5 (N) Equip A 19 Act 5 (N) Junk 19 Act 5 (N) Good 3 0
Cow (H) 1 200 gld 19 Act 5 (H) Equip B 19 Act 1 (H) Junk 19 Act 5 (H) Good 3 0
Trapped Soul 1 200 gld 19 Act 4 Equip A 8 Act 4 Junk 33 0
Trapped Soul (N) 1 200 gld 19 Act 4 (N) Equip A 8 Act 4 (N) Junk 33 0
Trapped Soul (H) 1 200 gld 19 Act 4 (H) Equip A 8 Act 4 (H) Junk 33 0
Haphesto 5 800 800 800 1024 19 "gld,mul=1280" 14 Act 5 Equip A 19 Act 5 Junk 5 Act 5 Good 3 0
Haphesto (N) 5 800 800 800 1024 19 "gld,mul=1536" 14 Act 5 (N) Equip A 19 Act 5 (N) Junk 5 Act 5 (N) Good 3 0
Haphesto (H) 5 800 800 800 1024 19 "gld,mul=2048" 14 Act 5 (H) Equip A 19 Act 5 (H) Junk 5 Act 5 (H) Good 3 0
Nihlathak 5 800 800 800 1024 19 "gld,mul=1280" 14 Act 5 Equip B 19 Act 5 Junk 5 Act 5 Good 3 0
Nihlathak (N) 5 800 800 800 1024 19 "gld,mul=1536" 14 Act 5 (N) Equip B 19 Act 5 (N) Junk 5 Act 5 (N) Good 3 0
Nihlathak (H) 5 800 800 800 1024 19 "gld,mul=2048" 14 Act 5 (H) Equip B 19 Act 5 (H) Junk 5 Act 5 (H) Good 3 0
Baal 7 983 983 983 1024 15 "gld,mul=1280" 5 Act 1 (N) Equip A 52 Act 1 (N) Junk 5 Act 1 (N) Good 3 0
Baal (N) 7 983 983 983 1024 15 "gld,mul=1536" 5 Act 1 (H) Equip A 52 Act 1 (H) Junk 5 Act 1 (H) Good 3 0
Baal (H) 7 983 983 983 1024 15 "gld,mul=2048" 5 Act 5 (H) Equip B 52 Act 5 (H) Junk 5 Act 5 (H) Good 3 0
Blood Raven 5 800 800 800 1024 19 "gld,mul=1280" 14 Act 1 Equip B 19 Act 1 Junk 5 Act 1 Good 3 0
Blood Raven (N) 5 800 800 800 1024 19 "gld,mul=1536" 14 Act 1 (N) Equip B 19 Act 1 (N) Junk 5 Act 1 (N) Good 3 0
Blood Raven (H) 5 800 800 800 1024 19 "gld,mul=2048" 14 Act 1 (H) Equip B 19 Act 1 (H) Junk 5 Act 1 (H) Good 3 0
Smith -3 0 Act 1 Uitem C 1 Act 1 Melee B 2
Smith (N) -3 0 Act 1 (H) Uitem C 1 Act 1 (N) Melee B 2
Smith (H) -3 0 Act 1 (H) Uitem C 1 Act 1 (H) Melee B 2

26
txt/UniqueAppellation.txt Normal file
View File

@ -0,0 +1,26 @@
Name MonType1 MonType2 MonType3 MonType4 MonType5 MonType6 MonType7 MonType8 MonType9 MonType10 MonType11 MonType12 MonType13 MonType14 MonType15 MonType16 MonType17 MonType18 MonType19 MonType20 MonType21 MonType22 MonType23 MonType24 MonType25 MonType26 MonType27 MonType28 MonType29 MonType30 MonType31 MonType32 MonType33 MonType34 MonType35 MonType36
the Hammer 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0
the Axe 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0
the Sharp 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 0
the Jagged 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 0
the Flayer 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 1 0 0
the Slasher 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 1 0 0
the Impaler 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 1 1 1 0 1 1 1 1 1 0
the Hunter 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 1 1 0 0 1 1 1 1 1 1
the Slayer 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 1 1 0 0 1 1 1 1 1 1
the Mauler 1 1 1 0 1 1 0 0 0 1 1 1 0 0 1 0 1 1 0 1 1 0 1 0 0 0 1 1 0 0 1 1 0 1 0 1
the Destroyer 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 1 1 1 0 1 1 0 1 0 0 0 1 1 0 0 1 1 1 1 1 1
theQuick 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1
the Witch 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0
the Mad 0 0 0 0 1 0 1 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 1 0 0
the Wraith 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 0
the Shade 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
the Dead 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 1 1 0
the Unholy 1 1 1 0 1 0 1 1 1 1 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 0 1 0 1 1 1 0
the Howler 1 1 1 0 1 1 0 0 1 0 1 1 1 0 0 0 1 1 0 1 1 1 1 0 0 1 1 1 1 0 1 1 0 0 1 1
the Grim 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
the Dark 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
the Tainted 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
the Unclean 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
the Hungry 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
the Cold 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

386
txt/UniqueItems.txt Normal file
View File

@ -0,0 +1,386 @@
name version completed beta rarity Level LevelReq code type cost mult cost add transform invtransform transformcolor ItemMod1Code ItemMod1Param ItemMod1Min ItemMod1Max ItemMod2Code ItemMod2Param ItemMod2Min ItemMod2Max ItemMod3Code ItemMod3Param ItemMod3Min ItemMod3Max ItemMod4Code ItemMod4Param ItemMod4Min ItemMod4Max ItemMod5Code ItemMod5Param ItemMod5Min ItemMod5Max ItemMod6Code ItemMod6Param ItemMod6Min ItemMod6Max ItemMod7Code ItemMod7Param ItemMod7Min ItemMod7Max ItemMod8Code ItemMod8Param ItemMod8Min ItemMod8Max ItemMod9Code ItemMod9Param ItemMod9Min ItemMod9Max ItemMod10Code ItemMod10Param ItemMod10Min ItemMod10Max
The Gnasher 0 1 1 1 7 5 hax Hand Axe 5 5000 1 0 14 att 0 30 30 openwounds 0 50 50 crush 0 20 20 dmg% 0 60 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Deathspade 0 1 1 1 12 9 axe Axe 5 5000 1 0 16 stupidity 0 1 1 dmg-min 0 8 8 att% 0 15 15 mana-kill 0 2 2 dmg% 0 60 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bladebone 0 1 1 1 20 15 2ax Double Axe 5 5000 1 1 1 dmg-undead 0 100 100 att-undead 0 40 40 swing2 0 20 20 ac 0 20 20 fire-min 0 8 8 fire-max 0 12 12 0
Mindrend 0 1 1 1 28 21 mpi Military Pick 5 5000 1 0 10 stupidity 0 60 60 regen-mana 0 20 20 ltng-min 0 1 1 ltng-max 0 12 12 att 0 50 50 dmg% 0 60 70 0
Rakescar 0 1 1 1 36 27 wax War Axe 5 5000 1 1 2 pois-min 0 64 64 pois-max 0 96 96 pois-len 0 75 75 att 0 50 50 res-pois 0 50 50 dmg% 0 60 70 0
Fechmars Axe 0 1 1 1 11 8 lax Large Axe 5 5000 1 1 17 dmg% 0 80 80 freeze 64 75 0 res-cold 0 30 30 light 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Goreshovel 0 1 1 1 19 14 bax Broad Axe 5 5000 1 1 18 swing3 0 30 30 str 0 25 25 openwounds 0 60 60 dmg% 0 40 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Chieftan 0 1 1 1 26 19 btx Battle Axe 5 5000 1 0 19 dmg% 0 100 100 res-all 0 10 10 res-pois 0 20 20 swing1 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Brainhew 0 1 1 1 34 25 gax Great Axe 5 5000 1 0 0 dmg-min 0 14 14 mana 0 25 25 light 0 4 4 manasteal 0 10 10 dmg% 0 50 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Humongous 0 1 1 1 39 29 gix Giant Axe 5 5000 1 1 3 str 0 10 10 dmg-min 0 8 8 dmg-max 0 15 15 crush 0 33 33 ease 0 20 20 dmg% 0 80 90 0
Iros Torch 0 1 1 1 7 5 wnd Wand 5 5000 1 0 9 nec 0 1 1 lifesteal 0 6 6 fire-min 0 5 5 fire-max 0 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Maelstromwrath 0 1 1 1 19 14 ywn Yew Wand 5 5000 1 1 5 ltng-min 0 1 1 ltng-max 0 9 9 res-ltng 0 40 40 0 1 1 cast3 0 20 20 mana 0 13 13 0
Gravenspine 0 1 1 1 27 20 bwn Bone Wand 5 5000 1 0 12 str 0 10 10 dex 0 10 10 cold-min 0 4 4 cold-max 0 8 8 cold-len 0 75 75 manasteal 0 5 5 0
Umes Lament 0 1 1 1 38 28 gwn Grim Wand 5 5000 1 1 4 nec 0 2 2 mana 0 40 40 cast3 0 20 20 howl 0 64 64 0
Felloak 0 1 1 1 4 3 clb Club 5 5000 1 0 1 res-ltng 0 60 60 res-fire 0 20 20 knock 0 1 1 fire-min 0 6 6 fire-max 0 8 8 dmg% 0 70 80 0 0 0 0 0 0 0 0 0 0 0 0
Knell Striker 0 1 1 1 7 5 scp Scepter 5 5000 1 1 8 crush 0 25 25 res-fire 0 20 20 res-pois 0 20 20 mana 0 15 15 att 0 35 35 dmg% 0 70 80 0 0 0 0 0 0 0 0 0 0 0 0
Rusthandle 0 1 1 1 23 17 gsc Grand Scepter 5 5000 1 1 15 pal 0 1 1 dmg-min 0 3 3 dmg-max 0 7 7 red-mag 0 1 1 lifesteal 0 8 8 dmg% 0 50 60 0
Stormeye 0 1 1 1 31 23 wsp War Scepter 5 5000 1 1 9 ltng-min 0 1 1 ltng-max 0 6 6 cold-min 0 3 3 cold-max 0 5 5 cold-len 0 75 75 regen 0 10 10 dmg% 0 80 90 0
Stoutnail 0 1 1 1 7 5 spc Spiked Club 5 5000 1 0 2 thorns 0 1 10 dmg% 0 100 100 hp 0 15 15 red-mag 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Crushflange 0 1 1 1 12 9 mac Mace 5 5000 1 1 3 str 0 15 15 knock 0 1 1 light 0 2 2 res-fire 0 50 50 dmg% 0 50 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bloodrise 0 1 1 1 20 15 mst Morning Star 5 5000 1 0 4 dmg% 0 120 120 att% 0 50 50 bloody 0 3 5 light 0 2 2 swing1 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Generals Tan Do Li Ga 0 1 1 1 28 21 fla Flail 5 5000 1 1 5 dmg-min 0 1 1 dmg-max 0 20 20 slow 0 50 50 ac 0 25 25 manasteal 0 5 5 dmg% 0 50 60 0 0 0 0 0 0 0 0 0 0 0 0
Ironstone 0 1 1 1 36 27 whm War Hammer 5 5000 1 1 6 att 0 80 80 dmg% 0 60 60 ltng-min 0 1 1 ltng-max 0 10 10 dex 0 -5 -5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bonesob 0 1 1 1 32 24 mau Maul 5 5000 1 0 7 dmg% 0 200 200 crush 0 40 40 res-fire 0 30 30 res-cold 0 30 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Steeldriver 0 1 1 1 39 29 gma Great Maul 5 5000 1 1 12 ease 0 -50 -50 swing3 0 30 30 regen-stam 0 25 25 dmg% 0 30 40 0
Rixots Keen 0 1 1 1 3 2 ssd Short Sword 5 5000 1 1 3 dmg-min 0 5 5 att% 0 20 20 light 0 2 2 crush 0 25 25 ac 0 25 25 dmg% 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0
Blood Crescent 0 1 1 1 10 7 scm Scimitar 5 5000 1 0 4 res-all 0 15 15 dmg% 0 60 60 hp 0 15 15 light 0 4 4 0 0 0 0 0
Krintizs Skewer 0 1 1 1 14 10 sbr Saber 5 5000 1 0 6 ignore-ac 0 1 1 str 0 10 10 dex 0 10 10 manasteal 0 3 3 dmg% 0 50 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Gleamscythe 0 1 1 1 18 13 flc Falchion 5 5000 1 0 7 light 0 3 3 mana 0 30 30 ac 0 20 20 swing2 0 20 20 dmg% 0 60 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Azurewrath 0 1 1 1 18 13 crs Crystal Sword 5 5000 1 0 1 deadly 0 30 30 mag% 0 10 10 cold-min 0 3 3 cold-max 0 6 6 cold-len 0 100 100 dmg% 0 100 100 0
Griswolds Edge 0 1 1 1 23 17 bsd Broad Sword 5 5000 1 0 9 fire-min 0 8 10 fire-max 0 12 16 att 0 40 40 swing1 0 10 10 knock 0 1 1 dmg% 0 70 80 0 0 0 0 0 0 0 0 0 0 0 0
Hellplague 0 1 1 1 30 22 lsd Long Sword 5 5000 1 0 8 manasteal 0 5 5 lifesteal 0 5 5 pois-min 0 48 48 pois-max 0 96 96 pois-len 0 150 150 dmg% 0 70 80 0 0 0 0 0 0 0 0 0 0 0 0
Culwens Point 0 1 1 1 39 29 wsd War Sword 5 5000 1 1 0 allskills 0 1 1 res-pois-len 0 50 50 balance2 0 20 20 swing2 0 20 20 att 0 60 60 dmg% 0 70 80 0
Shadowfang 0 1 1 1 16 12 2hs 2-Handed Sword 5 5000 1 0 12 manasteal 0 5 5 res-cold 0 20 20 light 0 -2 -2 cold-min 0 5 5 cold-max 0 10 10 cold-len 0 75 75 dmg% 0 50 60 0 0 0 0 0 0 0 0 0
Soulflay 0 1 1 1 26 19 clm Claymore 5 5000 1 1 11 manasteal 0 4 10 lifesteal 0 4 4 dmg% 0 70 70 res-all 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Kinemils Awl 0 1 1 1 31 23 gis Giant Sword 5 5000 1 0 5 att 0 45 45 mana 0 20 20 fire-min 0 6 6 fire-max 0 12 12 dmg% 0 80 100 0
Blacktongue 0 1 1 1 35 26 bsw Bastard Sword 5 5000 1 0 10 pois-min 0 48 48 noheal 0 1 1 hp 0 -10 -10 res-pois 0 50 50 pois-max 0 64 64 pois-len 0 75 75 dmg% 0 50 60 0 0 0 0 0 0 0 0 0
Ripsaw 0 1 1 1 35 26 flb Flamberge 5 5000 1 1 6 openwounds 0 50 50 bloody 0 3 5 dmg-max 0 15 15 manasteal 0 6 6 dmg% 0 80 100 0
The Patriarch 0 1 1 1 39 29 gsd Great Sword 5 5000 1 0 9 red-dmg 0 3 3 red-mag 0 3 3 stupidity 0 50 50 gold% 0 100 100 dmg% 0 50 60 0
Gull 0 1 1 1 6 4 dgr Dagger 5 5000 1 1 1 dmg-min 0 1 1 dmg-max 0 15 15 mag% 0 50 50 mana 0 -5 -5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Diggler 0 1 1 1 15 11 dir Dirk 5 5000 1 1 2 dex 0 10 10 dmg% 0 50 50 swing3 0 30 30 res-cold 0 25 25 res-fire 0 25 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Jade Tan Do 0 1 1 1 26 19 kri Kriss 5 5000 1 0 19 att 0 75 75 nofreeze 0 1 1 pois-min 0 24 24 pois-max 0 48 48 pois-len 0 75 75 0
Irices Shard 0 1 1 1 34 25 bld Blade 5 5000 1 1 5 cast3 0 20 20 mana 0 50 50 att 0 55 55 res-all 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Dragon Chang 0 1 1 1 11 8 spr Spear 5 5000 1 1 18 att 0 35 35 dmg-min 0 10 10 light 0 2 2 dmg-undead 0 100 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Razortine 0 1 1 1 16 12 tri Trident 5 5000 1 0 19 slow 0 25 25 reduce-ac 0 50 50 str 0 15 15 dex 0 8 8 swing3 0 30 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bloodthief 0 1 1 1 23 17 brn Brandistock 5 5000 1 1 0 openwounds 0 35 35 str 0 10 10 lifesteal 0 8 8 hp 0 26 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Lance of Yaggai 0 1 1 1 30 22 spt Spetum 5 5000 1 1 7 thorns 0 8 8 ltng-min 0 1 1 ltng-max 0 40 40 res-all 0 15 15 0
The Tannr Gorerod 0 1 1 1 36 27 pik Pike 5 5000 1 1 1 fire-min 0 12 12 fire-max 0 18 18 res-fire-max 0 15 15 hp 0 30 30 att 0 60 60 light 0 3 3 res-fire 0 15 15 0 0 0 0 0 0 0 0 0
Dimoaks Hew 0 1 1 1 11 8 bar Bardiche 5 5000 1 1 3 dex 0 15 15 dmg% 0 100 100 swing2 0 20 20 ac 0 -8 -8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Steelgoad 0 1 1 1 19 14 vou Voulge 5 5000 1 1 12 howl 0 96 96 deadly 0 30 30 att 0 30 30 res-all 0 5 5 0
Soul Harvest 0 1 1 1 26 19 scy Scythe 5 5000 1 0 2 openwounds 0 30 30 att 0 45 45 res-all 0 20 20 pois-min 0 32 32 pois-max 0 48 48 pois-len 0 125 125 0 0 0 0 0 0 0 0 0 0 0 0
The Battlebranch 0 1 1 1 34 25 pax Poleaxe 5 5000 1 1 4 swing3 0 30 30 dex 0 10 10 dmg% 0 50 50 att 0 40 40 lifesteal 0 7 7 0 0 0 0 0 0 0 0 0 0 0
Woestave 0 1 1 1 38 28 hal Halberd 5 5000 1 1 5 pois-min 0 24 24 pois-max 0 96 96 slow 0 50 50 res-pois-max 0 15 15 res-pois 0 15 15 light 0 2 2 pois-len 0 75 75 0 0 0 0 0 0 0 0 0
The Grim Reaper 0 1 1 1 39 29 wsc War Scythe 5 5000 1 1 17 deadly 0 50 50 noheal 0 1 1 manasteal 0 5 5 hp 0 -20 -20 0
Bane Ash 0 1 1 1 7 5 sst Short Staff 5 5000 1 1 10 fire-min 0 4 4 fire-max 0 6 6 res-fire 0 50 50 mana 0 30 30 swing2 0 20 20 dmg% 0 50 60 0 0 0 0 0 0 0 0 0 0 0 0
Serpent Lord 0 1 1 1 12 9 lst Long Staff 5 5000 1 1 12 pois-min 0 8 8 pois-max 0 128 128 res-pois 0 50 50 light 0 -1 -1 pois-len 0 75 75 mana 0 10 10 dmg% 0 30 40 0 0 0 0 0 0 0 0 0
Lazarus Spire 0 1 1 1 24 18 cst Gnarled Staff 5 5000 1 0 1 res-all 0 30 30 red-mag 0 3 3 mana 0 20 20 swing2 0 20 20 str 0 9 9 fire-min 0 7 7 fire-max 0 12 12 dmg% 0 50 60 0 0 0 0 0 0
The Salamander 0 1 1 1 28 21 bst Battle Staff 5 5000 1 1 8 fireskill 0 2 2 fire-min 0 1 1 fire-max 0 10 10 res-fire 0 20 20 att 0 50 50 dmg% 0 50 60 0 0 0 0 0 0 0 0 0 0 0 0
The Iron Jang Bong 0 1 1 1 38 28 wst War Staff 5 5000 1 1 14 ltng-min 0 1 1 att% 0 50 50 ac 0 25 25 sor 0 1 1 cast3 0 20 20 ltng-max 0 25 25 dmg% 0 30 40 0 0 0 0 0 0 0 0 0
Pluckeye 0 1 1 1 10 7 sbw Short Bow 5 5000 1 1 6 att 0 28 28 dmg% 0 100 100 hp 0 10 10 light 0 2 2 manasteal 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Witherstring 0 1 1 1 18 13 hbw Hunters Bow 5 5000 1 1 7 swing3 0 30 30 dmg-min 0 1 1 dmg-max 0 3 3 att 0 50 50 magicarrow 0 35 35 dmg% 0 40 50 0 0 0 0 0 0 0 0 0 0 0 0
Rimeraven 0 1 1 1 20 15 lbw Long Bow 5 5000 1 1 8 att% 0 50 50 dex 0 3 3 explosivearrow 0 30 30 str 0 3 3 dmg% 0 60 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Piercerib 0 1 1 1 27 20 cbw Composite Bow 5 5000 1 0 9 res-all 0 10 10 deadly 0 30 30 att 0 60 60 dmg-undead 0 100 100 dmg% 0 40 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Pullspite 0 1 1 1 34 25 sbb Short Battle Bow 5 5000 1 0 10 ltng-min 0 1 1 str 0 8 8 att 0 28 28 pierce 0 10 10 ltng-max 0 10 10 res-ltng 0 25 25 dmg% 0 70 80 0 0 0 0 0 0 0 0 0
Wizendraw 0 1 1 1 35 26 lbb Long Battle Bow 5 5000 1 1 11 magicarrow 0 1 1 mana 0 30 30 swing2 0 20 20 res-cold 0 26 26 att 0 36 36 dmg% 0 70 80 0 0 0 0 0 0 0 0 0 0 0 0
Hellclap 0 1 1 1 36 27 swb Short War Bow 5 5000 1 0 12 swing1 0 10 10 fire-min 0 6 6 fire-max 0 9 9 att 0 20 20 res-fire 0 40 40 dex 0 12 12 dmg% 0 70 80 0 0 0 0 0 0 0 0 0
Blastbark 0 1 1 1 38 28 lwb Long War Bow 5 5000 1 1 13 dmg% 0 70 70 str 0 5 5 ama 0 1 1 manasteal 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Leadcrow 0 1 1 1 12 9 lxb Light Crossbow 5 5000 1 0 14 dex 0 10 10 hp 0 10 10 dmg% 0 70 70 res-pois 0 30 30 deadly 0 25 25 att 0 40 40 0 0 0 0 0 0 0 0 0 0 0 0
Ichorsting 0 1 1 1 24 18 mxb Crossbow 5 5000 1 0 15 pois-min 0 24 24 pois-max 0 32 32 dex 0 20 20 pierce 0 50 50 att 0 50 50 pois-len 0 75 75 dmg% 0 50 50 0 0 0 0 0 0 0 0 0
Hellcast 0 1 1 1 36 27 hxb Heavy Crossbow 5 5000 1 0 16 explosivearrow 0 1 1 res-fire-max 0 15 15 res-fire 0 15 15 att 0 70 70 swing2 0 20 20 dmg% 0 70 80 0 0 0 0 0 0 0 0 0 0 0 0
Doomspittle 0 1 1 1 38 28 rxb Repeating Crossbow 5 5000 1 0 17 ama 0 1 1 pierce 0 35 35 swing3 0 30 30 hp 0 15 15 dmg% 0 40 50 0 0 0 0 0 0 0 0 0 0 0 0 0
War Bonnet 0 1 1 1 4 3 cap Cap 5 5000 1 0 18 hp 0 15 15 att 0 30 30 dmg% 0 30 30 mana 0 15 15 ac 0 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Tarnhelm 0 1 1 1 20 15 skp Skull Cap 5 5000 1 1 19 gold% 0 75 75 mag% 0 25 50 allskills 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Coif of Glory 0 1 1 1 19 14 hlm Helm 5 5000 1 0 0 light-thorns 0 4 4 stupidity 0 1 1 res-ltng 0 15 15 ac-miss 0 25 25 ac 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Duskdeep 0 1 1 1 23 17 fhl Full Helm 5 5000 1 0 1 light 0 -2 -2 res-all 0 5 5 red-dmg 0 3 3 dmg-max 0 8 8 ac 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wormskull 0 1 1 1 28 21 bhm Bone Helm 5 5000 1 0 10 nec 0 1 1 lifesteal 0 5 5 mana 0 10 10 res-pois 0 25 25 0
Howltusk 0 1 1 1 34 25 ghm Great Helm 5 5000 1 1 2 red-mag 0 2 2 thorns 0 3 3 ac% 0 80 80 dmg-to-mana 0 35 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Undead Crown 0 1 1 1 39 29 crn Crown 5 5000 1 1 3 lifesteal 0 4 4 ac 0 40 40 res-pois 0 50 50 half-freeze 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Face of Horror 0 1 1 1 27 20 msk Mask 5 5000 1 1 4 howl 0 64 64 str 0 20 20 res-all 0 5 5 dmg-undead 0 50 50 ac 0 25 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Greyform 0 1 1 1 10 7 qui Quilted Armor 5 5000 1 1 1 red-mag 0 3 3 res-cold 0 20 20 res-fire 0 20 20 dex 0 10 10 lifesteal 0 5 5 ac 0 20 20 0 0 0 0 0 0 0 0 0 0 0 0
Blinkbats Form 0 1 1 1 16 12 lea Leather Armor 5 5000 1 1 8 ac-miss 0 16 16 move1 0 10 10 ac 0 25 25 fire-min 0 3 3 fire-max 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Centurion 0 1 1 1 19 14 hla Hard Leather 5 5000 1 1 9 ac 0 30 30 att 0 25 25 red-dmg 0 2 2 hp 0 15 15 mana 0 15 15 stam 0 15 15 regen 0 3 3 0 0 0 0 0 0 0 0 0
Twitchthroe 0 1 1 1 22 16 stu Studded Leather 5 5000 1 1 10 swing1 0 10 10 dex 0 10 10 block 0 25 25 ac 0 25 25 str 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Darkglow 0 1 1 1 19 14 rng Ring Mail 5 5000 1 1 11 att 0 20 20 res-all-max 0 5 5 light 0 3 3 ac-hth 0 25 25 res-all 0 10 10 ac 0 30 30 0 0 0 0 0 0 0 0 0 0 0 0
Hawkmail 0 1 1 1 20 15 scl Scale Mail 5 5000 1 1 12 ac 0 45 45 res-cold-max 0 15 15 res-cold 0 15 15 nofreeze 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Sparking Mail 0 1 1 1 23 17 chn Chain Mail 5 5000 1 1 13 ac 0 60 60 ltng-min 0 1 1 ltng-max 0 10 10 light-thorns 0 1 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Venomsward 0 1 1 1 27 20 brs Breast Plate 5 5000 1 1 14 pois-min 0 24 24 pois-max 0 32 32 dmg-ltng 0 10 20 res-pois-max 0 15 15 light 0 2 2 pois-len 0 75 75 res-pois 0 15 15 ac 0 40 40 0 0 0 0 0 0
Iceblink 0 1 1 1 30 22 spl Splint Mail 5 5000 1 1 15 freeze 13 50 0 res-cold 0 30 30 light 0 4 4 red-mag 0 1 1 ac 0 55 55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Boneflesh 0 1 1 1 35 26 plt Plate Mail 5 5000 1 1 16 lifesteal 0 5 5 ac 0 100 100 att 0 35 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Rockfleece 0 1 1 1 38 28 fld Field Plate 5 5000 1 1 17 ease 0 -10 -10 ac 0 125 125 res-pois 0 50 50 red-dmg 0 3 3 str 0 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Rattlecage 0 1 1 1 39 29 gth Gothic Plate 5 5000 1 1 18 howl 0 50 50 att 0 45 45 crush 0 25 25 ac 0 200 200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Goldskin 0 1 1 1 38 28 ful Full Plate Mail 5 5000 1 0 19 ac 0 150 150 res-all 0 30 30 thorns 0 1 10 light 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Victors Silk 0 1 1 1 38 28 aar AncientArmor 5 5000 1 0 5 manasteal 0 5 5 allskills 0 1 1 light 0 2 2 ac 0 60 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Heavenly Garb 0 1 1 1 39 29 ltp LightPlate 5 5000 1 1 6 ac% 0 100 100 res-all 0 10 10 regen-mana 0 25 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Pelta Lunata 0 1 1 1 3 2 buc Buckler 5 5000 1 0 0 ac 0 40 40 hp 0 10 10 str 0 2 2 mana 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Umbral Disk 0 1 1 1 12 9 sml Small Shield 5 5000 1 0 1 stupidity 0 1 1 dex 0 10 10 ac 0 40 40 hp 0 20 20 light 0 -2 -2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Stormguild 0 1 1 1 18 13 lrg Large Shield 5 5000 1 0 2 red-mag 0 1 1 res-ltng 0 25 25 ac 0 30 30 ltng-min 0 1 1 ltng-max 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wall of the Eyeless 0 1 1 1 27 20 bsh Bone Shield 5 5000 1 0 15 mana-kill 0 5 5 manasteal 0 3 3 cast3 0 20 20 res-pois 0 20 20 ac 30 30 0
Swordback Hold 0 1 1 1 20 15 spk Spiked Shield 5 5000 1 0 7 thorns 0 5 5 block 0 20 20 openwounds 0 50 50 bloody 0 3 5 ac 20 20 0
Steelclash 0 1 1 1 23 17 kit Kite Shield 5 5000 1 0 3 block 0 25 25 pal 0 1 1 red-dmg 0 3 3 light 0 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bverrit Keep 0 1 1 1 26 19 tow Tower Shield 5 5000 1 0 4 ac 0 30 30 res-fire 0 25 25 str 0 5 5 red-mag 0 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Ward 0 1 1 1 35 26 gts Gothic Shield 5 5000 1 0 5 ac 0 40 40 red-mag 0 2 2 str 0 10 10 block 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Hand of Broc 0 1 1 1 7 5 lgl Gloves 5 5000 1 1 6 manasteal 0 3 3 lifesteal 0 3 3 res-pois 0 10 10 mana 0 20 20 ac 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Bloodfist 0 1 1 1 12 9 vgl Heavy Gloves 5 5000 1 1 19 dmg-min 0 5 5 hp 0 40 40 balance3 0 30 30 ac 10 10 0
Chance Guards 0 1 1 1 20 15 mgl Bracers 5 5000 1 1 7 gold% 0 200 200 mag% 0 24 24 att 0 25 25 ac 0 15 15 light 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Magefist 0 1 1 1 31 23 tgl Light Gauntlets 5 5000 1 1 1 cast3 0 20 20 regen-mana 0 25 25 fireskill 0 1 1 fire-min 0 1 1 fire-max 0 5 5 ac 10 10 0
Frostburn 0 1 1 1 39 29 hgl Gauntlets 5 5000 1 1 8 ac 0 30 30 dmg% 0 5 5 mana% 0 40 40 cold-min 0 1 1 cold-max 0 6 6 cold-len 0 50 50 0 0 0 0 0 0 0 0 0 0 0 0
Hotspur 0 1 1 1 7 5 lbt Leather Boots 5 5000 1 1 9 res-fire-max 0 15 15 hp 0 15 15 fire-min 0 3 3 fire-max 0 6 6 ac 0 10 10 res-fire 0 15 15 0 0 0 0 0 0 0 0 0 0 0 0
Gorefoot 0 1 1 1 12 9 vbt Heavy Boots 5 5000 1 1 5 bloody 0 3 5 move2 0 20 20 manasteal 0 2 2 thorns 0 2 2 ac 12 12 0
Treads of Cthon 0 1 1 1 20 15 mbt Chain Boots 5 5000 1 1 10 move3 0 30 30 ac-miss 0 50 50 stamdrain 0 50 50 hp 0 10 10 0 0 0 ac 0 12 12 0 0 0 0 0 0 0 0 0 0 0 0
Goblin Toe 0 1 1 1 30 22 tbt Light Plate Boots 5 5000 1 1 2 crush 0 25 25 red-dmg 0 1 1 red-mag 0 1 1 ac 0 15 15 light 0 -1 -1 0
Tearhaunch 0 1 1 1 39 29 hbt Plate Boots 5 5000 1 1 11 ac 0 35 35 str 0 5 5 dex 0 5 5 move2 0 20 20 res-all 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Lenyms Cord 0 1 1 1 10 7 lbl Sash 5 5000 1 1 12 mana 0 15 15 regen-mana 0 30 30 res-all 0 5 5 light 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Snakecord 0 1 1 1 16 12 vbl Light Belt 5 5000 1 1 3 pois-min 0 16 16 pois-max 0 24 32 pois-len 0 75 75 res-pois 0 25 25 ac 0 11 11 regen 0 5 5 0
Nightsmoke 0 1 1 1 27 20 mbl Belt 5 5000 1 1 13 res-all 0 10 10 dmg-to-mana 0 50 50 mana 0 20 20 red-dmg 0 2 2 ac 0 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Goldwrap 0 1 1 1 36 27 tbl Heavy Belt 5 5000 1 1 4 mag% 0 30 30 light 0 2 2 ac 0 40 40 swing1 0 10 10 0
Bladebuckle 0 1 1 1 39 29 hbl Girdle 5 5000 1 1 14 thorns 0 8 8 ac 0 40 40 red-dmg 0 3 3 str 0 5 5 dex 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Nokozan Relic 0 1 1 20 14 10 amu Amulet 5 5000 1 0 15 fire-min 0 3 3 res-fire-max 0 10 10 res-fire 0 10 10 light 0 3 3 fire-max 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Eye of Etlich 0 1 1 5 20 15 amu Amulet 5 5000 1 0 16 ac-miss 0 10 40 light 0 1 5 allskills 0 1 1 lifesteal 0 3 7 cold-min 0 1 2 cold-max 0 3 5 cold-len 0 50 250 0 0 0 0 0 0 0 0 0
The Mahim-Oak Curio 0 1 1 10 34 25 amu Amulet 5 5000 1 0 17 dex 0 5 5 mana 0 20 20 str 0 5 5 hp 0 20 20 ac 0 10 10 att 0 40 40 0 0 0 0 0 0 0 0 0 0
Nagelring 0 1 1 80 10 7 rin Ring 5 5000 1 0 18 red-mag 0 2 2 thorns 0 3 3 att 0 18 18 mag% 0 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Manald Heal 0 1 1 40 20 15 rin Ring 5 5000 1 0 19 manasteal 0 4 4 regen 0 5 5 hp 0 20 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Stone of Jordan 0 1 1 1 39 29 rin Ring 5 5000 1 0 0 mana 0 20 20 mana% 0 25 25 ltng-min 0 1 1 allskills 0 1 1 ltng-max 0 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Amulet of the Viper 0 1 0 1 0 0 vip Amulet 5 5000 1 0 1 mana 0 10 10 res-pois 0 25 25 hp 0 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Staff of Kings 0 1 0 1 0 0 msf Staff 5 5000 1 0 2 res-all 0 10 10 swing3 0 50 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Horadric Staff 0 1 0 1 0 0 hst Staff 5 5000 1 0 3 mana 0 10 10 res-pois 0 25 25 hp 0 10 10 res-all 0 10 10 swing3 0 50 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Hell Forge Hammer 0 1 0 1 0 0 hfh Hammer 5 5000 1 0 9 fire-min 0 5 5 fire-max 0 20 20 res-fire 0 40 40 ac 0 35 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
KhalimFlail 0 1 1 1 0 0 qf1 Flail 5 5000 1 0 5 ltng-min 0 1 1 ltng-max 0 20 20 swing3 0 50 50 att 0 40 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SuperKhalimFlail 0 1 1 1 0 0 qf2 Flail 5 5000 1 0 5 ltng-min 0 1 1 ltng-max 0 40 40 swing3 0 50 50 att 0 40 40 manasteal 0 6 6 lifesteal 0 6 6 0 0 0 0 0 0 0 0 0 0 0 0
Expansion 0
Coldkill 100 1 0 1 44 36 9ha Hatchet 5 5000 1 1 6 dmg-cold 50 40 40 res-cold 0 15 15 res-cold-max 0 15 15 swing3 0 30 30 hit-skill 45 8 3 gethit-skill 44 8 5 dmg% 180 180 180 0 0 0
Butcher's Pupil 100 1 0 1 47 39 9ax Cleaver 5 5000 1 1 6 deadly 0 35 35 openwounds 0 25 25 dmg% 0 150 150 indestruct 0 0 swing3 0 30 30 dmg-norm 0 30 50 0
Islestrike 100 1 0 1 51 43 92a Twin Axe 5 5000 0 dru 2 2 2 str 0 10 10 dex 0 10 10 vit 0 10 10 enr 0 10 10 ac-miss 0 50 50 crush 0 25 25 dmg% 0 190 190 0
Pompe's Wrath 100 1 0 1 53 45 9mp Crowbill 5 5000 1 1 9 hit-skill 244 4 8 slow 0 50 50 dmg-fire 0 35 50 knock 0 1 1 dmg% 0 140 140 0
Guardian Naga 100 1 0 1 56 48 9wa Naga 5 5000 0 hit-skill 92 5 8 thorns 0 15 15 pois-len 0 150 150 res-pois 0 30 30 dmg% 0 150 150 dmg-pois 0 50 75 0
Warlord's Trust 100 1 0 1 43 35 9la Military Axe 5 5000 1 1 0 ac 0 75 75 regen 0 20 20 vit/lvl 8 8 8 res-all 0 10 10 rep-dur 25 25 25 dmg% 0 175 175 0
Spellsteel 100 1 0 1 47 39 9ba Bearded Axe 5 5000 1 1 0 ease 0 -60 -60 mana 0 100 100 red-mag 0 20 20 cast1 0 10 10 dmg% 0 165 165 0 0 0 0 0 0
Stormrider 100 1 0 1 49 41 9bt Tabar 5 5000 1 1 7 hit-skill 53 4 10 hit-skill 38 5 0 dmg-ltng 0 35 75 dmg-norm 0 35 75 dmg% 0 100 100 0
Boneslayer Blade 100 1 0 1 50 42 9ga Gothic Axe 5 5000 0 att-und/lvl 10 10 10 dmg-und/lvl 20 20 20 str 0 8 8 swing2 0 20 20 att% 0 35 35 dmg% 0 200 200 0
The Minataur 100 1 0 1 53 45 9gi Ancient Axe 5 5000 0 stupidity 0 10 10 half-freeze 0 1 1 str 0 15 15 slow 0 50 50 crush 0 30 30 dmg-norm 0 45 90 dmg% 0 140 140 0
Suicide Branch 100 1 0 1 41 33 9wn Burnt Wand 5 5000 0 thorns 0 25 25 cast3 0 50 50 res-all 10 10 10 mana% 0 10 10 hp 0 40 40 0
Carin Shard 100 1 0 1 43 35 9yw Petrified Wand 5 5000 1 1 6 hp/lvl 10 10 8 cast2 0 10 10 mana/lvl 10 10 10 balance3 0 30 30 regen 5 5 5 0 0
Arm of King Leoric 100 1 0 1 44 36 9bw Tomb Wand 5 5000 0 skilltab 8 2 2 gethit-skill 93 2 5 mana/lvl 10 10 10 gethit-skill 88 0 2 cast1 0 10 10 0
Blackhand Key 100 1 0 1 49 41 9gw Grave Wand 5 5000 1 1 3 skilltab 6 3 3 dmg-to-mana 0 20 20 hp 0 50 50 light 0 2 2 cast3 0 30 30 res-fire 0 37 37 0
Dark Clan Crusher 100 1 0 1 42 34 9cl Cudgel 5 5000 1 1 16 bar 0 1 1 dmg-demon 0 200 200 att-demon 0 200 200 dmg% 0 195 195 0 0 0 0 0 0 0
Zakarum's Hand 100 1 0 1 45 37 9sc Rune Scepter 5 5000 1 1 17 manasteal 0 8 8 att% 0 300 300 regen-mana 0 10 10 regen-stam 0 15 15 hit-skill 59 3 5 dmg% 0 200 200 swing3 30 30 30 0 0 0 0
The Fetid Sprinkler 100 1 0 1 46 38 9qs Holy Water Sprinkler 5 5000 0 pal 0 2 2 hit-skill 87 3 0 hit-skill 81 3 2 dmg-pois 0 150 200 pois-len 0 50 50 dmg% 0 180 180 0
Hand of Blessed Light 100 1 0 1 50 42 9ws Devine Scepter 5 5000 1 0 13 skill 101 3 3 dmg% 0 150 150 att% 0 100 100 ac 0 50 50 regen-mana 0 15 15 light 0 4 4 dmg-norm 30 75 0 0 0 0
Fleshrender 100 1 0 1 46 38 9sp Barbed Club 5 5000 1 0 3 openwounds 0 15 15 noheal 1 1 1 crush 0 20 20 deadly 0 20 20 bloody 0 1 1 dmg-norm 0 35 50 dmg% 0 130 130 0 0 0 0
Sureshrill Frost 100 1 0 1 47 39 9ma Flanged Mace 5 5000 0 dmg-cold 0 15 60 nofreeze 0 1 1 cold-len 0 80 80 dmg% 0 175 175 0
Moonfall 100 1 0 1 50 42 9mt Jagged Star 5 5000 0 hit-skill 56 3 6 dmg-fire 0 45 90 red-mag 0 15 15 dmg% 0 120 120 0
Baezil's Vortex 100 1 0 1 53 45 9fl Knot 5 5000 1 1 5 hit-skill 48 5 8 dmg-ltng 0 20 50 mana 0 100 100 res-ltng 25 25 25 dmg% 0 200 200 0
Earthshaker 100 1 0 1 51 43 9wh Battle Hammer 5 5000 0 hit-skill 234 3 7 knock 0 1 1 swing3 0 30 30 dmg% 0 180 180 stupidity 0 1 1 0
Bloodtree Stump 100 1 0 1 56 48 9m9 War Club 5 5000 1 0 8 crush 50 50 50 bloody 40 40 40 dmg% 0 185 185 res-all 0 20 20 str 0 10 10
The Gavel of Pain 100 1 0 1 53 45 9gm Martel de Fer 5 5000 0 ease 0 -50 -50 hit-skill 66 3 5 thorns 0 20 20 indestruct 0 1 1 gethit-skill 76 3 5 dmg-norm 0 25 60 dmg% 0 150 150 0
Bloodletter 100 1 0 1 38 30 9ss Gladius 5 5000 1 1 9 dmg-norm 0 20 45 att 0 90 90 lifesteal 0 8 8 stamdrain 0 10 10 swing2 0 20 20 dmg% 190 190 0 0 0 0
Coldsteel Eye 100 1 0 1 39 31 9sm Cutlass 5 5000 1 0 2 stupidity 0 1 1 slow 0 30 30 crush 0 50 50 dur% 0 70 70 dmg% 0 200 200 0 0 0 0 0 0
Hexfire 100 1 0 1 41 33 9sb Shamshir 5 5000 0 hit-skill 62 3 0 ignore-ac 0 1 1 res-fire 0 25 25 res-fire-max 0 10 10 dmg-norm 0 35 40 dmg% 0 160 160 0
Blade of Ali Baba 100 1 0 1 43 35 9fc Tulwar 5 5000 1 1 9 sock 3 3 3 gold%/lvl 12 0 0 mag% 35 35 35 mana 0 15 15 dmg% 0 120 120 dex 0 15 15 0
Ginther's Rift 100 1 0 1 45 37 9cr Dimensional Blade 5 5000 1 6 red-mag 0 20 20 dmg-norm 0 25 50 swing3 0 30 30 rep-dur 0 20 20 dur% 100 100 100 dmg% 0 200 200 0
Headstriker 100 1 0 1 47 39 9bs Battle Sword 5 5000 1 1 20 noheal 0 1 1 str 0 15 15 deadly/lvl 6 6 6 dmg/lvl 8 8 8 dmg% 0 150 150 0
Plague Bearer 100 1 0 1 49 41 9ls Rune Sword 5 5000 0 hit-skill 92 3 0 pois-len 0 120 120 dmg-pois 0 100 200 dmg-norm 0 10 45 dmg% 150 150 res-pois 45 45 0
The Atlantian 100 1 0 1 50 42 9wd Ancient Sword 5 5000 1 1 4 dur 0 100 100 ac 0 75 75 str 0 16 16 dex 0 8 8 vit 0 10 10 dmg% 0 190 190 pal 0 2 2 0 0 0 0
Crainte Vomir 100 1 0 1 50 42 92h Espadon 5 5000 1 0 15 slow 0 35 35 dmg-ac 0 -70 -70 move2 0 20 20 red-dmg% 0 10 10 dmg% 0 175 175 swing3 50 50 50 0 0 0 0
Bing Sz Wang 100 1 0 1 51 43 9cm Dacian Falx 5 5000 0 ease 0 -30 -30 dmg-cold 0 20 40 str 0 20 20 freeze 64 50 0 hit-skill 64 5 1 dmg% 130 130 0
The Vile Husk 100 1 0 1 52 44 9gs Tusk Sword 5 5000 1 1 2 hit-skill 66 5 2 dmg-und/lvl 60 60 60 res-pois 0 50 50 dmg-pois 0 100 200 pois-len 0 120 120 dmg% 0 200 200 0
Cloudcrack 100 1 0 1 53 45 9b9 Gothic Sword 5 5000 0 hit-skill 121 5 2 dmg-ltng 0 30 60 ac 0 30 30 light 0 2 2 res-ltng-max 10 10 10 dmg% 0 150 150 light-thorns 0 15 15 0
Todesfaelle Flamme 100 1 0 1 54 46 9fb Zweihander 5 5000 0 dmg-fire 0 50 100 res-fire 0 40 40 abs-fire 0 10 10 att-skill 36 0 4 dmg% 0 120 120 att-skill 52 2 8 0
Swordguard 100 1 0 1 55 48 9gd Executioner Sword 5 5000 1 1 20 ease 0 -50 -50 ac/lvl 20 20 20 res-all 0 10 10 ac-miss 0 100 100 dmg-to-mana 30 30 30 dmg% 0 175 175 0
Spineripper 100 1 0 1 40 32 9dg Poignard 5 5000 0 ignore-ac 0 1 1 lifesteal 8 8 8 noheal 0 1 1 swing3 0 15 15 dex 0 10 10 dmg% 200 200 0
Heart Carver 100 1 0 1 44 36 9di Rondel 5 5000 0 deadly 0 35 35 att% 150 150 150 dmg-norm 0 15 35 dmg% 0 200 200 ignore-ac 1 1 0
Blackbog's Sharp 100 1 0 1 46 38 9kr Cinquedeas 5 5000 0 slow 0 50 50 ac 0 50 50 dmg-norm 0 15 45 swing3 0 30 30 0
Stormspike 100 1 0 1 49 41 9bl Stilleto 5 5000 1 1 6 dmg-ltng 0 30 60 light-thorns 0 20 20 gethit-skill 38 25 3 dmg% 0 150 150 res-ltng/lvl 8 0
The Impaler 100 1 0 1 39 31 9sr War Spear 5 5000 1 1 7 ignore-ac 1 1 1 att 0 150 150 swing2 20 20 20 openwounds 0 40 40 noheal 1 1 1 dmg% 0 150 150 0 0 0 0 0
Kelpie Snare 100 1 0 1 41 33 9tr Fuscina 5 5000 0 slow 0 100 100 res-fire 0 50 50 hp/lvl 10 10 10 dmg-norm 0 30 50 str 0 10 10 dmg% 0 150 150 0
Soulfeast Tine 100 1 0 1 43 35 9br War Fork 5 5000 1 1 13 ease 0 -20 -20 lifesteal 0 7 7 manasteal 0 7 7 stamdrain 20 20 20 dmg% 175 175 175 0
Hone Sundan 100 1 0 1 45 37 9st Yari 5 5000 0 sock 0 3 3 dmg-norm 0 20 70 crush 0 45 45 rep-dur 10 10 10 dmg% 180 180 0
Spire of Honor 100 1 0 1 47 39 9p9 Lance 5 5000 1 1 1 lifesteal 0 5 5 light 0 5 5 regen 0 10 10 balance1 10 10 10 dmg-norm 0 50 85 dmg-dem/lvl 10 10 10 dmg% 0 145 145 0
The Meat Scraper 100 1 0 1 49 41 9b7 Lochaber Axe 5 5000 1 1 8 light-thorns 0 20 20 dmg% 0 100 100 swing2 0 30 30 lifesteal 0 6 6 mag% 0 25 25 0 0 0 0 0
Blackleach Blade 100 1 0 1 50 42 9vo Bill 5 5000 1 1 3 ease 0 -25 -25 hit-skill 72 3 5 light 0 -2 -2 lifesteal 0 8 8 dmg/lvl 10 10 10 dmg% 100 100 0
Athena's Wrath 100 1 0 1 50 42 9s8 Battle Scythe 5 5000 0 bar 2 2 2 dex 0 15 15 swing3 0 30 30 hp 100 100 100 dmg/lvl 8 8 8 dmg% 0 180 180 0
Pierre Tombale Couant 100 1 0 1 51 43 9pa Partizan 5 5000 1 1 15 deadly 0 55 55 nec 0 2 2 balance3 0 30 30 manasteal 0 8 8 dmg-norm 0 15 35 ease -50 -50 dmg% 0 160 160 0
Husoldal Evo 100 1 0 1 52 44 9h9 Bec-de-Corbin 5 5000 0 regen 20 20 20 att 0 200 200 noheal 0 1 1 dmg-norm 0 40 65 dmg% 0 160 160 0
Grim's Burning Dead 100 1 0 1 52 45 9wc Grim Scythe 5 5000 1 1 9 dmg-fire 0 20 50 res-fire 0 15 15 dmg% 190 190 thorns 0 8 8 str 0 10 10 0
Razorswitch 100 1 0 1 36 28 8ss Jo Stalf 5 5000 1 0 17 cast3 0 30 30 thorns 0 15 15 mana 0 175 175 hp 0 80 80 red-mag 0 15 15 res-all 0 50 50 0 0 0 0 0
Ribcracker 100 1 0 1 39 31 8ls Quarterstaff 5 5000 1 1 4 skilltab 5 3 3 cast2 20 20 20 mana/lvl 0 10 10 dex 0 15 15 ac 0 100 100 regen 15 15 15 regen-mana 0 20 20 0 0
Chromatic Ire 100 1 0 1 43 35 8cs Cedar Staff 5 5000 0 thorns 0 15 15 res-all 0 25 25 cast1 20 20 20 sor 0 3 3 light-thorns 0 20 20 hp% 50 50 50
Warpspear 100 1 0 1 47 39 8bs Gothic Staff 5 5000 1 1 6 sor 0 2 2 att% 0 100 100 dmg-norm 0 14 45 skill 54 3 3 skill 43 2 2 ac-miss 100 100 100 0 0 0
Skullcollector 100 1 0 1 49 41 8ws Rune Staff 5 5000 1 1 3 skill 42 3 3 howl 0 60 60 mana% 0 30 30 cast2 0 20 20 mana-kill 0 10 10 hp 50 50 0 0 0
Skystrike 100 1 0 1 36 28 8sb Edge Bow 5 5000 0 dmg-ltng 0 35 55 att 0 100 100 enr 0 10 10 swing3 0 30 30 dmg% 0 175 175
Riphook 100 1 0 1 39 31 8hb Razor Bow 5 5000 1 1 9 openwounds 0 30 30 dmg% 0 200 200 slow 0 30 30 mana 0 35 35 cast3 0 30 30 0 0 0 0 0
Kuko Shakaku 100 1 0 1 41 33 8lb CedarBow 5 5000 1 1 17 skill 27 3 3 res-fire 0 40 40 att-skill 36 2 10 dmg% 0 180 180 pierce 0 1 1 0 0 0 0
Endlesshail 100 1 0 1 44 36 8cb Double Bow 5 5000 0 res-cold 0 35 35 mana 0 40 40 ac-miss 0 50 50 skill 12 2 2 dmg% 200 200 0 0 0 0
Whichwild String 100 1 0 1 47 39 8s8 Short Siege Bow 5 5000 1 1 4 hit-skill 66 2 5 res-all 0 40 40 deadly/lvl 8 8 8 dmg% 0 160 160 0 0 0 0 0
Cliffkiller 100 1 0 1 49 41 8l8 Long Siege Bow 5 5000 1 0 16 ama 0 2 2 dmg% 0 200 200 ac-miss 0 80 80 knock 0 1 1 hp 0 50 50 0 0 0 0 0 0
Magewrath 100 1 0 1 51 43 8sw Rune Bow 5 5000 1 0 19 manasteal 0 15 15 red-mag 0 30 30 skill 22 3 3 att% 0 150 150 dex 0 10 10 stupidity 1 1 1 dmg-norm 0 35 75 dmg% 0 150 150 0 0 0
Godstrike Arch 100 1 0 1 54 46 8lw Gothic Bow 5 5000 1 1 1 dmg% 0 200 200 ac-miss 0 65 65 att% 0 150 150 dmg-demon 0 100 200 hit-skill 121 5 2 swing3 0 50 50 0 0 0 0
Langer Briser 100 1 0 1 40 32 8lx Arbalest 5 5000 0 knock 0 1 1 dmg% 170 170 170 hit-skill 245 1 3 mag% 15 15 15 hp 0 30 30 mag% 0 30 30 0 0 0 0
Pus Spiter 100 1 0 1 44 36 8mx Siege Crossbow 5 5000 1 1 12 dmg-pois 0 120 200 pois-len 0 60 60 res-pois 0 25 25 res-pois-max 0 10 10 hit-skill 92 3 3 nec 0 2 2 ease 0 -100 -100 dmg% 0 190 190 swing1 0 10 10 0 0
Buriza-Do Kyanon 100 1 0 1 49 41 8hx Balista 5 5000 0 pierce 0 1 1 dex 0 35 35 ac 0 75 75 dmg/lvl 20 20 20 swing3 0 50 50 dmg% 0 120 120 0 0 0 0
Demon Machine 100 1 0 1 57 49 8rx Chu-Ko-Nu 5 5000 1 1 3 ac 0 65 65 mana% 0 50 50 pierce 0 1 1 explosivearrow 0 30 30 dmg-norm 0 35 75 dmg% 0 150 150 0 0 0 0 0
Armor 0
Peasent Crown 100 1 0 1 36 28 xap War Hat 3 5000 1 0 1 enr 0 20 20 vit 0 20 20 allskills 0 1 1 move3 0 0 0 regen 0 12 12 ac% 0 100 100 0 0 0 0 0
Rockstopper 100 1 0 1 39 31 xkp Sallet 3 5000 0 0 res-ltng 37 37 hp 0 23 23 dex 0 13 13 balance3 0 30 30 enr 0 15 15 ac% 0 110 110 0 0 0
Stealskull 100 1 0 1 43 35 xlm Casque 3 5000 0 0 manasteal 0 5 5 lifesteal 0 5 5 balance2 0 10 10 cast2 0 10 10 mana/lvl 4 4 4 ac 35 35 35 0 0 0
Darksight Helm 100 1 0 1 46 38 xhl Basinet 3 5000 1 1 3 light 0 -4 -4 ac/lvl 16 16 16 nofreeze 0 1 1 manasteal 0 5 5 gethit-skill 71 2 5 0 0 0
Valkiry Wing 100 1 0 1 52 44 xhm Winged Helm 3 5000 1 0 15 ac 0 35 35 move3 0 30 30 balance3 0 30 30 cast3 0 30 30 swing3 0 30 30 0 0 0 0 0 0
Crown of Thieves 100 1 0 1 57 49 xrn Grand Crown 3 5000 1 1 16 dex 0 25 25 lifesteal 0 8 8 hp 0 50 50 mana 0 35 35 res-fire 0 33 33 ac% 0 175 175 0 0 0
Blackhorn's Face 100 1 0 1 49 41 xsk Death Mask 3 5000 1 1 3 light-thorns 0 25 25 slow 0 20 20 noheal 0 1 1 abs-ltng 0 20 20 res-ltng 0 15 15 ac% 0 200 200 0 0 0 0 0
Vampiregaze 100 1 0 1 49 41 xh9 Grim Helm 3 5000 1 1 12 manasteal 0 8 8 lifesteal 0 8 8 stamdrain 0 15 15 red-dmg% 0 25 25 red-mag 0 15 15 ac% 0 100 100 0 0 0 0 0
The Spirit Shroud 100 1 0 1 36 28 xui Ghost Armor 3 5000 0 0 nofreeze 0 1 1 allskills 0 1 1 red-mag 10 10 10 regen 10 10 10 ac% 150 150 150 0 0 0
Skin of the Vipermagi 100 1 0 1 37 29 xea SerpentSkin Armor 3 5000 1 1 5 ac% 0 120 120 res-all 0 35 35 cast3 0 30 30 red-mag 0 15 15 0 0 0 0 0 0 0
Skin of the Flayerd One 100 1 0 1 39 31 xla Demonhide Armor 3 5000 1 1 7 rep-dur 5 5 5 regen 10 10 10 dur% 0 100 100 lifesteal 0 5 5 ac% 175 175 175 thorns 15 15 15 0 0 0
Ironpelt 100 1 0 1 41 33 xtu Tresllised Armor 3 5000 1 1 2 dur 0 125 125 hp 0 27 27 dex 0 13 13 red-mag 0 13 13 ac/lvl 0 24 24 ac% 100 100 0 0 0
Spiritforge 100 1 0 1 43 35 xng Linked Mail 3 5000 0 0 light 0 4 4 hp/lvl 10 10 10 dmg-fire 0 5 10 res-fire 0 5 5 ac% 0 120 120 str 0 15 15 sock 2 2 2 0 0 0
Crow Caw 100 1 0 1 45 37 xcl Tigulated Mail 3 5000 0 0 openwounds 0 35 35 ac% 165 165 dex 15 15 15 balance1 0 10 10 swing2 0 15 15 0 0 0
Shaftstop 100 1 0 1 46 38 xhn Mesh Armor 3 5000 1 0 2 ac-miss 0 100 100 red-dmg% 0 30 30 hp 0 60 60 ac% 0 200 200 0 0 0 0 0 0 0
Duriel's Shell 100 1 0 1 49 41 xrs Cuirass 3 5000 1 1 19 str 0 15 15 res-all 0 20 20 ac/lvl 10 10 10 hp/lvl 8 8 8 ac% 0 160 160 0 0 0
Skullder's Ire 100 1 0 1 50 42 xpl Russet Armor 3 5000 0 0 allskills 0 1 1 red-mag 0 25 25 vit 0 30 30 mag%/lvl 10 0 0 rep-dur 25 0 0 ac% 0 200 200 0 0 0
Guardian Angel 100 1 0 1 53 45 xlt Templar Coat 3 5000 1 1 1 light 0 4 4 pal 0 1 1 ac% 0 75 75 block3 0 0 0 res-all-max 0 15 15 att-demon 0 100 100 0 0 0 0 0
Toothrow 100 1 0 1 56 48 xld Sharktooth Armor 3 5000 1 1 0 thorns 20 20 20 ac 0 100 100 str 0 10 10 openwounds 0 40 40 res-fire 0 15 15 ac% 0 200 200 0 0 0
Atma's Wail 100 1 0 1 59 51 xth Embossed Plate 3 5000 0 0 dex 0 15 15 regen 0 10 10 mana% 0 15 15 balance3 0 30 30 ac/lvl 16 16 16 dur 0 50 50 ac% 0 120 120 0 0 0
Black Hades 100 1 0 1 61 53 xul Chaos Armor 3 5000 0 0 light 0 -2 -2 att-demon 0 150 150 thorns 0 15 15 half-freeze 0 1 1 sock 0 2 2 ac% 140 140 140 0 0 0
Corpsemourn 100 1 0 1 63 55 xar Ornate Armor 3 5000 1 1 3 str 0 8 8 red-mag 0 15 15 res-cold 0 35 35 gethit-skill 76 3 2 ac% 0 170 170 0 0 0
Que-Hegan's Wisdon 100 1 0 1 59 51 xtp Mage Plate 3 5000 0 0 cast3 0 30 30 mana-kill 0 3 3 red-mag 0 10 10 enr 0 20 20 balance1 0 15 15 ac% 150 150 0 0 0
Visceratuant 100 1 0 1 36 28 xuc Defender 3 5000 1 0 8 nec 0 2 2 hp 0 80 80 block3 30 30 30 block 0 25 25 ac% 0 80 80 0 0 0 0 0 0
Mosers Blessed Circle 100 1 0 1 39 31 xml Round Shield 3 5000 0 res-all 0 25 25 block 0 25 25 sock 2 0 0 ac% 0 200 200 0 0 0
Stormchaser 100 1 0 1 43 35 xrg Scutum 3 5000 1 1 6 dmg-max 0 35 35 block 0 20 20 half-freeze 0 1 1 res-ltng 0 35 35 att 0 150 150 ac% 0 60 60 0 0 0
Tiamat's Rebuke 100 1 0 1 46 38 xit Dragon Shield 3 5000 1 1 1 dmg-cold 0 5 10 dmg-fire 0 10 25 dmg-pois 0 30 60 dmg-ltng 0 8 16 cold-len 0 150 150 block 0 10 10 pois-len 0 120 120 res-all 25 25 30 dmg-norm 0 10 20
Kerke's Sanctuary 100 1 0 1 52 44 xow Pavise 3 5000 1 1 10 vit/lvl 8 8 8 regen 0 15 15 red-dmg 0 15 15 red-mag 0 15 15 ac% 0 125 125 block 0 25 25 0 0 0
Radimant's Sphere 100 1 0 1 58 50 xts Ancient Shield 3 5000 0 dmg-pois 80 40 75 gethit-skill 92 4 0 res-pois 0 20 20 ac% 0 85 85 block 0 25 25 0 0 0
Lidless Wall 100 1 0 1 49 41 xsh Grim Shield 3 5000 1 1 16 abs-pois/lvl 4 4 4 light 0 4 4 str 0 5 5 dex 0 5 5 vit 0 5 5 enr 0 5 5 ac% 0 80 80 block3 0 50 50 0 0 0
Lance Guard 100 1 0 1 43 35 xpk Barbed Shield 3 5000 0 mana% 0 35 35 hp 0 50 50 balance3 0 30 30 dmg-to-mana 0 15 15 thorns 0 25 25 ac% 0 60 60 0 0 0 0 0
Venom Grip 100 1 0 1 37 29 xlg Demonhide Gloves 5 5000 1 0 11 res-pois 0 30 30 res-pois-max 0 5 5 dmg-pois 0 75 150 pois-len 0 80 80 crush 0 5 5 lifesteal 0 5 5 ac% 40 40 40 0 0 0
Gravepalm 100 1 0 1 39 32 xvg Sharkskin Gloves 5 5000 0 0 enr 0 10 10 str 0 5 5 dmg-undead 0 200 200 att-undead 0 100 200 ac% 60 60 60 0 0 0
Ghoulhide 100 1 0 1 44 36 xmg Heavy Bracers 5 5000 0 0 att-und/lvl 8 0 0 dmg-und/lvl 32 0 0 lifesteal 0 5 5 hp 0 20 20 ac% 0 20 20 0 0 0
Lavagout 100 1 0 1 50 42 xtg Battle Guantlets 5 5000 1 0 13 res-fire 0 24 24 half-freeze 0 1 1 hit-skill 52 2 10 swing2 20 20 20 ac 0 50 50 dmg-fire 0 10 20 0 0 0
Hellmouth 100 1 0 1 55 47 xhg War Gauntlets 5 5000 0 0 dmg-fire 0 15 40 res-fire 0 20 20 thorns 0 10 10 nofreeze 0 1 1 ac% 0 150 150 hit-skill 56 5 1 0 0 0
Infernostride 100 1 0 1 27 29 xlb Demonhide Boots 5 5000 0 0 dmg-fire 0 10 35 move3 0 30 30 res-fire-max 0 15 15 res-fire 0 20 20 light 0 2 2 ac% 120 120 gold% 0 65 65 0 0 0
Waterwalk 100 1 0 1 40 32 xvb Sharkskin Boots 5 5000 0 0 ac-miss 0 100 100 move2 0 20 20 dex 0 15 15 ac% 0 200 200 hp 65 65 65 stam 40 40 40 0 0 0
Silkweave 100 1 0 1 44 36 xmb Mesh Boots 5 5000 0 0 ac% 0 180 180 mana-kill 0 5 5 ac-miss 0 50 50 mana% 0 10 10 move2 30 30 0 0 0
Wartraveler 100 1 0 1 50 42 xtb Battle Boots 5 5000 0 0 gold% 0 100 100 dex 0 10 10 mag% 45 45 45 dur% 0 100 100 move2 0 20 20 ac% 110 110 110 0 0 0
Gorerider 100 1 0 1 55 47 xhb War Boots 5 5000 1 0 8 ease 0 -25 -25 bloody 1 1 1 deadly 0 15 15 dmg-max 0 10 10 move3 0 30 30 ac% 0 65 65 0 0 0 0 0
String of Ears 100 1 0 1 37 29 zlb Demonhide Sash 5 5000 1 0 7 red-mag 0 15 15 red-dmg% 0 15 15 lifesteal 0 8 8 ac% 170 170 170 0 0 0 0 0 0
Razortail 100 1 0 1 39 32 zvb Sharkskin Belt 5 5000 0 0 thorns/lvl 2 2 2 str 0 5 5 pierce 0 1 1 ac 0 25 25 0 0 0
Gloomstrap 100 1 0 1 45 36 zmb Mesh Belt 5 5000 0 0 light 0 -3 -3 mana% 0 15 15 manasteal 0 5 5 ac% 0 100 100 vit 0 30 30 0 0 0
Snowclash 100 1 0 1 49 42 ztb Battle Belt 5 5000 0 0 gethit-skill 59 5 0 abs-cold 5 5 5 res-cold-max 0 15 15 dmg-cold 0 5 15 ac% 0 70 70 0 0 0
Thudergod's Vigor 100 1 0 1 55 47 zhb War Belt 5 5000 0 0 gethit-skill 121 3 2 dmg-ltng 0 5 15 res-ltng-max 0 10 10 res-ltng 0 10 10 ac% 0 110 110 mana 0 15 15 0 0 0
Elite Uniques
Harlequin Crest 100 1 0 1 69 62 uap Shako 3 5000 1 1 12 allskills 0 2 2 hp% 0 40 40 mana/lvl 0 10 10 mag% 0 50 50 ac% 0 100 100 indestruct 0 1 1 0 0 0 0 0
Veil of Steel 100 1 0 1 77 73 uhm Spired Helm 3 5000 1 1 1 res-all 0 35 35 ac% 0 150 150 str 0 15 15 vit/lvl 0 12 12 light 0 4 4 indestruct 0 1 1 ac 0 30 30 0 0 0 0
The Gladiator's Bane 100 1 0 1 85 85 utu Wire Fleece 3 5000 1 1 1 ac% 0 150 150 red-mag 0 20 20 red-dmg 0 25 25 thorns 0 20 20 res-pois-len 0 40 40 indestruct 0 1 1 balance3 0 30 30 ac 0 50 50 nofreeze 0 1 1
Arkaine's Valor 100 1 0 1 85 85 upl Balrog Skin 3 5000 1 1 7 ac% 0 200 200 vit/lvl 20 0 0 balance2 0 30 30 hp/lvl 16 0 0 allskills 0 2 2 indestruct 0 1 1 res-fire 0 50 50 0 0
Blackoak Shield 100 1 0 1 67 61 uml Luna 3 5000 0 0 dex 0 30 30 ac%/lvl 20 20 20 abs-cold/lvl 6 6 6 gethit-skill 72 4 5 indestruct 0 1 1 hp 100 100 100 block3 0 50 50 half-freeze 1 1 1 0 0
Stormshield 100 1 0 1 77 73 uow Aegis 3 5000 0 0 ac/lvl 24 24 24 red-dmg% 35 35 35 str 30 30 30 indestruct 0 1 1 block3 0 35 35 res-ltng 0 25 25 block 25 25 25 res-cold 0 60 60 0 0 0
Hellslayer 100 1 0 1 71 66 7bt Decapitator 5 5000 1 1 8 str 0 35 35 vit/lvl 16 16 16 dmg%/lvl 20 dmg-fire 0 40 60 mana 0 60 60 indestruct 0 1 1 dmg% 0 150 150 att-skill 47 10 3 0 0
Messerschmidt's Reaver 100 1 0 1 75 70 7ga Champion Axe 5 5000 1 1 3 dmg%/lvl 0 24 24 dmg% 0 200 200 str 0 15 15 dex 0 15 15 vit 0 15 15 enr 0 15 15 thorns/lvl 0 8 8 dmg-fire 0 30 70 indestruct 0 1 1
Baranar's Star 100 1 0 1 70 65 7mt Devil Star 5 5000 1 1 7 att% 0 200 200 dmg% 0 200 200 vit/lvl 12 12 12 dex 0 15 15 swing3 0 30 30 indestruct 0 1 1 hit-skill 56 10 5 0 0 0 0
Schaefer's Hammer 100 1 0 1 83 79 7wh Legendary Mallet 5 5000 1 1 4 hit-skill 42 5 5 hp 0 50 50 att/lvl 16 16 16 res-ltng 0 50 50 swing2 0 20 20 dmg/lvl 16 16 16 indestruct 0 1 1 dmg% 0 75 75 0 0 0
The Cranium Basher 100 1 0 1 91 87 7gm Thunder Maul 5 5000 1 1 3 swing2 0 20 20 indestruct 0 1 1 str 0 25 25 res-all 0 45 45 crush 0 60 60 dmg-norm 0 50 80 dmg% 0 180 180 hit-skill 66 4 4
Lightsabre 100 1 0 1 66 58 7sb Elegant Blade 5 5000 1 1 12 light 0 7 7 hit-skill 53 5 0 ignore-ac 1 1 1 abs-ltng% 0 30 30 ac-miss 0 100 100 swing3 0 50 50 indestruct 0 1 1 dmg% 200 200 200 0 0
Doombringer 100 1 0 1 75 69 7b7 Champion Sword 5 5000 1 1 8 hp% 0 25 25 dmg% 0 200 200 att% 40 40 40 indestruct 0 1 1 dmg-norm 0 30 100 hit-skill 72 5 3 0 0 0 0
The Grandfather 100 1 0 1 85 81 7gd Colossus Blade 5 5000 1 1 13 str 0 20 20 dex 0 20 20 mana% 25 25 25 hp% 25 25 25 att% 0 150 150 hp 0 175 175 dmg/lvl 20 20 20 indestruct 0 1 1 dmg% 0 150 150
Wizardspike 100 1 0 1 69 61 7dg Bone Knife 5 5000 1 1 1 mana/lvl 16 16 16 regen-mana 15 15 15 mana% 15 15 15 res-all 0 50 50 indestruct 0 1 1 cast3 0 50 50 res-all 0 45 45 0 0 0 0
Constricting Ring 100 0 0 1 95 95 rin Ring 5 5000 1 1 6 res-all 0 100 100 regen 0 -50 -50 mag% 100 100 res-all-max 0 15 15 0 0 0 0 0
Stormspire 100 1 0 1 78 70 6ws Archon Staff 5 5000 1 1 5 res-ltng 0 40 40 gethit-skill 53 5 5 mana/lvl 0 24 24 str 0 10 10 gethit-skill 38 2 0 regen-mana 0 20 20 indestruct 0 1 1 cast3 50 50 50 mana% 30 30 30 0 0
Eaglehorn 100 1 0 1 77 69 6l7 Crusader Bow 5 5000 1 1 16 ignore-ac 1 1 1 att/lvl 12 12 12 dmg%/lvl 16 16 16 dmg-ltng 0 45 75 indestruct 0 1 1 dmg% 0 200 200 dmg-norm 0 20 40 0 0 0 0
Windforce 100 1 0 1 80 73 6lw Hydra Bow 5 5000 1 1 14 dex 0 35 35 dmg/lvl 25 25 25 regen-stam 0 30 30 manasteal 0 8 8 knock 0 1 1 dmg% 0 250 250 swing2 20 20 20 0 0 0
Rings 0
Bul Katho's Wedding Band 100 1 0 1 66 58 rin Ring 5 5000 1 1 18 hp 0 20 20 allskills 0 1 1 lifesteal 0 4 4 stam 50 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Cat's Eye 100 1 0 5 58 50 amu Amulet 5 5000 1 1 19 move3 0 30 30 swing2 0 20 20 ac 0 75 75 stam 0 20 20 ac-miss 0 45 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The Rising Sun 100 1 0 5 73 65 amu Amulet 5 5000 1 1 15 abs-fire/lvl 8 8 8 light 0 4 4 gethit-skill 56 2 0 dmg-fire 0 24 48 0 0 0 0 0 0 0 0 0 0 0 0
Crescent Moon 100 1 0 5 58 50 amu Amulet 5 5000 1 1 4 manasteal 0 15 15 red-mag 0 10 10 dmg-to-mana 0 10 10 light 0 -2 -2 mana 0 45 45 0 0 0 0
Mara's Kaleidoscope 100 1 0 5 80 67 amu Amulet 5 5000 1 1 19 allskills 0 1 1 res-all 0 20 20 str 0 5 5 dex 0 5 5 vit 0 5 5 enr 0 5 5 0
Atma's Scarab 100 1 0 5 60 60 amu Amulet 5 5000 1 1 12 pois-min 0 75 75 pois-max 0 100 100 pois-len 0 100 100 res-pois 0 75 75 light 0 3 3 thorns 0 4 4 hit-skill 66 2 4
Dwarf Star 100 1 0 10 53 45 rin Ring 5 5000 1 1 2 gold% 0 70 70 stam 0 25 25 regen-stam 0 15 15 hp 0 40 40 red-mag 0 15 15 0
Raven Frost 100 1 0 10 53 45 rin Ring 5 5000 1 1 6 gethit-skill 44 4 5 nofreeze 0 1 1 cold-min 0 15 15 cold-max 0 25 25 res-cold 0 35 35 0 0
Highlord's Wrath 100 1 0 5 73 65 amu Amulet 5 5000 1 1 20 res-ltng 0 35 35 ltng-min 0 5 5 ltng-max 0 20 20 move3 0 30 30 allskills 0 1 1 deadly/lvl 0 8 8 0
Saracen's Chance 100 1 0 5 55 47 amu Amulet 5 5000 1 1 18 res-all 0 15 15 gethit-skill 76 2 5 hit-skill 66 3 5 str 0 10 10 dex 0 10 10 0 0
Class Specific
Arreat's Face 100 1 0 1 50 42 baa Slayer Guard 5 5000 1 0 0 bar 0 2 2 reduce-ac 0 15 15 dmg/lvl 4 4 4 ac% 0 25 25 hp 0 30 30 skilltab 12 1 1 0
Homunculus 100 1 0 1 50 42 nea Heirophant Trophy 5 5000 1 0 0 nec 0 2 2 dmg-to-mana 0 25 25 mana/lvl 8 8 8 regen-mana 0 8 8 block 15 15 15 skilltab 6 1 1 0
Titan's Revenge 100 1 0 1 50 42 ama Ceremonial Javelin 5 5000 1 0 0 ama 0 2 2 str 0 15 15 hp 0 30 30 dmg-ltng 0 20 30 rep-quant 5 5 5 knock 0 1 1 dmg% 0 60 60 0
Lycander's Aim 100 1 0 1 50 42 am7 Ceremonial Bow 5 5000 1 0 0 ama 0 2 2 dex 0 15 15 swing2 0 20 20 balance3 0 30 30 res-all 0 40 40 dmg% 0 80 80 0
Lycander's Flank 100 1 0 1 50 42 am9 Ceremonial Pike 5 5000 1 0 0 ama 0 2 2 deadly/lvl 4 4 4 swing3 0 30 30 knock 0 1 1 ac-miss 0 100 100 dmg% 0 150 150 0
The Oculus 100 1 0 1 50 42 oba Swirling Crystal 5 5000 1 0 0 sor 0 2 2 mana/lvl 4 4 4 gethit-skill 54 3 10 slow 0 20 20 mana-kill 0 2 2 dmg-ltng 0 10 20 0
Herald of Zakarum 100 1 0 1 50 42 pa9 Aerin Shield 5 5000 1 0 0 pal 0 2 2 skilltab 10 1 1 block3 0 50 50 nofreeze 0 1 1 dmg-und/lvl 16 16 16 att-und/lvl 20 20 20 block 0 15 15 ac% 0 50 50 0
Cutthroat 100 1 0 1 50 42 9tw Runic Talons 5 5000 1 0 0 ass 0 2 2 skilltab 19 1 1 reduce-ac 0 35 35 stupidity 0 1 1 dex 0 10 10 deadly 0 25 25 dmg% 0 35 35 swing3 50 50 50 mana 0 25 25
Jalal's Mane 100 1 0 1 50 42 dra Dream Spirit 5 5000 1 0 0 dru 0 2 2 skilltab 16 1 1 knock 0 1 1 balance2 0 20 20 crush 25 25 25 regen-stam 0 20 20 hp 50 50 50 0
The Scalper 100 0 0 1 0 0 7ha Tomahawk 5 5000 1 0 0 0 0 0 0 0 0 0 0
Bloodmoon 100 0 0 1 0 0 7ax Small Crescent 5 5000 1 0 0 0 0 0 0 0 0 0 0
Djinnslayer 100 0 0 1 0 0 72a Ettin Axe 5 5000 1 0 0 0 0 0 0 0 0 0 0
Deathbit 100 0 0 1 0 0 7mp War Spike 5 5000 1 0 0 0 0 0 0 0 0 0 0
Warshrike 100 0 0 1 0 0 7wa Berserker Axe 5 5000 1 0 0 0 0 0 0 0 0 0 0
Gutsiphon 100 0 0 1 0 0 7ia Feral Axe 5 5000 1 0 0 0 0 0 0 0 0 0 0
Razoredge 100 0 0 1 0 0 7ba Silver Edged Axe 5 5000 1 0 0 0 0 0 0 0 0 0 0
Gore Ripper 100 0 0 1 0 0 7gi Glorious Axe 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Demonlimb 100 0 0 1 0 0 7wn Polished Wand 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Steelshade 100 0 0 1 0 0 7yw Ghost Wand 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Tomb Reaver 100 0 0 1 0 0 7bw Lich Wand 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Deaths's Web 100 0 0 1 0 0 7gw Unearthed Wand 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Nature's Peace 100 0 0 1 0 0 7cl Truncheon 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Horazon's Chalice 100 0 0 1 0 0 7sc Mighty Scepter 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Seraph's Hymn 100 0 0 1 0 0 7qs Seraph Rod 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Zakarum's Salvation 100 0 0 1 0 0 7ws Caduceus 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Fleshripper 100 0 0 1 0 0 7sp Tyrant Club 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Odium 100 0 0 1 0 0 7ma Reinforced Mace 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Horizon's Tornado 100 0 0 1 0 0 7fl Scourge 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Stone Crusher 100 0 0 1 0 0 7m7 Orge Maul 5 5000 1 0 0 0 0 0 0 0 0 0 0
Jadetalon 100 0 0 1 0 0 7ss Falcata 5 5000 1 0 0 0 0 0 0 0 0 0 0
Shadowdancer 100 0 0 1 0 0 7sm Ataghan 5 5000 1 0 0 0 0 0 0 0 0 0 0
Cerebus 100 0 0 1 0 0 7fc Hydry Edge 5 5000 1 0 0 0 0 0 0 0 0 0 0
Tyrael's Might 100 0 0 1 0 0 7cr Phase Blade 5 5000 1 0 0 0 0 0 0 0 0 0 0
Souldrain 100 0 0 1 0 0 7bs Conquest Sword 5 5000 1 0 0 0 0 0 0 0 0 0 0
Runemaster 100 0 0 1 0 0 7ls Cryptic Sword 5 5000 1 0 0 0 0 0 0 0 0 0 0
Deathcleaver 100 0 0 1 0 0 7wd Mythical Sword 5 5000 1 0 0 0 0 0 0 0 0 0 0
Executioner's Justice 100 0 0 1 0 0 72h Legend Sword 5 5000 1 0 0 0 0 0 0 0 0 0 0
Stoneraven 100 0 0 1 0 0 7cm Highland Blade 5 5000 1 0 0 0 0 0 0 0 0 0 0
Leviathan 100 0 0 1 0 0 7gs Balrog Blade 5 5000 1 0 0 0 0 0 0 0 0 0 0
Larzuk's Champion 100 0 0 1 0 0 7fb Colossal Sword 5 5000 1 0 0 0 0 0 0 0 0 0 0
Wisp 100 0 0 1 0 0 7di Mithral Point 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Gargoyle's Bite 100 0 0 1 0 0 7kr Fanged Knife 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Lacerator 100 0 0 1 0 0 7bl Legend Spike 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Mang Song's Lesson 100 0 0 1 0 0 7sr Hyperion Spear 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Viperfork 100 0 0 1 0 0 7tr Stygian Pike 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Blood Chalice 100 0 0 1 0 0 7br Mancatcher 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Ethereal Edge 100 0 0 1 0 0 7st Ghost Spear 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
The Long Rod 100 0 0 1 0 0 7p7 War Pike 5 5000 1 0 0 0 0 0 0
Demonhorn's Edge 100 0 0 1 0 0 7o7 Ogre Axe 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
The Ensanguinator 100 0 0 1 0 0 7vo Colossus Voulge 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
The Reaper's Toll 100 0 0 1 0 0 7s8 Thresher 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Spiritkeeper 100 0 0 1 0 0 7pa Cryptic Axe 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Hellrack 100 0 0 1 0 0 7h7 Great Pollax 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Alma Negra 100 0 0 1 0 0 7wc Giant Thresher 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Darkforge Spawn 100 0 0 1 0 0 6ss Walking Stick 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Widowmaker 100 0 0 1 0 0 6sb Spider Bow 5 5000 1 0
Bloodraven's Charge 100 0 0 1 0 0 6hb Blade Bow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Ghostflame 100 0 0 1 0 0 6lb Shadow Bow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Shadowkiller 100 0 0 1 0 0 6cb Great Bow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Gimmershred 100 0 0 1 0 0 6s7 Diamond Bow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Griffon's Eye 100 0 0 1 0 0 6sw Ward Bow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Windhammer 100 0 0 1 0 0 6lx Pellet Bow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Thunderstroke 100 0 0 1 0 0 6mx Gorgon Crossbow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Giantmaimer 100 0 0 1 0 0 6hx Colossus Crossbow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Demon's Arch 100 0 0 1 0 0 6rx Demon Crossbow 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Boneflame 100 0 0 1 0 0 ukp Hydraskull 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Steelpillar 100 0 0 1 0 0 ulm Armet 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Nightwing's Veil 100 0 0 1 0 0 uhl Giant Conch 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Crown of Ages 100 0 0 1 0 0 urn Corona 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Andariel's Visage 100 0 0 1 0 0 usk Demonhead 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Darkfear 100 0 0 1 0 0 uui Dusk Shroud 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Dragonscale 100 0 0 1 0 0 uea Wyrmhide 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Steel Carapice 100 0 0 1 0 0 ula Scarab Husk 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Gillian's Brazier 100 0 0 1 0 0 ung Diamond Mail 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Ravenlore 100 0 0 1 0 0 ucl Loricated Mail 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Boneshade 100 0 0 1 0 0 uhn Boneweave 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Nethercrow 100 0 0 1 0 0 urs Great Hauberk 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Flamebellow 100 0 0 1 0 0 ult Hellforged Plate 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Fathom 100 0 0 1 0 0 uld Kraken Shell 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Wolfhowl 100 0 0 1 0 0 uth Lacquered Plate 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Spirit Ward 100 0 0 1 0 0 uul Shadow Plate 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Kira's Guardian 100 0 0 1 0 0 uar Sacred Armor 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Ormus' Robes 100 0 0 1 0 0 utp Archon Plate 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Gheed's Fortune 100 0 0 1 0 0 uuc Heater 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Stormlash 100 0 0 1 0 0 urg Hyperion 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Halaberd's Reign 100 0 0 1 0 0 uit Monarch 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Warriv's Warder 100 0 0 1 0 0 uts Ward 3 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Spike Thorn 100 0 0 1 0 0 ulg Bramble Mitts 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Dracul's Grasp 100 0 0 1 0 0 ubg Vampirebone Gloves 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Frostwind 100 0 0 1 0 0 umg Vambraces 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Templar's Might 100 0 0 1 0 0 utg Cruser Gauntlets 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Eschuta's temper 100 0 0 1 0 0 uhg Ogre Gauntlets 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Firelizard's Talons 100 0 0 1 0 0 ulb Wyrmhide Boots 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Sandstorm Trek 100 0 0 1 0 0 uvb Scarabshell Boots 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Marrowwalk 100 0 0 1 0 0 umb Boneweave Boots 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Heaven's Light 100 0 0 1 0 0 utb Mirrored Boots 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Merman's Speed 100 0 0 1 0 0 uhb Myrmidon Greaves 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Arachnid Mesh 100 0 0 1 0 0 ulc Spiderweb Sash 5 5000 1 0 0 0 0 0 0 0 0 0 0 0 0
Nosferatu's Coil 100 1 0 1 0 0 uvc Vamprefange Belt 5 5000 1 0 str 0 15 15 mana-kill 0 2 2 slow 0 10 10 lifesteal 0 5 5 swing1 0 3 3 light 0 -3 -3 0 0 0 0 0
Metalgrid 100 0 0 1 0 0 umc Mithril Coil 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Verdugo's Hearty Cord 100 0 0 1 0 0 utc Troll Belt 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Sigurd's Staunch 100 0 0 1 0 0 uhc Colossus Girdle 5 5000 1 0 0 0 0 0 0 0 0 0 0 0
Carrion Wind 100 0 0 1 0 0 uh9 Bone Visage 3 5000 1 0 0 0 0 0 0 0 0 0 0 0
Giantskull 100 0 0 1 0 0 ush Troll Nest 3 5000 1 0 0 0 0 0 0 0 0 0 0 0
Ironward 100 0 0 1 0 0 upk Bladebarrier 3 5000 1 0 0 0 0 0 0 0 0 0 0 0

54
txt/UniquePrefix.txt Normal file
View File

@ -0,0 +1,54 @@
Name MonType1 MonType2 MonType3 MonType4 MonType5 MonType6 MonType7 MonType8 MonType9 MonType10 MonType11 MonType12 MonType13 MonType14 MonType15 MonType16 MonType17 MonType18 MonType19 MonType20 MonType21 MonType22 MonType23 MonType24 MonType25 MonType26 MonType27 MonType28 MonType29 MonType30 MonType31 MonType32 MonType33 MonType34 MonType35 MonType36
GloomUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Gray 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
DireUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Black 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
ShadowUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Haze 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Wind 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
StormUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Warp 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Night 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Moon 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Star 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Pit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Fire 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Cold 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Seethe 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
SharpUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
AshUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Blade 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
SteelUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
StoneUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Rust 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Mold 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0
Blight 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 0 0
Plague 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0
Rot 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0
Ooze 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 1 0 1 1 0 0
Puke 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
Snot 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
Bile 0 1 1 0 1 1 0 0 0 1 0 0 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 0
BloodUM 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
Pulse 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
Gut 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
Gore 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
FleshUM 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
BoneUM 1 1 1 0 1 1 0 0 0 1 1 1 1 0 0 1 0 1 0 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1
SpineUM 1 1 0 0 1 1 1 1 0 1 1 1 1 1 0 1 1 1 0 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 1 1
Mind 1 1 0 0 1 1 1 1 0 1 0 0 1 0 0 1 0 1 0 0 1 1 1 0 0 0 1 0 1 0 1 1 1 1 1 0
SpiritUM 1 1 0 0 1 1 1 1 1 1 0 0 1 0 0 1 0 1 0 0 1 1 1 0 0 0 1 0 1 0 1 1 1 1 1 0
SoulUM 1 1 1 0 1 1 1 1 1 1 0 0 1 0 0 1 0 1 0 0 1 1 1 0 0 0 1 0 1 0 1 1 1 1 1 0
Wrath 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 1 1
GriefUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Foul 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Vile 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Sin 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
ChaosUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
DreadUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
DoomUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
BaneUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
DeathUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
ViperUM 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Dragon 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Devil 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

70
txt/UniqueSuffix.txt Normal file
View File

@ -0,0 +1,70 @@
Name MonType1 MonType2 MonType3 MonType4 MonType5 MonType6 MonType7 MonType8 MonType9 MonType10 MonType11 MonType12 MonType13 MonType14 MonType15 MonType16 MonType17 MonType18 MonType19 MonType20 MonType21 MonType22 MonType23 MonType24 MonType25 MonType26 MonType27 MonType28 MonType29 MonType30 MonType31 MonType32 MonType33 MonType34 MonType35 MonType36
touchUM 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0
spellUM 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0
feast 1 1 1 0 1 1 0 0 0 1 1 0 1 0 1 0 0 1 1 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 1 1
wound 1 1 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 0 0 0 0 1 0 0 1 1 1 1 1 1
grin 1 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0
maim 1 1 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 0 0 0 0 1 0 0 1 1 1 1 1 1
hack 1 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 1 0 1 1 1 0
biteUM 0 0 1 0 1 1 0 1 1 1 1 0 1 0 1 1 0 1 1 1 0 0 1 0 0 1 1 1 1 0 1 1 1 1 0 1
rendUM 0 0 1 0 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 1 0 0 1 0 0 0 1 1 0 0 1 1 1 1 0 1
burn 1 1 1 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 0 0 1 0 1 1 1 0
rip 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1
kill 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1
callUM 0 0 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 0 1 0 0 1 1 0 0
vex 0 0 0 1 0 0 0 1 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 0 0
jade 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0
web 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
shieldUM 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0
KillerUM 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1
RazorUM 0 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 1 0 1 1 1 0 0 1 0 1 1 1 1 1 0 1
drinker 0 0 0 1 0 0 1 1 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0 1 1 0 0
shifter 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0 1 1 0 0
crawler 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 0
dancer 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0 1 1 0 0
bender 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0 1 1 0 0
weaverUM 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0
eater 1 1 1 0 1 1 0 1 0 1 1 0 1 0 1 1 0 1 1 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 0 1
widow 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0
maggot 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0
spawn 0 0 1 0 1 1 0 1 1 0 1 0 1 0 1 1 0 0 0 1 0 0 1 0 0 1 1 1 0 0 1 1 0 0 0 1
wight 0 1 1 0 1 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1
GrumbleUM 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
GrowlerUM 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0
SnarlUM 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
wolf 0 0 1 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0
crow 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 1 1 0 0
hawk 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 1 1 0 0
cloud 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 0 0
BangUM 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0
head 1 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1
skullUM 1 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1
browUM 1 1 1 0 0 1 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 1 1
eyeUM 1 1 1 0 1 1 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 1 1 0 1 1 0 0 1 1
maw 0 1 1 0 1 1 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 1 1 0 1 1 0 0 0 1
tongue 0 1 1 0 1 1 0 1 0 0 1 0 1 0 0 1 0 0 1 0 1 1 1 0 1 0 0 1 1 0 1 1 0 0 0 1
fangUM 0 0 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 0 0 1 0 0 0 0 1 1 0 1 1 1 1 0 1
hornUM 0 0 1 0 1 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0
thorn 0 0 1 0 1 0 1 1 0 1 0 1 1 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0
clawUM 0 0 1 1 1 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 1 1 1 0 0 0 1 1 1 0 1 1 0 0
fistUM 1 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 1 0 1 0 1 1 1 0
heartUM 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 1 0 1 0 1 1 0 0
shankUM 0 0 0 0 1 0 1 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
skinUM 0 1 0 0 1 0 0 1 0 0 0 0 1 1 0 1 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0
wingUM 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0
pox 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
fester 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
blister 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
pus 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
SlimeUM 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1
drool 0 1 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1
froth 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1
sludge 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
venom 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0
poison 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0
break 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
shard 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
flame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
maul 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1
thirstUM 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0
lust 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 0 0

17
txt/UniqueTitle.txt Normal file
View File

@ -0,0 +1,17 @@
Name Namco MonType1 MonType2 MonType3 MonType4 MonType5 MonType6 MonType7 MonType8 MonType9 MonType10 MonType11 MonType12 MonType13 MonType14 MonType15 MonType16 MonType17 MonType18 MonType19 MonType20 MonType21 MonType22 MonType23 MonType24 MonType25 MonType26 MonType27 MonType28 MonType29 MonType30 MonType31 MonType32 MonType33 MonType34 MonType35 MonType36
unused Judge 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Magistrate 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Count 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Earl 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Baron 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Duke 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Lord 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Overlord 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Warlord 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Chief 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Prince 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused King 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Mistress 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
unused Countess 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0
unused Duchess 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0
unused Lady 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0

16
txt/WeaponClass.txt Normal file
View File

@ -0,0 +1,16 @@
Weapon Class Code
None
Hand To Hand hth
Bow bow
1 Hand Swing 1hs
1 Hand Thrust 1ht
Staff stf
2 Hand Swing 2hs
2 Hand Thrust 2ht
Crossbow xbw
Left Jab Right Swing 1js
Left Jab Right Thrust 1jt
Left Swing Right Swing 1ss
Left Swing Right Thrust 1st
One Hand-to-Hand ht1
Two Hand-to-Hand ht2

308
txt/Weapons.txt Normal file
View File

@ -0,0 +1,308 @@
name type code alternateGfx version compactsave rarity spawnable mindam maxdam 1or2handed 2handed 2handmindam 2handmaxdam minmisdam maxmisdam rangeadder speed StrBonus DexBonus reqstr reqdex durability nodurability level levelreq cost gamble cost magic lvl auto prefix OpenBetaGfx normcode ubercode ultracode wclass 2handedwclass component hit class invwidth invheight stackable minstack maxstack spawnstack flippyfile invfile uniqueinvfile setinvfile hasinv gemsockets gemapplytype special useable sound unique transparent transtbl quivered lightradius belt quest missiletype durwarning qntwarning gemoffset bitfield1 CharsiMin CharsiMax CharsiMagicMin CharsiMagicMax CharsiMagicLvl GheedMin GheedMax GheedMagicMin GheedMagicMax GheedMagicLvl AkaraMin AkaraMax AkaraMagicMin AkaraMagicMax AkaraMagicLvl FaraMin FaraMax FaraMagicMin FaraMagicMax FaraMagicLvl LysanderMin LysanderMax LysanderMagicMin LysanderMagicMax LysanderMagicLvl DrognanMin DrognanMax DrognanMagicMin DrognanMagicMax DrognanMagicLvl HraltiMin HraltiMax HraltiMagicMin HraltiMagicMax HratliMagicLvl AlkorMin AlkorMax AlkorMagicMin AlkorMagicMax AlkorMagicLvl OrmusMin OrmusMax OrmusMagicMin OrmusMagicMax OrmusMagicLvl ElzixMin ElzixMax ElzixMagicMin ElzixMagicMax ElzixMagicLvl AshearaMin AshearaMax AshearaMagicMin AshearaMagicMax AshearaMagicLvl CainMin CainMax CainMagicMin CainMagicMax CainMagicLvl HalbuMin HalbuMax HalbuMagicMin HalbuMagicMax HalbuMagicLvl JamellaMin JamellaMax JamellaMagicMin JamellaMagicMax JamellaMagicLvl LarzukMin LarzukMax LarzukMagicMin LarzukMagicMax LarzukMagicLvl DrehyaMin DrehyaMax DrehyaMagicMin DrehyaMagicMax DrehyaMagicLvl MalahMin MalahMax MalahMagicMin MalahMagicMax MalahMagicLvl Source Art Game Art Transform InvTrans SkipName NightmareUpgrade HellUpgrade Nameable PermStoreItem
Hand Axe axe hax hax 0 1 1 3 6 100 28 3 0 170 4510 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 2 0 0 27 0 0 5 0 0 0 0 35 7 0 0 3 0 1 0 1 1 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 axe 2ax 1 0
Axe axe axe axe 0 1 1 4 11 1 10 100 32 24 7 0 403 8821 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 2ax mpi 1 0
Double Axe axe 2ax axe 0 1 1 5 13 1 10 100 43 24 13 0 873 20349 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 1 1 30 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 mpi wax 1 0
Military Pick axe mpi axe 0 2 1 7 11 1 -10 100 49 33 26 19 0 1421 38999 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 wax xxx 1 0
War Axe axe wax hax 0 2 1 10 18 2 100 67 26 25 0 2123 68075 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 3 20 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Large Axe axe lax lax 0 1 1 1 6 13 1 -10 100 35 30 6 0 354 7624 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 btx gax 1 0
Broad Axe axe bax lax 0 1 1 1 10 18 1 100 48 35 12 0 806 18172 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 gax gix 1 0
Battle Axe axe btx btx 0 1 1 1 12 32 1 10 100 54 40 17 0 1262 32454 lax btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx invbtxu invbtxu 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 gix xxx 1 0
Great Axe axe gax btx 0 2 1 1 9 30 2 -10 100 63 39 50 23 0 1916 58068 lax gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Giant Axe axe gix gix 0 4 1 1 22 45 3 10 100 70 50 27 0 2410 81070 lax gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 20 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 2 2 20 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Wand wand wnd wnd 0 2 1 2 4 100 15 2 0 205 3910 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd invwndu invwndu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 4 6 7 9 1 0 0 0 0 255 0 0 0 0 255 0 0 1 2 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 ywn bwn 1 0
Yew Wand wand ywn ywn 0 3 1 2 8 10 100 15 12 0 745 17440 wnd ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 3 5 5 9 1 0 0 0 0 255 0 0 0 0 255 2 3 2 3 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 bwn gwn 1 0
Bone Wand wand bwn bwn 0 4 1 3 7 -20 100 15 18 0 1296 34828 wnd bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 3 1 3 1 0 0 0 0 255 0 0 0 0 255 3 5 5 7 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 3 4 2 3 20 0 0 0 0 255 0 0 0 0 255 3 4 2 3 20 1 2 0 xxx xxx 1 0
Grim Wand wand gwn bwn 0 5 1 5 11 100 15 26 0 2098 70048 wnd gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 0 0 0 0 0 255 0 0 0 0 255 1 2 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 3 1 2 20 0 0 0 0 255 0 0 0 0 255 1 3 1 2 20 1 2 0 xxx xxx 1 0
Club club clb clb 0 1 1 1 6 -10 100 24 1 0 32 3032 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 mac mst 1 0
Scepter scep scp mac 0 1 1 6 11 100 25 50 3 0 350 5050 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 2 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 2 4 2 4 1 0 0 0 0 255 0 0 0 0 255 2 3 3 5 1 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 2 2 0 gsc wsp 1 0
Grand Scepter scep gsc mac 0 3 1 8 18 1 10 100 37 60 15 0 1109 26635 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 3 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 3 1 3 1 0 0 0 0 255 0 0 0 0 255 3 5 3 5 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 2 1 1 20 0 0 0 0 255 0 0 0 0 255 2 3 1 2 20 2 2 0 xxx wsp 1 0
War Scepter scep wsp whm 0 4 1 10 17 1 -10 100 55 70 21 0 2323 61783 mac wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 5 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 3 1 3 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 2 1 2 20 0 0 0 0 255 0 0 0 0 255 1 2 1 1 20 2 2 0 xxx xxx 1 0
Spiked Club club spc clb 0 1 1 5 8 1 100 36 4 0 225 5400 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 1 0 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 mac mst 1 0
Mace mace mac mac 0 1 1 3 10 100 27 60 8 0 463 10204 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 1 0 1 1 1 1 1 1 20 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 mst mau 1 0
Morning Star mace mst mac 0 1 1 7 16 1 10 100 36 72 13 0 844 19972 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx fla 1 0
Flail mace fla fla 0 1 1 1 24 2 -10 100 41 35 30 19 0 1412 38828 mac fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx gma 1 0
War Hammer hamm whm whm 0 4 1 19 29 20 110 53 55 25 0 2081 67025 mac whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 4 0 0 29 0 0 5 0 0 0 0 178 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 mau gma 1 0
Maul hamm mau mau 0 1 1 1 30 43 1 10 110 69 60 21 0 1670 48070 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau invmauu invmauu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx mau 1 0
Great Maul hamm gma mau 0 1 1 1 38 58 2 20 110 99 60 32 0 3215 121380 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma invgma invgma 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Short Sword swor ssd ssd 0 1 1 2 7 100 24 1 0 72 3072 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 0 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 scm wsd 1 0
Scimitar swor scm scm 0 1 1 2 6 -20 100 21 22 5 0 274 6370 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 sbr lsd 1 0
Saber swor sbr scm 0 1 1 3 8 -10 100 25 25 32 8 0 466 10228 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr inv9sbu inv9sbu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 flc bsd 1 0
Falchion swor flc flc 0 2 1 9 17 20 100 33 32 11 0 683 15513 scm flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc invflcu invflcu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 bsd wsd 1 0
Crystal Sword swor crs crs 0 4 1 5 15 1 100 43 20 11 0 2127 31397 ssd crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs invcrsu invcrsu 1 6 0 0 29 0 0 5 0 5 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 1 8 0 xxx xxx 1 0
Broad Sword swor bsd bsd 0 1 1 7 14 100 48 32 15 0 1029 25435 ssd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd invbsdu invbsdu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 lsd wsd 1 0
Long Sword swor lsd lsd 0 1 1 3 19 1 -10 100 55 39 44 20 0 1520 42900 ssd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd invlsdu invlsdu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 2 20 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 wsd wsd 1 0
War Sword swor wsd flc 0 1 1 8 20 1 100 71 45 44 27 0 1997 69919 ssd wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 3 20 0 0 0 0 255 1 1 1 3 20 0 0 0 0 255 0 0 1 2 20 1 2 0 xxx xxx 1 0
Two-Handed Sword swor 2hs clm 0 1 1 2 9 1 1 8 17 2 100 35 27 44 10 0 644 13940 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 3 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 clm gis 1 0
Claymore swor clm clm 0 2 1 5 12 1 1 13 30 2 10 100 47 50 17 0 1262 32454 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 gis bsw 1 0
Giant Sword swor gis gsd 0 2 1 3 16 1 1 9 28 2 100 56 34 50 21 0 1459 43639 clm gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 bsw flb 1 0
Bastard Sword swor bsw clm 0 1 1 7 19 1 1 20 28 1 10 100 62 40 24 0 1971 61804 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Flamberge swor flb clm 0 3 1 9 15 1 1 13 26 2 -10 100 70 49 50 27 0 2400 80800 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Great Sword swor gsd gsd 0 4 1 12 20 1 1 25 42 2 10 100 100 60 50 33 0 3451 132883 clm gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 3 20 0 0 0 0 255 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Dagger knif dgr dgr 0 1 1 1 4 -20 50 50 16 3 0 60 4180 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 kri bld 1 0
Dirk knif dir dir 0 1 1 3 9 50 50 25 20 9 0 532 11788 dgr dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 kri bld 1 0
Kriss knif kri dir 0 3 1 2 11 -20 50 50 45 24 17 0 1227 31859 dgr kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 3 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 2 20 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 1 2 0 xxx xxx 1 0
Blade knif bld dgr 0 3 1 4 15 -10 50 50 35 51 24 23 0 1764 54572 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld 1 2 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 2 20 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 1 2 0 xxx xxx 1 0
Throwing Knife tkni tkf dgr 0 1 1 2 3 4 9 50 50 21 4 2 0 6 3512 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 75 75 flptkn invtkn 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 1 2 0 0 255 1 2 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 2 2 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 1 2 0 bkf bkf 1 0
Throwing Axe taxe tax hax 0 1 1 4 7 8 12 10 50 50 40 6 7 0 11 6077 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 32 32 flptax invtax 0 primarily thrown 0 27 0 0 5 0 0 0 0 35 7 5 0 3 1 1 0 0 255 1 2 0 0 20 0 0 0 0 255 1 1 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 2 2 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 2 2 0 bal bal 1 0
Balanced Knife tkni bkf dgr 0 1 1 1 8 6 11 -20 50 50 51 8 13 0 15 9195 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 60 60 flpbkf invbkf 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 0 1 2 3 0 0 1 1 2 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 1 2 0 xxx xxx 1 0
Balanced Axe taxe bal hax 0 2 1 5 10 12 15 -10 50 50 57 10 16 0 35 11060 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 24 24 flpbal invbal 0 primarily thrown 0 29 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 0 1 2 3 0 0 1 1 2 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 2 2 0 xxx xxx 1 0
Javelin jave jav jav 0 1 1 1 5 6 14 2 -10 50 50 2 1 0 12 3012 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 60 60 flpjav invjav 0 primarily thrown 0 14 0 0 5 0 0 0 0 1 7 2 0 3 2 3 0 0 255 1 2 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 1 2 0 0 1 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 5 8 0 glv glv 1 0
Pilum jave pil pil 0 1 1 4 9 7 20 2 50 50 45 3 10 0 18 7680 jav pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 50 50 flppil invpil 0 primarily thrown 0 14 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 1 1 0 0 20 0 0 0 0 255 1 1 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 1 2 0 0 1 1 1 0 0 255 1 1 0 0 255 1 1 1 2 20 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 5 8 0 tsp tsp 1 0
Short Spear jave ssp jav 0 1 1 2 13 10 22 2 10 50 50 40 40 4 15 0 24 10360 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 40 40 flpssp invssp 0 primarily thrown 0 14 0 0 5 0 0 0 0 1 7 2 0 3 0 0 0 0 255 0 0 1 2 30 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 1 2 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 5 8 0 tsp tsp 1 0
Glaive jave glv glv 0 1 1 5 17 16 22 2 20 50 50 52 35 5 23 0 36 14828 jav glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 15 40 40 flpglv invglv 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 2 2 30 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 1 2 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 1 2 0 xxx xxx 1 0
Throwing Spear jave tsp pil 0 1 1 5 15 12 30 2 -10 50 50 65 6 29 0 48 18392 jav tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 0 primarily thrown 0 14 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 1 2 0 xxx xxx 1 0
Spear spea spr spr 0 1 1 1 3 15 3 -10 100 20 30 5 0 300 6500 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 3 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 spt pik 1 0
Trident spea tri tri 0 1 1 1 9 15 3 100 38 24 35 9 0 683 13147 spr tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 4 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 spt pik 1 0
Brandistock spea brn brn 0 1 1 1 7 17 4 -20 100 40 50 28 16 0 1162 29092 spr brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn 1 5 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx pik 1 0
Spetum spea spt tri 0 1 1 1 15 23 4 100 54 35 28 20 0 1672 45940 spr spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Pike spea pik pik 0 1 1 1 14 63 4 20 100 60 45 25 24 0 2023 63052 spr pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 30 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 255 0 1 0 0 255 1 1 1 2 20 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Bardiche pole bar hal 0 1 1 1 1 27 2 10 100 40 50 5 0 302 6510 hal bar 9b7 7b7 stf stf 5 2hsl 2 4 flpbar invbar 1 3 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 hal wsc 1 0
Voulge pole vou hal 0 1 1 1 6 21 2 100 50 50 11 0 611 14721 hal vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 4 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 hal wsc 1 0
Scythe pole scy scy 0 4 1 1 8 20 1 -10 100 41 41 65 15 0 848 22720 hal scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy invscyu invscyu 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 1 255 0 0 1 1 20 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 hal wsc 1 0
Poleaxe pole pax hal 0 1 1 1 18 39 3 10 100 62 65 21 0 1701 48721 hal pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Halberd pole hal pax 0 3 1 1 12 45 4 100 75 47 55 29 0 2706 95474 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
War Scythe pole wsc scy 0 3 1 1 15 36 4 -10 100 80 80 55 34 0 3388 134692 hal wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 2 20 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Short Staff staf sst bst 0 1 1 1 1 5 1 -10 100 20 1 0 168 3168 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 2 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 5 9 5 9 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 cst bst 1 0
Long Staff staf lst sst 0 1 1 1 2 8 1 100 30 8 0 463 10204 bst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 3 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 2 3 1 2 1 0 0 0 0 255 0 0 0 0 255 1 2 0 2 1 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 cst wst 1 0
Gnarled Staff staf cst cst 0 2 1 1 4 12 1 10 100 35 12 0 766 17692 bst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 3 5 5 9 1 0 0 0 0 255 0 0 0 0 255 2 3 2 5 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx wst 1 0
Battle Staff staf bst sst 0 2 1 1 6 13 1 100 40 17 0 1223 31791 bst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 3 1 3 1 0 0 0 0 255 0 0 0 0 255 2 3 2 5 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 3 1 3 20 0 0 0 0 255 0 0 0 0 255 2 3 1 4 20 5 8 0 xxx xxx 1 0
War Staff staf wst lst 0 3 1 1 12 28 1 20 100 50 24 0 1985 62140 bst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst 1 6 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 2 20 0 0 0 0 255 0 0 0 0 255 1 3 1 4 20 5 8 0 xxx xxx 1 0
Short Bow bow sbw sbw 0 1 1 1 1 4 5 100 15 20 1 1 0 100 3100 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 3 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 hbw cbw 1 0
Hunter's Bow bow hbw sbw 0 1 1 1 2 6 -10 100 28 32 1 5 0 350 6750 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 1 1 1 1 1 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 lbw sbb 1 0
Long Bow bow lbw lbw 0 1 1 1 3 10 100 22 19 28 1 8 0 490 10420 sbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 cbw lbb 1 0
Composite Bow bow cbw lbw 0 2 1 1 4 8 -10 100 25 35 36 1 12 0 727 17224 sbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 255 0 1 0 0 255 0 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 sbb swb 1 0
Short Battle Bow bow sbb sbb 0 2 1 1 5 11 100 30 40 40 1 18 0 1045 30310 sbw sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb invsbbu invsbbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 lbb lwb 1 0
Long Battle Bow bow lbb lbb 0 2 1 1 3 18 10 100 40 50 44 1 23 0 1545 49535 sbw lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 swb lwb 1 0
Short War Bow bow swb sbb 0 3 1 1 6 14 100 35 55 48 1 27 0 2500 83500 sbw swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 1 0 1 1 0 0 0 0 255 1 1 1 1 20 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 5 8 0 lwb xxx 1 0
Long War Bow bow lwb lbb 0 3 1 1 3 23 10 100 50 65 55 1 31 0 3575 128825 sbw lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Light Crossbow xbow lxb lxb 0 1 1 1 6 9 -10 100 21 27 30 1 6 0 803 10318 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb invlxbu invlxbu 1 3 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 mxb rxb 1 0
Crossbow xbow mxb lxb 0 1 1 1 9 16 100 40 33 40 1 15 0 2345 45175 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb invmxbu invmxbu 1 4 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 hxb hxb 1 0
Heavy Crossbow xbow hxb hxb 0 2 1 1 14 26 10 100 60 40 50 1 24 0 4096 112804 lxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 6 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 1 0 1 1 0 0 0 0 255 1 1 1 1 20 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Repeating Crossbow xbow rxb hxb 0 3 1 1 6 12 -40 100 40 50 40 1 33 0 2739 109387 lxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 5 0 fires 5 shots before reload 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Rancid Gas Potion tpot gps gpl 0 2 1 0 1 2 1 32 24 200 0 gpl gps 1ht 1ht 5 hth 1 1 1 3 25 6 flpgpl invgpl 0 0 22 0 0 5 0 1 0 0 49 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
Oil Potion tpot ops opl 0 2 1 0 1 2 1 28 20 150 0 opl ops 1ht 1ht 5 hth 1 1 1 3 25 6 flpopl invopl 0 0 22 0 0 5 0 1 0 0 46 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
Choking Gas Potion tpot gpm gps 0 3 1 0 1 2 1 20 16 120 0 gps gpm 1ht 1ht 5 hth 1 1 1 3 25 6 flpgps invgpm 0 0 22 0 0 5 0 1 0 0 48 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
Exploding Potion tpot opm opl 0 3 1 0 1 2 1 16 12 80 0 opl opm 1ht 1ht 5 hth 1 1 1 3 25 6 flpops invopm 0 0 22 0 0 5 0 1 0 0 45 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
Strangling Gas Potion tpot gpl gps 0 4 1 0 1 2 1 8 6 40 0 gps gpl 1ht 1ht 5 hth 1 1 1 3 25 6 flpgps invgps 0 0 22 0 0 5 0 1 0 0 47 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
Fulminating Potion tpot opl ops 0 4 1 0 1 2 1 4 0 24 0 ops opl 1ht 1ht 5 hth 1 1 1 3 25 6 flpops invops 0 0 22 0 0 5 0 1 0 0 44 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
decoy dagger knif d33 dgr 0 99 1 2 -20 100 15 20 10 0 0 666 0 dgr d33 1ht 1ht 5 1ht 1 2 flpd33 invd33 0 0 27 1 0 5 0 0 0 18 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0
Gidbinn knif g33 dgr 0 99 3 7 -20 100 15 25 30 0 0 666 0 dgr g33 1ht 1ht 5 1ht 1 2 flpg33 invg33 0 0 27 1 0 5 0 0 0 18 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0
Wirt's Leg club leg clb 0 1 2 8 -10 100 66 0 0 20 0 clb leg 1hs 1hs 5 1hsl 1 3 flpleg invleg 1 3 0 0 28 0 0 5 0 0 0 1 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Horadric Malus hamm hdm whm 0 0 6 15 20 100 15 15 55 0 0 600 0 whm hdm 1hs 1hs 5 1hsl 1 2 flphmr invhmr 0 0 29 1 0 5 0 0 0 4 0 7 0 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0
Hellforge Hammer hamm hfh whm 0 0 6 15 100 55 0 0 600 0 whm hfh 1hs 1hs 5 1hsl 2 3 flphmr invhfh 1 5 0 0 29 1 0 5 0 0 0 25 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 1 xxx xxx 0 0
Horadric Staff staf hst bst 0 2 1 12 20 2 100 30 50 0 0 1223 0 bst hst stf stf 5 staf 1 4 flphst invhst 0 magically charged 0 28 1 0 5 0 0 0 10 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 1 xxx xxx 0 0
Staff of the Kings staf msf bst 0 2 1 10 15 2 100 25 45 0 0 1223 0 bst msf stf stf 5 staf 1 3 flpmsf invmsf 0 magically charged 0 28 1 0 5 0 0 0 10 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 1 xxx xxx 0 0
Hatchet axe 9ha hax 0 1 1 10 21 100 25 25 28 31 19 810 43110 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 2 0 0 27 0 0 5 0 0 0 0 35 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Cleaver axe 9ax axe 0 1 1 10 33 1 10 100 68 24 34 22 1509 70806 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Twin Axe axe 92a axe 0 1 1 13 38 1 10 100 85 24 39 25 2919 135841 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Crowbill axe 9mp axe 0 2 1 14 34 1 -10 100 94 70 26 43 25 4563 220209 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Naga axe 9wa hax 0 2 1 16 45 2 100 121 26 48 25 6669 346612 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Military Axe axe 9la lax 0 1 1 1 14 34 1 -10 100 73 30 34 22 1362 65808 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Bearded Axe axe 9ba lax 0 1 1 1 21 49 1 100 92 35 38 25 2718 124784 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Tabar axe 9bt btx 0 1 1 1 24 77 1 10 100 101 40 42 25 4086 195112 btx btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx inv9btu inv9btu 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Gothic Axe axe 9ga btx 0 2 1 1 18 70 2 -10 100 115 79 50 46 25 6048 303708 btx gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Ancient Axe axe 9gi gix 0 4 1 1 43 85 3 10 100 125 50 51 25 7530 412030 gix gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix inv9giu inv9giu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Burnt Wand wand 9wn wnd 0 2 1 8 18 100 25 15 31 19 915 46365 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Petrified Wand wand 9yw ywn 0 3 1 8 24 10 100 25 15 38 25 2535 117830 ywn ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Tomb Wand wand 9bw bwn 0 4 1 10 22 -20 100 25 15 43 25 4188 204084 bwn bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Grave Wand wand 9gw bwn 0 5 1 13 29 100 25 15 49 25 6594 350106 bwn gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn inv9gwu inv9gwu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Cudgel club 9cl clb 0 1 1 6 21 -10 100 25 24 30 18 396 29380 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Rune Scepter scep 9sc mac 0 1 1 13 24 100 58 50 31 19 1350 59850 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 2 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Holy Water Sprinkler scep 9qs mac 0 3 1 14 36 1 10 100 76 60 40 25 3627 167580 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 3 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Divine Scepter scep 9ws whm 0 4 1 16 38 1 -10 100 103 70 45 25 7269 352105 whm wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 5 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Barbed Club club 9sp clb 0 1 1 13 25 1 100 30 36 32 20 975 49700 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Flanged Mace mace 9ma mac 0 1 1 15 23 100 61 60 35 23 1689 79115 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Jagged Star mace 9mt mac 0 1 1 20 31 1 10 100 74 72 39 25 2832 132448 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Knout mace 9fl fla 0 1 1 13 35 2 -10 100 82 73 30 43 25 4536 219048 fla fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Battle Hammer hamm 9wh whm 0 4 1 35 58 20 110 100 55 48 25 6543 340564 whm whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 4 0 0 29 0 0 5 0 0 0 0 178 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
War Club hamm 9m9 mau 0 1 1 1 53 78 1 10 110 124 60 45 25 5310 263950 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Martel de Fer hamm 9gm mau 0 1 1 1 61 99 2 20 110 169 60 53 25 9945 556085 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma inv9gmu inv9gmu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Gladius swor 9ss ssd 0 1 1 8 22 100 25 24 30 18 516 32980 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Cutlass swor 9sm scm 0 1 1 8 21 -30 100 25 52 22 43 25 1122 72246 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Shamshir swor 9sb scm 0 1 1 10 24 -10 100 58 58 32 35 23 1698 79430 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr invsbru invsbru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Tulwar swor 9fc flc 0 2 1 16 35 20 100 70 42 32 37 25 2349 107913 flc flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Dimensional Blade swor 9cr crs 0 4 1 13 35 1 100 85 60 20 37 25 6681 268197 crs crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs inv9cru inv9cru 1 6 0 0 29 0 0 5 0 5 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 8 0 xxx xxx 1 0
Battle Sword swor 9bs bsd 0 1 1 16 34 100 92 43 32 40 25 3387 157980 bsd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Rune Sword swor 9ls lsd 0 1 1 10 42 1 -10 100 103 79 44 44 25 4860 238340 lsd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd inv9lsu inv9lsu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Ancient Sword swor 9wd flc 0 1 1 18 43 1 100 127 88 44 49 25 6291 335259 flc wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Espadon swor 92h clm 0 1 1 8 26 1 1 18 40 2 100 73 61 44 37 25 2232 103584 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 3 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Dacian Falx swor 9cm clm 0 2 1 13 30 1 1 26 61 2 10 100 91 20 50 42 25 4086 195112 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Tusk Sword swor 9gs gsd 0 2 1 10 37 1 1 19 58 2 100 104 71 50 45 25 4677 235465 gsd gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Gothic Sword swor 9b9 clm 0 1 1 14 40 1 1 39 60 1 10 100 113 20 40 48 25 6213 324724 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Zweihander swor 9fb clm 0 3 1 19 35 1 1 29 54 2 -10 100 125 94 50 49 25 7500 394500 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb inv9fbu inv9fbu 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Executioner Sword swor 9gd gsd 0 4 1 24 40 1 1 47 80 2 10 100 170 110 50 54 25 10653 604762 gsd gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Poignard knif 9dg dgr 0 1 1 6 18 -20 50 50 25 16 31 19 480 32880 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Rondel knif 9di dir 0 1 1 10 26 50 50 25 58 20 36 24 1896 88756 dir dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Cinquedeas knif 9kr dir 0 3 1 15 31 -20 50 50 25 88 24 42 25 3981 190702 dir kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 3 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Stilleto knif 9bl dgr 0 3 1 19 36 -10 50 50 47 97 24 46 25 5592 282732 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld inv9blu inv9blu 1 2 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Battle Dart tkni 9tk dgr 0 1 1 8 16 11 24 50 50 25 52 6 31 19 80 20480 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 75 75 flptkn invtkn 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Francisca taxe 9ta hax 0 1 1 11 22 18 33 10 50 50 25 80 15 34 22 90 22560 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 32 32 flptax invtax 0 primarily thrown 0 27 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
War Dart tkni 9bk dgr 0 1 1 6 24 14 27 -20 50 50 25 97 20 39 25 100 25900 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 60 60 flpbkf invbkf 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Hurlbat taxe 9b8 hax 0 2 1 13 27 24 34 -10 50 50 25 106 16 41 25 110 27510 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 24 24 flpbal invbal 0 primarily thrown 0 29 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
War Javelin jave 9ja jav 0 1 1 6 19 14 32 2 -10 50 50 25 25 10 30 18 120 21100 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 60 60 flpjav invjav 0 primarily thrown 0 14 0 0 5 0 0 0 0 1 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Great Pilum jave 9pi pil 0 1 1 11 26 16 42 2 50 50 25 88 12 37 25 125 25625 pil pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 50 50 flppil invpil 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Simbilan jave 9s9 jav 0 1 1 8 32 27 50 2 10 50 50 80 80 14 40 25 135 27900 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 40 40 flpssp invssp 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Spiculum jave 9gl glv 0 1 1 13 38 32 60 2 20 50 50 98 73 16 46 25 145 32170 glv glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 8 20 20 flpglv invglv 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Harpoon jave 9ts pil 0 1 1 13 35 18 54 2 -10 50 50 25 118 18 51 25 150 35650 pil tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
War Spear spea 9sr spr 0 1 1 1 10 37 3 -10 100 25 25 30 33 21 1200 58600 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 3 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Fuscina spea 9tr tri 0 1 1 1 19 37 3 100 77 25 35 36 24 2349 105064 tri tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 4 0 2 square reach 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
War Fork spea 9br brn 0 1 1 1 16 40 4 -20 100 80 95 28 41 25 3786 178226 brn brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn inv9bru inv9bru 1 5 0 2 square reach 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Yari spea 9st tri 0 1 1 1 29 59 4 100 101 28 44 25 5316 258404 tri spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 6 0 2 square reach 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Lance spea 9p9 pik 0 1 1 1 27 114 4 20 100 110 88 25 47 25 6369 325343 pik pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 6 0 3 square reach 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Lochaber Axe pole 9b7 hal 0 1 1 1 6 58 2 10 100 80 50 33 21 1206 58798 hal bar 9b7 7b7 stf stf 5 2hsl 2 4 flpbar invbar 1 3 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Bill pole 9vo hal 0 1 1 1 14 53 2 100 95 50 37 25 2133 99921 pax vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 4 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Battle Scythe pole 9s8 scy 0 4 1 1 18 45 1 -10 100 82 82 65 40 25 2844 136260 scy scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy inv9s8u inv9s8u 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Partizan pole 9pa hal 0 1 1 1 34 75 3 10 100 113 67 65 35 23 5403 209105 pax pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Bec-de-Corbin pole 9h9 pax 0 3 1 1 13 85 4 100 133 91 55 51 25 8418 457318 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Grim Scythe pole 9wc scy 0 3 1 1 30 70 4 -10 100 140 140 55 55 25 10464 605520 scy wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Jo Staff staf 8ss bst 0 1 1 1 6 21 1 -10 100 25 20 30 18 804 41620 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 2 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Quarterstaff staf 8ls sst 0 1 1 1 8 26 1 100 25 30 35 23 1689 79115 sst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 3 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Cedar Staff staf 8cs cst 0 2 1 1 11 32 1 10 100 25 35 38 25 2598 120224 cst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Gothic Staff staf 8bs sst 0 2 1 1 14 34 1 100 25 40 42 25 3969 190198 sst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Rune Staff staf 8ws lst 0 3 1 1 24 58 1 20 100 25 50 47 25 6255 319985 lst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst inv8wsu inv8wsu 1 6 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Edge Bow bow 8sb sbw 0 1 1 1 6 19 5 100 25 43 20 1 30 18 600 35500 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 3 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Razor Bow bow 8hb sbw 0 1 1 1 8 22 -10 100 25 62 32 1 33 21 1350 63550 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Cedar Bow bow 8lb lbw 0 1 1 1 10 29 100 53 49 28 1 35 23 1770 81950 lbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw inv8lbu inv8lbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Double Bow bow 8cb lbw 0 2 1 1 11 26 -10 100 58 73 36 1 39 25 2481 118759 lbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Short Siege Bow bow 8s8 sbb 0 2 1 1 13 30 100 65 80 40 1 43 25 3435 171705 sbb sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb inv8s8u inv8s8u 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Long Siege Bow bow 8l8 lbb 0 2 1 1 10 42 10 100 80 95 44 1 46 25 4935 252510 lbb lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Rune Bow bow 8sw sbb 0 3 1 1 14 35 100 73 103 48 1 49 25 7800 409200 sbb swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Gothic Bow bow 8lw lbb 0 3 1 1 10 50 10 100 95 118 55 1 52 25 11025 601800 lbb lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Arbalest xbow 8lx lxb 0 1 1 1 14 27 -10 100 52 61 30 1 34 22 2709 111606 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb inv8lxu inv8lxu 1 3 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Siege Crossbow xbow 8mx lxb 0 1 1 1 20 42 100 80 70 40 1 40 25 7335 315900 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb inv8mxu inv8mxu 1 4 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Balista xbow 8hx hxb 0 2 1 1 33 55 10 100 110 80 50 1 47 25 12588 617636 hxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 6 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Chu-Ko-Nu xbow 8rx hxb 0 3 1 1 14 32 -60 100 80 95 40 1 54 25 8517 489418 hxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 5 0 fires 5 shots before reload 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
KhalimFlail mace qf1 fla 0 1 1 15 -10 100 41 35 30 0 0 1412 0 fla fla 1hs 1hs 5 1hsl 2 3 flpfla invqf1 1 3 0 0 29 1 0 5 0 0 0 17 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 1 xxx xxx 0 0
SuperKhalimFlail mace qf2 fla 0 1 1 15 -10 100 30 0 0 1412 0 fla fla 1hs 1hs 5 1hsl 2 3 flpfla invqf2 1 3 0 0 29 1 0 5 0 0 0 17 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 1 xxx xxx 0 0
Expansion 0
Katar h2h ktr ktr 100 2 1 4 7 -10 50 50 20 20 24 1 0 72 3072 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 2 0 1 1 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 wrb btl 1 0
Wrist Blade h2h wrb ktr 100 2 1 5 9 50 50 35 35 28 9 0 220 8980 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 0 1 1 0 0 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 axf skr 1 0
Hatchet Hands h2h axf axf 100 3 1 2 15 10 50 50 40 40 32 12 0 466 14092 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 ces clw 1 0
Cestus h2h ces axf 100 3 1 7 15 50 50 45 45 36 15 0 514 17710 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 clw btl 1 0
Claws h2h clw clw 100 4 1 8 15 -10 50 50 50 50 26 18 0 683 23794 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 btl xxx 1 0
Blade Talons h2h btl clw 100 4 1 10 14 -20 50 50 55 55 30 21 0 847 30787 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 1 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 1 2 0 xxx xxx 1 0
Scissors Katar h2h skr skr 100 5 1 9 17 -10 50 50 60 60 34 24 0 1029 39196 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 1 1 1 1 20 1 1 1 1 20 0 0 1 1 20 0 0 0 0 255 1 2 0 xxx xxx 1 0
Quhab h2h 9ar ktr 100 2 1 11 24 50 50 65 65 24 26 18 2334 75475 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Wrist Spike h2h 9wb ktr 100 2 1 13 27 -10 50 50 73 73 28 32 24 4203 151820 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Fascia h2h 9xf axf 100 3 1 8 37 10 50 50 80 80 32 34 26 4203 162402 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Hand Scythe h2h2 9cs axf 100 3 1 16 37 -10 50 50 88 88 36 36 28 2964 128070 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Greater Claws h2h2 9lw clw 100 4 1 18 37 -20 50 50 95 95 26 39 31 5061 216598 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Greater Talons h2h2 9tw clw 100 4 1 21 35 -30 50 50 103 103 30 41 33 9291 401483 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Scissors Quhab h2h2 9qr skr 100 5 1 19 40 50 50 110 110 34 43 35 14223 635589 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Suwayyah h2h2 7ar ktr 100 2 1 17 40 50 50 120 120 24 54 54 16205 909790 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Wrist Sword h2h2 7wb ktr 100 2 1 19 44 -10 50 50 123 117 28 59 59 16996 1031483 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
War Fist h2h2 7xf axf 100 3 1 13 56 10 50 50 126 122 32 61 61 15784 987682 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Battle Cestus h2h2 7cs axf 100 3 1 23 56 -10 50 50 113 129 36 62 62 15537 999800 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Feral Claws h2h2 7lw clw 100 4 1 25 56 -20 50 50 115 134 26 64 64 16035 1058673 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Runic Talons h2h2 7tw clw 100 4 1 29 54 -30 50 50 105 140 30 66 66 17396 1175806 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Scissors Suwayyah h2h2 7qr skr 100 5 1 27 59 50 50 130 123 34 67 67 18002 1246759 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Tomahawk axe 7ha hax 100 1 1 18 47 100 87 95 28 58 58 14033 849047 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 2 0 0 27 0 0 5 0 0 0 0 35 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Small Crescent axe 7ax axe 100 1 1 22 57 1 10 100 95 83 24 61 61 15781 987500 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Ettin Axe axe 72a axe 100 1 1 19 60 1 10 100 121 69 24 64 64 13496 901743 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
War Spike axe 7mp axe 100 2 1 13 46 1 -10 100 144 55 26 67 67 16108 1119388 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Berserker Axe axe 7wa hax 100 2 1 3 64 2 100 149 26 71 71 15957 1170947 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Feral Axe axe 7la lax 100 1 1 1 10 88 2 -15 100 165 45 30 61 61 17430 1087265 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Silver Edged Axe axe 7ba lax 100 1 1 1 39 87 2 100 130 87 35 64 64 18956 1237956 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Decapitator axe 7bt btx 100 1 1 1 40 107 2 10 100 175 40 67 67 16377 1124820 btx btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx invbtxu invbtxu 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Champion Axe axe 7ga btx 100 2 1 1 26 82 2 -10 100 143 65 50 70 70 19245 1374777 btx gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Glorious Axe axe 7gi gix 100 4 1 1 16 132 2 10 100 155 73 50 73 73 18431 1389195 gix gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Polished Wand wand 7wn wnd 100 2 1 18 33 100 35 61 15 58 58 9412 579874 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ghost Wand wand 7yw ywn 100 3 1 20 42 10 100 25 75 15 64 64 8786 592161 ywn ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Lich Wand wand 7bw bwn 100 4 1 9 31 -20 100 33 67 15 67 67 9208 655363 bwn bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Unearthed Wand wand 7gw bwn 100 5 1 22 28 100 42 56 15 72 72 7687 589917 bwn gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Truncheon club 7cl clb 100 1 1 14 45 -10 100 57 65 29 58 58 1488 116810 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Mighty Scepter scep 7sc mac 100 1 1 24 47 100 158 76 50 58 58 20199 1208216 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 2 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Seraph Rod scep 7qs mac 100 3 1 27 51 1 10 100 123 105 60 65 65 23501 1562565 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 3 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Caduceus scep 7ws whm 100 4 1 19 40 1 -10 100 117 117 70 69 69 22870 1609187 whm wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 5 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Tyrant Club club 7sp clb 100 1 1 13 52 1 100 103 52 45 59 59 6793 432787 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Reinforced Mace mace 7ma mac 100 1 1 22 43 100 112 62 60 61 61 14765 937481 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac inv7mas 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Devil Star mace 7mt mac 100 1 1 28 52 1 10 100 97 85 72 64 64 15674 1041679 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Scourge mace 7fl fla 100 1 1 3 57 2 -10 100 88 122 65 67 67 19532 1349652 fla fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Legendary Mallet hamm 7wh whm 100 4 1 46 53 20 110 145 65 71 71 14388 1059548 whm whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 4 0 0 29 0 0 5 0 0 0 0 178 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Ogre Maul hamm 7m7 mau 100 1 1 1 66 91 1 10 110 176 60 69 69 12156 872600 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Thunder Maul hamm 7gm mau 100 1 1 1 9 172 2 20 110 218 60 75 75 17821 1371994 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Falcata swor 7ss ssd 100 1 1 22 42 100 95 143 24 58 58 15680 932850 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Ataghan swor 7sm scm 100 1 1 8 38 -20 100 102 137 22 67 67 16103 1119051 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Elegant Blade swor 7sb scm 100 1 1 12 40 -10 100 105 134 32 61 61 22785 1428706 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr invsbru invsbru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Hydra Edge swor 7fc flc 100 2 1 24 63 20 100 112 119 32 63 63 18479 1193432 flc flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Phase Blade swor 7cr crs 100 4 1 24 27 1 -30 100 106 145 0 1 63 63 25680 1645295 crs crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs invcrsu invcrsu 1 6 0 0 29 0 0 5 0 5 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 8 0 xxx xxx 1 0
Conquest Sword swor 7bs bsd 100 1 1 18 47 100 130 88 32 65 65 19044 1272860 bsd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Cryptic Sword swor 7ls lsd 100 1 1 5 54 1 -10 100 125 110 44 68 68 14306 1009308 lsd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd invlsdu invlsdu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Mythical Sword swor 7wd flc 100 1 1 13 52 1 100 157 40 44 72 72 20187 1486792 flc wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Legend Sword swor 72h clm 100 1 1 20 38 1 1 40 66 2 -15 100 127 130 44 63 63 23789 1526634 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 3 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Highland Blade swor 7cm clm 100 2 1 23 47 1 1 47 78 2 -5 100 134 125 50 67 67 14391 992751 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Balrog Blade swor 7gs gsd 100 2 1 12 58 1 1 31 94 2 100 142 119 50 69 69 16331 1159631 gsd gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Champion Sword swor 7b7 clm 100 1 1 7 51 1 1 21 84 2 -10 100 156 107 40 71 71 19939 1453669 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Colossal Sword swor 7fb clm 100 3 1 18 64 1 1 46 98 2 10 100 170 91 50 72 72 24800 1817775 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Colossus Blade swor 7gd gsd 100 4 1 16 54 1 1 17 107 2 5 100 188 65 50 76 76 22259 1720804 gsd gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Bone Knife knif 7dg dgr 100 1 1 11 36 -20 50 50 65 75 16 58 58 12429 755614 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Mithral Point knif 7di dir 100 1 1 23 43 50 50 50 98 20 62 62 17988 1148756 dir dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Fanged Knife knif 7kr dir 100 3 1 4 49 -20 50 50 54 86 24 67 67 13729 948728 dir kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Legend Spike knif 7bl dgr 100 3 1 11 48 -10 50 50 76 67 24 70 70 16076 1154532 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Flying Knife tkni 7tk dgr 100 1 1 22 32 16 76 50 50 50 104 6 58 58 215 44148 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 75 75 flptkn invtkn 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Flying Axe taxe 7ta hax 100 1 1 17 49 25 85 10 50 50 50 129 15 61 61 230 46665 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 32 32 flptax invtax 0 primarily thrown 0 27 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
Winged Knife tkni 7bk dgr 100 1 1 5 33 3 67 -20 50 50 50 136 20 64 64 248 50559 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 60 60 flpbkf invbkf 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Winged Axe taxe 7b8 hax 100 2 1 3 40 7 68 -10 50 50 50 142 16 66 66 251 51878 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 24 24 flpbal invbal 0 primarily thrown 0 29 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Hyperion Javelin jave 7ja jav 100 1 1 19 26 27 50 2 -10 50 50 100 124 10 58 58 211 43382 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 60 60 flpjav invjav 0 primarily thrown 0 14 0 0 5 0 0 0 0 1 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Stygian Pilum jave 7pi pil 100 1 1 14 42 21 72 2 50 50 128 125 12 63 63 220 47680 pil pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 50 50 flppil invpil 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Balrog Spear jave 7s7 jav 100 1 1 12 50 20 82 2 10 50 50 133 116 14 65 65 232 50080 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 40 40 flpssp invssp 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ghost Glaive jave 7gl glv 100 1 1 19 64 50 75 2 20 50 50 55 156 16 70 70 241 53999 glv glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 8 20 20 flpglv invglv 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Winged Harpoon jave 7ts pil 100 1 1 21 29 18 67 2 -10 50 50 75 145 18 73 73 199 53701 pil tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Hyperion Spear spea 7sr spr 100 1 1 1 54 62 3 -10 100 155 120 30 60 60 15900 982400 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 3 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Stygian Pike spea 7tr tri 100 1 1 1 37 89 3 100 168 97 35 62 62 17347 1109014 tri tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 4 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Mancatcher spea 7br brn 100 1 1 1 26 80 4 -20 100 143 134 28 66 66 14658 999138 brn brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn 1 5 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ghost Spear spea 7st tri 100 1 1 1 40 85 4 100 122 163 28 68 68 17248 1209364 tri spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
War Pike spea 7p7 pik 100 1 1 1 54 106 4 20 100 165 105 25 70 70 16070 1166542 pik pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ogre Axe pole 7o7 hal 100 1 1 1 33 113 2 10 100 195 75 50 60 60 9871 622167 hal bar 9b7 7b7 stf stf 5 2hsl 2 4 flpbar invbar 1 3 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Colossus Voulge pole 7vo hal 100 1 1 1 7 119 2 100 210 55 50 63 63 12822 838455 pax vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 4 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Thresher pole 7s8 scy 100 4 1 1 16 91 1 -10 100 152 118 65 65 65 11086 755590 scy scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy invscyu invscyu 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Cryptic Axe pole 7pa hal 100 1 1 1 59 98 3 10 100 165 103 65 61 61 16509 1044301 pax pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Great Poleaxe pole 7h7 pax 100 3 1 1 19 107 4 100 179 99 55 73 73 21554 1617955 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Giant Thresher pole 7wc scy 100 3 1 1 20 97 4 -10 100 188 88 55 76 76 17692 1389640 scy wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
Walking Stick staf 6ss bst 100 1 1 1 45 52 1 -10 100 50 35 20 58 58 8154 500105 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 2 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 8 0 xxx xxx 1 0
Stalagmite staf 6ls sst 100 1 1 1 44 61 1 100 50 42 30 61 61 5367 361853 sst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 3 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Elder Staff staf 6cs cst 100 2 1 1 56 68 1 10 100 50 37 35 64 64 9048 608798 cst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Shillelah staf 6bs sst 100 2 1 1 23 83 1 100 50 48 40 67 67 7986 566819 sst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Archon Staff staf 6ws lst 100 3 1 1 66 77 1 20 100 50 32 50 70 70 10001 740195 lst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst 1 6 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Spider Bow bow 6sb sbw 100 1 1 1 21 49 5 100 67 188 20 1 58 58 21091 1243982 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 3 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Blade Bow bow 6hb sbw 100 1 1 1 14 43 -10 100 76 181 32 1 60 60 21350 1308037 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Shadow Bow bow 6lb lbw 100 1 1 1 13 58 100 82 195 28 1 61 61 25610 1601737 lbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Great Bow bow 6cb lbw 100 2 1 1 3 54 -10 100 89 165 36 1 64 64 17743 1174612 lbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Diamond Bow bow 6s7 sbb 100 2 1 1 33 38 100 77 172 40 1 67 67 24605 1690811 sbb sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb invsbbu invsbbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Crusader Bow bow 6l7 lbb 100 2 1 1 15 63 10 100 116 134 44 1 70 70 18105 1295547 lbb lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ward Bow bow 6sw sbb 100 3 1 1 18 53 100 107 143 48 1 72 72 15042 1117638 sbb swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Hydra Bow bow 6lw lbb 100 3 1 1 10 68 10 100 134 161 55 1 74 74 19375 1473250 lbb lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Pellet Bow xbow 6lx lxb 100 1 1 1 14 73 -10 100 82 155 30 1 61 61 19512 1213226 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb invlxbu invlxbu 1 3 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Gorgon Crossbow xbow 6mx lxb 100 1 1 1 15 87 100 116 103 40 1 65 65 22305 1484825 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb invmxbu invmxbu 1 4 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Colossus Crossbow xbow 6hx hxb 100 2 1 1 28 91 10 100 152 77 50 1 70 70 26065 1868691 hxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 6 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Demon Crossbow xbow 6rx hxb 100 3 1 1 23 30 -60 100 121 98 40 1 76 76 25851 1992000 hxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 5 0 fires 5 shots before reload 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Eagle Orb orb ob1 ob1 100 2 1 2 5 -10 100 20 1 0 168 3168 5 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 8 0 xxx xxx 1 0
Sacred Globe orb ob2 ob1 100 3 1 3 8 -10 100 30 8 0 463 10204 5 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Smoked Sphere orb ob3 ob3 100 3 1 4 10 100 35 12 9 766 17692 5 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Clasped Orb orb ob4 ob4 100 4 1 5 12 100 40 17 13 1223 31791 5 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Dragon Stone orb ob5 ob4 100 5 1 8 18 10 100 50 24 18 1985 62140 5 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Stag Bow abow am1 am1 100 3 1 1 7 13 100 35 55 48 1 18 14 2500 56500 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 8 0 xxx xxx 1 0
Reflex Bow abow am2 am2 100 3 1 1 5 22 10 100 50 65 55 1 24 18 3575 100300 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Maiden Spear aspe am3 am3 100 3 1 1 18 20 4 100 54 35 28 18 10 1672 41596 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Maiden Pike aspe am4 pik 100 3 1 1 23 55 4 10 100 60 45 25 24 18 2023 63052 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Maiden Javelin ajav am5 pil 100 3 1 6 14 5 24 2 -10 100 65 6 24 18 48 15652 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 0 primarily thrown 0 28 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Glowing Orb orb ob6 ob1 100 2 1 8 21 -10 100 20 20 20 26 18 804 36078 5 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Crystalline Globe orb ob7 ob1 100 3 1 10 26 -10 100 20 20 30 31 23 1689 70359 5 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Cloudy Sphere orb ob8 ob3 100 3 1 11 29 100 20 20 35 34 26 2598 107832 5 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Sparkling Ball orb ob9 ob4 100 4 1 13 32 100 20 20 40 38 30 3969 171204 5 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Swirling Crystal orb oba ob4 100 5 1 18 42 10 100 20 20 50 43 35 6255 292965 5 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ashwood Bow abow am6 am1 100 3 1 1 16 40 100 73 103 48 1 39 31 7800 322050 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ceremonial Bow abow am7 am2 100 3 1 1 13 50 10 100 95 118 55 1 43 35 11025 498075 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ceremonial Spear aspe am8 am3 100 3 1 1 34 45 4 100 101 73 28 39 31 5316 226416 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ceremonial Pike aspe am9 pik 100 3 1 1 42 101 4 20 100 110 88 25 43 35 6369 297867 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Ceremonial Javelin ajav ama pil 100 3 1 14 35 12 43 2 -10 100 118 6 43 35 444 43092 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 0 primarily thrown 0 28 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
Heavenly Stone orb obb ob1 100 2 1 18 46 -10 100 44 44 20 54 54 21051 1172988 5 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Eldritch Orb orb obc ob1 100 3 1 20 54 -10 100 44 44 30 58 58 19367 1159752 5 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Demon Heart orb obd ob3 100 3 1 23 59 100 44 44 35 61 61 22094 1369437 5 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Vortex Orb orb obe ob4 100 4 1 25 64 100 44 44 40 63 63 25207 1630074 5 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Dimensional Shard orb obf ob4 100 5 1 33 79 10 100 44 44 50 67 67 20065 1385496 5 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Matriarchal Bow abow amb am1 100 3 1 1 18 58 100 107 187 48 1 64 64 23700 1548275 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Grand Matron Bow abow amc am2 100 3 1 1 14 70 10 100 134 161 55 1 67 67 33375 2280593 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Matriarchal Spear aspe amd am3 100 3 1 1 45 87 4 100 141 145 28 64 64 16248 1072278 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
Matriarchal Pike aspe ame pik 100 3 1 1 61 116 4 20 100 152 125 25 67 67 19407 1341245 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
MatriarchalJavelin ajav amf pil 100 3 1 13 44 24 63 2 -10 100 107 161 6 67 67 302 56434 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 0 primarily thrown 0 28 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0

37
txt/automagic.txt Normal file
View File

@ -0,0 +1,37 @@
Name version spawnable rare level maxlevel levelreq class classlevelreq frequency group mod1code mod1param mod1min mod1max mod2code mod2param mod2min mod2max mod3code mod3param mod3min mod3max transform transformcolor itype1 itype2 itype3 itype4 itype5 itype6 itype7 etype1 etype2 etype3 divide multiply add
Fletcher's 100 1 1 1 15 3 300 skilltab 0 1 1 armo weap 0 0 0
Bowyer's 100 1 1 40 30 2 300 skilltab 0 2 2 armo weap 0 0 0
Archer's 100 1 60 45 1 300 skilltab 0 3 3 armo weap 0 0 0
Acrobat's 100 1 1 1 15 3 301 skilltab 1 1 1 armo weap 0 0 0
Gymnast's 100 1 1 40 30 2 301 skilltab 1 2 2 armo weap 0 0 0
Athlete's 100 1 60 45 1 301 skilltab 1 3 3 armo weap 0 0 0
Harpoonist's 100 1 1 1 15 3 302 skilltab 2 1 1 armo weap 0 0 0
Spearmaiden's 100 1 1 40 30 2 302 skilltab 2 2 2 armo weap 0 0 0
Lancer's 100 1 60 45 1 302 skilltab 2 3 3 armo weap 0 0 0
of the Jackal 100 1 1 1 3 6 303 hp 1 5 armo weap 0 0 0
of the Fox 100 1 1 11 8 5 303 hp 6 10 armo weap 0 0 0
of the Wolf 100 1 1 27 20 4 303 hp 11 20 armo weap 0 0 0
of the Tiger 100 1 1 43 35 3 303 hp 21 30 armo weap 0 0 0
of the Mammoth 100 1 1 59 51 2 303 hp 31 40 armo weap 0 0 0
of the Colossus 100 1 75 67 1 303 hp 41 60 armo weap 0 0 0
Lizard's 100 1 1 3 2 4 303 mana 1 5 armo weap 0 0 0
Snake's 100 1 1 12 9 3 303 mana 5 10 armo weap 0 0 0
Serpent's 100 1 1 23 16 2 303 mana 11 20 armo weap 0 0 0
Drake's 100 1 1 34 26 2 303 mana 21 30 1 cblu armo weap 0 0 0
Dragon's 100 1 1 45 37 1 303 mana 31 40 1 cblu armo weap 0 0 0
Wyrm's 100 1 1 56 48 1 303 mana 41 60 1 cblu armo weap 0 0 0
Great Wyrm's 100 1 67 59 1 303 mana 61 80 1 cblu armo weap 0 0 0
Shimmering 100 1 1 1 3 8 304 res-all 5 10 armo weap 0 0 0
Rainbow 100 1 1 18 13 7 304 res-all 8 15 armo weap 0 0 0
Scintillating 100 1 1 28 21 6 304 res-all 16 30 armo weap 0 0 0
Prismatic 100 1 1 39 31 5 304 res-all 25 35 armo weap 0 0 0
Chromatic 100 1 50 42 4 304 res-all 35 45 armo weap 0 0 0
Sharp 100 1 1 10 5 3 304 att 15 30 dmg% 10 20 armo weap 0 0 0
Fine 100 1 1 18 13 3 304 att 31 60 dmg% 21 30 armo weap 0 0 0
Warrior's 100 1 1 30 23 2 304 att 61 80 dmg% 31 40 armo weap 0 0 0
Soldier's 100 1 1 42 34 2 304 att 81 100 dmg% 41 50 armo weap 0 0 0
Knight's 100 1 1 50 42 2 304 att 101 121 dmg% 51 65 1 dgld armo weap 0 0 0
of Blight 100 1 1 1 3 3 305 pois-min 8 8 pois-max 24 24 pois-len 75 75 armo weap 0 0 0
of Venom 100 1 1 15 11 2 305 pois-min 16 16 pois-max 48 48 pois-len 75 75 armo weap 0 0 0
of Pestilence 100 1 1 25 18 2 305 pois-min 32 32 pois-max 72 72 pois-len 100 100 armo weap 0 0 0
of Anthrax 100 1 33 25 2 305 pois-min 64 64 pois-max 128 128 pois-len 100 100 armo weap 0 0 0

16
txt/belts.txt Normal file
View File

@ -0,0 +1,16 @@
name numboxes boxwidth boxheight box1left box1right box1top box1bottom box2left box2right box2top box2bottom box3left box3right box3top box3bottom box4left box4right box4top box4bottom box5left box5right box5top box5bottom box6left box6right box6top box6bottom box7left box7right box7top box7bottom box8left box8right box8top box8bottom box9left box9right box9top box9bottom box10left box10right box10top box10bottom box11left box11right box11top box11bottom box12left box12right box12top box12bottom box13left box13right box13top box13bottom box14left box14right box14top box14bottom box15left box15right box15top box15bottom box16left box16right box16top box16bottom
belt 12 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439 343 372 378 407 374 403 378 407 405 434 378 407 436 465 378 407
sash 8 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439
default 4 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471
girdle 16 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439 343 372 378 407 374 403 378 407 405 434 378 407 436 465 378 407 343 372 346 375 374 403 346 375 405 434 346 375 436 465 346 375
light belt 8 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439
heavy belt 12 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439 343 372 378 407 374 403 378 407 405 434 378 407 436 465 378 407
uber belt 16 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439 343 372 378 407 374 403 378 407 405 434 378 407 436 465 378 407 343 372 346 375 374 403 346 375 405 434 346 375 436 465 346 375
Expansion
belt2 12 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559 423 452 498 527 454 483 498 527 485 514 498 527 516 545 498 527
sash2 8 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559
default2 4 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591
girdle2 16 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559 423 452 498 527 454 483 498 527 485 514 498 527 516 545 498 527 423 452 466 495 454 483 466 495 485 514 466 495 516 545 466 495
light belt2 8 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559
heavy belt2 12 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559 423 452 498 527 454 483 498 527 485 514 498 527 516 545 498 527
uber belt 16 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559 423 452 498 527 454 483 498 527 485 514 498 527 516 545 498 527 423 452 466 495 454 483 466 495 485 514 466 495 516 545 466 495

12
txt/bodylocs.txt Normal file
View File

@ -0,0 +1,12 @@
Body Location Code
None
Head head
Neck neck
Torso tors
Right Arm rarm
Left Arm larm
Right Ring rrin
Left Ring lrin
Belt belt
Feet feet
Gloves glov

22
txt/colors.txt Normal file
View File

@ -0,0 +1,22 @@
Transform Color Code
White whit
Light Grey lgry
Dark Grey dgry
Black blac
Light Blue lblu
Dark Blue dblu
Crystal Blue cblu
Light Red lred
Dark Red dred
Crystal Red cred
Light Green lgrn
Dark Green dgrn
Crystal Green cgrn
Light Yellow lyel
Dark Yellow dyel
Light Gold lgld
Dark Gold dgld
Light Purple lpur
Dark Purple dpur
Orange oran
Bright White bwht

16
txt/cubetype.txt Normal file
View File

@ -0,0 +1,16 @@
cube item class Code
None
Health Potion hpt
Mana Potion mpt
Item itm
Axe axe
Sword swr
Spear spr
Gem gem
Staff stf
Belt blt
Dagger dag
Weapon wep
Armor arm
Ring rin
Amulet amu

127
txt/gamble.txt Normal file
View File

@ -0,0 +1,127 @@
name code
amulet amu
ring rin
Hand Axe hax
Axe axe
Double Axe 2ax
Military Pick mpi
War Axe wax
Large Axe lax
Broad Axe bax
Battle Axe btx
Great Axe gax
Giant Axe gix
Club clb
Spiked Club spc
Mace mac
Morning Star mst
Flail fla
War Hammer whm
Maul mau
Great Maul gma
Short Sword ssd
Scimitar scm
Saber sbr
Falchion flc
Crystal Sword crs
Broad Sword bsd
Long Sword lsd
War Sword wsd
Two-Handed Sword 2hs
Claymore clm
Giant Sword gis
Bastard Sword bsw
Flamberge flb
Great Sword gsd
Dagger dgr
Dirk dir
Kriss kri
Blade bld
Spear spr
Trident tri
Brandistock brn
Spetum spt
Pike pik
Bardiche bar
Voulge vou
Scythe scy
Poleaxe pax
Halberd hal
War Scythe wsc
Short Bow sbw
Hunter's Bow hbw
Long Bow lbw
Composite Bow cbw
Short Battle Bow sbb
Long Battle Bow lbb
Short War Bow swb
Long War Bow lwb
Light Crossbow lxb
Crossbow mxb
Heavy Crossbow hxb
Repeating Crossbow rxb
Cap/hat cap
Skull Cap skp
Helm hlm
Full Helm fhl
Great Helm ghm
Crown crn
Mask msk
Quilted Armor qui
Leather Armor lea
Hard Leather Armor hla
Studded Leather stu
Ring Mail rng
Scale Mail scl
Chain Mail chn
Breast Plate brs
Splint Mail spl
Plate Mail plt
Field Plate fld
Gothic Plate gth
Full Plate Mail ful
Ancient Armor aar
Light Plate ltp
Buckler buc
Small Shield sml
Large Shield lrg
Kite Shield kit
Tower Shield tow
Gothic Shield gts
Gloves(L) lgl
Heavy Gloves vgl
Bracers(M) mgl
Light Gauntlets tgl
Gaunlets(H) hgl
Leather Boots lbt
Heavy Boots vbt
Chain Boots mbt
Light Plate Boots tbt
Plate Boots hbt
Sash(L) lbl
Light Belt vbl
Belt(M) mbl
Heavy Belt tbl
Girdle(H) hbl
Bone Helm bhm
Bone Shield bsh
Spiked Shield spk
Expansion
Throwing Knife tkf
Throwing Axe tax
Balanced Knife bkf
Balanced Axe bal
Javelin jav
Pilum pil
Short Spear ssp
Glaive glv
Throwing Spear tsp
Katar ktr
Wrist Blade wrb
Axe Fist axf
Cestus ces
Claws clw
Blade Talons btl
Scissors Katar skr
Circlet ci0
Coronet ci1

10
txt/hiredesc.txt Normal file
View File

@ -0,0 +1,10 @@
Hireling Description Code
None
Fire Arrow farw
Cold Arrow carw
Combat comb
Defensive Auras def
Offensive Auras off
Fire Spells fire
Cold Spells cold
Lightning Spells ltng

5
txt/lowqualityitems.txt Normal file
View File

@ -0,0 +1,5 @@
Name
Crude
Cracked
Damaged
Low Quality

134
txt/objgroup.txt Normal file
View File

@ -0,0 +1,134 @@
GroupName Offset ID0 DENSITY0 PROB0 ID1 DENSITY1 PROB1 ID2 DENSITY2 PROB2 ID3 DENSITY3 PROB3 ID4 DENSITY4 PROB4 ID5 DENSITY5 PROB5 ID6 DENSITY6 PROB6 ID7 DENSITY7 PROB7 SHRINES WELLS
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Rogues for act1( including staked rogues) 1 54 30 25 55 30 25 56 30 25 57 30 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wells for forest 2 130 0 75 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
Indoor Chests 3 5 48 50 6 48 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Rogues for act1 w/o staked rogues 4 54 30 37 55 30 37 56 30 26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sewer shrines 5 279 0 25 280 0 25 281 0 25 282 0 25 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Cave Wells 6 138 0 25 275 0 25 276 0 25 277 0 25 0 0 0 0 0 0 0 0 0 0 0 0 1 1
Crypt caskets 7 3 125 75 28 125 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Crypt shrines 8 77 0 50 165 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Crypt Chests 9 5 48 20 6 48 20 240 30 20 241 30 20 242 30 20 0 0 0 0 0 0 0 0 0 0 0
Crypt Barrels 10 7 64 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Forgotten Tower caskets 11 3 125 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Forgotten Tower Shrines 12 77 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Forgotten Tower Barrels 13 7 64 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Indoor Shrine Act1 Set1 14 77 0 25 84 0 25 165 0 25 260 0 25 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Indoor Barrels 15 7 64 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Caskets Catacombs 16 79 80 33 53 80 33 1 80 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Indoor Well Act1 Set1 17 132 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Desert Outdoor Shrines Set1 18 86 0 12 134 0 12 135 0 12 136 0 12 150 0 13 151 0 13 172 0 13 173 0 13 1 0
Desert Tomb Shrines 19 85 0 20 166 0 20 150 0 20 151 0 20 322 0 20 0 0 0 0 0 0 0 0 0 1 1
not used 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
not used 21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Desert Indoor Shrines Set3 22 116 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Desert Outdoor Shrines Set3 23 86 0 34 85 0 34 166 0 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Desert Chests 24 87 30 20 88 30 20 148 30 20 146 30 20 147 30 20 0 0 0 0 0 0 0 0 0 0 0
maggot lair shrines 25 301 0 50 302 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
act 2 sewers 26 244 30 25 246 30 25 225 30 25 283 30 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Desert Obelisk 27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Obelisk Act1 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Desert Urns 29 4 120 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Desert Wells 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Jungle Wells 31 130 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Dead Guards 32 154 30 50 270 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
outsideforestobj1 33 139 30 25 140 30 50 144 30 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
outsideforestobj2 34 141 30 50 139 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
sand maggot lair 35 266 30 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
desertobjects2 36 178 30 50 171 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
desertobjects3 37 142 30 33 143 30 33 4 30 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
outside forest object 3 38 155 30 34 174 30 33 175 30 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
not used 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
act 3 jungle clickables #1 40 181 30 20 183 30 20 185 30 20 186 30 20 187 30 20 0 0 0 0 0 0 0 0 0 0 0
not used 41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
act 3 jungle clickables #2 42 188 30 20 187 30 20 186 30 20 208 30 20 272 30 20 0 0 0 0 0 0 0 0 0 0 0
jungle shrines 43 184 0 16 190 0 16 191 0 16 197 0 16 168 0 16 170 0 20 0 0 0 0 0 0 1 0
tristram objects 44 239 30 50 245 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
really rare objects in act1 act3 45 250 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
outer hell shrines 46 226 0 20 231 0 20 232 0 20 236 0 20 249 0 20 0 0 0 0 0 0 0 0 0 1 0
outer hell objects 47 222 30 16 225 30 16 233 0 16 363 30 16 372 30 16 380 30 20 0 0 0 0 0 0 0 0
inner hell objects 48 125 30 20 126 30 20 127 30 20 128 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0
inner hell shrines 49 93 0 20 96 0 20 97 0 20 123 0 20 124 0 20 0 0 0 0 0 0 0 0 0 1 0
act1 cathedral shrines 50 262 0 12 260 0 12 263 0 12 264 0 12 265 0 12 165 0 12 77 0 12 132 0 14 1 1
act1 jail shrines 51 263 0 12 260 0 12 263 0 12 264 0 12 265 0 12 165 0 12 77 0 12 132 0 14 1 1
jungle indoor clickables 52 188 30 20 187 30 20 186 30 20 208 30 20 271 30 20 0 0 0 0 0 0 0 0 0 0 0
arcane sanctuary clickables 53 387 30 20 388 30 20 389 30 20 390 30 20 391 30 20 0 0 0 0 0 0 0 0 0 0 0
not used 54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Harem Clickables 55 4 30 20 176 30 20 154 30 10 270 30 10 314 30 10 315 30 10 316 30 10 317 30 10 0 0
Harem Shrines 56 109 0 25 167 0 25 299 0 25 300 0 25 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Cellar Clickables 57 154 30 10 270 30 10 176 30 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Cellar Shrines 58 116 0 20 280 0 20 281 0 20 279 0 20 282 0 20 0 0 0 0 0 0 0 0 0 0 0
travisal objects 59 203 30 20 204 30 20 205 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
travisal objects2 60 181 30 20 183 30 20 208 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
travinsal shrine 61 199 0 20 200 0 20 201 0 20 206 0 20 202 0 20 0 0 0 0 0 0 0 0 0 0 0
act3 sewer shrine 62 325 0 16 197 0 16 191 0 16 278 0 16 120 0 16 184 0 16 0 0 0 0 0 0 1 0
not used 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
act3 sewer objects 64 181 30 20 183 30 20 185 30 20 187 30 20 186 30 20 0 0 0 0 0 0 0 0 0 0 0
act3 sewer objects 65 244 30 20 246 30 20 225 30 20 326 30 10 327 30 20 0 0 0 0 0 0 0 0 0 0 0
act 3dungeon shrines 66 325 0 50 361 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
act 3 dungeon objects 67 326 30 12 225 16 24 360 30 20 362 30 20 271 30 24 0 0 0 0 0 0 0 0 0 0 0
spider objects 68 333 30 20 334 30 20 335 30 20 336 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0
act 3 jungle clickables #3 69 0 0 0 169 30 20 185 30 20 271 30 20 326 30 10 0 0 0 0 0 0 0 0 0 0 0
act 3 sewer objects 70 208 30 20 209 30 20 271 30 20 225 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0
not used 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
not used 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
act 2 Harum bed 73 289 30 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
act ? mephisto clickables 74 329 30 20 330 30 20 331 30 20 332 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0
act 2 arcane sanctuary 75 319 0 25 320 0 25 303 0 25 133 0 25 0 0 0 0 0 0 0 0 0 0 0 0 1 0
act 3 kurasthealthshrine 76 343 0 50 344 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
act 4 outer hell guys 77 380 30 25 369 50 25 383 30 25 384 30 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0
indoor act 2 caskets 78 89 30 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 90 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 94 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
EXPANSION
level1 fire` 98 401 30 50 402 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
wildernessmagicshrines 99 414 30 20 439 30 20 421 30 20 427 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0
wildernesschests 100 413 30 20 420 30 20 424 30 20 425 30 20 477 30 20 0 0 0 0 0 0 0 0 0 0 0
wildernesschests2 101 430 30 20 431 30 20 454 30 20 540 30 20 438 30 20 0 0 0 0 0 0 0 0 0 0 0
oddobject 102 448 30 20 417 30 20 446 30 20 447 30 20 450 30 20 0 0 0 0 0 0 0 0 0 0 0
explodingbarrel 103 418 30 50 419 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
wildernessmana/health 104 422 30 50 423 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
wilderness well 105 426 30 50 419 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
wilderness jars 106 443 30 20 444 30 20 445 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
icecaveobjects 107 463 30 20 466 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
icecavehealth/mana 108 464 30 50 465 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
icecavejars 109 467 30 20 468 30 20 469 30 20 470 30 20 471 30 20 0 0 0 0 0 0 0 0 0 0 0
icecaveshrines 110 479 30 25 472 30 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
snowyobjects 111 501 30 20 502 30 20 500 30 20 432 30 20 433 30 20 0 0 0 0 0 0 0 0 0 0 0
snowyshrines 112 428 30 20 495 30 20 497 30 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
snowymana/health 113 491 30 50 492 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
snowywell 114 493 30 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
snowyobjects 115 504 30 25 505 30 25 506 30 25 507 30 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0
templeshrine 116 509 30 75 520 30 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
templewell 117 513 30 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
templeobjects 118 516 30 20 517 30 20 518 30 20 413 30 20 418 30 20 0 0 0 0 0 0 0 0 0 0 0
baalsmana/health 119 483 30 50 484 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
baalsobjects 120 485 30 20 486 30 20 487 30 20 524 30 15 525 30 15 526 30 10 0 0 0 0 0 0 0 0
baalsshrine 121 488 30 25 499 30 25 503 30 25 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
baalswell 122 498 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
icecavewell 123 519 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
templemana/health 124 521 30 50 522 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
templeobjects 125 444 30 20 445 30 20 443 30 20 424 30 20 425 30 20 0 0 0 0 0 0 0 0 0 0 0
redbaals_object 126 529 30 20 530 30 20 531 30 20 532 30 20 533 30 20 0 0 0 0 0 0 0 0 0 0 0
redbaals_object 127 534 30 20 535 30 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
temple_objects 128 541 30 35 544 30 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
everywhere 129 540 30 20 545 30 20 518 30 20 556 30 20 554 30 15 0 0 0 0 0 0 0 0 0 0 0
dummy 130 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
dummy 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

9
txt/qualityitems.txt Normal file
View File

@ -0,0 +1,9 @@
nummods mod1code mod1param mod1min mod1max mod2code mod2param mod2min mod2max ToHitMin ToHitMax Dam%Min Dam%Max AC%Min AC%Max Dur%Min Dur%Max effect1 effect2 armor weapon shield thrown scepter wand staff bow boots gloves belt level multiply add
1 att 0 1 3 0 1 3 0 0 0 0 0 0 improved to hit 0 1 0 1 1 1 1 1 0 0 0 1 2 100
1 dmg% 0 5 15 0 0 0 5 15 0 0 0 0 improved damage 0 1 0 1 1 1 1 1 0 0 0 1 3 250
1 ac% 0 5 15 0 0 0 0 0 5 15 0 0 improved armor class 1 0 1 0 0 0 0 0 1 1 1 1 2 200
2 att 0 1 3 dmg% 0 5 15 1 3 5 15 0 0 0 0 improved to hit improved damage 0 1 0 1 1 1 1 1 0 0 0 3 5 350
1 dur% 0 10 15 0 0 0 0 0 0 5 15 improved durability 1 1 1 1 1 1 1 1 1 1 1 1 2 100
2 att 0 1 3 dur% 0 10 15 1 3 0 0 0 0 5 15 improved to hit improved durability 0 1 0 1 1 1 1 1 0 0 0 3 5 350
2 dmg% 0 5 15 dur% 0 10 15 0 0 5 15 0 0 5 15 improved damage improved durability 0 1 0 1 1 1 1 1 0 0 0 3 5 350
2 ac% 0 5 15 dur% 0 10 15 0 0 0 0 5 15 5 15 improved armor class improved durability 1 0 1 0 0 0 0 0 1 1 1 3 5 350