Db generation working on linux/windows

This commit is contained in:
color.diff=auto 2021-03-24 09:37:21 -06:00
parent 688fb724af
commit f322f2067e
105 changed files with 99 additions and 47532 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
db db
txt/

2
.gitignore~ Normal file
View File

@ -0,0 +1,2 @@
db
txt/

View File

@ -20,16 +20,13 @@
along with D2UM. If not, see <http://www.gnu.org/licenses/>. along with D2UM. If not, see <http://www.gnu.org/licenses/>.
*/ */
ini_set('display_errors', 0); ini_set('display_errors', 1);
error_reporting(0); error_reporting(1);
ini_set('log_errors', 1); ini_set('log_errors', 1);
define('FILTER_PROPERTIES_FILE', 'filterProperties.txt'); define('FILTER_PROPERTIES_FILE', 'filterProperties.txt');
define('DB_FILE', 'db'); define('DB_FILE', 'db');
include "./_pdo.php";
$filename = 'd2im.conf'; $filename = 'd2im.conf';
if (file_exists($filename)) { if (file_exists($filename)) {
@ -42,16 +39,9 @@ if (file_exists($filename)) {
header('Location: /src/D2Config.php'); header('Location: /src/D2Config.php');
} }
// Misc functions
require_once "./src/D2Functions.php"; require_once "./src/D2Functions.php";
// D2 Database
require_once "./src/D2Database.php"; require_once "./src/D2Database.php";
// D2 Files Loader
require_once './src/D2Files.php'; require_once './src/D2Files.php';
// Txt Parser
require_once './src/D2TxtParser.php'; require_once './src/D2TxtParser.php';
// parse txt data // parse txt data

View File

@ -36,7 +36,12 @@ $(document).ready(function () {
x = $(this).find(':selected').text(); x = $(this).find(':selected').text();
y = document.getElementById('item'); y = document.getElementById('item');
y.value = x; y.value = x;
});
$(".btnconfig").click(function(){
$(".ctrl-config").hide();
$("#loading").show();
}); });
}); });

View File

@ -65,3 +65,7 @@ body {
h1,h2,h3,h4,h5,h6, div > p { h1,h2,h3,h4,h5,h6, div > p {
font-family: Exocet; font-family: Exocet;
} }
#loading {
margin-top: 40px;
font-family: lato !important;
}

4
sqlite.cmd Normal file
View File

@ -0,0 +1,4 @@
.separator "\t"
.import txt/Armor.txt armor
select * from armors;
.output armor.db

View File

@ -1,6 +1,6 @@
<?php <?php
/* /*
*
GPLv2 (C) <2021> <HashCasper> GPLv2 (C) <2021> <HashCasper>
This file is part of D2IM. This file is part of D2IM.
@ -20,8 +20,7 @@
*/ */
if (!empty($_POST)) { if (!empty($_POST)) {
// write the d2im.conf file and replace \ with \\
// write the d2um.conf file and replace \ with \\
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$path = rtrim($_POST['path'], "\\"); $path = rtrim($_POST['path'], "\\");
$path = str_replace("\\", "\\\\", $path); $path = str_replace("\\", "\\\\", $path);
@ -29,10 +28,10 @@ if (!empty($_POST)) {
file_put_contents("../d2im.conf", $path); file_put_contents("../d2im.conf", $path);
} else { } else {
file_put_contents("../d2im.conf", $_POST['path'].DIRECTORY_SEPARATOR); file_put_contents("../d2im.conf", $_POST['path'] . DIRECTORY_SEPARATOR);
} }
header('Location: /'); header('Location: /wait.php');
} }
?> ?>
<!doctype html> <!doctype html>
@ -50,13 +49,19 @@ if (!empty($_POST)) {
<p style="font-family: lato">Example: D:\Diablo II\MODS\you-mod-name\</p> <p style="font-family: lato">Example: D:\Diablo II\MODS\you-mod-name\</p>
<p style="font-family: lato">Input path to D2 Mod Directory.</p> <p style="font-family: lato">Input path to D2 Mod Directory.</p>
<div style="margin-top: 20px;"> <div style="margin-top: 20px;" class="ctrl-config">
<form enctype="multipart/form-data" style="font-family: Lato; font-size: 14pt;" action="" method="post"> <form enctype="multipart/form-data" style="font-family: Lato; font-size: 14pt;" action="" method="post">
<label for="path">Choose PATH</label> <label for="path">Choose PATH</label>
<input id="path" style="width: 420px;" required="required" name="path" type="text"> <input id="path" style="width: 420px;" required="required" name="path" type="text">
<input type="submit" value="Save" name="submit"> <input type="submit" value="Save" name="submit" class="btn-config">
</form> </form>
</div> </div>
<div id="loading" style="">
<p style="font-family: Lato;">After saving path, app will convert txt files to SQL database.</p>
<p style="font-family: Lato;">This may take a few minutes depending on the size of your txt files. <br>Please be patient. Once done, app will load. <br>Each time you set a new mod path, txt files will be processed.</p>
</div>
</div>
</body> </body>
</html> </html>

View File

@ -1,5 +1,5 @@
<?php <?php
include "../_pdo.php";
/* /*
GPLv2 (C) <2021> <HashCasper> GPLv2 (C) <2021> <HashCasper>
@ -66,7 +66,6 @@ class D2Database {
$sql = rtrim($sql, ","); $sql = rtrim($sql, ",");
$sql .= ");"; $sql .= ");";
var_dump($sql);
PDO_Execute($sql); PDO_Execute($sql);
} }
} }

View File

@ -29,7 +29,6 @@ class D2TxtParser {
public $db; public $db;
public function __construct() { public function __construct() {
$this->db = new D2Database();
} }
public function parseFile($file) { public function parseFile($file) {
@ -59,8 +58,6 @@ class D2TxtParser {
foreach ($rows as $row) { foreach ($rows as $row) {
$data[] = @array_combine($header, $row); $data[] = @array_combine($header, $row);
} }
$this->db->createTables($file, $data);
$this->db->fillsTables($file, $data);
return $data; return $data;
} }

4
tmp/tmp Normal file
View File

@ -0,0 +1,4 @@
.separator " "
.import txt/Armor.txt armor
select * from armors;
.output armor.db

View File

@ -1,235 +0,0 @@
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 -

View File

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

View File

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

View File

@ -1,204 +0,0 @@
name version compactsave rarity spawnable minac maxac absorbs speed reqstr block durability nodurability level levelreq cost gamble cost code namestr 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 type2 dropsound dropsfxframe usesound unique transparent transtbl quivered lightradius belt quest missiletype durwarning qntwarning mindam maxdam StrBonus DexBonus 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 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 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 10 0 1 0 0 0 cap cap cap cap cap xap uap 0 0 2 2 1 3 1 flpcap invcap invcapu invcapu 0 0 0 0 0 helm item_cap 12 item_cap 0 0 5 0 0 0 0 0 3 0 0 0 0 1 2 8 0 skp ghm 0 0 1
Skull Cap 0 0 4 1 8 11 0 0 15 0 14 0 5 0 0 0 skp skp skp skp skp xkp ukp 0 0 2 2 1 3 1 flpskp invskp 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 hlm crn 0 0 1
Helm 0 0 4 1 15 18 0 0 26 0 19 0 11 0 0 0 hlm hlm hlm hlm hlm xlm ulm 0 0 2 2 1 3 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 fhl ghm 0 0 1
Full Helm 0 0 4 1 23 26 0 0 41 0 24 0 15 0 0 0 fhl fhl fhl hlm fhl xhl uhl 0 0 2 2 1 3 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 8 0 ghm xxx 0 0 1
Great Helm 0 0 4 1 30 35 0 0 63 0 32 0 23 0 0 0 ghm ghm ghm hlm ghm xhm uhm 0 0 2 2 1 4 1 flpghm invghm 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 7 8 0 crn xxx 0 0 1
Crown 0 0 4 1 25 45 0 0 55 0 40 0 29 0 0 0 crn crn crn hlm crn xrn urn 0 0 2 2 1 4 1 flpcrn invcrn 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Mask 0 0 4 1 9 27 0 0 23 0 16 0 19 0 0 0 msk msk msk hlm msk xsk usk 0 0 2 2 1 4 1 flpmsk invmsk 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 1 2 0 xxx xxx 0 0 1
Quilted Armor 0 0 1 1 8 11 0 0 12 0 16 0 1 0 0 0 qui qui qlt qlt qui xui uui 0 1 2 3 1 3 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 7 8 0 lea gth 0 0 1
Leather Armor 0 0 2 1 14 17 0 0 15 0 19 0 3 0 0 0 lea lea lea lea lea xea uea 0 1 2 3 1 3 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 7 8 0 hla ful 0 0 1
Hard Leather Armor 0 0 3 1 21 24 0 0 20 0 22 0 5 0 0 0 hla hla hla hla hla xla ula 0 1 2 3 1 3 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 7 8 0 stu aar 0 0 1
Studded Leather 0 0 4 1 32 35 0 0 27 0 26 0 8 0 0 0 stu stu stu stu stu xtu utu 0 1 2 3 1 3 1 flpstu invstu 1 0 0 1 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 7 8 0 rng ltp 0 0 1
Ring Mail 0 0 4 1 45 48 0 5 36 0 21 0 11 0 0 0 rng rng 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 item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 7 8 0 scl chn 0 0 1
Scale Mail 0 0 4 1 57 60 0 10 44 0 29 0 13 0 0 0 scl scl scl scl scl xcl ucl 0 1 2 3 1 3 1 flpscl invscl 1 1 1 1 1 1 0 0 0 0 0 tors item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 7 8 0 chn brs 0 0 1
Chain Mail 0 0 4 1 72 75 0 5 48 0 36 0 15 0 0 0 chn chn chn chn chn xhn uhn 0 1 2 3 1 3 1 flpchn invchn 1 1 1 1 2 2 0 0 0 0 0 tors item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 7 8 0 brs spl 0 0 1
Breast Plate 0 0 4 1 65 68 1 0 30 0 40 0 18 0 0 0 brs brs 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 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 7 8 0 spl plt 0 0 1
Splint Mail 0 0 4 1 90 95 0 5 51 0 24 0 20 0 0 0 spl spl spl spl spl xpl upl 0 1 2 3 1 3 1 flpspl invspl 1 1 2 1 1 1 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 7 8 0 plt fld 0 0 1
Plate Mail 0 0 4 1 108 116 0 10 65 0 48 0 24 0 0 0 plt plt 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 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 fld xxx 0 0 1
Field Plate 0 0 4 1 101 105 2 5 55 0 38 0 28 0 0 0 fld fld fld fld fld xld uld 0 1 2 3 1 3 1 flpfld invfld 1 1 2 2 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 gth ful 0 0 1
Gothic Plate 0 0 4 1 128 135 0 5 70 0 44 0 32 0 0 0 gth gth gth gth gth xth uth 0 1 2 3 1 5 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 ful xxx 0 0 1
Full Plate Mail 0 0 4 1 150 161 2 10 80 0 56 0 37 0 0 0 ful ful ful ful ful xul uul 0 1 2 3 1 5 1 flpful invful invfulu invfulu 2 2 2 2 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 aar xxx 0 0 1
Ancient Armor 0 0 4 1 218 233 5 5 100 0 48 0 40 0 0 0 aar aar aar aar aar xar uar 0 1 2 3 1 5 1 flpaar invaar invaaru invaaru 1 2 2 2 2 0 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 ltp xxx 0 0 1
Light Plate 0 0 4 1 90 107 1 0 41 0 48 0 35 0 0 0 ltp ltp 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 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 7 8 0 buc xxx 0 0 1
Buckler 0 0 2 1 4 6 0 0 12 0 10 0 1 0 0 0 buc buc buc buc buc xuc uuc 0 7 2 2 1 2 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 1 0 1 3 100 0 3 8 8 0 sml tow 0 0 1
Small Shield 0 0 3 1 8 10 0 0 22 5 13 0 5 0 0 0 sml sml buc buc sml xml uml 0 7 2 2 1 3 2 flpsml invsml invsmlu invsmlu 0 0 0 0 0 shie item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 1 0 2 3 100 0 3 8 5 0 lrg kit 0 0 1
Large Shield 0 0 4 1 12 14 0 5 34 12 19 0 11 0 0 0 lrg lrg lrg buc lrg xrg urg 0 7 2 3 1 4 2 flplrg invlrg invlrgu invlrgu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 2 4 100 0 3 8 2 0 kit tow 0 0 1
Kite Shield 0 0 4 1 16 18 0 0 47 8 24 0 15 0 0 0 kit kit kit buc kit xit uit 0 7 2 3 1 4 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 2 5 100 0 3 8 2 0 tow gts 0 0 1
Tower Shield 0 0 4 1 22 25 1 10 75 24 48 0 22 0 0 0 tow tow tow buc tow xow uow 0 7 2 3 1 4 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 1 5 100 0 3 8 2 0 gts xxx 0 0 1
Gothic Shield 0 0 4 1 30 35 0 5 60 16 32 0 30 0 0 0 gts gts kit buc gts xts uts 0 7 2 4 1 4 2 flpgts invgts invgtsu invgtsu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 2 6 100 0 3 8 2 0 xxx xxx 0 0 1
Gloves(L) 0 0 1 1 2 3 0 0 0 0 10 0 3 0 0 0 lgl lgl lgl lgl lgl xlg ulg 0 16 2 2 1 4 0 flplgl invlgl 0 0 0 0 0 glov item_gloves 12 item_gloves 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 8 0 vgl hgl 0 0 1
Heavy Gloves 0 0 1 1 5 6 0 0 0 0 11 0 7 0 0 0 vgl vgl vgl vgl vgl xvg uvg 0 16 2 2 1 4 0 flpvgl invvgl 0 0 0 0 0 glov item_gloves 12 item_gloves 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 8 0 mgl tgl 0 0 1
Bracers(M) 0 0 2 1 8 9 0 0 25 0 13 0 12 0 0 0 mgl mgl mgl mgl mgl xmg umg 0 16 2 2 1 4 0 flpmgl invmgl 0 0 0 0 0 glov item_gloveschain 12 item_gloveschain 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 tgl hgl 0 0 1
Light Gauntlets 0 0 3 1 9 11 0 0 45 0 14 0 20 0 0 0 tgl tgl mgl mgl tgl xtg utg 0 16 2 2 1 4 0 flptgl invtgl 0 0 0 0 0 glov item_glovesmetal 12 item_glovesmetal 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Gaunlets(H) 0 0 4 1 12 15 0 0 60 0 19 0 27 0 0 0 hgl hgl hgl hgl hgl xhg uhg 0 16 2 2 1 4 0 flphgl invhgl 0 0 0 0 0 glov item_glovesmetal 12 item_glovesmetal 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Leather Boots 0 0 1 1 2 3 0 0 0 0 10 0 3 0 0 0 lbt lbt lbt lbt lbt xlb ulb 0 16 2 2 1 4 1 flplbt invlbt 0 0 0 0 0 boot item_boots 12 item_boots 0 0 5 0 0 0 0 0 6 0 3 8 120 0 1 0 8 0 vbt tbt 0 0 1
Heavy Boots 0 0 1 1 5 6 0 0 18 0 11 0 7 0 0 0 vbt vbt vbt vbt vbt xvb uvb 0 16 2 2 1 4 1 flpvbt invvbt 0 0 0 0 0 boot item_boots 12 item_boots 0 0 5 0 0 0 0 0 6 0 4 10 120 0 1 0 8 0 mbt tbt 0 0 1
Chain Boots 0 0 2 1 8 9 0 0 30 0 13 0 12 0 0 0 mbt mbt mbt mbt mbt xmb umb 0 16 2 2 1 4 1 flpmbt invmbt 0 0 0 0 0 boot item_bootschain 12 item_bootschain 0 0 5 0 0 0 0 0 6 0 6 12 120 0 3 0 8 0 tbt hbt 0 0 1
Light Plate Boots 0 0 3 1 9 11 0 0 50 0 14 0 20 0 0 0 tbt tbt mbt mbt tbt xtb utb 0 16 2 2 1 4 1 flptbt invtbt 0 0 0 0 0 boot item_bootsmetal 12 item_bootsmetal 0 0 5 0 0 0 0 0 6 0 8 16 120 0 3 0 8 0 xxx xxx 0 0 1
Plate Boots 0 0 4 1 12 15 0 0 70 0 19 0 27 0 0 0 hbt hbt hbt hbt hbt xhb uhb 0 16 2 2 1 4 1 flphbt invhbt 0 0 0 0 0 boot item_bootsmetal 12 item_bootsmetal 0 0 5 0 0 0 0 0 6 0 10 20 120 0 3 0 8 0 xxx xxx 0 0 1
Sash(L) 0 0 1 1 2 2 0 0 0 0 10 0 3 0 0 0 lbl lbl lbl lbl lbl zlb ulc 0 16 2 1 1 1 0 flplbl invlbl 0 0 0 0 0 belt item_lightarmor 12 item_lightarmor 0 0 5 0 0 1 0 0 4 0 0 0 0 1 0 8 0 vbl tbl 0 0 1
Light Belt 0 0 1 1 3 3 0 0 0 0 11 0 7 0 0 0 vbl vbl vbl vbl vbl zvb uvc 0 16 2 1 1 1 0 flpvbl invvbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 4 0 0 4 0 0 0 0 1 0 8 0 mbl hbl 0 0 1
Belt(M) 0 0 2 1 5 5 0 0 25 0 13 0 12 0 0 0 mbl mbl mbl mbl mbl zmb umc 0 16 2 1 1 1 0 flpmbl invmbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 0 0 0 4 0 0 0 0 1 0 8 0 tbl hbl 0 0 1
Heavy Belt 0 0 2 1 6 6 0 0 45 0 14 0 20 0 0 0 tbl tbl mbl mbl tbl ztb utc 0 16 2 1 1 1 0 flptbl invtbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 5 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Girdle(H) 0 0 3 1 8 11 0 0 60 0 19 0 27 0 0 0 hbl hbl hbl hbl hbl zhb uhc 0 16 2 1 1 1 0 flphbl invhbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 3 0 0 4 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Bone Helm 0 0 2 1 33 36 0 0 25 0 32 0 22 0 0 0 bhm bhm bhm hlm bhm xh9 uh9 0 0 2 2 1 3 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 2 0 0 0 3 0 0 0 0 1 7 8 0 xxx xxx 0 0 1
Bone Shield 0 0 2 1 10 30 0 0 25 20 32 0 19 0 0 0 bsh bsh bsh buc bsh xsh ush 0 7 2 3 1 3 2 flpbsh invbsh invbshu invbshu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 3 6 100 0 1 8 8 0 xxx xxx 0 0 1
Spiked Shield 0 0 3 1 15 25 0 0 30 10 32 0 11 0 0 0 spk spk spk buc spk xpk upk 0 7 2 3 1 3 2 flpspk invspk invspku invspku 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 5 9 100 0 1 8 8 0 xxx xxx 0 0 1
War Hat 0 0 1 1 45 53 0 0 20 0 10 0 34 22 0 0 xap xap cap cap cap xap uap 0 0 2 2 1 3 1 flpcap invcap 0 0 0 0 0 helm item_cap 12 item_cap 0 0 5 0 0 0 0 0 3 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Sallet 0 0 4 1 52 62 0 0 43 0 14 0 37 25 0 0 xkp xkp skp skp skp xkp ukp 0 0 2 2 1 3 1 flpskp invskp invxkpu invxkpu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Casque 0 0 4 1 63 72 0 0 59 0 19 0 42 25 0 0 xlm xlm hlm hlm hlm xlm ulm 0 0 2 2 1 3 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Basinet 0 0 4 1 75 84 0 0 82 0 24 0 45 25 0 0 xhl xhl fhl fhl fhl xhl uhl 0 0 2 2 1 3 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Winged Helm 0 0 4 1 85 98 0 0 115 0 32 0 51 25 0 0 xhm xhm ghm ghm ghm xhm uhm 0 0 2 2 1 4 1 flpghm invghm 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 7 8 0 xxx xxx 0 0 1
Grand Crown 0 0 4 1 78 113 0 0 103 0 40 0 55 25 0 0 xrn xrn crn crn crn xrn urn 0 0 2 2 1 4 1 flpcrn invcrn invxrnu invxrnu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Death Mask 0 0 4 1 54 86 0 0 55 0 16 0 48 25 0 0 xsk xsk msk msk msk xsk usk 0 0 2 2 1 4 1 flpmsk invmsk 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 1 2 0 xxx xxx 0 0 1
Ghost Armor 0 0 1 1 102 117 0 0 38 0 16 0 34 22 0 0 xui xui qlt qlt qui xui uui 0 1 2 3 1 3 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Serpentskin Armor 0 0 2 1 111 126 0 0 43 0 19 0 36 24 0 0 xea xea lea lea lea xea uea 0 1 2 3 1 3 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Demonhide Armor 0 0 3 1 122 136 0 0 50 0 22 0 37 25 0 0 xla xla hla hla hla xla ula 0 1 2 3 1 3 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Trellised Armor 0 0 4 1 138 153 0 0 61 0 26 0 40 25 0 0 xtu xtu stu stu stu xtu utu 0 1 2 3 1 3 1 flpstu invstu invxtuu invxtuu 1 0 0 1 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Linked Mail 0 0 4 1 158 172 0 5 74 0 21 0 42 25 0 0 xng xng 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 item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Tigulated Mail 0 0 4 1 176 190 0 10 86 0 29 0 43 25 0 0 xcl xcl 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 item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Mesh Armor 0 0 4 1 198 213 0 5 92 0 36 0 45 25 0 0 xhn xhn 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 item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Cuirass 0 0 4 1 188 202 1 0 65 0 40 0 47 25 0 0 xrs xrs brs brs brs xrs urs 0 1 2 3 1 4 1 flpbrs invbrs invxrss 0 0 2 0 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Russet Armor 0 0 4 1 225 243 0 5 97 0 24 0 49 25 0 0 xpl xpl 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 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Templar Coat 0 0 4 1 252 274 0 10 118 0 48 0 52 25 0 0 xlt xlt 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 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Sharktooth Armor 0 0 4 1 242 258 2 5 103 0 38 0 55 25 0 0 xld xld 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 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Embossed Plate 0 0 4 1 282 303 0 5 125 0 44 0 58 25 0 0 xth xth gth gth gth xth uth 0 1 2 3 1 5 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Chaos Armor 0 0 4 1 315 342 2 10 140 0 56 0 61 25 0 0 xul xul ful ful ful xul uul 0 1 2 3 1 5 1 flpful invful 2 2 2 2 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Ornate Armor 0 0 4 1 417 450 5 5 170 0 48 0 64 25 0 0 xar xar aar aar aar xar uar 0 1 2 3 1 5 1 flpaar invaar invxaru invxaru 1 2 2 2 2 0 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Mage Plate 0 0 4 1 225 261 1 0 55 0 48 0 60 25 0 0 xtp xtp 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 item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 7 8 0 xxx xxx 0 0 1
Defender 0 0 2 1 41 49 0 0 38 10 54 0 34 22 0 0 xuc xuc buc buc buc xuc uuc 0 7 2 2 1 2 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 1 0 8 12 100 0 3 8 8 0 xxx xxx 0 0 1
Round Shield 0 0 3 1 47 55 0 0 53 12 51 0 37 25 0 0 xml xml buc buc sml xml uml 0 7 2 2 1 3 2 flpsml invsml invxmlu invxmlu 0 0 0 0 0 shie item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 1 0 7 14 100 0 3 8 5 0 xxx xxx 0 0 1
Scutum 0 0 4 1 53 61 0 5 71 14 50 0 42 25 0 0 xrg xrg lrg lrg lrg xrg urg 0 7 2 3 1 4 2 flplrg invlrg invxrgu invxrgu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 11 15 100 0 3 8 2 0 xxx xxx 0 0 1
Dragon Shield 0 0 4 1 59 67 0 0 91 18 61 0 45 25 0 0 xit xit kit kit kit xit uit 0 7 2 3 1 4 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 15 24 100 0 3 8 2 0 xxx xxx 0 0 1
Pavise 0 0 4 1 68 78 1 10 133 24 58 0 50 25 0 0 xow xow tow tow tow xow uow 0 7 2 3 1 4 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 10 17 100 0 3 8 2 0 xxx xxx 0 0 1
Ancient Shield 0 0 4 1 80 93 0 5 110 16 64 0 56 25 0 0 xts xts kit kit gts xts uts 0 7 2 4 1 4 2 flpgts invgts invgtsu invgtsu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 12 16 100 0 3 8 2 0 xxx xxx 0 0 1
Demonhide Gloves 0 0 1 1 28 35 0 0 20 0 10 0 33 21 0 0 xlg xlg lgl lgl lgl xlg ulg 0 16 2 2 1 4 0 flplgl invlgl 0 0 0 0 0 glov item_gloves 12 item_gloves 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Sharkskin Gloves 0 0 1 1 33 39 0 0 20 0 11 0 39 25 0 0 xvg xvg vgl vgl vgl xvg uvg 0 16 2 2 1 4 0 flpvgl invvgl 0 0 0 0 0 glov item_gloves 12 item_gloves 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Heavy Bracers 0 0 2 1 37 44 0 0 58 0 13 0 43 25 0 0 xmg xmg mgl mgl mgl xmg umg 0 16 2 2 1 4 0 flpmgl invmgl 0 0 0 0 0 glov item_gloveschain 12 item_gloveschain 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Battle Gauntlets 0 0 3 1 39 47 0 0 88 0 14 0 49 25 0 0 xtg xtg mgl mgl tgl xtg utg 0 16 2 2 1 4 0 flptgl invtgl 0 0 0 0 0 glov item_glovesmetal 12 item_glovesmetal 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
War Gauntlets 0 0 4 1 43 53 0 0 110 0 19 0 54 25 0 0 xhg xhg hgl hgl hgl xhg uhg 0 16 2 2 1 4 0 flphgl invhgl 0 0 0 0 0 glov item_glovesmetal 12 item_glovesmetal 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Demonhide Boots 0 0 1 1 28 35 0 0 20 0 10 0 36 24 0 0 xlb xlb lbt lbt lbt xlb ulb 0 16 2 2 1 4 1 flplbt invlbt 0 0 0 0 0 boot item_boots 12 item_boots 0 0 5 0 0 0 0 0 6 0 26 46 120 0 1 0 8 0 xxx xxx 0 0 1
Sharkskin Boots 0 0 1 1 33 39 0 0 47 0 11 0 39 25 0 0 xvb xvb vbt vbt vbt xvb uvb 0 16 2 2 1 4 1 flpvbt invvbt 0 0 0 0 0 boot item_boots 12 item_boots 0 0 5 0 0 0 0 0 6 0 28 50 120 0 1 0 8 0 xxx xxx 0 0 1
Mesh Boots 0 0 2 1 37 44 0 0 65 0 13 0 43 25 0 0 xmb xmb mbt mbt mbt xmb umb 0 16 2 2 1 4 1 flpmbt invmbt 0 0 0 0 0 boot item_bootschain 12 item_bootschain 0 0 5 0 0 0 0 0 6 0 23 52 120 0 3 0 8 0 xxx xxx 0 0 1
Battle Boots 0 0 3 1 39 47 0 0 95 0 14 0 49 25 0 0 xtb xtb mbt mbt tbt xtb utb 0 16 2 2 1 4 1 flptbt invtbt 0 0 0 0 0 boot item_bootsmetal 12 item_bootsmetal 0 0 5 0 0 0 0 0 6 0 37 64 120 0 3 0 8 0 xxx xxx 0 0 1
War Boots 0 0 4 1 43 53 0 0 125 0 19 0 54 25 0 0 xhb xhb hbt hbt hbt xhb uhb 0 16 2 2 1 4 1 flphbt invhbt 0 0 0 0 0 boot item_bootsmetal 12 item_bootsmetal 0 0 5 0 0 0 0 0 6 0 39 80 120 0 3 0 8 0 xxx xxx 0 0 1
Demonhide Sash 0 0 1 1 29 34 0 0 20 0 10 0 36 24 0 0 zlb zlb lbl lbl lbl zlb ulc 0 16 2 1 1 1 0 flplbl invlbl 0 0 0 0 0 belt item_lightarmor 12 item_lightarmor 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Sharkskin Belt 0 0 1 1 31 36 0 0 20 0 11 0 39 25 0 0 zvb zvb vbl vbl vbl zvb uvc 0 16 2 1 1 1 0 flpvbl invvbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Mesh Belt 0 0 2 1 35 40 0 0 58 0 13 0 43 25 0 0 zmb zmb mbl mbl mbl zmb umc 0 16 2 1 1 1 0 flpmbl invmbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Battle Belt 0 0 2 1 37 42 0 0 88 0 14 0 49 25 0 0 ztb ztb mbl mbl tbl ztb utc 0 16 2 1 1 1 0 flptbl invtbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
War Belt 0 0 3 1 41 52 0 0 110 0 19 0 54 25 0 0 zhb zhb hbl hbl hbl zhb uhc 0 16 2 1 1 1 0 flphbl invhbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Grim Helm 0 0 2 1 60 125 0 0 58 0 32 0 50 25 0 0 xh9 xh9 bhm bhm bhm xh9 uh9 0 0 2 2 1 3 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 2 0 0 0 3 0 0 0 0 1 7 8 0 xxx xxx 0 0 1
Grim Shield 0 0 2 1 50 150 0 0 58 20 56 0 48 25 0 0 xsh xsh bsh bsh bsh xsh ush 0 7 2 3 1 3 2 flpbsh invbsh invxshu invxshu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 14 20 100 0 1 8 8 0 xxx xxx 0 0 1
Barbed Shield 0 0 3 1 58 78 0 0 65 17 44 0 42 25 0 0 xpk xpk spk spk spk xpk upk 0 7 2 3 1 3 2 flpspk invspk invxpku invxpku 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 18 35 100 0 1 8 8 0 xxx xxx 0 0 1
Expansion
Wolf Head 100 0 1 1 8 11 0 0 16 0 16 0 4 3 0 0 dr1 dr1 dr1 dr1 dr1 dr6 drb 0 0 2 2 1 4 1 flpdr1 invdr1 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Hawk Helm 100 0 1 1 4 15 0 0 20 0 16 0 8 6 0 0 dr2 dr2 dr4 dr4 dr2 dr7 drc 0 0 2 2 1 4 1 flpdr4 invdr2 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Antlers 100 0 1 1 18 24 0 0 24 0 16 0 16 12 0 0 dr3 dr3 dr3 dr3 dr3 dr8 drd 0 0 2 2 1 4 1 flpdr3 invdr3 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Falcon Mask 100 0 1 1 12 28 0 0 28 0 16 0 20 15 0 0 dr4 dr4 dr4 dr4 dr4 dr9 dre 0 0 2 2 1 4 1 flpdr4 invdr4 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Spirit Mask 100 0 1 1 22 35 0 0 30 0 16 0 24 18 0 0 dr5 dr5 dr1 dr1 dr5 dra drf 0 0 2 2 1 4 1 flpdr1 invdr5 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Jawbone Cap 100 0 2 1 10 15 0 0 25 0 20 0 4 3 0 0 ba1 ba1 ba1 dr1 ba1 ba6 bab 0 0 2 2 1 4 1 flpba1 invba1 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 5 8 0 xxx xxx 0 0 1
Fanged Helm 100 0 2 1 15 20 0 0 35 0 28 0 8 6 0 0 ba2 ba2 ba1 bhm ba2 ba7 bac 0 0 2 2 1 4 1 flpba1 invba2 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 5 8 0 xxx xxx 0 0 1
Horned Helm 100 0 2 1 25 30 0 0 45 0 36 0 16 12 0 0 ba3 ba3 ba3 bhm ba3 ba8 bad 0 0 2 2 1 4 1 flpba3 invba3 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 8 0 xxx xxx 0 0 1
Assault Helmet 100 0 2 1 30 35 0 0 55 0 40 0 20 15 0 0 ba4 ba4 ba5 bhm ba4 ba9 bae 0 0 2 2 1 4 1 flpba5 invba4 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 8 0 xxx xxx 0 0 1
Avenger Guard 100 0 2 1 35 50 0 0 65 0 44 0 24 18 0 0 ba5 ba5 ba5 bhm ba5 baa baf 0 0 2 2 1 4 1 flpba5 invba5 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 8 0 xxx xxx 0 0 1
Targe 100 0 2 1 8 12 0 0 16 10 16 0 4 3 0 0 pa1 pa1 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 5 2 flppa1 invpa1 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 1 0 0 0 1 0 2 6 100 0 3 0 0 0 xxx xxx 0 0 1
Rondache 100 0 2 1 10 18 0 0 26 15 24 0 8 6 0 0 pa2 pa2 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 5 2 flppa1 invpa2 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 2 0 0 0 1 0 2 8 100 0 3 0 0 0 xxx xxx 0 0 1
Heraldic Shield 100 0 2 1 16 26 0 0 40 20 32 0 16 12 0 0 pa3 pa3 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 5 2 flppa3 invpa3 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 3 0 0 0 1 0 3 9 100 0 3 0 0 0 xxx xxx 0 0 1
Aerin Shield 100 0 2 1 26 36 0 0 50 22 40 0 20 15 0 0 pa4 pa4 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 5 2 flppa3 invpa4 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 4 0 0 0 1 0 4 10 100 0 3 0 0 0 xxx xxx 0 0 1
Crown Shield 100 0 2 1 30 40 0 0 65 25 48 0 24 18 0 0 pa5 pa5 304 pa5 spk pa5 paa paf 0 7 2 2 1 5 2 flppa5 invpa5 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 5 0 0 0 1 0 4 12 100 0 3 0 0 0 xxx xxx 0 0 1
Preserved Head 100 0 1 1 2 5 0 0 12 3 16 0 4 3 0 0 ne1 ne1 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 3 2 flpne1 invne1 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Zombie Head 100 0 1 1 4 8 0 0 14 5 16 0 8 6 0 0 ne2 ne2 305 ne2 bhm ne2 ne7 neg 0 10 2 2 1 3 2 flpne2 invne2 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Unraveller Head 100 0 1 1 6 10 0 0 18 8 16 0 16 12 0 0 ne3 ne3 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 3 2 flpne3 invne3 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Gargoyle Head 100 0 1 1 10 16 0 0 20 10 16 0 20 15 0 0 ne4 ne4 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 3 2 flpne3 invne4 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Demon Head 100 0 1 1 15 20 0 0 25 12 16 0 24 18 0 0 ne5 ne5 305 ne2 bhm ne5 nea nef 0 10 2 2 1 3 2 flpne2 invne5 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Circlet 100 0 1 1 20 30 0 0 0 0 28 0 24 16 0 0 ci0 ci0 3 lit lit ci0 0 0 2 2 1 3 1 flpci0 invci0 0 0 0 0 0 circ item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 1 2 0 xxx xxx 0 0 1
Coronet 100 0 1 1 30 40 0 0 0 0 24 0 52 39 0 0 ci1 ci1 8 lit lit ci1 ci2 ci3 0 0 2 2 1 3 1 flpci1 invci1 0 0 0 0 0 circ item_helm 12 item_helm 0 0 5 0 1 0 0 0 3 0 0 0 0 3 1 2 0 xxx xxx 0 0 1
Tiara 100 0 1 1 40 50 0 0 0 0 20 0 70 52 0 0 ci2 ci2 13 lit lit ci1 ci2 ci3 0 0 2 2 1 4 1 flpci1 invci2 0 0 0 0 0 circ item_helm 12 item_helm 0 0 5 0 2 0 0 0 3 0 0 0 0 3 1 2 0 xxx xxx 0 0 1
Diadem 100 0 1 1 50 60 0 0 0 0 16 0 85 64 0 0 ci3 ci3 18 lit lit ci1 ci2 ci3 0 0 2 2 1 4 1 flpci2 invci3 0 0 0 0 0 circ item_helm 12 item_helm 0 0 5 0 3 0 0 0 3 0 0 0 0 3 1 2 0 xxx xxx 0 0 1
Shako 100 0 1 1 98 141 0 0 50 0 10 0 58 43 0 0 uap uap cap cap cap xap uap 0 0 2 2 1 3 1 flpcap invcap 0 0 0 0 0 helm item_cap 12 item_cap 0 0 5 0 0 0 0 0 3 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Hydraskull 100 0 4 1 101 145 0 0 84 0 14 0 63 47 0 0 ukp ukp skp skp skp xkp ukp 0 0 2 2 1 3 1 flpskp invskp 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Armet 100 0 4 1 105 149 0 0 109 0 19 0 68 51 0 0 ulm ulm hlm hlm hlm xlm ulm 0 0 2 2 1 3 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Giant Conch 100 0 4 1 110 154 0 0 142 0 24 0 54 40 0 0 uhl uhl fhl fhl fhl xhl uhl 0 0 2 2 1 3 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Spired Helm 100 0 4 1 114 159 0 0 192 0 32 0 79 59 0 0 uhm uhm ghm ghm ghm xhm uhm 0 0 2 2 1 4 1 flpghm invghm invuhms 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 7 8 0 xxx xxx 0 0 1
Corona 100 0 4 1 111 165 0 0 174 0 40 0 85 66 0 0 urn urn crn crn crn xrn urn 0 0 2 2 1 4 1 flpcrn invcrn 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Demonhead 100 0 4 1 101 154 0 0 102 0 16 0 74 55 0 0 usk usk msk msk msk xsk usk 0 0 2 2 1 4 1 flpmsk invmsk 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 1 2 0 xxx xxx 0 0 1
Dusk Shroud 100 0 1 1 361 467 0 0 77 0 16 0 65 49 0 0 uui uui qlt qlt qui xui uui 0 1 2 3 1 5 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Wyrmhide 100 0 2 1 364 470 0 0 84 0 19 0 67 50 0 0 uea uea lea lea lea xea uea 0 1 2 3 1 5 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Scarab Husk 100 0 3 1 369 474 0 0 95 0 22 0 68 51 0 0 ula ula hla hla hla xla ula 0 1 2 3 1 5 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Wire Fleece 100 0 4 1 375 481 0 0 111 0 26 0 70 53 0 0 utu utu stu stu stu xtu utu 0 1 2 3 1 5 1 flpstu invstu 1 0 0 1 1 1 0 0 0 0 0 tors item_lightarmor 12 item_lightarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 1 2 8 0 xxx xxx 0 0 1
Diamond Mail 100 0 4 1 383 489 0 5 131 0 21 0 72 54 0 0 ung ung rng rng rng xng ung 0 1 2 3 1 5 1 flprng invrng 0 0 1 1 1 1 0 0 0 0 0 tors item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Loricated Mail 100 0 4 1 390 496 0 10 149 0 29 0 73 55 0 0 ucl ucl scl scl scl xcl ucl 0 1 2 3 1 5 1 flpscl invscl 1 1 1 1 1 1 0 0 0 0 0 tors item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Boneweave 100 0 4 1 399 505 0 5 158 0 36 0 62 47 0 0 uhn uhn chn chn chn xhn uhn 0 1 2 3 1 5 1 flpchn invchn 1 1 1 1 2 2 0 0 0 0 0 tors item_chainarmor 12 item_chainarmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Great Hauberk 100 0 4 1 395 501 1 0 118 0 40 0 75 56 0 0 urs urs brs brs brs xrs urs 0 1 2 3 1 5 1 flpbrs invbrs 0 0 2 0 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Balrog Skin 100 0 4 1 410 517 0 5 165 0 24 0 76 57 0 0 upl upl spl spl spl xpl upl 0 1 2 3 1 5 1 flpspl invspl 1 1 2 1 1 1 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 2 8 0 xxx xxx 0 0 1
Hellforged Plate 100 0 4 1 421 530 0 10 196 0 48 0 78 59 0 0 ult ult plt plt plt xlt ult 0 1 2 3 1 5 1 flpplt invplt 2 2 2 2 1 1 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Kraken Shell 100 0 4 1 417 523 2 5 174 0 38 0 81 61 0 0 uld uld fld fld fld xld uld 0 1 2 3 1 5 1 flpfld invfld 1 1 2 2 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Lacquered Plate 100 0 4 1 433 541 0 5 208 0 44 0 82 62 0 0 uth uth gth gth gth xth uth 0 1 2 3 1 5 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Shadow Plate 100 0 4 1 446 557 2 10 230 0 56 0 83 64 0 0 uul uul ful ful ful xul uul 0 1 2 3 1 5 1 flpful invful 2 2 2 2 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Sacred Armor 100 0 4 1 487 600 5 5 232 0 48 0 85 66 0 0 uar uar aar aar aar xar uar 0 1 2 3 1 5 1 flpaar invaar invaaru invaaru 1 2 2 2 2 0 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 8 8 0 xxx xxx 0 0 1
Archon Plate 100 0 4 1 410 524 1 0 103 0 48 0 84 63 0 0 utp utp ltp ltp ltp xtp utp 0 1 2 3 1 5 1 flpltp invltp 2 0 1 1 2 2 0 0 0 0 0 tors item_platearmor 12 item_platearmor 0 0 5 0 0 0 0 0 2 0 0 0 0 3 7 8 0 xxx xxx 0 0 1
Heater 100 0 2 1 95 110 0 0 77 22 70 0 58 43 0 0 uuc uuc buc buc buc xuc uuc 0 7 2 2 1 3 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 1 0 16 30 100 0 3 8 8 0 xxx xxx 0 0 1
Luna 100 0 3 1 108 123 0 0 100 20 67 0 61 45 0 0 uml uml buc buc sml xml uml 0 7 2 2 1 3 2 flpsml invsml invsmlu invsmlu 0 0 0 0 0 shie item_woodshield 12 item_woodshield 0 0 5 0 0 0 0 0 1 0 17 29 100 0 3 8 5 0 xxx xxx 0 0 1
Hyperion 100 0 4 1 119 135 0 5 127 24 66 0 64 48 0 0 urg urg lrg lrg lrg xrg urg 0 7 2 3 1 4 2 flplrg invlrg invlrgu invlrgu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 14 32 100 0 3 8 2 0 xxx xxx 0 0 1
Monarch 100 0 4 1 133 148 0 0 156 22 69 0 72 54 0 0 uit uit kit kit kit xit uit 0 7 2 3 1 5 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 12 34 100 0 3 8 2 0 xxx xxx 0 0 1
Aegis 100 0 4 1 145 161 1 10 219 24 74 0 79 59 0 0 uow uow tow tow tow xow uow 0 7 2 3 1 5 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 18 28 100 0 3 8 2 0 xxx xxx 0 0 1
Ward 100 0 4 1 153 170 0 5 185 24 80 0 84 63 0 0 uts uts kit kit gts xts uts 0 7 2 4 1 5 2 flpgts invgts invgtsu invutss 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 11 35 100 0 3 8 2 0 xxx xxx 0 0 1
Bramble Mitts 100 0 1 1 54 62 0 0 50 0 10 0 57 42 0 0 ulg ulg lgl lgl lgl xlg ulg 0 16 2 2 1 4 0 flplgl invlgl 0 0 0 0 0 glov item_gloves 12 item_gloves 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Vampirebone Gloves 100 0 1 1 56 65 0 0 50 0 11 0 63 47 0 0 uvg uvg vgl vgl vgl xvg uvg 0 16 2 2 1 4 0 flpvgl invvgl 0 0 0 0 0 glov item_gloves 12 item_gloves 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Vambraces 100 0 2 1 59 67 0 0 106 0 13 0 69 51 0 0 umg umg mgl mgl mgl xmg umg 0 16 2 2 1 4 0 flpmgl invmgl 0 0 0 0 0 glov item_gloveschain 12 item_gloveschain 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Crusader Gauntlets 100 0 3 1 59 68 0 0 151 0 14 0 76 57 0 0 utg utg mgl mgl tgl xtg utg 0 16 2 2 1 4 0 flptgl invtgl 0 0 0 0 0 glov item_glovesmetal 12 item_glovesmetal 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Ogre Gauntlets 100 0 4 1 62 71 0 0 185 0 19 0 85 64 0 0 uhg uhg hgl hgl hgl xhg uhg 0 16 2 2 1 4 0 flphgl invhgl 0 0 0 0 0 glov item_glovesmetal 12 item_glovesmetal 0 0 5 0 0 0 0 0 5 0 0 0 0 3 0 8 0 xxx xxx 0 0 1
Wyrmhide Boots 100 0 1 1 54 62 0 0 50 0 10 0 60 45 0 0 ulb ulb lbt lbt lbt xlb ulb 0 16 2 2 1 4 1 flplbt invlbt 0 0 0 0 0 boot item_boots 12 item_boots 0 0 5 0 0 0 0 0 6 0 65 100 120 0 1 0 8 0 xxx xxx 0 0 1
Scarabshell Boots 100 0 1 1 56 65 0 0 91 0 11 0 66 49 0 0 uvb uvb vbt vbt vbt xvb uvb 0 16 2 2 1 4 1 flpvbt invvbt 0 0 0 0 0 boot item_boots 12 item_boots 0 0 5 0 0 0 0 0 6 0 60 110 120 0 1 0 8 0 xxx xxx 0 0 1
Boneweave Boots 100 0 2 1 59 67 0 0 118 0 13 0 72 54 0 0 umb umb mbt mbt mbt xmb umb 0 16 2 2 1 4 1 flpmbt invmbt 0 0 0 0 0 boot item_bootschain 12 item_bootschain 0 0 5 0 0 0 0 0 6 0 69 118 120 0 3 0 8 0 xxx xxx 0 0 1
Mirrored Boots 100 0 3 1 59 68 0 0 163 0 14 0 81 60 0 0 utb utb mbt mbt tbt xtb utb 0 16 2 2 1 4 1 flptbt invtbt 0 0 0 0 0 boot item_bootsmetal 12 item_bootsmetal 0 0 5 0 0 0 0 0 6 0 50 145 120 0 3 0 8 0 xxx xxx 0 0 1
Myrmidon Greaves 100 0 4 1 62 71 0 0 208 0 19 0 85 65 0 0 uhb uhb hbt hbt hbt xhb uhb 0 16 2 2 1 4 1 flphbt invhbt 0 0 0 0 0 boot item_bootsmetal 12 item_bootsmetal 0 0 5 0 0 0 0 0 6 0 83 149 120 0 3 0 8 0 xxx xxx 0 0 1
Spiderweb Sash 100 0 1 1 55 62 0 0 50 0 10 0 61 46 0 0 ulc ulc lbl lbl lbl zlb ulc 0 16 2 1 1 1 0 flplbl invlbl 0 0 0 0 0 belt item_lightarmor 12 item_lightarmor 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Vampirefang Belt 100 0 1 1 56 63 0 0 50 0 11 0 68 51 0 0 uvc uvc vbl vbl vbl zvb uvc 0 16 2 1 1 1 0 flpvbl invvbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Mithril Coil 100 0 2 1 58 65 0 0 106 0 13 0 75 56 0 0 umc umc mbl mbl mbl zmb umc 0 16 2 1 1 1 0 flpmbl invmbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Troll Belt 100 0 2 1 59 66 0 0 151 0 14 0 82 62 0 0 utc utc mbl mbl tbl ztb utc 0 16 2 1 1 1 0 flptbl invtbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Colossus Girdle 100 0 3 1 61 71 0 0 185 0 19 0 85 67 0 0 uhc uhc hbl hbl hbl zhb uhc 0 16 2 1 1 1 0 flphbl invhbl 0 0 0 0 0 belt item_belt 12 item_belt 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 8 0 xxx xxx 0 0 1
Bone Visage 100 0 2 1 100 157 0 0 106 0 32 0 84 63 0 0 uh9 uh9 bhm bhm bhm xh9 uh9 0 0 2 2 1 4 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm item_helm 12 item_helm 0 0 5 0 2 0 0 0 3 0 0 0 0 1 7 8 0 xxx xxx 0 0 1
Troll Nest 100 0 2 1 158 173 0 0 106 20 59 0 76 57 0 0 ush ush bsh bsh bsh xsh ush 0 7 2 3 1 4 2 flpbsh invbsh invbshu invbshu 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 24 38 100 0 1 8 8 0 xxx xxx 0 0 1
Blade Barrier 100 0 3 1 147 163 0 0 118 20 66 0 68 51 0 0 upk upk spk spk spk xpk upk 0 7 2 3 1 4 2 flpspk invspk invspku invspku 0 0 0 0 0 shie item_metalshield 12 item_metalshield 0 0 5 0 0 0 0 0 1 0 26 40 100 0 1 8 8 0 xxx xxx 0 0 1
Alpha Helm 100 0 1 1 52 62 0 0 44 0 16 0 35 26 0 0 dr6 dr6 dr1 dr1 dr1 dr6 drb 0 0 2 2 1 4 1 flpdr1 invdr1 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Griffon Headress 100 0 1 1 46 68 0 0 50 0 16 0 40 30 0 0 dr7 dr7 dr4 dr4 dr2 dr7 drc 0 0 2 2 1 4 1 flpdr4 invdr2 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Hunter's Guise 100 0 1 1 67 81 0 0 56 0 16 0 46 29 0 0 dr8 dr8 dr3 dr3 dr3 dr8 drd 0 0 2 2 1 4 1 flpdr3 invdr3 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Sacred Feathers 100 0 1 1 58 87 0 0 62 0 16 0 50 32 0 0 dr9 dr9 dr4 dr4 dr4 dr9 dre 0 0 2 2 1 4 1 flpdr4 invdr4 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Totemic Mask 100 0 1 1 73 98 0 0 65 0 16 0 55 41 0 0 dra dra dr1 dr1 dr5 dra drf 0 0 2 2 1 4 1 flpdr1 invdr5 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Jawbone Visor 100 0 2 1 55 68 0 0 58 0 20 0 33 25 0 0 ba6 ba6 ba1 dr1 ba1 ba6 bab 0 0 2 2 1 4 1 flpba1 invba1 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 5 0 0 xxx xxx 0 0 1
Lion Helm 100 0 2 1 63 75 0 0 73 0 28 0 38 29 0 0 ba7 ba7 ba1 bhm ba2 ba7 bac 0 0 2 2 1 4 1 flpba1 invba2 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 5 0 0 xxx xxx 0 0 1
Rage Mask 100 0 2 1 78 90 0 0 88 0 36 0 44 29 0 0 ba8 ba8 ba3 bhm ba3 ba8 bad 0 0 2 2 1 4 1 flpba3 invba3 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 0 0 xxx xxx 0 0 1
Savage Helmet 100 0 2 1 85 98 0 0 103 0 40 0 49 32 0 0 ba9 ba9 ba5 bhm ba4 ba9 bae 0 0 2 2 1 4 1 flpba5 invba4 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 0 0 xxx xxx 0 0 1
Slayer Guard 100 0 2 1 93 120 0 0 118 0 44 0 54 40 0 0 baa baa ba5 bhm ba5 baa baf 0 0 2 2 1 4 1 flpba5 invba5 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 0 0 xxx xxx 0 0 1
Akaran Targe 100 0 2 1 101 125 0 0 44 10 16 0 35 26 0 0 pa6 pa6 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 5 2 flppa1 invpa1 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 1 0 0 0 1 0 12 16 100 0 3 0 0 0 xxx xxx 0 0 1
Akaran Rondache 100 0 2 1 113 137 0 0 59 15 24 0 40 30 0 0 pa7 pa7 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 5 2 flppa1 invpa2 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 2 0 0 0 1 0 15 20 100 0 3 0 0 0 xxx xxx 0 0 1
Protector Shield 100 0 2 1 129 153 0 0 69 20 32 0 46 34 0 0 pa8 pa8 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 5 2 flppa3 invpa3 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 3 0 0 0 1 0 18 24 100 0 3 0 0 0 xxx xxx 0 0 1
Guilded Shield 100 0 2 1 144 168 0 0 89 22 40 0 51 38 0 0 pa9 pa9 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 5 2 flppa3 invpa4 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 4 0 0 0 1 0 20 28 100 0 3 0 0 0 xxx xxx 0 0 1
Royal Shield 100 0 2 1 156 181 0 0 114 25 48 0 55 41 0 0 paa paa 304 pa5 spk pa5 paa paf 0 7 2 2 1 5 2 flppa5 invpa5 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 5 0 0 0 1 0 24 32 100 0 3 0 0 0 xxx xxx 0 0 1
Mummified Trophy 100 0 1 1 38 48 0 0 38 3 16 0 33 24 0 0 ne6 ne6 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 3 2 flpne1 invne1 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Fetish Trophy 100 0 1 1 41 52 0 0 41 5 16 0 39 29 0 0 ne7 ne7 305 ne2 bhm ne2 ne7 neg 0 10 2 2 1 3 2 flpne2 invne2 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Sexton Trophy 100 0 1 1 44 55 0 0 47 8 16 0 45 33 0 0 ne8 ne8 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 3 2 flpne3 invne3 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Cantor Trophy 100 0 1 1 50 64 0 0 50 10 16 0 49 36 0 0 ne9 ne9 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 3 2 flpne3 invne4 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Heirophant Trophy 100 0 1 1 58 70 0 0 58 12 16 0 54 40 0 0 nea nea 305 ne2 bhm ne5 nea nef 0 10 2 2 1 3 2 flpne2 invne5 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Blood Spirt 100 0 1 1 101 145 0 0 86 0 16 0 62 46 0 0 drb drb dr1 dr1 dr1 dr6 drb 0 0 2 2 1 4 1 flpdr1 invdr1 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Sun Spirit 100 0 1 1 98 147 0 0 95 0 16 0 69 51 0 0 drc drc dr4 dr4 dr2 dr7 drc 0 0 2 2 1 4 1 flpdr4 invdr2 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Earth Spirit 100 0 1 1 107 152 0 0 104 0 16 0 76 57 0 0 drd drd dr3 dr3 dr3 dr8 drd 0 0 2 2 1 4 1 flpdr3 invdr3 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Sky Spirit 100 0 1 1 103 155 0 0 113 0 16 0 83 62 0 0 dre dre dr4 dr4 dr4 dr9 dre 0 0 2 2 1 4 1 flpdr4 invdr4 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Dream Spirit 100 0 1 1 109 159 0 0 118 0 16 0 85 66 0 0 drf drf dr1 dr1 dr5 dra drf 0 0 2 2 1 4 1 flpdr1 invdr5 0 0 0 0 0 pelt item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 8 8 0 xxx xxx 0 0 1
Carnage Helm 100 0 2 1 102 147 0 0 106 0 20 0 60 45 0 0 bab bab ba1 dr1 ba1 ba6 bab 0 0 2 2 1 4 1 flpba1 invba1 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 5 0 0 xxx xxx 0 0 1
Fury Visor 100 0 2 1 105 150 0 0 129 0 28 0 66 49 0 0 bac bac ba1 bhm ba2 ba7 bac 0 0 2 2 1 4 1 flpba1 invba2 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 1 5 0 0 xxx xxx 0 0 1
Destroyer Helm 100 0 2 1 111 156 0 0 151 0 36 0 73 54 0 0 bad bad ba3 bhm ba3 ba8 bad 0 0 2 2 1 4 1 flpba3 invba3 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 0 0 xxx xxx 0 0 1
Conquerer Crown 100 0 2 1 114 159 0 0 174 0 40 0 80 60 0 0 bae bae ba5 bhm ba4 ba9 bae 0 0 2 2 1 4 1 flpba5 invba4 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 0 0 xxx xxx 0 0 1
Guardian Crown 100 0 2 1 117 168 0 0 196 0 44 0 85 65 0 0 baf baf ba5 bhm ba5 baa baf 0 0 2 2 1 4 1 flpba5 invba5 0 0 0 0 0 phlm item_helm 12 item_helm 0 0 5 0 0 0 0 0 3 0 0 0 0 3 5 0 0 xxx xxx 0 0 1
Sacred Targe 100 0 2 1 126 158 0 0 86 30 36 0 63 47 0 0 pab pab 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 5 2 flppa1 invpa1 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 1 0 0 0 1 0 22 70 100 0 3 0 0 0 xxx xxx 0 0 1
Sacred Rondache 100 0 2 1 138 164 0 0 109 28 54 0 70 52 0 0 pac pac 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 5 2 flppa1 invpa2 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 2 0 0 0 1 0 35 58 100 0 3 0 0 0 xxx xxx 0 0 1
Ancient Shield 100 0 2 1 154 172 0 0 124 25 44 0 74 55 0 0 pad pad 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 5 2 flppa3 invpa3 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 3 0 0 0 1 0 10 82 100 0 3 0 0 0 xxx xxx 0 0 1
Zakarum Shield 100 0 2 1 169 193 0 0 142 22 52 0 82 61 0 0 pae pae 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 5 2 flppa3 invpa4 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 4 0 0 0 1 0 46 46 100 0 3 0 0 0 xxx xxx 0 0 1
Vortex Shield 100 0 2 1 182 225 0 0 148 19 72 0 85 66 0 0 paf paf 304 pa5 spk pa5 paa paf 0 7 2 2 1 5 2 flppa5 invpa5 0 0 0 0 0 ashd item_metalshield 12 item_metalshield 0 0 5 0 5 0 0 0 1 0 5 87 100 0 3 0 0 0 xxx xxx 0 0 1
Minion Skull 100 0 1 1 95 139 0 0 77 3 16 0 59 44 0 0 neb neb 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 3 2 flpne1 invne1 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Hellspawn Skull 100 0 1 1 96 141 0 0 82 5 16 0 67 50 0 0 neg neg 305 ne2 bhm ne2 ne7 neg 0 10 2 2 1 3 2 flpne2 invne2 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Overseer Skull 100 0 1 1 98 142 0 0 91 8 16 0 66 49 0 0 ned ned 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 3 2 flpne3 invne3 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Succubae Skull 100 0 1 1 100 146 0 0 95 10 16 0 81 60 0 0 nee nee 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 3 2 flpne3 invne4 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1
Bloodlord Skull 100 0 1 1 103 148 0 0 106 12 16 0 85 65 0 0 nef nef 305 ne2 bhm ne5 nea nef 0 10 2 2 1 3 2 flpne2 invne5 0 0 0 0 0 head item_head 12 item_head 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 0 0 xxx xxx 0 0 1

View File

@ -1,53 +0,0 @@
Name *comment version spawnable rare level maxlevel levelreq class classlevelreq classspecific 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
Fletcher's 100 1 1 1 15 3 300 skilltab 0 1 1 armo weap 0
Bowyer's 100 1 1 40 30 2 300 skilltab 0 2 2 armo weap 0
Archer's 100 1 60 45 1 300 skilltab 0 3 3 armo weap 0
Acrobat's 100 1 1 1 15 3 301 skilltab 1 1 1 armo weap 0
Gymnast's 100 1 1 40 30 2 301 skilltab 1 2 2 armo weap 0
Athlete's 100 1 60 45 1 301 skilltab 1 3 3 armo weap 0
Harpoonist's 100 1 1 1 15 3 302 skilltab 2 1 1 armo weap 0
Spearmaiden's 100 1 1 40 30 2 302 skilltab 2 2 2 armo weap 0
Lancer's 100 1 60 45 1 302 skilltab 2 3 3 armo weap 0
of the Jackal 100 1 1 1 3 6 303 hp 1 5 armo weap 0
of the Fox 100 1 1 11 8 5 303 hp 6 10 armo weap 0
of the Wolf 100 1 1 27 20 4 303 hp 11 20 armo weap 0
of the Tiger 100 1 1 43 35 3 303 hp 21 30 armo weap 0
of the Mammoth 100 1 1 59 51 2 303 hp 31 40 armo weap 0
of the Colossus 100 1 75 67 1 303 hp 41 60 armo weap 0
Lizard's 100 1 1 3 2 4 303 mana 1 5 armo weap 0
Snake's 100 1 1 12 9 3 303 mana 5 10 armo weap 0
Serpent's 100 1 1 23 16 2 303 mana 11 20 armo weap 0
Drake's 100 1 1 34 26 2 303 mana 21 30 1 cblu armo weap 0
Dragon's 100 1 1 45 37 1 303 mana 31 40 1 cblu armo weap 0
Wyrm's 100 1 1 56 48 1 303 mana 41 60 1 cblu armo weap 0
Great Wyrm's 100 1 67 59 1 303 mana 61 80 1 cblu armo weap 0
Shimmering 100 1 1 1 3 8 304 res-all 5 10 armo weap 0
Rainbow 100 1 1 18 13 7 304 res-all 8 15 armo weap 0
Scintillating 100 1 1 28 21 6 304 res-all 16 30 armo weap 0
Prismatic 100 1 1 39 31 5 304 res-all 25 35 armo weap 0
Chromatic 100 1 50 42 4 304 res-all 35 45 armo weap 0
Sharp 100 1 1 10 5 3 304 att 15 30 dmg% 10 20 armo weap 0
Fine 100 1 1 18 13 3 304 att 31 60 dmg% 21 30 armo weap 0
Warrior's 100 1 1 30 23 2 304 att 61 80 dmg% 31 40 armo weap 0
Soldier's 100 1 1 42 34 2 304 att 81 100 dmg% 41 50 armo weap 0
Knight's 100 1 1 50 42 2 304 att 101 121 dmg% 51 65 1 dgld armo weap 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
of Venom 100 1 1 15 11 2 305 pois-min 16 16 pois-max 48 48 pois-len 75 75 armo weap 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
of Anthrax 100 1 33 25 2 305 pois-min 64 64 pois-max 128 128 pois-len 100 100 armo weap 0
FIRE 100 1 1 1 41 1 8 420 dmg-fire 1 4 ebol earr 0
FIRE2 100 1 1 21 61 11 8 420 dmg-fire 5 20 ebol earr 0
FIRE3 100 1 1 41 31 8 420 dmg-fire 15 50 ebol earr 0
FIRE4 100 1 1 61 51 8 420 dmg-fire 30 120 ebol earr 0
COLD 100 1 1 1 41 1 4 420 dmg-cold 25 1 4 ebol earr 0
COLD2 100 1 1 21 61 11 4 420 dmg-cold 50 5 20 ebol earr 0
COLD3 100 1 1 41 31 2 420 dmg-cold 75 15 50 ebol earr 0
COLD4 100 1 1 61 51 2 420 dmg-cold 100 30 120 ebol earr 0
PSN 100 1 1 1 41 1 4 420 dmg-pois 25 1 4 pois-max 24 24 pois-len 75 75 ebol earr 0
PSN2 100 1 1 21 61 11 4 420 dmg-pois 50 5 20 pois-max 48 48 pois-len 75 75 ebol earr 0
PSN3 100 1 1 41 31 2 420 dmg-pois 75 15 50 pois-max 72 72 pois-len 100 100 ebol earr 0
PSN4 100 1 1 61 51 2 420 dmg-pois 100 30 120 pois-max 128 128 pois-len 100 100 ebol earr 0
LTNG 100 1 1 1 41 1 8 420 dmg-ltng 1 4 ebol earr 0
LTNG2 100 1 1 21 61 11 8 420 dmg-ltng 5 20 ebol earr 0
LTNG3 100 1 1 41 31 8 420 dmg-ltng 15 50 ebol earr 0
LTNG4 100 1 1 61 51 8 420 dmg-ltng 30 120 ebol earr 0

File diff suppressed because it is too large Load Diff

View File

@ -1,16 +0,0 @@
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 30 31 534 563 729 759 565 594 729 759 596 625 729 759 627 656 729 759 534 563 696 725 565 594 696 725 596 625 696 725 627 656 696 725 534 563 664 694 565 594 664 694 596 625 664 694 627 656 664 694
sash 8 30 31 534 563 729 759 565 594 729 759 596 625 729 759 627 656 729 759 534 563 696 725 565 594 696 725 596 625 696 725 627 656 696 725
default 4 30 31 534 563 729 759 565 594 729 759 596 625 729 759 627 656 729 759
girdle 16 30 31 534 563 729 759 565 594 729 759 596 625 729 759 627 656 729 759 534 563 696 725 565 594 696 725 596 625 696 725 627 656 696 725 534 563 664 694 565 594 664 694 596 625 664 694 627 656 664 694 534 563 632 662 565 594 632 662 596 625 632 662 627 656 632 662
light belt 8 30 31 534 563 729 759 565 594 729 759 596 625 729 759 627 656 729 759 534 563 696 725 565 594 696 725 596 625 696 725 627 656 696 725
heavy belt 12 30 31 534 563 729 759 565 594 729 759 596 625 729 759 627 656 729 759 534 563 696 725 565 594 696 725 596 625 696 725 627 656 696 725 534 563 664 694 565 594 664 694 596 625 664 694 627 656 664 694
uber belt 16 30 31 534 563 729 759 565 594 729 759 596 625 729 759 627 656 729 759 534 563 696 725 565 594 696 725 596 625 696 725 627 656 696 725 534 563 664 694 565 594 664 694 596 625 664 694 627 656 664 694 534 563 632 662 565 594 632 662 596 625 632 662 627 656 632 662
Expansion
belt2 12 30 31 662 691 730 760 693 722 730 760 724 753 730 760 755 784 730 760 662 691 697 727 693 722 697 727 724 753 697 727 755 784 697 727 662 691 665 695 693 722 665 695 724 753 665 695 755 784 665 695
sash2 8 30 31 662 691 730 760 693 722 730 760 724 753 730 760 755 784 730 760 662 691 697 727 693 722 697 727 724 753 697 727 755 784 697 727
default2 4 30 31 662 691 730 760 693 722 730 760 724 753 730 760 755 784 730 760
girdle2 16 30 31 662 691 730 760 693 722 730 760 724 753 730 760 755 784 730 760 662 691 697 727 693 722 697 727 724 753 697 727 755 784 697 727 662 691 665 695 693 722 665 695 724 753 665 695 755 784 665 695 662 691 633 663 693 722 633 663 724 753 633 663 755 784 633 663
light belt2 8 30 31 662 691 730 760 693 722 730 760 724 753 730 760 755 784 730 760 662 691 697 727 693 722 697 727 724 753 697 727 755 784 697 727
heavy belt2 12 30 31 662 691 730 760 693 722 730 760 724 753 730 760 755 784 730 760 662 691 697 727 693 722 697 727 724 753 697 727 755 784 697 727 662 691 665 695 693 722 665 695 724 753 665 695 755 784 665 695
uber belt 16 30 31 662 691 730 760 693 722 730 760 724 753 730 760 755 784 730 760 662 691 697 727 693 722 697 727 724 753 697 727 755 784 697 727 662 691 665 695 693 722 665 695 724 753 665 695 755 784 665 695 662 691 633 663 693 722 633 663 724 753 633 663 755 784 633 663

View File

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

View File

@ -1,4 +0,0 @@
Name Namco Completed ScrollSpellCode BookSpellCode pSpell SpellIcon ScrollSkill BookSkill BaseCost CostPerCharge
unused of Town Portal 1 tsc tbk 2 -1 Scroll of Townportal Book of Townportal 250 50
unused of Identify 1 isc ibk 1 0 Scroll of Identify Book of Identify 200 40
unused of Ressurect 0 -1 500 100

View File

@ -1,9 +0,0 @@
class str dex int vit tot stamina hpadd PercentStr PercentDex PercentInt PercentVit ManaRegen ToHitFactor WalkVelocity RunVelocity RunDrain Comment LifePerLevel StaminaPerLevel ManaPerLevel LifePerVitality StaminaPerVitality ManaPerMagic StatPerLevel #walk #run #swing #spell #gethit #bow BlockFactor StartSkill Skill 1 Skill 2 Skill 3 Skill 4 Skill 5 Skill 6 Skill 7 Skill 8 Skill 9 Skill 10 StrAllSkills StrSkillTab1 StrSkillTab2 StrSkillTab3 StrClassOnly 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 22 40 18 20 100 69 30 22 40 18 20 75 10 6 11 20 The following are in fourths 0 0 0 20 1 8 4 6 4 16 20 6 14 25 Throw Kick Scroll of Identify Book of Identify Scroll of Townportal Book of Townportal Unsummon ModStr3a StrSklTabItem3 StrSklTabItem2 StrSklTabItem1 AmaOnly hth box 1 ib1 1 ib2 1 ib3 1
Sorceress 12 28 45 15 100 59 30 12 28 45 15 125 10 6 9 30 The following are in fourths 0 0 0 14 1 12 4 8 5 20 14 8 18 20 Throw Kick Scroll of Identify Book of Identify Scroll of Townportal Book of Townportal Unsummon ModStr3d StrSklTabItem15 StrSklTabItem14 StrSklTabItem13 SorOnly hth box 1 ib1 1 ib2 1 ib3 1
Necromancer 18 27 35 20 100 64 30 18 27 35 20 125 10 6 10 25 The following are in fourths 0 0 0 16 1 11 4 9 5 19 16 7 17 20 Throw Kick Scroll of Identify Book of Identify Scroll of Townportal Book of Townportal Unsummon ModStr3c StrSklTabItem8 StrSklTabItem7 StrSklTabItem9 NecOnly hth box 1 ib1 1 ib2 1 ib3 1
Paladin 30 25 20 25 100 74 30 30 25 20 25 75 20 6 10 20 The following are in fourths 0 0 0 22 1 8 4 8 5 17 18 4 17 30 Throw Kick Scroll of Identify Book of Identify Scroll of Townportal Book of Townportal Unsummon ModStr3b StrSklTabItem6 StrSklTabItem5 StrSklTabItem4 PalOnly hth box 1 ib1 1 ib2 1 ib3 1
Barbarian 35 25 10 25 100 77 30 40 25 10 25 50 25 6 12 13 The following are in fourths 0 0 0 24 1 6 4 7 4 15 22 5 16 25 Throw Kick Scroll of Identify Book of Identify Scroll of Townportal Book of Townportal Left Hand Throw Left Hand Swing Unsummon ModStr3e StrSklTabItem11 StrSklTabItem12 StrSklTabItem10 BarOnly hth box 1 ib1 1 ib2 1 ib3 1
Expansion
Druid 25 20 20 35 100 69 30 25 20 20 35 100 10 6 10 15 The following are in fourths 0 0 0 18 1 10 4 9 5 19 16 7 17 20 Throw Kick Scroll of Identify Book of Identify Scroll of Townportal Book of Townportal Unsummon ModStre8a StrSklTabItem16 StrSklTabItem17 StrSklTabItem18 DruOnly hth box 1 ib1 1 ib2 1 ib3 1
Assassin 25 25 25 25 100 80 30 25 25 25 25 75 15 6 10 15 The following are in fourths 0 0 0 22 1 9 4 6 4 16 20 6 14 25 Throw Kick Scroll of Identify Book of Identify Scroll of Townportal Book of Townportal Left Hand Swing Unsummon ModStre8b StrSklTabItem19 StrSklTabItem20 StrSklTabItem21 AssOnly hth box 1 ib1 1 ib2 1 ib3 1

View File

@ -1,31 +0,0 @@
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

View File

@ -1,22 +0,0 @@
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

View File

@ -1,116 +0,0 @@
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

View File

@ -1,17 +0,0 @@
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

File diff suppressed because it is too large Load Diff

View File

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

View File

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

View File

@ -1,3 +0,0 @@
*Name StrOnly StatOnly tblIDx Font Color Xleft Xright Y Stat Font2 Color2 RiN Xleft2 Xright2 Y2 *eol
display_kills sdkills 1 1 200 280 404 killcounter 1 0 1 300 400 404 0
0

View File

@ -1,4 +0,0 @@
Name ResistPenalty DeathExpPenalty UberCodeOddsNormal UberCodeOddsGood UltraCodeOddsNormal UltraCodeOddsGood MonsterSkillBonus MonsterFreezeDivisor MonsterColdDivisor AiCurseDivisor LifeStealDivisor ManaStealDivisor UniqueDamageBonus ChampionDamageBonus HireableBossDamagePercent MonsterCEDamagePercent StaticFieldMin GambleRare GambleSet GambleUnique GambleUber GambleUltra
Normal 0 0 0 0 0 0 0 1 1 1 1 1 90 90 50 50 0 16000 2000 1000 90 33
Nightmare -40 5 10 20 0 0 3 2 2 2 2 2 75 75 35 35 33 16000 2000 1000 90 33
Hell -100 10 20 40 30 40 7 4 4 4 3 3 66 66 25 20 50 16000 2000 1000 90 33

View File

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

View File

@ -1,14 +0,0 @@
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

View File

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

View File

@ -1,167 +0,0 @@
name code
Hand Axe mh1
Axe mh1
Double Axe mh1
Military Pick mh1
War Axe mh1
Large Axe mh1
Broad Axe mh1
Battle Axe mh1
Great Axe mh1
Giant Axe mh1
Club mh1
Spiked Club mh1
Mace mh1
Morning Star mh1
Flail mh1
War Hammer mh1
Maul mh1
Great Maul mh1
Short Sword mh1
Scimitar mh1
Saber mh1
Falchion mh1
Crystal Sword mh1
Broad Sword mh1
Long Sword mh1
War Sword mh1
Two-Handed Sword mh1
Claymore mh1
Giant Sword mh1
Bastard Sword mh1
Flamberge mh1
Great Sword mh1
Dagger mh1
Dirk mh1
Kriss mh1
Blade mh1
Spear mh1
Trident mh1
Brandistock mh1
Spetum mh1
Pike mh1
Bardiche mh1
Voulge mh1
Scythe mh1
Poleaxe mh1
Halberd mh1
War Scythe mh1
Short Bow mh1
Hunter's Bow mh1
Long Bow mh1
Composite Bow mh1
Short Battle Bow mh1
Long Battle Bow mh1
Short War Bow mh1
Long War Bow mh1
Light Crossbow mh1
Crossbow mh1
Heavy Crossbow mh1
Repeating Crossbow mh1
Cap/hat mh2
Skull Cap mh2
Helm mh2
Full Helm mh2
Great Helm mh2
Crown mh2
Mask mh2
Quilted Armor mh2
Leather Armor mh2
Hard Leather Armor mh2
Studded Leather mh2
Ring Mail mh2
Scale Mail mh2
Chain Mail mh2
Breast Plate mh2
Splint Mail mh2
Plate Mail mh2
Field Plate mh2
Gothic Plate mh2
Full Plate Mail mh2
Ancient Armor mh2
Light Plate mh2
Buckler mh2
Small Shield mh2
Large Shield mh2
Kite Shield mh2
Tower Shield mh2
Gothic Shield mh2
Gloves(L) mh2
Heavy Gloves mh2
Bracers(M) mh2
Light Gauntlets mh2
Gaunlets(H) mh2
Leather Boots mh2
Heavy Boots mh2
Chain Boots mh2
Light Plate Boots mh2
Plate Boots mh2
Sash(L) mh2
Light Belt mh2
Belt(M) mh2
Heavy Belt mh2
Girdle(H) mh2
Bone Helm mh2
Bone Shield mh2
Spiked Shield mh2
Expansion mh2
Throwing Knife mh2
Throwing Axe mh2
Balanced Knife mh2
Balanced Axe mh2
Javelin mh2
Pilum mh2
Short Spear mh2
Glaive mh2
Throwing Spear mh2
Katar mh2
Wrist Blade mh2
Axe Fist mh2
Cestus mh2
Claws mh2
Blade Talons mh2
Scissors Katar mh2
Circlet mh2
Coronet mh2
Wand mh3
Yew Wand mh3
Bone Wand mh3
Grim Wand mh3
Eagle Orb mh3
Scepter mh3
Grand Scepter mh3
War Scepter mh3
Short Staff mh3
Long Staff mh3
Gnarled Staff mh3
Battle Staff mh3
War Staff mh3
Sacred Globe mh3
Smoked Sphere mh3
Clasped Orb mh3
Dragon Stone mh3
Stag Bow mh3
Reflex Bow mh3
Maiden Spear mh3
Maiden Pike mh3
Maiden Javelin mh3
Wolf Head mh3
Hawk Helm mh3
Antlers mh3
Falcon Mask mh3
Spirit Mask mh3
Jawbone Cap mh3
Fanged Helm mh3
Horned Helm mh3
Assault Helmet mh3
Avenger Guard mh3
Targe mh3
Rondache mh3
Heraldic Shield mh3
Aerin Shield mh3
Crown Shield mh3
Preserved Head mh3
Zombie Head mh3
Unraveller Head mh3
Gargoyle Head mh3
Demon Head mh3

View File

@ -1,70 +0,0 @@
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 34 34 pois-max 0 34 34 pois-len 0 75 75 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 51 51 pois-max 0 51 51 pois-len 0 100 100 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 82 82 pois-max 0 82 82 pois-len 0 125 125 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 101 101 pois-max 0 101 101 pois-len 0 152 152 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 143 143 pois-max 0 143 143 pois-len 0 179 179 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 125 154 154 res-pois 30 30 res-pois 35 35 0
Ral Rune Ral 18 r08 1 dmg-fire 5 30 res-fire 30 30 res-fire 35 35 0
Ort Rune Ort 18 r09 1 dmg-ltng 1 50 res-ltng 30 30 res-ltng 35 35 0
Thul Rune Thul 18 r10 1 dmg-cold 75 3 14 res-cold 30 30 res-cold 35 35 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 15 15 res-all 22 22 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 5 5 res-pois-max 5 5 0
Vex Rune Vex 18 r26 1 manasteal 7 7 res-fire-max 5 5 res-fire-max 5 5 0
Ohm Rune Ohm 18 r27 1 dmg% 50 50 res-cold-max 5 5 res-cold-max 5 5 0
Lo Rune Lo 18 r28 1 deadly 20 20 res-ltng-max 5 5 res-ltng-max 5 5 0
Sur Rune Sur 18 r29 1 stupidity 1 1 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
Jah Rune Jah 18 r31 1 ignore-ac 1 1 hp% 5 5 hp 50 50 0
Cham Rune Cham 18 r32 1 freeze 3 3 nofreeze 1 1 nofreeze 1 1 0
Zod Rune Zod 18 r33 1 indestruct 1 1 indestruct 1 1 indestruct 1 1 0

View File

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

View File

@ -1,121 +0,0 @@
Hireling SubType Version 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 ChancePerLvl1 Level1 LvlPerLvl1 Skill2 Mode2 Chance2 ChancePerLvl2 Level2 LvlPerLvl2 Skill3 Mode3 Chance3 ChancePerLvl3 Level3 LvlPerLvl3 Skill4 Mode4 Chance4 ChancePerLvl4 Level4 LvlPerLvl4 Skill5 Mode5 Chance5 ChancePerLvl5 Level5 LvlPerLvl5 Skill6 Mode6 Chance6 ChancePerLvl6 Level6 LvlPerLvl6 Head Torso Weapon Shield
Rogue Scout Fire - Normal 0 0 271 1 1 13 150 merc01 merc41 0 100 64 9 18 6 27 10 45 16 10 10 1 3 2 0 8 bow farw 75 Inner Sight 4 10 0 1 10 Fire Arrow 4 25 8 1 10 2 1 2 0
Rogue Scout Fire - Normal 0 0 271 1 1 35 150 merc01 merc41 0 100 311 15 165 12 48 10 89 16 230 20 1 7 9 4 44 7 bow farw 75 Inner Sight 4 10 0 8 10 Fire Arrow 4 69 0 8 10 2 1 2 0
Rogue Scout Fire - Normal 0 0 271 1 1 59 150 merc01 merc41 0 100 750 30 489 21 69 10 137 16 710 30 2 19 21 6 86 5 bow farw 75 Inner Sight 4 10 0 16 10 Fire Arrow 4 69 0 16 10 2 1 2 0
Rogue Scout Ice - Normal 0 1 271 1 1 13 150 merc01 merc41 0 105 64 9 18 6 27 10 45 16 10 10 1 3 2 0 8 bow carw 75 Inner Sight 4 10 0 1 10 Cold Arrow 4 25 2 1 10 2 1 2 0
Rogue Scout Ice - Normal 0 1 271 1 1 35 150 merc01 merc41 0 105 311 12 165 12 48 10 89 16 230 20 1 7 9 4 44 7 bow carw 75 Inner Sight 4 10 0 8 10 Cold Arrow 4 36 0 8 10 2 1 2 0
Rogue Scout Ice - Normal 0 1 271 1 1 59 150 merc01 merc41 0 105 716 18 489 21 69 10 137 16 710 30 2 19 21 6 86 5 bow carw 75 Inner Sight 4 10 0 16 10 Cold Arrow 4 36 0 16 10 2 1 2 0
Rogue Scout Fire - Nightmare 0 2 271 1 2 35 150 merc01 merc41 0 110 278 12 150 12 45 10 84 16 207 20 1 6 8 4 41 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 - Nightmare 0 2 271 1 2 59 150 merc01 merc41 0 110 683 18 474 21 66 10 132 16 687 30 2 18 20 6 83 5 bow farw 75 Inner Sight 4 10 0 15 10 Fire Arrow 4 69 0 15 10 2 1 2 0
Rogue Scout Ice - Nightmare 0 3 271 1 2 35 150 merc01 merc41 0 115 278 12 150 12 45 10 84 16 207 20 1 6 8 4 41 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 - Nightmare 0 3 271 1 2 59 150 merc01 merc41 0 115 683 18 474 21 66 10 132 16 687 30 2 18 20 6 83 5 bow carw 75 Inner Sight 4 10 0 15 10 Cold Arrow 4 69 0 15 10 2 1 2 0
Rogue Scout Fire - Hell 0 4 271 1 3 59 150 merc01 merc41 0 120 615 18 426 21 66 10 127 16 618 30 2 17 19 6 80 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 - Hell 0 5 271 1 3 59 150 merc01 merc41 0 125 615 18 426 21 66 10 127 16 618 30 2 17 19 6 80 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 - Normal 100 0 271 1 1 13 150 merc01 merc41 0 100 216 12 136 9 27 10 45 16 10 12 1 3 2 0 8 bow farw 75 Inner Sight 4 10 0 1 10 Fire Arrow 4 25 5 1 10 Exploding Arrow 4 0 0 0 0 Immolation Arrow 4 0 0 0 0 Quickness 4 999 0 3 0 2 1 2 0
Rogue Scout Fire - Normal 100 0 271 1 1 35 150 merc01 merc41 0 100 625 21 330 18 57 10 111 16 406 24 1 9 11 4 66 7 bow farw 75 Inner Sight 4 10 0 12 10 Fire Arrow 4 67 0 12 10 Exploding Arrow 4 25 5 8 10 Immolation Arrow 4 0 0 0 0 Quickness 4 999 0 8 0 2 1 2 0
Rogue Scout Fire - Normal 100 0 271 1 1 65 150 merc01 merc41 0 100 1438 33 837 24 87 10 173 16 1150 36 2 25 27 6 121 5 bow farw 75 Inner Sight 4 10 0 22 10 Fire Arrow 4 67 0 22 10 Exploding Arrow 4 67 0 18 0 Immolation Arrow 4 35 7 5 14 Quickness 4 999 0 14 0 2 1 2 0
Rogue Scout Ice - Normal 100 1 271 1 1 13 150 merc01 merc41 0 105 216 12 136 9 27 10 45 16 10 12 1 3 2 0 8 bow carw 75 Inner Sight 4 10 0 1 10 Cold Arrow 4 25 5 1 10 Ice Arrow 4 0 0 0 0 Freezing Arrow 4 0 0 0 0 Quickness 4 999 0 3 0 2 1 2 0
Rogue Scout Ice - Normal 100 1 271 1 1 35 150 merc01 merc41 0 105 625 21 330 18 57 10 111 16 406 24 1 9 11 4 66 7 bow carw 75 Inner Sight 4 10 0 12 10 Cold Arrow 4 67 0 12 10 Ice Arrow 4 25 5 8 10 Freezing Arrow 4 0 0 0 0 Quickness 4 999 0 8 0 2 1 2 0
Rogue Scout Ice - Normal 100 1 271 1 1 65 150 merc01 merc41 0 105 1438 33 925 24 87 10 173 16 1150 36 2 25 27 6 121 5 bow carw 75 Inner Sight 4 10 0 22 10 Cold Arrow 4 67 0 22 10 Ice Arrow 4 67 0 18 0 Freezing Arrow 4 35 7 5 14 Quickness 4 999 0 14 0 2 1 2 0
Rogue Scout Fire - Nightmare 100 2 271 1 2 35 150 merc01 merc41 0 110 625 21 330 18 54 10 106 16 365 24 1 8 10 4 63 7 bow farw 75 Inner Sight 4 10 0 11 10 Fire Arrow 4 69 0 11 10 Exploding Arrow 4 25 5 8 10 Immolation Arrow 4 0 0 0 0 Quickness 4 999 0 8 0 2 1 2 0
Rogue Scout Fire - Nightmare 100 2 271 1 2 65 150 merc01 merc41 0 110 1438 33 925 24 84 10 168 16 1109 36 2 24 26 6 118 5 bow farw 75 Inner Sight 4 10 0 21 10 Fire Arrow 4 69 0 21 10 Exploding Arrow 4 67 0 18 0 Immolation Arrow 4 35 7 5 14 Quickness 4 999 0 14 0 2 1 2 0
Rogue Scout Ice - Nightmare 100 3 271 1 2 35 150 merc01 merc41 0 115 625 21 330 18 54 10 106 16 365 24 1 8 10 4 63 7 bow carw 75 Inner Sight 4 10 0 11 10 Cold Arrow 4 69 0 11 10 Ice Arrow 4 25 5 8 10 Immolation Arrow 4 0 0 0 0 Quickness 4 999 0 8 0 2 1 2 0
Rogue Scout Ice - Nightmare 100 3 271 1 2 65 150 merc01 merc41 0 115 1438 33 925 24 84 10 168 16 1109 36 2 24 26 6 118 5 bow carw 75 Inner Sight 4 10 0 21 10 Cold Arrow 4 69 0 21 10 Ice Arrow 4 67 0 18 0 Freezing Arrow 4 35 7 5 14 Quickness 4 999 0 14 0 2 1 2 0
Rogue Scout Fire - Hell 100 4 271 1 3 65 150 merc01 merc41 0 120 1438 33 925 24 84 10 163 16 998 36 2 23 25 6 115 5 bow farw 75 Inner Sight 4 10 0 20 10 Fire Arrow 4 69 0 20 10 Exploding Arrow 4 67 0 18 0 Immolation Arrow 4 35 7 5 14 Quickness 4 999 0 14 0 2 1 2 0
Rogue Scout Ice - Hell 100 5 271 1 3 65 150 merc01 merc41 0 125 1438 33 925 24 84 10 163 16 998 36 2 23 25 6 115 5 bow carw 75 Inner Sight 4 10 0 20 10 Cold Arrow 4 69 0 20 10 Ice Arrow 4 67 0 18 0 Freezing Arrow 4 35 7 5 14 Quickness 4 999 0 14 0 2 1 2 0
Desert Mercenary Comb-Normal 0 6 338 2 1 19 198 merca201 merca221 0 110 169 12 51 12 42 14 40 12 20 10 1 7 14 4 18 8 pole spea comb 30 Jab 14 70 4 3 10 Prayer 1 10 0 3 10 2 2 2 0
Desert Mercenary Comb-Normal 0 6 338 2 1 41 198 merca201 merca221 0 110 480 24 273 18 72 14 73 12 240 20 3 18 25 6 62 7 pole spea comb 30 Jab 14 92 4 10 10 Prayer 1 10 0 10 10 2 2 2 0
Desert Mercenary Comb-Normal 0 6 338 2 1 65 198 merca201 merca221 0 110 1155 39 705 27 102 14 109 12 720 30 4 36 43 8 104 4 pole spea comb 30 Jab 14 116 4 18 10 Prayer 1 10 0 18 0 2 2 2 0
Desert Mercenary Def-Normal 0 7 338 2 1 19 198 merca201 merca221 0 110 169 12 51 12 42 14 40 12 20 10 1 7 14 4 18 8 pole spea def 30 Jab 14 70 4 3 10 Defiance 1 10 0 3 10 2 2 2 0
Desert Mercenary Def-Normal 0 7 338 2 1 41 198 merca201 merca221 0 110 480 24 273 18 72 14 73 12 240 20 3 18 25 6 62 7 pole spea def 30 Jab 14 92 4 10 10 Defiance 1 10 0 10 10 2 2 2 0
Desert Mercenary Def-Normal 0 7 338 2 1 65 198 merca201 merca221 0 110 1155 39 705 27 102 14 109 12 720 30 4 36 43 8 104 4 pole spea def 30 Jab 14 116 4 18 0 Defiance 1 10 0 18 0 2 2 2 0
Desert Mercenary Off-Normal 0 8 338 2 1 19 198 merca201 merca221 0 110 169 12 51 12 42 14 40 12 20 10 1 7 14 4 18 8 pole spea off 30 Jab 14 70 4 3 10 Blessed Aim 1 10 0 3 10 2 2 2 0
Desert Mercenary Off-Normal 0 8 338 2 1 41 198 merca201 merca221 0 110 480 24 273 18 72 14 73 12 240 20 3 18 25 6 62 7 pole spea off 30 Jab 14 92 4 10 10 Blessed Aim 1 10 0 10 10 2 2 2 0
Desert Mercenary Off-Normal 0 8 338 2 1 65 198 merca201 merca221 0 110 1155 39 705 27 102 14 109 12 720 30 4 36 43 8 104 4 pole spea off 30 Jab 14 116 4 18 0 Blessed Aim 1 10 0 18 0 2 2 2 0
Desert Mercenary Comb-Nightmare 0 9 338 2 2 41 198 merca201 merca221 0 120 431 24 246 18 69 14 69 12 216 20 3 16 23 6 59 7 pole spea comb 30 Jab 14 120 4 9 10 Thorns 1 10 0 5 10 2 2 2 0
Desert Mercenary Comb-Nightmare 0 9 338 2 2 65 198 merca201 merca221 0 120 1106 39 678 27 102 14 105 12 696 30 4 34 41 8 101 4 pole spea comb 30 Jab 14 144 4 17 10 Thorns 1 10 0 13 0 2 2 2 0
Desert Mercenary Def-Nightmare 0 10 338 2 2 41 198 merca201 merca221 0 120 431 24 246 18 69 14 69 12 216 20 3 16 23 6 59 7 pole spea def 30 Jab 14 120 4 9 10 Holy Freeze 1 10 0 6 10 2 2 2 0
Desert Mercenary Def-Nightmare 0 10 338 2 2 65 198 merca201 merca221 0 120 1106 39 678 27 102 14 105 12 696 30 4 34 41 8 101 4 pole spea def 30 Jab 14 144 4 17 0 Holy Freeze 1 10 0 14 0 2 2 2 0
Desert Mercenary Off-Nightmare 0 11 338 2 2 41 198 merca201 merca221 0 120 431 24 246 18 69 14 69 12 216 20 3 16 23 6 59 7 pole spea off 30 Jab 14 120 4 9 10 Might 1 10 0 7 8 2 2 2 0
Desert Mercenary Off-Nightmare 0 11 338 2 2 65 198 merca201 merca221 0 120 1106 39 678 27 102 14 105 12 696 30 4 34 41 8 101 4 pole spea off 30 Jab 14 144 4 17 0 Might 1 10 0 13 8 2 2 2 0
Desert Mercenary Comb-Hell 0 12 338 2 3 65 198 merca201 merca221 0 130 994 39 612 27 96 14 101 12 626 30 4 32 39 8 98 4 pole spea comb 30 Jab 14 104 4 16 10 Prayer 1 10 0 16 0 2 2 2 0
Desert Mercenary Def-Hell 0 13 338 2 3 65 198 merca201 merca221 0 130 994 39 612 27 96 14 101 12 626 30 4 32 39 8 98 4 pole spea def 30 Jab 14 104 4 16 0 Defiance 1 10 0 16 0 2 2 2 0
Desert Mercenary Off-Hell 0 14 338 2 3 65 198 merca201 merca221 0 130 994 39 612 27 96 14 101 12 626 30 4 32 39 8 98 4 pole spea off 30 Jab 14 104 4 16 0 Blessed Aim 1 10 0 16 0 2 2 2 0
Desert Mercenary Comb-Normal 100 6 338 2 1 19 198 merca201 merca221 0 110 450 18 51 12 42 14 40 12 20 12 1 7 14 4 18 8 pole spea comb 30 Jab 14 70 4 3 10 Prayer 1 999 0 3 7 Charged Strike 4 0 0 0 0 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Comb-Normal 100 6 338 2 1 46 198 merca201 merca221 0 110 885 30 471 21 87 14 91 12 428 24 3 24 31 6 86 7 pole spea comb 30 Jab 14 104 4 14 10 Prayer 1 999 0 11 7 Charged Strike 4 70 3 8 10 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Comb-Normal 100 6 338 2 1 71 198 merca201 merca221 0 110 2010 45 1155 30 129 14 139 12 1196 36 4 48 55 8 142 4 pole spea comb 30 Jab 14 136 4 24 10 Prayer 1 999 0 18 0 Charged Strike 4 104 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Desert Mercenary Def-Normal 100 7 338 2 1 19 198 merca201 merca221 0 110 450 18 51 12 42 14 40 12 20 12 1 7 14 4 18 8 pole spea def 30 Jab 14 70 4 3 10 Defiance 1 999 0 3 7 Charged Strike 4 0 0 0 0 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Def-Normal 100 7 338 2 1 42 198 merca201 merca221 0 110 885 30 471 21 87 14 91 12 428 24 3 24 31 6 86 7 pole spea def 30 Jab 14 104 4 14 10 Defiance 1 999 0 11 7 Charged Strike 4 70 3 8 10 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Def-Normal 100 7 338 2 1 71 198 merca201 merca221 0 110 2010 45 1155 30 129 14 139 12 1196 36 4 48 55 8 142 4 pole spea def 30 Jab 14 136 4 24 0 Defiance 1 999 0 18 0 Charged Strike 4 14 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Desert Mercenary Off-Normal 100 8 338 2 1 19 198 merca201 merca221 0 110 450 18 51 12 42 14 40 12 20 12 1 7 14 4 18 8 pole spea off 30 Jab 14 70 4 3 10 Blessed Aim 1 999 0 3 7 Charged Strike 4 0 0 0 0 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Off-Normal 100 8 338 2 1 42 198 merca201 merca221 0 110 885 30 471 21 87 14 91 12 428 24 3 24 31 6 86 7 pole spea off 30 Jab 14 104 4 14 10 Blessed Aim 1 999 0 11 7 Charged Strike 4 70 3 8 10 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Off-Normal 100 8 338 2 1 71 198 merca201 merca221 0 110 2010 45 1155 30 129 14 139 12 1196 36 4 48 55 8 142 4 pole spea off 30 Jab 14 136 4 24 0 Blessed Aim 1 999 0 18 0 Charged Strike 4 104 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Desert Mercenary Comb-Nightmare 100 9 338 2 2 42 198 merca201 merca221 0 120 795 30 426 21 84 14 87 12 385 24 3 22 29 6 83 7 pole spea comb 30 Jab 14 120 4 13 10 Thorns 1 999 0 5 10 Charged Strike 4 70 3 8 10 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Comb-Nightmare 100 9 338 2 2 71 198 merca201 merca221 0 120 1920 45 1110 30 126 14 135 12 1153 36 4 46 53 8 139 4 pole spea comb 30 Jab 14 152 4 23 10 Thorns 1 999 0 15 0 Charged Strike 4 104 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Desert Mercenary Def-Nightmare 100 10 338 2 2 42 198 merca201 merca221 0 120 795 30 426 21 84 14 87 12 385 24 3 22 29 6 83 7 pole spea def 30 Jab 14 120 4 13 10 Holy Freeze 1 999 0 6 10 Charged Strike 4 70 3 8 10 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Def-Nightmare 100 10 338 2 2 71 198 merca201 merca221 0 120 1920 45 1110 30 126 14 135 12 1153 36 4 46 53 8 139 4 pole spea def 30 Jab 14 152 4 23 0 Holy Freeze 1 999 0 16 0 Charged Strike 4 104 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Desert Mercenary Off-Nightmare 100 11 338 2 2 42 198 merca201 merca221 0 120 795 30 426 21 84 14 87 12 385 24 3 22 29 6 83 7 pole spea off 30 Jab 14 120 4 13 10 Might 1 999 0 7 8 Charged Strike 4 70 3 8 10 Lightning Strike 4 0 0 0 0 2 2 2 0
Desert Mercenary Off-Nightmare 100 11 338 2 2 71 198 merca201 merca221 0 120 1920 45 1110 30 126 14 135 12 1153 36 4 46 53 8 139 4 pole spea off 30 Jab 14 152 4 23 0 Might 1 999 0 15 8 Charged Strike 4 104 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Desert Mercenary Comb-Hell 100 12 338 2 3 71 198 merca201 merca221 0 130 1729 45 996 30 123 14 131 12 1038 36 4 44 51 8 136 4 pole spea comb 30 Jab 14 104 4 22 10 Fanaticism 1 999 0 16 0 Charged Strike 4 104 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Desert Mercenary Def-Hell 100 13 338 2 3 71 198 merca201 merca221 0 130 1729 45 996 30 123 14 131 12 1038 36 4 44 51 8 136 4 pole spea def 30 Jab 14 104 4 22 0 Salvation 1 999 0 16 0 Charged Strike 4 104 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Desert Mercenary Off-Hell 100 14 338 2 3 71 198 merca201 merca221 0 130 1729 45 996 30 123 14 131 12 1038 36 4 44 51 8 136 4 pole spea off 30 Jab 14 104 4 22 0 Conviction 1 999 0 16 0 Charged Strike 4 104 2 18 0 Lightning Strike 4 55 7 12 16 2 2 2 0
Eastern Sorceror Fire-Normal 0 15 359 3 1 25 252 merca222 merca241 0 110 225 9 90 6 36 10 40 8 15 10 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 0 15 359 3 1 47 252 merca222 merca241 0 110 473 15 189 12 57 10 62 8 235 20 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 0 15 359 3 1 77 252 merca222 merca241 0 110 945 24 459 21 81 10 86 8 715 30 5 24 30 4 106 6 swor shie fire 10 Inferno 7 60 0 21 10 Fire Ball 7 30 0 19 10 2 2 2 1
Eastern Sorceror Cold-Normal 0 16 359 3 1 25 252 merca222 merca241 0 120 225 9 90 6 36 10 40 8 15 10 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 0 16 359 3 1 47 252 merca222 merca241 0 120 473 15 189 12 57 10 62 8 235 20 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 0 16 359 3 1 77 252 merca222 merca241 0 120 945 24 459 18 81 10 86 8 715 30 5 24 30 4 106 4 swor shie cold 10 Glacial Spike 7 60 0 9 5 Frozen Armor 7 1000 0 17 10 Ice Blast 7 240 0 21 10 2 2 2 1
Eastern Sorceror Ltng-Normal 0 17 359 3 1 25 252 merca222 merca241 0 110 225 9 90 6 36 10 40 8 15 10 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 0 17 359 3 1 47 252 merca222 merca241 0 110 473 15 189 12 57 10 62 8 235 20 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 0 17 359 3 1 77 252 merca222 merca241 0 110 945 24 459 18 81 10 86 8 715 30 5 24 30 4 106 4 swor shie ltng 10 Charged Bolt 7 60 0 12 5 Lightning 7 30 0 18 10 2 2 2 1
Eastern Sorceror Fire-Nightmare 0 18 359 3 2 47 252 merca222 merca241 0 120 424 15 168 12 54 10 58 8 212 20 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 0 18 359 3 2 77 252 merca222 merca241 0 120 896 24 438 18 78 10 82 8 692 30 5 22 28 4 103 4 swor shie fire 10 Inferno 7 60 0 20 10 Fire Ball 7 30 0 18 10 2 2 2 1
Eastern Sorceror Cold-Nightmare 0 19 359 3 2 47 252 merca222 merca241 0 130 424 15 168 12 54 10 58 8 212 20 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 0 19 359 3 2 77 252 merca222 merca241 0 130 896 24 438 18 78 10 82 8 692 30 5 22 28 4 103 4 swor shie cold 10 Glacial Spike 7 60 0 8 5 Frozen Armor 7 1000 0 16 10 Ice Blast 7 240 0 20 10 2 2 2 1
Eastern Sorceror Ltng-Nightmare 0 20 359 3 2 47 252 merca222 merca241 0 120 424 15 168 12 54 10 58 8 212 20 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 0 20 359 3 2 77 252 merca222 merca241 0 120 896 24 438 18 78 10 82 8 692 30 5 22 28 4 103 4 swor shie ltng 10 Charged Bolt 7 60 0 11 5 Lightning 7 30 0 17 10 2 2 2 1
Eastern Sorceror Fire-Hell 0 21 359 3 3 77 252 merca222 merca241 0 130 806 24 396 18 75 10 78 8 623 30 5 20 26 4 100 4 swor shie fire 10 Inferno 7 60 0 19 10 Fire Ball 7 30 0 17 10 2 2 2 1
Eastern Sorceror Cold-Hell 0 22 359 3 3 77 252 merca222 merca241 0 140 806 24 396 18 75 10 78 8 623 30 5 20 26 4 100 4 swor shie cold 10 Glacial Spike 7 60 0 7 5 Frozen Armor 7 1000 0 15 10 Ice Blast 7 240 0 19 10 2 2 2 1
Eastern Sorceror Ltng-Hell 0 23 359 3 3 77 252 merca222 merca241 0 130 806 24 396 18 75 10 78 8 623 30 5 20 27 4 100 4 swor shie ltng 10 Charged Bolt 7 60 0 10 5 Lightning 7 30 0 16 10 2 2 2 1
Eastern Sorceror Fire-Normal 100 15 359 3 1 25 252 merca222 merca241 0 110 375 12 150 6 36 10 40 8 15 12 1 7 4 25 7 swor shie fire 10 Fire Bolt 7 30 0 2 10 Fire Ball 7 30 0 4 10 Fire Wall 7 30 0 4 10 Meteor 7 0 0 4 10 Hydra 7 0 0 0 0 Fire Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Fire-Normal 100 15 359 3 1 50 252 merca222 merca241 0 110 656 21 282 15 69 10 74 8 423 24 3 18 24 4 85 7 swor shie fire 10 Fire Bolt 7 30 0 13 10 Fire Ball 7 30 0 14 10 Fire Wall 7 30 0 14 10 Meteor 7 30 0 14 10 Hydra 7 30 4 8 10 Fire Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Fire-Normal 100 15 359 3 1 77 252 merca222 merca241 0 110 1414 30 720 30 96 10 104 8 1143 36 5 33 39 4 138 6 swor shie fire 10 Fire Bolt 7 30 0 23 10 Fire Ball 7 30 0 24 10 Fire Wall 7 30 0 24 10 Meteor 7 30 0 24 10 Hydra 7 30 4 18 10 Fire Mastery 10 0 0 6 32 2 2 2 1
Eastern Sorceror Cold-Normal 100 16 359 3 1 25 252 merca222 merca241 0 120 375 12 150 6 36 10 40 8 15 12 1 7 4 25 7 swor shie cold 10 Frozen Armor 7 999 0 2 10 Frost Nova 7 30 0 4 10 Glacial Spike 7 30 0 4 10 Blizzard 7 0 0 4 10 Frozen Orb 7 0 0 0 0 Cold Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Cold-Normal 100 16 359 3 1 50 252 merca222 merca241 0 120 656 21 282 15 69 10 74 8 423 24 3 18 24 4 85 7 swor shie cold 10 Frozen Armor 7 999 0 13 10 Frost Nova 7 30 0 14 10 Glacial Spike 7 30 0 14 10 Blizzard 7 30 0 14 10 Frozen Orb 7 30 4 8 10 Cold Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Cold-Normal 100 16 359 3 1 77 252 merca222 merca241 0 120 1414 30 720 30 96 10 104 8 1143 36 5 33 39 4 138 4 swor shie cold 10 Frozen Armor 7 999 0 23 10 Frost Nova 7 30 0 24 10 Glacial Spike 7 30 0 24 10 Blizzard 7 30 0 24 10 Frozen Orb 7 30 4 18 10 Cold Mastery 10 0 0 6 32 2 2 2 1
Eastern Sorceror Ltng-Normal 100 17 359 3 1 25 252 merca222 merca241 0 110 375 12 150 6 36 10 40 8 15 12 1 7 4 25 7 swor shie ltng 10 Charged Bolt 7 30 0 2 10 Static Field 7 30 0 4 10 Lightning 7 30 0 4 10 Nova 7 0 0 4 10 Chain Lightning 7 0 0 0 0 Lightning Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Ltng-Normal 100 17 359 3 1 50 252 merca222 merca241 0 110 656 21 282 15 69 10 74 8 423 24 3 18 24 4 85 7 swor shie ltng 10 Charged Bolt 7 30 0 13 10 Static Field 7 30 0 14 10 Lightning 7 30 0 14 10 Nova 7 30 0 14 10 Chain Lightning 7 30 4 8 10 Lightning Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Ltng-Normal 100 17 359 3 1 77 252 merca222 merca241 0 110 1414 30 720 30 96 10 104 8 1143 36 5 33 39 4 138 4 swor shie ltng 10 Charged Bolt 7 30 0 23 10 Static Field 7 30 0 24 10 Lightning 7 30 0 24 10 Nova 7 30 0 24 10 Chain Lightning 7 30 4 18 10 Lightning Mastery 10 0 0 6 32 2 2 2 1
Eastern Sorceror Fire-Nightmare 100 18 359 3 2 50 252 merca222 merca241 0 120 589 21 252 15 66 10 70 8 381 24 3 16 22 4 82 7 swor shie fire 10 Fire Bolt 7 30 0 13 10 Fire Ball 7 30 0 14 10 Fire Wall 7 30 0 14 10 Meteor 7 30 0 14 10 Hydra 7 30 4 8 10 Fire Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Fire-Nightmare 100 18 359 3 2 77 252 merca222 merca241 0 120 1350 30 690 30 96 10 100 8 1101 36 5 31 37 4 135 4 swor shie fire 10 Fire Bolt 7 30 0 23 10 Fire Ball 7 30 0 24 10 Fire Wall 7 30 0 24 10 Meteor 7 30 0 24 10 Hydra 7 30 4 18 10 Fire Mastery 10 0 0 6 32 2 2 2 1
Eastern Sorceror Cold-Nightmare 100 19 359 3 2 50 252 merca222 merca241 0 130 589 21 252 15 66 10 70 8 381 24 3 16 22 4 82 7 swor shie cold 10 Frozen Armor 7 999 0 13 10 Frost Nova 7 30 0 14 10 Glacial Spike 7 30 0 14 10 Blizzard 7 30 0 14 10 Frozen Orb 7 30 4 8 10 Cold Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Cold-Nightmare 100 19 359 3 2 77 252 merca222 merca241 0 130 1350 30 690 30 96 10 100 8 1101 36 5 31 37 4 135 4 swor shie cold 10 Frozen Armor 7 999 0 23 10 Frost Nova 7 30 0 24 10 Glacial Spike 7 30 0 24 10 Blizzard 7 30 0 24 10 Frozen Orb 7 30 4 18 10 Cold Mastery 10 0 0 6 32 2 2 2 1
Eastern Sorceror Ltng-Nightmare 100 20 359 3 2 50 252 merca222 merca241 0 120 589 21 252 15 66 10 70 8 381 24 3 16 22 4 82 7 swor shie ltng 10 Charged Bolt 7 30 0 13 10 Static Field 7 30 0 14 10 Lightning 7 30 0 14 10 Nova 7 30 0 14 10 Chain Lightning 7 30 4 8 10 Lightning Mastery 10 0 0 0 0 2 2 2 1
Eastern Sorceror Ltng-Nightmare 100 20 359 3 2 77 252 merca222 merca241 0 120 1350 30 690 30 96 10 100 8 1101 36 5 31 37 4 135 4 swor shie ltng 10 Charged Bolt 7 30 0 23 10 Static Field 7 30 0 24 10 Lightning 7 30 0 24 10 Nova 7 30 0 24 10 Chain Lightning 7 30 4 18 10 Lightning Mastery 10 0 0 6 32 2 2 2 1
Eastern Sorceror Fire-Hell 100 21 359 3 3 77 252 merca222 merca241 0 130 1215 30 624 30 90 10 96 8 991 36 5 29 35 4 132 4 swor shie fire 10 Fire Bolt 7 30 0 23 10 Fire Ball 7 30 0 24 10 Fire Wall 7 30 0 24 10 Meteor 7 30 0 24 10 Hydra 7 30 4 18 10 Fire Mastery 10 0 0 6 32 2 2 2 1
Eastern Sorceror Cold-Hell 100 22 359 3 3 77 252 merca222 merca241 0 140 1215 30 624 30 90 10 96 8 991 36 5 29 35 4 132 4 swor shie cold 10 Frozen Armor 7 999 0 23 10 Frost Nova 7 30 0 24 10 Glacial Spike 7 30 0 24 10 Blizzard 7 30 0 24 10 Frozen Orb 7 30 4 18 10 Cold Mastery 10 0 0 6 32 2 2 2 1
Eastern Sorceror Ltng-Hell 100 23 359 3 3 77 252 merca222 merca241 0 130 1215 30 624 30 90 10 96 8 991 36 5 29 36 4 132 4 swor shie ltng 10 Charged Bolt 7 30 0 23 10 Static Field 7 30 0 24 10 Lightning 7 30 0 24 10 Nova 7 30 0 24 10 Chain Lightning 7 30 4 18 10 Lightning Mastery 10 0 0 6 32 2 2 2 1
Barbarian 1hs-Normal 0 24 561 5 1 38 515 MercX101 MercX167 0 120 405 15 204 6 75 15 63 10 150 17 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 0 24 561 5 1 55 515 MercX101 MercX167 0 120 683 24 312 24 96 15 81 10 388 27 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 0 24 561 5 1 85 515 MercX101 MercX167 0 120 1658 39 1056 45 144 15 123 10 1279 37 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 0 25 561 5 1 38 515 MercX101 MercX167 0 120 405 15 204 6 75 15 63 10 150 17 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 0 25 561 5 1 55 515 MercX101 MercX167 0 120 683 24 312 24 96 15 81 10 388 27 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 0 25 561 5 1 85 515 MercX101 MercX167 0 120 1658 39 1056 45 144 15 123 10 1279 37 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 0 26 561 5 2 55 515 MercX101 MercX167 0 130 615 24 282 24 93 15 76 10 349 27 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 0 26 561 5 2 85 515 MercX101 MercX167 0 130 1590 39 1023 45 141 15 118 10 1240 37 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 0 27 561 5 2 55 515 MercX101 MercX167 0 130 615 24 282 24 93 15 76 10 349 27 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 0 27 561 5 2 85 515 MercX101 MercX167 0 130 1590 39 1023 45 141 15 118 10 1240 37 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 0 28 561 5 3 85 515 MercX101 MercX167 0 140 1429 39 921 45 138 15 113 10 1116 37 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 0 29 561 5 3 85 515 MercX101 MercX167 0 140 1429 39 921 45 138 15 113 10 1116 37 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-Normal 100 24 561 5 1 38 515 MercX101 MercX167 0 120 556 21 324 12 75 15 63 10 150 20 1 16 20 6 56 7 swor 50 Bash 5 15 0 4 10 Stun 5 15 0 3 8 Battle Orders1 4 999 0 1 10 Battle Cry 4 0 0 0 0 War Cry 4 0 0 0 0 0 0 0 0
Barbarian 1hs-Normal 100 24 561 5 1 61 515 MercX101 MercX167 0 120 1163 30 540 39 120 15 101 10 750 35 1 39 43 8 109 7 swor 50 Bash 5 50 0 14 10 Stun 5 50 0 11 8 Battle Orders1 4 999 0 11 10 Battle Cry 4 25 0 8 10 War Cry 4 0 0 0 0 0 0 0 0
Barbarian 1hs-Normal 100 24 561 5 1 84 515 MercX101 MercX167 0 120 1999 51 1407 57 150 15 129 10 1520 45 1 61 65 8 148 4 swor 50 Bash 5 75 0 21 0 Stun 5 75 0 17 0 Battle Orders1 4 999 0 21 10 Battle Cry 4 25 0 18 16 War Cry 4 25 10 12 32 0 0 0 0
Barbarian 1hs-Normal 100 25 561 5 1 38 515 MercX101 MercX167 0 120 556 21 324 12 75 15 63 10 150 20 1 16 20 6 56 7 swor 50 Bash 5 15 0 4 10 Stun 5 15 0 3 8 Battle Orders1 4 999 0 1 10 Battle Cry 4 0 0 0 0 War Cry 4 0 0 0 0 0 0 0 0
Barbarian 1hs-Normal 100 25 561 5 1 61 515 MercX101 MercX167 0 120 1163 30 540 39 120 15 101 10 750 35 1 39 43 8 109 7 swor 50 Bash 5 50 0 14 10 Stun 5 50 0 11 8 Battle Orders1 4 999 0 11 10 Battle Cry 4 25 0 8 10 War Cry 4 0 0 0 0 0 0 0 0
Barbarian 1hs-Normal 100 25 561 5 1 84 515 MercX101 MercX167 0 120 1999 51 1407 57 150 15 129 10 1520 45 1 61 65 8 148 4 swor 50 Bash 5 75 0 21 0 Stun 5 75 0 17 0 Battle Orders1 4 999 0 21 10 Battle Cry 4 25 0 18 16 War Cry 4 25 10 12 32 0 0 0 0
Barbarian 1hs-Nightmare 100 26 561 5 2 61 515 MercX101 MercX167 0 130 1050 30 486 39 117 15 96 10 675 35 4 37 41 8 106 7 swor 50 Bash 5 50 0 13 10 Stun 5 50 0 10 8 Battle Orders1 4 999 0 11 10 Battle Cry 4 25 0 8 10 War Cry 4 0 0 0 0 0 0 0 0
Barbarian 1hs-Nightmare 100 26 561 5 2 84 515 MercX101 MercX167 0 130 1883 51 1353 57 147 15 124 10 1445 45 4 59 63 8 145 4 swor 50 Bash 5 75 0 20 0 Stun 5 75 0 16 0 Battle Orders1 4 999 0 21 10 Battle Cry 4 25 0 18 16 War Cry 4 25 10 12 32 0 0 0 0
Barbarian 1hs-Nightmare 100 27 561 5 2 61 515 MercX101 MercX167 0 130 1050 30 486 39 117 15 96 10 675 35 4 37 41 8 106 7 swor 50 Bash 5 50 0 13 10 Stun 5 50 0 10 8 Battle Orders1 4 999 0 11 10 Battle Cry 4 25 0 8 10 War Cry 4 0 0 0 0 0 0 0 0
Barbarian 1hs-Nightmare 100 27 561 5 2 84 515 MercX101 MercX167 0 130 1883 51 1353 57 147 15 124 10 1445 45 4 59 63 8 145 4 swor 50 Bash 5 75 0 20 0 Stun 5 75 0 16 0 Battle Orders1 4 999 0 21 10 Battle Cry 4 25 0 18 16 War Cry 4 25 10 12 32 0 0 0 0
Barbarian 1hs-Hell 100 28 561 5 3 84 515 MercX101 MercX167 0 140 1695 51 1218 57 144 15 119 10 1301 45 6 57 61 8 142 4 swor 50 Bash 5 70 0 19 0 Stun 5 70 0 15 0 Battle Orders1 4 999 0 21 10 Battle Cry 4 25 0 18 16 War Cry 4 25 10 12 32 0 0 0 0
Barbarian 1hs-Hell 100 29 561 5 3 84 515 MercX101 MercX167 0 140 1695 51 1218 57 144 15 119 10 1301 45 6 57 61 8 142 4 swor 50 Bash 5 70 0 19 0 Stun 5 70 0 15 0 Battle Orders1 4 999 0 21 10 Battle Cry 4 25 0 18 16 War Cry 4 25 10 12 32 0 0 0 0

View File

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

View File

@ -1,34 +0,0 @@
class invLeft invRight invTop invBottom gridX gridY 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 512 1024 0 720 16 8 535 999 393 625 29 29 550 617 118 260 68 144 734 801 157 260 68 105 918 985 118 260 68 144 734 801 58 124 68 68 828 857 96 124 30 30 678 707 232 260 30 30 828 857 232 260 30 30 734 801 283 312 68 31 828 895 283 349 68 68 640 707 283 349 68 68
Sorceress 512 1024 0 720 16 8 535 999 393 625 29 29 550 617 118 260 68 144 734 801 157 260 68 105 918 985 118 260 68 144 734 801 58 124 68 68 828 857 96 124 30 30 678 707 232 260 30 30 828 857 232 260 30 30 734 801 283 312 68 31 828 895 283 349 68 68 640 707 283 349 68 68
Necromancer 512 1024 0 720 16 8 534 999 392 625 29 29 550 617 118 260 68 144 734 801 157 260 68 105 918 985 118 260 68 144 734 801 58 124 68 68 828 857 96 124 30 30 678 707 232 260 30 30 828 857 232 260 30 30 734 801 283 312 68 31 828 895 283 349 68 68 640 707 283 349 68 68
Paladin 512 1024 0 720 16 8 535 999 393 625 29 29 550 617 118 260 68 144 734 801 157 260 68 105 918 985 118 260 68 144 734 801 58 124 68 68 828 857 96 124 30 30 678 707 232 260 30 30 828 857 232 260 30 30 734 801 283 312 68 31 828 895 283 349 68 68 640 707 283 349 68 68
Barbarian 512 1024 0 720 16 8 535 999 393 625 29 29 550 617 118 260 68 144 734 801 157 260 68 105 918 985 118 260 68 144 734 801 58 124 68 68 828 857 96 124 30 30 678 707 232 260 30 30 828 857 232 260 30 30 734 801 283 312 68 31 828 895 283 349 68 68 640 707 283 349 68 68
Monster 0 512 0 720 13 13 68 444 161 537 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 512 0 359 12 9 83 430 22 282 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 512 359 720 12 9 83 430 438 698 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 512 0 720 8 8 141 372 140 371 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 512 0 720 16 15 24 488 153 588 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 62 129 82 225 68 144 222 289 121 225 68 105 382 449 82 225 68 144 222 289 32 99 68 68 321 350 121 150 30 30 161 190 248 277 30 30 321 350 248 277 30 30 222 289 247 277 68 31 382 449 247 314 68 68 62 129 247 314 68 68
Druid 512 1024 0 720 16 8 535 999 393 625 29 29 550 617 118 260 68 144 734 801 157 260 68 105 918 985 118 260 68 144 734 801 58 124 68 68 828 857 96 124 30 30 678 707 232 260 30 30 828 857 232 260 30 30 734 801 283 312 68 31 828 895 283 349 68 68 640 707 283 349 68 68
Assassin 512 1024 0 720 16 8 535 999 393 625 29 29 550 617 118 260 68 144 734 801 157 260 68 105 918 985 118 260 68 144 734 801 58 124 68 68 828 857 96 124 30 30 678 707 232 260 30 30 828 857 232 260 30 30 734 801 283 312 68 31 828 895 283 349 68 68 640 707 283 349 68 68
Amazon2 640 1152 0 720 16 8 663 1127 393 624 29 29 678 745 118 260 68 144 862 929 157 260 68 105 1046 1113 118 260 68 144 862 929 58 124 68 68 956 985 96 124 30 30 806 835 232 260 30 30 956 985 232 260 30 30 862 929 283 312 68 31 956 1023 283 349 68 68 768 835 283 349 68 68
Sorceress2 640 1152 0 720 16 8 663 1127 393 624 29 29 678 745 118 260 68 144 862 929 157 260 68 105 1046 1113 118 260 68 144 862 929 58 124 68 68 956 985 96 124 30 30 806 835 232 260 30 30 956 985 232 260 30 30 862 929 283 312 68 31 956 1023 283 349 68 68 768 835 283 349 68 68
Necromancer2 640 1152 0 720 16 8 663 1127 393 624 29 29 678 745 118 260 68 144 862 929 157 260 68 105 1046 1113 118 260 68 144 862 929 58 124 68 68 956 985 96 124 30 30 806 835 232 260 30 30 956 985 232 260 30 30 862 929 283 312 68 31 956 1023 283 349 68 68 768 835 283 349 68 68
Paladin2 640 1152 0 720 16 8 663 1127 393 624 29 29 678 745 118 260 68 144 862 929 157 260 68 105 1046 1113 118 260 68 144 862 929 58 124 68 68 956 985 96 124 30 30 806 835 232 260 30 30 956 985 232 260 30 30 862 929 283 312 68 31 956 1023 283 349 68 68 768 835 283 349 68 68
Barbarian2 640 1152 0 720 16 8 663 1127 393 624 29 29 678 745 118 260 68 144 862 929 157 260 68 105 1046 1113 118 260 68 144 862 929 58 124 68 68 956 985 96 124 30 30 806 835 232 260 30 30 956 985 232 260 30 30 862 929 283 312 68 31 956 1023 283 349 68 68 768 835 283 349 68 68
Monster2 128 640 0 720 13 13 196 571 162 537 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 128 640 0 359 12 9 211 557 23 282 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 128 640 359 720 12 9 211 557 439 698 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 128 640 0 720 8 8 269 499 141 371 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 128 640 0 720 16 15 152 616 153 588 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 190 257 82 225 68 144 350 417 121 225 68 105 510 577 82 225 68 144 350 417 32 99 68 68 449 478 121 150 30 30 289 318 248 277 30 30 449 478 248 277 30 30 350 417 247 277 68 31 510 577 247 314 68 68 190 257 247 314 68 68
Druid2 640 1152 0 720 16 8 663 1127 393 624 29 29 678 745 118 260 68 144 862 929 157 260 68 105 1046 1113 118 260 68 144 862 929 58 124 68 68 956 985 96 124 30 30 806 835 232 260 30 30 956 985 232 260 30 30 862 929 283 312 68 31 956 1023 283 349 68 68 768 835 283 349 68 68
Assassin2 640 1152 0 720 16 8 663 1127 393 624 29 29 678 745 118 260 68 144 862 929 157 260 68 105 1046 1113 118 260 68 144 862 929 58 124 68 68 956 985 96 124 30 30 806 835 232 260 30 30 956 985 232 260 30 30 862 929 283 312 68 31 956 1023 283 349 68 68 768 835 283 349 68 68

View File

@ -1,7 +0,0 @@
Function Version Uber Class Specific Unique UniqueDivisor UniqueMin Rare RareDivisor RareMin Set SetDivisor SetMin Magic MagicDivisor MagicMin HiQuality HiQualityDivisor Normal NormalDivisor
Ratio - (Monster Level / Ratio Divisor) 0 0 0 400 2 6400 160 3 3200 125 6 5600 16 16 192 12 16 4 8
Uber 0 1 0 240 2 6400 96 3 3200 96 6 5600 8 100 192 4 16 1 8
Ratio - (Monster Level / Ratio Divisor) 1 0 0 400 1 6400 100 2 3200 160 2 5600 20 3 192 12 8 2 2
Uber 1 1 0 400 1 6400 100 2 3200 160 2 5600 20 3 192 12 8 1 1
Class Specific 1 0 1 240 3 6400 80 3 3200 120 3 5600 8 6 192 9 8 2 2
Class Specific Uber 1 1 1 240 3 6400 80 3 3200 120 3 5600 8 6 192 9 8 1 1

View File

@ -1,433 +0,0 @@
Stat ID Send Other Signed Send Bits Send Param Bits UpdateAnimRate Saved CSvSigned CSvBits CSvParam fCallback fMin MinAccr Encode Add Multiply Divide ValShift 1.09-Save Bits 1.09-Save Add Save Bits Save Add Save Param Bits keepzero op op param op base op stat1 op stat2 op stat3 direct maxstat itemspecific damagerelated itemevent1 itemeventfunc1 itemevent2 itemeventfunc2 descpriority descfunc descval descstrpos descstrneg descstr2 dgrp dgrpfunc dgrpval dgrpstrpos dgrpstrneg dgrpstr2 stuff *eol
strength 0 1 11 1 0 10 1 1 125 55 1024 7 32 8 32 67 1 1 ModStr1a ModStr1a 1 1 1 Moditem2allattrib Moditem2allattrib 6 0
energy 1 11 1 0 10 1 1 100 55 1024 7 32 7 32 8 maxmana 61 1 1 ModStr1d ModStr1d 1 1 1 Moditem2allattrib Moditem2allattrib 0
dexterity 2 1 11 1 0 10 1 1 125 55 1024 7 32 7 32 65 1 1 ModStr1b ModStr1b 1 1 1 Moditem2allattrib Moditem2allattrib 0
vitality 3 11 1 0 10 1 1 100 55 1024 7 32 7 32 9 maxhp maxstamina 63 1 1 ModStr1c ModStr1c 1 1 1 Moditem2allattrib Moditem2allattrib 0
statpts 4 9 1 0 10 1024 0
newskills 5 9 1 0 8 1024 0
hitpoints 6 32 1 0 21 1024 8 1 maxhp 0
maxhp 7 32 1 0 21 1 1 1 56 20 1024 8 8 32 10 273 59 1 1 ModStr1u ModStr1u 0
mana 8 32 1 0 21 1024 8 1 1 maxmana 0
maxmana 9 32 1 0 21 1 1 0 81 20 1024 8 8 32 9 161 55 1 1 ModStr1e ModStr1e 0
stamina 10 32 1 0 21 1024 8 1 1 maxstamina 0
maxstamina 11 32 1 0 21 1 1 0 75 20 1024 8 8 32 8 32 51 1 1 ModStr5d ModStr5d 0
level 12 9 1 0 7 1024 0
experience 13 32 1 0 32 1024 0
gold 14 32 1 0 25 1024 0
goldbank 15 32 1 0 25 1024 0
item_armor_percent 16 1 11 47 20 1024 9 0 9 0 13 armorclass 74 4 1 Modstr2v Modstr2v 0
item_maxdamage_percent 17 1 11 45 20 1024 9 0 9 0 13 maxdamage secondary_maxdamage item_throw_maxdamage 1 129 3 0 ModStr2j ModStr2j 0
item_mindamage_percent 18 1 11 45 20 1024 9 0 9 0 13 mindamage secondary_mindamage item_throw_mindamage 1 130 3 0 ModStr2k ModStr2k 0
tohit 19 1 16 15 10 1024 10 10 1 115 1 1 ModStr1h ModStr1h 0
toblock 20 1 10 89 204 1024 6 0 6 0 134 2 1 ModStr3g ModStr3g 0
mindamage 21 1 16 122 25 1024 6 0 8 5 1 127 1 1 ModStr1g ModStr1g 0
maxdamage 22 1 16 94 16 1024 7 0 9 11 1 126 1 1 ModStr1f ModStr1f 0
secondary_mindamage 23 1 16 97 15 1024 6 0 8 5 1 124 1 1 ModStr1g ModStr1g 0
secondary_maxdamage 24 1 16 85 11 1024 7 0 9 11 1 123 1 1 ModStr1f ModStr1f 0
damagepercent 25 1 12 45 40 1024 8 0 8 0 1 0
manarecovery 26 1024 8 0 8 0 0
manarecoverybonus 27 1 16 1024 8 0 8 0 52 2 2 ModStr4g ModStr4g 0
staminarecoverybonus 28 1 16 1024 8 0 8 0 48 2 2 ModStr3v ModStr3v 0
lastexp 29 32 1024 0
nextexp 30 32 1024 0
armorclass 31 1 16 17 10 1024 10 10 11 10 71 1 1 ModStr1i ModStr1i 0
armorclass_vs_missile 32 1 16 11 5 1024 8 0 9 0 69 1 1 ModStr6a ModStr6a 0
armorclass_vs_hth 33 1 16 13 7 1024 8 0 8 0 70 1 1 ModStr6b ModStr6b 0
normal_damage_reduction 34 1 10 188 200 1024 6 0 6 0 22 3 2 ModStr2u ModStr2u 0
magic_damage_reduction 35 1 10 397 340 1024 6 0 6 0 21 3 2 ModStr2t ModStr2t 0
damageresist 36 1 9 152 68 1024 8 0 8 0 22 2 2 ModStr2u ModStr2u 0
magicresist 37 1 9 164 68 1024 8 0 8 0 41 4 2 ModStr1m ModStr1m 0
maxmagicresist 38 1 9 1091 409 1024 5 0 5 0 46 4 1 ModStr5x ModStr5x 0
fireresist 39 1 9 43 20 1024 8 0 8 50 36 4 2 ModStr1j ModStr1j 2 19 strModAllResistances strModAllResistances 0
maxfireresist 40 1 9 584 256 1024 5 0 5 0 42 4 1 ModStr5u ModStr5u 0
lightresist 41 1 9 43 20 1024 8 0 8 50 38 4 2 ModStr1l ModStr1l 2 19 strModAllResistances strModAllResistances 0
maxlightresist 42 1 9 584 256 1024 5 0 5 0 43 4 1 ModStr5w ModStr5w 0
coldresist 43 1 9 43 20 1024 8 0 8 50 40 4 2 ModStr1k ModStr1k 2 19 strModAllResistances strModAllResistances 0
maxcoldresist 44 1 9 584 256 1024 5 0 5 0 44 4 1 ModStr5v ModStr5v 0
poisonresist 45 1 9 43 20 1024 8 0 8 50 34 4 2 ModStr1n ModStr1n 2 19 strModAllResistances strModAllResistances 0
maxpoisonresist 46 1 9 526 256 1024 5 0 5 0 45 4 1 ModStr5y ModStr5y 0
damageaura 47 1 16 1024 0
firemindam 48 1 16 11 10 1024 8 0 8 0 1 102 1 1 ModStr1p ModStr1p 0
firemaxdam 49 1 16 19 10 1024 8 0 9 0 1 101 1 1 ModStr1o ModStr1o 0
lightmindam 50 1 16 12 10 1024 6 0 6 0 1 99 1 1 ModStr1r ModStr1r 0
lightmaxdam 51 1 16 17 10 1024 9 0 10 0 1 98 1 1 ModStr1q ModStr1q 0
magicmindam 52 1 16 196 20 1024 6 0 8 0 1 104 1 1 strModMagicDamage strModMagicDamage 0
magicmaxdam 53 1 16 183 20 1024 7 0 9 0 1 103 1 1 strModMagicDamage strModMagicDamage 0
coldmindam 54 1 16 451 512 1024 6 0 8 0 1 96 1 1 ModStr1t ModStr1t 0
coldmaxdam 55 1 16 128 340 1024 8 0 9 0 1 95 1 1 ModStr1s ModStr1s 0
coldlength 56 1 16 77 4 1024 8 0 8 0 1 0
poisonmindam 57 1 19 12 28 1024 9 0 10 0 1 92 1 1 ModStr4i ModStr4i 0
poisonmaxdam 58 1 19 11 34 1024 9 0 10 0 1 91 1 1 ModStr4h ModStr4h 0
poisonlength 59 1 16 0 4 1024 8 0 9 0 1 0
lifedrainmindam 60 1 16 1044 341 1024 7 0 7 0 1 88 2 1 ModStr2z ModStr2z 0
lifedrainmaxdam 61 1 16 1024 1 0
manadrainmindam 62 1 16 1179 341 1024 7 0 7 0 1 89 2 1 ModStr2y ModStr2y 0
manadrainmaxdam 63 1 16 1024 1 0
stamdrainmindam 64 1 16 1024 1 0
stamdrainmaxdam 65 1 16 1024 1 0
stunlength 66 16 1024 1 0
velocitypercent 67 1 1 10 1 1024 7 30 7 30 0
attackrate 68 1 1 10 1 1024 7 30 7 30 1 0
other_animrate 69 1 1 10 1 1024 0
quantity 70 1 16 1024 1 1 0
value 71 1 9 1024 8 100 8 100 1 0
durability 72 1 9 1024 8 0 9 0 1 maxdurability 1 0
maxdurability 73 1 9 9 4 1024 8 0 8 0 1 0
hpregen 74 451 410 1024 6 30 6 30 56 1 2 ModStr2l ModStr2w 0
item_maxdurability_percent 75 1 7 117 10 1024 7 20 7 20 13 maxdurability 3 2 2 ModStr2i ModStr2i 0
item_maxhp_percent 76 1 16 32093 204 1024 6 10 6 10 11 maxhp 58 2 2 ModStr2g ModStr2g 0
item_maxmana_percent 77 1 16 56452 204 1024 6 10 6 10 11 maxmana 54 2 2 ModStr2h ModStr2h 0
item_attackertakesdamage 78 1 16 1 112 128 1024 7 0 7 0 damagedinmelee 6 13 3 2 ModStr1v ModStr1v 0
item_goldbonus 79 1 10 187 34 1024 9 100 9 100 10 2 1 ModStr1w ModStr1w 0
item_magicbonus 80 1 9 577 102 1024 8 100 9 211 8 2 1 ModStr1x ModStr1x 0
item_knockback 81 1 8 1 105 0 1024 7 0 7 0 1 domeleedamage 7 domissiledamage 7 76 3 0 ModStr1y ModStr1y 0
item_timeduration 82 1 10 1024 9 20 9 20 0
item_addclassskills 83 1 4 3 1 49523 1560 1024 3 0 3 0 3 150 13 1 ModStr3a ModStr3a 0
unsentparam1 84 1024 3 0 0
item_addexperience 85 1 9 36015 519 1024 3 0 9 50 11 4 1 Moditem2ExpG Moditem2ExpG 0
item_healafterkill 86 1 7 1 30 101 1024 3 0 7 0 kill 28 16 1 1 ModitemHPaK ModitemHPaK 0
item_reducedprices 87 8 18957 203 1024 3 0 7 0 8 2 2 ModitemRedVendP ModitemRedVendP 0
item_doubleherbduration 88 1 2 1024 1 0 1 0 0
item_lightradius 89 1 5 1 15 51 1024 4 4 4 4 6 1 1 ModStr3f ModStr3f 0
item_lightcolor 90 1 24 1 155 0 1024 5 0 24 0 0
item_req_percent 91 1 8 26 -34 1024 8 100 8 100 0 4 2 ModStr3h ModStr3h 0
item_levelreq 92 1024 6 20 7 10 0
item_fasterattackrate 93 1 1 9 1042 156 1024 7 20 7 20 1 145 4 1 ModStr4m ModStr4m 0
item_levelreqpct 94 1024 7 20 7 64 13 item_levelreq 0
lastblockframe 95 1024 6 20 0
item_fastermovevelocity 96 1 1 9 4083 156 1024 7 20 7 20 148 4 1 ModStr4s ModStr4s 0
item_nonclassskill 97 1 15 9 1 1 181 327 1024 7 20 6 0 9 81 28 0
state 98 1 1 8 1 415 64 1024 6 20 1 8 0
item_fastergethitrate 99 1 1 9 1065 72 1024 7 20 7 20 139 4 1 ModStr4p ModStr4p 0
monster_playercount 100 1024 7 20 0
skill_poison_override_length 101 8 1024 6 20 0
item_fasterblockrate 102 1 1 9 1484 72 1024 7 20 7 20 136 4 1 ModStr4y ModStr4y 0
skill_bypass_undead 103 1 1024 7 20 0
skill_bypass_demons 104 1 1024 6 20 0
item_fastercastrate 105 1 1 9 3876 156 1024 7 20 7 20 142 4 1 ModStr4v ModStr4v 0
skill_bypass_beasts 106 1 1024 7 20 0
item_singleskill 107 1 15 9 1 1 181 256 1024 14 0 3 0 9 81 27 0
item_restinpeace 108 1 1 1987 0 1024 14 0 1 0 1 kill 29 81 3 0 ModitemSMRIP ModitemSMRIP 0
curse_resistance 109 9 159 33 1024 14 0 9 0 0
item_poisonlengthresist 110 1 9 27 10 1024 8 20 8 20 18 2 2 ModStr3r ModStr3r 0
item_normaldamage 111 1 8 94 100 1024 7 20 9 20 1 122 1 2 ModStr5b ModStr5b 0
item_howl 112 1 8 1 55 10 1024 7 -1 7 -1 1 domeleedamage 8 domissiledamage 8 79 5 2 ModStr3u ModStr3u 0
item_stupidity 113 1 8 1 332 1024 1024 7 0 7 0 1 domeleedamage 9 domissiledamage 9 80 12 2 ModStr6d ModStr6d 0
item_damagetomana 114 1 7 1 43 20 1024 6 0 6 0 damagedinmelee 13 damagedbymissile 13 11 2 1 ModStr3w ModStr3w 0
item_ignoretargetac 115 1 2 1088 1024 1024 1 0 1 0 1 119 3 0 ModStr3y ModStr3y 0
item_fractionaltargetac 116 1 8 67 20 1024 7 0 7 0 1 118 20 1 ModStr5o ModStr5o 0
item_preventheal 117 1 8 48 50 1024 7 0 7 0 1 81 3 0 ModStr4a ModStr4a 0
item_halffreezeduration 118 1 2 5096 988 1024 1 0 1 0 19 3 0 ModStr4b ModStr4b 0
item_tohit_percent 119 1 12 981 40 1024 9 20 9 20 1 117 2 1 ModStr4c ModStr4c 0
item_damagetargetac 120 1 8 24 -20 1024 7 128 7 128 1 75 1 1 ModStr4d ModStr4d 0
item_demondamage_percent 121 1 12 19 12 1024 9 20 9 20 1 112 4 1 ModStr4e ModStr4e 0
item_undeaddamage_percent 122 1 12 13 12 1024 9 20 9 20 1 108 4 1 ModStr4f ModStr4f 0
item_demon_tohit 123 1 13 15 7 1024 10 128 10 128 1 110 1 1 ModStr4j ModStr4j 0
item_undead_tohit 124 1 13 11 7 1024 10 128 10 128 1 106 1 1 ModStr4k ModStr4k 0
item_throwable 125 1 2 82 1024 1024 1 0 1 0 5 3 0 ModStr5a ModStr5a 0
item_elemskill 126 1 3 3 1 76 1024 1024 4 0 3 0 3 157 1 1 ModStr3i ModStr3i 0
item_allskills 127 1 8 1 15123 4096 1024 3 0 3 0 158 1 1 ModStr3k ModStr3k 0
item_attackertakeslightdamage 128 1 6 1 4 102 1024 5 0 5 0 damagedinmelee 10 14 3 2 ModStr3j ModStr3j 0
ironmaiden_level 129 1 10 1024 0
lifetap_level 130 1 10 1024 0
thorns_percent 131 12 1024 0
bonearmor 132 1 32 1024 0
bonearmormax 133 1 32 1024 0
item_freeze 134 1 5 1 666 12 1024 5 0 5 0 1 domeleedamage 14 domissiledamage 14 78 12 2 ModStr3l ModStr3l 0
item_openwounds 135 1 7 1 23 10 1024 7 0 7 0 1 domeleedamage 15 domissiledamage 15 83 2 1 ModStr3m ModStr3m 0
item_crushingblow 136 1 7 1 98 40 1024 7 0 7 0 1 domeleedamage 16 domissiledamage 16 87 2 1 ModStr5c ModStr5c 0
item_kickdamage 137 1 7 77 51 1024 7 0 7 0 121 1 1 ModStr5e ModStr5e 0
item_manaafterkill 138 1 7 1 17 102 1024 7 0 7 0 kill 17 16 1 1 ModStr5f ModStr5f 0
item_healafterdemonkill 139 1 7 1 18 102 1024 7 0 7 0 kill 18 15 1 1 ModStr6c ModStr6c 0
item_extrablood 140 1 7 15 10 1024 7 0 7 0 1 0
item_deadlystrike 141 1 7 31 25 1024 7 0 7 0 1 85 2 1 ModStr5q ModStr5q 0
item_absorbfire_percent 142 1 7 5486 102 1024 7 0 7 0 23 2 2 ModStr5g ModStr5g 0
item_absorbfire 143 1 7 1739 204 1024 7 0 7 0 27 1 1 ModStr5h ModStr5h 0
item_absorblight_percent 144 1 7 5486 102 1024 7 0 7 0 24 2 2 ModStr5i ModStr5i 0
item_absorblight 145 1 7 1739 204 1024 7 0 7 0 29 1 1 ModStr5j ModStr5j 0
item_absorbmagic_percent 146 1 7 5486 102 1024 7 0 7 0 26 2 2 ModStr5k ModStr5k 0
item_absorbmagic 147 1 7 1739 204 1024 7 0 7 0 33 1 1 ModStr5l ModStr5l 0
item_absorbcold_percent 148 1 7 5486 102 1024 7 0 7 0 25 2 2 ModStr5m ModStr5m 0
item_absorbcold 149 1 7 1739 204 1024 7 0 7 0 31 1 1 ModStr5n ModStr5n 0
item_slow 150 1 7 1 101 40 1024 7 0 7 0 1 domeleedamage 19 domissiledamage 19 77 2 2 ModStr5r ModStr5r 0
item_aura 151 1 1 1024 7 0 5 0 9 159 16 0 ModitemAura ModitemAura 0
item_indesctructible 152 1 1 1024 7 0 1 160 3 0 ModStre9s ModStre9s 0
item_cannotbefrozen 153 1 2 15011 2048 1024 1 1 20 3 0 ModStr5z ModStr5z 0
item_staminadrainpct 154 1 7 102 20 1024 7 20 7 20 1 49 2 1 ModStr6e ModStr6e 0
item_reanimate 155 7 10 1 1024 7 0 7 0 10 1 kill 31 17 23 1 Moditemreanimas Moditemreanimas 0
item_pierce 156 1 7 1924 2048 1024 7 0 7 0 1 132 3 0 ModStr6g ModStr6g 0
item_magicarrow 157 1 7 511 1024 1024 7 0 7 0 131 3 0 ModStr6h ModStr6h 0
item_explosivearrow 158 1 7 492 1536 1024 7 0 7 0 133 3 0 ModStr6i ModStr6i 0
item_throw_mindamage 159 1 6 76 128 1024 6 0 6 0 1 0
item_throw_maxdamage 160 1 7 88 128 1024 7 0 7 0 1 0
skill_handofathena 161 1 12 1024 0
skill_staminapercent 162 1 13 1024 1 maxstamina 0
skill_passive_staminapercent 163 1 12 1024 1 maxstamina 0
skill_concentration 164 1 12 1024 0
skill_enchant 165 1 12 1024 0
skill_pierce 166 1 12 1024 0
skill_conviction 167 1 12 1024 0
skill_chillingarmor 168 1 12 1024 0
skill_frenzy 169 1 12 1024 0
skill_decrepify 170 1 12 1024 0
skill_armor_percent 171 1 16 1024 0
alignment 172 1 2 1024 0
target0 173 32 1024 0
target1 174 32 1024 0
goldlost 175 24 1024 0
conversion_level 176 8 1024 0
conversion_maxhp 177 16 1024 0
unit_dooverlay 178 16 1024 0
attack_vs_montype 179 9 10 19 14 1024 3 0 9 10 1 108 22 1 ModitemAttratvsM ModitemAttratvsM 0
damage_vs_montype 180 9 10 27 17 1024 3 0 9 10 1 106 22 1 Moditemdamvsm Moditemdamvsm 0
fade 181 1 7 14 0 3 0
armor_override_percent 182 1 1 8 14 0 0
killcounter 183 32 1 0 32 1024 1 1 3 1 sdkills sdkills 0
unused184 184 14 0 0
unused185 185 14 0 0
unused186 186 14 0 0
unused187 187 14 0 0
item_addskill_tab 188 1 3 6 1 11042 768 1024 10 0 3 0 16 151 14 StrSklTabItem1 StrSklTabItem1 0
unused189 189 1024 10 0 0
unused190 190 1024 10 0 0
unused191 191 1024 10 0 0
unused192 192 1024 10 0 0
unused193 193 1024 10 0 0
item_numsockets 194 1 4 38 170 1024 4 0 4 0 1 0
item_skillonattack 195 1 7 16 1 2 190 256 1024 21 0 7 0 16 1 domeleeattack 20 domissileattack 20 160 15 ItemExpansiveChancX ItemExpansiveChancX 0
item_skillonkill 196 1 7 16 1 2 85 19 1024 21 0 7 0 16 1 kill 20 160 15 ModitemskonKill ModitemskonKill 0
item_skillondeath 197 1 7 16 1 2 11 9 1024 21 0 7 0 16 killed 30 160 15 Moditemskondeath Moditemskondeath 0
item_skillonhit 198 1 7 16 1 2 190 256 1024 21 0 7 0 16 1 domeleedamage 20 domissiledamage 20 160 15 ItemExpansiveChanc1 ItemExpansiveChanc1 0
item_skillonlevelup 199 1 7 16 1 2 7 6 1024 21 0 7 0 16 levelup 30 160 15 ModitemskonLevel ModitemskonLevel 0
unused200 200 1024 21 0 0
item_skillongethit 201 1 7 16 1 2 190 256 1024 21 0 7 0 16 damagedinmelee 21 damagedbymissile 21 160 15 ItemExpansiveChanc2 ItemExpansiveChanc2 0
unused202 202 1024 21 0 0
unused203 203 1024 21 0 0
item_charged_skill 204 1 30 1 3 401 256 1024 30 0 16 0 16 1 24 ModStre10d ModStre10d 0
unused204 205 1 30 3 401 256 1024 30 0 0
unused205 206 1 30 3 401 256 1024 30 0 0
unused206 207 1 30 3 401 256 1024 30 0 0
unused207 208 1 30 3 401 256 1024 30 0 0
unused208 209 1 30 3 401 256 1024 30 0 0
unused209 210 1 30 3 401 256 1024 30 0 0
unused210 211 1 30 3 401 256 1024 30 0 0
unused211 212 1 30 3 401 256 1024 30 0 0
unused212 213 1 30 3 401 256 1024 30 0 0
item_armor_perlevel 214 1 6 43 42 1024 6 0 6 0 4 3 level armorclass 72 6 1 ModStr1i ModStr1i increaseswithplaylevelX 0
item_armorpercent_perlevel 215 1 6 87 100 1024 6 0 6 0 5 3 level armorclass 73 8 1 Modstr2v Modstr2v increaseswithplaylevelX 0
item_hp_perlevel 216 1 6 92 64 1024 8 6 0 6 0 2 3 level maxhp 57 6 1 ModStr1u ModStr1u increaseswithplaylevelX 0
item_mana_perlevel 217 1 6 90 128 1024 8 6 0 6 0 2 3 level maxmana 53 6 1 ModStr1e ModStr1e increaseswithplaylevelX 0
item_maxdamage_perlevel 218 1 6 54 204 1024 6 0 6 0 4 3 level maxdamage secondary_maxdamage item_throw_maxdamage 1 125 6 1 ModStr1f ModStr1f increaseswithplaylevelX 0
item_maxdamage_percent_perlevel 219 1 6 86 100 1024 6 0 6 0 5 3 level maxdamage secondary_maxdamage item_throw_maxdamage 1 128 8 1 ModStr2j ModStr2j increaseswithplaylevelX 0
item_strength_perlevel 220 1 6 132 128 1024 6 0 6 0 2 3 level strength 66 6 1 ModStr1a ModStr1a increaseswithplaylevelX 0
item_dexterity_perlevel 221 1 6 132 128 1024 6 0 6 0 2 3 level dexterity 64 6 1 ModStr1b ModStr1b increaseswithplaylevelX 0
item_energy_perlevel 222 1 6 105 128 1024 6 0 6 0 2 3 level energy 60 6 1 ModStr1d ModStr1d increaseswithplaylevelX 0
item_vitality_perlevel 223 1 6 105 128 1024 6 0 6 0 2 3 level vitality 62 6 1 ModStr1c ModStr1c increaseswithplaylevelX 0
item_tohit_perlevel 224 1 6 53 20 1024 6 0 6 0 2 1 level tohit 1 114 6 1 ModStr1h ModStr1h increaseswithplaylevelX 0
item_tohitpercent_perlevel 225 1 6 10 256 1024 6 0 6 0 2 1 level item_tohit_percent 1 116 7 1 ModStr4c ModStr4c increaseswithplaylevelX 0
item_cold_damagemax_perlevel 226 1 6 1058 340 1024 6 0 6 0 2 3 level coldmaxdam 1 94 6 1 ModStr1s ModStr1s increaseswithplaylevelX 0
item_fire_damagemax_perlevel 227 1 6 49 128 1024 6 0 6 0 2 3 level firemaxdam 1 100 6 1 ModStr1o ModStr1o increaseswithplaylevelX 0
item_ltng_damagemax_perlevel 228 1 6 49 128 1024 6 0 6 0 2 3 level lightmaxdam 1 97 6 1 ModStr1q ModStr1q increaseswithplaylevelX 0
item_pois_damagemax_perlevel 229 1 6 49 128 1024 6 0 6 0 2 3 level poisonmaxdam 1 90 6 1 ModStr4h ModStr4h increaseswithplaylevelX 0
item_resist_cold_perlevel 230 1 6 101 128 1024 6 0 6 0 2 3 level coldresist 39 7 2 ModStr1k ModStr1k increaseswithplaylevelX 0
item_resist_fire_perlevel 231 1 6 101 128 1024 6 0 6 0 2 3 level fireresist 35 7 2 ModStr1j ModStr1j increaseswithplaylevelX 0
item_resist_ltng_perlevel 232 1 6 101 128 1024 6 0 6 0 2 3 level lightresist 37 7 2 ModStr1l ModStr1l increaseswithplaylevelX 0
item_resist_pois_perlevel 233 1 6 101 128 1024 6 0 6 0 2 3 level poisonresist 33 7 2 ModStr1n ModStr1n increaseswithplaylevelX 0
item_absorb_cold_perlevel 234 1 6 207 340 1024 6 0 6 0 2 3 level item_absorbcold 32 6 1 ModStre9p ModStre9p increaseswithplaylevelX 0
item_absorb_fire_perlevel 235 1 6 207 340 1024 6 0 6 0 2 3 level item_absorbfire 28 6 1 ModStre9o ModStre9o increaseswithplaylevelX 0
item_absorb_ltng_perlevel 236 1 6 207 340 1024 6 0 6 0 2 3 level item_absorblight 30 6 1 ModStre9q ModStre9q increaseswithplaylevelX 0
item_absorb_pois_perlevel 237 1 6 207 340 1024 6 0 6 0 2 3 level item_absorbmagic 0
item_thorns_perlevel 238 1 6 55 256 1024 6 0 5 0 2 3 level item_attackertakesdamage 12 9 2 ModStr1v ModStr1v increaseswithplaylevelX 0
item_find_gold_perlevel 239 1 6 42 256 1024 6 0 6 0 2 3 level item_goldbonus 9 7 1 ModStr1w ModStr1w increaseswithplaylevelX 0
item_find_magic_perlevel 240 1 6 814 1024 1024 6 0 6 0 2 3 level item_magicbonus 7 7 1 ModStr1x ModStr1x increaseswithplaylevelX 0
item_regenstamina_perlevel 241 1 6 79 256 1024 6 0 6 0 2 3 level staminarecoverybonus 47 8 2 ModStr3v ModStr3v increaseswithplaylevelX 0
item_stamina_perlevel 242 1 6 104 64 1024 6 0 6 0 2 3 level maxstamina 50 6 1 ModStr5d ModStr5d increaseswithplaylevelX 0
item_damage_demon_perlevel 243 1 6 56 10 1024 6 0 6 0 2 3 level item_demondamage_percent 1 111 8 1 ModStr4e ModStr4e increaseswithplaylevelX 0
item_damage_undead_perlevel 244 1 6 91 10 1024 6 0 6 0 2 3 level item_undeaddamage_percent 1 107 8 1 ModStr4f ModStr4f increaseswithplaylevelX 0
item_tohit_demon_perlevel 245 1 6 55 10 1024 6 0 6 0 2 1 level item_demon_tohit 1 109 6 1 ModStr4j ModStr4j increaseswithplaylevelX 0
item_tohit_undead_perlevel 246 1 6 12 10 1024 6 0 6 0 2 1 level item_undead_tohit 1 105 6 1 ModStr4k ModStr4k increaseswithplaylevelX 0
item_crushingblow_perlevel 247 1 6 213 1024 1024 6 0 6 0 2 3 level item_crushingblow 1 86 7 1 ModStr5c ModStr5c increaseswithplaylevelX 0
item_openwounds_perlevel 248 1 6 181 128 1024 6 0 6 0 2 3 level item_openwounds 1 82 7 1 ModStr3m ModStr3m increaseswithplaylevelX 0
item_kick_damage_perlevel 249 1 6 104 128 1024 6 0 6 0 2 3 level item_kickdamage 1 120 6 1 ModStr5e ModStr5e increaseswithplaylevelX 0
item_deadlystrike_perlevel 250 1 6 118 512 1024 6 0 6 0 2 3 level item_deadlystrike 1 84 7 1 ModStr5q ModStr5q increaseswithplaylevelX 0
item_find_gems_perlevel 251 1 1024 0
item_replenish_durability 252 1 5 106 256 1024 5 0 6 0 1 11 0 ModStre9t ModStre9t 0
item_replenish_quantity 253 1 5 106 256 1024 5 0 6 0 2 3 0 ModStre9v ModStre9v 0
item_extra_stack 254 1 99 10 1024 8 0 8 0 4 3 0 ModStre9i ModStre9i 0
item_find_item 255 1 1024 0
item_slash_damage 256 1 1024 1 0
item_slash_damage_percent 257 1 1024 1 0
item_crush_damage 258 1 1024 1 0
item_crush_damage_percent 259 1 1024 1 0
item_thrust_damage 260 1 1024 1 0
item_thrust_damage_percent 261 1 1024 1 0
item_absorb_slash 262 1 1024 0
item_absorb_crush 263 1 1024 0
item_absorb_thrust 264 1 1024 0
item_absorb_slash_percent 265 1 1024 0
item_absorb_crush_percent 266 1 1024 0
item_absorb_thrust_percent 267 1 1024 0
item_armor_bytime 268 1 22 4 0 1024 22 0 22 0 6 armorclass 180 17 1 ModStr1i ModStr1i 0
item_armorpercent_bytime 269 1 22 4 0 1024 22 0 22 0 7 armorclass 180 18 1 Modstr2v Modstr2v 0
item_hp_bytime 270 1 22 4 0 1024 22 0 22 0 6 maxhp 180 17 1 ModStr1u ModStr1u 0
item_mana_bytime 271 1 22 4 0 1024 22 0 22 0 6 maxmana 180 17 1 ModStr1e ModStr1e 0
item_maxdamage_bytime 272 1 22 4 0 1024 22 0 22 0 6 maxdamage secondary_maxdamage item_throw_maxdamage 1 180 17 1 ModStr1f ModStr1f 0
item_maxdamage_percent_bytime 273 1 22 4 0 1024 22 0 22 0 7 maxdamage secondary_mindamage item_throw_mindamage 1 180 18 1 ModStr2j ModStr2j 0
item_strength_bytime 274 1 22 4 0 1024 22 0 22 0 6 strength 180 17 1 ModStr1a ModStr1a 0
item_dexterity_bytime 275 1 22 4 0 1024 22 0 22 0 6 dexterity 180 17 1 ModStr1b ModStr1b 0
item_energy_bytime 276 1 22 4 0 1024 22 0 22 0 6 energy 180 17 1 ModStr1d ModStr1d 0
item_vitality_bytime 277 1 22 4 0 1024 22 0 22 0 6 vitality 180 17 1 ModStr1c ModStr1c 0
item_tohit_bytime 278 1 22 4 0 1024 22 0 22 0 6 tohit 1 180 17 1 ModStr1h ModStr1h 0
item_tohitpercent_bytime 279 1 22 4 0 1024 22 0 22 0 6 item_tohit_percent 1 180 18 1 ModStr4c ModStr4c 0
item_cold_damagemax_bytime 280 1 22 4 0 1024 22 0 22 0 6 coldmaxdam 1 180 17 1 ModStr1s ModStr1s 0
item_fire_damagemax_bytime 281 1 22 4 0 1024 22 0 22 0 6 firemaxdam 1 180 17 1 ModStr1o ModStr1o 0
item_ltng_damagemax_bytime 282 1 22 4 0 1024 22 0 22 0 6 lightmaxdam 1 180 17 1 ModStr1q ModStr1q 0
item_pois_damagemax_bytime 283 1 22 4 0 1024 22 0 22 0 6 poisonmaxdam 1 180 17 1 ModStr4h ModStr4h 0
item_resist_cold_bytime 284 1 22 4 0 1024 22 0 22 0 6 coldresist 180 18 2 ModStr1k ModStr1k 0
item_resist_fire_bytime 285 1 22 4 0 1024 22 0 22 0 6 fireresist 180 18 2 ModStr1j ModStr1j 0
item_resist_ltng_bytime 286 1 22 4 0 1024 22 0 22 0 6 lightresist 180 18 2 ModStr1l ModStr1l 0
item_resist_pois_bytime 287 1 22 4 0 1024 22 0 22 0 6 poisonresist 180 18 2 ModStr1n ModStr1n 0
item_absorb_cold_bytime 288 1 22 4 0 1024 22 0 22 0 6 item_absorbcold 180 18 1 ModStre9p ModStre9p 0
item_absorb_fire_bytime 289 1 22 4 0 1024 22 0 22 0 6 item_absorbfire 180 18 1 ModStre9o ModStre9o 0
item_absorb_ltng_bytime 290 1 22 4 0 1024 22 0 22 0 6 item_absorblight 180 18 1 ModStre9q ModStre9q 0
item_absorb_pois_bytime 291 1 22 4 0 1024 22 0 22 0 6 item_absorbmagic 0
item_find_gold_bytime 292 1 22 4 0 1024 22 0 22 0 6 item_goldbonus 180 18 2 ModStr1w ModStr1w 0
item_find_magic_bytime 293 1 22 4 0 1024 22 0 22 0 6 item_magicbonus 180 18 1 ModStr1x ModStr1x 0
item_regenstamina_bytime 294 1 22 4 0 1024 22 0 22 0 6 staminarecoverybonus 180 18 2 ModStr3v ModStr3v 0
item_stamina_bytime 295 1 22 4 0 1024 22 0 22 0 6 maxstamina 180 17 1 ModStr5d ModStr5d 0
item_damage_demon_bytime 296 1 22 4 0 1024 22 0 22 0 6 item_demondamage_percent 1 180 18 1 ModStr4e ModStr4e 0
item_damage_undead_bytime 297 1 22 4 0 1024 22 0 22 0 6 item_undeaddamage_percent 1 180 18 1 ModStr4f ModStr4f 0
item_tohit_demon_bytime 298 1 22 4 0 1024 22 0 22 0 6 item_demon_tohit 1 180 17 1 ModStr4j ModStr4j 0
item_tohit_undead_bytime 299 1 22 4 0 1024 22 0 22 0 6 item_undead_tohit 1 180 17 1 ModStr4k ModStr4k 0
item_crushingblow_bytime 300 1 22 4 0 1024 22 0 22 0 6 item_crushingblow 1 180 18 1 ModStr5c ModStr5c 0
item_openwounds_bytime 301 1 22 4 0 1024 22 0 22 0 6 item_openwounds 1 180 18 1 ModStr3m ModStr3m 0
item_kick_damage_bytime 302 1 22 4 0 1024 22 0 22 0 6 item_kickdamage 1 180 17 1 ModStr5e ModStr5e 0
item_deadlystrike_bytime 303 1 22 4 0 1024 22 0 22 0 6 item_deadlystrike 1 180 18 1 ModStr5q ModStr5q 0
item_find_gems_bytime 304 1 4 0 1024 0
item_pierce_cold 305 1 9 1432 513 1024 8 50 88 20 1 Moditemenrescoldsk Moditemenrescoldsk 0
item_pierce_fire 306 1 9 1240 497 1024 8 50 88 20 1 Moditemenresfiresk Moditemenresfiresk 0
item_pierce_ltng 307 1 9 1187 481 1024 8 50 88 20 1 Moditemenresltngsk Moditemenresltngsk 0
item_pierce_pois 308 1 9 1322 506 1024 8 50 88 20 1 Moditemenrespoissk Moditemenrespoissk 0
item_damage_vs_monster 309 1 1024 1 0
item_damage_percent_vs_monster 310 1 1024 1 0
item_tohit_vs_monster 311 1 1024 1 0
item_tohit_percent_vs_monster 312 1 1024 1 0
item_ac_vs_monster 313 1 1024 0
item_ac_percent_vs_monster 314 1 1024 0
firelength 315 1 16 1024 0
burningmin 316 1 16 1024 0
burningmax 317 1 16 1024 0
progressive_damage 318 1 3 1024 0
progressive_steal 319 1 3 1024 0
progressive_other 320 1 3 1024 0
progressive_fire 321 1 3 1024 0
progressive_cold 322 1 3 1024 0
progressive_lightning 323 1 3 1024 0
item_extra_charges 324 1 6 1024 6 0 6 0 1 1 0
progressive_tohit 325 1 16 1024 0
poison_count 326 1 5 1024 1 0
damage_framerate 327 1 8 1024 0
pierce_idx 328 1 6 1024 0
passive_fire_mastery 329 1 12 1117 415 1024 8 0 9 50 88 4 1 ModitemdamFiresk ModitemdamFiresk 0
passive_ltng_mastery 330 1 12 1054 408 1024 8 0 9 50 88 4 1 ModitemdamLtngsk ModitemdamLtngsk 0
passive_cold_mastery 331 1 12 1295 379 1024 8 0 9 50 88 4 1 ModitemdamColdsk ModitemdamColdsk 0
passive_pois_mastery 332 1 12 978 394 1024 8 0 9 50 88 4 1 ModitemdamPoissk ModitemdamPoissk 0
passive_fire_pierce 333 1 9 2578 1024 8 0 8 0 88 20 1 Moditemenresfiresk Moditemenresfiresk 0
passive_ltng_pierce 334 1 9 2493 1024 8 0 8 0 88 20 1 Moditemenresltngsk Moditemenresltngsk 0
passive_cold_pierce 335 1 9 1984 1024 8 0 8 0 88 20 1 Moditemenrescoldsk Moditemenrescoldsk 0
passive_pois_pierce 336 1 9 2345 1024 8 0 8 0 88 20 1 Moditemenrespoissk Moditemenrespoissk 0
passive_critical_strike 337 1 9 1024 8 0 8 0 0
passive_dodge 338 1 9 1024 7 0 7 0 0
passive_avoid 339 1 9 1024 7 0 7 0 0
passive_evade 340 1 9 1024 7 0 7 0 0
passive_warmth 341 1 9 1024 8 0 8 0 0
passive_mastery_melee_th 342 1 11 8 1024 8 0 8 0 0
passive_mastery_melee_dmg 343 1 11 8 1024 8 0 8 0 0
passive_mastery_melee_crit 344 1 9 8 1024 8 0 8 0 0
passive_mastery_throw_th 345 1 11 8 1024 8 0 8 0 0
passive_mastery_throw_dmg 346 1 11 8 1024 8 0 8 0 0
passive_mastery_throw_crit 347 1 9 8 1024 8 0 8 0 0
passive_weaponblock 348 1 9 8 1024 8 0 8 0 0
passive_summon_resist 349 1 9 1024 8 0 8 0 0
modifierlist_skill 350 9 1024 0
modifierlist_level 351 8 1024 0
last_sent_hp_pct 352 1 8 1024 0
source_unit_type 353 5 1024 0
source_unit_id 354 32 1024 0
shortparam1 355 16 1024 0
questitemdifficulty 356 1024 2 0 0
passive_mag_mastery 357 1 12 1211 431 1024 8 0 9 50 0
passive_mag_pierce 358 1 9 2812 1024 8 0 8 0 0
dummystat 359 7 1024 7 0 7 0 180 2 2 0
gembag_pruby 360 0 7 1024 7 0 32 0 180 3 2 pruby pruby 0
gembag_fruby 361 0 7 1024 7 0 32 0 179 3 2 fruby fruby 0
gembag_nruby 362 0 7 1024 7 0 32 0 178 3 2 nruby nruby 0
gembag_flruby 363 0 7 1024 7 0 32 0 177 3 2 flruby flruby 0
gembag_cruby 364 0 7 1024 7 0 32 0 176 3 2 cruby cruby 0
gembag_pamethyst 365 0 7 1024 7 0 32 0 175 3 2 pamethyst pamethyst 0
gembag_famethyst 366 0 7 1024 7 0 32 0 174 3 2 famethyst famethyst 0
gembag_namethyst 367 0 7 1024 7 0 32 0 173 3 2 namethyst namethyst 0
gembag_flamethyst 368 0 7 1024 7 0 32 0 172 3 2 flamethyst flamethyst 0
gembag_camethyst 369 0 7 1024 7 0 32 0 171 3 2 camethyst camethyst 0
gembag_pdiamond 370 0 7 1024 7 0 32 0 170 3 2 pdiamond pdiamond 0
gembag_fdiamond 371 0 7 1024 7 0 32 0 169 3 2 fdiamond fdiamond 0
gembag_ndiamond 372 0 7 1024 7 0 32 0 168 3 2 ndiamond ndiamond 0
gembag_fldiamond 373 0 7 1024 7 0 32 0 167 3 2 fldiamond fldiamond 0
gembag_cdiamond 374 0 7 1024 7 0 32 0 166 3 2 cdiamond cdiamond 0
gembag_pemerald 375 0 7 1024 7 0 32 0 165 3 2 pemerald pemerald 0
gembag_femerald 376 0 7 1024 7 0 32 0 164 3 2 femerald femerald 0
gembag_nemerald 377 0 7 1024 7 0 32 0 163 3 2 nemerald nemerald 0
gembag_flemerald 378 0 7 1024 7 0 32 0 162 3 2 flemerald flemerald 0
gembag_cemerald 379 0 7 1024 7 0 32 0 161 3 2 cemerald cemerald 0
gembag_psapphire 380 0 7 1024 7 0 32 0 160 3 2 psapphire psapphire 0
gembag_fsapphire 381 0 7 1024 7 0 32 0 159 3 2 fsapphire fsapphire 0
gembag_nsapphire 382 0 7 1024 7 0 32 0 158 3 2 nsapphire nsapphire 0
gembag_flsapphire 383 0 7 1024 7 0 32 0 157 3 2 flsapphire flsapphire 0
gembag_csapphire 384 0 7 1024 7 0 32 0 156 3 2 csapphire csapphire 0
gembag_ptopaz 385 0 7 1024 7 0 32 0 155 3 2 ptopaz ptopaz 0
gembag_ftopaz 386 0 7 1024 7 0 32 0 154 3 2 ftopaz ftopaz 0
gembag_ntopaz 387 0 7 1024 7 0 32 0 153 3 2 ntopaz ntopaz 0
gembag_fltopaz 388 0 7 1024 7 0 32 0 152 3 2 fltopaz fltopaz 0
gembag_ctopaz 389 0 7 1024 7 0 32 0 151 3 2 ctopaz ctopaz 0
gembag_pskull 390 0 7 1024 7 0 32 0 150 3 2 pskull pskull 0
gembag_fskull 391 0 7 1024 7 0 32 0 149 3 2 fskull fskull 0
gembag_nskull 392 0 7 1024 7 0 32 0 148 3 2 nskull nskull 0
gembag_flskull 393 0 7 1024 7 0 32 0 147 3 2 flskull flskull 0
gembag_cskull 394 0 7 1024 7 0 32 0 146 3 2 cskull cskull 0
runebag_r01 395 0 7 1024 7 0 32 0 180 3 2 rbgr01 rbgr01 0
runebag_r02 396 0 7 1024 7 0 32 0 146 3 2 rbgr02 rbgr02 0
runebag_r03 397 0 7 1024 7 0 32 0 147 3 2 rbgr03 rbgr03 0
runebag_r04 398 0 7 1024 7 0 32 0 148 3 2 rbgr04 rbgr04 0
runebag_r05 399 0 7 1024 7 0 32 0 149 3 2 rbgr05 rbgr05 0
runebag_r06 400 0 7 1024 7 0 32 0 150 3 2 rbgr06 rbgr06 0
runebag_r07 401 0 7 1024 7 0 32 0 151 3 2 rbgr07 rbgr07 0
runebag_r08 402 0 7 1024 7 0 32 0 152 3 2 rbgr08 rbgr08 0
runebag_r09 403 0 7 1024 7 0 32 0 153 3 2 rbgr09 rbgr09 0
runebag_r10 404 0 7 1024 7 0 32 0 154 3 2 rbgr10 rbgr10 0
runebag_r11 405 0 7 1024 7 0 32 0 155 3 2 rbgr11 rbgr11 0
runebag_r12 406 0 7 1024 7 0 32 0 156 3 2 rbgr12 rbgr12 0
runebag_r13 407 0 7 1024 7 0 32 0 157 3 2 rbgr13 rbgr13 0
runebag_r14 408 0 7 1024 7 0 32 0 158 3 2 rbgr14 rbgr14 0
runebag_r15 409 0 7 1024 7 0 32 0 159 3 2 rbgr15 rbgr15 0
runebag_r16 410 0 7 1024 7 0 32 0 160 3 2 rbgr16 rbgr16 0
runebag_r17 411 0 7 1024 7 0 32 0 161 3 2 rbgr17 rbgr17 0
runebag_r18 412 0 7 1024 7 0 32 0 162 3 2 rbgr18 rbgr18 0
runebag_r19 413 0 7 1024 7 0 32 0 163 3 2 rbgr19 rbgr19 0
runebag_r20 414 0 7 1024 7 0 32 0 164 3 2 rbgr20 rbgr20 0
runebag_r21 415 0 7 1024 7 0 32 0 165 3 2 rbgr21 rbgr21 0
runebag_r22 416 0 7 1024 7 0 32 0 166 3 2 rbgr22 rbgr22 0
runebag_r23 417 0 7 1024 7 0 32 0 167 3 2 rbgr23 rbgr23 0
runebag_r24 418 0 7 1024 7 0 32 0 168 3 2 rbgr24 rbgr24 0
runebag_r25 419 0 7 1024 7 0 32 0 169 3 2 rbgr25 rbgr25 0
runebag_r26 420 0 7 1024 7 0 32 0 170 3 2 rbgr26 rbgr26 0
runebag_r27 421 0 7 1024 7 0 32 0 171 3 2 rbgr27 rbgr27 0
runebag_r28 422 0 7 1024 7 0 32 0 172 3 2 rbgr28 rbgr28 0
runebag_r29 423 0 7 1024 7 0 32 0 173 3 2 rbgr29 rbgr29 0
runebag_r30 424 0 7 1024 7 0 32 0 174 3 2 rbgr30 rbgr30 0
runebag_r31 425 0 7 1024 7 0 32 0 175 3 2 rbgr31 rbgr31 0
runebag_r32 426 0 7 1024 7 0 32 0 176 3 2 rbgr32 rbgr32 0
runebag_r33 427 0 7 1024 7 0 32 0 177 3 2 rbgr33 rbgr33 0
magharv 428 0 7 1024 7 0 32 0 140 3 2 magharv magharv 0
dummy 429 1024 0
display_kills 430 1024 1 2 0 killcounter dummy 1 3 1 sdkills sdkills 0
iforge 431 0 7 1024 7 0 32 0 160 3 2 iforge iforge 0

View File

@ -1,118 +0,0 @@
ItemType Code Equiv1 Equiv2 Repair 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 *eol
None 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0
None 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0
Shield shie shld 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 3 4 0 3 1 0 armo 0
Armor tors armo 1 1 tors tors 0 0 0 0 1 0 0 0 0 3 4 6 0 3 1 0 armo 0
Gold gold misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 0
Bow Quiver bowq misl 0 1 rarm larm bow 0 1 0 1 0 0 1 0 0 0 3 3 3 0 3 0 0 misc 0
Crossbow Quiver xboq misl 0 1 rarm larm xbow 0 1 0 1 0 0 1 0 0 0 3 3 3 0 3 0 0 misc 0
Player Body Part play misc 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 misc 0
Herb herb misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 misc 0
Potion poti misc 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc 0
Ring ring misc 0 1 rrin lrin 0 0 0 0 1 1 0 0 0 0 0 0 0 0 3 0 5 invrin1 invrin2 invrin3 invrin4 invrin5 misc 0
Elixir elix misc 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 0 0 misc 0
Amulet amul misc 0 1 neck neck 0 0 0 0 1 1 0 0 0 0 0 0 0 0 3 0 3 invamu1 invamu2 invamu3 misc 0
Charm char misc 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 3 0 3 invch1 invch4 invch7 misc 0
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0
Boots boot armo 1 1 feet feet 0 0 0 0 1 0 0 0 0 0 0 0 0 3 1 0 armo 0
Gloves glov armo 1 1 glov glov 0 0 0 0 1 0 0 0 0 0 0 0 0 3 1 0 armo 0
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0
Book book misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Belt belt armo 1 1 belt belt 0 0 0 0 1 0 0 0 0 0 0 0 0 3 1 0 armo 0
Gem gem sock 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Torch torc misc 0 1 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Scroll scro misc 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc 0
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0
Scepter scep rod 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 5 6 0 1 pal 0 0 weap 0
Wand wand rod 1 1 rarm larm 0 0 0 0 1 0 0 0 0 2 2 2 0 1 nec 0 0 weap 0
Staff staf rod 1 1 rarm larm 0 0 0 0 1 0 0 0 0 5 6 6 0 1 sor 0 0 weap 0
Bow bow miss 0 1 rarm larm bowq 0 0 0 0 1 0 0 0 0 3 4 6 1 3 0 0 weap 0
Axe axe mele 1 1 rarm larm 0 0 0 0 1 0 0 0 0 4 5 6 0 3 0 0 weap 0
Club club blun 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 4 6 0 3 0 0 weap 0
Sword swor mele 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 4 6 0 3 0 0 weap 0
Hammer hamm blun 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 4 6 0 3 0 0 weap 0
Knife knif mele 1 1 rarm larm 0 0 0 0 1 0 0 0 0 2 3 3 0 3 0 0 weap 0
Spear spea mele 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 4 6 0 3 0 0 weap 0
Polearm pole mele 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 4 6 0 3 0 0 weap 0
Crossbow xbow miss 1 1 rarm larm xboq 0 0 0 0 1 0 0 0 0 3 4 6 0 3 0 0 weap 0
Mace mace blun 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 4 6 0 3 0 0 weap 0
Helm helm armo 1 1 head head 0 0 0 0 1 0 0 0 0 2 2 3 0 3 1 0 armo 0
Missile Potion tpot thro 0 1 rarm larm 1 1 1 1 1 0 0 0 0 0 0 0 3 0 0 misc 0
Quest ques 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0
Body Part body misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 2 0 misc 0
Key key misc 0 0 0 0 0 1 1 0 0 0 0 0 0 0 3 0 0 misc 0
Throwing Knife tkni comb knif 1 1 rarm larm 1 1 1 1 1 0 0 0 0 0 0 0 0 3 0 0 misc 0
Throwing Axe taxe comb axe 1 1 rarm larm 1 1 1 1 1 0 0 0 0 0 0 0 0 3 0 0 misc 0
Javelin jave comb spea 1 1 rarm larm 1 1 1 1 1 0 0 0 0 0 0 0 0 3 0 0 misc 0
Weapon weap 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 3 0 0 0
Melee Weapon mele weap 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 3 0 0 0
Missile Weapon miss weap 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Thrown Weapon thro weap 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Combo Weapon comb mele thro 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Any Armor armo 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 3 0 0 0
Any Shield shld armo seco 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Miscellaneous misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Socket Filler sock misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0
Second Hand seco 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Staves And Rods rod blun 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Missile misl misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0
Blunt blun mele 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Expansion 0
Jewel jewl sock 0 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 3 0 6 invjw1 invjw2 invjw3 invjw4 invjw5 invjw6 misc 0
Class Specific clas 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 3 0 0 0
Amazon Item amaz clas 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 ama 0 0
Barbarian Item barb clas 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 bar 0 0
Necromancer Item necr clas 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 nec 0 0
Paladin Item pala clas 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 pal 0 0
Sorceress Item sorc clas 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 sor 0 0
Assassin Item assn clas 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 0 ass 0 0
Druid Item drui clas 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 dru 0 0
Hand to Hand h2h mele assn 1 1 rarm larm 0 0 0 0 1 0 0 0 0 2 3 3 0 2 0 ass 0 weap 0
Orb orb weap sorc 1 1 rarm larm 0 0 0 0 1 0 0 0 0 2 3 3 0 1 sor 0 sor 0 weap 0
Voodoo Heads head shld necr 1 1 rarm larm 0 0 0 0 1 0 0 0 0 2 3 3 0 1 nec 0 nec 0 armo 0
Auric Shields ashd shld pala 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 4 4 0 1 0 pal 0 armo 0
Primal Helm phlm helm barb 1 1 head head 0 0 0 0 1 0 0 0 0 2 3 3 0 1 bar 0 bar 0 armo 0
Pelt pelt helm drui 1 1 head head 0 0 0 0 1 0 0 0 0 2 3 3 0 1 dru 0 dru 0 armo 0
Cloak cloa tors assn 1 1 tors tors 0 0 0 0 1 0 0 0 0 0 0 0 0 1 ass 0 ass 0 armo 0
Rune rune sock 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Circlet circ helm 1 1 head head 0 0 0 0 1 0 0 0 0 1 2 3 0 3 1 0 armo 0
Healing Potion hpot poti 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc 0
Mana Potion mpot poti 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc 0
Rejuv Potion rpot hpot mpot 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc 0
Stamina Potion spot poti 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc 0
Antidote Potion apot poti 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc 0
Thawing Potion wpot poti 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc 0
Small Charm scha char 0 0 0 0 0 0 1 1 0 1 0 0 1 1 1 0 3 0 3 invch1 invch4 invch7 misc 0
Medium Charm mcha char 0 0 0 0 0 0 1 1 0 1 0 0 2 2 2 0 3 0 3 invch2 invch5 invch8 misc 0
Large Charm lcha char 0 0 0 0 0 0 1 1 0 1 0 0 3 3 3 0 3 0 3 invch3 invch6 invch9 misc 0
Amazon Bow abow bow amaz 0 1 rarm larm bowq 0 0 0 0 1 0 0 0 0 3 4 5 1 1 0 ama 0 weap 0
Amazon Spear aspe spea amaz 1 1 rarm larm 0 0 0 0 1 0 0 0 0 3 4 6 0 1 0 ama 0 weap 0
Amazon Javelin ajav jave amaz 1 1 rarm larm 1 1 1 1 1 0 0 0 0 0 0 0 0 1 0 ama 0 misc 0
Hand to Hand 2 h2h2 h2h 1 1 rarm larm 0 0 0 0 1 0 0 0 0 2 3 3 0 2 ass 0 ass 0 weap 0
Magic Bow Quiv mboq bowq 0 1 rarm larm bow 0 1 0 0 1 1 0 0 0 0 0 0 0 0 3 0 0 misc 0
Magic Xbow Quiv mxbq xboq 0 1 rarm larm xbow 0 1 0 0 1 1 0 0 0 0 0 0 0 0 3 0 0 misc 0
Chipped Gem gem0 gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Flawed Gem gem1 gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Standard Gem gem2 gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Flawless Gem gem3 gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Perfect Gem gem4 gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Amethyst gema gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Diamond gemd gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Emerald geme gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Ruby gemr gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Sapphire gems gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Topaz gemt gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Skull gemz gem 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc 0
Gem Bag gbag misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Gem Extractor gext misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Rune Bag rbag misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Rune Extractor rext misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Magic Harvester mhar misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Magic Harv Extracter xhar misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Elemental Bow Quiver earr bowq 0 1 rarm larm bow 0 1 0 1 1 1 0 0 0 0 3 3 3 0 3 0 0 misc 0
Elemental Crossbow Quiver ebol xboq 0 1 rarm larm xbow 0 1 0 1 1 1 0 0 0 0 3 3 3 0 3 0 0 misc 0
Smithing Orb ifor 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Smithing Hammer xfor 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Stash stch misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0
Demon Chest dchest misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 invdc1 invdc2 invdc3 invdc4 invdc5 invdc6 misc 0
Demon Key dkey misc 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc 0

View File

@ -1,22 +0,0 @@
MainFunc SubFunc KilledMon KilledPlayer FuncStat FuncVal Class Softcore Hardcore Normal Nightmare Hell *remarks Chance Chance(N) Chance(H) Stat1 Val1 Stat2 Val2 Stat3 Val3 Stat1(N) Val1(N) Stat2(N) Val2(N) Stat3(N) Val3(N) Stat1(H) Val1(H) Stat2(H) Val2(H) Stat3(H) Val3(H) TreasureClass TreasureClass(N) TreasureClass(H) MainMsgStr MsgParam1 MsgParam2 MsgParam3 MsgParam4 MsgParam5 MainMsgStr(N) MsgParam1(N) MsgParam2(N) MsgParam3(N) MsgParam4(N) MsgParam5(N) MainMsgStr(H) MsgParam1(H) MsgParam2(H) MsgParam3(H) MsgParam4(H) MsgParam5(H) *eol
Kill 1 1 1 1 1 Increase that killcounter :D killcounter 1 killcounter 1 killcounter 1 0
Bonus Once killcounter 10 1 1 1 1 1 Kill Bonus 10 pots Kill Bonus 10 pots Kill Bonus 10 pots 0
Bonus Once killcounter 25 1 1 1 1 1 Kill Bonus 25 pots Kill Bonus 25 pots Kill Bonus 25 pots 0
Bonus Once killcounter 50 1 1 1 1 1 Kill Bonus 50 pots Kill Bonus 50 pots Kill Bonus 50 pots 0
Bonus Once killcounter 50 1 1 1 1 1 Kill Bonus 50 weapon Kill Bonus 50 weapon Kill Bonus 50 weapon 0
Bonus Once killcounter 100 1 1 1 1 1 Kill Bonus 100 armor Kill Bonus 100 armor Kill Bonus 100 armor 0
Bonus Once killcounter 150 1 1 1 1 1 Kill Bonus 150 Kill Bonus 150 Kill Bonus 150 0
Bonus Once killcounter 200 1 1 1 1 1 Kill Bonus 200 Kill Bonus 200 Kill Bonus 200 0
Bonus Once killcounter 250 1 1 1 1 1 Kill Bonus 250 Kill Bonus 250 Kill Bonus 250 0
Bonus Once killcounter 300 1 1 1 1 1 Kill Bonus 300 Kill Bonus 300 Kill Bonus 300 0
Bonus Once killcounter 350 1 1 1 1 1 Kill Bonus 350 Kill Bonus 350 Kill Bonus 350 0
Bonus Once killcounter 400 1 1 1 1 1 Kill Bonus 400 Kill Bonus 400 Kill Bonus 400 0
Bonus Once killcounter 450 1 1 1 1 1 Kill Bonus 450 Kill Bonus 450 Kill Bonus 450 0
Bonus Once killcounter 500 1 1 1 1 1 Demon Chest All Demon Chest All Demon Chest All 0
Bonus Once killcounter 1000 1 1 1 1 1 kill bonus 1000 weapon kill bonus 1000 weapon kill bonus 1000 weapon 0
Bonus Once killcounter 1000 1 1 1 1 1 kill bonus 1000 armor kill bonus 1000 armor kill bonus 1000 armor 0
Bonus Once killcounter 1250 1 1 1 1 1 kill bonus 1250 kill bonus 1250 kill bonus 1250 0
Bonus Once killcounter 1500 1 1 1 1 1 kill bonus 1500 kill bonus 1500 kill bonus 1500 0
Bonus Once killcounter 1750 1 1 1 1 1 kill bonus 1750 kill bonus 1750 kill bonus 1750 0
Bonus Once killcounter 2000 1 1 1 1 1 kill bonus 2000 kill bonus 2000 kill bonus 2000 0
Bonus Once killcounter 10000 1 1 1 1 1 kill bonus 10000 remote stash kill bonus 10000 remote stash kill bonus 10000 remote stash 0

View File

@ -1,238 +0,0 @@
Name Id Pal Act QuestFlag QuestFlagEx Layer SizeX SizeY SizeX(N) SizeY(N) SizeX(H) SizeY(H) OffsetX OffsetY Depend Teleport 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 MonLvl1Ex MonLvl2Ex MonLvl3Ex MonDen MonDen(N) MonDen(H) MonUMin MonUMax MonUMin(N) MonUMax(N) MonUMin(H) MonUMax(H) MonWndr MonSpcWalk NumMon mon1 mon2 mon3 mon4 mon5 mon6 mon7 mon8 mon9 mon10 rangedspawn nmon1 nmon2 nmon3 nmon4 nmon5 nmon6 nmon7 nmon8 nmon9 nmon10 umon1 umon2 umon3 umon4 umon5 umon6 umon7 umon8 umon9 umon10 cmon1 cmon2 cmon3 cmon4 cpct1 cpct2 cpct3 cpct4 camt1 camt2 camt3 camt4 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 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 40 40 40 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 56 40 56 40 -1 -1 0 1 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 62 49 55 88 1 1 0 0 2025 0 25 50 250 250 250 0 0 chicken 30 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 120 120 120 120 120 120 -1 -1 0 1 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 58 203 94 48 0 0 1 0 2025 1 26 51 1 36 67 770 770 770 2 4 5 8 8 12 1 0 3 zombie1 fallen1 quillrat1 zombie1 fallen1 quillrat1 zombie1 fallen1 quillrat1 0 2 255 Blood Moor To The Blood Moor A1L2 4 38 33 34 10 7 26 39 3 17 17 17 25 25 15 100 1
Act 1 - Wilderness 2 3 0 0 0 80 80 80 80 80 80 1000 1000 0 1 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 58 78 117 203 1 0 1 0 2025 2 27 52 2 36 68 770 770 770 2 4 5 8 8 12 1 0 3 brute1 corruptrogue1 fallenshaman1 cr_lancer1 fallen1 brute1 corruptrogue1 fallenshaman1 cr_lancer1 brute1 corruptrogue1 fallenshaman1 cr_lancer1 0 2 1 Cold Plains To The Cold Plains A1L3 4 38 33 34 10 7 26 20 3 22 22 22 25 35 25 30 1
Act 1 - Wilderness 3 4 0 0 0 80 80 80 80 80 80 1000 1000 0 1 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 120 64 51 63 0 0 1 0 2025 4 29 54 4 37 68 770 770 770 2 5 5 9 8 12 1 0 3 skeleton1 zombie2 crownest1 goatman1 cr_archer1 zombie1 fallenshaman1 skeleton1 zombie2 crownest1 goatman1 cr_archer1 skeleton1 zombie2 foulcrow1 goatman1 cr_archer1 0 2 2 Stony Field To The Stony Field A1L4 1 38 33 34 10 7 26 20 4 27 27 27 50 50 40 50 1
Act 1 - Wilderness 4 5 0 0 0 80 80 80 80 80 80 -1 -1 0 1 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 54 88 57 116 1 0 1 0 2025 5 30 55 5 38 68 770 770 770 2 5 5 9 8 12 1 0 3 fallen2 corruptrogue2 quillrat2 cr_lancer2 sk_archer1 zombie1 fallenshaman1 fallen2 corruptrogue2 quillrat2 cr_lancer2 sk_archer1 fallen2 corruptrogue2 quillrat2 cr_lancer2 sk_archer1 0 2 3 Dark Wood To The Dark Wood A1L5 1 38 33 34 10 7 26 20 4 30 30 30 50 75 60 60 1
Act 1 - Wilderness 5 6 0 0 0 80 80 80 80 80 80 -1 -1 0 1 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 204 119 98 103 0 0 1 0 2025 6 31 56 6 38 69 770 770 770 2 5 5 9 8 12 1 0 3 crownest2 skeleton2 brute2 goatman2 fallenshaman2 cr_archer2 crownest2 skeleton2 brute2 goatman2 fallenshaman2 cr_archer2 skeleton2 foulcrow2 brute2 goatman2 fallenshaman2 cr_archer2 0 2 4 Black Marsh To The Black Marsh A1L6 1 38 33 34 10 7 26 20 5 32 32 32 25 50 35 70 1
Act 1 - Wilderness 6 7 0 0 0 80 80 80 80 80 80 -1 -1 0 1 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 204 68 61 83 1 0 1 0 2025 8 33 58 8 39 69 770 770 770 2 5 5 9 8 12 1 0 3 corruptrogue3 quillrat3 cr_lancer3 sk_archer2 skmage_fire1 zombie1 fallenshaman2 corruptrogue3 quillrat3 cr_lancer3 sk_archer2 skmage_fire1 corruptrogue3 quillrat3 cr_lancer3 sk_archer2 skmage_fire1 0 2 255 Tamoe Highland To The Tamoe Highland A1L7 1 38 33 34 10 7 26 20 5 35 35 35 50 45 25 80 1
Act 1 - Cave 1 8 0 0 1 200 200 200 200 200 200 1500 1000 0 1 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 14 108 121 106 0 0 1 1 2025 1 26 51 1 36 79 850 850 850 0 0 3 zombie1 brute1 fallenshaman1 zombie1 brute1 fallenshaman1 zombie1 brute1 fallenshaman1 rat bat 30 30 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 200 200 200 200 1500 1300 0 1 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 14 66 52 60 0 0 1 0 2025 2 27 52 2 36 77 850 850 850 2 5 5 9 7 11 1 0 3 skeleton1 zombie2 cr_archer1 fallenshaman1 skeleton1 zombie2 cr_archer1 skeleton1 zombie2 cr_archer1 rat bat 30 30 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 200 200 200 200 1500 1600 0 1 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 14 45 76 68 0 0 1 0 2025 4 29 54 4 37 69 850 850 850 2 5 5 9 7 11 1 0 3 bighead3 fallen2 corruptrogue2 sk_archer1 fallenshaman1 bighead3 fallen2 corruptrogue2 sk_archer1 bighead3 fallen2 corruptrogue2 sk_archer1 rat bat 30 30 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 200 200 200 200 1500 1900 0 1 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 14 78 44 57 0 0 1 0 2025 5 30 55 5 38 80 850 850 850 2 5 5 9 7 11 1 0 3 bighead3 fallen2 brute2 cr_archer2 fallenshaman2 bighead3 fallen2 brute2 cr_archer2 bighead3 fallen2 brute2 cr_archer2 rat bat 30 30 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 200 200 200 200 1500 2200 0 1 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 14 68 78 51 0 0 1 0 2025 7 32 57 7 39 85 850 850 850 2 5 5 9 7 11 1 0 3 skeleton3 fallen3 corruptrogue3 cr_archer3 fallenshaman2 skeleton3 fallen3 corruptrogue3 cr_archer3 skeleton3 fallen3 corruptrogue3 cr_archer3 rat bat 30 30 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 24 24 24 24 1500 2500 0 1 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 14 53 66 57 0 0 1 0 2025 2 27 52 2 37 78 850 850 850 2 5 3 6 3 6 1 0 3 skeleton1 zombie2 cr_archer1 fallenshaman1 skeleton1 zombie2 cr_archer1 skeleton1 zombie2 cr_archer1 rat bat 30 30 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 24 24 24 24 1500 2624 0 1 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 14 51 67 46 0 0 1 0 2025 4 29 54 4 38 83 850 850 850 2 5 3 6 3 6 1 0 3 bighead3 fallen2 corruptrogue2 sk_archer1 fallenshaman1 bighead3 fallen2 corruptrogue2 sk_archer1 bighead3 fallen2 corruptrogue2 sk_archer1 rat bat 30 30 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 24 24 24 24 1500 2748 0 1 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 14 75 54 73 0 0 1 0 3800 5 30 55 5 39 81 850 850 850 2 5 3 6 3 6 1 0 3 bighead3 fallen2 brute2 cr_archer2 fallenshaman2 bighead3 fallen2 brute2 cr_archer2 bighead3 fallen2 brute2 cr_archer2 rat bat 30 30 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 24 24 24 24 1500 2872 0 1 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 14 62 55 61 0 0 1 0 2025 7 32 57 7 40 85 850 850 850 2 5 3 6 3 6 1 0 3 skeleton3 fallen3 corruptrogue3 cr_archer3 fallenshaman2 skeleton3 fallen3 corruptrogue3 cr_archer3 skeleton3 fallen3 corruptrogue3 cr_archer3 rat bat 30 30 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 40 48 40 48 -1 -1 0 1 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 14 60 67 78 0 0 1 0 2025 3 28 53 3 36 80 770 770 770 1 0 3 skeleton1 zombie2 cr_archer1 skeleton1 zombie2 skeleton1 zombie2 rat 30 30 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 200 200 200 200 2000 1000 0 1 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 14 75 75 74 0 0 1 0 2025 3 28 53 3 37 83 1306 1306 1306 2 4 4 7 5 8 1 0 3 skeleton1 zombie2 cr_archer1 skeleton1 zombie2 skeleton1 zombie2 rat bat 30 30 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 200 200 200 200 2000 1300 0 1 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 14 70 71 62 0 0 1 0 2025 3 28 53 3 37 85 1306 1306 1306 2 4 4 7 5 8 1 0 3 skeleton1 zombie2 cr_archer1 skeleton1 zombie2 skeleton1 zombie2 rat bat 30 30 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 8 8 8 8 2000 1600 0 1 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 14 63 48 70 0 0 1 0 100 7 32 57 7 38 77 770 770 770 2 4 2 4 2 4 1 0 3 corruptrogue3 cr_lancer2 cr_archer1 corruptrogue3 cr_lancer2 corruptrogue3 cr_lancer2 rat bat 30 30 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 200 200 200 200 2500 1000 0 1 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 14 46 55 47 0 0 1 0 100 7 32 57 7 38 75 1274 1274 1274 2 4 3 6 4 7 1 0 3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 rat bat 30 30 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 200 200 200 200 2500 1300 0 1 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 14 71 66 69 0 0 1 0 2025 7 32 57 7 39 76 1274 1274 1274 2 4 3 6 4 7 1 0 3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 rat bat 30 30 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 200 200 200 200 2500 1600 0 1 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 14 62 64 66 0 0 1 0 100 7 32 57 7 40 77 1274 1274 1274 2 4 3 6 4 7 1 0 3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 rat bat 30 30 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 200 200 200 200 2500 1900 0 1 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 14 43 65 43 0 0 1 0 2025 7 32 57 7 41 78 1274 1274 1274 2 4 3 6 4 7 1 0 3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 rat bat 30 30 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 30 30 30 30 2500 2200 0 1 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 14 81 53 76 0 0 1 0 100 7 32 57 7 42 79 1274 1274 1274 2 4 3 6 4 7 1 0 3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 fallen3 wraith1 goatman3 cr_archer3 rat bat 30 30 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 64 18 64 18 3000 1000 0 1 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 84 108 114 71 0 0 1 0 2025 8 33 58 8 40 70 850 850 850 1 4 1 4 2 5 1 0 3 bighead4 corruptrogue3 sk_archer2 skmage_ltng1 bighead4 corruptrogue3 sk_archer2 skmage_ltng1 bighead4 corruptrogue3 sk_archer2 skmage_ltng1 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 56 40 56 40 0 -40 26 1 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 46 78 82 90 1 0 1 0 2025 9 34 59 9 40 70 850 850 850 1 4 2 5 3 6 1 0 3 brute3 corruptrogue4 fallenshaman3 quillrat4 brute3 corruptrogue4 fallenshaman3 quillrat4 brute3 corruptrogue4 fallenshaman3 quillrat4 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 200 200 200 200 -1 -1 0 1 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 138 93 89 100 0 0 1 0 2025 9 34 59 9 40 70 930 930 930 2 5 5 8 7 11 1 0 3 corruptrogue4 goatman5 fallenshaman3 sk_archer3 skmage_fire2 corruptrogue4 goatman5 fallenshaman3 sk_archer3 skmage_fire2 corruptrogue4 goatman5 fallenshaman3 sk_archer3 skmage_fire2 rat bat 30 30 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 200 200 200 200 3500 1000 0 1 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 14 80 73 66 1 0 1 0 2025 10 35 60 10 41 71 930 930 930 2 5 5 8 7 11 1 1 3 fallen4 wraith2 goatman5 sk_archer3 skmage_fire2 fallen4 wraith2 goatman5 sk_archer3 skmage_fire2 fallen4 wraith2 goatman5 sk_archer3 skmage_fire2 rat bat 30 30 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 200 200 200 200 3500 1300 0 1 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 14 75 72 60 0 0 1 0 2025 10 35 60 10 41 71 930 930 930 2 5 5 8 7 11 1 1 3 fallen4 wraith2 goatman5 sk_archer3 skmage_fire2 fallen4 wraith2 goatman5 sk_archer3 skmage_fire2 fallen4 wraith2 goatman5 sk_archer3 skmage_fire2 rat bat 30 30 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 200 200 200 200 3500 1600 0 1 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 14 41 77 73 0 0 1 0 2025 10 35 60 10 41 71 930 930 930 2 5 5 8 7 11 1 1 3 fallen4 wraith2 goatman5 sk_archer3 skmage_ltng2 fallen4 wraith2 goatman5 sk_archer3 skmage_ltng2 fallen4 wraith2 goatman5 sk_archer3 skmage_ltng2 rat bat 30 30 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 18 20 18 20 4000 1000 0 1 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 142 50 41 98 0 0 1 0 2025 10 35 60 10 41 72 970 970 970 1 4 2 5 3 5 1 0 3 fallen4 cr_archer4 skmage_ltng2 fallen4 cr_archer4 skmage_ltng2 fallen4 cr_archer4 skmage_ltng2 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 28 34 28 34 -4 -34 32 1 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 60 111 109 96 1 0 1 0 2025 11 36 61 11 42 72 930 930 930 2 5 3 6 4 6 1 0 3 bighead2 wraith2 fallenshaman4 bighead2 wraith2 fallenshaman4 bighead2 wraith2 fallenshaman4 rat bat 30 30 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 200 200 200 200 4500 1000 0 1 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 14 52 69 43 0 0 1 0 2025 11 36 61 11 42 72 930 930 930 2 5 5 8 7 11 1 0 3 bighead2 fallenshaman4 fetish1 bighead2 fallenshaman4 fetish1 bighead2 fallenshaman4 fetish1 rat bat 30 30 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 200 200 200 200 4500 1300 0 1 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 14 72 64 64 0 0 1 0 2025 11 36 61 11 42 73 930 930 930 2 5 5 8 7 11 1 0 3 bighead2 fallenshaman4 arach1 bighead2 fallenshaman4 arach1 bighead2 fallenshaman4 arach1 rat bat 30 30 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 200 200 200 200 4500 1600 0 1 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 14 54 58 45 1 0 1 0 2025 12 37 62 12 43 73 930 930 930 2 5 5 8 7 11 1 0 3 zombie3 bighead1 vampire5 zombie3 bighead1 vampire5 zombie3 bighead1 vampire5 rat bat 30 30 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 22 31 22 31 4500 1900 0 1 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 14 41 76 60 0 0 1 0 2025 12 37 62 12 43 73 930 930 930 2 5 5 8 7 11 1 0 3 zombie3 bighead1 zombie3 bighead1 zombie3 bighead1 rat bat 30 30 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 46 43 46 43 46 5000 1000 0 1 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 68 42 52 80 0 1 1 0 2025 6 31 56 6 39 76 770 770 770 2 5 4 7 6 9 0 0 3 skeleton2 goatman2 fallenshaman2 sk_archer1 skeleton2 goatman2 fallenshaman2 sk_archer1 skeleton2 goatman2 fallenshaman2 sk_archer1 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 40 26 80 80 80 80 80 80 5000 1148 0 1 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 82 95 94 110 0 0 1 0 2025 28 53 78 28 64 81 1050 1050 1050 1 4 4 7 7 11 1 0 3 hellbovine hellbovine hellbovine hellbovine hellbovine hellbovine hellbovine hellbovine hellbovine 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 56 56 56 56 1000 1000 0 1 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 142 103 81 74 1 1 0 0 2025 0 25 50 250 250 250 0 0 bug 30 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 80 80 80 80 -1 -1 0 1 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 32 113 113 54 0 0 1 0 2025 14 39 64 14 43 75 1130 1130 1130 2 5 5 9 8 12 1 0 3 sandleaper1 pantherwoman1 scarab1 vulture1 slinger1 sandleaper1 pantherwoman1 scarab1 vulture1 slinger1 sandleaper1 pantherwoman1 scarab1 vulture1 slinger1 scorpion 20 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 80 80 80 80 -1 -1 0 1 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 244 76 59 101 0 0 1 0 2025 15 40 65 15 44 76 1130 1130 1130 2 5 5 9 8 12 1 0 3 sandleaper2 pantherwoman2 vulture2 slinger5 sandleaper2 pantherwoman2 vulture2 slinger5 sandleaper2 pantherwoman2 vulture2 slinger5 scorpion 20 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 80 80 80 80 -1 -1 0 1 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 56 117 120 68 1 0 1 0 2025 16 41 66 16 45 76 1130 1130 1130 2 5 5 9 8 12 1 0 3 crownest3 sandmaggot1 swarm1 scarab2 vulture2 crownest3 sandmaggot1 swarm1 scarab2 vulture2 foulcrow3 sandmaggot1 swarm1 scarab2 vulture2 scorpion 20 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 80 80 80 80 -1 -1 0 1 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 30 107 54 104 0 0 1 0 3800 17 42 67 17 46 77 1130 1130 1130 2 5 5 9 8 12 1 0 3 zombie5 sandraider2 sandleaper3 pantherwoman3 slinger6 zombie5 sandraider2 sandleaper3 pantherwoman3 slinger6 zombie5 sandraider2 sandleaper3 pantherwoman3 slinger6 scorpion 20 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 32 32 32 32 -1 -1 0 1 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 82 122 113 49 1 0 1 0 2025 18 43 68 18 46 77 1130 1130 1130 2 5 5 9 8 12 1 0 3 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 scorpion 20 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 13 13 28 80 80 80 80 80 80 2500 1000 0 1 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 226 72 115 44 1 1 1 0 3800 16 41 66 16 48 79 1130 1130 1130 4 7 8 12 1 0 3 brute4 sandmaggot3 pantherwoman4 scarab4 slinger4 brute4 sandmaggot3 pantherwoman4 scarab4 slinger4 brute4 sandmaggot3 pantherwoman4 scarab4 slinger4 scorpion 20 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 200 200 200 200 1500 1000 0 1 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 26 69 72 79 0 0 1 0 100 13 38 63 13 43 74 930 930 930 1 4 4 7 7 11 1 0 3 skeleton4 sandraider1 mummy1 sk_archer4 skeleton4 sandraider1 mummy1 sk_archer4 skeleton4 sandraider1 mummy1 sk_archer4 rat bat scorpion 30 100 20 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 200 200 200 200 1500 1300 0 1 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 252 116 89 52 0 0 1 0 2025 13 38 63 13 43 74 930 930 930 1 4 4 7 7 11 1 0 3 skeleton4 sandraider1 mummy1 sk_archer4 skeleton4 sandraider1 mummy1 sk_archer4 skeleton4 sandraider1 mummy1 sk_archer4 rat bat scorpion 30 100 20 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 200 200 200 200 1500 1600 0 1 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 252 72 103 41 0 0 1 0 2025 14 39 64 14 44 75 930 930 930 1 4 4 7 7 11 1 0 3 skeleton4 pantherwoman1 mummy1 skmage_fire3 skeleton4 pantherwoman1 mummy1 skmage_fire3 skeleton4 pantherwoman1 mummy1 skmage_fire3 rat bat scorpion 30 100 20 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 11 11 32 16 32 16 32 16 32 2000 1000 0 1 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 188 88 117 105 0 0 1 0 2025 13 25 50 13 46 77 2450 2450 2450 10 12 10 12 10 12 0 0 4 sandraider3 baboon1 blunderbore1 sk_archer5 rat bat scorpion 30 30 20 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 11 11 33 100 100 100 100 100 100 2000 1119 0 1 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 102 104 97 42 0 0 1 0 2025 13 38 63 13 47 78 2450 2450 2450 2 4 4 7 6 10 1 0 3 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_cold4 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_cold4 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_cold4 rat bat scorpion 30 30 20 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 11 11 34 100 100 100 100 100 100 2000 1319 0 1 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 48 120 104 119 0 0 1 0 2025 13 38 63 13 47 78 2450 2450 2450 1 4 4 7 6 10 1 1 3 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_fire4 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_fire4 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_fire4 rat bat scorpion 30 30 20 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 11 11 35 100 100 100 100 100 100 2000 1519 0 1 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 58 100 103 43 1 0 1 0 2025 13 38 63 13 47 78 2450 2450 2450 1 4 4 7 6 10 1 1 3 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_pois4 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_pois4 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_pois4 rat bat scorpion 30 30 20 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 11 11 36 100 100 100 100 100 100 2000 1719 0 1 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 162 50 53 116 1 1 1 0 2025 13 38 63 13 48 78 2450 2450 2450 1 4 4 7 6 10 1 1 3 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_ltng4 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_ltng4 sandraider3 baboon1 sk_archer5 blunderbore1 skmage_ltng4 rat bat scorpion 30 30 20 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 200 200 200 200 3000 1000 0 1 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 44 91 57 92 0 0 1 0 1000 12 37 62 12 44 78 2450 2450 2450 1 4 4 7 7 11 1 0 3 skeleton5 scarab1 skmage_ltng3 skeleton5 scarab1 skmage_ltng3 skeleton5 scarab1 skmage_ltng3 rat bat scorpion 30 30 20 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 200 200 200 200 3000 1300 0 1 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 92 97 45 101 0 0 1 0 1000 12 37 62 12 44 79 2450 2450 2450 1 4 4 7 7 11 1 0 3 mummy2 unraveler1 unraveler1 batdemon1 slinger2 mummy2 unraveler1 unraveler1 batdemon1 slinger2 mummy2 unraveler1 unraveler1 batdemon1 slinger2 rat bat scorpion 30 30 20 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 200 200 200 200 3000 1600 0 1 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 236 105 78 64 0 0 1 0 1000 13 38 63 13 45 81 2450 2450 2450 1 4 4 7 7 11 1 0 3 mummy2 unraveler1 unraveler1 batdemon1 slinger2 mummy2 unraveler1 unraveler1 batdemon1 slinger2 mummy2 unraveler1 unraveler1 batdemon1 slinger2 rat bat scorpion 30 30 20 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 200 200 200 200 3000 1900 0 1 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 180 90 60 96 0 0 1 0 1000 14 39 64 14 47 82 2450 2450 2450 1 4 4 7 7 11 1 0 3 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 rat bat scorpion 30 30 20 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 200 200 200 200 3000 2200 0 1 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 170 100 50 45 0 0 1 0 1000 12 37 62 12 44 79 2450 2450 2450 1 4 1 4 2 5 1 0 3 skeleton5 scarab1 skmage_pois3 skeleton5 scarab1 skmage_pois3 skeleton5 scarab1 skmage_pois3 rat bat scorpion 30 30 20 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 200 200 200 200 3000 2500 0 1 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 168 115 66 92 0 0 1 0 1000 13 38 63 13 45 82 2450 2450 2450 1 4 1 4 2 5 1 0 3 mummy2 unraveler1 unraveler1 batdemon1 slinger2 mummy2 unraveler1 unraveler1 batdemon1 slinger2 mummy2 unraveler1 unraveler1 batdemon1 slinger2 rat bat scorpion 30 30 20 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 200 200 200 200 3000 2800 0 1 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 226 89 92 62 0 0 1 0 1000 14 39 64 14 47 83 2450 2450 2450 1 4 1 4 2 5 1 0 3 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 clawviper2 clawviper2 clawviper3 clawviper3 mummy3 unraveler2 rat bat scorpion 30 30 20 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 200 200 200 200 3500 1000 0 1 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 72 57 110 82 0 0 1 0 2025 17 42 67 17 45 84 1240 1240 1240 1 5 4 7 6 9 1 0 3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 rat bat scorpion 30 30 20 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 200 200 200 200 3500 1300 0 1 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 14 82 53 84 0 0 1 0 2025 17 42 67 17 45 84 1240 1240 1240 1 5 4 7 6 9 1 0 3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 rat bat scorpion 30 30 20 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 200 200 200 200 3500 1600 0 1 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 46 116 63 112 0 0 1 0 2025 17 42 67 17 46 85 1240 1240 1240 1 5 3 6 5 8 1 0 3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 sandmaggot1 sandmaggot2 swarm2 scarab2 scarab3 rat bat scorpion 30 30 20 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 200 200 200 200 4000 1000 0 1 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 186 113 92 75 0 0 1 0 2025 17 42 67 17 46 85 930 930 930 1 5 4 7 7 11 1 0 3 zombie5 sandraider3 mummy3 skmage_ltng4 zombie5 sandraider3 mummy3 skmage_ltng4 zombie5 sandraider3 mummy3 skmage_ltng4 rat bat scorpion 30 100 20 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 13 13 48 200 200 200 200 200 200 4500 1000 0 1 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 134 108 103 94 0 0 1 0 2025 17 42 67 17 49 80 2450 2450 2450 1 5 5 9 8 12 1 0 3 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 rat bat scorpion 30 30 20 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 13 13 49 200 200 200 200 200 200 4500 1300 0 1 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 146 83 62 103 0 0 1 0 2025 17 42 67 17 49 80 2450 2450 2450 1 5 5 9 8 12 1 0 3 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 rat bat scorpion 30 30 20 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 13 13 50 200 200 200 200 200 200 4500 1600 0 1 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 166 73 63 105 0 0 1 0 2025 17 42 67 17 49 80 2450 2450 2450 1 5 5 9 8 12 1 0 3 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 rat bat scorpion 30 30 20 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 13 13 51 200 200 200 200 200 200 4500 1900 0 1 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 148 77 49 102 0 0 1 0 2025 17 42 67 17 49 80 2450 2450 2450 1 5 5 9 8 12 1 0 3 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 rat bat scorpion 30 30 20 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 13 13 52 200 200 200 200 200 200 4500 2200 0 1 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 216 43 76 94 0 0 1 0 2025 17 42 67 17 49 80 2450 2450 2450 1 5 5 9 8 12 1 0 3 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 rat bat scorpion 30 30 20 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 13 13 53 200 200 200 200 200 200 4500 2500 0 1 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 138 108 59 84 0 0 1 0 2025 17 42 67 17 49 80 2450 2450 2450 1 5 5 9 8 12 1 0 3 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 rat bat scorpion 30 30 20 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 13 13 54 200 200 200 200 200 200 4500 2800 0 1 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 36 74 78 85 0 0 1 0 2025 17 42 67 17 49 80 2450 2450 2450 1 5 5 9 8 12 1 0 3 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 rat bat scorpion 30 30 20 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 13 13 55 32 47 32 47 32 47 4500 3100 0 2 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 170 69 43 51 0 1 1 0 2025 17 42 67 17 49 80 2450 2450 2450 1 5 1 5 1 5 1 0 3 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 wraith4 scarab4 mummy4 unraveler3 unraveler3 vampire1 blunderbore2 rat bat scorpion larva 30 30 20 100 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 11 11 56 200 200 200 200 200 200 5000 1000 0 1 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 124 72 52 99 1 1 1 11 3800 14 39 64 14 48 79 1240 1240 1240 5 8 5 8 8 12 1 0 3 wraith3 goatman4 vampire1 wraith3 goatman4 vampire1 wraith3 goatman4 vampire1 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 64 48 64 48 1000 1000 0 1 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 14 104 76 93 0 1 0 0 2025 0 25 50 250 250 250 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 64 192 64 192 -1 -1 0 1 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 244 105 63 44 0 0 1 0 2025 21 46 71 21 49 79 900 900 900 2 5 5 9 11 18 1 5 3 baboon3 mosquito1 thornhulk1 fetish2 fetishblow2 foulcrow4 baboon3 mosquito1 thornhulk1 fetish2 fetishblow2 foulcrow4 baboon3 mosquito1 thornhulk1 fetish2 fetishblow2 foulcrow4 snake parrot 30 30 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 64 192 64 192 -1 -1 0 1 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 40 83 100 98 0 0 1 0 2025 21 46 71 21 50 80 900 900 900 2 5 5 9 11 18 1 5 3 frogdemon1 frogdemon2 thornhulk2 zombie4 fetishshaman2 willowisp1 frogdemon1 frogdemon2 thornhulk2 zombie4 fetishshaman2 willowisp1 frogdemon1 frogdemon2 thornhulk2 zombie4 fetishshaman2 willowisp1 snake parrot 30 30 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 64 192 64 192 -1 -1 0 1 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 254 77 89 105 0 0 1 0 2025 22 47 72 22 50 80 900 900 900 2 5 5 9 11 18 1 5 3 fetish3 fetishshaman3 fetish4 fetishshaman4 vulture4 frogdemon3 fetishblow3 fetish3 fetishshaman3 fetish4 fetishshaman4 vulture4 frogdemon3 fetishblow3 fetish3 fetishshaman3 fetish4 fetishshaman4 vulture4 frogdemon3 fetishblow3 snake parrot 30 30 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 80 64 80 64 -1 -1 0 1 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 120 48 73 112 0 0 1 0 2025 22 47 72 22 52 80 575 575 575 2 5 5 9 8 12 1 0 3 baboon4 sandleaper4 vulture3 zealot1 baboon4 sandleaper4 vulture3 zealot1 baboon4 sandleaper4 vulture3 zealot1 snake parrot 30 30 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 80 64 80 64 -1 -1 0 1 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 248 79 95 85 0 0 1 0 2025 22 47 72 22 52 81 575 575 575 2 5 5 9 8 12 1 0 3 thornhulk3 swarm4 zealot2 cantor1 thornhulk3 swarm4 zealot2 cantor1 thornhulk3 swarm4 zealot2 cantor1 snake parrot 30 30 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 80 64 80 64 -1 -1 0 1 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 252 105 114 109 0 0 1 0 2025 23 48 73 23 52 81 575 575 575 2 5 5 9 8 12 1 0 3 vulture4 zealot3 cantor2 thornhulk3 vulture4 zealot3 cantor2 thornhulk3 vulture4 zealot3 cantor2 thornhulk3 snake parrot 30 30 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 48 16 48 16 -1 -1 0 1 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 156 94 94 95 0 0 1 0 2025 24 49 74 24 53 81 575 575 575 2 5 5 9 8 12 1 0 3 sandraider4 baboon5 cantor3 sandraider4 baboon5 cantor3 sandraider4 baboon5 cantor3 snake parrot 30 30 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 64 64 64 64 -1 -1 0 1 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 235 0 100 0 0 0 0 0 64 -1 64 -1 -1 -1 -1 -1 204 62 86 57 0 0 1 0 2025 24 49 74 24 54 82 575 575 575 1 4 4 8 7 11 1 0 3 cantor3 cantor3 vampire2 cantor3 cantor3 vampire2 cantor3 cantor3 vampire2 snake parrot 30 30 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 200 200 200 200 1500 1000 0 1 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 20 42 73 116 0 0 1 0 2025 21 46 71 21 50 79 950 950 950 1 4 4 7 5 8 1 0 3 arach3 arach4 batdemon2 sandmaggot4 arach3 arach3 arach4 batdemon2 sandmaggot4 arach3 arach3 arach4 batdemon2 sandmaggot4 arach3 minispider 30 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 200 200 200 200 1500 1300 0 1 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 150 92 57 45 0 0 1 0 2025 21 46 71 21 50 79 950 950 950 1 4 4 7 5 8 1 0 3 arach3 arach4 batdemon2 sandmaggot4 arach3 arach3 arach4 batdemon2 sandmaggot4 arach3 arach3 arach4 batdemon2 sandmaggot4 arach3 minispider 30 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 200 200 200 200 2000 1000 0 1 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 182 87 92 94 0 0 1 0 1000 21 46 71 21 51 80 950 950 950 1 4 4 7 6 9 1 0 3 mummy4 bonefetish4 batdemon2 willowisp1 bonefetish5 mummy4 bonefetish4 batdemon2 willowisp1 bonefetish5 mummy4 bonefetish4 batdemon2 willowisp1 bonefetish5 rat 30 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 200 200 200 200 2000 1300 0 1 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 178 112 71 68 0 0 1 0 1000 21 46 71 21 51 81 950 950 950 1 4 4 7 6 8 1 0 3 bonefetish4 zombie4 batdemon2 willowisp1 bonefetish5 bonefetish4 zombie4 batdemon2 willowisp1 bonefetish5 bonefetish4 zombie4 batdemon2 willowisp1 bonefetish5 rat 30 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 200 200 200 200 2000 1600 0 1 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 136 52 72 90 0 0 1 0 1000 22 47 72 22 51 81 950 950 950 1 4 4 7 6 9 1 0 3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 rat 30 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 200 200 200 200 2000 1900 0 1 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 128 48 105 56 0 0 1 0 1000 22 47 72 22 51 82 950 950 950 1 4 4 7 6 8 1 0 3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 rat 30 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 40 40 40 40 2000 2200 0 1 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 210 76 58 76 0 0 1 0 1000 21 46 71 21 51 82 950 950 950 5 7 5 7 5 7 1 0 3 bonefetish4 bonefetish5 batdemon2 willowisp1 bonefetish4 bonefetish5 batdemon2 willowisp1 mosquito2 bonefetish5 batdemon2 willowisp1 rat 30 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 40 40 40 40 2000 2340 0 1 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 182 52 45 77 0 0 1 0 1000 22 47 72 22 51 83 950 950 950 5 7 5 7 5 7 1 0 3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 fetish3 fetishshaman3 fetish4 fetishshaman4 batdemon3 wraith5 fetishblow3 bonefetish3 rat 30 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 200 200 200 200 2500 1000 0 1 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 68 120 115 92 0 0 1 0 2025 23 48 73 23 52 84 900 900 900 2 5 4 7 7 10 1 0 3 mummy4 mosquito2 batdemon3 unraveler4 bonefetish4 mummy4 mosquito2 batdemon3 unraveler4 bonefetish4 mummy4 mosquito2 batdemon3 unraveler4 bonefetish4 rat rat 100 100 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 18 22 18 22 2500 1300 0 1 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 132 80 103 99 0 0 1 0 2025 24 49 74 24 53 85 900 900 900 2 5 4 7 7 10 1 0 3 mummy4 unraveler4 mosquito4 frogdemon3 bonefetish4 mummy4 unraveler4 mosquito4 frogdemon3 bonefetish4 mummy4 unraveler4 mosquito4 frogdemon3 bonefetish4 rat rat 100 100 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 24 24 24 24 3000 1000 0 1 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 226 42 42 60 0 0 1 0 100 23 48 73 23 53 84 1240 1240 1240 2 5 2 5 3 5 1 0 3 brute5 corruptrogue5 arach5 vampire2 brute5 corruptrogue5 arach5 vampire2 brute5 corruptrogue5 arach5 vampire2 rat 30 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 24 24 24 24 3000 1124 0 1 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 222 113 59 87 0 0 1 0 100 23 48 73 23 53 84 1240 1240 1240 2 5 2 5 3 5 1 0 3 brute5 corruptrogue5 arach5 vampire2 brute5 corruptrogue5 arach5 vampire2 brute5 corruptrogue5 arach5 vampire2 rat 30 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 24 24 24 24 3000 1248 0 1 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 158 92 57 80 0 0 1 0 100 23 48 73 23 53 84 1240 1240 1240 2 5 2 5 3 5 1 0 3 brute5 corruptrogue5 arach5 vampire2 brute5 corruptrogue5 arach5 vampire2 brute5 corruptrogue5 arach5 vampire2 rat 30 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 24 24 24 24 3000 1372 0 1 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 208 68 78 110 0 0 1 0 100 24 49 74 24 54 85 1240 1240 1240 2 5 2 5 3 5 1 0 3 clawviper5 scarab5 batdemon4 cr_archer5 clawviper5 scarab5 batdemon4 cr_archer5 clawviper5 scarab5 batdemon4 cr_archer5 rat 30 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 24 24 24 24 3000 1496 0 1 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 190 47 67 77 0 0 1 0 100 24 49 74 24 54 85 1240 1240 1240 2 5 2 5 3 5 1 0 3 clawviper5 scarab5 batdemon4 cr_archer5 clawviper5 scarab5 batdemon4 cr_archer5 clawviper5 scarab5 batdemon4 cr_archer5 rat 30 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 24 24 24 24 3000 1620 0 1 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 226 105 69 119 0 0 1 0 100 24 49 74 24 54 85 1240 1240 1240 2 5 2 5 3 5 1 0 3 clawviper5 scarab5 batdemon4 cr_archer5 clawviper5 scarab5 batdemon4 cr_archer5 clawviper5 scarab5 batdemon4 cr_archer5 rat 30 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 21 21 74 200 200 200 200 200 200 3500 1000 0 1 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 238 117 96 78 0 0 1 0 3800 25 50 75 25 55 83 1050 1050 1050 2 5 4 7 6 10 1 0 3 mummy5 vampire3 blunderbore3 bonefetish5 mummy5 vampire3 blunderbore3 bonefetish5 mummy5 vampire3 blunderbore3 bonefetish5 bat 30 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 21 21 75 200 200 200 200 200 200 3500 1300 0 1 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 26 52 62 42 0 0 1 0 3700 25 50 75 25 55 83 1050 1050 1050 2 5 4 7 6 10 1 0 3 mummy5 vampire3 blunderbore3 bonefetish5 mummy5 vampire3 blunderbore3 bonefetish5 mummy5 vampire3 blunderbore3 bonefetish5 bat 30 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 21 21 76 50 50 50 50 50 50 3500 1600 0 1 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 34 41 86 66 0 1 1 0 3800 25 50 75 25 55 83 1050 1050 1050 2 5 4 7 6 10 1 0 3 vampire4 vampire4 vampire4 vampire4 vampire4 bonefetish5 bat 30 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 32 24 32 24 1000 1000 0 1 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 116 75 104 91 0 1 0 0 2025 0 25 50 250 250 250 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 80 64 80 64 -1 -1 0 1 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 242 92 114 99 0 0 1 0 3900 26 51 76 26 56 82 1050 1050 1050 1 4 6 9 9 13 1 0 3 sandleaper5 vilemother1 fingermage1 regurgitator1 doomknight1 megademon3 sandleaper5 vilemother1 fingermage1 regurgitator1 doomknight1 megademon3 sandleaper5 vilemother1 fingermage1 regurgitator1 doomknight1 megademon1 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 64 80 64 80 -1 -1 0 1 0 0 0 0 1 1 0 0 3 27 -1 -1 -1 -1 0 133 0 0 0 0 0 0 -1 69 -1 -1 -1 -1 -1 -1 202 45 43 85 0 0 1 0 2025 26 51 76 26 56 83 1050 1050 1050 1 4 6 9 9 13 1 0 3 willowisp3 vilemother1 fingermage1 regurgitator1 doomknight1 megademon3 willowisp3 vilemother1 fingermage1 regurgitator1 doomknight1 megademon3 willowisp3 vilemother1 fingermage1 regurgitator1 doomknight1 megademon2 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 80 64 80 64 -1 -1 0 1 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 128 72 73 65 0 0 1 0 2025 27 52 77 27 57 84 1050 1050 1050 1 4 6 9 9 13 1 0 3 bighead5 batdemon5 vilemother2 fingermage2 regurgitator2 doomknight2 megademon2 bighead5 batdemon5 vilemother2 fingermage2 regurgitator2 doomknight2 megademon2 bighead5 batdemon5 vilemother2 fingermage2 regurgitator2 doomknight2 megademon2 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 200 200 200 200 -1 -1 0 1 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 140 96 107 91 0 0 1 0 3800 27 52 77 27 57 85 1050 1050 1050 1 4 5 8 7 10 1 5 3 sandmaggot5 blunderbore4 vilemother3 fingermage2 regurgitator3 doomknight2 megademon2 sandmaggot5 blunderbore4 vilemother3 fingermage2 regurgitator3 doomknight2 megademon2 sandmaggot5 blunderbore4 vilemother3 fingermage2 regurgitator3 doomknight2 megademon3 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 120 120 120 120 1500 1000 0 1 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 24 79 115 87 0 0 1 0 2025 28 53 78 28 58 85 1050 1050 1050 1 4 5 8 7 10 1 0 3 fingermage3 doomknight3 megademon3 fingermage3 doomknight3 megademon3 fingermage3 doomknight3 megademon3 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 210 101 81 120
Act 5 - Town 109 4 4 79 40 40 40 40 40 40 1000 1000 0 1 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 136 101 102 62 0 1 0 0 2025 0 0 0 250 250 250 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 240 48 240 48 760 1000 0 1 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 136 79 41 115 0 0 1 0 2025 24 49 74 24 58 80 250 900 900 2 5 4 8 5 9 0 0 2 minion1 deathmauler1 overseer1 imp1 sk_archer6 quillrat6 bighead6 1 minion1 deathmauler1 overseer1 imp1 sk_archer6 quillrat6 foulcrow5 vulture5 thornhulk5 slinger7 bunny 3 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 -1 -1 -1 -1 0 1 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 228 100 94 62 0 0 1 0 3900 25 50 75 25 59 81 700 700 700 2 5 7 10 10 14 0 0 3 imp1 siegebeast2 1 imp3 siegebeast1 minion2 deathmauler2 sk_archer6 cr_archer6 cr_lancer6 slinger8 blunderbore5 overseer2 imp2 bunny 2 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 -1 -1 -1 -1 0 1 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 132 118 63 65 0 0 1 0 2025 26 51 76 26 60 81 600 600 600 2 5 7 10 10 14 0 0 3 overseer2 minion2 1 deathmauler3 minion4 siegebeast3 overseer5 imp3 slinger9 skmage_ltng5 skmage_fire5 goatman7 fallenshaman6 overseer2 bunny 2 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 200 200 200 200 2000 1000 0 1 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 50 81 117 82 0 0 1 0 2025 29 54 79 29 61 82 950 950 950 4 7 5 8 8 12 1 0 3 frozenhorror1 succubus3 bloodlord1 1 snowyeti1 frozenhorror1 succubus1 bloodlord3 sandraider7 sandleaper6 skmage_cold5 cr_archer7 wraith6 clawviper6 snowyeti1 bloodlord1 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 64 64 64 64 2000 1300 0 1 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 152 103 87 110 0 0 1 0 2025 29 54 79 29 61 83 1050 1050 1050 4 7 5 8 7 11 1 0 3 snowyeti2 succubus5 reanimatedhorde1 1 snowyeti1 frozenhorror1 succubus6 reanimatedhorde1 succubuswitch6 willowisp5 skmage_cold5 cr_lancer7 wraith6 clawviper6 frozenhorror2 deathmauler3 bloodlord1 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 200 200 200 200 2000 1464 0 1 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 66 66 90 87 0 0 1 0 2025 29 54 79 29 61 83 950 950 950 4 7 5 8 8 12 1 0 3 deathmauler3 reanimatedhorde2 frozenhorror2 1 snowyeti1 frozenhorror1 reanimatedhorde1 skeleton6 wraith7 batdemon6 skmage_cold5 bloodlord6 skeleton6 clawviper7 snowyeti2 deathmauler3 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 32 32 32 32 2000 1764 0 1 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 164 71 56 98 0 0 1 0 2025 29 54 79 29 61 84 850 850 850 4 7 5 8 7 11 1 0 3 snowyeti1 succubus2 1 snowyeti2 succubus6 frozenhorror2 bighead6 goatman7 cr_archer7 skmage_cold5 wraith6 bloodlord6 sandraider7 succubus3 frozenhorror3 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 128 80 128 80 2000 1896 0 1 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 164 109 100 81 0 0 1 0 2025 27 52 77 27 60 81 800 800 800 3 6 5 9 10 14 0 0 3 siegebeast2 imp4 1 siegebeast2 imp2 deathmauler4 minion5 succubus5 sk_archer7 vulture5 skmage_ltng5 goatman10 pantherwoman6 imp4 bunny 2 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 200 200 200 200 2000 2076 0 1 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 224 69 120 82 0 0 1 0 2025 29 54 79 29 62 82 900 900 900 4 7 5 8 8 12 1 0 3 frozenhorror3 deathmauler3 bloodlord1 1 frozenhorror2 snowyeti2 bloodlord7 fallenshaman6 quillrat7 cr_lancer7 skmage_cold5 cr_lancer7 reanimatedhorde2 bighead6 frozenhorror3 succubus1 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 32 32 32 32 2000 2376 0 1 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 90 83 97 111 0 0 1 0 2025 29 54 79 29 62 83 900 900 900 4 7 5 8 7 11 1 0 3 snowyeti4 succubus3 reanimatedhorde3 1 snowyeti2 succubus4 bloodlord7 frozenhorror2 clawviper7 bonefetish5 willowisp5 batdemon6 wraith6 succubuswitch6 succubus5 deathmauler5 snowyeti4 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 20 28 20 28 2000 2508 0 1 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 140 121 62 119 0 0 1 0 0 27 52 77 37 68 87 250 250 250 0 0 3 ancientbarb1 ancientbarb2 ancientbarb3 ancientbarb1 ancientbarb2 ancientbarb3 ancientbarb1 ancientbarb2 ancientbarb3 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 22 27 22 27 2000 2636 0 1 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 98 78 55 87 0 1 1 0 2025 32 57 82 32 63 83 250 250 250 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 80 80 80 80 2000 2763 0 1 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 28 122 84 94 0 0 1 0 3000 33 58 83 33 63 83 950 950 950 1 3 3 6 7 10 0 0 3 reanimatedhorde3 bloodlord2 reanimatedhorde3 bloodlord2 deathmauler5 skeleton7 sandleaper7 fallenshaman7 scarab6 fetish6 skmage_pois5 baboon7 reanimatedhorde2 bloodlord2 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 80 80 80 80 2000 2943 0 1 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 54 103 67 75 0 0 1 0 2025 34 59 84 34 64 84 950 950 950 1 3 3 6 7 10 0 0 3 reanimatedhorde4 deathmauler2 putriddefiler1 1 bloodlord2 sandraider7 baboon8 goatman9 quillrat8 unraveler6 fetishblow6 cantor5 vilemother4 sandmaggot6 reanimatedhorde3 deathmauler2 baaltaunt 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 84 84 84 84 2500 1000 0 1 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 24 122 61 87 0 0 1 0 1000 36 61 86 36 64 84 950 950 950 0 0 3 minion6 succubus4 putriddefiler2 1 minion9 succubus4 putriddefiler2 reanimatedhorde3 wraith6 arach6 sk_archer9 fetishshaman6 baboon6 clawviper9 minion6 succubus4 putriddefiler1 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 200 200 200 200 2500 1184 0 1 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 98 110 73 47 0 1 1 0 3800 39 64 89 39 60 81 1050 1050 1050 1 4 2 5 4 7 1 0 3 bloodlord3 imp2 1 bloodlord3 imp6 megademon4 succubus7 succubuswitch7 fallenshaman8 sk_archer10 bonefetish6 fingermage4 minion10 overseer2 bloodlord4 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 200 200 200 200 2500 1484 0 1 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 208 113 121 110 0 1 1 0 3800 39 64 89 39 61 82 1050 1050 1050 1 4 2 5 4 7 1 0 3 bloodlord2 overseer3 1 bloodlord3 imp6 megademon4 succubus7 clawviper8 blunderbore6 unraveler7 skmage_fire6 goatman8 regurgitator4 overseer3 bloodlord4 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 200 200 200 200 2500 1784 0 1 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 104 57 121 69 0 1 1 0 3800 39 64 89 39 62 83 950 950 950 1 4 2 5 4 7 1 0 3 imp4 overseer4 1 imp7 overseer4 megademon4 clawviper8 bloodlord2 succubuswitch5 vampire6 fetishblow7 reanimatedhorde6 dkmag1 overseer4 bloodlord5 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 39 39 95 200 200 200 200 200 200 2500 2084 0 1 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 180 120 41 121 0 0 1 0 2025 39 64 89 39 65 85 950 950 950 1 3 3 6 7 11 0 0 3 reanimatedhorde5 succubuswitch2 putriddefiler3 1 reanimatedhorde6 succubuswitch8 putriddefiler3 sandraider9 bloodlord5 cr_lancer8 vilemother5 cantor6 vampire7 fetishshaman8 bloodlord3 succubuswitch2 putriddefiler2 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 39 39 96 200 200 200 200 200 200 2500 2384 0 1 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 52 115 87 117 0 0 1 0 2025 40 65 90 40 65 85 950 950 950 1 3 3 6 7 11 0 0 3 suicideminion6 minion7 1 suicideminion6 minion11 fetish8 batdemon7 clawviper10 mummy6 skmage_pois6 unraveler8 scarab7 willowisp6 bloodlord4 minion7 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 39 39 97 200 200 200 200 200 200 2500 2684 0 1 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 92 66 67 43 0 0 1 0 2025 42 67 92 42 66 85 950 950 950 1 3 3 6 7 11 0 0 3 bloodlord5 imp5 putriddefiler4 1 bloodlord5 imp5 putriddefiler4 fingermage5 dkmag2 fetishblow8 skmage_ltng6 wraith8 succubus4 overseer4 bloodlord5 succubuswitch3 putriddefiler3 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 39 39 98 40 52 40 52 40 52 3000 1000 0 1 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 90 44 98 46 0 0 1 0 1000 43 68 93 43 66 85 950 950 950 1 3 2 5 5 8 0 0 3 bloodlord5 succubuswitch3 1 bloodlord5 succubuswitch5 bonefetish7 sandraider10 willowisp7 vampire8 megademon5 unraveler9 dkmag2 clawviper10 bloodlord5 succubuswitch3 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 39 39 99 55 55 55 55 55 55 3000 1152 0 1 0 0 0 0 1 1 0 1 2 34 -1 -1 -1 -1 131 134 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 188 106 95 101 0 1 1 0 0 0 0 0 43 66 85 250 250 250 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
Act 4 - Izuals Chamber 133 3 3 100 50 50 50 50 50 50 2000 2999 0 1 0 0 0 0 1 1 0 0 2 28 -1 -1 -1 -1 0 105 0 0 0 0 0 0 -1 18 -1 -1 -1 -1 -1 -1 58 117 53 44 0 0 1 0 2025 26 56 83 26 56 83 1050 1050 1050 1 4 3 5 3 5 0 0 3 willowisp3 doomknight1 megademon3 1 willowisp3 doomknight1 megademon3 0 32 255 Izuals Chamber To Izuals Chamber a5l28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Act 5 - Hells Torment 1 134 4 4 39 39 101 200 200 200 200 200 200 200 200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 135 132 184 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 76 52 53 97 0 0 1 0 2025 39 64 89 45 96 110 950 950 950 5 8 7 10 7 11 0 0 8 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 suicideminion22 overseer22 1 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 suicideminion22 overseer22 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 overseer22 0 47 255 Hells Torment Level 1 To Hells Torment Level 1 A5L29 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 2 135 4 4 39 39 102 200 200 200 200 200 200 200 400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 136 134 185 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 36 93 80 82 0 0 1 0 2025 39 64 89 46 97 110 950 950 950 5 8 7 10 7 11 0 0 8 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 suicideminion22 overseer22 1 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 suicideminion22 overseer22 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 overseer22 0 47 255 Hells Torment Level 2 To Hells Torment Level 2 A5L30 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 3 136 4 4 39 39 103 200 200 200 200 200 200 200 600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 137 135 186 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 18 85 89 69 0 0 1 0 2025 39 64 89 47 97 110 950 950 950 5 8 7 10 7 11 0 0 8 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 suicideminion22 overseer22 1 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 suicideminion22 overseer22 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 overseer22 0 47 255 Hells Torment Level 3 To Hells Torment Level 3 A5L31 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 4 137 4 4 39 39 103 200 200 200 200 200 200 200 800 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 138 136 187 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 138 69 96 87 0 0 1 0 2025 39 64 89 47 97 110 950 950 950 5 8 7 10 7 11 0 0 8 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 suicideminion22 overseer22 1 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 suicideminion22 overseer22 reanimatedhorde22 siegebeast22 imp22 snowyeti22 succubus22 minion22 overseer22 0 47 255 Hells Torment Level 4 To Hells Torment Level 4 A5L32 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 5 138 4 4 39 39 105 200 200 200 200 200 200 200 1000 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 139 137 188 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 230 96 87 62 0 0 1 0 2025 39 64 89 49 98 110 950 950 950 5 8 7 10 7 11 0 0 8 succubus23 succubuswitch22 frozenhorror22 bloodlord22 deathmauler22 1 succubus23 succubuswitch22 frozenhorror22 bloodlord22 deathmauler22 bloodlord22 succubuswitch22 succubus23 deathmauler22 frozenhorror22 0 47 255 Hells Torment Level 5 To Hells Torment Level 5 A5L33 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 6 139 4 4 39 39 106 200 200 200 200 200 200 200 1200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 140 138 189 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 232 52 63 72 0 0 1 0 2025 39 64 89 50 98 111 950 950 950 5 8 7 10 7 11 0 0 8 succubus23 succubuswitch22 frozenhorror22 bloodlord22 deathmauler22 1 succubus23 succubuswitch22 frozenhorror22 bloodlord22 deathmauler22 bloodlord22 succubuswitch22 succubus23 deathmauler22 frozenhorror22 0 47 255 Hells Torment Level 6 To Hells Torment Level 6 A5L34 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 7 140 4 4 39 39 107 200 200 200 200 200 200 200 1400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 141 139 190 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 132 77 94 57 0 0 1 0 2025 39 64 89 51 98 111 950 950 950 5 8 7 10 7 11 0 0 8 succubus23 succubuswitch2 frozenhorror22 bloodlord22 deathmauler22 1 succubus23 succubuswitch22 frozenhorror22 bloodlord22 deathmauler22 bloodlord22 succubuswitch22 succubus23 deathmauler22 frozenhorror22 0 47 255 Hells Torment Level 7 To Hells Torment Level 7 A5L35 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 8 141 4 4 39 39 108 200 200 200 200 200 200 200 1600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 142 140 191 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 54 94 110 108 0 0 1 0 2025 39 64 89 52 99 111 950 950 950 5 8 7 10 7 11 0 0 8 succubus23 succubuswitch2 frozenhorror22 bloodlord22 deathmauler22 1 succubus23 succubuswitch22 frozenhorror22 bloodlord22 deathmauler22 bloodlord22 succubuswitch22 succubus23 deathmauler22 frozenhorror22 0 47 255 Hells Torment Level 8 To Hells Torment Level 8 A5L36 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 9 142 4 4 39 39 109 200 200 200 200 200 200 200 1800 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 143 141 192 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 208 99 55 90 0 0 1 0 2025 39 64 89 53 99 111 950 950 950 5 8 7 10 7 11 0 0 8 clawviper22 putriddefiler22 painworm22 1 clawviper22 putriddefiler22 painworm22 putriddefiler22 clawviper22 painworm22 0 47 255 Hells Torment Level 9 To Hells Torment Level 9 A5L37 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 10 143 4 4 39 39 110 200 200 200 200 200 200 200 2000 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 144 142 193 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 46 107 69 46 0 0 1 0 2025 39 64 89 54 99 111 950 950 950 5 8 7 10 7 11 0 0 8 baalminion22 1 baalminion22 baalminion22 0 47 255 Hells Torment Level 10 To Hells Torment Level 10 A5L38 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 11 144 4 4 39 39 111 200 200 200 200 200 200 200 2200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 145 143 194 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 148 87 53 108 0 0 1 0 2025 39 64 89 55 100 112 950 950 950 5 8 7 10 7 11 0 0 8 sk_archer22 dkfig22 doomknight22 1 sk_archer22 dkfig22 doomknight22 sk_archer22 dkfig22 doomknight22 0 47 255 Hells Torment Level 11 To Hells Torment Level 11 A5L39 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 12 145 4 4 39 39 112 200 200 200 200 200 200 200 2400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 146 144 195 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 198 81 118 57 0 0 1 0 2025 39 64 89 56 100 112 950 950 950 5 8 7 10 7 11 0 0 8 sk_archer22 dkfig22 doomknight22 1 sk_archer22 dkfig22 doomknight22 sk_archer22 dkfig22 doomknight22 0 47 255 Hells Torment Level 12 To Hells Torment Level 12 A5L40 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 13 146 4 4 39 39 113 200 200 200 200 200 200 200 2600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 147 145 196 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 38 108 116 82 0 0 1 0 2025 39 64 89 57 100 112 950 950 950 5 8 7 10 7 11 0 0 8 vilemother22 vilechild22 fingermage22 megademon22 regurg22 1 regurg22 vilemother22 vilechild22 megademon22 fingermage22 vilemother22 fingermage22 regurg22 megademon22 0 47 255 Hells Torment Level 13 To Hells Torment Level 13 A5L41 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 14 147 4 4 39 39 114 200 200 200 200 200 200 400 200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 148 146 197 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 166 94 120 46 0 0 1 0 2025 39 64 89 58 100 112 950 950 950 5 8 7 10 7 11 0 0 8 vilemother22 vilechild22 fingermage22 megademon22 regurg22 1 regurg22 vilemother22 vilechild22 megademon22 fingermage22 vilemother22 fingermage22 regurg22 megademon22 0 47 255 Hells Torment Level 14 To Hells Torment Level 14 A5L42 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 15 148 4 4 39 39 115 200 200 200 200 200 200 400 400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 149 147 198 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 132 101 80 61 0 0 1 0 2025 39 64 89 59 101 112 950 950 950 5 8 7 10 7 11 0 0 8 vilemother22 vilechild22 fingermage22 megademon22 regurg22 1 regurg22 vilemother22 vilechild22 megademon22 fingermage22 vilemother22 fingermage22 regurg22 megademon22 0 47 255 Hells Torment Level 15 To Hells Torment Level 15 A5L43 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 16 149 4 4 39 39 116 200 200 200 200 200 200 400 600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 150 148 199 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 86 106 68 76 0 0 1 0 2025 39 64 89 60 101 113 950 950 950 5 8 7 10 7 11 0 0 8 hellbovine22 1 hellbovine22 hellbovine22 0 47 255 Hells Torment Level 16 To Hells Torment Level 16 A5L44 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 17 150 4 4 39 39 117 200 200 200 200 200 200 400 800 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 151 149 200 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 138 85 93 93 0 0 1 0 2025 39 64 89 61 101 113 950 950 950 5 8 7 10 7 11 0 0 8 bloodlord23 dkmage22 1 dkmage22 bloodlord23 dkmage22 0 47 255 Hells Torment Level 17 To Hells Torment Level 17 A5L45 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 18 151 4 4 39 39 118 200 200 200 200 200 200 400 1000 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 152 150 201 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 104 115 100 55 0 0 1 0 2025 39 64 89 62 101 113 950 950 950 5 8 7 10 7 11 0 0 8 council22 1 council22 council22 0 47 255 Hells Torment Level 18 To Hells Torment Level 18 A5L46 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 19 152 4 4 39 39 119 200 200 200 200 200 200 400 1200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 153 151 202 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 210 116 75 73 0 0 1 0 2025 39 64 89 63 102 113 950 950 950 5 8 7 10 7 11 0 0 8 council22 1 council22 council22 0 47 255 Hells Torment Level 19 To Hells Torment Level 19 A5L47 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 20 153 4 4 39 39 120 200 200 200 200 200 200 400 1400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 154 152 203 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 158 69 118 58 0 0 1 0 2025 39 64 89 64 102 113 950 950 950 5 8 7 10 7 11 0 0 8 council22 1 council22 council22 0 47 255 Hells Torment Level 20 To Hells Torment Level 20 A5L48 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 21 154 4 4 39 39 121 200 200 200 200 200 200 400 1600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 155 153 204 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 244 103 89 73 0 0 1 0 2025 39 64 89 65 102 114 950 950 950 5 8 7 10 7 11 0 0 8 big22 beast23 seer23 goat22 1 big22 beast23 goat22 seer23 seer23 big22 beast23 goat22 0 47 255 Hells Torment Level 21 To Hells Torment Level 21 A5L49 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 22 155 4 4 39 39 122 200 200 200 200 200 200 400 1800 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 156 154 205 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 134 55 41 89 0 0 1 0 2025 39 64 89 66 102 114 950 950 950 5 8 7 10 7 11 0 0 8 big22 beast23 seer23 goat22 1 big22 beast23 goat22 seer23 seer23 big22 beast23 goat 0 47 255 Hells Torment Level 22 To Hells Torment Level 22 A5L50 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 23 156 4 4 39 39 123 200 200 200 200 200 200 400 2000 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 157 155 206 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 158 59 85 91 0 0 1 0 2025 39 64 89 67 103 114 950 950 950 5 8 7 10 7 11 0 0 8 vampire23 unrav23 sk_archer23 sk_cold23 horde23 1 horde23 sk_archer23 sk_cold23 vampire23 unrav23 unrav23 horde23 vampire23 sk_archer23 sk_cold23 0 47 255 Hells Torment Level 23 To Hells Torment Level 23 A5L51 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 24 157 4 4 39 39 124 200 200 200 200 200 200 400 2200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 158 156 207 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 188 80 46 107 0 0 1 0 2025 39 64 89 68 103 114 950 950 950 5 8 7 10 7 11 0 0 8 vampire23 unrav23 sk_archer23 sk_cold23 horde23 1 horde23 sk_archer23 sk_cold23 vampire23 unrav23 unrav23 horde23 vampire23 sk_archer23 sk_cold23 0 47 255 Hells Torment Level 24 To Hells Torment Level 24 A5L52 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 25 158 4 4 39 39 125 200 200 200 200 200 200 400 2400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 159 157 208 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 62 69 76 85 0 0 1 0 2025 39 64 89 69 103 114 950 950 950 5 8 7 10 7 11 0 0 8 vampire23 unrav23 sk_archer23 sk_cold23 horde23 1 horde23 sk_archer23 sk_cold23 vampire23 unrav23 unrav23 horde23 vampire23 sk_archer23 sk_cold23 0 47 255 Hells Torment Level 25 To Hells Torment Level 25 A5L53 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 26 159 4 4 39 39 126 200 200 200 200 200 200 400 2600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 160 158 209 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 118 108 80 112 0 0 1 0 2025 39 64 89 70 103 115 950 950 950 5 8 7 10 7 11 0 0 8 frozen24 bm24 vm24 dm24 sy24 1 frozen24 vm24 dm24 bm24 sy24 frozen24 bm24 vm24 sy24 dm24 0 47 255 Hells Torment Level 26 To Hells Torment Level 26 A5L54 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 27 160 4 4 39 39 127 200 200 200 200 200 200 600 200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 161 159 210 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 112 113 57 41 0 0 1 0 2025 39 64 89 71 104 115 950 950 950 5 8 7 10 7 11 0 0 8 frozen24 bm24 vm24 dm24 sy24 1 frozen24 vm24 dm24 bm24 sy24 frozen24 bm24 vm24 sy24 dm24 0 47 255 Hells Torment Level 27 To Hells Torment Level 27 A5L55 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 28 161 4 4 39 39 128 200 200 200 200 200 200 600 400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 162 160 211 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 150 65 72 66 0 0 1 0 2025 39 64 89 72 104 115 950 950 950 5 8 7 10 7 11 0 0 8 frozen24 bm24 vm24 dm24 sy24 1 frozen24 vm24 dm24 bm24 sy24 frozen24 bm24 vm24 sy24 dm24 0 47 255 Hells Torment Level 28 To Hells Torment Level 28 A5L56 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 29 162 4 4 39 39 129 200 200 200 200 200 200 600 600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 163 161 212 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 190 50 76 104 0 0 1 0 2025 39 64 89 73 104 115 950 950 950 5 8 7 10 7 11 0 0 8 frozen24 bm24 vm24 dm24 sy24 1 frozen24 vm24 dm24 bm24 sy24 frozen24 bm24 vm24 sy24 dm24 0 47 255 Hells Torment Level 29 To Hells Torment Level 29 A5L57 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 30 163 4 4 39 39 130 200 200 200 200 200 200 600 800 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 164 162 213 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 210 84 77 53 0 0 1 0 2025 39 64 89 74 104 115 950 950 950 5 8 7 10 7 11 0 0 8 frozen24 bm24 vm24 dm24 sy24 1 frozen24 vm24 dm24 bm24 sy24 frozen24 bm24 vm24 sy24 dm24 0 47 255 Hells Torment Level 30 To Hells Torment Level 30 A5L58 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 31 164 4 4 39 39 131 200 200 200 200 200 200 3200 1400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 165 163 214 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 138 63 48 110 0 0 1 0 2025 39 64 89 75 105 116 950 950 950 5 8 7 10 7 11 0 0 8 fallen25 fallenshaman25 1 fallen25 fallanshaman25 fallen25 fallenshaman25 0 47 255 Hells Torment Level 31 To Hells Torment Level 31 A5L59 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 32 165 4 4 39 39 132 200 200 200 200 200 200 600 1200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 166 164 215 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 54 52 86 100 0 0 1 0 2025 39 64 89 76 105 116 950 950 950 5 8 7 10 7 11 0 0 8 fetish25 bonefetish25 fetishblow25 1 fetish25 bonefetish25 fetishblow25 fetish25 fetishblow25 bonefetish25 0 47 255 Hells Torment Level 32 To Hells Torment Level 32 A5L60 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 33 166 4 4 39 39 133 200 200 200 200 200 200 600 1400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 167 165 216 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 120 79 95 54 0 0 1 0 2025 39 64 89 77 105 116 950 950 950 5 8 7 10 7 11 0 0 8 fetish25 bonefetish25 fetishblow25 1 fetish25 bonefetish25 fetishblow25 fetish25 fetishblow25 bonefetish25 0 47 255 Hells Torment Level 33 To Hells Torment Level 33 A5L61 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 34 167 4 4 39 39 134 200 200 200 200 200 200 600 1600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 168 166 217 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 90 55 84 64 0 0 1 0 2025 39 64 89 78 105 117 950 950 950 5 8 7 10 7 11 0 0 8 scarab25 willowisp25 baboon25 1 baboon25 willowisp25 scarab25 willowisp25 scarab25 baboon25 0 47 255 Hells Torment Level 34 To Hells Torment Level 34 A5L62 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 35 168 4 4 39 39 135 200 200 200 200 200 200 600 1800 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 169 167 218 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 168 92 63 78 0 0 1 0 2025 39 64 89 79 106 117 950 950 950 5 8 7 10 7 11 0 0 8 scarab25 willowisp25 baboon25 1 baboon25 willowisp25 scarab25 willowisp25 scarab25 baboon25 0 47 255 Hells Torment Level 35 To Hells Torment Level 35 A5L63 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 36 169 4 4 39 39 136 200 200 200 200 200 200 600 2000 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 170 168 219 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 110 105 91 98 0 0 1 0 2025 39 64 89 80 106 118 950 950 950 5 8 7 10 7 11 0 0 8 dkfig26 dkmag26 bloodlord26 suicide26 1 dkfig26 dkmag26 bloodlord26 suicide26 dkmag26 0 47 255 Hells Torment Level 36 To Hells Torment Level 36 A5L64 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 37 170 4 4 39 39 137 200 200 200 200 200 200 600 2200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 171 169 220 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 160 71 96 87 0 0 1 0 2025 39 64 89 81 106 118 950 950 950 5 8 7 10 7 11 0 0 8 dkfig26 dkmag26 bloodlord26 suicide26 1 dkmag26 dkfig26 bloodlord26 suicide26 dkmag26 0 47 255 Hells Torment Level 37 To Hells Torment Level 37 A5L65 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 38 171 4 4 39 39 138 200 200 200 200 200 200 600 2400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 172 170 221 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 50 91 48 108 0 0 1 0 2025 39 64 89 82 106 119 950 950 950 5 8 7 10 7 11 0 0 8 brute26 thorn26 bore26 1 brute26 thorn26 bore26 brute26 thorn26 bore26 0 47 255 Hells Torment Level 38 To Hells Torment Level 38 A5L66 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 39 172 4 4 39 39 139 200 200 200 200 200 200 600 2600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 173 171 222 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 198 120 59 75 0 0 1 0 2025 39 64 89 83 107 119 950 950 950 5 8 7 10 7 11 0 0 8 brute26 thorn26 bore26 1 brute26 thorn26 bore26 brute26 thorn26 bore26 0 47 255 Hells Torment Level 39 To Hells Torment Level 39 A5L67 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 40 173 4 4 39 39 140 200 200 200 200 200 200 800 200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 174 172 223 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 150 112 107 46 0 0 1 0 2025 39 64 89 84 107 120 950 950 950 5 8 7 10 7 11 0 0 8 arach27 1 arach27 arach27 0 47 255 Hells Torment Level 40 To Hells Torment Level 40 A5L68 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 41 174 4 4 39 39 141 200 200 200 200 200 200 800 400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 175 173 224 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 134 81 107 69 0 0 1 0 2025 39 64 89 85 107 120 950 950 950 5 8 7 10 7 11 0 0 8 arach27 1 arach27 arach27 0 47 255 Hells Torment Level 41 To Hells Torment Level 41 A5L69 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 42 175 4 4 39 39 142 200 200 200 200 200 200 800 600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 176 174 225 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 214 102 55 99 0 0 1 0 2025 39 64 89 86 107 121 950 950 950 5 8 7 10 7 11 0 0 8 arach28 viper27 1 arach28 viper27 arach28 viper27 0 47 255 Hells Torment Level 42 To Hells Torment Level 42 A5L70 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 43 176 4 4 39 39 143 200 200 200 200 200 200 800 800 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 177 175 226 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 128 84 61 93 0 0 1 0 2025 39 64 89 87 108 121 950 950 950 5 8 7 10 7 11 0 0 8 arach28 viper27 1 arach28 viper27 arach28 viper27 0 47 255 Hells Torment Level 43 To Hells Torment Level 43 A5L71 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 44 177 4 4 39 39 144 200 200 200 200 200 200 3200 1200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 178 176 227 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 74 63 43 54 0 0 1 0 2025 39 64 89 88 108 122 950 950 950 5 8 7 10 7 11 0 0 8 bovine31 1 bovine31 bovine31 0 47 255 Hells Torment Level 44 To Hells Torment Level 44 A5L72 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 45 178 4 4 39 39 145 200 200 200 200 200 200 800 1200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 179 177 228 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 24 96 60 103 0 0 1 0 2025 39 64 89 89 108 122 950 950 950 5 8 7 10 7 11 0 0 8 bovine31 1 bovine31 bovine31 0 47 255 Hells Torment Level 45 To Hells Torment Level 45 A5L73 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 46 179 4 4 39 39 146 200 200 200 200 200 200 800 1400 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 180 178 229 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 56 59 49 84 0 0 1 0 2025 39 64 89 90 108 123 950 950 950 5 8 7 10 7 11 0 0 8 council31 1 council31 council31 0 47 255 Hells Torment Level 46 To Hells Torment Level 46 A5L74 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 47 180 4 4 39 39 147 200 200 200 200 200 200 800 1600 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 181 179 230 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 234 87 80 47 0 0 1 0 2025 39 64 89 91 109 123 950 950 950 5 8 7 10 7 11 0 0 8 bd33 ww33 sw33 dk33 1 dk33 sw33 ww33 bd33 bd33 sw33 ww33 dk33 0 47 255 Hells Torment Level 47 To Hells Torment Level 47 A5L75 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 48 181 4 4 39 39 148 200 200 200 200 200 200 800 1800 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 182 180 231 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 104 97 78 94 0 0 1 0 2025 39 64 89 92 109 124 950 950 950 5 8 7 10 7 11 0 0 8 bd33 ww33 sw33 dk33 1 dk33 sw33 ww33 bd33 bd33 sw33 ww33 dk33 0 47 255 Hells Torment Level 48 To Hells Torment Level 48 A5L76 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 49 182 4 4 39 39 149 200 200 200 200 200 200 800 2000 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 183 181 232 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 174 52 64 52 0 0 1 0 2025 39 64 89 93 109 124 950 950 950 5 8 7 10 7 11 0 0 8 bd33 ww33 sw33 dk33 1 dk33 sw33 ww33 bd33 bd33 sw33 ww33 dk33 0 47 255 Hells Torment Level 49 To Hells Torment Level 49 A5L77 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Hells Torment 50 183 4 4 39 39 150 200 200 200 200 200 200 800 2200 0 1 0 0 0 0 1 1 0 1 1 33 -1 -1 -1 -1 234 182 233 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 254 85 112 65 0 0 1 0 2025 39 64 89 95 109 125 950 950 950 5 8 7 10 7 11 0 0 8 izzy33 1 izzy33 izzy33 0 47 255 Hells Torment Level 50 To Hells Torment Level 50 A5L78 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
Act 5 - Frost Pool 1 184 4 4 151 32 32 32 32 32 32 1600 2000 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 134 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 36 83 119 108 0 0 1 0 2025 29 54 79 46 96 110 850 850 850 3 7 5 8 7 11 1 0 8 reanimatedhorde22 succubus22 snowyeti22 minion22 1 snowyeti22 succubus22 reanimatedhorde22 minion22 succubus22 snowyeti22 minion22 reanimatedhorde22 0 40 255 Hells Icechamber Level 1 To Hells Icechamber Level 1 A5L129 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 2 185 4 4 152 32 32 32 32 32 32 1600 2040 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 135 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 208 89 100 84 0 0 1 0 2025 29 54 79 47 96 110 850 850 850 3 7 5 8 7 11 1 0 8 reanimatedhorde22 succubus22 snowyeti22 minion22 1 snowyeti22 succubus22 reanimatedhorde22 minion22 succubus22 snowyeti22 minion22 reanimatedhorde22 0 40 255 Hells Icechamber Level 2 To Hells Icechamber Level 2 A5L130 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 3 186 4 4 153 32 32 32 32 32 32 1600 2080 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 136 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 170 104 85 78 0 0 1 0 2025 29 54 79 48 97 110 850 850 850 3 7 5 8 7 11 1 0 8 reanimatedhorde22 succubus22 snowyeti22 minion22 1 snowyeti22 succubus22 reanimatedhorde22 minion22 succubus22 snowyeti22 minion22 reanimatedhorde22 0 40 255 Hells Icechamber Level 3 To Hells Icechamber Level 3 A5L131 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 4 187 4 4 154 32 32 32 32 32 32 1600 2120 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 137 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 224 66 117 69 0 0 1 0 2025 29 54 79 49 97 110 850 850 850 3 7 5 8 7 11 1 0 8 reanimatedhorde22 succubus22 snowyeti22 minion22 1 snowyeti22 succubus22 reanimatedhorde22 minion22 succubus22 snowyeti22 minion22 reanimatedhorde22 0 40 39 Hells Icechamber Level 4 To Hells Icechamber Level 4 A5L132 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 5 188 4 4 155 32 32 32 32 32 32 1600 2160 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 138 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 232 100 110 120 0 0 1 0 2025 29 54 79 50 97 110 850 850 850 3 7 5 8 7 11 1 0 8 frozenhorror22 succubus23 succubuswitch22 deathmauler22 bloodlord22 1 succubuswitch22 succubus23 frozenhorror22 deathmauler22 bloodlord22 succubus23 frozenhorror22 deathmauler22 bloodlord22 succubuswitch22 0 40 255 Hells Icechamber Level 5 To Hells Icechamber Level 5 A5L133 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 6 189 4 4 156 32 32 32 32 32 32 1800 1840 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 139 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 118 45 41 59 0 0 1 0 2025 29 54 79 51 98 111 850 850 850 3 7 5 8 7 11 1 0 8 frozenhorror22 succubus23 succubuswitch22 deathmauler22 bloodlord22 1 succubuswitch22 succubus23 frozenhorror22 deathmauler22 bloodlord22 succubus23 frozenhorror22 deathmauler22 bloodlord22 succubuswitch22 0 40 255 Hells Icechamber Level 6 To Hells Icechamber Level 6 A5L134 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 7 190 4 4 157 32 32 32 32 32 32 1800 1880 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 140 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 48 119 56 69 0 0 1 0 2025 29 54 79 52 98 111 850 850 850 3 7 5 8 7 11 1 0 8 frozenhorror22 succubus23 succubuswitch22 deathmauler22 bloodlord22 1 succubuswitch22 succubus23 frozenhorror22 deathmauler22 bloodlord22 succubus23 frozenhorror22 deathmauler22 bloodlord22 succubuswitch22 0 40 255 Hells Icechamber Level 7 To Hells Icechamber Level 7 A5L135 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 8 191 4 4 158 32 32 32 32 32 32 1800 1920 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 141 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 132 52 54 108 0 0 1 0 2025 29 54 79 53 98 111 850 850 850 3 7 5 8 7 11 1 0 8 frozenhorror22 succubus23 succubuswitch22 deathmauler22 bloodlord22 1 succubuswitch22 succubus23 frozenhorror22 deathmauler22 bloodlord22 succubus23 frozenhorror22 deathmauler22 bloodlord22 succubuswitch22 0 40 255 Hells Icechamber Level 8 To Hells Icechamber Level 8 A5L136 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 9 192 4 4 159 32 32 32 32 32 32 1800 1960 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 142 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 226 57 98 80 0 0 1 0 2025 29 54 79 54 99 111 850 850 850 3 7 5 8 7 11 1 0 8 putriddefiler22 painworm22 clawviper22 1 putriddefiler22 painworm22 clawviper22 putriddefiler22 painworm22 clawviper22 0 40 40 Hells Icechamber Level 9 To Hells Icechamber Level 9 A5L137 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 10 193 4 4 160 32 32 32 32 32 32 1800 2000 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 143 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 242 85 64 54 0 0 1 0 2025 29 54 79 55 99 111 850 850 850 3 7 5 8 7 11 1 0 8 baalminion22 1 baalminion22 baalminion22 0 40 255 Hells Icechamber Level 10 To Hells Icechamber Level 10 A5L138 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 11 194 4 4 161 32 32 32 32 32 32 1800 2040 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 144 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 18 68 44 48 0 0 1 0 2025 29 54 79 56 99 112 850 850 850 3 7 5 8 7 11 1 0 8 sk_archer22 dkfig22 doomknight22 1 sk_archer22 dkfig22 doomknight22 sk_archer22 dkfig22 doomknight22 0 40 255 Hells Icechamber Level 11 To Hells Icechamber Level 11 A5L139 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 12 195 4 4 162 32 32 32 32 32 32 1800 2080 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 145 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 124 59 121 89 0 0 1 0 2025 29 54 79 57 100 112 850 850 850 3 7 5 8 7 11 1 0 8 sk_archer22 dkfig22 doomknight22 1 sk_archer22 dkfig22 doomknight22 sk_archer22 dkfig22 doomknight22 0 40 255 Hells Icechamber Level 12 To Hells Icechamber Level 12 A5L140 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 13 196 4 4 163 32 32 32 32 32 32 1800 2120 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 146 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 160 66 58 118 0 0 1 0 2025 29 54 79 58 100 112 850 850 850 3 7 5 8 7 11 1 0 8 vilechild22 vilemother22 megademon22 fingermage22 regurg22 1 megademon22 vilemother22 vilechild22 fingermage22 regurg22 regurg22 vilemother22 fingermage22 megademon22 0 40 255 Hells Icechamber Level 13 To Hells Icechamber Level 13 A5L141 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 14 197 4 4 164 32 32 32 32 32 32 1800 2160 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 147 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 156 68 103 57 0 0 1 0 2025 29 54 79 59 100 112 850 850 850 3 7 5 8 7 11 1 0 8 vilechild22 vilemother22 megademon22 fingermage22 regurg22 1 megademon22 vilemother22 vilechild22 fingermage22 regurg22 regurg22 vilemother22 fingermage22 megademon22 0 40 41 Hells Icechamber Level 14 To Hells Icechamber Level 14 A5L142 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 15 198 4 4 165 32 32 32 32 32 32 1800 2200 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 148 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 138 76 92 80 0 0 1 0 2025 29 54 79 60 100 112 850 850 850 3 7 5 8 7 11 1 0 8 vilechild22 vilemother22 megademon22 fingermage22 regurg22 1 megademon22 vilemother22 vilechild22 fingermage22 regurg22 regurg22 vilemother22 fingermage22 megademon22 0 40 255 Hells Icechamber Level 15 To Hells Icechamber Level 15 A5L143 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 16 199 4 4 166 32 32 32 32 32 32 1800 2240 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 149 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 40 103 122 118 0 0 1 0 2025 29 54 79 61 101 113 850 850 850 3 7 5 8 7 11 1 0 8 hellbovine22 1 hellbovine22 hellbovine22 0 40 255 Hells Icechamber Level 16 To Hells Icechamber Level 16 A5L144 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 17 200 4 4 167 32 32 32 32 32 32 1600 2640 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 150 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 70 50 121 41 0 0 1 0 2025 29 54 79 62 101 113 850 850 850 3 7 5 8 7 11 1 0 8 dkmage22 bloodlord23 1 dkmage22 bloodlord23 dkmage22 bloodlord23 0 40 255 Hells Icechamber Level 17 To Hells Icechamber Level 17 A5L145 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 18 201 4 4 168 32 32 32 32 32 32 1600 2680 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 151 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 190 54 102 101 0 0 1 0 2025 29 54 79 63 101 113 850 850 850 3 7 5 8 7 11 1 0 8 council22 1 council22 council22 0 40 255 Hells Icechamber Level 18 To Hells Icechamber Level 18 A5L146 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 19 202 4 4 169 32 32 32 32 32 32 1600 2720 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 152 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 132 84 54 98 0 0 1 0 2025 29 54 79 64 101 113 850 850 850 3 7 5 8 7 11 1 0 8 council22 1 council22 council22 0 40 42 Hells Icechamber Level 19 To Hells Icechamber Level 19 A5L147 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 20 203 4 4 170 32 32 32 32 32 32 3000 40 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 153 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 158 86 85 53 0 0 1 0 2025 29 54 79 65 102 113 850 850 850 3 7 5 8 7 11 1 0 8 council22 1 council22 council22 0 40 255 Hells Icechamber Level 20 To Hells Icechamber Level 20 A5L148 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 21 204 4 4 171 32 32 32 32 32 32 3000 80 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 154 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 114 41 59 94 0 0 1 0 2025 29 54 79 66 102 114 850 850 850 3 7 5 8 7 11 1 0 8 big22 beast23 goat22 seer23 1 big22 beast23 goat22 seer23 big22 beast23 seer23 goat22 0 40 255 Hells Icechamber Level 21 To Hells Icechamber Level 21 A5L159 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 22 205 4 4 172 32 32 32 32 32 32 3000 120 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 155 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 136 90 117 81 0 0 1 0 2025 29 54 79 67 102 114 850 850 850 3 7 5 8 7 11 1 0 8 big22 beast23 goat22 seer23 1 big22 beast23 goat22 seer23 big22 beast23 seer23 goat22 0 40 255 Hells Icechamber Level 22 To Hells Icechamber Level 22 A5L150 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 23 206 4 4 173 32 32 32 32 32 32 3000 160 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 156 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 128 96 50 52 0 0 1 0 2025 29 54 79 68 102 114 850 850 850 3 7 5 8 7 11 1 0 8 vampire23 sk_archer23 sk_cold23 horde23 unrav23 1 unrav23 sk_archer23 sk_cold23 horde23 vampire23 unrav23 vampire23 sk_archer23 sk_cold23 horde23 0 40 255 Hells Icechamber Level 23 To Hells Icechamber Level 23 A5L151 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 24 207 4 4 174 32 32 32 32 32 32 3000 200 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 157 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 242 94 52 92 0 0 1 0 2025 29 54 79 69 103 114 850 850 850 3 7 5 8 7 11 1 0 8 vampire23 sk_archer23 sk_cold23 horde23 unrav23 1 unrav23 sk_archer23 sk_cold23 horde23 vampire23 unrav23 vampire23 sk_archer23 sk_cold23 horde23 0 40 43 Hells Icechamber Level 24 To Hells Icechamber Level 24 A5L152 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 25 208 4 4 175 32 32 32 32 32 32 3000 240 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 158 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 236 93 64 121 0 0 1 0 2025 29 54 79 70 103 114 850 850 850 3 7 5 8 7 11 1 0 8 vampire23 sk_archer23 sk_cold23 horde23 unrav23 1 unrav23 sk_archer23 sk_cold23 horde23 vampire23 unrav23 vampire23 sk_archer23 sk_cold23 horde23 0 40 255 Hells Icechamber Level 25 To Hells Icechamber Level 25 A5L153 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 26 209 4 4 176 32 32 32 32 32 32 3000 280 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 159 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 202 114 91 48 0 0 1 0 2025 29 54 79 71 103 115 850 850 850 3 7 5 8 7 11 1 0 8 frozen24 bm24 sy24 vm24 dm24 1 frozen24 dm24 vm24 bm24 sy24 frozen24 vm24 dm24 bm24 sy24 0 40 255 Hells Icechamber Level 26 To Hells Icechamber Level 26 A5L154 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 27 210 4 4 177 32 32 32 32 32 32 3000 320 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 160 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 90 41 42 75 0 0 1 0 2025 29 54 79 72 103 115 850 850 850 3 7 5 8 7 11 1 0 8 frozen24 bm24 sy24 vm24 dm24 1 frozen24 dm24 vm24 bm24 sy24 frozen24 vm24 dm24 bm24 sy24 0 40 255 Hells Icechamber Level 27 To Hells Icechamber Level 27 A5L155 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 28 211 4 4 178 32 32 32 32 32 32 3000 360 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 161 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 112 106 86 98 0 0 1 0 2025 29 54 79 73 104 115 850 850 850 3 7 5 8 7 11 1 0 8 frozen24 bm24 sy24 vm24 dm24 1 frozen24 dm24 vm24 bm24 sy24 frozen24 vm24 dm24 bm24 sy24 0 40 255 Hells Icechamber Level 28 To Hells Icechamber Level 28 A5L156 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 29 212 4 4 179 32 32 32 32 32 32 3000 400 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 162 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 30 77 102 108 0 0 1 0 2025 29 54 79 74 104 115 850 850 850 3 7 5 8 7 11 1 0 8 frozen24 bm24 sy24 vm24 dm24 1 frozen24 dm24 vm24 bm24 sy24 frozen24 vm24 dm24 bm24 sy24 0 40 44 Hells Icechamber Level 29 To Hells Icechamber Level 29 A5L157 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 30 213 4 4 180 32 32 32 32 32 32 3000 440 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 163 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 170 68 66 52 0 0 1 0 2025 29 54 79 75 104 115 850 850 850 3 7 5 8 7 11 1 0 8 frozen24 bm24 sy24 vm24 dm24 1 frozen24 dm24 vm24 bm24 sy24 frozen24 vm24 dm24 bm24 sy24 0 40 255 Hells Icechamber Level 30 To Hells Icechamber Level 30 A5L158 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 31 214 4 4 181 32 32 32 32 32 32 3000 480 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 164 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 108 93 78 83 0 0 1 0 2025 29 54 79 76 104 116 850 850 850 3 7 5 8 7 11 1 0 8 fallen25 fallenshaman25 1 fallen25 fallenshaman25 fallenshaman25 fallen25 0 40 255 Hells Icechamber Level 31 To Hells Icechamber Level 31 A5L159 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 32 215 4 4 182 32 32 32 32 32 32 3000 520 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 165 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 154 43 50 116 0 0 1 0 2025 29 54 79 77 105 116 850 850 850 3 7 5 8 7 11 1 0 8 fetish25 fetishblow25 bonefetish25 1 fetish25 bonefetish25 fetishblow25 fetish25 bonefetish25 fetishblow25 0 40 255 Hells Icechamber Level 32 To Hells Icechamber Level 32 A5L160 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 33 216 4 4 183 32 32 32 32 32 32 3000 560 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 166 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 94 55 53 77 0 0 1 0 2025 29 54 79 78 105 116 850 850 850 3 7 5 8 7 11 1 0 8 fetish25 fetishblow25 bonefetish25 1 fetish25 bonefetish25 fetishblow25 fetish25 bonefetish25 fetishblow25 0 40 255 Hells Icechamber Level 33 To Hells Icechamber Level 33 A5L161 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 34 217 4 4 184 32 32 32 32 32 32 3000 600 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 167 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 180 89 47 71 0 0 1 0 2025 29 54 79 79 105 117 850 850 850 3 7 5 8 7 11 1 0 8 willowisp25 baboon25 scarab25 1 scarab25 baboon25 willowisp25 willowisp25 baboon25 scarab25 0 40 45 Hells Icechamber Level 34 To Hells Icechamber Level 34 A5L162 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 35 218 4 4 185 32 32 32 32 32 32 3000 640 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 168 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 228 120 82 117 0 0 1 0 2025 29 54 79 80 105 117 850 850 850 3 7 5 8 7 11 1 0 8 willowisp25 baboon25 scarab25 1 scarab25 baboon25 willowisp25 willowisp25 baboon25 scarab25 0 40 255 Hells Icechamber Level 35 To Hells Icechamber Level 35 A5L163 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 36 219 4 4 186 32 32 32 32 32 32 3000 680 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 169 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 14 94 84 59 0 0 1 0 2025 29 54 79 81 106 118 850 850 850 3 7 5 8 7 11 1 0 8 dkmag26 dkfig26 bloodlord26 suicide26 1 dkmag26 dkfig26 bloodlord26 suicide26 dkmag26 0 40 255 Hells Icechamber Level 36 To Hells Icechamber Level 36 A5L164 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 37 220 4 4 187 32 32 32 32 32 32 3000 720 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 170 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 146 57 92 69 0 0 1 0 2025 29 54 79 82 106 118 850 850 850 3 7 5 8 7 11 1 0 8 dkmag26 dkfig26 bloodlord26 suicide26 1 dkmag26 dkfig26 bloodlord26 suicide26 dkmag26 0 40 255 Hells Icechamber Level 37 To Hells Icechamber Level 37 A5L165 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 38 221 4 4 188 32 32 32 32 32 32 3000 760 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 171 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 34 73 48 119 0 0 1 0 2025 29 54 79 83 106 119 850 850 850 3 7 5 8 7 11 1 0 8 brute26 thorn26 bore26 1 brute26 thorn26 bore26 brute26 thorn26 bore26 0 40 255 Hells Icechamber Level 38 To Hells Icechamber Level 38 A5L166 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 39 222 4 4 189 32 32 32 32 32 32 3000 800 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 172 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 82 121 116 87 0 0 1 0 2025 29 54 79 84 106 119 850 850 850 3 7 5 8 7 11 1 0 8 brute26 thorn26 bore26 1 brute26 thorn26 bore26 brute26 thorn26 bore26 0 40 46 Hells Icechamber Level 39 To Hells Icechamber Level 39 A5L167 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 40 223 4 4 190 32 32 32 32 32 32 3000 840 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 173 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 156 80 49 121 0 0 1 0 2025 29 54 79 85 107 120 850 850 850 3 7 5 8 7 11 1 0 8 arach27 1 arach27 arach27 0 40 255 Hells Icechamber Level 40 To Hells Icechamber Level 40 A5L168 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 41 224 4 4 191 32 32 32 32 32 32 3000 880 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 174 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 176 107 69 89 0 0 1 0 2025 29 54 79 86 107 120 850 850 850 3 7 5 8 7 11 1 0 8 arach27 1 arach27 arach27 0 40 255 Hells Icechamber Level 41 To Hells Icechamber Level 41 A5L169 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 42 225 4 4 192 32 32 32 32 32 32 3000 920 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 175 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 52 84 74 58 0 0 1 0 2025 29 54 79 87 107 121 850 850 850 3 7 5 8 7 11 1 0 8 arach28 viper27 1 arach28 viper27 arach28 viper27 0 40 255 Hells Icechamber Level 42 To Hells Icechamber Level 42 A5L170 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 43 226 4 4 193 32 32 32 32 32 32 3000 960 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 176 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 162 110 55 59 0 0 1 0 2025 29 54 79 88 107 121 850 850 850 3 7 5 8 7 11 1 0 8 arach28 viper27 1 arach28 viper27 arach28 viper27 0 40 255 Hells Icechamber Level 43 To Hells Icechamber Level 43 A5L171 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 44 227 4 4 194 32 32 32 32 32 32 3000 1000 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 177 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 60 55 70 59 0 0 1 0 2025 29 54 79 89 108 122 850 850 850 3 7 5 8 7 11 1 0 8 bovine31 1 bovine31 bovine31 0 40 47 Hells Icechamber Level 44 To Hells Icechamber Level 44 A5L172 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 45 228 4 4 195 32 32 32 32 32 32 3000 1040 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 178 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 36 59 46 83 0 0 1 0 2025 29 54 79 90 108 122 850 850 850 3 7 5 8 7 11 1 0 8 bovine31 1 bovine31 bovine31 0 40 255 Hells Icechamber Level 45 To Hells Icechamber Level 45 A5L173 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 46 229 4 4 196 32 32 32 32 32 32 3000 1080 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 179 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 224 121 71 44 0 0 1 0 2025 29 54 79 91 108 123 850 850 850 3 7 5 8 7 11 1 0 8 council31 1 council31 council31 0 40 255 Hells Icechamber Level 46 To Hells Icechamber Level 46 A5L174 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 47 230 4 4 197 32 32 32 32 32 32 3000 1120 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 180 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 52 63 105 68 0 0 1 0 2025 29 54 79 92 108 123 850 850 850 3 7 5 8 7 11 1 0 8 ww33 sw33 dk33 bd33 1 bd33 sw33 dk33 ww33 dk33 bd33 sw33 ww33 0 40 255 Hells Icechamber Level 47 To Hells Icechamber Level 47 A5L175 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 48 231 4 4 198 32 32 32 32 32 32 3000 1160 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 181 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 142 115 72 90 0 0 1 0 2025 29 54 79 93 109 124 850 850 850 3 7 5 8 7 11 1 0 8 ww33 sw33 dk33 bd33 1 bd33 sw33 dk33 ww33 dk33 bd33 sw33 ww33 0 40 255 Hells Icechamber Level 48 To Hells Icechamber Level 48 A5L176 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 49 232 4 4 199 32 32 32 32 32 32 3000 1200 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 182 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 48 78 78 80 0 0 1 0 2025 29 54 79 94 109 124 850 850 850 3 7 5 8 7 11 1 0 8 ww33 sw33 dk33 bd33 1 bd33 sw33 dk33 ww33 dk33 bd33 sw33 ww33 0 40 48 Hells Icechamber Level 49 To Hells Icechamber Level 49 A5L177 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 50 233 4 4 200 32 32 32 32 32 32 3000 1240 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 183 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 72 121 78 62 0 0 1 0 2025 29 54 79 95 109 125 850 850 850 3 7 5 8 7 11 1 0 8 izzy33 1 izzy33 izzy33 0 40 255 Hells Icechamber Level 50 To Hells Icechamber Level 50 A5L178 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 5 - Frost Pool 51 234 4 4 201 32 32 32 32 32 32 3000 1280 0 1 0 0 0 1 1 1 0 1 2 33 -1 -1 -1 -1 183 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 152 116 87 57 0 0 1 0 2025 29 54 79 95 109 125 850 850 850 1 3 1 3 1 3 0 0 0 1 0 40 255 Hells Icechamber Level 51 To Hells Icechamber Level 51 A5L179 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
Act 3 - Temple 7 235 2 2 202 24 24 24 24 24 24 100 100 0 1 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 83 83 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 48 91 66 68 0 0 1 0 100 23 48 73 23 53 84 1240 1240 1240 2 5 2 5 3 5 1 0 3 willowisp3 fingermage1 doomknight1 vampire4 willowisp3 fingermage1 doomknight1 vampire4 willowisp3 fingermage1 doomknight1 vampire4 rat 30 0 28 255 Khalem's Burial Chamber To Khalem's Burial Chamber A5L180 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0

View File

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

View File

@ -1,131 +0,0 @@
Name Level Rooms Rooms(N) Rooms(H) SizeX SizeY Merge Beta
Act 1 - Cave 1 8 1 1 1 24 24 500 1
Act 1 - Cave 2 9 4 4 4 24 24 500 1
Act 1 - Cave 3 10 6 6 6 24 24 500 1
Act 1 - Cave 4 11 4 4 4 24 24 500 1
Act 1 - Cave 5 12 4 4 4 24 24 500 1
Act 1 - Cave 1 Treasure 0 1 1 1 24 24 0 1
Act 1 - Cave 2 Treasure 13 1 1 1 24 24 0 1
Act 1 - Cave 3 Treasure 14 1 1 1 24 24 0 1
Act 1 - Cave 4 Treasure 15 1 1 1 24 24 0 1
Act 1 - Cave 5 Treasure 16 1 1 1 24 24 0 1
Act 1 - Crypt 1 A 18 12 24 36 8 8 500 1
Act 1 - Crypt 2 A 19 12 24 36 8 8 500 1
Act 1 - Crypt 3 A 21 6 12 24 8 8 500 1
Act 1 - Crypt 3 B 22 6 12 20 8 8 500 1
Act 1 - Crypt 3 C 23 6 12 16 8 8 500 1
Act 1 - Crypt 3 D 24 6 12 12 8 8 500 1
Act 1 - Crypt 3 E 25 6 6 6 8 8 500 1
Act 1 - Barracks 28 10 10 10 10 14 500 1
Act 1 - Jail 1 29 12 12 12 12 12 500 1
Act 1 - Jail 2 30 14 14 14 12 12 500 1
Act 1 - Jail 3 31 16 16 16 12 12 500 1
Act 1 - Catacombs 1 34 12 12 12 12 12 500 1
Act 1 - Catacombs 2 35 14 14 14 12 12 500 1
Act 1 - Catacombs 3 36 16 16 16 12 12 500 1
Act 1 - Catacombs 4 37 18 18 18 12 12 500 1
Act 2 - Sewer 1 47 6 6 6 12 12 500 0
Act 2 - Sewer 2 48 12 12 12 12 12 500 0
Act 2 - Sewer 3 49 14 14 14 12 12 500 0
Act 2 - Corrupt Harem 1 51 4 4 4 16 16 1000 0
Act 2 - Basement 1 52 4 4 4 16 16 1000 0
Act 2 - Basement 2 53 4 4 4 16 16 1000 0
Act 2 - Basement 3 54 4 4 4 16 16 1000 0
Act 2 - Tomb 1 A 55 4 4 4 16 16 500 0
Act 2 - Tomb 2 A 56 6 6 6 16 16 500 0
Act 2 - Tomb 2 B 57 6 6 6 16 16 500 0
Act 2 - Tomb 3 A 58 12 12 12 16 16 500 0
Act 2 - Tomb 1 Treasure 59 4 4 4 16 16 500 0
Act 2 - Tomb 2 Treasure 60 6 6 6 16 16 500 0
Act 2 - Tomb 3 Treasure 61 6 6 6 16 16 500 0
Act 2 - Lair 1 A 62 18 18 18 10 10 500 0
Act 2 - Lair 1 B 63 14 14 14 10 10 500 0
Act 2 - Lair 1 Treasure 64 10 10 10 10 10 500 0
Act 2 - Sewer 4 65 10 10 10 12 12 500 0
Act 2 - Tomb Tal 1 66 6 6 6 16 16 500 0
Act 2 - Tomb Tal 2 67 6 6 6 16 16 500 0
Act 2 - Tomb Tal 3 68 6 6 6 16 16 500 0
Act 2 - Tomb Tal 4 69 6 6 6 16 16 500 0
Act 2 - Tomb Tal 5 70 6 6 6 16 16 500 0
Act 2 - Tomb Tal 6 71 6 6 6 16 16 500 0
Act 2 - Tomb Tal 7 72 6 6 6 16 16 500 0
Act 2 - Arcane 74 61 61 61 12 12 1000 0
Act 3 - Spider 1 84 4 4 4 16 16 500 0
Act 3 - Spider 2 85 4 4 4 16 16 500 0
Act 3 - Dungeon 1 A 86 4 4 4 14 14 500 0
Act 3 - Dungeon 1 B 87 4 4 4 14 14 500 0
Act 3 - Dungeon 2 A 88 4 4 4 14 14 500 0
Act 3 - Dungeon 2 B 89 4 4 4 14 14 500 0
Act 3 - Dungeon 1 Treasure 90 4 4 4 14 14 500 0
Act 3 - Dungeon 2 Treasure 91 4 4 4 14 14 500 0
Act 3 - Sewer 1 92 32 32 32 12 12 800 0
Act 3 - Sewer 2 93 6 6 6 12 12 800 0
Act 3 - Mephisto 1 100 10 16 16 12 12 500 0
Act 3 - Mephisto 2 101 12 48 48 12 12 500 0
Act 4 - Lava 1 107 6 6 6 24 24 500 0
Expansion
Act 5 - Ice Caves 1 113 10 10 10 16 16 500 0
Act 5 - Ice Caves 2 115 10 10 10 16 16 500 0
Act 5 - Ice Caves 3 118 15 15 15 16 16 500 0
Act 5 - Ice Caves 1A 114 1 1 1 64 64 500 0
Act 5 - Ice Caves 2A 116 1 1 1 32 32 500 0
Act 5 - Ice Caves 3A 119 1 1 1 32 32 500 0
Act 5 - Temple 1 122 4 4 4 40 40 500 0
Act 5 - Temple 2 123 4 4 4 40 40 500 0
Act 5 - Hell 1 125 3 3 3 24 24 500 0
Act 5 - Hell 2 126 3 3 3 24 24 500 0
Act 5 - Hell 3 127 3 3 3 24 24 500 0
Act 5 - Baal 1 128 9 9 9 16 16 500 0
Act 5 - Baal 1 129 9 9 9 16 16 500 0
Act 5 - Baal 1 130 9 9 9 16 16 500 0
Act 5 - Baal 1 132 9 9 9 16 16 500 0
Act 5 - Hells Torment 1 134 9 9 9 16 16 500 0
Act 5 - Hells Torment 2 135 9 9 9 16 16 500 0
Act 5 - Hells Torment 3 136 9 9 9 16 16 500 0
Act 5 - Hells Torment 4 137 9 9 9 16 16 500 0
Act 5 - Hells Torment 5 138 9 9 9 16 16 500 0
Act 5 - Hells Torment 6 139 9 9 9 16 16 500 0
Act 5 - Hells Torment 7 140 9 9 9 16 16 500 0
Act 5 - Hells Torment 8 141 9 9 9 16 16 500 0
Act 5 - Hells Torment 9 142 9 9 9 16 16 500 0
Act 5 - Hells Torment 10 143 9 9 9 16 16 500 0
Act 5 - Hells Torment 11 144 9 9 9 16 16 500 0
Act 5 - Hells Torment 12 145 9 9 9 16 16 500 0
Act 5 - Hells Torment 13 146 9 9 9 16 16 500 0
Act 5 - Hells Torment 14 147 9 9 9 16 16 500 0
Act 5 - Hells Torment 15 148 9 9 9 16 16 500 0
Act 5 - Hells Torment 16 149 9 9 9 16 16 500 0
Act 5 - Hells Torment 17 150 9 9 9 16 16 500 0
Act 5 - Hells Torment 18 151 9 9 9 16 16 500 0
Act 5 - Hells Torment 19 152 9 9 9 16 16 500 0
Act 5 - Hells Torment 20 153 9 9 9 16 16 500 0
Act 5 - Hells Torment 21 154 9 9 9 16 16 500 0
Act 5 - Hells Torment 22 155 9 9 9 16 16 500 0
Act 5 - Hells Torment 22 156 9 9 9 16 16 500 0
Act 5 - Hells Torment 24 157 9 9 9 16 16 500 0
Act 5 - Hells Torment 25 158 9 9 9 16 16 500 0
Act 5 - Hells Torment 26 159 9 9 9 16 16 500 0
Act 5 - Hells Torment 27 160 9 9 9 16 16 500 0
Act 5 - Hells Torment 28 161 9 9 9 16 16 500 0
Act 5 - Hells Torment 29 162 9 9 9 16 16 500 0
Act 5 - Hells Torment 30 163 9 9 9 16 16 500 0
Act 5 - Hells Torment 31 164 9 9 9 16 16 500 0
Act 5 - Hells Torment 32 165 9 9 9 16 16 500 0
Act 5 - Hells Torment 33 166 9 9 9 16 16 500 0
Act 5 - Hells Torment 34 167 9 9 9 16 16 500 0
Act 5 - Hells Torment 35 168 9 9 9 16 16 500 0
Act 5 - Hells Torment 36 169 9 9 9 16 16 500 0
Act 5 - Hells Torment 37 170 9 9 9 16 16 500 0
Act 5 - Hells Torment 38 171 9 9 9 16 16 500 0
Act 5 - Hells Torment 39 172 9 9 9 16 16 500 0
Act 5 - Hells Torment 40 173 9 9 9 16 16 500 0
Act 5 - Hells Torment 41 174 9 9 9 16 16 500 0
Act 5 - Hells Torment 42 175 9 9 9 16 16 500 0
Act 5 - Hells Torment 43 176 9 9 9 16 16 500 0
Act 5 - Hells Torment 44 177 9 9 9 16 16 500 0
Act 5 - Hells Torment 45 178 9 9 9 16 16 500 0
Act 5 - Hells Torment 46 179 9 9 9 16 16 500 0
Act 5 - Hells Torment 47 180 9 9 9 16 16 500 0
Act 5 - Hells Torment 48 181 9 9 9 16 16 500 0
Act 5 - Hells Torment 49 182 9 9 9 16 16 500 0
Act 5 - Hells Torment 50 183 9 9 9 16 16 500 0

File diff suppressed because it is too large Load Diff

View File

@ -1,36 +0,0 @@
Name Type File Expansion 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 1 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 1 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 1 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 1 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 1 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 1 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

View File

@ -1,38 +0,0 @@
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 Expansion
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 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 Act1/Outdoors/Cottages.dt1 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 0
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 Act1/Mod/Crypt.dt1 0 0 0 0 0 1 1 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 0
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 1
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 1
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 1
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 1
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 1
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 1
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 1

View File

@ -1,90 +0,0 @@
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

File diff suppressed because it is too large Load Diff

View File

@ -1,721 +0,0 @@
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
of Defense1 100 1 1 12 8 60 61 ac 5 10 ring amul scha mcha lcha 0 0 0
of Defense1 100 1 1 33 27 60 61 ac 11 25 ring amul scha mcha lcha 0 0 0
og Guarding1 100 1 1 51 46 60 61 ac 26 50 ring amul scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 1 55 1 96 14 dmg-max 1 2 amul ring scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 22 19 96 14 dmg-max 3 4 amul ring scha mcha lcha 0 0 0
of Quality 100 1 1 53 49 96 14 dmg-max 5 7 amul ring scha mcha lcha 0 0 0
of Quality 100 1 1 77 61 96 14 dmg-max 8 10 amul ring scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 1 20 1 192 14 dmg-max 1 2 weap earr ebol scha mcha lcha wand orb 0 0 0
of Quality 100 1 1 4 30 3 192 14 dmg-max 3 4 weap earr ebol scha mcha lcha wand orb 0 0 0
of Maiming 100 1 1 7 40 5 192 14 dmg-max 5 6 weap earr ebol scha mcha lcha wand orb 0 0 0
of Slaying 100 1 1 11 55 8 192 14 dmg-max 7 8 weap earr ebol scha mcha lcha wand orb 0 0 0
of Gore 100 1 1 14 65 10 192 14 dmg-max 9 10 weap earr ebol scha mcha lcha wand orb 0 0 0
of Carnage 100 1 1 19 80 14 176 14 dmg-max 11 14 1 blac weap earr ebol scha mcha lcha wand orb 0 0 0
of Slaughter 100 1 1 25 18 168 14 dmg-max 15 20 1 blac weap earr ebol scha mcha lcha wand orb 0 0 0
of Butchery 100 1 1 35 27 160 14 dmg-max 21 40 1 blac weap earr ebol scha mcha lcha wand orb 0 0 0
of Evisceration 100 1 1 45 37 144 14 dmg-max 41 63 1 blac weap earr ebol scha mcha lcha wand orb 0 0 0
of Evisceration 100 1 1 60 50 128 14 dmg-max 64 80 1 blac weap earr ebol scha mcha lcha wand staf orb 0 0 0
of Evisceration 100 1 1 73 65 112 14 dmg-max 81 100 1 blac weap earr ebol scha mcha lcha wand staf orb 0 0 0
of Evisceration 100 1 1 85 79 88 14 dmg-max 101 120 1 blac weap earr ebol scha mcha lcha wand staf orb 0 0 0
of Maiming 100 1 1 42 34 48 14 dmg-max 1 4 shld earr ebol scha mcha lcha 0 0 0
of Maiming 100 1 1 65 51 36 14 dmg-max 5 8 shld earr ebol scha mcha lcha 0 0 0
of Maiming 100 1 1 80 68 36 14 dmg-max 9 12 shld earr ebol scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 1 7 1 48 14 dmg-max 1 2 circ earr ebol scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 12 14 10 48 14 dmg-max 2 3 circ earr ebol scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 24 29 22 48 14 dmg-max 4 5 circ earr ebol scha mcha lcha 0 0 0
of Quality 100 1 1 37 35 48 14 dmg-max 6 7 circ earr ebol scha mcha lcha 0 0 0
of Quality 100 1 1 48 46 48 14 dmg-max 8 9 circ earr ebol scha mcha lcha 0 0 0
of Maiming 100 1 1 66 62 48 14 dmg-max 10 12 circ earr ebol scha mcha lcha 0 0 0
of Maiming 100 1 1 79 74 48 14 dmg-max 13 15 circ earr ebol scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 8 17 6 48 14 dmg-max 1 1 mcha earr ebol scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 18 37 13 48 14 dmg-max 2 2 mcha earr ebol scha mcha lcha 0 0 0
of Quality 100 1 1 28 21 48 14 dmg-max 3 4 mcha earr ebol scha mcha lcha 0 0 0
of Quality 100 1 1 38 30 48 14 dmg-max 5 6 mcha earr ebol scha mcha lcha 0 0 0
of Maiming 100 1 1 48 40 48 14 dmg-max 7 8 mcha earr ebol scha mcha lcha 0 0 0
of Craftsmanship 100 1 1 21 15 48 14 dmg-max 1 1 scha earr ebol scha mcha lcha 0 0 0
of Quality 100 1 1 36 28 48 14 dmg-max 2 2 scha earr ebol scha mcha lcha 0 0 0
of Maiming 100 1 1 51 43 48 14 dmg-max 3 3 scha earr ebol scha mcha lcha 0 0 0
of Ire 100 1 1 4 3 48 14 dmg-max 2 5 jewl earr ebol scha mcha lcha 0 0 0
of Wrath 100 1 1 16 11 48 14 dmg-max 6 9 1 blac jewl earr ebol scha mcha lcha 0 0 0
of Carnage 100 1 1 35 30 48 14 dmg-max 10 15 1 blac jewl earr ebol scha mcha lcha 0 0 0
of Carnage 100 1 1 67 55 48 14 dmg-max 16 20 1 blac jewl earr ebol scha mcha lcha 0 0 0
of Worth 100 1 1 1 20 1 96 15 dmg-min 1 2 weap earr ebol scha mcha lcha orb wand 0 0 0
of Measure 100 1 1 12 30 9 84 15 dmg-min 3 4 weap earr ebol scha mcha lcha orb wand 0 0 0
of Excellence 100 1 1 24 45 18 72 15 dmg-min 5 8 weap earr ebol scha mcha lcha orb wand 0 0 0
of Performance 100 1 1 48 55 40 60 15 dmg-min 9 14 1 blac weap earr ebol scha mcha lcha orb wand 0 0 0
of Transcendence 100 1 1 76 65 68 48 15 dmg-min 15 20 1 blac weap earr ebol scha mcha lcha orb wand 0 0 0
of Transcendence 100 1 1 82 75 36 15 dmg-min 30 40 1 blac weap earr ebol scha mcha lcha orb wand 0 0 0
of Transcendence 100 1 1 85 83 24 15 dmg-min 50 60 1 blac weap earr ebol scha mcha lcha orb wand 0 0 0
of Worth 100 1 1 15 11 32 15 dmg-min 2 3 ring amul circ scha mcha lcha 0 0 0
of Measure 100 1 1 37 29 32 15 dmg-min 4 5 ring amul circ scha mcha lcha 0 0 0
of Excellence 100 1 1 59 51 32 15 dmg-min 6 9 ring amul circ scha mcha lcha 0 0 0
of Performance 100 1 1 81 73 32 15 dmg-min 10 13 ring amul circ scha mcha lcha 0 0 0
of Joyfulness 100 1 1 5 50 3 32 15 dmg-min 1 4 1 whit jewl scha mcha lcha 0 0 0
of Bliss 100 1 1 43 37 32 15 dmg-min 5 10 1 whit jewl scha mcha lcha 0 0 0
of Frost 100 1 1 4 35 3 60 10 cold-min 1 1 cold-max 1 2 cold-len 50 50 weap scha mcha lcha wand orb 0 0 0
of the Icicle 100 1 1 13 50 9 48 10 cold-min 1 1 cold-max 3 4 cold-len 75 75 weap scha mcha lcha wand orb 0 0 0
of the Glacier 100 1 1 27 70 20 36 10 cold-min 2 4 cold-max 4 15 cold-len 100 100 1 dblu weap scha mcha lcha wand orb 0 0 0
of Winter 100 1 1 45 37 24 10 cold-min 5 9 cold-max 16 50 cold-len 150 150 1 dblu weap scha mcha lcha wand orb 0 0 0
of Winter 100 1 1 60 50 12 10 cold-min 20 30 cold-max 75 100 cold-len 150 150 1 dblu weap scha mcha lcha wand orb 0 0 0
of Winter 100 1 1 80 75 12 10 cold-min 35 45 cold-max 100 150 cold-len 150 150 1 dblu weap scha mcha lcha wand orb 0 0 0
of Frost 100 1 1 55 41 24 10 cold-min 1 1 cold-max 3 6 cold-len 75 75 dblu belt amul 0 0 0
of Frigidity 100 1 1 65 55 24 10 cold-min 1 1 cold-max 7 10 cold-len 100 100 1 dblu belt amul 0 0 0
of the Icicle 100 1 1 75 68 24 10 cold-min 2 3 cold-max 11 15 cold-len 125 125 1 dblu belt amul 0 0 0
of the Glacier 100 1 1 85 81 24 10 cold-min 4 5 cold-max 16 25 cold-len 150 150 1 dblu belt amul 0 0 0
of Frigidity 100 1 1 16 12 24 10 cold-min 1 1 cold-max 3 5 cold-len 50 50 1 dblu jewl scha mcha lcha 0 0 0
of the Icicle 100 1 1 37 29 24 10 cold-min 2 3 cold-max 6 10 cold-len 75 75 1 dblu jewl scha mcha lcha 0 0 0
of the Glacier 100 1 1 58 50 24 10 cold-min 4 5 cold-max 11 15 cold-len 100 100 1 dblu jewl scha mcha lcha 0 0 0
of Frost 100 1 1 5 3 24 10 cold-min 1 1 cold-max 2 2 cold-len 25 25 lcha scha mcha lcha 0 0 0
of the Icicle 100 1 1 8 6 12 10 cold-min 2 2 cold-max 3 4 cold-len 25 25 lcha scha mcha lcha 0 0 0
of the Glacier 100 1 1 15 11 12 10 cold-min 3 3 cold-max 5 7 cold-len 25 25 1 dblu lcha scha mcha lcha 0 0 0
of Winter 100 1 1 23 17 12 10 cold-min 4 6 cold-max 8 11 cold-len 25 25 1 dblu lcha scha mcha lcha 0 0 0
of Frost 100 1 1 9 6 24 10 cold-min 1 1 cold-max 2 3 cold-len 25 25 mcha scha mcha lcha 0 0 0
of the Icicle 100 1 1 15 11 12 10 cold-min 2 2 cold-max 4 5 cold-len 25 25 mcha scha mcha lcha 0 0 0
of the Glacier 100 1 1 25 18 12 10 cold-min 3 3 cold-max 6 8 cold-len 25 25 1 dblu mcha scha mcha lcha 0 0 0
of Winter 100 1 1 35 27 12 10 cold-min 4 6 cold-max 9 12 cold-len 25 25 1 dblu mcha scha mcha lcha 0 0 0
of Frost 100 1 1 14 10 24 10 cold-min 1 1 cold-max 2 2 cold-len 25 25 scha scha mcha lcha 0 0 0
of the Icicle 100 1 1 21 15 12 10 cold-min 2 2 cold-max 3 4 cold-len 25 25 scha scha mcha lcha 0 0 0
of the Glacier 100 1 1 33 25 12 10 cold-min 3 3 cold-max 5 6 cold-len 25 25 1 dblu scha scha mcha lcha 0 0 0
of Winter 100 1 1 46 38 12 10 cold-min 4 5 cold-max 7 9 cold-len 25 25 1 dblu scha scha mcha lcha 0 0 0
of Flame 100 1 1 4 35 3 60 12 fire-min 1 1 fire-max 2 5 weap scha mcha lcha wand orb 0 0 0
of Fire 100 1 1 15 50 11 48 12 fire-min 1 4 fire-max 6 11 weap scha mcha lcha wand orb 0 0 0
of Burning 100 1 1 25 70 18 36 12 fire-min 5 9 fire-max 10 20 1 dred weap scha mcha lcha wand orb 0 0 0
of Incineration 100 1 1 43 35 24 12 fire-min 10 20 fire-max 21 75 1 dred weap scha mcha lcha wand orb 0 0 0
of Incineration 100 1 1 60 50 12 12 fire-min 40 60 fire-max 170 200 1 dred weap scha mcha lcha wand orb 0 0 0
of Incineration 100 1 1 80 75 12 12 fire-min 75 100 fire-max 200 250 1 dred weap scha mcha lcha wand orb 0 0 0
of Flame 100 1 1 40 30 24 12 fire-min 1 1 fire-max 2 5 1 dred glov ring amul 0 0 0
of Passion 100 1 1 55 51 24 12 fire-min 1 3 fire-max 6 10 1 dred glov ring amul 0 0 0
of Fire 100 1 1 65 62 24 12 fire-min 4 10 fire-max 11 30 1 dred glov ring amul 0 0 0
of Burning 100 1 1 80 77 24 12 fire-min 11 25 fire-max 31 50 1 dred glov ring amul 0 0 0
of Passion 100 1 1 15 11 24 12 fire-min 1 3 fire-max 6 10 1 dred jewl scha mcha lcha 0 0 0
of Fire 100 1 1 36 28 24 12 fire-min 4 10 fire-max 11 30 1 dred jewl scha mcha lcha 0 0 0
of Burning 100 1 1 57 49 24 12 fire-min 11 25 fire-max 31 50 1 dred jewl scha mcha lcha 0 0 0
of Flame 100 1 1 3 2 24 12 fire-min 1 1 fire-max 2 2 lcha scha mcha lcha 0 0 0
of Fire 100 1 1 8 6 12 12 fire-min 1 2 fire-max 3 3 lcha scha mcha lcha 0 0 0
of Burning 100 1 1 14 10 12 12 fire-min 2 3 fire-max 4 7 1 dred lcha scha mcha lcha 0 0 0
of Incineration 100 1 1 22 16 12 12 fire-min 4 7 fire-max 8 14 1 dred lcha scha mcha lcha 0 0 0
of Flame 100 1 1 7 5 24 12 fire-min 1 1 fire-max 2 2 mcha scha mcha lcha 0 0 0
of Fire 100 1 1 14 10 12 12 fire-min 2 2 fire-max 3 5 mcha scha mcha lcha 0 0 0
of Burning 100 1 1 24 18 12 12 fire-min 3 5 fire-max 6 11 1 dred mcha scha mcha lcha 0 0 0
of Incineration 100 1 1 34 26 12 12 fire-min 6 10 fire-max 12 17 1 dred mcha scha mcha lcha 0 0 0
of Flame 100 1 1 11 8 24 12 fire-min 1 1 fire-max 2 2 scha scha mcha lcha 0 0 0
of Fire 100 1 1 20 15 12 12 fire-min 2 2 fire-max 3 4 scha scha mcha lcha 0 0 0
of Burning 100 1 1 32 24 12 12 fire-min 3 4 fire-max 5 8 1 dred scha scha mcha lcha 0 0 0
of Incineration 100 1 1 45 37 12 12 fire-min 5 7 fire-max 9 13 1 dred scha scha mcha lcha 0 0 0
of Shock 100 1 1 4 35 3 60 13 ltng-min 1 1 ltng-max 6 8 weap scha mcha lcha wand orb 0 0 0
of Lightning 100 1 1 15 50 11 48 13 ltng-min 1 1 ltng-max 9 16 weap scha mcha lcha wand orb 0 0 0
of Thunder 100 1 1 25 70 18 36 13 ltng-min 1 1 ltng-max 17 40 1 dyel weap scha mcha lcha wand orb 0 0 0
of Storms 100 1 1 34 26 24 13 ltng-min 1 6 ltng-max 41 120 1 dyel weap scha mcha lcha wand orb 0 0 0
of Storms 100 1 1 50 49 12 13 ltng-min 1 12 ltng-max 250 300 1 dyel weap scha mcha lcha wand orb 0 0 0
of Storms 100 1 1 75 68 12 13 ltng-min 1 20 ltng-max 300 350 1 dyel weap scha mcha lcha wand orb 0 0 0
of Shock 100 1 1 50 37 24 13 ltng-min 1 1 ltng-max 11 23 boot ring amul 0 0 0
of Lightning 100 1 1 65 57 24 13 ltng-min 1 1 ltng-max 24 50 1 dyel boot ring amul 0 0 0
of Thunder 100 1 1 75 70 24 13 ltng-min 1 1 ltng-max 51 75 1 dyel boot ring amul 0 0 0
of Storms 100 1 1 86 80 24 13 ltng-min 1 1 ltng-max 76 100 1 dyel boot ring amul 0 0 0
of Ennui 100 1 1 15 11 24 13 ltng-min 1 1 ltng-max 10 20 1 dyel jewl scha mcha lcha 0 0 0
of Lightning 100 1 1 36 28 24 13 ltng-min 1 1 ltng-max 21 60 1 dyel jewl scha mcha lcha 0 0 0
of Thunder 100 1 1 57 49 24 13 ltng-min 1 1 ltng-max 61 100 1 dyel jewl scha mcha lcha 0 0 0
of Shock 100 1 1 4 3 24 13 ltng-min 1 1 ltng-max 2 3 lcha scha mcha lcha 0 0 0
of Lightning 100 1 1 7 5 12 13 ltng-min 1 1 ltng-max 4 7 lcha scha mcha lcha 0 0 0
of Thunder 100 1 1 15 11 12 13 ltng-min 1 1 ltng-max 8 21 1 dyel lcha scha mcha lcha 0 0 0
of Storms 100 1 1 22 16 12 13 ltng-min 1 1 ltng-max 22 33 1 dyel lcha scha mcha lcha 0 0 0
of Shock 100 1 1 7 5 24 13 ltng-min 1 1 ltng-max 3 5 mcha scha mcha lcha 0 0 0
of Lightning 100 1 1 14 10 12 13 ltng-min 1 1 ltng-max 6 13 mcha scha mcha lcha 0 0 0
of Thunder 100 1 1 24 18 12 13 ltng-min 1 1 ltng-max 14 25 1 dyel mcha scha mcha lcha 0 0 0
of Storms 100 1 1 34 26 12 13 ltng-min 1 1 ltng-max 26 38 1 dyel mcha scha mcha lcha 0 0 0
of Shock 100 1 1 12 9 24 13 ltng-min 1 1 ltng-max 3 6 scha scha mcha lcha 0 0 0
of Lightning 100 1 1 21 15 12 13 ltng-min 1 1 ltng-max 7 10 scha scha mcha lcha 0 0 0
of Thunder 100 1 1 33 25 12 13 ltng-min 1 1 ltng-max 11 18 1 dyel scha scha mcha lcha 0 0 0
of Storms 100 1 1 45 37 12 13 ltng-min 1 1 ltng-max 19 28 1 dyel scha scha mcha lcha 0 0 0
of Blight 100 1 1 5 35 3 60 16 dmg-pois 75 24 24 weap circ scha mcha lcha rod orb 0 0 0
of Venom 100 1 1 15 50 11 48 16 dmg-pois 100 54 54 weap circ scha mcha lcha rod orb 0 0 0
of Pestilence 100 1 1 25 70 18 36 16 dmg-pois 125 103 103 1 dgrn weap circ scha mcha lcha rod orb 0 0 0
of Anthrax 100 1 1 33 25 24 16 dmg-pois 150 171 171 1 dgrn weap circ scha mcha lcha rod orb 0 0 0
of Blight 100 1 1 45 33 24 16 dmg-pois 75 171 171 ring amul scha mcha lcha 0 0 0
of Venom 100 1 1 65 55 12 16 dmg-pois 75 266 266 ring amul scha mcha lcha 0 0 0
of Blight 100 1 1 85 72 12 16 dmg-pois 75 377 377 ring amul scha mcha lcha 0 0 0
of Anthrax 100 1 1 1 1 24 16 dmg-pois 50 103 103 1 dgrn jewl scha mcha lcha 0 0 0
of Anthrax 100 1 1 44 33 24 16 dmg-pois 50 206 206 1 dgrn jewl scha mcha lcha 0 0 0
of Anthrax 100 1 1 77 66 24 16 dmg-pois 50 309 309 1 dgrn jewl scha mcha lcha 0 0 0
of Blight 100 1 1 1 1 24 16 dmg-pois 75 32 32 lcha scha mcha lcha 0 0 0
of Venom 100 1 1 6 4 12 16 dmg-pois 100 69 69 lcha scha mcha lcha 0 0 0
of Pestilence 100 1 1 14 10 12 16 dmg-pois 125 106 106 1 dgrn lcha scha mcha lcha 0 0 0
of Anthrax 100 1 1 21 15 12 16 dmg-pois 150 146 146 1 dgrn lcha scha mcha lcha 0 0 0
of Blight 100 1 1 5 3 24 16 dmg-pois 75 21 21 mcha scha mcha lcha 0 0 0
of Venom 100 1 1 13 9 12 16 dmg-pois 100 59 59 mcha scha mcha lcha 0 0 0
of Pestilence 100 1 1 23 17 12 16 dmg-pois 125 82 82 1 dgrn mcha scha mcha lcha 0 0 0
of Anthrax 100 1 1 33 25 12 16 dmg-pois 150 116 116 1 dgrn mcha scha mcha lcha 0 0 0
of Blight 100 1 1 9 6 24 16 dmg-pois 75 21 21 scha scha mcha lcha 0 0 0
of Venom 100 1 1 20 15 12 16 dmg-pois 100 39 39 scha scha mcha lcha 0 0 0
of Pestilence 100 1 1 32 24 12 16 dmg-pois 125 52 52 1 dgrn scha scha mcha lcha 0 0 0
of Anthrax 100 1 1 44 36 12 16 dmg-pois 150 86 86 1 dgrn scha scha mcha lcha 0 0 0
of Warmth 100 1 1 10 7 48 11 half-freeze 1 1 shld boot glov ring amul circ orb 0 0 0
of Warmth 100 1 1 77 69 24 11 nofreeze 1 1 shld boot glov ring amul circ orb 0 0 0
of Defiance 100 1 1 44 39 24 29 res-pois-len 75 90 1 dred tors shld amul circ scha mcha lcha 0 0 0
of Amelioration 100 1 1 25 18 36 29 res-pois-len 50 74 tors shld amul circ scha mcha lcha 0 0 0
of Remedy 100 1 1 18 50 13 36 29 res-pois-len 25 49 armo ring amul circ scha mcha lcha 0 0 0
of Remedy 100 1 1 1 25 1 36 29 res-pois-len 10 24 armo ring amul circ scha mcha lcha 0 0 0
of the Leech 100 1 1 6 4 84 27 lifesteal 4 5 weap scha mcha lcha scha mcha lcha orb 0 0 0
of the Locust 100 1 1 20 15 84 27 lifesteal 6 7 1 cred weap scha mcha lcha scha mcha lcha orb 0 0 0
of the Lamprey 100 1 1 55 43 84 27 lifesteal 8 9 1 cred mele scha mcha lcha scha mcha lcha orb 0 0 0
of the Leech 100 1 1 14 10 48 27 lifesteal 3 4 ring circ scha mcha lcha 0 0 0
of the Locust 100 1 1 47 35 48 27 lifesteal 5 6 ring circ scha mcha lcha 0 0 0
of the Lamprey 100 1 1 77 65 48 27 lifesteal 7 8 1 cred ring circ scha mcha lcha 0 0 0
of the Leech 100 1 1 34 26 48 27 lifesteal 3 3 1 cred glov scha mcha lcha 0 0 0
of the Leech 100 1 1 24 20 24 27 lifesteal 2 3 amul scha mcha lcha 0 0 0
of the Locust 100 1 1 57 45 24 27 lifesteal 4 5 amul scha mcha lcha 0 0 0
of the Lamprey 100 1 1 85 73 24 27 lifesteal 6 6 1 cred amul scha mcha lcha 0 0 0
of the Bat 100 1 1 7 4 84 28 manasteal 4 5 weap scha mcha lcha orb 0 0 0
of the Wraith 100 1 1 21 16 84 28 manasteal 6 7 1 cred weap scha mcha lcha 0 0 0
of the Vampire 100 1 1 56 48 84 28 manasteal 8 9 1 cred mele scha mcha lcha 0 0 0
of the Bat 100 1 1 15 11 48 28 manasteal 3 4 amul circ scha mcha lcha 0 0 0
of the Wraith 100 1 1 58 40 48 28 manasteal 5 6 amul circ scha mcha lcha 0 0 0
of the Vampire 100 1 1 78 66 48 28 manasteal 7 8 1 cred amul circ scha mcha lcha 0 0 0
of the Bat 100 1 1 35 27 48 28 manasteal 3 3 1 cred glov scha mcha lcha 0 0 0
of the Bat 100 1 1 25 21 24 28 manasteal 2 3 ring scha mcha lcha 0 0 0
of the Wraith 100 1 1 58 46 24 28 manasteal 4 5 ring scha mcha lcha 0 0 0
of the Vampire 100 1 1 86 74 24 28 manasteal 6 8 1 cred ring scha mcha lcha 0 0 0
of the Lich1 100 1 1 44 38 12 60 manasteal 3 5 lifesteal 5 7 ring amul scha mcha lcha 0 0 0
of the Lich1 100 1 1 66 60 12 60 manasteal 6 7 lifesteal 8 9 ring amul scha mcha lcha 0 0 0
of the Lich1 100 1 1 87 84 12 60 manasteal 8 9 lifesteal 10 12 ring amul scha mcha lcha 0 0 0
of Health 100 1 1 7 20 5 48 1 red-dmg 1 1 tors shld ring amul circ 0 0 0
of Protection 100 1 1 18 40 13 48 1 red-dmg 2 2 ring amul circ scha mcha lcha 0 0 0
of Absorption 100 1 1 26 50 19 48 1 red-dmg 3 5 amul circ ring scha mcha lcha 0 0 0
of Life 100 1 1 35 26 48 1 red-dmg 6 10 1 dblu amul circ ring scha mcha lcha 0 0 0
of Life Everlasting 100 1 1 45 37 48 1 red-dmg 10 25 amul circ ring scha mcha lcha 0 0 0
of Protection 100 1 1 24 25 18 48 1 red-dmg 2 3 tors shld circ scha mcha lcha 0 0 0
of Absorption 100 1 1 32 55 24 48 1 red-dmg 4 5 tors shld circ scha mcha lcha 0 0 0
of Life 100 1 1 41 33 48 1 red-dmg 6 7 tors shld circ scha mcha lcha 0 0 0
of Anima 100 1 1 51 43 48 1 red-dmg 8 15 tors shld circ scha mcha lcha 0 0 0
of Warding 100 1 1 7 25 5 48 2 red-mag 1 2 tors shld ring amul orb circ 0 0 0
of the Sentinel 100 1 1 18 12 48 2 red-mag 3 4 ring amul orb circ 0 0 0
of Guarding 100 1 1 26 19 48 2 red-mag 5 6 amul orb circ ring 0 0 0
of Negation 100 1 1 42 35 48 2 red-mag 7 8 amul orb circ ring 0 0 0
of the Sentinel 100 1 1 24 40 18 48 2 red-mag 2 4 tors shld circ scha mcha lcha 0 0 0
of Guarding 100 1 1 32 24 48 2 red-mag 5 8 tors shld circ scha mcha lcha 0 0 0
of Negation 100 1 1 41 33 48 2 red-mag 9 15 tors shld circ scha mcha lcha 0 0 0
of Warding 100 1 1 26 37 19 48 2 res-mag 2 5 tors shld ring amul orb circ 0 0 0
of the Sentinel 100 1 1 42 31 48 2 res-mag 6 9 ring amul orb circ tors shld 0 0 0
of Guarding 100 1 1 66 53 48 2 res-mag 10 13 amul orb circ tors shld 0 0 0
of Negation 100 1 1 84 72 48 2 res-mag 14 20 shld orb circ tors scha mcha lcha 0 0 0
of Coolness 100 1 1 11 35 8 12 3 abs-fire 2 3 tors shld boot circ scha mcha lcha 0 0 0
of Incombustibility 100 1 1 19 70 17 12 3 abs-fire 4 6 tors shld boot circ scha mcha lcha 0 0 0
of Amianthus 100 1 1 35 29 12 3 abs-fire 7 9 tors shld boot circ scha mcha lcha 0 0 0
of Fire Quenching 100 1 1 50 47 12 3 abs-fire 10 15 tors shld boot circ scha mcha lcha 0 0 0
of Coolness 100 1 1 13 9 12 3 abs-fire 1 2 ring amul orb circ scha mcha lcha 0 0 0
of Incombustibility 100 1 1 22 16 12 3 abs-fire 3 4 amul orb circ ring scha mcha lcha 0 0 0
of Amianthus 100 1 1 33 25 12 3 abs-fire 5 6 amul orb circ ring scha mcha lcha 0 0 0
of Fire Quenching 100 1 1 46 38 12 3 abs-fire 8 10 amul orb circ ring scha mcha lcha 0 0 0
of Faith 100 1 1 23 17 12 3 abs-fire 2 3 jewl scha mcha lcha 0 0 0
of Faith 100 1 1 56 50 12 3 abs-fire 4 7 jewl scha mcha lcha 0 0 0
of Fire Coalescence1 100 1 1 33 29 12 3 abs-fire% 3 7 weap amul ring shld scha mcha lcha 0 0 0
of Fire Coalescence1 100 1 1 66 54 12 3 abs-fire% 8 15 weap amul ring shld scha mcha lcha 0 0 0
of Fire Coalescence1 100 1 1 87 80 12 3 abs-fire% 16 25 weap amul ring shld scha mcha lcha 0 0 0
of Resistance 100 1 1 11 35 8 12 3 abs-ltng 2 3 tors shld boot circ scha mcha lcha 0 0 0
of Insulation 100 1 1 19 70 14 12 3 abs-ltng 4 6 tors shld boot circ scha mcha lcha 0 0 0
of Grounding 100 1 1 35 29 12 3 abs-ltng 7 9 tors shld boot circ scha mcha lcha 0 0 0
of the Dynamo 100 1 1 50 47 12 3 abs-ltng 10 15 tors shld boot circ scha mcha lcha 0 0 0
of Resistance 100 1 1 13 9 12 3 abs-ltng 1 2 ring amul orb circ scha mcha lcha 0 0 0
of Insulation 100 1 1 22 16 12 3 abs-ltng 3 4 amul orb circ ring scha mcha lcha 0 0 0
of Grounding 100 1 1 33 25 12 3 abs-ltng 5 6 amul orb circ ring scha mcha lcha 0 0 0
of the Dynamo 100 1 1 46 38 12 3 abs-ltng 8 10 amul orb circ ring scha mcha lcha 0 0 0
of Stoicism 100 1 1 22 16 12 3 abs-ltng 2 3 jewl scha mcha lcha 0 0 0
of Stoicism 100 1 1 56 50 12 3 abs-ltng 4 7 jewl scha mcha lcha 0 0 0
of Lightning Coalescence1 100 1 1 33 29 12 3 abs-ltng% 3 7 weap amul ring shld scha mcha lcha 0 0 0
of Lightning Coalescence1 100 1 1 66 54 12 3 abs-ltng% 8 15 weap amul ring shld scha mcha lcha 0 0 0
of Lightning Coalescence1 100 1 1 87 80 12 3 abs-ltng% 16 25 weap amul ring shld scha mcha lcha 0 0 0
of Warming 100 1 1 11 35 8 12 3 abs-cold 2 3 tors shld boot circ scha mcha lcha 0 0 0
of Thawing 100 1 1 19 70 14 12 3 abs-cold 4 6 tors shld boot circ scha mcha lcha 0 0 0
of the Dunes 100 1 1 35 29 12 3 abs-cold 7 9 tors shld boot circ scha mcha lcha 0 0 0
of the Sirocco 100 1 1 50 47 12 3 abs-cold 10 15 tors shld boot circ scha mcha lcha 0 0 0
of Warming 100 1 1 13 9 12 3 abs-cold 1 2 ring amul orb circ scha mcha lcha 0 0 0
of Thawing 100 1 1 22 16 12 3 abs-cold 3 4 amul orb circ ring scha mcha lcha 0 0 0
of the Dunes 100 1 1 33 25 12 3 abs-cold 5 6 amul orb circ ring scha mcha lcha 0 0 0
of the Sirocco 100 1 1 46 38 12 3 abs-cold 8 10 amul orb circ ring scha mcha lcha 0 0 0
of Desire 100 1 1 23 17 12 3 abs-cold 2 3 jewl scha mcha lcha 0 0 0
of Desire 100 1 1 56 50 12 3 abs-cold 4 7 jewl scha mcha lcha 0 0 0
of Chilling Coalescence1 100 1 1 33 29 12 3 abs-cold% 3 7 weap amul ring shld 0 0 0
of Chilling Coalescence1 100 1 1 66 54 12 3 abs-cold% 8 15 weap amul ring shld 0 0 0
of Chilling Coalescence1 100 1 1 87 80 12 3 abs-cold% 16 25 weap amul ring shld 0 0 0
of the Yeti 100 1 1 1 20 1 12 43 res-cold/lvl 4 1 lblu armo ring amul scha mcha lcha 0 0 0
of the Yeti 100 1 1 20 1 12 43 res-cold/lvl 6 1 lblu armo ring amul scha mcha lcha 0 0 0
of the Phoenix 100 1 1 1 20 1 12 43 res-fire/lvl 4 1 cred armo ring amul scha mcha lcha 0 0 0
of the Phoenix 100 1 1 20 1 12 43 res-fire/lvl 6 1 cred armo ring amul scha mcha lcha 0 0 0
of the Efreeti 100 1 1 1 20 1 12 43 res-ltng/lvl 4 1 cblu armo ring amul scha mcha lcha 0 0 0
of the Efreeti 100 1 1 20 1 12 43 res-ltng/lvl 6 1 cblu armo ring amul scha mcha lcha 0 0 0
of the Cobra 100 1 1 1 20 1 12 43 res-pois/lvl 4 1 dyel armo ring amul scha mcha lcha 0 0 0
of the Cobra 100 1 1 20 1 12 43 res-pois/lvl 6 1 dyel armo ring amul scha mcha lcha 0 0 0
of the Elements 100 1 1 1 1 24 43 res-cold/lvl 2 res-fire/lvl 2 res-ltng/lvl 2 1 dgld circ shld scha mcha lcha 0 0 0
of the Elements 100 1 1 44 41 24 43 res-cold/lvl 4 res-fire/lvl 4 res-ltng/lvl 4 1 dgld circ shld scha mcha lcha 0 0 0
of the Elements 100 1 1 77 71 24 43 res-cold/lvl 5 res-fire/lvl 5 res-ltng/lvl 5 1 dgld circ shld scha mcha lcha 0 0 0
of Winter2 100 1 1 54 45 24 67 res-cold-max 1 10 armo shld ring amul scha mcha lcha 0 0 0
of Summer2 100 1 1 54 45 24 67 res-fire-max 1 10 armo shld ring amul scha mcha lcha 0 0 0
of Spring2 100 1 1 54 45 24 67 res-ltng-max 1 10 armo shld ring amul scha mcha lcha 0 0 0
of Autumn2 100 1 1 54 45 24 67 res-pois-max 1 10 armo shld ring amul scha mcha lcha 0 0 0
of the Four Seasons2 100 1 1 68 58 24 67 res-all-max 3 5 armo shld ring amul scha mcha lcha 0 0 0
of the Four Seasons2 100 1 1 87 79 24 67 res-all-max 6 10 armo shld ring amul scha mcha lcha 0 0 0
of Dexterity 100 1 1 1 20 1 48 17 dex 1 2 amul miss circ scha mcha lcha 0 0 0
of Skill 100 1 1 11 40 8 36 17 dex 3 5 amul miss circ scha mcha lcha 0 0 0
of Accuracy 100 1 1 27 55 20 36 17 dex 6 9 amul miss circ scha mcha lcha 0 0 0
of Precision 100 1 1 43 75 35 36 17 dex 10 15 amul miss circ scha mcha lcha 0 0 0
of Perfection 100 1 1 59 51 36 17 dex 16 20 1 dgld amul miss circ scha mcha lcha 0 0 0
of Nirvana 100 1 1 72 64 36 17 dex 21 30 1 dgld amul miss circ scha mcha lcha 0 0 0
of Dexterity 100 1 1 6 30 4 48 17 dex 1 2 ring glov scha mcha lcha 0 0 0
of Skill 100 1 1 22 50 16 36 17 dex 3 5 ring glov scha mcha lcha 0 0 0
of Accuracy 100 1 1 39 70 31 36 17 dex 6 9 ring glov scha mcha lcha 0 0 0
of Precision 100 1 1 56 48 36 17 dex 10 15 ring glov scha mcha lcha 0 0 0
of Perfection 100 1 1 75 67 36 17 dex 16 20 1 dgld ring glov scha mcha lcha 0 0 0
of Dexterity 100 1 1 13 35 9 36 17 dex 2 3 tors boot scha mcha lcha glov 0 0 0
of Skill 100 1 1 34 55 26 36 17 dex 4 5 tors boot scha mcha lcha glov 0 0 0
of Accuracy 100 1 1 46 75 38 36 17 dex 6 9 tors boot scha mcha lcha glov 0 0 0
of Precision 100 1 1 60 52 36 17 dex 10 15 1 dgld tors boot scha mcha lcha glov 0 0 0
of Dexterity 100 1 1 1 1 48 31 dex 3 4 lcha scha mcha lcha 0 0 0
of Dexterity 100 1 1 3 2 48 31 dex 2 3 mcha scha mcha lcha 0 0 0
of Dexterity 100 1 1 7 5 48 31 dex 1 1 scha scha mcha lcha 0 0 0
of Dexterity 100 1 1 14 10 48 31 dex 5 6 lcha scha mcha lcha 0 0 0
of Dexterity 100 1 1 18 13 48 31 dex 4 5 mcha scha mcha lcha 0 0 0
of Dexterity 100 1 1 22 16 48 31 dex 2 2 scha scha mcha lcha 0 0 0
of Daring 100 1 1 7 5 48 17 dex 1 5 jewl scha mcha lcha 0 0 0
of Daring 100 1 1 19 14 48 17 dex 4 6 jewl scha mcha lcha 0 0 0
of Daring 100 1 1 36 28 48 17 dex 7 9 jewl scha mcha lcha 0 0 0
of Dexterity 100 1 1 1 12 1 48 17 dex 1 1 boot glov scha mcha lcha 0 0 0
of Dexterity 100 1 1 1 5 1 48 17 dex 1 1 ring scha mcha lcha 0 0 0
of Perfection 100 1 1 80 75 36 17 dex 20 30 1 dgld tors boot scha mcha lcha glov 0 0 0
of Strength 100 1 1 1 25 1 48 31 str 1 2 amul belt club hamm circ 0 0 0
of Might 100 1 1 10 40 8 36 31 str 3 5 amul belt club hamm circ 0 0 0
of the Ox 100 1 1 26 70 19 48 31 str 6 9 amul belt club hamm circ 0 0 0
of the Giant 100 1 1 42 34 36 31 str 10 15 amul belt club hamm circ 0 0 0
of the Titan 100 1 1 58 50 36 31 str 16 20 1 dgld amul belt club hamm circ 0 0 0
of Atlus 100 1 1 71 63 36 31 str 21 30 1 dgld amul belt club hamm circ 0 0 0
of Strength 100 1 1 5 30 3 48 31 str 1 2 ring scep mace tors 0 0 0
of Might 100 1 1 21 65 15 36 31 str 3 5 ring scep mace tors 0 0 0
of the Ox 100 1 1 38 30 36 31 str 6 9 ring scep mace tors 0 0 0
of the Giant 100 1 1 55 47 36 31 str 10 15 ring scep mace tors 0 0 0
of the Titan 100 1 1 74 66 36 31 str 16 20 1 dgld ring scep mace tors 0 0 0
of Strength 100 1 1 12 30 8 36 31 str 1 2 mele glov shld scha mcha lcha blun 0 0 0
of Might 100 1 1 33 60 25 36 31 str 3 5 mele glov shld scha mcha lcha blun 0 0 0
of the Ox 100 1 1 45 37 36 31 str 6 9 mele glov shld scha mcha lcha blun 0 0 0
of the Giant 100 1 1 59 51 36 31 str 10 15 1 dgld mele glov scha mcha lcha blun 0 0 0
of Strength 100 1 1 1 60 1 48 31 str 3 4 lcha scha mcha lcha 0 0 0
of Strength 100 1 1 3 60 2 48 31 str 2 3 mcha scha mcha lcha 0 0 0
of Strength 100 1 1 7 60 5 48 31 str 1 1 scha scha mcha lcha 0 0 0
of Strength 100 1 1 14 10 48 31 str 5 6 lcha scha mcha lcha 0 0 0
of Strength 100 1 1 18 13 48 31 str 4 5 mcha scha mcha lcha 0 0 0
of Strength 100 1 1 22 16 48 31 str 2 2 scha scha mcha lcha 0 0 0
of Virility 100 1 1 18 13 48 31 str 1 5 jewl scha mcha lcha 0 0 0
of Virility 100 1 1 33 25 48 31 str 5 6 jewl scha mcha lcha 0 0 0
of Virility 100 1 1 50 42 48 31 str 7 9 jewl scha mcha lcha 0 0 0
of Strength 100 1 1 1 11 1 48 31 str 1 1 glov scha mcha lcha 0 0 0
of Strength 100 1 1 1 4 1 48 31 str 1 1 ring scha mcha lcha 0 0 0
of Energy 100 1 1 1 25 1 48 23 enr 1 3 amul orb circ wand staf 0 0 0
of the Mind 100 1 1 7 50 3 48 23 enr 4 6 amul orb circ wand staf 0 0 0
of Brilliance 100 1 1 13 75 9 36 23 enr 7 10 amul orb circ wand staf 0 0 0
of Sorcery 100 1 1 21 16 36 23 enr 11 15 amul orb circ wand staf 0 0 0
of Wizardry 100 1 1 31 23 36 23 enr 16 20 1 dgld amul orb circ wand staf 0 0 0
of Enlightenment 100 1 1 41 33 36 23 enr 21 30 1 dgld amul orb circ wand staf 0 0 0
of Energy 100 1 1 7 25 5 48 23 enr 1 3 ring scha mcha lcha 0 0 0
of the Mind 100 1 1 13 50 9 36 23 enr 4 6 ring scha mcha lcha 0 0 0
of Brilliance 100 1 1 21 75 16 36 23 enr 7 10 ring scha mcha lcha 0 0 0
of Sorcery 100 1 1 31 23 36 23 enr 11 15 ring scha mcha lcha 0 0 0
of Wizardry 100 1 1 41 33 36 23 enr 16 20 1 dgld ring scha mcha lcha 0 0 0
of Energy 100 1 1 4 25 3 36 23 enr 1 3 helm scep scha mcha lcha 0 0 0
of the Mind 100 1 1 10 50 7 36 23 enr 4 6 helm scep scha mcha lcha 0 0 0
of Brilliance 100 1 1 16 70 12 36 23 enr 7 10 helm scep scha mcha lcha 0 0 0
of Sorcery 100 1 1 26 21 36 23 enr 11 15 1 dgld helm scep scha mcha lcha 0 0 0
of Knowledge 100 1 1 9 50 6 36 23 enr 1 5 jewl scha mcha lcha 0 0 0
of Knowledge 100 1 1 24 18 36 23 enr 4 6 jewl scha mcha lcha 0 0 0
of Knowledge 100 1 1 41 33 36 23 enr 7 9 jewl scha mcha lcha 0 0 0
of Energy 100 1 1 1 4 1 48 23 enr 1 1 amul orb circ wand staf helm ring 0 0 0
of Grace 100 1 1 1 1 12 42 dex/lvl 3 1 dgld helm amul scha mcha lcha 0 0 0
of Power 100 1 1 1 1 12 42 str/lvl 3 1 dgld belt amul scha mcha lcha 0 0 0
of Grace and Power 100 1 1 50 48 12 42 str/lvl 3 dex/lvl 3 1 dgld amul scha mcha lcha 0 0 0
of Agility2 100 1 1 35 55 35 12 42 dex% 5 10 weap boot scha mcha lcha 0 0 0
of Agility2 100 1 1 55 75 55 12 42 dex% 11 20 weap boot scha mcha lcha 0 0 0
of Agility2 100 1 1 75 75 12 42 dex% 21 30 weap boot scha mcha lcha 0 0 0
of Power2 100 1 1 35 55 35 12 42 str% 5 10 weap glov scha mcha lcha 0 0 0
of Power2 100 1 1 55 75 55 12 42 str% 11 20 weap glov scha mcha lcha 0 0 0
of Power2 100 1 1 75 75 12 42 str% 21 30 weap glov scha mcha lcha 0 0 0
of Endurance2 100 1 1 35 55 35 12 42 vit% 5 10 weap glov scha mcha lcha 0 0 0
of Endurance2 100 1 1 55 75 55 12 42 vit% 11 20 weap glov scha mcha lcha 0 0 0
of Endurance2 100 1 1 75 75 12 42 vit% 21 30 weap glov scha mcha lcha 0 0 0
of Spirit2 100 1 1 35 55 35 12 42 enr% 5 10 weap glov scha mcha lcha 0 0 0
of Spirit2 100 1 1 55 75 55 12 42 enr% 11 20 weap glov scha mcha lcha 0 0 0
of Spirit2 100 1 1 75 75 12 42 enr% 21 30 weap glov scha mcha lcha 0 0 0
of the Sky1 100 1 1 20 18 12 42 all-stats 5 10 amul ring circ orb staff wand 0 0 0
of the Stars1 100 1 1 44 40 12 42 all-stats 11 15 amul ring circ orb staff wand 0 0 0
of the Heavens1 100 1 1 69 64 12 42 all-stats 16 20 amul ring circ orb staff wand 0 0 0
of the Zodiac1 100 1 1 86 83 12 42 all-stats 21 30 amul ring circ orb staff wand 0 0 0
of the Jackal 100 1 1 1 20 1 36 26 hp 1 5 tors belt amul phlm circ 0 0 0
of the Fox 100 1 1 7 30 5 36 26 hp 6 10 tors belt amul phlm circ 0 0 0
of the Wolf 100 1 1 15 50 11 36 26 hp 11 20 tors belt amul phlm circ 0 0 0
of the Tiger 100 1 1 20 65 15 36 26 hp 21 30 tors belt amul phlm circ 0 0 0
of the Mammoth 100 1 1 25 18 36 26 hp 31 40 1 cred tors belt amul phlm circ 0 0 0
of the Colosuss 100 1 1 30 22 36 26 hp 41 60 1 cred tors belt amul phlm circ 0 0 0
of the Squid 100 1 1 40 30 36 26 hp 61 80 1 cred tors belt amul phlm circ 0 0 0
of the Whale 100 1 1 50 37 36 26 hp 81 100 1 cred tors belt amul phlm circ 0 0 0
of the Jackal 100 1 1 4 25 3 36 26 hp 1 5 shld pelt scha mcha lcha 0 0 0
of the Fox 100 1 1 11 50 8 36 26 hp 6 10 shld pelt scha mcha lcha 0 0 0
of the Wolf 100 1 1 27 75 20 36 26 hp 11 20 shld pelt scha mcha lcha 0 0 0
of the Tiger 100 1 1 43 35 36 26 hp 21 30 shld pelt scha mcha lcha 0 0 0
of the Mammoth 100 1 1 59 51 36 26 hp 31 40 1 cred shld pelt scha mcha lcha 0 0 0
of the Colosuss 100 1 1 75 67 36 26 hp 41 60 1 cred shld pelt scha mcha lcha 0 0 0
of the Jackal 100 1 1 8 40 6 36 26 hp 1 5 club hamm mace ring helm 0 0 0
of the Fox 100 1 1 17 70 13 36 26 hp 6 10 club hamm mace ring helm 0 0 0
of the Wolf 100 1 1 34 26 36 26 hp 11 20 club hamm mace ring helm 0 0 0
of the Tiger 100 1 1 51 43 36 26 hp 21 30 club hamm mace ring helm 0 0 0
of the Mammoth 100 1 1 68 60 36 26 hp 31 40 1 cred club hamm mace ring helm 0 0 0
of Life 100 1 1 1 25 1 48 26 hp 5 10 lcha scha mcha lcha 0 0 0
of Life 100 1 1 9 40 6 48 26 hp 11 15 lcha scha mcha lcha 0 0 0
of Life 100 1 1 19 55 14 48 26 hp 16 20 lcha scha mcha lcha 0 0 0
of Substinence 100 1 1 31 23 48 26 hp 21 25 lcha scha mcha lcha 0 0 0
of Substinence 100 1 1 45 37 48 26 hp 26 30 lcha scha mcha lcha 0 0 0
of Substinence 100 1 1 61 53 48 26 hp 31 35 lcha scha mcha lcha 0 0 0
of Vita 100 1 1 70 69 48 26 hp 36 40 lcha scha mcha lcha 0 0 0
of Vita 100 1 1 80 80 48 26 hp 41 45 lcha scha mcha lcha 0 0 0
of Vita 100 1 1 88 88 48 26 hp 46 50 lcha scha mcha lcha 0 0 0
of Life 100 1 1 1 35 9 48 26 hp 6 10 mcha scha mcha lcha 0 0 0
of Life 100 1 1 12 60 9 48 26 hp 11 15 mcha scha mcha lcha 0 0 0
of Substinence 100 1 1 26 19 48 26 hp 16 20 mcha scha mcha lcha 0 0 0
of Substinence 100 1 1 42 34 48 26 hp 21 25 mcha scha mcha lcha 0 0 0
of Vita 100 1 1 58 50 48 26 hp 26 30 mcha scha mcha lcha 0 0 0
of Vita 100 1 1 74 66 48 26 hp 31 35 mcha scha mcha lcha 0 0 0
of Life 100 1 1 1 60 14 48 26 hp 5 10 scha scha mcha lcha 0 0 0
of Substinence 100 1 1 23 17 48 26 hp 11 15 scha scha mcha lcha 0 0 0
of Vita 100 1 1 47 39 48 26 hp 16 20 scha scha mcha lcha 0 0 0
of Spirit 100 1 1 1 50 1 48 26 hp 3 8 jewl scha mcha lcha 0 0 0
of Hope 100 1 1 45 37 48 26 hp 9 20 jewl scha mcha lcha 0 0 0
of the Elephant 100 1 1 66 58 24 41 hp/lvl 4 mana/lvl 2 1 cred ring amul 0 0 0
of the Elephant 100 1 1 37 7 24 41 hp/lvl 4 mana/lvl 2 1 cred circ pelt 0 0 0
of the Kraken 100 1 1 20 1 12 41 hp/lvl 6 1 cred tors amul pelt phlm 0 0 0
of Memory 100 1 1 20 1 12 41 mana/lvl 6 1 cred circ amul pelt 0 0 0
of Regeneration 100 1 1 10 35 7 48 19 regen 3 5 scep belt ring amul circ 0 0 0
of Regeneration 100 1 1 40 30 48 19 regen 3 5 shld glov 0 0 0
of Regeneration 100 1 1 70 52 48 19 regen 3 5 tors weap boot scep 0 0 0
of Regrowth 100 1 1 17 12 48 19 regen 6 10 1 cred scep amul circ 0 0 0
of Regrowth 100 1 1 55 41 48 19 regen 6 9 1 cred belt ring 0 0 0
of Revivification 100 1 1 38 30 48 19 regen 11 15 1 cred scep amul circ 0 0 0
of Honor 100 1 1 47 35 48 19 regen 1 4 jewl 0 0 0
of Regeneration 100 1 1 1 9 1 36 19 regen 2 2 amul circ 0 0 0
of Vampiric Essence2 100 1 1 22 18 24 67 heal-kill 3 5 weap belt ring amul circ 0 0 0
of the Wight2 100 1 1 39 31 24 67 heal-kill 6 8 weap belt ring amul circ 0 0 0
of the Dragon's Spirit2 100 1 1 55 48 24 67 heal-kill 9 15 weap belt ring amul circ 0 0 0
of the Soul2 100 1 1 75 75 24 67 heal-kill 16 25 weap belt ring amul circ 0 0 0
of Pacing 100 1 1 12 50 8 36 35 move1 10 10 boot circ 0 0 0
of Haste 100 1 1 22 16 48 35 move2 20 20 boot circ 0 0 0
of Speed 100 1 1 37 29 48 35 move3 30 30 boot circ 0 0 0
of Traveling 100 1 1 65 57 48 35 move3 30 30 stamdrain 80 90 boot scha mcha lcha 0 0 0
of Acceleration 100 1 1 51 43 48 35 move3 40 40 boot scha mcha lcha 0 0 0
of Inertia 100 1 1 19 14 48 35 move3 7 7 lcha scha mcha lcha 0 0 0
of Inertia 100 1 1 24 18 48 35 move2 5 5 mcha scha mcha lcha 0 0 0
of Inertia 100 1 1 35 27 48 35 move1 3 3 scha scha mcha lcha 0 0 0
of Balance 100 1 1 5 3 48 18 balance1 10 10 armo scha mcha lcha glov 0 0 0
of Equilibrium 100 1 1 9 6 48 18 balance2 20 20 tors belt shld 0 0 0
of Stability 100 1 1 18 13 48 18 balance3 25 25 1 dyel tors belt 0 0 0
of Balance 100 1 1 1 1 48 18 balance3 12 12 lcha scha mcha lcha 0 0 0
of Balance 100 1 1 19 14 48 18 balance2 8 8 mcha scha mcha lcha 0 0 0
of Balance 100 1 1 37 29 48 18 balance1 5 5 1 dyel scha scha mcha lcha 0 0 0
of Truth 100 1 1 44 36 48 18 balance1 7 7 jewl scha mcha lcha 0 0 0
of Readiness 100 1 1 5 3 72 7 swing1 10 10 weap scha mcha lcha wand orb 0 0 0
of Alacrity 100 1 1 25 17 72 7 swing2 20 20 weap scha mcha lcha wand orb 0 0 0
of Swiftness 100 1 1 34 26 72 7 swing2 30 30 mele scha mcha lcha wand staf orb 0 0 0
of Quickness 100 1 1 46 38 60 7 swing3 40 40 1 dyel mele scha mcha lcha wand staf orb 0 0 0
of Alacrity 100 1 1 43 35 48 7 swing2 20 20 1 dyel glov scha mcha lcha 0 0 0
of Fervor 100 1 1 39 31 48 7 swing1 15 15 glov scha mcha lcha 0 0 0
of Readiness 100 1 1 20 15 24 7 swing1 10 10 glov scha mcha lcha 0 0 0
of Fervor 100 1 1 39 31 48 7 swing1 15 15 jewl scha mcha lcha 0 0 0
of Thorns 100 1 1 14 35 10 48 6 thorns 1 3 tors shld belt circ 0 0 0
of Spikes 100 1 1 21 60 15 48 6 thorns 4 6 1 oran tors shld belt circ 0 0 0
of Razors 100 1 1 34 80 26 48 6 thorns 7 9 1 oran tors shld circ belt 0 0 0
of Swords 100 1 1 47 39 48 6 thorns 10 20 1 oran tors shld circ belt 0 0 0
of Thorns 100 1 1 40 35 48 6 thorns/lvl 8 tors shld 0 0 0
of Thorns 100 1 1 67 62 48 6 thorns/lvl 12 tors shld 0 0 0
of Malice 100 1 1 37 40 29 48 6 thorns 1 5 jewl 0 0 0
of Thorns 100 1 1 1 13 1 48 6 thorns 1 1 tors belt shld 0 0 0
of Swords 100 1 1 55 45 36 6 thorns 21 40 1 oran tors shld circ belt 0 0 0
of Swords 100 1 1 65 55 24 6 thorns 41 50 1 oran tors shld circ belt 0 0 0
of Malice 100 1 1 60 48 48 6 thorns 8 15 jewl 0 0 0
of Light 100 1 1 1 5 1 48 25 light 1 1 att 10 10 ring amul rod armo 0 0 0
of Light 100 1 1 6 45 4 12 25 light 1 1 att 15 15 armo rod ring amul 0 0 0
of Radiance 100 1 1 15 65 11 12 25 light 3 3 att 30 30 rod armo ring amul 0 0 0
of the Sun 100 1 1 17 12 12 25 light 5 5 att% 5 5 rod armo amul ring 0 0 0
of Chance 100 1 1 12 50 9 48 22 mag% 5 12 boot glov ring amul circ 0 0 0
of Fortune 100 1 1 16 12 48 22 mag% 13 20 1 lgld boot glov amul circ ring 0 0 0
of Fortune 100 1 1 26 19 48 22 mag% 21 25 1 lgld boot glov amul circ ring 0 0 0
of Luck 100 1 1 36 31 48 22 mag% 26 35 1 lgld boot amul circ 0 0 0
of Luck 100 1 1 53 48 48 22 mag% 36 50 1 lgld amul circ 0 0 0
of Fortune 100 1 1 31 18 36 22 mag% 3 5 scha scha mcha lcha 0 0 0
of Good Luck 100 1 1 47 33 24 22 mag% 6 7 scha scha mcha lcha 0 0 0
of Prosperity 100 1 1 26 35 19 24 22 mag% 5 10 jewl scha mcha lcha 0 0 0
of Prosperity 100 1 1 50 47 24 22 mag% 11 15 jewl scha mcha lcha 0 0 0
of Prosperity 100 1 1 80 75 12 22 mag% 16 20 jewl scha mcha lcha 0 0 0
of Greed 100 1 1 1 1 48 21 gold% 25 40 ring amul circ 0 0 0
of Wealth 100 1 1 17 12 48 21 gold% 41 80 1 lgld boot glov belt amul circ 0 0 0
of Greed 100 1 1 1 40 1 48 21 gold% 10 20 lcha scha mcha lcha 0 0 0
of Greed 100 1 1 7 5 48 21 gold% 21 30 lcha scha mcha lcha 0 0 0
of Greed 100 1 1 19 14 48 21 gold% 31 40 lcha scha mcha lcha 0 0 0
of Greed 100 1 1 1 50 5 48 21 gold% 5 10 mcha scha mcha lcha 0 0 0
of Greed 100 1 1 20 15 48 21 gold% 11 22 mcha scha mcha lcha 0 0 0
of Greed 100 1 1 1 15 48 21 gold% 5 10 scha scha mcha lcha 0 0 0
of Avarice 100 1 1 1 1 48 21 gold% 10 30 jewl scha mcha lcha 0 0 0
of Simplicity 100 1 1 25 18 24 30 ease -30 -30 tors weap shld rod orb 0 0 0
of Ease 100 1 1 15 11 36 30 ease -20 -20 tors weap shld rod orb 0 0 0
of Freedom 100 1 1 1 1 36 30 ease -15 -15 jewl 0 0 0
of Self-Repair 100 1 1 3 40 1 36 37 rep-dur 3 weap armo shld thro miss 0 0 0
of Fast Repair 100 1 1 20 12 12 37 rep-dur 5 weap armo shld thro miss 0 0 0
of Ages 100 1 1 50 42 12 39 indestruct 1 1 weap armo shld thro miss 0 0 0
of Replenishing 100 1 1 5 3 72 39 rep-quant 5 thro scha mcha lcha 0 0 0
of Propogation 100 1 1 24 18 60 39 rep-quant 10 thro scha mcha lcha 0 0 0
of Piercing 100 1 1 25 18 24 4 ignore-ac 1 1 rod knif h2h 0 0 0
of Piercing 100 1 1 77 70 24 4 ignore-ac 1 1 weap scha mcha lcha 0 0 0
of Bashing 100 1 1 16 12 48 5 reduce-ac 5 10 blun miss wand staf orb 0 0 0
of Puncturing 100 1 1 6 4 48 5 reduce-ac 11 20 spea knif h2h miss 0 0 0
of Blocking 100 1 1 1 1 84 8 block 10 19 block2 15 15 shld scha mcha lcha 0 0 0
of Deflecting 100 1 1 11 8 76 8 block 20 30 block2 30 30 shld scha mcha lcha 0 0 0
of the Apprentice 100 1 1 5 3 72 9 cast1 10 10 rod ring amul orb circ 0 0 0
of the Magus 100 1 1 29 21 60 9 cast3 20 20 rod orb circ scep 0 0 0
of Vileness 100 1 1 9 6 36 20 noheal 1 1 weap rod orb 0 0 0
of Vileness 100 1 1 44 37 36 20 noheal 1 1 glov belt 0 0 0
of the Bear 100 1 1 8 6 36 24 knock 1 1 weap 0 0 0
of Bartering1 100 1 1 13 9 24 63 cheap 1 3 weap ring amul 0 0 0
of Haggling1 100 1 1 33 28 24 63 cheap 4 5 weap ring amul 0 0 0
of Charming1 100 1 1 57 45 24 63 cheap 6 7 weap ring amul 0 0 0
Sapping1 100 1 1 16 13 24 64 slow 5 10 weap glov 0 0 0
Stunning1 100 1 1 32 27 24 64 slow 11 15 weap glov 0 0 0
Stunning1 100 1 1 46 41 24 64 slow 16 20 weap glov 0 0 0
Paralysis1 100 1 1 62 56 24 64 slow 21 25 weap scha mcha lcha 0 0 0
of Blindness1 100 1 1 23 20 12 65 stupidity 1 1 weap scha mcha lcha 0 0 0
of Blindness1 100 1 1 44 38 12 65 stupidity 2 2 weap scha mcha lcha 0 0 0
of Blindness1 100 1 1 61 57 12 65 stupidity 3 3 weap scha mcha lcha 0 0 0
of Reanimation1 100 1 1 51 47 12 66 reanimate 5 3 5 weap glov amul 0 0 0
of Inner Sight 100 1 1 19 19 ama 1 1 77 gethit-skill 8 4 6 amul amaz circ glov 0 0 0
of Slow Missiles 100 1 1 12 34 12 ama 12 1 77 gethit-skill 17 5 1 amaz glov amul 0 0 0
of Slow Missiles 100 1 1 34 65 33 ama 12 1 77 gethit-skill 17 8 5 amaz glov amul 0 0 0
of Slow Missiles 100 1 1 65 33 ama 12 1 77 gethit-skill 17 10 8 amaz glov amul 0 0 0
of Freezing Arrows 100 1 1 30 65 33 ama 30 1 77 gethit-skill 31 25 3 miss abow glov 0 0 0
of Freezing Arrows 100 1 1 65 67 ama 30 1 77 gethit-skill 31 100 5 abow miss 0 0 0
of Fire Bolts 100 1 1 1 11 1 sor 1 1 77 gethit-skill 36 3 1 weap ring circ 0 0 0
of Fire Bolts 100 1 1 11 22 10 sor 1 1 77 gethit-skill 36 5 4 weap ring circ 0 0 0
of Fire Bolts 100 1 1 22 36 20 sor 1 1 77 gethit-skill 36 7 7 weap ring circ 0 0 0
of Charged Bolts 100 1 1 1 11 1 sor 1 1 77 gethit-skill 38 3 1 weap ring circ 0 0 0
of Charged Bolts 100 1 1 11 22 10 sor 1 1 77 gethit-skill 38 5 4 weap ring circ 0 0 0
of Charged Bolts 100 1 1 22 36 20 sor 1 1 77 gethit-skill 38 7 7 weap ring circ 0 0 0
of Ice Bolts 100 1 1 1 11 1 sor 1 1 77 gethit-skill 39 3 1 weap ring circ 0 0 0
of Ice Bolts 100 1 1 11 22 10 sor 1 1 77 gethit-skill 39 5 4 weap ring circ 0 0 0
of Ice Bolts 100 1 1 22 36 20 sor 1 1 77 gethit-skill 39 7 7 weap ring circ 0 0 0
of Frozen Armor 100 1 1 1 30 1 sor 1 1 77 gethit-skill 40 8 1 orb tors 0 0 0
of Frozen Armor 100 1 1 30 35 sor 1 1 77 gethit-skill 40 13 4 orb tors 0 0 0
of Static Field 100 1 1 6 40 6 sor 6 1 77 gethit-skill 42 3 4 weap ring circ 0 0 0
of Static Field 100 1 1 40 45 sor 6 1 77 gethit-skill 42 7 9 weap ring circ 0 0 0
of Frost Novas 100 1 1 6 24 6 sor 6 1 77 gethit-skill 44 6 3 weap amul circ 0 0 0
of Frost Novas 100 1 1 24 23 sor 6 1 77 gethit-skill 44 8 7 weap amul circ 0 0 0
of Ice Blasts 100 1 1 6 24 6 sor 6 1 77 gethit-skill 45 4 2 weap ring circ 0 0 0
of Ice Blasts 100 1 1 24 24 sor 6 1 77 gethit-skill 45 9 8 weap ring circ 0 0 0
of Blazing 100 1 1 18 34 18 sor 12 1 77 gethit-skill 46 20 4 staf orb boots 0 0 0
of Fire Balls 100 1 1 18 32 18 sor 12 1 77 gethit-skill 47 5 5 weap scha mcha lcha 0 0 0
of Fire Balls 100 1 1 32 60 33 sor 12 1 77 gethit-skill 47 7 12 weap scha mcha lcha 0 0 0
of Fire Balls 100 1 1 60 63 sor 12 1 77 gethit-skill 47 8 20 weap scha mcha lcha 0 0 0
of Novas 100 1 1 28 60 32 sor 12 1 77 gethit-skill 48 6 9 weap shld 0 0 0
of Novas 100 1 1 60 61 sor 12 1 77 gethit-skill 48 12 15 weap shld 0 0 0
of Lightning 100 1 1 24 48 18 sor 12 1 77 gethit-skill 49 8 7 weap scha mcha lcha 0 0 0
of Lightning 100 1 1 48 40 48 sor 12 1 77 gethit-skill 49 8 17 weap scha mcha lcha 0 0 0
of Shiver Armor 100 1 1 20 20 sor 12 1 77 gethit-skill 50 12 9 weap tors 0 0 0
of Fire Walls 100 1 1 24 45 24 sor 18 1 77 gethit-skill 51 4 7 weap scha mcha lcha 0 0 0
of Fire Walls 100 1 1 45 45 sor 18 1 77 gethit-skill 51 7 16 weap scha mcha lcha 0 0 0
of Enchantment 100 1 1 18 36 18 sor 18 1 77 gethit-skill 52 8 11 weap scha mcha lcha 0 0 0
of Enchantment 100 1 1 36 36 sor 18 1 77 gethit-skill 52 11 19 weap scha mcha lcha 0 0 0
of Chain Lightning 100 1 1 24 46 24 sor 18 1 77 gethit-skill 53 6 6 weap scha mcha lcha 0 0 0
of Chain Lightning 100 1 1 46 45 sor 18 1 77 gethit-skill 53 9 17 weap scha mcha lcha 0 0 0
of Teleportation 100 1 1 30 30 sor 18 1 77 gethit-skill 54 10 1 weap amul 0 0 0
of Glacial Spikes 100 1 1 18 40 18 sor 18 1 77 gethit-skill 55 6 9 weap scha mcha lcha 0 0 0
of Glacial Spikes 100 1 1 40 40 sor 18 1 77 gethit-skill 55 9 16 weap scha mcha lcha 0 0 0
of Meteors 100 1 1 32 62 32 sor 24 1 77 gethit-skill 56 4 7 weap scha mcha lcha 0 0 0
of Meteors 100 1 1 62 65 sor 24 1 77 gethit-skill 56 8 18 weap scha mcha lcha 0 0 0
of Thunder Storm 100 1 1 24 55 25 sor 24 1 77 gethit-skill 57 12 9 weap scha mcha lcha 0 0 0
of Energy Shield 100 1 1 24 45 25 sor 24 1 77 gethit-skill 58 7 6 weap helm 0 0 0
of Energy Shield 100 1 1 45 45 sor 24 1 77 gethit-skill 58 10 13 helm weap 0 0 0
of Blizzards 100 1 1 29 57 29 sor 24 1 77 gethit-skill 59 9 6 weap scha mcha lcha 0 0 0
of Blizzards 100 1 1 57 60 sor 24 1 77 gethit-skill 59 14 17 weap scha mcha lcha 0 0 0
of Chilling Armor 100 1 1 36 38 sor 24 1 77 gethit-skill 60 15 12 weap tors 0 0 0
of Hydras 100 1 1 34 80 34 sor 30 1 77 gethit-skill 62 6 3 weap scha mcha lcha 0 0 0
of Hydras 100 1 1 80 85 sor 30 1 77 gethit-skill 62 12 19 weap scha mcha lcha 0 0 0
of Frozen Orbs 100 1 1 30 80 33 sor 30 1 77 gethit-skill 64 4 3 weap scha mcha lcha 0 0 0
of Frozen Orbs 100 1 1 80 85 sor 30 1 77 gethit-skill 64 4 22 weap scha mcha lcha 0 0 0
of Amplify Damage 100 1 1 1 18 1 nec 1 1 77 gethit-skill 66 4 1 weap head scha mcha lcha 0 0 0
of Amplify Damage 100 1 1 18 20 nec 1 1 77 gethit-skill 66 8 12 weap head scha mcha lcha 0 0 0
of Teeth 100 1 1 1 18 1 nec 1 1 77 gethit-skill 67 17 1 weap head scha mcha lcha 0 0 0
of Teeth 100 1 1 18 18 nec 1 1 77 gethit-skill 67 8 20 weap head scha mcha lcha 0 0 0
of Bone Armor 100 1 1 1 30 1 nec 1 1 77 gethit-skill 68 5 1 weap tors head scha mcha lcha 0 0 0
of Bone Armor 100 1 1 30 35 nec 1 1 77 gethit-skill 68 9 15 tors weap head scha mcha lcha 0 0 0
of Dim Vision 100 1 1 6 24 6 nec 6 1 77 gethit-skill 71 5 1 ring circ head weap scha mcha lcha 0 0 0
of Dim Vision 100 1 1 24 20 nec 6 1 77 gethit-skill 71 7 10 ring circ head weap scha mcha lcha 0 0 0
of Weaken 100 1 1 6 24 6 nec 6 1 77 gethit-skill 72 5 1 weap glov head scha mcha lcha 0 0 0
of Weaken 100 1 1 24 24 nec 6 1 77 gethit-skill 72 8 12 glov weap head scha mcha lcha 0 0 0
of Corpse Explosions 100 1 1 6 40 6 nec 6 1 77 gethit-skill 74 4 1 weap head scha mcha lcha 0 0 0
of Corpse Explosions 100 1 1 40 45 nec 6 1 77 gethit-skill 74 7 18 weap head scha mcha lcha 0 0 0
of Iron Maiden 100 1 1 12 30 12 nec 12 1 77 gethit-skill 76 3 1 shld weap head scha mcha lcha 0 0 0
of Iron Maiden 100 1 1 30 30 nec 12 1 77 gethit-skill 76 6 10 shld weap head scha mcha lcha 0 0 0
of Terror 100 1 1 12 30 12 nec 12 1 77 gethit-skill 77 4 1 shld weap head scha mcha lcha 0 0 0
of Terror 100 1 1 30 30 nec 12 1 77 gethit-skill 77 9 12 shld weap head scha mcha lcha 0 0 0
of Bone Walls 100 1 1 12 35 12 nec 12 1 77 gethit-skill 78 5 1 weap head scha mcha lcha 0 0 0
of Bone Walls 100 1 1 35 37 nec 12 1 77 gethit-skill 78 4 25 weap head scha mcha lcha 0 0 0
of Confusion 100 1 1 18 36 18 nec 18 1 77 gethit-skill 81 35 1 ring circ head weap 0 0 0
of Confusion 100 1 1 36 35 nec 18 1 77 gethit-skill 81 35 5 ring circ head weap 0 0 0
of Life Tap 100 1 1 18 40 18 nec 18 1 77 gethit-skill 82 12 1 weap ring head 0 0 0
of Life Tap 100 1 1 40 41 nec 18 1 77 gethit-skill 82 19 5 weap ring head 0 0 0
of Poison Explosion 100 1 1 18 36 18 nec 18 1 77 gethit-skill 83 4 1 weap head scha mcha lcha 0 0 0
of Poison Explosion 100 1 1 36 36 nec 18 1 77 gethit-skill 83 5 10 weap head scha mcha lcha 0 0 0
of Bone Spears 100 1 1 18 55 18 nec 18 1 77 gethit-skill 84 7 1 weap head scha mcha lcha 0 0 0
of Bone Spears 100 1 1 55 55 nec 18 1 77 gethit-skill 84 11 20 weap head scha mcha lcha 0 0 0
of Attraction 100 1 1 24 48 25 nec 24 1 77 gethit-skill 86 5 2 ring amul head circ weap 0 0 0
of Attraction 100 1 1 48 77 44 nec 24 1 77 gethit-skill 86 7 16 ring amul circ head weap 0 0 0
of Decrepification 100 1 1 24 70 25 nec 24 1 77 gethit-skill 87 11 2 weap shld head scha mcha lcha 0 0 0
of Decrepification 100 1 1 70 75 nec 24 1 77 gethit-skill 87 10 15 shld weap head scha mcha lcha 0 0 0
of Bone Imprisonment 100 1 1 24 46 25 nec 24 1 77 gethit-skill 88 8 2 weap ring head scha mcha lcha 0 0 0
of Bone Imprisonment 100 1 1 46 44 nec 24 1 77 gethit-skill 88 8 14 weap ring head scha mcha lcha 0 0 0
of Lower Resistance 100 1 1 30 77 33 nec 30 1 77 gethit-skill 91 6 3 weap head scha mcha lcha 0 0 0
of Lower Resistance 100 1 1 77 80 nec 30 1 77 gethit-skill 91 6 18 weap head scha mcha lcha 0 0 0
of Poison Novas 100 1 1 30 48 33 nec 30 1 77 gethit-skill 92 5 3 weap glov head scha mcha lcha 0 0 0
of Poison Novas 100 1 1 48 48 nec 30 1 77 gethit-skill 92 7 14 glov weap glov scha mcha lcha 0 0 0
of Bone Spirits 100 1 1 30 48 33 nec 30 1 77 gethit-skill 93 4 3 amul circ head weap 0 0 0
of Bone Spirits 100 1 1 48 48 nec 30 1 77 gethit-skill 93 6 23 amul circ head weap 0 0 0
of Revivification 100 1 1 30 80 33 nec 30 1 77 gethit-skill 95 4 3 weap head scha mcha lcha 0 0 0
of Revivification 100 1 1 80 85 nec 30 1 77 gethit-skill 95 7 10 weap head scha mcha lcha 0 0 0
of Holy Bolts 100 1 1 6 24 6 pal 6 1 77 gethit-skill 101 12 1 mele ashd amul circ 0 0 0
of Holy Bolts 100 1 1 24 50 24 pal 6 1 77 gethit-skill 101 12 16 amul circ mele circ 0 0 0
of Blessed Hammers 100 1 1 18 50 18 pal 18 1 77 gethit-skill 112 5 1 mele ashd scha mcha lcha 0 0 0
of Blessed Hammers 100 1 1 50 45 pal 18 1 77 gethit-skill 112 9 20 mele ashd scha mcha lcha 0 0 0
of Fist of the Heavens 100 1 1 30 60 33 pal 30 1 77 gethit-skill 121 4 3 mele ashd glov 0 0 0
of Fist of the Heavens 100 1 1 60 60 pal 30 1 77 gethit-skill 121 7 14 glov mele glov 0 0 0
of Howling 100 1 1 1 18 1 bar 1 1 77 gethit-skill 130 7 1 phlm mele scha mcha lcha 0 0 0
of Howling 100 1 1 18 55 18 bar 1 1 77 gethit-skill 130 8 12 phlm mele scha mcha lcha 0 0 0
of Taunting 100 1 1 6 24 6 bar 6 1 77 gethit-skill 137 4 1 phlm mele scha mcha lcha 0 0 0
of Taunting 100 1 1 24 51 24 bar 6 1 77 gethit-skill 137 8 13 phlm mele scha mcha lcha 0 0 0
of Shouting 100 1 1 6 40 6 bar 6 1 77 gethit-skill 138 6 3 phlm mele scha mcha lcha 0 0 0
of Shouting 100 1 1 40 45 bar 6 1 77 gethit-skill 138 8 17 phlm mele scha mcha lcha 0 0 0
of Battle Cry 100 1 1 18 36 18 bar 18 1 77 gethit-skill 146 20 1 phlm mele scha mcha lcha 0 0 0
of Battle Cry 100 1 1 36 65 36 bar 18 1 77 gethit-skill 146 15 18 phlm mele scha mcha lcha 0 0 0
of Battle Orders 100 1 1 24 55 25 bar 24 1 77 gethit-skill 149 5 2 phlm mele scha mcha lcha 0 0 0
of Battle Orders 100 1 1 55 55 bar 24 1 77 gethit-skill 149 7 22 phlm mele scha mcha lcha 0 0 0
of Grim Ward 100 1 1 24 50 25 bar 24 1 77 gethit-skill 150 4 2 phlm mele amul 0 0 0
of Grim Ward 100 1 1 50 55 bar 24 1 77 gethit-skill 150 8 15 amul phlm mele 0 0 0
of War Cry 100 1 1 30 55 33 bar 30 1 77 gethit-skill 154 7 3 phlm mele scha mcha lcha 0 0 0
of War Cry 100 1 1 55 63 bar 30 1 77 gethit-skill 154 10 13 phlm mele scha mcha lcha 0 0 0
of Battle Command 100 1 1 30 48 33 bar 30 1 77 gethit-skill 155 4 3 phlm mele scha mcha lcha 0 0 0
of Battle Command 100 1 1 48 53 bar 30 1 77 gethit-skill 155 8 10 phlm mele scha mcha lcha 0 0 0
of Firestorms 100 1 1 1 18 1 dru 1 1 77 gethit-skill 225 33 1 mele scha mcha lcha 0 0 0
of Firestorms 100 1 1 18 56 18 dru 1 1 77 gethit-skill 225 33 9 mele scha mcha lcha 0 0 0
of Molten Boulders 100 1 1 6 24 6 dru 6 1 77 gethit-skill 229 4 1 mele scha mcha lcha 0 0 0
of Molten Boulders 100 1 1 24 53 21 dru 6 1 77 gethit-skill 229 7 9 mele scha mcha lcha 0 0 0
of Eruption 100 1 1 12 36 12 dru 12 1 77 gethit-skill 234 5 1 mele scha mcha lcha 0 0 0
of Eruption 100 1 1 36 68 36 dru 12 1 77 gethit-skill 234 8 15 mele scha mcha lcha 0 0 0
of Cyclone Armor 100 1 1 12 35 12 dru 12 1 77 gethit-skill 235 6 1 mele tors scha mcha lcha 0 0 0
of Cyclone Armor 100 1 1 35 37 dru 12 1 77 gethit-skill 235 9 14 tors mele scha mcha lcha 0 0 0
of Twister 100 1 1 18 36 18 dru 18 1 77 gethit-skill 240 4 1 mele amul circ 0 0 0
of Twister 100 1 1 36 38 dru 18 1 77 gethit-skill 240 8 17 amul circ mele 0 0 0
of Volcano 100 1 1 24 42 25 dru 24 1 77 gethit-skill 244 4 2 mele scha mcha lcha 0 0 0
of Volcano 100 1 1 42 44 dru 24 1 77 gethit-skill 244 7 15 mele scha mcha lcha 0 0 0
of Tornado 100 1 1 24 49 25 dru 24 1 77 gethit-skill 245 6 2 mele amul circ scha mcha lcha 0 0 0
of Tornado 100 1 1 49 50 dru 24 1 77 gethit-skill 245 7 16 amul circ mele scha mcha lcha 0 0 0
of Armageddon 100 1 1 30 60 33 dru 30 1 77 gethit-skill 249 4 4 mele scha mcha lcha 0 0 0
of Armageddon 100 1 1 60 70 dru 30 1 77 gethit-skill 249 6 19 mele scha mcha lcha 0 0 0
of Hurricane 100 1 1 30 65 33 dru 30 1 77 gethit-skill 250 11 3 mele amul circ 0 0 0
of Hurricane 100 1 1 65 65 dru 30 1 77 gethit-skill 250 8 21 amul circ mele 0 0 0
of Burst of Speed2 100 1 1 6 40 6 ass 6 1 77 gethit-skill 258 5 2 boot mele scha mcha lcha 0 0 0
of Burst of Speed2 100 1 1 40 45 ass 6 1 77 gethit-skill 258 8 8 boot mele scha mcha lcha 0 0 0
of Cloak of Shadows2 100 1 1 18 36 18 ass 18 1 77 gethit-skill 264 5 1 amul mele scha mcha lcha 0 0 0
of Cloak of Shadows2 100 1 1 36 38 ass 18 1 77 gethit-skill 264 9 13 amul mele scha mcha lcha 0 0 0
of Fading2 100 1 1 18 50 18 ass 18 1 77 gethit-skill 267 4 1 tors amul mele 0 0 0
of Fading2 100 1 1 50 53 ass 18 1 77 gethit-skill 267 8 12 tors amul mele 0 0 0
of Mind Blasting2 100 1 1 24 48 25 ass 24 1 77 gethit-skill 273 3 2 helm mele scha mcha lcha 0 0 0
of Mind Blasting2 100 1 1 48 48 ass 24 1 77 gethit-skill 273 7 18 helm mele scha mcha lcha 0 0 0
of Blade Shield2 100 1 1 30 48 33 ass 30 1 77 gethit-skill 277 6 3 tors mele scha mcha lcha 0 0 0
of Blade Shield2 100 1 1 48 50 ass 30 1 77 gethit-skill 277 9 17 tors mele scha mcha lcha 0 0 0
of Venom2 100 1 1 30 57 33 ass 30 1 77 gethit-skill 278 12 3 glov mele scha mcha lcha 0 0 0
of Venom2 100 1 1 57 61 ass 30 1 77 gethit-skill 278 8 19 glov mele scha mcha lcha 0 0 0
of Inner Sight 100 1 1 1 46 1 ama 1 1 78 hit-skill 8 3 3 amul amaz circ glov 0 0 0
of Inner Sight 100 1 1 46 46 ama 1 1 78 hit-skill 8 10 11 amul amaz circ glov 0 0 0
of Slow Missiles 100 1 1 34 33 ama 12 1 78 hit-skill 17 4 2 amaz glov amul 0 0 0
of Lightning Fury 100 1 1 30 70 33 ama 30 1 78 hit-skill 35 5 7 jave scha mcha lcha 0 0 0
of Lightning Fury 100 1 1 70 71 ama 30 1 78 hit-skill 35 9 15 jave scha mcha lcha 0 0 0
of Fire Bolts 100 1 1 1 11 1 sor 1 1 78 hit-skill 36 5 2 weap ring circ 0 0 0
of Fire Bolts 100 1 1 11 44 11 sor 1 1 78 hit-skill 36 8 9 weap ring circ 0 0 0
of Charged Bolts 100 1 1 1 11 1 sor 1 1 78 hit-skill 38 5 2 weap ring circ 0 0 0
of Charged Bolts 100 1 1 11 44 11 sor 1 1 78 hit-skill 38 8 9 weap ring circ 0 0 0
of Ice Bolts 100 1 1 1 11 1 sor 1 1 78 hit-skill 39 5 2 weap ring circ 0 0 0
of Ice Bolts 100 1 1 11 44 11 sor 1 1 78 hit-skill 39 8 9 weap ring circ 0 0 0
of Static Field 100 1 1 18 40 18 sor 6 1 78 hit-skill 42 3 4 weap ring circ 0 0 0
of Static Field 100 1 1 40 41 sor 6 1 78 hit-skill 42 6 9 weap ring circ 0 0 0
of Frost Novas 100 1 1 6 42 6 sor 6 1 78 hit-skill 44 6 3 weap amul circ 0 0 0
of Frost Novas 100 1 1 42 42 sor 6 1 78 hit-skill 44 6 13 weap amul circ 0 0 0
of Ice Blasts 100 1 1 6 32 6 sor 6 1 78 hit-skill 45 4 2 weap ring circ 0 0 0
of Ice Blasts 100 1 1 32 32 sor 6 1 78 hit-skill 45 7 12 weap ring circ 0 0 0
of Fire Balls 100 1 1 18 32 18 sor 12 1 78 hit-skill 47 5 5 weap scha mcha lcha 0 0 0
of Fire Balls 100 1 1 32 32 sor 12 1 78 hit-skill 47 5 19 weap scha mcha lcha 0 0 0
of Novas 100 1 1 28 60 32 sor 12 1 78 hit-skill 48 6 9 weap shld 0 0 0
of Novas 100 1 1 60 60 sor 12 1 78 hit-skill 48 6 21 weap shld 0 0 0
of Lightning 100 1 1 48 48 sor 12 1 78 hit-skill 49 8 14 weap scha mcha lcha 0 0 0
of Fire Walls 100 1 1 24 45 24 sor 18 1 78 hit-skill 51 4 7 weap scha mcha lcha 0 0 0
of Fire Walls 100 1 1 45 45 sor 18 1 78 hit-skill 51 6 14 weap scha mcha lcha 0 0 0
of Chain Lightning 100 1 1 46 46 sor 18 1 78 hit-skill 53 6 16 weap scha mcha lcha 0 0 0
of Glacial Spikes 100 1 1 18 40 18 sor 18 1 78 hit-skill 55 6 2 weap scha mcha lcha 0 0 0
of Glacial Spikes 100 1 1 40 40 sor 18 1 78 hit-skill 55 7 11 weap scha mcha lcha 0 0 0
of Meteors 100 1 1 32 62 32 sor 24 1 78 hit-skill 56 4 7 weap scha mcha lcha 0 0 0
of Meteors 100 1 1 62 62 sor 24 1 78 hit-skill 56 5 19 weap scha mcha lcha 0 0 0
of Blizzards 100 1 1 29 57 29 sor 24 1 78 hit-skill 59 9 6 weap scha mcha lcha 0 0 0
of Blizzards 100 1 1 57 57 sor 24 1 78 hit-skill 59 5 18 weap scha mcha lcha 0 0 0
of Hydras 100 1 1 34 80 34 sor 30 1 78 hit-skill 62 3 3 weap scha mcha lcha 0 0 0
of Hydras 100 1 1 80 80 sor 30 1 78 hit-skill 62 2 21 weap scha mcha lcha 0 0 0
of Frozen Orbs 100 1 1 48 48 sor 30 1 78 hit-skill 64 7 12 weap scha mcha lcha 0 0 0
of Amplify Damage 100 1 1 1 35 1 nec 1 1 78 hit-skill 66 4 2 weap head scha mcha lcha 0 0 0
of Amplify Damage 100 1 1 35 35 nec 1 1 78 hit-skill 66 5 9 weap head scha mcha lcha 0 0 0
of Teeth 100 1 1 1 18 4 nec 1 1 78 hit-skill 67 10 4 weap head scha mcha lcha 0 0 0
of Dim Vision 100 1 1 24 24 nec 6 1 78 hit-skill 71 5 9 ring circ head weap 0 0 0
of Weaken 100 1 1 24 24 nec 6 1 78 hit-skill 72 5 10 weap glov head scha mcha lcha 0 0 0
of Corpse Explosions 100 1 1 30 30 nec 6 1 78 hit-skill 74 4 11 weap head scha mcha lcha 0 0 0
of Iron Maiden 100 1 1 30 30 nec 12 1 78 hit-skill 76 5 8 shld weap head scha mcha lcha 0 0 0
of Terror 100 1 1 24 24 nec 12 1 78 hit-skill 77 4 7 shld weap head scha mcha lcha 0 0 0
of Confusion 100 1 1 22 22 nec 18 1 78 hit-skill 81 7 5 ring circ head weap 0 0 0
of Life Tap 100 1 1 32 32 nec 18 1 78 hit-skill 82 8 7 weap ring head scha mcha lcha 0 0 0
of Poison Explosion 100 1 1 27 27 nec 18 1 78 hit-skill 83 4 9 weap head scha mcha lcha 0 0 0
of Bone Spears 100 1 1 30 30 nec 18 1 78 hit-skill 84 4 11 weap head scha mcha lcha 0 0 0
of Decrepification 100 1 1 38 38 nec 24 1 78 hit-skill 87 6 9 weap shld head scha mcha lcha 0 0 0
of Bone Imprisonment 100 1 1 30 30 nec 24 1 78 hit-skill 88 5 5 weap ring head scha mcha lcha 0 0 0
of Lower Resistance 100 1 1 45 45 nec 30 1 78 hit-skill 91 6 13 weap head scha mcha lcha 0 0 0
of Poison Novas 100 1 1 55 55 nec 30 1 78 hit-skill 92 5 22 weap glov head 0 0 0
of Bone Spirits 100 1 1 48 48 nec 30 1 78 hit-skill 93 4 18 amul circ head weap 0 0 0
of Revivification 100 1 1 51 51 nec 30 1 78 hit-skill 95 3 8 weap head 0 0 0
of Firestorms 100 1 1 1 18 1 dru 1 1 78 hit-skill 225 12 4 mele scha mcha lcha 0 0 0
of Firestorms 100 1 1 18 36 18 dru 1 1 78 hit-skill 225 6 12 mele scha mcha lcha 0 0 0
of Molten Boulders 100 1 1 18 18 dru 6 1 78 hit-skill 229 4 9 mele scha mcha lcha 0 0 0
of Eruption 100 1 1 36 36 dru 12 1 78 hit-skill 234 5 21 mele scha mcha lcha 0 0 0
of Twister 100 1 1 24 48 24 dru 18 1 78 hit-skill 240 7 7 mele amul circ 0 0 0
of Volcano 100 1 1 48 48 dru 24 1 78 hit-skill 244 3 22 mele scha mcha lcha 0 0 0
of Tornado 100 1 1 36 36 dru 24 1 78 hit-skill 245 7 12 mele amul circ 0 0 0
of Armageddon 100 1 1 60 60 dru 30 1 78 hit-skill 249 3 24 mele scha mcha lcha 0 0 0
of Cloak of Shadows2 100 1 1 18 18 ass 18 1 78 hit-skill 264 5 3 amul mele 0 0 0
of Mind Blasting2 100 1 1 30 30 ass 24 1 78 hit-skill 273 3 7 helm mele 0 0 0
of Inner Sight 100 1 1 6 6 ama 1 4 79 levelup-skill Inner Sight 100 17 amul amaz circ glov 0 0 0
of Enchantment 100 1 1 18 18 sor 18 4 79 levelup-skill Enchant 100 27 weap scha mcha lcha 0 0 0
of Thunder Storm 100 1 1 24 24 sor 24 4 79 levelup-skill Thunder Storm 100 24 weap scha mcha lcha 0 0 0
of Chilling Armor 100 1 1 24 24 sor 24 4 79 levelup-skill Chilling Armor 100 17 weap tors 0 0 0
of Bone Armor 100 1 1 20 20 nec 1 4 79 levelup-skill Bone Armor 100 20 weap tors head 0 0 0
of Shouting 100 1 1 6 6 bar 6 4 79 levelup-skill Shout 100 9 phlm mele 0 0 0
of Shouting 100 1 1 36 36 bar 6 4 79 levelup-skill Shout 100 20 phlm mele 0 0 0
of Battle Orders 100 1 1 30 30 bar 24 4 79 levelup-skill Battle Orders 100 7 phlm mele 0 0 0
of Battle Orders 100 1 1 55 55 bar 24 4 79 levelup-skill Battle Orders 100 39 phlm mele 0 0 0
of Battle Command 100 1 1 39 39 bar 30 4 79 levelup-skill Battle Command 100 28 phlm mele 0 0 0
of Cyclone Armor 100 1 1 24 24 dru 12 4 79 levelup-skill Cyclone Armor 100 24 mele tors 0 0 0
of Hurricane 100 1 1 55 55 dru 30 4 79 levelup-skill Hurricane 100 22 mele amul circ 0 0 0
of Burst of Speed2 100 1 1 6 6 ass 6 4 79 levelup-skill Quickness 100 4 boot mele 0 0 0
of Burst of Speed2 100 1 1 36 36 ass 6 4 79 levelup-skill Quickness 100 30 boot mele 0 0 0
of Fading2 100 1 1 30 30 ass 18 4 79 levelup-skill Fade 100 14 tors amul mele 0 0 0
of Frost Novas 100 1 1 36 36 sor 6 2 79 death-skill Frost Nova 100 48 weap amul circ 0 0 0
of Novas 100 1 1 36 36 sor 12 2 79 death-skill Nova 100 48 weap shld 0 0 0
of Chain Lightning 100 1 1 36 36 sor 18 2 79 death-skill Chain Lightning 100 48 weap scha mcha lcha 0 0 0
of Meteors 100 1 1 42 42 sor 24 2 79 death-skill Meteor 100 48 weap scha mcha lcha 0 0 0
of Blizzards 100 1 1 42 42 sor 24 2 79 death-skill Blizzard 100 48 weap scha mcha lcha 0 0 0
of Frozen Orbs 100 1 1 48 48 sor 30 2 79 death-skill Frozen Orb 100 48 weap scha mcha lcha 0 0 0
of Corpse Explosions 100 1 1 36 36 nec 6 2 79 death-skill Corpse Explosion 100 36 weap head 0 0 0
of Poison Novas 100 1 1 48 48 nec 30 2 79 death-skill Poison Nova 100 48 weap glov head 0 0 0
of Armageddon 100 1 1 48 48 dru 30 2 79 death-skill Armageddon 100 48 mele scha mcha lcha 0 0 0

File diff suppressed because it is too large Load Diff

View File

@ -1,44 +0,0 @@
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

View File

@ -1,685 +0,0 @@
Missile Id pCltDoFunc pCltHitFunc pSrvDoFunc pSrvHitFunc pSrvDmgFunc SrvCalc1 *srv calc 1 desc Param1 *param1 desc Param2 *param2 desc Param3 *param3 desc Param4 *param4 desc Param5 *param5 desc CltCalc1 *client calc 1 desc CltParam1 *client param1 desc CltParam2 *client param2 desc CltParam3 *client param3 desc CltParam4 *client param4 desc CltParam5 *client param5 desc SHitCalc1 *server hit calc 1 desc sHitPar1 *server hit param1 desc sHitPar2 *server hit param2 desc sHitPar3 *server hit param3 desc CHitCalc1 *client hit calc1 desc cHitPar1 *client hit param1 desc cHitPar2 *client hit param2 desc cHitPar3 *client hit param3 desc DmgCalc1 *damage calc 1 dParam1 *damage param1 desc dParam2 *damage param2 desc Vel MaxVel VelLev Accel Range LevRange Light Flicker Red Green Blue InitSteps Activate LoopAnim CelFile animrate AnimLen AnimSpeed RandStart SubLoop SubStart SubStop CollideType CollideKill CollideFriend LastCollide Collision ClientCol ClientSend NextHit NextDelay xoffset yoffset zoffset Size SrcTown CltSrcTown CanDestroy ToHit AlwaysExplode Explosion Town NoUniqueMod NoMultiShot Holy CanSlow ReturnFire GetHit SoftHit KnockBack Trans Qty Pierce SpecialSetup MissileSkill Skill ResultFlags HitFlags HitShift ApplyMastery SrcDamage Half2HSrc SrcMissDmg MinDamage MinLevDam1 MinLevDam2 MinLevDam3 MinLevDam4 MinLevDam5 MaxDamage MaxLevDam1 MaxLevDam2 MaxLevDam3 MaxLevDam4 MaxLevDam5 DmgSymPerCalc EType EMin MinELev1 MinELev2 MinELev3 MinELev4 MinELev5 Emax MaxELev1 MaxELev2 MaxELev3 MaxELev4 MaxELev5 EDmgSymPerCalc ELen ELevLen1 ELevLen2 ELevLen3 HitClass NumDirections LocalBlood DamageRate TravelSound HitSound ProgSound ProgOverlay ExplosionMissile SubMissile1 SubMissile2 SubMissile3 HitSubMissile1 HitSubMissile2 HitSubMissile3 HitSubMissile4 CltSubMissile1 CltSubMissile2 CltSubMissile3 CltHitSubMissile1 CltHitSubMissile2 CltHitSubMissile3 CltHitSubMissile4 EOL
arrow 0 1 1 24 24 40 255 255 255 1 0 0 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
javelin 1 1 1 24 24 40 255 255 255 0 0 0 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
bighead1 2 1 1 8 8 40 5 143 143 255 3 0 1 BigheadLightningMissile 1024 3 16 3 1 1 1 1 1 1 1 1 4 8 128 ltng 1 monster_fireball sorceress_firebolt_impact_1 bigheadexp 0
bighead2 3 1 1 12 12 40 5 143 143 255 3 0 1 BigheadLightningMissile 1024 3 16 3 1 1 1 1 1 1 1 1 4 8 128 ltng 1 monster_fireball sorceress_firebolt_impact_1 bigheadexp 0
bighead3 4 1 1 14 14 40 5 143 143 255 3 0 1 BigheadLightningMissile 1024 3 16 3 1 1 1 1 1 1 1 1 4 8 128 ltng 1 monster_fireball sorceress_firebolt_impact_1 bigheadexp 0
bighead4 5 1 1 10 10 40 5 143 143 255 3 0 1 BigheadLightningMissile 1024 3 16 3 1 1 1 1 1 1 1 1 4 8 128 ltng 1 monster_fireball sorceress_firebolt_impact_1 bigheadexp 0
bighead5 6 1 1 16 16 40 5 143 143 255 3 0 1 BigheadLightningMissile 1024 3 16 3 1 1 1 1 1 1 1 1 4 8 128 ltng 1 monster_fireball sorceress_firebolt_impact_1 bigheadexp 0
spike1 7 1 1 10 10 8 40 255 255 255 1 0 1 SpikeFiendMissle 1024 2 16 3 1 1 1 1 1 1 1 1 4 8 128 1 3 3 3 3 3 2 3 3 3 3 3 10 32 0
spike2 8 1 1 13 13 7 40 255 255 255 1 0 1 SpikeFiendMissle 1024 2 16 3 1 1 1 1 1 1 1 1 4 8 128 1 3 3 3 3 3 3 3 3 3 3 3 10 32 0
spike3 9 1 1 16 16 6 40 255 255 255 1 0 1 SpikeFiendMissle 1024 2 16 3 1 1 1 1 1 1 1 1 4 8 128 1 3 3 3 3 3 4 3 3 3 3 3 10 32 0
spike4 10 1 1 20 20 4 40 255 255 255 1 0 1 SpikeFiendMissle 1024 2 16 3 1 1 1 1 1 1 1 1 4 8 128 1 4 4 4 4 4 4 4 4 4 4 4 10 32 0
spike5 11 1 1 24 24 40 255 255 255 1 0 1 SpikeFiendMissle 1024 2 16 3 1 1 1 1 1 1 1 1 4 8 128 2 5 5 5 5 5 7 5 5 5 5 5 10 32 0
firearrow 12 1 1 1 dl12 convert to elemental% 3 base conversion 2 conversion/lvl 24 24 40 5 255 178 64 1 0 1 FireArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 1 1 Fire Arrow 4 fire 32 amazon_firearrow_1 sorceress_firebolt_impact_1 fireexplode 0
cr_arrow1 13 1 1 14 14 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
cr_arrow2 14 1 1 16 16 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
cr_arrow3 15 1 1 18 18 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
cr_arrow4 16 1 1 20 20 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
cr_arrow5 17 1 1 24 24 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
blood1 18 2 3 3 128 255 255 255 0 0 0 BloodSmall01 1024 9 16 1 1 1 1 1 8 8 1 0
blood2 19 2 4 4 128 255 255 255 0 0 0 BloodSmall02 1024 9 16 1 1 1 1 1 8 8 1 0
bigblood1 20 2 3 3 128 255 255 255 0 0 0 BloodLarge01 1024 9 16 1 1 1 1 1 8 8 1 0
bigblood2 21 2 4 4 128 255 255 255 0 0 0 BloodLarge02 1024 9 16 1 1 1 1 1 8 8 1 0
shafire1 22 1 1 8 8 40 5 255 178 64 1 0 1 ShamanFireball 1024 3 16 3 1 1 1 1 1 1 1 1 1 4 8 fire 1 10 10 10 10 10 4 10 10 10 10 10 16 monster_fireball sorceress_firebolt_impact_1 shamanexp 0
shafire2 23 1 1 10 10 40 5 255 178 64 1 0 1 ShamanFireball 1024 3 16 3 1 1 1 1 1 1 1 1 1 4 8 fire 2 10 10 10 10 10 6 10 10 10 10 10 16 monster_fireball sorceress_firebolt_impact_1 shamanexp 0
shafire3 24 1 1 12 12 40 5 255 178 64 1 0 1 ShamanFireball 1024 3 16 3 1 1 1 1 1 1 1 1 1 4 8 fire 2 10 10 10 10 10 7 10 10 10 10 10 16 monster_fireball sorceress_firebolt_impact_1 shamanexp 0
shafire4 25 1 1 16 16 40 5 255 178 64 1 0 1 ShamanFireball 1024 3 16 3 1 1 1 1 1 1 1 1 1 4 8 fire 2 10 10 10 10 10 8 10 10 10 10 10 16 monster_fireball sorceress_firebolt_impact_1 shamanexp 0
shafire5 26 1 1 20 20 40 5 255 178 64 1 0 1 ShamanFireball 1024 3 16 3 1 1 1 1 1 1 1 1 1 4 8 fire 8 5 5 5 5 5 14 5 5 5 5 5 16 monster_fireball sorceress_firebolt_impact_1 shamanexp 0
magicarrow 27 1 1 1 dl12 convert to elemental% 1 base conversion 1 conversion/lvl 24 24 40 3 255 255 255 1 0 1 SafeArrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 Magic Arrow 4 mag 10 32 amazon_magicarrow_1 teethexplode 0
icearrow 28 1 1 2 100 convert cold len to freeze 24 24 40 5 81 81 255 1 0 1 IceArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 1 Ice Arrow 4 32 amazon_coldarrow_1 impact_cold_1 iceexplode 0
fireexplode 29 1 12 13 255 178 64 0 0 0 FireArrowExplode2 1024 12 16 5 1 1 1 1 1 1 1 4 8 1 0
iceexplode 30 1 16 11 81 81 255 0 0 0 IceArrowExplode 1024 16 16 1 1 1 1 1 1 1 4 8 1 0
bolt 31 1 1 24 24 50 255 255 255 1 0 0 XBowBolt 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_xbow_1 0
andarielspray 32 1 1 193 103 15 15 40 255 255 255 3 0 1 AndarielSpell 1024 24 16 3 1 1 1 1 1 1 1 1 1 4 1792 1280 1280 1280 1280 1280 2560 1280 1280 1280 1280 1280 pois 32 32 32 32 32 32 64 32 32 32 32 32 400 10 10 10 1 andariel_cast_large 0
bigheadexp 33 1 6 8 143 143 255 0 0 0 BigheadLightningExplosion 1024 7 16 1 1 1 1 1 1 1 4 8 1 0
shamanexp 34 1 11 8 255 178 64 0 0 0 ShamanFireballExplodeFinal 1024 12 16 1 1 1 1 1 1 1 4 8 1 0
throwaxe 35 1 1 24 24 20 255 255 255 1 0 1 MissileHandAxe 1024 8 16 3 1 1 1 1 1 1 1 1 1 4 8 128 2 32 weapon_throw_1 0
throwknife 36 1 1 24 24 20 255 255 255 1 0 0 MissileDagger 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
glaive 37 1 1 24 24 40 255 255 255 0 0 0 Glaive 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
poisonjav 38 3 2 0 #subloops 0 #subloops 24 24 25 128 255 128 0 0 0 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 Poison Javelin 4 6 32 weapon_throw_1 poisonjavcloud poisonjavcloud 0
poisonjavcloud 39 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 128 255 128 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 2 1 1 Poison Javelin -1 6 8 object_poison_loop poisonpuff 0
coldarrow 40 1 1 1 dl12 convert to elemental% 3 base conversion 2 conversion/lvl 24 24 20 5 81 81 255 1 0 1 IceArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 1 1 Cold Arrow 4 cold 32 amazon_coldarrow_1 impact_cold_1 iceexplode 0
explodingarrow 41 1 1 1 4 3 explosions radius 1 explosions density 24 24 40 5 255 178 64 1 0 1 FireArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 1 1 128 fire 32 amazon_firearrow_1 explodingarrowexp explodingarrowexp2 fireexplosion2 0
explodingarrowexp 42 1 16 15 255 178 64 0 0 0 ExpArrowExplode 1024 16 16 1 1 1 1 1 1 1 4 1 explosion_medium_1 0
plaguejavelin 43 3 2 3 2 1 ring 2 density 2 ring 1 density 3 subloops 1 ring 2 density 2 ring 1 density 3 subloops 24 24 15 4 128 255 128 0 0 0 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 1 Plague Javelin 4 6 32 weapon_throw_1 explosion_large_1 plaguejavcloud plaguejavcloud plaguejavcloud plaguejavcloud 0
oilpotion 44 1 3 1 3 2 damage radius 16 16 30 255 128 128 0 0 0 mslops 1024 8 16 6 1 1 1 1 1 1 1 1 1 5 2 8 2 7 fire 3 8 1 weapon_throw_1 explosion_small_1 fireexplode 0
explosivepotion 45 1 3 1 3 3 damage radius 16 16 30 255 128 128 0 0 0 mslopm 1024 8 16 6 1 1 1 1 1 1 1 1 1 5 2 8 8 12 fire 8 18 1 weapon_throw_1 explosion_medium_1 explodingarrowexp 0
fulminatingpotion 46 1 3 1 3 6 damage radius 16 16 30 255 128 128 0 0 0 mslopl 1024 8 16 6 1 1 1 1 1 1 1 1 1 5 2 8 13 30 fire 13 34 1 weapon_throw_1 explosion_large_1 explosivepotionexp explosivepotiondebris1 explosivepotiondebris3 0
rancidgasepotion 47 1 2 1 2 30 Poison Length 0 ring 2 density 2 ring 1 density 3 subloops 0 ring 2 density 2 ring 1 density 3 subloops 16 16 30 128 255 128 0 0 0 mslgps 1024 8 16 6 1 1 1 1 1 1 1 1 1 4 8 pois 48 48 50 1 weapon_throw_1 explosion_medium_1 rancidgascloud rancidgascloud 0
chokinggaspoition 48 1 2 1 2 60 Poison Length 2 ring 2 density 2 ring 1 density 3 subloops 2 ring 2 density 2 ring 1 density 3 subloops 16 16 30 128 255 128 0 0 0 mslgpm 1024 8 16 6 1 1 1 1 1 1 1 1 1 4 8 pois 144 144 50 1 weapon_throw_1 explosion_medium_1 chokinggascloud chokinggascloud 0
stranglinggaspotion 49 1 2 1 2 90 Poison Length 1 ring 2 density 2 ring 1 density 3 subloops 1 ring 2 density 2 ring 1 density 3 subloops 16 16 30 128 255 128 0 0 0 mslgpl 1024 8 16 6 1 1 1 1 1 1 1 1 1 4 8 pois 192 192 50 1 weapon_throw_1 explosion_medium_1 stranglinggascloud stranglinggascloud 0
notused50 50 1 0 acid (destroys AC or dur) 255 255 255 0 0 0 null 1024 2 16 3 1 1 1 1 1 1 1 4 1 weapon_throw_1 explosion_medium_1 0
explosivepotionexp 51 1 2 12 13 255 178 64 0 0 0 PotionExplode 1024 29 16 1 1 1 1 1 1 4 8 1 0
explosivepotiondebris1 52 1 255 255 255 0 0 0 PotionExplodeDebris01 1024 29 16 1 1 1 1 1 4 8 1 0
explosivepotiondebris2 53 1 255 255 255 0 0 0 PotionExplodeDebris02 1024 29 16 1 1 1 1 1 4 8 1 0
explosivepotiondebris3 54 1 255 255 255 0 0 0 PotionExplodeDebris03 1024 29 16 1 1 1 1 1 4 8 1 0
holybolt 55 1 9 1 7 1 heals allies? 1 "0 = all, 1 = undead, 2 = demons" 1 heals allies? 1 "0 = all, 1 = undead, 2 = demons" 20 20 50 7 222 222 255 1 0 1 HolyBoltMissile 1024 16 16 3 1 1 1 1 1 1 1 1 1 1 Holy Bolt 4 1 paladin_holybolt_1 paladin_holybolt_impact_1 healing teethexplode 0
chargedbolt 56 1 10 1 12 12 98 3 4 255 255 255 1 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 1 Charged Bolt 4 64 16 sorceress_chargedbolt_1 lightning 0
sanctuarybolt 57 1 1 14 222 222 255 0 0 1 Gleam 1024 8 16 1 1 1 1 1 0
firebolt 58 1 1 20 20 50 7 255 178 64 1 0 1 Firebolt 1024 5 16 3 1 1 1 1 1 1 1 1 Fire Bolt 4 16 sorceress_firebolt_1 sorceress_firebolt_impact_1 fireexplode 0
icebolt 59 1 1 12 12 50 7 81 81 255 1 0 1 Icebolt 1024 6 16 3 1 1 1 1 1 1 1 1 Ice Bolt 4 16 sorceress_icebolt_1 impact_cold_1 iceexplode 0
infernoflame1 60 1 1 8 "Mana Use, 16ths." 7 Minimum range 12 12 30 5 255 178 64 1 0 0 Flamethrower 1024 15 16 3 1 1 1 1 1 Inferno 4 32 1 82 sorceress_inferno 0
infernoflame2 61 1 1 8 "Mana Use, 16ths." 7 Minimum range 12 12 30 5 255 178 64 1 0 0 Flamethrower2 1024 15 16 3 1 1 1 1 1 Inferno 4 32 1 82 sorceress_inferno 0
fireball 62 1 1 1 1 4 damage radius 3 explosions radius 1 explosions density 20 20 50 7 255 178 64 1 0 1 Fireball 1024 5 16 3 1 1 1 1 1 1 1 1 Fire Ball 5 2 fire 16 sorceress_fireball_1 sorceress_fireball_impact_1 explodingarrowexp fireexplosion2 0
mummy1 63 1 1 5 5 24 255 255 255 0 0 0 GreaterMummyBreath 1024 24 16 3 1 1 2 1 1 1 4 1 pois 9 4 4 4 4 4 9 4 4 4 4 4 100 8 0
mummy2 64 1 1 5 5 24 255 255 255 0 0 0 GreaterMummyBreath 1024 24 16 3 1 1 2 1 1 1 4 1 pois 9 4 4 4 4 4 9 4 4 4 4 4 200 8 0
mummy3 65 1 1 5 5 24 255 255 255 0 0 0 GreaterMummyBreath 1024 24 16 3 1 1 2 1 1 1 4 1 pois 9 5 5 5 5 5 9 5 5 5 5 5 300 8 0
mummy4 66 1 1 5 5 24 255 255 255 0 0 0 GreaterMummyBreath 1024 24 16 3 1 1 2 1 1 1 4 1 pois 9 5 5 5 5 5 9 5 5 5 5 5 400 8 0
blaze 67 5 5 8 3 19 softhit chance (128) 19 hit sound chance (128) 90 25 5 4 255 178 64 0 0 1 groundFireBig 1024 37 16 1 12 36 3 1 1 1 1 12 1 1 Blaze 32 1 object_fire_loop_magic 0
firewallmaker 68 6 6 4 no light freq 12 12 7 2 8 255 178 64 0 0 1 groundFireBig 1024 2 16 1 1 2 8 1 1 1 1 1 8 32 1 firewall firewall firesmall firemedium 0
firewall 69 5 5 3 19 softhit chance (128) 19 hit sound chance (128) 90 5 4 255 178 64 0 0 1 groundFireBig 1024 37 16 1 12 36 3 1 1 1 1 12 1 Fire Wall 32 1 41 object_fire_loop_magic 0
goospit1 70 1 1 10 10 24 255 255 255 3 0 0 SandMaggotGooSpit 1024 24 16 3 1 1 1 1 1 1 1 4 1 1 3 3 3 3 3 3 3 3 3 3 3 pois 4 3 3 3 3 3 4 3 3 3 3 3 200 176 16 tentaclehead_missile_1 goosplat 0
goospit2 71 1 1 10 10 24 255 255 255 3 0 0 SandMaggotGooSpit 1024 24 16 3 1 1 1 1 1 1 1 4 1 2 3 3 3 3 3 3 3 3 3 3 3 pois 5 3 3 3 3 3 5 3 3 3 3 3 300 176 16 tentaclehead_missile_1 goosplat 0
goospit3 72 1 1 10 10 24 255 255 255 3 0 0 SandMaggotGooSpit 1024 24 16 3 1 1 1 1 1 1 1 4 1 2 3 3 3 3 3 4 3 3 3 3 3 pois 6 3 3 3 3 3 6 3 3 3 3 3 400 176 16 tentaclehead_missile_1 goosplat 0
goospit4 73 1 1 10 10 24 255 255 255 3 0 0 SandMaggotGooSpit 1024 24 16 3 1 1 1 1 1 1 1 4 1 2 4 4 4 4 4 5 4 4 4 4 4 pois 7 3 3 3 3 3 7 3 3 3 3 3 500 176 16 tentaclehead_missile_1 goosplat 0
goospit5 74 1 1 10 10 24 255 255 255 3 0 0 SandMaggotGooSpit 1024 24 16 3 1 1 1 1 1 1 1 4 1 3 4 4 4 4 4 5 4 4 4 4 4 pois 8 3 3 3 3 3 8 3 3 3 3 3 600 176 16 tentaclehead_missile_1 goosplat 0
goosplat 75 1 15 255 255 255 0 0 0 GooHit 1024 15 16 1 1 1 1 1 1 4 8 1 0
sand pile 76 2 128 255 255 255 0 0 0 SandMaggotSandPile 1024 1 16 1 1 1 8 8 0
unholybolt1 77 1 1 12 12 40 5 0 0 0 1 0 1 UnholyBolt 1024 16 16 3 1 1 1 1 1 1 1 2 4 8 mag 3 9 9 9 9 9 6 9 9 9 9 9 1 greatermummy_unholybolt_1 0
unholybolt2 78 1 1 12 12 40 5 0 0 0 1 0 1 UnholyBolt 1024 16 16 3 1 1 1 1 1 1 1 2 4 8 mag 3 9 9 9 9 9 7 9 9 9 9 9 1 greatermummy_unholybolt_1 0
unholybolt3 79 1 1 12 12 40 5 0 0 0 1 0 1 UnholyBolt 1024 16 16 3 1 1 1 1 1 1 1 2 4 8 mag 4 9 9 9 9 9 8 9 9 9 9 9 1 greatermummy_unholybolt_1 0
unholybolt4 80 1 1 12 12 40 5 0 0 0 1 0 1 UnholyBolt 1024 16 16 3 1 1 1 1 1 1 1 2 4 8 mag 4 9 9 9 9 9 9 9 9 9 9 9 1 greatermummy_unholybolt_1 0
sanctuarycenter 81 1 1 125 0 0 0 0 0 1 sanctuary 1024 40 16 1 10 30 1 1 1 1 1 1 0
fireexplosion 82 1 1 15 255 178 64 0 0 0 FireArrowExplode2 1024 12 16 3 1 1 2 2 1 1 4 8 fire 8 2 2 2 2 2 16 2 2 2 2 2 1 explosion_medium_1 0
stuckarrow 83 1 1 128 0 0 0 0 0 0 ArrowInGround 1024 1 16 1 1 1 1 8 32 0
footprint 84 128 0 0 0 0 0 0 Footsteps01 1024 2 16 1 1 1 1 8 32 0
immolationarrow 85 1 12 1 9 3 ??? Radius 75 fire duration 0 disc radius (0 = skill) 0 damage radius (0 = skill) 75 fire duration 0 disc radius (0 = skill) 75 disc density 24 24 40 9 255 178 64 1 0 1 FireArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 1 1 Immolation Arrow 5 2 fire 10 32 amazon_firearrow_1 explosion_medium_1 immolationfire firewall firesmall firemedium 0
guidedarrow 86 7 13 7 10 5 retarget frame 15 retarget radius 5 Retarget Frame 24 24 128 3 255 255 255 1 0 1 SafeArrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 Guided Arrow 4 10 32 amazon_magicarrow_1 0
freezingarrow 87 1 14 1 4 0 damage radius (0 = skill) 24 24 40 5 81 81 255 1 0 1 IceArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 1 1 4 5 8 128 32 amazon_coldarrow_1 sorceress_iceblast_impact_1 freezingarrowexp3 freezingarrowexp1 freezingarrowexp2 0
freezingarrowexp1 88 1 1 16 11 81 81 255 0 0 0 FreezeExplodeCenter 1024 15 16 1 1 1 1 1 1 1 4 8 1 0
freezingarrowexp2 89 1 1 16 81 81 255 0 0 0 FreezeExplodeEjecta 1024 15 16 1 1 1 1 1 1 1 4 8 8 0
nova 90 1 10 1 24 24 -1000 13 255 255 255 0 0 0 ElectricNova 1024 13 16 3 1 1 4 1 1 1 1 Nova 4 64 16 sorceress_nova lightning 0
iceblast 91 1 1 4 4 Radius 12 12 50 7 81 81 255 1 0 1 IceBlast 1024 5 16 3 1 1 1 1 1 1 1 1 Ice Blast 4 16 sorceress_icebolt_1 sorceress_iceblast_impact_1 freezingarrowexp1 0
blessedhammer 92 1 1 5 50 bonus dmg% undead 0 bonus dmg% demon 18 30 250 120 5 222 222 255 6 0 1 blessedhammer 1024 6 16 3 1 1 3 1 1 1 1 Blessed Hammer 4 mag 16 paladin_blessedhammer_1 paladin_holybolt_impact_1 0
chainlightning 93 8 16 1 12 3 Subloops 0 range (0 = skill) 0 range (0 = skill) 30 30 25 4 255 255 255 0 0 1 LightningStrike 1024 8 16 3 1 1 1 1 4 2 1 1 1 1 Chain Lightning 4 64 32 sorceress_lightning_1 lightning lightninghit 0
fistofares 94 1 1 12 12 128 3 255 255 255 0 0 1 FOAorbiter 1024 9 16 1 1 1 1 8 1 0
chillblood 95 1 1 8 8 128 4 81 81 255 1 0 1 ChillBlood 1024 16 16 3 1 1 1 1 1 1 1 4 8 48 1 0
glacialspike 96 1 14 1 13 0 damage radius (0 = skill) 0 freeze length (0 = skill) 16 16 40 5 81 81 255 1 0 1 GlacialSpike 1024 6 16 3 1 1 1 1 1 1 1 1 Glacial Spike 5 2 frze 16 sorceress_glacialspike_1 sorceress_iceblast_impact_1 freezingarrowexp1 freezingarrowexp2 0
teleport 97 1 1 18 6 255 255 255 0 0 0 Teleport 1024 18 16 1 1 1 1 1 8 1 0
lightningbolt 98 8 1 3 Subloops 30 30 25 4 255 255 255 0 0 2 null 1024 2 16 3 1 1 2 1 1 1 1 Lightning 4 64 1 sorceress_lightning_1 lightninghit 0
lightninghit 99 1 10 1 16 Z Range 12 3 4 255 255 255 0 0 1 LightningStrike 1024 8 16 1 7 1 1 1 8 ltng 2 2 2 2 2 2 5 2 2 2 2 2 64 32 lightning 0
meteor 100 1 60 0 0 0 0 0 1 Meteor 1024 12 16 1 1 1 1 0
meteorcenter 101 9 18 1 14 59 frames 25 fallrate 15 sliderate 0 range (0 = skill) 1 flames increment 5 # submissile1 3 # submissile3 15 # submissile4 60 4 255 64 64 0 0 1 MeteorTargetIndicator 1024 17 16 1 1 1 1 1 1 Meteor 5 2 8 1 sorceress_meteor_impact meteorfire meteor meteortail meteorexplode whitelightmissile firemedium firesmall 0
meteortail 102 1 60 0 0 0 0 0 1 MeteorTail 1024 12 16 1 1 1 8 1 0
meteorexplode 103 1 1 2 none 16 13 255 178 64 0 0 0 ExpArrowExplode 1024 16 16 1 1 1 1 1 1 1 4 8 1 0
firesmall 104 5 1 90 25 2 2 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 3 1 1 1 12 1 fire 1 1 1 1 1 1 1 1 1 1 1 1 32 1 object_fire_loop_magic 0
firemedium 105 5 1 90 25 3 2 255 178 64 0 0 1 groundFireMedium 1024 37 16 1 12 36 3 1 1 1 12 1 fire 2 2 2 2 2 2 2 2 2 2 2 2 32 1 object_fire_loop_magic 0
monblizcenter 106 10 8 5 base radius 8 base freq 4 level divisor 5 base radius 8 base freq 4 level divisor 25 15 9 81 81 255 0 0 1 null 1024 2 16 1 1 1 1 1 8 1 sorceress_blizzard_loop monbliz1 monbliz1 monbliz4 0
monbliz1 107 1 19 3 120 fall distance 5 fall rate 9 0 0 0 0 0 1 icestormfallvar01 1024 6 16 3 1 2 1 1 1 1 1 4 8 1 4 4 4 4 4 2 4 4 4 4 4 cold 4 12 12 12 12 12 9 12 12 12 12 12 200 25 25 25 1 sorceress_blizzard_loop sorceress_blizzard_impact_1 monblizexplode1 monblizexplode3 0
monbliz2 108 1 19 3 120 fall distance 5 fall rate 9 0 0 0 0 0 1 icestormfallvar02 1024 6 16 3 1 2 1 1 1 1 1 4 8 1 4 4 4 4 4 2 4 4 4 4 4 cold 4 12 12 12 12 12 9 12 12 12 12 12 200 25 25 25 1 sorceress_blizzard_loop sorceress_blizzard_impact_1 monblizexplode1 monblizexplode3 0
monbliz3 109 1 19 3 120 fall distance 5 fall rate 9 0 0 0 0 0 1 icestormfallvar03 1024 6 16 3 1 2 1 1 1 1 1 4 8 1 4 4 4 4 4 2 4 4 4 4 4 cold 4 12 12 12 12 12 9 12 12 12 12 12 200 25 25 25 1 sorceress_blizzard_loop sorceress_blizzard_impact_1 monblizexplode1 monblizexplode3 0
monbliz4 110 1 19 3 120 fall distance 5 fall rate 9 0 0 0 0 0 1 icestormfallvar04 1024 6 16 3 1 2 1 1 1 1 1 4 8 1 4 4 4 4 4 2 4 4 4 4 4 cold 4 12 12 12 12 12 9 12 12 12 12 12 200 25 25 25 1 sorceress_blizzard_loop sorceress_blizzard_impact_1 monblizexplode1 monblizexplode3 0
monblizexplode1 111 1 1 6 0 0 0 0 0 0 icestormimpactvar01 1024 6 16 1 1 1 1 1 1 1 4 8 1 0
monblizexplode2 112 1 1 6 0 0 0 0 0 0 icestormimpactvar02 1024 6 16 1 1 1 1 1 1 1 4 8 1 0
monblizexplode3 113 1 1 6 0 0 0 0 0 0 icestormimpactvar02 1024 6 16 1 1 1 1 1 1 1 4 8 1 0
teeth 114 1 1 16 16 50 3 255 255 255 1 0 0 teethMissile 1024 30 16 1 15 3 1 1 1 1 4 1 1 1 1 1 Teeth 4 32 necromancer_teeth_1 paladin_holybolt_impact_1 teethexplode 0
corpseexplosion 115 11 1 13 5 255 178 64 0 0 0 CorpseExplodeGuts 1024 13 16 1 1 1 1 1 1 Corpse Explosion 4 8 4 1 bigblood1 bigblood2 0
poisoncorpseexplosion 116 11 1 13 5 255 178 64 0 0 0 CorpseExplodeGutsPoison 1024 13 16 1 1 1 1 1 8 4 0
monstercorpseexplode 117 11 1 13 5 255 178 64 0 0 0 CorpseExplodeGuts 1024 13 16 1 1 1 1 1 8 4 1 0
poisonnova 118 1 1 12 12 30 0 0 0 0 0 0 poisonNova 1024 30 16 3 1 1 1 1 4 1 1 1 Poison Nova 8 80 32 necromancer_poisonnova 0
frostnova 119 1 10 1 24 24 -1000 14 81 81 255 0 0 0 FrostNova 1024 14 16 3 1 1 1 4 1 1 1 1 Frost Nova 4 48 16 sorceress_frostnova ice_explode 0
rogue1 120 1 1 24 24 40 255 255 255 1 0 0 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 1 1 10 32 weapon_bow_1 0
rogue2 121 1 1 24 24 40 5 255 178 64 1 0 1 FireArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 1 4 8 128 1 1 fire 2 4 10 32 amazon_firearrow_1 sorceress_firebolt_impact_1 fireexplode 0
rogue3 122 1 1 24 24 40 5 81 81 255 1 0 1 IceArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 1 4 8 128 1 1 cold 2 4 50 10 32 amazon_coldarrow_1 impact_cold_1 iceexplode 0
bat lightning bolt 123 8 9 3 Subloops 16 16 16 4 255 255 255 1 0 2 null 1024 2 16 3 1 1 2 1 1 1 1 Lightning 4 1 bat lightning trail lightninghit 0
bat lightning trail 124 1 1 10 3 4 255 255 255 1 0 0 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 4 8 ltng 2 3 3 3 3 3 5 3 3 3 3 3 16 0
skmage1 125 1 1 9 9 40 5 255 255 255 2 0 0 poisonNova 1024 30 16 3 1 1 1 1 1 1 1 1 4 8 128 32 monster_poisonbolt 0
skmage2 126 1 1 12 12 40 5 255 255 255 2 0 1 Icebolt 1024 6 16 3 1 1 1 1 1 1 1 1 4 8 128 16 monster_icebolt_1 iceexplode 0
skmage3 127 1 1 14 14 40 5 255 255 255 2 0 1 Firebolt 1024 5 16 3 1 1 1 1 1 1 1 1 4 8 128 16 monster_firebolt_1 sorceress_firebolt_impact_1 fireexplode 0
skmage4 128 1 1 14 14 40 5 255 255 255 2 0 1 ChargedBolt 1024 10 16 3 1 1 1 1 1 1 1 1 4 8 128 16 monster_chargedbolt_1 0
vampirefireball 129 1 1 1 1 3 damage radius 3 explosions radius 1 explosions density 14 14 30 8 255 178 64 1 0 1 Fireball 1024 5 16 3 1 1 1 1 1 1 1 1 5 2 8 fire 3 12 12 12 12 12 6 12 12 12 12 12 16 monster_fireball sorceress_fireball_impact_1 explodingarrowexp fireexplosion2 0
vampirefirewallmaker 130 6 6 4 no light freq 12 12 10 8 255 178 64 0 0 1 groundFireBig 1024 2 16 1 1 2 8 1 1 1 1 1 8 32 1 vampirefirewall vampirefirewall firesmall firemedium 0
vampirefirewall 131 5 5 3 19 hit sound chance (128) 90 2 4 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 3 1 1 1 1 2 fire 2 2 3 3 3 3 3 2 3 3 3 3 32 1 41 object_fire_loop_magic 0
vampiremeteor 132 1 60 0 0 0 0 0 1 Meteor 1024 12 16 1 1 1 1 0
vampiremeteorcenter 133 9 18 1 14 59 frames 25 fallrate 15 sliderate 0 range (0 = skill) 1 flames increment 5 # submissile1 3 # submissile3 15 # submissile4 60 4 255 64 64 0 0 1 MeteorTargetIndicator 1024 17 16 1 1 1 1 1 VampireMeteor 5 2 8 1 vampiremeteorfire vampiremeteor meteortail meteorexplode whitelightmissile firemedium firesmall 0
vampiremeteorexp 134 1 1 2 none 16 13 255 178 64 0 0 0 ExpArrowExplode 1024 16 16 1 1 1 1 1 1 1 4 8 1 0
raven1 135 1 1 16 16 50 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
raven2 136 1 1 16 16 50 9 255 178 64 1 0 1 FireArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 4 8 1 6 6 6 6 6 3 6 6 6 6 6 fire 5 12 12 12 12 12 11 12 12 12 12 12 10 32 amazon_firearrow_1 sorceress_firebolt_impact_1 fireexplode 0
amphibiangoo1 137 1 1 12 12 15 2 64 255 64 1 0 1 FrogPoisonMissile 1024 7 16 3 1 1 1 1 1 1 1 33 1 4 fire 9 5 5 5 5 5 9 5 5 5 5 5 500 176 16 0
amphibiangoo2 138 1 1 12 12 18 2 64 255 64 1 0 1 FrogPoisonMissile 1024 7 16 3 1 1 1 1 1 1 1 33 1 4 fire 9 5 5 5 5 5 9 5 5 5 5 5 700 176 16 0
tentaclegoo 139 1 1 12 12 40 2 64 255 64 8 0 1 FrogPoisonMissile 1024 7 16 3 1 1 1 1 1 1 1 1 33 1 4 pois 11 18 800 176 16 tentaclehead_missile_1 amphibianexplode 0
amphibianexplode 140 1 1 15 255 255 255 0 0 0 GooHit 1024 15 16 1 1 1 1 1 4 8 1 0
poisonpuff 141 1 1 1 15 25 255 255 255 0 0 0 PoisonSmokePuff 1024 26 16 1 1 1 1 1 4 8 4 object_poison_loop 0
curseeffectred 142 1 1 20 1 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
spidergoolay 143 1 1 15 1 1 16 0 0 0 0 0 0 Spider_Goo_Missile 1024 17 16 1 1 1 1 1 1 1 8 spidergoo spidergoo 0
fetishinferno1 144 1 1 7 Minimum range 12 12 30 4 255 178 64 3 0 0 Flamethrower 1024 15 16 3 1 1 1 1 1 8 fire 2 4 4 4 4 4 4 4 4 4 4 4 32 1 82 sorceress_inferno 0
fetishinferno2 145 1 1 7 Minimum range 12 12 30 4 255 178 64 3 0 0 Flamethrower2 1024 15 16 3 1 1 1 1 1 8 fire 2 4 4 4 4 4 4 4 4 4 4 4 32 1 sorceress_inferno 0
spidergoo 146 1 1 16 200 0 0 0 0 0 1 Spider_Goo_Disappear 1024 9 16 1 1 3 1 1 1 1 3 1 1 8 0
cursecast 147 1 1 3 5 20 1 255 0 0 6 0 0 CurseCast 1024 25 16 1 1 1 1 8 1 0
howl 148 1 1 17 12 12 -1000 12 192 192 192 1 0 0 BAYellShockWave01 1024 15 16 3 1 1 1 32 barbarian_circle_1 0
shout 149 1 1 18 2 Vel / level increase 30 30 -500 15 192 192 192 1 0 0 BAYellShockWave01 1024 15 16 3 1 1 1 32 barbarian_circle_1 0
dust 150 1 1 4 4 100 255 255 255 0 0 0 FireSmoke 1024 26 16 1 1 4 0
redlightmissile 151 1 1 10 10 5 255 178 64 0 0 0 null 1024 2 16 1 1 1 1 0
greenlightmissile 152 1 1 10 10 5 128 255 128 0 0 0 null 1024 2 16 1 1 1 1 0
bluelightmissile 153 1 1 10 10 5 81 81 255 0 0 0 null 1024 2 16 1 1 1 1 0
whitelightmissile 154 1 1 10 10 5 255 255 255 0 0 0 null 1024 2 16 1 1 1 1 0
corpsepoisoncloud 155 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 80 2 128 255 128 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 1 1 1 1 pois 2 1 1 1 1 1 2 1 1 1 1 1 175 8 object_poison_loop poisonpuff 0
chillbloodcloud 156 4 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 6 spawn rate 2 number 6 radius 4 4 80 3 81 81 255 1 0 0 null 1024 2 16 3 1 1 1 1 1 1 Chilling Armor 8 48 1 chillbloodpuff 0
chillbloodpuff 157 1 1 1 15 25 3 81 81 255 0 0 0 ChillBloodPuff 1024 26 16 1 1 1 1 1 4 8 48 1 0
blizzardcenter 158 13 10 100 9 81 81 255 0 0 1 null 1024 2 16 1 1 1 1 1 8 1 sorceress_blizzard_loop blizzard1 blizzard1 blizzard4 0
blizzard1 159 1 19 3 120 fall distance 5 fall rate 9 0 0 0 0 0 1 icestormfallvar01 1024 6 16 3 1 2 1 1 1 1 1 Blizzard 4 1 sorceress_blizzard_loop sorceress_blizzard_impact_1 blizzardexplode1 blizzardexplode3 0
blizzard2 160 1 19 3 120 fall distance 5 fall rate 9 0 0 0 0 0 1 icestormfallvar02 1024 6 16 3 1 2 1 1 1 1 1 Blizzard 4 1 sorceress_blizzard_loop sorceress_blizzard_impact_1 blizzardexplode1 blizzardexplode3 0
blizzard3 161 1 19 3 120 fall distance 5 fall rate 9 0 0 0 0 0 1 Blizzard 1024 8 16 3 1 2 1 1 1 1 1 Blizzard 4 1 sorceress_blizzard_loop sorceress_blizzard_impact_1 blizzardexplode1 blizzardexplode3 0
blizzard4 162 1 19 3 120 fall distance 5 fall rate 9 0 0 0 0 0 1 Blizzard 1024 8 16 3 1 2 1 1 1 1 1 Blizzard 4 1 sorceress_blizzard_loop sorceress_blizzard_impact_1 blizzardexplode1 blizzardexplode3 0
blizzardexplode1 163 1 1 6 0 0 0 0 0 0 icestormimpactvar01 1024 6 16 1 1 1 1 1 1 1 4 8 1 0
blizzardexplode2 164 1 1 6 0 0 0 0 0 0 icestormimpactvar02 1024 6 16 1 1 1 1 1 1 1 4 8 1 0
blizzardexplode3 165 1 1 6 0 0 0 0 0 0 icestormimpactvar02 1024 6 16 1 1 1 1 1 1 1 4 8 1 0
thunderstorm1 166 1 3 2 2 9 10 255 255 255 0 0 1 LightningboltBig 1024 8 16 3 1 3 1 1 1 1 Thunder Storm 4 1 sorceress_thunder_bolt 0
thunderstorm2 167 1 3 2 2 9 10 255 255 255 0 0 1 LightningboltBig 1024 8 16 3 1 3 1 1 1 1 Thunder Storm 4 1 sorceress_thunder_bolt 0
thunderstorm3 168 1 3 2 2 9 10 255 255 255 0 0 1 LightningboltBig 1024 8 16 3 1 3 1 1 1 1 Thunder Storm 4 1 sorceress_thunder_bolt 0
thunderstorm4 169 1 3 2 2 9 10 255 255 255 0 0 1 LightningboltBig 1024 8 16 3 1 3 1 1 1 1 Thunder Storm 4 1 sorceress_thunder_bolt 0
monsterlight 170 8 10 1 3 Subloops 30 30 25 4 255 255 255 2 0 2 null 1024 2 16 3 1 1 1 2 1 1 8 ltng 15 0 0 0 0 0 30 30 30 30 30 30 1 monster_lightning_1 lightning lightninghit 0
poisonball 171 1 1 12 12 30 255 255 255 0 0 0 poisonNova 1024 30 16 3 1 1 1 1 1 1 pois 6 6 6 6 6 6 6 6 6 6 6 6 400 32 0
diablight 172 1 10 1 30 Minimum range 20 20 30 3 255 255 255 1 0 0 DiabloLightning 1024 15 16 3 1 1 3 2 1 1 1 1 6 7 10 10 10 10 10 15 10 10 10 10 10 ltng 25 16 16 16 16 16 66 16 16 16 16 16 8 82 diablo_laser fingermage_bolt_impact_1 diablolightning 0
redemption 173 1 1 18 6 255 255 255 0 0 0 RedemptionGhost 1024 16 16 1 1 1 1 1 1 8 1 0
redemptionfail 174 1 1 13 5 255 178 64 0 0 0 CorpseExplodeGuts 1024 13 16 1 1 1 1 1 8 4 0
handofgod 175 1 3 2 2 9 10 255 255 255 0 0 1 LightningBolt 1024 8 16 3 1 1 1 1 1 1 1 Fist of the Heavens 4 1 0
diabfire 176 1 1 30 30 50 3 255 255 255 1 0 1 groundFireBig 1024 37 16 1 12 36 3 1 1 1 4 2 1 1 1 8 fire 20 8 8 8 8 8 50 8 8 8 8 8 32 1 diablo_firecircle 0
fingermagespider 177 15 10 11 19 5 repath frame 20 activation dist 2 delta 3 spawn frame 20 spawn life 5 repath frame 20 activation dist 2 delta 6 6 80 255 178 178 1 0 1 FingerMageSpider 1024 5 16 3 1 1 1 1 1 1 1 1 4 7 3 2 2 2 2 2 9 2 2 2 2 2 fire 6 6 7 8 8 8 12 6 7 8 8 8 16 fingermage_bolt fingermage_bolt_impact_1 fingermagespiderexplode fingermagespider 0
electric throwaxe 178 1 10 1 24 24 20 4 255 255 255 1 0 1 MissileHandAxe 1024 8 16 3 1 1 1 1 1 1 1 1 1 4 8 ltng 5 4 4 4 4 4 10 4 4 4 4 4 32 lightning 0
diabwallmaker 179 16 12 20 20 80 3 255 178 64 2 0 1 groundFireMedium 1024 2 16 1 1 2 3 1 1 1 1 1 1 1 1 4 8 1 diabwall diabwall 0
diabwall 180 5 1 36 3 4 255 178 64 0 0 1 groundFireMedium 1024 37 16 1 12 36 3 1 2 1 1 1 3 4 2 2 2 2 2 12 2 2 2 2 2 fire 12 5 5 5 5 5 25 5 5 5 5 5 1 41 diablo_firewall 0
curseamplifydamage 181 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
cursedimvision 182 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
curseweaken 183 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
curseironmaiden 184 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
curseterror 185 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
curseattract 186 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
cursereversevampire 187 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
curseconfuse 188 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
cursedecrepify 189 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
curselowerresist 190 1 1 20 255 0 0 1 0 0 CurseArea 1024 20 16 1 1 1 1 8 16 0
cursecenter 191 17 1 7 active frames 20 255 0 0 0 0 0 null 1024 2 16 1 1 1 1 0
bonespear 192 18 24 1 3 Subloops 24 24 40 3 255 255 255 0 0 1 BoneSpear 1024 6 16 3 1 1 1 1 1 1 1 Bone Spear 4 8 6 16 necromancer_bonespear_1 paladin_holybolt_impact_1 bonespearexplode bonespeartrail teethexplode 0
bonespirit 193 7 13 7 10 5 Retarget Frame 15 retarget radius 5 Retarget Frame 12 12 128 3 255 255 255 1 0 1 BoneSpirit 1024 8 16 3 1 1 -30 1 1 1 1 1 1 Bone Spirit 4 8 8 necromancer_bonespirit_1 paladin_holybolt_impact_1 bonespiritexplode 0
coldunique 194 1 1 24 24 -1000 14 81 81 255 0 0 0 FrostNova 1024 14 16 3 1 1 1 3 1 1 1 1 1 8 cold 6 4 5 6 8 10 8 4 5 6 8 10 75 25 25 25 16 sorceress_frostnova 0
lightunique 195 1 10 1 12 12 98 3 4 255 255 255 1 3 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 1 1 4 8 ltng 1 2 2 2 2 2 1 2 2 2 2 2 64 16 sorceress_chargedbolt_1 0
skbowarrow1 196 1 1 24 24 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
skbowarrow2 197 1 1 24 24 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
skbowarrow3 198 1 1 24 24 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
skbowarrow4 199 1 1 24 24 40 5 255 178 64 1 0 1 FireArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 32 amazon_firearrow_1 sorceress_firebolt_impact_1 0
skbowarrow5 200 1 1 24 24 40 5 255 255 255 1 0 1 SafeArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 32 amazon_magicarrow_1 0
nova1 201 1 10 1 24 24 -1000 13 255 255 255 0 0 0 null 1024 2 16 3 1 1 4 1 1 1 1 1 Nova 4 64 1 sorceress_nova lightning 0
nova2 202 1 10 1 24 24 -1000 13 255 255 255 0 0 0 null 1024 2 16 3 1 1 4 1 1 1 1 1 Nova 4 64 1 sorceress_nova lightning 0
andypoisonbolt 203 1 1 20 20 50 5 255 255 255 3 0 0 poisonNova 1024 30 16 3 1 1 1 1 1 1 1 1 4 1280 1280 1280 1280 1280 1280 1792 1280 1280 1280 1280 1280 pois 32 38 44 40 46 52 64 38 44 40 46 52 800 10 10 10 32 andariel_cast_small 0
teethexplode 204 1 1 13 0 0 0 0 0 0 teethexplode 1024 13 16 1 1 1 1 0
lightningjavelin 205 1 10 1 12 dl12 convert to elemental% 100 base conversion 0 conversion/lvl 30 30 25 6 255 255 255 0 0 1 LightningJavelin 1024 5 16 3 1 1 1 2 1 1 1 1 1 1 Lightning Bolt 4 ltng 64 16 amazon_lightning_1 lightning 0
lightningfury 206 1 25 1 20 0 range (0=skill) 0 max (0 = skill) 0 range (0=skill) 0 max (0 = skill) 30 30 25 6 255 255 255 0 0 1 LightningJavelin 1024 5 16 3 1 1 1 2 1 1 1 1 1 1 Lightning Fury 4 64 16 amazon_lightning_1 furylightning furylightning 0
bonewallmaker 207 1 13 12 12 7 2 3 255 255 255 0 0 0 null 1024 2 16 8 1 1 1 1 1 1 8 1 0
necromage1 208 1 1 14 14 30 5 255 255 255 1 0 0 poisonNova 1024 30 16 3 1 1 1 1 1 1 1 1 4 1280 pois 6 1 2 4 6 8 6 1 2 4 6 8 500 250 250 250 32 monster_poisonbolt 0
necromage2 209 1 1 14 14 30 5 255 255 255 1 0 1 Icebolt 1024 6 16 3 1 1 1 1 1 1 1 1 4 8 cold 1 1 2 3 4 5 4 1 2 3 4 5 25 25 25 25 16 monster_icebolt_1 0
necromage3 210 1 1 14 14 30 5 255 255 255 1 0 1 Firebolt 1024 5 16 3 1 1 1 1 1 1 1 1 4 8 fire 2 2 3 5 7 9 6 2 3 5 7 9 16 monster_fireball sorceress_firebolt_impact_1 shamanexp 0
necromage4 211 1 1 14 14 30 5 255 255 255 1 0 1 ChargedBolt 1024 10 16 3 1 1 1 1 1 1 1 1 4 8 ltng 1 1 1 1 1 1 7 3 5 8 11 14 16 monster_chargedbolt_1 0
sparkle 212 1 1 4 4 30 255 255 255 1 0 1 Gleam 1024 8 16 3 1 1 1 1 1 1 1 4 8 pois 2 2 2 2 2 2 6 2 2 2 2 2 1 0
multipleshotarrow 213 1 1 24 24 50 255 255 255 1 0 0 Arrow 1024 1 16 3 1 1 1 1 4 1 1 1 1 1 1 4 8 96 10 32 amazon_multi_arrow_1 0
multipleshotbolt 214 1 1 24 24 50 255 255 255 1 0 0 XBowBolt 1024 1 16 3 1 1 1 1 4 1 1 1 1 1 1 4 8 96 10 32 weapon_xbow_1 0
chargedstrikebolt 215 1 10 1 12 12 98 3 4 255 255 255 1 3 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 1 Charged Strike 4 8 16 sorceress_chargedbolt_1 0
bonespearexplode 216 1 1 13 0 0 0 0 0 0 teethexplode 1024 13 16 1 1 1 8 1 0
poisonexplosioncloud 217 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 128 255 128 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 1 2 1 1 Poison Explosion 8 8 object_poison_loop poisonpuff 0
bonecast 218 1 20 255 255 255 0 0 0 BoneCast 1024 16 16 1 1 8 16 0
battlecry 219 1 1 21 12 12 -1000 12 192 192 192 1 0 0 BAYellShockWave01 1024 15 16 3 1 1 4 1 1 32 barbarian_circle_1 0
primepoisoncloud 220 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 255 255 255 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 1 2 1 1 pois 10 5 5 5 5 5 10 5 5 5 5 5 300 20 20 20 8 object_poison_loop poisonpuff 0
plaguejavcloud 221 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 255 255 255 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 1 2 1 1 Plague Javelin -1 8 object_poison_loop poisonpuff 0
rancidgascloud 222 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 255 255 255 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 1 2 1 1 pois 123 123 50 8 object_poison_loop poisonpuff 0
chokinggascloud 223 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 255 255 255 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 1 2 1 1 pois 246 246 50 8 object_poison_loop poisonpuff 0
stranglinggascloud 224 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 255 255 255 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 1 2 1 1 pois 369 369 50 8 object_poison_loop poisonpuff 0
buglightning 225 1 10 1 12 12 98 3 4 255 255 255 1 3 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 1 4 ltng 256 128 128 128 128 128 256 128 128 128 128 128 64 16 sorceress_chargedbolt_1 0
pantherjav1 226 1 1 20 20 80 255 255 255 1 0 1 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
pantherjav2 227 1 1 20 20 80 255 255 255 1 0 1 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
pantherjav3 228 1 1 20 20 80 255 255 255 1 0 1 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
pantherjav4 229 1 1 20 20 80 255 255 255 1 0 1 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
immolationfire 230 5 5 3 19 softhit chance (128) 75 5 4 255 178 64 0 0 1 groundFireBig 1024 37 16 1 12 36 3 1 1 1 1 12 1 1 2 fire 7 5 5 5 5 5 9 5 5 5 5 5 skill('Fire Arrow'.blvl) * 5 32 1 41 object_fire_loop_magic 0
furylightning 231 1 1 30 30 25 4 255 255 255 0 0 1 LightningStrike 1024 8 16 1 7 3 1 1 2 1 1 1 1 Lightning Fury 4 -1 64 32 sorceress_lightning_1 0
lightningstrike 232 8 16 1 12 3 Subloops 0 range (0 = skill) 0 range (0 = skill) 30 30 25 4 255 255 255 0 0 1 LightningStrike 1024 8 16 3 1 1 1 1 4 2 1 1 1 1 Lightning Strike 4 8 ltng 8 64 32 sorceress_lightning_1 lightning lightninghit 0
fistoftheheavensdelay 233 1 26 1 22 0 range (0 = skill) 0 max bolts (0 = skill) 0 range (0 = skill) 0 max bolts (0 = skill) 10 0 0 0 0 0 0 null 1024 2 16 1 1 1 1 Fist of the Heavens 4 8 1 paladin_handofgod_bolt fistoftheheavensbolt fistoftheheavensbolt 0
fistoftheheavensbolt 234 1 9 1 7 1 heals allies? 1 "0 = all, 1 = undead, 2 = demons" 1 heals allies? 1 "0 = all, 1 = undead, 2 = demons" 12 12 50 8 222 222 255 1 2 1 HolyBoltMissile 1024 16 16 3 1 1 1 4 1 3 1 1 1 1 4 8 mag 40 6 10 16 32 48 50 6 10 16 32 48 skill('Holy Bolt'.blvl) * 15 1 paladin_holybolt_1 paladin_holybolt_impact_1 teethexplode teethexplode 0
warcry 235 1 10 1 7 0 stun len (0 = skill) 12 12 -600 16 192 192 192 1 0 0 WarcryShockwave 1024 16 16 3 1 1 6 1 1 1 War Cry 4 32 barbarian_warcry_circle doubledamage1 0
battlecommand 236 1 1 18 30 30 -500 15 192 192 192 1 0 0 BAYellShockWave01 1024 15 16 3 1 1 1 4 1 1 32 barbarian_circle_1 0
battleorders 237 1 1 18 30 30 -500 15 192 192 192 1 0 0 BAYellShockWave01 1024 15 16 3 1 1 1 4 1 1 32 barbarian_circle_1 0
pantherpotorange 238 1 3 1 24 16 16 128 255 128 128 0 0 0 mslops 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 5 8 3 5 5 5 5 5 5 5 5 5 5 5 fire 2 7 7 7 7 7 5 7 7 7 7 7 1 weapon_throw_1 explosion_medium_1 explodingarrowexp 0
pantherpotgreen 239 1 28 1 25 40 Poison Length 1 increment 16 16 128 128 255 128 0 0 0 mslgps 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 4 1 pois 9 6 6 6 6 6 12 6 6 6 6 6 400 1 weapon_throw_1 explosion_medium_1 rancidgascloud rancidgascloud 0
meteorfire 240 5 5 3 19 softhit chance (128) 90 3 2 255 178 64 0 0 1 groundFireMedium 1024 37 16 1 12 36 3 1 1 2 1 12 1 3 1 fire 15 4 5 6 6 6 25 4 5 6 6 6 skill('Inferno'.blvl)*3 32 1 41 object_fire_loop_magic 0
trap spike right 241 1 1 9 9 50 255 255 255 1 0 1 SpikeRight 1024 12 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 1 object_trap_release 0
trap spike left 242 1 1 9 9 50 255 255 255 1 0 1 SpikeLeft 1024 12 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 1 object_trap_release 0
trap cursed skull right 243 1 1 6 6 50 255 255 255 1 0 1 SkullRight 1024 12 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 1 object_trap_release 0
trap cursed skull left 244 1 1 6 6 50 255 255 255 1 0 1 SkullLeft 1024 12 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 1 object_trap_release 0
trap poison ball right 245 3 2 lvl*2 #subloops lvl*2 #subloops 6 6 50 255 255 255 1 0 1 PoisonRight 1024 12 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 1 object_trap_release plaguejavcloud 0
trap poison ball left 246 3 2 lvl*2 #subloops lvl*2 #subloops 6 6 50 255 255 255 1 0 1 PoisonLeft 1024 12 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 10 1 object_trap_release plaguejavcloud 0
hydra 247 1 1 14 14 30 5 255 255 255 2 0 1 Firebolt 1024 5 16 3 1 1 1 1 1 1 1 1 1 1 Hydra 4 8 16 monster_firebolt_1 sorceress_firebolt_impact_1 fireexplode 0
bonespeartrail 248 1 8 255 255 255 0 0 0 BoneSpearTrail 1024 9 16 1 1 8 32 0
grimwardsmallstart 249 1 29 1 26 0 duration (0=skill) 5 0 0 0 0 0 0 GrimWardSmallStart 1024 5 16 1 1 1 1 1 8 4 1 grimwardsmall grimwardsmall 0
grimwardsmall 250 1 29 14 27 6 repeat frame 30 skill func -1 no duration 200 0 0 0 0 0 1 GrimWardSmall 1024 1 16 1 1 1 1 1 1 8 4 1 grimwardsmallstop 0
grimwardsmallstop 251 11 1 9 0 0 0 0 0 0 GrimWardSmallStop 1024 9 16 1 1 1 1 1 1 8 4 1 0
grimwardmediumstart 252 1 29 1 26 0 duration (0=skill) 8 0 0 0 0 0 0 GrimWardMediumStart 1024 8 16 1 1 1 1 1 8 4 1 grimwardmedium grimwardmedium 0
grimwardmedium 253 1 29 14 27 6 repeat frame 30 skill func -1 no duration 200 0 0 0 0 0 1 GrimWardMedium 1024 1 16 1 1 1 1 1 1 8 4 1 grimwardmediumstop 0
grimwardmediumstop 254 11 1 9 0 0 0 0 0 0 GrimWardMediumStop 1024 9 16 1 1 1 1 1 1 8 4 1 0
grimwardlargestart 255 1 29 1 26 0 duration (0=skill) 8 0 0 0 0 0 0 GrimWardLargeStart 1024 8 16 1 1 1 1 1 8 4 1 grimwardlarge grimwardlarge 0
grimwardlarge 256 1 29 14 27 6 repeat frame 30 skill func 200 0 0 0 0 0 1 GrimWardLarge 1024 1 16 1 1 1 1 1 1 8 4 1 grimwardlargestop 0
grimwardlargestop 257 11 1 9 0 0 0 0 0 0 GrimWardLargeStop 1024 9 16 1 1 1 1 1 1 8 4 1 0
zakarumlight 258 1 1 12 3 255 255 255 0 0 1 LightningStrike 1024 8 16 1 7 1 1 1 1 8 64 32 monster_lightning_1 0
grimwardscare 259 1 1 28 2 2 24 12 0 0 0 0 0 0 null 1024 2 16 3 1 1 1 6 2 1 1 1 0
frozenorb 260 19 30 15 29 1 frequency 19 direction increment 1 frequency 19 direction increment 4 increment 4 increment 10 10 30 6 81 81 255 1 0 1 IceOrb 1024 16 16 3 1 1 1 1 1 1 1 4 8 1 frozenorbbolt frozenorbnova frozenorbbolt frozenorbnova 0
frozenorbbolt 261 1 1 18 18 25 4 81 81 255 0 0 1 IceBolt 1024 6 16 3 1 1 1 1 1 1 1 Frozen Orb 4 8 16 sorceress_glacialspike_1 0
frozenorbnova 262 20 16 6 frames 2 frequency 6 frames 2 frequency 24 24 25 4 81 81 255 0 0 1 IceBolt 1024 6 16 3 1 1 1 1 1 1 1 Frozen Orb 4 8 16 0
frozenorbexplode 263 1 1 16 6 81 81 255 0 0 0 IceOrbExplode 1024 16 16 1 1 1 8 1 0
chillingarmorbolt 264 1 1 18 18 25 4 81 81 255 0 0 1 IceBolt 1024 6 16 3 1 1 1 1 1 0 1 1 Chilling Armor 4 8 16 sorceress_icebolt_1 impact_cold_1 0
fireexplosion2 265 1 1 12 0 0 0 0 0 0 FireArrowExplode2 1024 12 16 5 1 1 1 1 1 1 1 4 8 1 0
blowgun 266 1 1 20 20 90 255 255 255 1 0 1 Blowdart 1024 8 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 16 0
chainlightning2 267 8 16 1 12 3 Subloops 10 range (0 = skill) 10 range (0 = skill) 30 30 25 4 255 255 255 0 0 1 LightningStrike 1024 8 16 3 1 1 1 4 2 1 1 1 1 1 Chain Lightning 4 64 32 monster_lightning_1 lightning lightninghit 0
revivesmall 268 1 25 5 255 178 64 0 0 0 Revive 1024 25 16 1 1 8 1 0
revivemedium 269 1 25 5 255 178 64 0 0 0 Revive 1024 25 16 1 1 8 1 0
revivelarge 270 1 25 5 255 178 64 0 0 0 Revive 1024 25 16 1 1 8 1 0
monglacialspike 271 1 14 1 13 0 damage radius (0 = skill) 0 freeze length (0 = skill) 18 18 40 5 81 81 255 1 0 1 GlacialSpike 1024 6 16 3 1 1 1 1 1 1 1 1 5 8 frze 2 2 2 2 2 2 4 2 2 2 2 2 16 monster_icebolt_1 sorceress_iceblast_impact_1 freezingarrowexp1 freezingarrowexp2 0
icebreaksmall 272 1 31 30 255 255 255 0 0 0 IceBreakSmall 1024 15 16 1 1 1 8 4 impact_shatter_1 0
icebreakmedium 273 1 31 30 255 255 255 0 0 0 IceBreakLarge 1024 15 16 1 1 1 8 4 impact_shatter_1 0
icebreaklarge 274 1 31 30 255 255 255 0 0 0 IceBreakLarge 1024 15 16 1 1 1 8 4 impact_shatter_1 0
icebreaksmoke 275 1 15 255 255 255 0 0 0 IceBreakSmoke 1024 15 16 1 1 8 1 0
mephisto 276 1 1 24 24 40 9 255 255 255 0 0 1 MephistoMissile 1024 10 16 3 1 1 1 2 1 1 1 1 4 8 12 8 10 12 12 12 16 8 10 12 12 12 cold 12 18 24 24 24 24 18 20 28 28 28 28 75 25 25 25 16 mephisto_orb sorceress_fireball_impact_1 mephistoexplosion 0
firehead 277 1 32 1 31 1 radius 2 density 14 14 40 8 255 178 64 1 0 1 VampireMissile 1024 19 16 3 1 1 1 1 1 1 1 1 1 8 fire 3 12 12 12 12 12 6 12 12 12 12 12 16 monster_fireball sorceress_fireball_impact_1 vampiresteal explodingarrowexp fireexplosion2 0
whilrwind 278 1 1 12 12 3 0 0 0 0 0 0 null 1024 2 16 3 1 2 1 1 Whirlwind 4 8 1 0
arcanelightningbolt 279 8 1 3 Subloops 32 32 40 8 178 178 255 1 0 2 null 1024 2 16 1 1 1 2 1 1 1 1 4 8 128 ltng 7 9 9 9 9 9 14 11 11 11 11 11 600 64 1 monster_lightning_1 lightninghit 0
frogfire 280 1 1 15 15 40 4 255 64 64 1 0 1 Fireball 1024 5 16 3 1 1 1 1 1 1 1 33 1 4 8 fire 9 6 6 6 6 6 18 6 6 6 6 6 16 monster_fireball sorceress_firebolt_impact_1 shamanexp 0
frogcold 281 1 1 12 12 35 4 64 64 255 1 0 1 Icebolt 1024 6 16 3 1 1 1 1 1 1 1 33 1 4 8 cold 6 5 5 5 5 5 12 5 5 5 5 5 600 16 monster_icebolt_1 sorceress_iceblast_impact_1 iceexplode 0
frogpois 282 1 1 12 12 30 4 64 255 64 1 0 1 FrogPoisonMissile 1024 7 16 3 1 1 1 1 1 1 1 33 1 4 pois 6 5 5 5 5 5 12 5 5 5 5 5 600 16 tentaclehead_missile_1 0
desertfireball 283 1 11 1 1 2 damage radius 16 16 40 6 255 64 64 1 0 1 Fireball 1024 5 16 1 1 1 1 1 1 1 1 1 5 8 fire 6 10 10 10 10 10 9 11 11 11 11 11 600 16 monster_fireball sorceress_fireball_impact_1 explodingarrowexp 0
brdeathcontrol 284 21 1 20 radius 375 6 255 255 255 25 0 0 null 1024 2 16 1 1 1 8 1 brdeathlightningbolt 0
brdeathlightningbolt 285 22 1 3 retarget frame 32 32 20 4 255 255 255 0 0 2 null 1024 2 16 1 1 2 1 1 1 1 4 8 64 1 amazon_lightning_1 brdeathlightninghit 0
brdeathlightninghit 286 1 1 12 4 255 255 255 0 0 1 LightningStrike 1024 8 16 1 7 1 1 1 8 ltng 2 4 4 4 4 4 5 4 4 4 4 4 64 32 0
denofevillight 287 23 1 300 10 255 255 255 0 0 1 LightBeams 1024 21 16 1 1 8 4 0
cairnstones 288 24 17 32 40 Fade frames 2 Lightning delay 17 radius 38 destination level 100 portal delay 40 Fade frames 2 Lightning delay 17 radius 300 255 255 255 0 0 1 null 1024 2 16 1 1 1 1 1 8 64 1 cairnstonessky cairn stones bolt cairnstonesground 0
cairnstonessky 289 1 1 5 255 255 255 0 0 1 null 1024 2 16 3 1 1 2 1 1 1 1 8 ltng 1 6 64 1 0
cairnstonesground 290 8 1 3 Subloops 20 20 30 255 255 255 0 0 1 null 1024 2 16 1 1 1 8 64 1 lightninghit 0
towermist 291 25 1 10 dest radius 3 init radius 1 frequency 2 2 400 2 255 255 255 0 0 1 null 1024 2 16 1 1 1 1 1 8 1 countess_mist_loop towermisttrail 0
towermisttrail 292 1 1 3 3 50 2 255 255 255 0 0 1 mist 1024 14 16 1 1 8 1 countess_mist_loop towermistfade 0
brdeathsmokes1 293 1 1 60 0 0 0 40 0 1 BRSmokeS1 1024 20 16 1 1 1 1 1 8 1 brdeathsmokenu 0
brdeathsmokenu 294 1 1 340 0 0 0 0 0 1 BRSmokeNU 1024 20 16 1 1 1 1 1 8 1 brdeathsmokedt 0
brdeathsmokedt 295 1 1 20 0 0 0 0 0 1 BRSmokeDT 1024 20 16 1 1 1 1 1 8 1 0
brdeathspirits1 296 1 1 60 4 255 255 255 40 0 1 BRSpiritS1 1024 20 16 1 1 1 1 1 8 1 bloodraven_mist_begin brdeathspiritnu 0
brdeathspiritnu 297 1 1 340 4 255 255 255 0 0 1 BRSpiritNU 1024 20 16 1 1 1 1 1 8 1 bloodraven_mist_loop brdeathspiritdt 0
brdeathspiritdt 298 1 1 20 4 255 255 255 0 0 1 BRSpiritDT 1024 20 16 1 1 1 1 1 8 1 bloodraven_mist_end 0
mephistodeathcontrol 299 26 1 16 firewall frequency 4 rock frequency 20 radius 275 6 255 255 255 0 0 0 null 1024 2 16 1 1 1 1 8 1 mephistofirewallmaker mephistoflyingrocksbig 0
mephistofirewallmaker 300 27 1 4 retarget frame 8 8 50 5 255 178 64 0 0 1 groundFireSmall 1024 2 16 1 1 2 1 1 1 1 1 1 8 32 1 mephistofirewall 0
mephistofirewall 301 5 1 25 5 4 255 178 64 0 0 0 groundFireSmall 1024 37 16 1 12 36 1 1 1 1 1 8 32 1 object_fire_loop_magic 0
mephistoflyingrocksbig 302 1 33 1 20 radius 12 12 10 3 0 0 0 0 0 1 ExplosionSpark 1024 16 16 1 1 1 8 1 sorceress_firebolt_1 mephistoexplosionbig mephistoflyingrockssmall 0
mephistoexplosionbig 303 1 1 12 13 255 178 64 0 0 0 FireArrowExplode2 1024 12 16 5 1 1 1 8 1 sorceress_fireball_impact_1 0
mephistoflyingrockssmall 304 1 1 12 12 5 3 0 0 0 0 0 1 ExplosionSparkSmall 1024 16 16 1 1 1 8 1 mephistoexplosionsmall 0
mephistoexplosionsmall 305 1 1 12 13 255 178 64 0 0 0 FireArrowExplode2 1024 12 16 5 1 1 1 8 1 sorceress_firebolt_impact_1 0
mephistodonotdraw 306 28 34 1 15 active frame 70 0 0 0 0 0 0 null 1024 2 16 1 1 1 8 1 corpseexplosion 0
andycontrol0 307 29 1 25 firewall frequency 7 screen shake seconds 350 0 0 0 0 0 0 null 1024 2 16 1 1 1 1 8 1 andycolumnfirebase andyfirewallmaker andyfallingdebris1 0
andyfirewallmaker 308 27 1 4 retarget frame 8 8 50 8 255 178 64 0 0 1 groundFireSmall 1024 2 16 1 1 2 1 1 1 1 1 1 8 32 1 andyfirewall 0
andyfirewall 309 5 1 25 5 4 255 178 64 0 0 0 groundFireSmall 1024 37 16 1 12 36 1 1 1 1 1 8 32 1 0
andycolumnfirebase 310 5 1 25 5 4 255 178 64 0 0 0 groundFireMedium 1024 37 16 1 12 36 1 1 1 1 1 8 32 1 andariel_fire_loop andariel_fire_end andycolumnfire 0
andycolumnfire 311 1 1 -30 z offset 6 z vel max 3 z accel 15 192 128 128 0 0 0 AndarielFlameDeath 1024 15 16 1 1 1 1 8 1 andariel_fire_loop 0
andyfallingdebris1 312 1 19 1 200 fall distance 25 fall speed 8 0 0 0 0 0 0 CeilingChunkFall01 1024 1 16 1 1 1 8 1 andyfallingdebris3 andydebrisexplosion1 andydebrisexplosion5 0
andyfallingdebris2 313 1 19 1 200 fall distance 25 fall speed 8 0 0 0 0 0 0 CeilingChunkFall02 1024 1 16 1 1 1 8 1 andydebrisexplosion1 andydebrisexplosion5 0
andyfallingdebris3 314 1 19 1 200 fall distance 25 fall speed 8 0 0 0 0 0 0 CeilingChunkFall03 1024 1 16 1 1 1 8 1 andydebrisexplosion1 andydebrisexplosion5 0
andydebrisexplosion1 315 1 1 11 0 0 0 0 0 0 CeilingChunkVanish01 1024 11 16 1 1 1 8 1 andariel_rock_1 0
andydebrisexplosion2 316 1 1 11 0 0 0 0 0 0 CeilingChunkVanish02 1024 11 16 1 1 1 8 1 andariel_rock_1 0
andydebrisexplosion3 317 11 1 11 0 0 0 0 0 0 CeilingChunkRemain01 1024 11 16 1 1 1 8 1 andariel_rock_1 0
andydebrisexplosion4 318 11 1 11 0 0 0 0 0 0 CeilingChunkRemain02 1024 11 16 1 1 1 8 1 andariel_rock_1 0
andydebrisexplosion5 319 11 1 11 0 0 0 0 0 0 CeilingChunkRemain03 1024 11 16 1 1 1 8 1 andariel_rock_1 0
willowisplightningbolt 320 8 1 3 Subloops 32 32 40 8 178 178 255 1 0 2 null 1024 2 16 3 1 1 2 1 1 1 1 4 8 128 ltng 64 1 monster_lightning_1 lightninghit 0
queenpoisoncloud 321 1 1 8 64 1 92 4 64 255 64 16 0 0 poisonNova 1024 30 16 3 1 1 1 1 1 1 1 1 1 4 pois 6 6 6 6 6 6 16 6 6 6 6 6 800 32 object_poison_loop 0
dirt pile 322 2 128 255 255 255 0 0 0 SandMaggotDirtPile 1024 1 16 1 1 1 8 8 0
undeadmissile1 323 1 1 20 20 40 9 255 255 255 1 0 1 SkullPoison 1024 12 16 3 1 1 1 1 1 1 1 1 4 pois 10 12 14 14 14 14 10 12 14 14 14 14 350 16 monster_poisonbolt 0
undeadmissile2 324 1 1 20 20 40 9 255 255 255 1 0 1 SkullFire 1024 12 16 3 1 1 1 1 1 1 1 1 4 8 fire 9 12 14 16 16 16 18 12 14 16 16 16 8 monster_firebolt_1 sorceress_fireball_impact_1 0
undeadmissile3 325 1 1 20 20 40 9 255 255 255 1 0 1 SkullIce 1024 12 16 3 1 1 1 1 1 1 1 1 4 8 cold 7 12 14 16 16 16 14 12 14 16 16 16 40 16 monster_icebolt_1 sorceress_iceblast_impact_1 0
undeadmissile4 326 1 1 20 20 40 9 255 255 255 1 0 1 SkullUnholy 1024 12 16 3 1 1 1 1 1 1 1 1 4 8 7 10 10 11 11 11 11 10 10 11 11 11 16 monster_poisonbolt 0
bonespiritexplode 327 1 1 12 255 255 255 0 0 0 BoneSpiritExplode 1024 13 16 1 1 1 1 0
dopplezonexplode 328 1 1 25 255 255 255 0 0 0 DopplezonExplode 1024 25 16 1 1 1 1 0
monbonespirit 329 7 13 7 10 5 Retarget Frame 5 Retarget Frame 12 12 128 3 255 255 255 1 0 1 BoneSpirit 1024 8 16 3 1 1 -30 1 1 1 1 1 1 4 8 mag 10 9 9 9 9 9 15 9 9 9 9 9 8 monster_bonespirit paladin_holybolt_impact_1 bonespiritexplode 0
towermistfade 330 1 1 128 1 255 255 255 0 0 0 Mist_fade 1024 14 16 1 1 8 1 0
countessfirewall 331 5 5 1000 1 5 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 3 1 1 1 1 fire 3 4 4 4 4 4 5 4 4 4 4 4 1 41 object_fire_loop_magic 0
towerchestspawner 332 30 18 33 150 start delay 2 spawn interval divisor 5 radius 150 start delay 2 spawn interval divisor 5 radius 400 1 15 192 192 255 0 0 0 null 1024 2 16 1 1 1 8 1 towermisttrail 0
hellmeteorlaunch1 333 1 1 22 255 255 255 0 0 0 meteorlavaburst 1024 11 16 8 1 0
hellmeteorlaunch2 334 1 1 22 255 255 255 0 0 0 meteorlavaburst2 1024 11 16 1 8 1 0
hellmeteorup 335 1 1 50 255 255 255 0 0 1 meteorlavaup 1024 9 16 1 8 1 0
hellmeteordown 336 1 36 1 13 5 radius 1 length (does nothing) 5 radius 25 variable duration 75 density 225 5 255 255 255 0 0 1 meteorlavadown 1024 9 16 1 1 1 9 8 fire 5 5 5 5 5 5 15 5 5 5 5 5 1 firewall firesmall firemedium 0
hellmeteorball 337 1 1 225 5 255 255 255 0 0 1 meteorlavarock 1024 9 16 8 1 0
horadricstaff 338 31 1 440 255 255 255 0 0 1 HoradricStaff 1024 8 16 1 1 8 1 quest_horadric_staff_spin 0
horadriclightning 339 1 1 20 20 30 3 255 255 255 0 0 1 LightningStrike 1024 8 16 1 1 8 64 32 monster_lightning_1 0
horadriclight 340 1 1 225 2 255 255 255 0 0 1 HoradricLightBeamstreaks 1024 1 16 1 1 8 32 quest_horadric_staff_light 0
regurgitatorcorpse 341 1 1 14 14 200 2 255 64 64 1 0 1 SlugMissile 1024 12 16 3 1 1 1 1 1 1 1 1 1 4 8 25 15 15 15 15 15 55 15 15 15 15 15 176 8 1 tentaclehead_missile_1 regurgitatorcorpseexpl 0
regurgitatorcorpseexpl 342 1 1 12 13 255 64 64 0 0 0 Slug Missile Explode 1024 12 16 1 1 1 1 1 1 1 4 8 1 1 0
highpriestlightning 343 1 1 20 20 15 1 255 64 64 0 0 0 HighPriestLightning 1024 9 16 3 1 1 1 1 1 1 1 4 8 ltng 8 12 12 12 12 12 30 14 14 14 14 14 8 monster_lightning_1 0
icebreaksmallmelt 344 1 1 150 255 255 255 0 0 0 IceBreakSmallMelt 1024 12 16 1 1 8 4 0
icebreaklargemelt 345 1 1 150 255 255 255 0 0 0 IceBreakLargeMelt 1024 12 16 1 1 8 4 0
leapknockback 346 1 1 2 0 0 0 0 0 0 null 1024 2 16 3 1 2 1 1 8 8 1 0
radamentdeath 347 32 19 400 15 255 255 255 0 0 0 null 1024 2 16 3 1 1 8 1 0
radamenthandofgod 348 1 37 1 21 0 0 0 0 0 0 HandOfGod 1024 21 16 3 1 1 1 8 1 paladin_handofgod_bolt 0
radamentholybolt 349 1 1 12 12 50 255 255 255 0 0 1 HolyBoltMissile 1024 16 16 3 1 1 1 1 1 1 8 8 1 quest_radament_holybolt_1 0
taintedsuncontrol 350 33 1 300 255 255 255 0 0 1 null 1024 2 16 1 8 1 0
taintedsunflash 351 1 38 1 12 4 255 255 255 0 0 1 yellowBallGlowIntro 1024 12 16 1 1 1 8 1 quest_tainted_sun_flash_1 0
taintedsunball 352 34 1 12 12 300 255 255 255 0 0 1 yellowBallGlow2 1024 10 16 1 1 8 1 quest_tainted_sun_ball_1 0
queendeathcenter 353 35 1 100 255 255 255 0 0 1 null 1024 2 16 1 8 1 0
queendeathglob 354 1 39 1 6 6 20 255 255 255 0 0 0 QueenDeathGuts 1024 11 16 1 1 1 8 4 sandmaggotmama_goo_1 0
queendeathsplat1 355 11 1 50 255 255 255 0 0 0 QueenDeathPuddle 1024 5 16 1 8 4 sandmaggotmama_goo_hit_1 0
queendeathsplat2 356 11 1 50 255 255 255 0 0 0 QueenDeathPuddle2 1024 5 16 1 8 4 sandmaggotmama_goo_hit_1 0
healingbolt 357 1 40 1 14 14 30 2 222 222 255 1 0 1 HolyBoltMissile 1024 16 16 3 1 1 1 1 1 1 8 1 0
mephistoholedelay 358 1 1 50 0 0 0 0 0 0 null 1024 2 16 1 1 8 1 mephistoholebirth 0
mephistoholebirth 359 1 1 25 0 0 0 0 0 0 smithholebirth 1024 21 16 1 1 1 8 1 mephistoholeneutral 0
mephistoholeneutral 360 1 1 225 0 0 0 0 0 1 smithholeneutral 1024 21 16 1 1 1 8 1 mephistoholedeath 0
mephistoholedeath 361 1 1 25 0 0 0 0 0 0 smithholedeath 1024 21 16 1 1 1 8 1 mephistoholedead 0
mephistoholedead 362 11 1 400 0 0 0 0 0 1 smithholedead 1024 1 16 1 1 1 8 1 0
durieldeathcontrol 363 36 1 400 0 0 0 0 0 1 null 1024 2 16 1 8 1 0
durieldeathrock 364 1 41 1 40 0 0 0 0 0 1 Rock_large 1024 5 16 1 1 8 4 andariel_rock_1 0
durieldeathdebris 365 1 1 12 12 40 0 0 0 0 0 1 Rock_small 1024 5 16 1 1 8 4 0
durieldeathsmoke 366 1 1 25 0 0 0 0 0 0 FireSmoke 1024 26 16 1 1 1 8 4 0
mephistoexplosion 367 1 1 12 255 255 255 0 0 0 MephistoMissileExplosion 1024 12 16 1 1 1 0
orbmist 368 25 1 35 10 dest radius 3 init radius 1 frequency 2 2 400 2 255 125 125 0 0 1 null 1024 2 16 1 1 1 1 1 8 1 compellingorb_mist_loop orbmisttrail 0
orbmisttrail 369 1 1 3 3 50 2 255 125 125 0 0 1 mist_Fade_Orb_Loop 1024 14 16 1 1 1 1 8 1 compellingorb_mist_loop orbmistfade 0
orbmistfade 370 1 1 3 3 15 2 255 125 125 0 0 0 mist_Fade_Orb 1024 14 16 1 1 8 1 0
pilum 371 1 1 24 24 40 255 255 255 0 0 0 Pilum 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
diablo appears 372 37 1 300 255 255 255 0 0 0 null 1024 1 16 1 1 0
hfcontrol 373 38 1 200 8 255 255 255 0 0 0 null 1024 1 16 1 1 1 1 1 0
hffragment1 374 39 42 1 6 6 16 255 255 255 0 0 1 SoulForgeShard 1024 47 16 1 8 30 1 1 1 1 1 quest_hellforge_flash_1 0
hffragment2 375 39 43 1 25 255 255 255 0 0 1 SoulForgeShard 1024 47 16 1 8 30 1 1 1 1 1 quest_hellforge_flash_1 0
hffragment3 376 40 1 10 255 255 255 0 0 1 SoulForgeShard 1024 47 16 1 8 30 1 1 1 1 1 quest_hellforge_flash_1 0
hfspirit1 377 41 1 8 4 55 255 255 255 0 0 1 SoulForgeRisingSoul 1024 33 16 1 8 19 1 1 1 1 1 quest_hellforge_soul_1 0
hfreserved3 378 1 1 255 255 255 0 0 0 null 1024 1 16 1 1 1 1 1 0
izual control 379 42 1 25 Lightning Start 150 Lightning Stop 200 255 255 255 0 0 0 null 1024 1 16 1 1 0
izual mist loop 380 1 1 4 4 50 2 255 255 255 0 0 0 IzualDeathClouds 1024 16 16 1 1 1 1 1 8 1 izual_mist_loop izual mist fade 0
izual mist fade 381 1 1 15 255 255 255 0 0 0 null 1024 1 16 1 1 8 1 0
izual lightning 382 1 1 3 3 50 2 255 255 255 0 0 0 IzualDeathParticles 1024 25 16 3 1 1 1 1 1 1 8 8 1 0
izual lightning trail 383 1 1 3 3 50 255 255 255 0 0 0 null 1024 1 16 3 1 1 1 1 1 1 8 8 1 0
cairn stones bolt 384 1 1 280 drop height 70 drop speed 9 10 255 255 255 0 0 1 LightningboltBig 1024 8 16 3 1 3 1 1 1 1 1 4 1 amazon_lightning_1 0
bomb in air 385 1 44 1 36 12 12 50 255 255 255 1 0 1 expansion\FireTraumaMissile 1024 20 16 6 1 1 1 1 1 8 1 bomb on ground bomb on ground 0
bomb on ground 386 1 1 3 0 radius (0 = aurarng calc from skill) 5 255 255 255 0 0 0 expansion\FireTraumaGround 1024 1 16 6 1 1 1 1 1 1 1 1 1 1 Fire Trauma 5 2 8 1 bomb explosion 0
bomb explosion 387 1 1 20 5 255 178 64 0 0 0 expansion\FireTraumaXplosion 1024 20 16 3 1 1 1 1 1 1 1 5 2 8 1 sorceress_firebolt_impact_1 0
shock field in air 388 1 44 1 36 12 12 50 255 255 255 1 0 0 expansion\caltrops 1024 8 16 1 7 6 1 1 1 1 1 8 32 shock field on ground shock field on ground 0
shock field on ground 389 1 1 90 3 255 255 255 0 0 1 Expansion\ShockField 1024 10 16 1 3 1 1 1 1 25 2 1 1 1 Shock Field 8 8 assassin_staticfield 0
throwingstar 390 1 1 24 24 100 50 255 255 255 1 0 1 expansion\ThrowingStarMissile 1024 7 16 1 4 7 3 1 1 1 1 1 1 1 1 Tiger Strike 4 8 32 0
acidspray 391 1 1 60 frames that acid lasts 12 12 6 2 255 255 255 1 0 1 frogpoisonmissile 1024 7 16 3 1 1 1 1 1 1 1 1 1 Cobra Strike 4 8 16 0
blade creeper 392 43 20 37 10 5 255 255 255 1 0 0 null 1024 2 16 3 1 25 3 1 1 1 1 Blade Sentinel 4 8 1 1 bladecreeper_emerge_1 0
distraction 393 44 21 100 255 255 255 1 0 1 BigheadLightningMissile 1024 3 16 1 1 1 1 1 distraction fog distraction fog 0
distraction fog 394 45 1 36 spawn rate 1 number 6 radius 10 5 255 255 255 1 0 1 null 1024 2 16 3 3 1 1 Quickness 1 distraction puff 0
distraction puff 395 1 1 25 255 255 255 0 0 0 FireSmoke 1024 26 16 1 1 1 1 1 4 8 4 0
distraction start 396 1 1 11 255 255 255 1 0 0 ExpArrowExplode 1024 11 16 3 1 3 1 1 1 4 8 1 0
distraction end 397 1 1 11 255 255 255 1 0 0 ExpArrowExplode 1024 11 16 3 1 3 1 1 1 4 8 1 0
impinfernoflame1 398 1 1 8 "Mana Use, 16ths." 16 Minimum range 20 20 80 255 178 64 1 0 0 Flamethrower 1024 15 16 3 1 1 1 1 Imp Inferno 32 1 sorceress_inferno 0
impinfernoflame2 399 1 1 8 "Mana Use, 16ths." 16 Minimum range 20 20 80 255 178 64 1 0 0 Flamethrower2 1024 15 16 3 1 1 1 1 Imp Inferno 32 1 sorceress_inferno 0
baallightningbolt 400 1 1 25 255 255 255 2 0 2 null 1024 2 16 6 1 1 1 1 1 1 1 Lightning 4 1 0
baallightningtrail 401 1 5 255 255 255 2 0 2 expansion\lightningpiece 1024 1 16 6 1 1 1 1 1 1 Lightning 8 monster_lightning_1 0
baallightningbolt2 402 1 25 255 255 255 2 0 2 null 1024 2 16 6 1 1 1 1 1 1 1 Lightning 4 1 monster_lightning_1 0
baallightningtrail2 403 1 5 255 255 255 2 0 2 expansion\lightningpiece 1024 1 16 6 1 1 1 1 1 1 Lightning 8 monster_lightning_1 0
impfireball 404 1 1 1 5 damage radius 18 18 50 255 178 64 1 0 1 expansion\ImpFireball 1024 20 16 6 1 1 1 1 1 1 1 1 5 2 8 fire 15 5 10 15 15 15 35 5 10 15 15 15 1 imp_missile_1 sorceress_fireball_impact_1 impfireballexplode 0
impfireballexplode 405 1 12 255 178 64 0 0 0 ExpArrowExplode 1024 11 16 1 1 1 1 1 1 1 1 5 2 8 1 0
catapultchargedball on 406 43 10 255 255 255 0 0 1 BigheadLightningMissile 1024 3 16 1 1 1 1 8 1 0
catapultchargedball 407 1 46 1 38 4 Charged bolts 2 Charged bolts per level 4 Charged bolts 2 Charged bolts per level 25 5 143 143 255 5 0 1 BigheadLightningMissile 1024 3 16 6 1 1 1 1 1 1 1 8 1 amazon_lightning_1 catapultchargedballbolt catapultchargedballbolt 0
catapultchargedballbolt 408 1 10 1 12 12 20 3 4 255 255 255 1 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 1 Charged Bolt 4 ltng 9 4 3 3 3 3 14 4 3 3 3 3 16 sorceress_chargedbolt_1 lightning 0
imp spawn monsters 409 1 1 39 12 255 178 64 0 0 0 ExpArrowExplode 1024 11 16 1 1 1 1 1 1 1 1 4 8 1 0
catapult spike ball on 410 43 50 255 255 255 1 0 0 Meteor 1024 12 16 1 1 8 1 0
catapult spike ball 411 1 47 1 40 0 spikes (0 = skill) 0 spikes per lvl 0 spikes (0 = skill) 0 spikes per lvl 25 255 255 255 1 0 0 Meteor 1024 12 16 1 7 6 1 1 1 8 1 sorceress_fireball_impact_1 catapult spike in air catapult spike in air fireexplode 0
catapult spike in air 412 1 44 1 36 12 12 50 255 255 255 1 0 0 expansion\FireSpikes 1024 8 16 1 7 6 1 1 1 1 1 8 32 catapult spike on ground catapult spike on ground 0
catapult spike on ground 413 1 1 180 255 255 255 0 0 1 expansion\FireSpikesGround 1024 8 16 1 1 1 1 1 1 1 1 8 fire 10 1 1 1 1 1 21 1 1 1 1 1 32 catapult spike explosion 0
catapult spike explosion 414 1 36 255 255 255 0 0 0 expansion\FireSpikeExplode 1024 14 16 1 1 1 1 1 1 1 1 8 1 sorceress_firebolt_impact_1 0
catapult cold ball on 415 43 1 50 255 255 255 1 0 1 IceOrb 1024 16 16 1 1 1 8 1 0
catapult cold ball 416 1 48 1 1 3 damage radius 25 5 143 143 255 5 0 1 IceOrb 1024 16 16 6 1 1 1 1 1 1 1 8 cold 8 5 5 5 5 5 14 5 5 5 5 5 100 25 25 25 1 sorceress_glacialspike_1 sorceress_iceblast_impact_1 0
catapult cold explosion 417 1 31 1 6 6 15 255 255 255 0 0 0 IceBreakLarge 1024 15 16 6 1 1 1 1 1 1 1 1 4 8 1 0
catapult plague ball on 418 43 1 50 255 255 255 0 0 1 expansion\catapultpoisonbomb 1024 10 16 1 1 1 8 1 0
catapult plague ball 419 1 2 1 2 2 ring 2 density 2 ring 1 density 3 subloops 2 ring 2 density 2 ring 1 density 3 subloops 25 5 143 143 255 0 0 1 expansion\catapultpoisonbomb 1024 10 16 6 1 1 1 1 1 1 1 8 1 weapon_throw_1 sandmaggotmama_goo_1 catapult plague cloud catapult plague cloud 0
catapult plague cloud 420 4 1 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 80 128 255 128 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 2 1 1 3 pois 8 1 1 1 1 1 13 1 1 1 1 1 600 1 poisonpuff 0
catapult meteor ball on 421 43 1 50 255 255 255 1 0 0 Meteor 1024 12 16 1 1 1 8 1 0
catapult meteor ball 422 1 50 1 14 1 increment 10 # rocks 15 lob velocity 25 5 143 143 255 5 0 1 Meteor 1024 12 16 6 1 1 1 1 1 1 1 5 2 8 fire 10 2 2 2 2 2 11 2 2 2 2 2 1 sorceress_fireball_impact_1 catapult meteor fire moltenboulder-flyingrocks catapult meteor fire 0
catapult meteor fire 423 5 5 90 25 5 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 3 1 1 2 1 4 fire 7 2 1 1 1 1 16 2 1 1 1 1 32 1 41 0
tower death 424 11 1 255 255 255 0 0 0 expansion\TowerDebris 1024 1 16 1 8 1 0
healing vortex 425 1 1 43 12 12 100 25 5 255 178 64 4 0 1 expansion\overseer_missile 1024 8 16 3 1 1 1 1 1 1 1 Healing Vortex 8 8 overseer_healmissile paladin_holybolt_1 healing 0
suicidecorpseexplode 426 1 1 13 255 178 64 0 0 0 CorpseExplodeGuts 1024 13 16 1 1 1 1 1 8 4 1 0
suicidefireexplode 427 1 1 13 255 178 64 0 0 0 Fsexplode 1024 15 16 1 1 1 1 1 1 8 16 0
suicideiceexplode 428 1 1 13 255 178 64 0 0 0 FreezeExplodeCenter 1024 15 16 1 1 1 1 1 1 8 1 0
explodingjavalin 429 1 1 44 2 damage radius 24 24 40 255 255 255 1 0 0 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 1 4 2 8 128 fire 8 16 6 32 explodingjavalinexp 0
explodingjavalinexp 430 1 1 25 25 12 15 255 178 64 0 0 0 ExpArrowExplode 1024 11 16 1 1 1 1 1 1 5 2 8 1 0
lightingtrailingjavalin 431 46 51 22 45 3 subloops 3 subloops 10 bolts 1 random path 10 bolts 1 random path 24 24 40 255 255 255 1 0 0 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 4 8 128 6 32 lightjavalinexplosion lightjavalintrail lightjavalinexplosion lightjavalintrail lightjavalinexplosion 0
lightjavalintrail 432 1 1 12 12 20 3 4 255 255 255 2 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 1 4 64 16 0
lightjavalinexplosion 433 1 1 12 12 20 3 4 255 255 255 2 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 1 5 2 64 16 0
icejavalin 434 1 1 44 1 damage radius 24 24 40 255 255 255 1 0 0 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 1 8 128 6 32 icejavalinexplode 0
icejavalinexplode 435 1 1 16 11 81 81 255 0 0 0 IceArrowExplode 1024 16 16 1 1 1 1 1 1 1 5 2 8 1 0
plaguejavelin2 436 1 2 1 2 1 ring 2 density 2 ring 1 density 3 subloops 1 ring 2 density 2 ring 1 density 3 subloops 24 24 40 255 255 255 1 0 0 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 1 1 1 8 128 6 32 plaguejavlinexplode plaguejavlinexplode plaguejavlinexplode 0
plaguejavlinexplode 437 4 1 24 spawn rate 1 number 6 radius 15 25 255 255 255 0 0 0 PoisonSmokePuff 1024 26 16 1 1 1 1 1 1 5 2 8 4 poisonpuff 0
advlighttrailingjav 438 46 51 22 45 3 subloops 3 subloops 18 bolts 1 random path 18 bolts 1 random path 24 24 40 255 255 255 1 0 0 Javelin 1024 1 16 3 1 1 1 1 1 1 1 1 8 128 6 32 advlightjavexplode advlighttrailingjav2 advlightjavexplode advlighttrailingjav2 advlightjavexplode 0
advlighttrailingjav2 439 1 1 12 12 20 3 4 255 255 255 2 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 4 64 16 0
advlightjavexplode 440 1 1 12 12 20 3 4 255 255 255 2 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 5 2 64 16 0
sucfireball 441 68 23 1 3 subloops 3 subloops 3 damage radius 18 18 50 10 255 178 64 1 0 1 Fireball 1024 5 16 3 1 1 1 1 1 1 1 1 Fire Ball 4 fire 16 sucfireballtrail 0
sucfireballexplode 442 1 1 12 13 255 178 64 0 0 0 FireArrowExplode2 1024 12 16 5 1 1 1 1 1 1 1 4 8 1 0
sucfireballtrail 443 1 1 36 5 4 255 178 64 0 0 1 groundFiresmall 1024 37 16 1 12 36 3 1 1 1 1 1 1 Firestorm 4 32 1 0
sucshockfieldmissile 444 1 1 30 30 25 6 255 255 255 0 0 1 LightningJavelin 1024 5 16 3 1 1 1 2 1 1 1 1 1 Lightning Bolt 4 64 16 0
sucshockfieldmissileexp 445 1 1 13 0 0 0 0 0 0 teethexplode 1024 13 16 1 1 1 8 1 0
sucshockfield 446 1 1 36 5 255 178 64 0 0 0 expansion\FireSpikeExplode 1024 14 16 3 1 1 1 1 1 8 1 0
hellfiremissile 447 1 1 60 0 0 0 0 0 1 MeteorTail 1024 12 16 1 1 1 1 8 1 0
hellfireexa 448 1 1 12 255 255 255 0 0 0 BoneSpiritExplode 1024 13 16 1 1 1 0
hellfireexb 449 1 1 25 255 255 255 0 0 0 DopplezonExplode 1024 25 16 1 1 1 0
imp charged bolt 450 1 1 12 12 98 3 4 255 255 255 1 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 4 ltng 10 3 3 3 3 3 20 3 3 3 3 3 16 sorceress_chargedbolt_1 0
imp teleport 451 1 1 1 15 14 255 255 255 0 0 0 expansion\impteleport 768 13 16 1 1 1 1 8 1 0
moltenboulder 452 47 52 6 47 14 3 explosion radius 4 no light freq 0 radius (0 = skill) 1 increment 10 # rocks 15 lob velocity 1 size 50 knockback% 4 4 100 255 178 64 0 0 1 expansion\MoltenBoulderRoll 1024 10 16 8 1 1 2 1 1 1 1 1 Molten Boulder 5 2 32 8 druid_boulderloop sorceress_fireball_1 moltenboulderfirepath moltenboulderfirepath firewall firesmall firemedium moltenboulderexplode moltenboulder-flyingrocks moltenboulderfirepath 0
moltenboulderemerge 453 1 53 1 48 3 explosion radius 2 bounces 50 damping 10 lob 3 3 5 255 178 64 5 0 0 expansion\MoltenBoulderEmerge 1024 6 16 8 1 1 2 1 1 1 32 8 druid_bouldereremerge moltenboulder moltenboulder 0
moltenboulderexplode 454 1 13 255 178 64 0 0 0 null 1024 1 16 2 1 1 1 1 32 1 druid_boulderexplode_1 0
moltenboulderfirepath 455 5 5 37 5 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 8 1 2 1 1 2 fire 10 6 7 8 9 10 14 6 7 8 9 10 skill('Firestorm'.blvl)*8 32 1 41 object_fire_loop_house 0
moltenboulder-flyingrocks 456 1 16 255 178 64 0 0 1 expansion\MoltenFragmentD 1024 16 16 8 1 1 1 1 1 32 8 impact_fire_1 0
firestorm 457 5 1 15 5 4 255 178 64 0 0 1 groundFiresmall 1024 37 16 1 12 36 3 2 1 1 1 Firestorm 32 1 41 object_fire_loop_house 0
firestormmaker 458 6 23 4 no light freq 8 8 40 255 255 255 0 0 1 expansion\FirestormEmitter 1024 16 16 8 1 1 2 1 1 1 object_fire_loop_house firestorm firestorm firesmall firemedium 0
arcticblast1 459 1 1 8 "Mana Use, 16ths." 7 Minimum range 12 12 30 255 255 255 1 0 0 expansion\ArcticBlastIce 1024 16 16 3 1 1 1 1 1 Arctic Blast 4 32 16 41 druid_arcticblast 0
arcticblast2 460 1 1 8 "Mana Use, 16ths." 7 Minimum range 12 12 30 255 255 255 1 0 0 expansion\ArcticBlastIce_2 1024 16 16 3 1 1 1 1 Arctic Blast 4 32 16 41 druid_arcticblast 0
erruption center 461 48 25 80 255 255 255 0 0 1 null 1024 2 16 1 1 1 1 1 1 1 erruption crack 1 erruption crack 1 erruption smoke 1 0
erruption crack 1 462 1 1 8 84 5 255 178 64 0 0 1 expansion\EruptionCrack 512 41 16 3 1 1 1 1 5 3 25 1 1 Eruption 32 4 sorceress_inferno fire_hit 0
erruption crack 2 463 1 1 8 84 5 255 178 64 0 0 1 null 1024 2 16 3 1 1 1 1 5 3 1 1 Eruption 32 1 sorceress_inferno fire_hit 0
erruption smoke 1 464 1 1 84 255 255 255 0 0 1 expansion\EruptionSmoke 512 41 16 25 1 1 0
erruption smoke 2 465 1 1 84 255 255 255 0 0 1 null 1024 2 16 1 1 0
vine beast walk 1 466 1 1 Mana added min 3 Mana added max 200 255 255 255 0 0 0 expansion\Pod_walk_1 1024 31 16 1 1 2 1 1 1 1 32 8 druidpod_walk1_1 vine beast walk 1 fade 0
vine beast walk 2 467 1 1 Mana added min 3 Mana added max 200 255 255 255 0 0 0 expansion\Pod_walk_2 1024 31 16 1 1 2 1 1 1 1 32 8 druidpod_walk2_1 vine beast walk 2 fade 0
vine beast neutral 468 1 1 Mana added min 3 Mana added max 200 255 255 255 0 0 0 expansion\Pod_neutral_1 1024 31 16 1 1 2 1 1 1 1 32 1 druidpod_neutral_1 vine beast neutral fade 0
vine beast attack 469 11 1 Mana added min 3 Mana added max 75 255 255 255 0 0 0 expansion\Pod_attack_1 768 51 16 1 1 2 1 1 1 32 4 0
vine beast death 470 11 1 Mana added min 3 Mana added max 51 255 255 255 0 0 0 expansion\Pod_death_1 1024 21 16 1 1 2 1 1 1 32 4 0
vines 471 49 26 9 Drop Trail delay 9 Drop Trail delay 7 7 20 255 255 255 0 0 1 null 1024 1 16 1 1 vines trail vines trail 0
vines trail 472 1 54 1 16 100 25 255 255 255 0 0 0 Expansion\vines 128 12 16 3 1 1 3 1 1 8 vines wither 0
vines wither 473 1 1 16 100 255 255 255 0 0 0 Expansion\Vines_Death 128 12 16 1 1 0
plague vines 474 49 26 9 Drop Trail delay 9 Drop Trail delay 7 7 20 255 255 255 0 0 1 null 1024 1 16 1 1 plague vines trail plague vines trail 0
plague vines trail 475 1 54 1 50 15 Hit delay 100 25 255 255 255 0 0 0 Expansion\vines 128 12 16 3 1 1 1 3 1 1 Plague Poppy 8 plague vines wither 0
plague vines wither 476 1 1 100 255 255 255 0 0 0 Expansion\Vines_Death 128 12 16 1 8 0
twister 477 1 1 9 0 stun len (0 = skill) 10 10 50 255 255 255 0 0 1 expansion\twister 1024 40 16 1 18 36 3 1 1 25 2 1 1 1 1 1 Twister 4 32 4 druid_twister sorceress_blizzard_impact_1 0
tornado 478 1 27 0 damage freq (0 = look at skill) 0 radius (0 = look at skill) 8 8 75 255 255 255 0 0 1 expansion\tornado 1024 40 16 1 12 36 3 1 1 1 25 3 1 1 1 1 1 Tornado 5 2 32 1 druid_tornado sorceress_blizzard_impact_1 0
volcano 479 50 28 0 damage freq (0 = look at skill) 0 radius (0 = look at skill) 2 start frame 128 end frame 30 lob 0 damage freq (0 = look at skill) 0 radius (0 = look at skill) 2 start frame 128 end frame 30 lob 150 0 0 0 0 0 1 Expansion\volcano_base 1024 30 16 1 17 18 3 1 1 1 10 3 1 25 1 1 1 Volcano 4 1 druid_volcano volcano debris 2 volcano debris 2 0
volcano overlay fire 480 1 1 150 10 255 64 64 0 0 1 Expansion\volcano_Fire 1024 30 16 1 6 14 3 3 25 1 1 1 sorceress_inferno 0
volcano debris 2 481 1 55 1 51 14 14 16 0 0 0 0 0 1 expansion\volcano_rock 1024 15 16 1 1 1 1 1 1 1 1 volcano small fire volcano explosion volcano small fire 0
volcano explosion 482 1 1 18 0 0 0 0 0 0 Expansion\rock_lava_explosion 1024 18 16 1 1 1 1 0
volcano small fire 483 1 1 18 0 0 0 0 0 0 Expansion\rock_lava_pool 1024 18 16 3 1 1 5 2 1 1 1 Volcano 4 8 32 1 andariel_fire_loop 0
dragonbreath missile 484 1 1 12 12 15 255 255 255 1 0 1 Expansion\firenova 1024 11 16 1 6 7 3 1 1 1 4 1 1 1 1 Dragon Flight 8 32 16 sorceress_fireball_1 0
lureprojectile 485 1 1 12 12 50 255 255 255 1 0 0 expansion\FireSpikes 1024 8 16 1 7 6 1 1 1 1 8 32 0
lurecenter 486 1 1 25 3 81 81 255 0 0 0 Expansion\LureCloud 1024 26 16 1 1 1 1 8 48 4 0
lurecloud 487 1 1 25 0 0 0 0 0 0 Expansion\LureCloud 1024 26 16 1 1 1 1 8 48 4 0
impmiss1 488 1 1 10 10 80 5 255 64 64 1 0 1 Expansion\impmissile01 1024 10 16 3 1 1 1 1 1 1 1 1 4 8 fire 10 12 12 12 12 12 15 12 12 12 12 12 16 succubus_msissile_1 succubus_msissile_impact shamanexp 0
impmiss2 489 1 1 12 12 80 5 255 64 64 1 0 1 Expansion\impmissile01 1024 10 16 3 1 1 1 1 1 1 1 1 4 8 fire 12 12 12 12 12 12 17 12 12 12 12 12 16 succubus_msissile_1 succubus_msissile_impact shamanexp 0
impmiss3 490 1 1 14 14 80 5 255 64 64 1 0 1 Expansion\impmissile01 1024 10 16 3 1 1 1 1 1 1 1 1 4 8 fire 14 12 12 12 12 12 22 12 12 12 12 12 16 succubus_msissile_1 succubus_msissile_impact shamanexp 0
impmiss4 491 1 1 16 16 80 5 255 64 64 1 0 1 Expansion\impmissile01 1024 10 16 3 1 1 1 1 1 1 1 1 4 8 fire 20 12 12 12 12 12 25 12 12 12 12 12 16 succubus_msissile_1 succubus_msissile_impact shamanexp 0
impmiss5 492 1 1 20 20 80 5 255 64 64 1 0 1 Expansion\impmissile01 1024 10 16 3 1 1 1 1 1 1 1 1 4 8 fire 23 12 12 12 12 12 33 12 12 12 12 12 16 succubus_msissile_1 succubus_msissile_impact shamanexp 0
frozenhorror arcticblast1 493 1 1 8 "Mana Use, 16ths." 7 Minimum range 12 12 30 255 255 255 3 0 0 expansion\ArcticBlastIce 1024 16 16 3 1 1 1 1 1 1 7 cold 3 3 3 3 3 3 4 4 4 4 4 4 100 10 10 10 32 16 druid_arcticblast 0
frozenhorror arcticblast2 494 1 1 8 "Mana Use, 16ths." 7 Minimum range 12 12 30 255 255 255 3 0 0 expansion\ArcticBlastIce_2 1024 16 16 3 1 1 1 1 1 1 16 druid_arcticblast 0
sentrychargedbolt 495 1 10 1 12 12 98 3 4 255 255 255 1 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 1 1 1 1 Charged Bolt Sentry 4 64 16 sorceress_chargedbolt_1 0
sentryspikeinair 496 1 44 1 36 12 12 50 255 255 255 1 0 0 expansion\FireSpikes 1024 8 16 1 7 6 1 1 1 1 1 8 16 sentryspikeonground sentryspikeonground 0
sentryspikeonground 497 1 1 180 60 255 255 255 0 0 1 expansion\FireSpikesGround 1024 8 16 3 1 1 1 1 1 1 1 1 1 Wake of Fire Sentry 8 16 bomb explosion 0
recycler delay 498 51 29 45 active frame 10 launch vines frame 23 active frame 3 extra vines 1 vine radius 47 0 0 0 0 0 0 null 1024 1 16 1 1 necromancer_corpseexp_1 steallife recycler vine recycler explosion 0
recycler vine 499 1 56 1 100 Slow percent 15 Frames 60 255 255 255 0 0 0 Expansion\vines 256 12 16 1 1 8 recycler fade 0
recycler fade 500 1 1 100 255 255 255 0 0 0 Expansion\Vines_Death 256 12 16 1 1 0
recycler explosion 501 11 1 13 5 255 178 64 0 0 0 CorpseExplodeGuts 1024 13 16 1 1 1 1 1 1 8 4 1 0
death mauler 502 1 1 60 255 255 255 0 30 0 expansion\deathmaulerfingers 384 8 16 3 1 1 1 1 10 2 1 1 1 DeathMaul 4 8 16 deathmauler_spikes_1 0
death mauler trail 503 1 44 1 6 spacing 4 Draw delay 36 255 255 255 0 0 0 expansion\deathmaulermissile 4096 31 16 3 1 1 1 2 1 1 DeathMaul 4 8 16 death mauler trail fade 0
death mauler trail fade 504 1 1 6 spacing 4 Draw delay 36 255 255 255 0 0 0 expansion\deathmaulerfadeout 1024 31 16 3 1 1 1 2 1 1 DeathMaul 8 16 0
bladefury1 505 1 1 52 1 increment 1 18 18 22 0 0 0 1 0 0 null 1024 1 16 3 1 1 2 1 1 1 1 1 Blade Fury 4 1 10 1 assassin_bladefury_throw_1 assassin_bladefury_hit bladefragment1 0
bladefragment1 506 1 1 22 22 40 0 0 0 1 1 1 Expansion\bladefury 1024 7 16 3 1 1 1 1 1 1 1 1 Blade Fury 4 1 10 1 assassin_bladefury_throw_1 assassin_bladefury_hit bladefragment1 0
bladefury2 507 1 1 52 1 increment 1 18 18 22 0 0 0 1 0 0 null 1024 1 16 3 1 1 2 1 1 1 1 1 Blade Fury 4 1 10 1 assassin_bladefury_throw_1 assassin_bladefury_hit bladefragment2 0
bladefragment2 508 1 1 22 22 33 0 0 0 1 1 1 Expansion\bladefury_B 1024 7 32 3 1 1 1 1 1 1 1 1 Blade Fury 4 8 1 10 1 assassin_bladefury_throw_1 assassin_bladefury_hit bladefragment2 0
bladefury3 509 1 1 52 1 increment 1 18 18 22 0 0 0 1 0 0 null 1024 1 16 3 1 1 2 1 1 1 1 1 Blade Fury 4 1 10 1 assassin_bladefury_throw_1 assassin_bladefury_hit bladefragment3 0
bladefragment3 510 1 1 22 22 25 0 0 0 1 1 1 Expansion\bladefury_C 1024 7 32 3 1 1 1 1 1 1 1 1 Blade Fury 4 8 1 10 1 assassin_bladefury_throw_1 assassin_bladefury_hit bladefragment3 0
shockwave 511 1 1 7 20 20 14 255 255 255 0 0 0 expansion\shockwave 1024 7 8 3 1 1 1 4 1 1 1 1 1 Shock Wave 4 64 8 druid_shockwave 0
lightningtalons 512 1 1 30 30 25 4 255 255 255 0 0 0 null 1024 1 16 3 1 1 2 1 1 1 1 Feral Rage 4 64 1 0
lightningtalonstrail 513 1 1 12 3 4 255 255 255 0 0 1 LightningStrike 1024 8 16 1 7 1 1 1 Feral Rage 8 ltng 2 2 2 2 2 2 5 2 2 2 2 2 64 32 0
phoenixtrail 514 1 1 90 25 5 4 255 178 64 0 0 1 groundFireBig 1024 37 16 1 12 36 3 1 1 1 1 Hunger 32 1 0
rabiesplague 515 1 30 4 freq 7 radius 10 5 0 0 0 1 0 0 null 1024 2 16 3 3 1 8 1 rabiescontagion 0
rabiescontagion 516 1 1 53 11 5 5 20 0 0 0 0 2 0 null 1024 1 16 3 1 1 1 1 Rabies 8 1 0
wake of destruction maker 517 52 31 10 10 25 2 8 255 178 64 0 0 1 groundFireSmall 1024 2 16 1 1 2 8 1 1 1 1 4 2 1 1 1 Wake of Fire Sentry 4 8 32 1 205 wake of destruction wake of destruction 0
wake of destruction 518 1 1 8 8 20 5 4 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 3 1 1 1 1 4 1 1 1 1 Wake of Fire Sentry 4 32 1 205 0
deathsentryexplode 519 1 1 24 0 0 0 0 0 0 Expansion\dethsentry02 1024 12 16 1 1 1 weapon_throw_1 0
tigerfury 520 53 32 5 retarget frame 5 retarget frame 12 12 128 3 255 255 255 1 0 1 BoneSpirit 1024 8 16 3 1 1 1 1 1 1 1 1 Royal Strike 8 8 tigerfurytrail2 tigerfurytrail tigerfurytrail 0
tigerfurytrail 521 5 1 20 5 4 255 178 64 0 0 1 groundFireMedium 1024 37 16 1 12 36 3 1 1 1 1 1 1 fire 5 5 5 5 5 5 10 5 5 5 5 5 100 10 10 10 32 1 0
tigerfurytrail2 522 1 1 12 255 255 255 0 0 0 BoneSpiritExplode 1024 13 16 1 1 1 Royal Strike 1 0
inferno sentry 1 523 1 1 8 "Mana Use, 16ths." 12 Minimum range 12 12 50 5 255 178 64 1 0 0 Flamethrower 1024 15 16 3 1 1 1 1 1 Inferno Sentry 4 32 1 82 sorceress_inferno 0
inferno sentry 2 524 1 1 8 "Mana Use, 16ths." 12 Minimum range 12 12 50 5 255 178 64 1 0 0 Flamethrower2 1024 15 16 3 1 1 1 1 1 Inferno Sentry 4 32 1 82 sorceress_inferno 0
ancient throwing axe 525 1 1 24 24 20 255 255 255 1 0 1 MissileHandAxe 1024 8 16 3 1 1 1 1 1 1 1 1 1 4 8 128 2 32 0
sentrylightningbolt 526 8 1 3 Subloops 30 30 10 2 4 255 255 255 0 0 2 null 1024 2 16 3 1 1 2 1 1 1 1 Lightning Sentry 4 64 1 sorceress_lightning_1 lightninghit 0
sentrylightninghit 527 1 10 1 12 3 4 255 255 255 0 0 1 LightningStrike 1024 8 16 1 7 1 1 1 8 ltng 2 2 2 2 2 2 5 2 2 2 2 2 64 32 lightning 0
anya center 528 54 300 0 0 0 0 0 0 null 1024 1 16 1 1 0
anya icicle 529 1 1 0 0 0 0 0 0 expansion\icicle 1024 10 16 1 1 1 1 1 sorceress_glacialspike_1 anya iceimpact 0
anya iceimpact 530 1 10 0 0 0 0 0 0 expansion\iceimpact 1024 10 16 1 1 1 0
anya icesteam 531 1 30 0 0 0 0 0 0 expansion\icecavequest_steam 1024 30 16 1 1 1 0
anya icemagic 532 1 30 0 0 0 0 0 0 expansion\icecavequest_magic 1024 30 16 1 1 1 quest_anyasteam 0
dragontail missile 533 1 1 16 255 178 64 0 0 0 ExpArrowExplode 1024 16 16 1 1 1 1 1 1 1 8 1 0
dragonflight 534 1 1 15 255 255 255 0 0 1 expansion\FirestormEmitter 1024 16 16 3 1 1 1 1 1 1 1 Dragon Tail 1 0
dragonflightmaker 535 1 1 8 8 20 255 255 255 0 0 1 expansion\FirestormEmitter 1024 16 16 3 1 1 1 1 1 1 1 burn 20 4 4 4 4 4 10 4 4 4 4 4 100 20 20 20 1 0
progressive radius damage 536 1 1 8 8 20 255 255 255 0 0 1 null 1024 1 16 3 1 1 1 1 1 1 1 4 1 0
vine beast walk 1 fade 537 1 1 11 255 255 255 0 0 0 expansion\Pod_Jump_FadeOut 1024 11 16 3 1 1 1 1 1 1 0
vine beast walk 2 fade 538 1 1 31 255 255 255 0 0 0 expansion\deathmaulerfadeout 1024 31 16 3 1 1 1 1 1 1 0
vine beast neutral fade 539 1 1 11 255 255 255 0 0 0 expansion\Pod_Neutral_FadeOut 1024 11 16 3 1 1 1 1 1 1 0
vine recycler delay 540 51 33 45 activate frame 20 launch vines frame 45 active frame 47 0 0 0 0 0 0 null 1024 1 16 1 1 stealmana recycler vine recycler explosion 0
ancient death center 541 55 1 3 3 400 2 255 125 125 0 0 1 null 1024 2 16 1 1 1 1 1 8 1 0
ancient death cloud 542 1 1 3 3 50 2 255 125 125 0 0 1 expansion\AncientDeathMissile 1024 16 16 1 4 12 1 1 1 1 8 1 quest_ancients_cloud 0
lightning charge up nova 543 1 1 24 24 -1000 13 255 255 255 0 0 0 ElectricNova 1024 13 16 3 1 1 1 4 1 1 1 1 Nova 4 64 16 0
chainlightningcharge up 544 1 1 30 30 25 4 255 255 255 0 0 1 LightningStrike 1024 8 16 3 1 1 1 1 4 2 1 1 1 1 Chain Lightning 4 64 32 0
pain worm appear 545 1 1 25 5 255 178 64 0 0 0 Revive 1024 25 16 1 1 8 1 0
baal taunt control 546 56 34 25 initial delay 3 missile 1 delay 45 missile 2 delay 0 missile 3 delay 25 initial delay 3 missile 1 delay 45 missile 2 delay 0 missile 3 delay 75 255 255 255 0 0 1 null 1024 1 16 3 1 1 1 1 1 1 baal taunt lightning control baal taunt poison control baal taunt lightning control baal taunt poison control 0
baal taunt lightning 547 8 1 10 Random range 3 Subloops 30 30 10 2 255 255 255 0 0 2 null 1024 2 16 3 1 1 1 10 2 1 1 1 1 4 8 ltng 15 20 20 20 20 20 45 20 20 20 20 20 64 1 lightninghit 0
baal taunt lightning trail 548 1 1 30 30 25 4 255 255 255 0 0 1 LightningStrike 1024 8 16 3 1 1 1 10 2 1 1 1 1 1 4 64 32 0
baal taunt poison 549 4 1 4 "Slow drift speed, fourths." 8 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 255 255 255 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 2 1 1 4 pois 14 4 5 8 8 8 25 4 5 8 8 8 50 8 poisonpuff 0
baal spawn monsters 550 1 57 1 54 10 radius 20 density 12 12 60 5 81 81 255 1 0 1 Expansion\baalsummonmissile2 1024 8 8 6 1 1 1 1 1 4 1 baal spawn monsters exp 0
mindblast hit 551 1 1 10 255 255 255 0 0 0 Expansion\Mindblast 1024 10 16 1 1 1 1 1 0
blade shield missile 552 1 1 18 30 250 100 5 255 255 255 3 0 1 Expansion\blade_shield_missile 1024 5 16 3 1 1 1 1 1 1 Blade Fury 4 1 1 0
blade shield attachment 553 57 1 500 100 0 0 0 0 0 0 null 1024 1 16 1 1 1 blade shield missile 0
baal inferno 554 1 1 55 12 Minimum range 50 mana drain % 20 40 250 2048 5 255 255 255 1 0 0 Expansion\baalmissile 1024 14 12 3 1 1 4 3 1 1 1 1 Baal Inferno 4 1 baal_missile_1 0
baal nova 555 1 1 20 20 40 5 255 255 255 0 0 0 Expansion\baalsummonmissile 1024 8 12 3 1 1 1 1 4 2 1 1 1 Baal Nova 4 8 baal_novacast shamanexp 0
fistsoffireexplode 556 1 1 16 15 255 178 64 0 0 0 ExpArrowExplode 1024 16 16 1 1 1 1 1 1 1 1 4 8 1 0
fistsoffirefirewall 557 5 1 64 5 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 8 1 2 1 1 3 fire 6 5 10 16 22 30 10 5 10 17 24 32 (skill('Royal Strike'.blvl)) * 6 32 1 0
clawsofthunderbolt 558 1 1 12 12 98 3 4 255 255 255 1 0 1 ChargedBolt 1024 10 16 1 2 8 3 1 1 1 1 4 1 1 1 1 1 4 8 ltng 1 0 0 0 0 0 40 20 40 60 80 100 (skill('Royal Strike'.blvl)) * 8 64 16 0
clawsofthundernova 559 1 1 24 24 -1000 13 255 255 255 0 0 0 ElectricNova 1024 13 16 3 1 1 4 1 1 1 1 4 8 ltng 1 0 0 0 0 0 30 15 25 35 45 65 (skill('Royal Strike'.blvl)) * 8 64 16 0
bladesoficeexplode 560 1 1 16 11 81 81 255 0 0 0 IceArrowExplode 1024 16 16 1 1 1 1 1 1 1 4 8 1 impact_cold_layer_1 0
bladesoficecubes 561 1 1 10 30 255 255 255 0 0 0 IceBreakSmall 1024 15 16 3 1 1 1 1 8 frze 1 0 0 0 0 0 1 0 0 0 0 0 100 10 10 10 4 impact_cold_1 0
bladesoficecubesmelt 562 1 1 150 255 255 255 0 0 0 IceBreakSmallMelt 1024 12 16 1 8 4 0
royalstrikemeteor 563 1 14 6 radius 1 flame increment 60 0 0 0 0 0 1 Meteor 1024 12 16 1 1 1 5 2 8 fire 20 10 19 29 38 46 40 10 21 33 42 50 (skill('Fists of Fire'.blvl)) * 10 1 royalstrikemeteorfire 0
royalstrikemeteorcenter 564 9 18 1 4 59 frames 25 fallrate 15 sliderate 1 explode immediately 5 # submissile1 3 # submissile3 15 # submissile4 60 4 255 64 64 0 0 1 MeteorTargetIndicator 1024 17 16 1 1 1 1 1 8 1 sorceress_meteor royalstrikemeteor royalstrikemeteor royalstrikemeteor royalstrikemeteortail royalstrikemeteorexplode whitelightmissile firemedium firesmall 0
royalstrikemeteortail 565 1 60 0 0 0 0 0 1 MeteorTail 1024 12 16 1 1 1 8 1 0
royalstrikemeteorexplode 566 1 1 2 none 16 13 255 178 64 0 0 0 ExpArrowExplode 1024 16 16 1 1 1 1 1 1 1 4 8 1 0
royalstrikemeteorfire 567 5 1 37 5 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 8 1 2 1 3 fire 6 5 10 16 22 30 10 5 10 17 24 32 (skill('Fists of Fire'.blvl)) * 6 32 1 0
royalstrikechainlightning 568 8 *16 1 *12 3 Subloops 0 range (0 = skill) 0 range (0 = skill) 30 30 60 4 255 255 255 0 0 1 LightningStrike 1024 8 16 3 1 1 4 2 1 1 1 1 4 8 ltng 1 0 0 0 0 0 40 20 40 60 80 100 (skill('Claws of Thunder'.blvl))*13 64 32 sorceress_lightning_1 lightning lightninghit 0
royalstrikechaosice 569 58 35 2 3 repath freq 3 repath freq 100 cold len -> freeze len 16 16 40 4 81 81 255 0 0 1 IceBolt 1024 6 16 3 1 1 1 1 4 1 1 1 1 1 4 8 cold 16 4 8 12 20 28 32 4 8 13 21 29 (skill('Blades of Ice'.blvl))*10 100 10 15 20 16 sorceress_glacialspike_1 sorceress_iceblast_impact_1 0
world stone chip 1 570 59 1 1 1 500 255 255 255 0 0 1 expansion\wstonechips1 1024 25 12 1 1 8 1 0
world stone chip 2 571 59 1 1 1 500 255 255 255 0 0 1 expansion\wstonechips2 1024 33 12 1 1 8 1 0
world stone chip 3 572 59 1 1 1 500 255 255 255 0 0 1 expansion\wstonechips3 1024 25 12 1 1 8 1 0
world stone chip 4 573 59 1 1 1 500 255 255 255 0 0 1 expansion\wstonechips4 1024 17 12 1 1 8 1 0
highpriestlightning2 574 1 1 8 8 16 12 255 64 64 0 0 0 HighPriestLightning 1024 9 16 3 1 1 1 1 1 1 1 1 8 ltng 8 12 12 12 12 12 30 14 14 14 14 14 8 0
infernoflame3 575 1 1 8 "Mana Use, 16ths." 7 Minimum range 12 12 30 5 255 178 64 1 0 0 Flamethrower 1024 15 16 3 1 1 1 1 Inferno 4 32 1 0
mindblast center 576 17 1 10 active frames 20 density 10 255 255 255 0 0 0 Expansion\Mindblast 1024 10 16 1 1 1 1 1 mindblast hit 0
armageddoncontrol 577 1 1 56 3 damage radius 25 0 0 0 0 0 0 null 1024 1 16 1 1 Armageddon 5 2 8 fire 1 armageddonfire 0
armageddonrock 578 1 55 1 25 0 0 0 1 0 1 expansion\armageddon_rock 1024 16 16 1 1 1 1 8 1 andariel_fire_loop armageddonexplosion armageddonfire 0
armageddontail 579 1 1 25 0 0 0 1 0 1 expansion\armageddon_fire 1024 16 16 1 1 1 8 1 0
armageddonexplosion 580 1 1 5 Damage radius 16 5 255 255 255 0 0 0 ExpArrowExplode 1024 16 16 3 1 3 1 1 1 4 8 1 druid_meteor_explode_1 0
hurricaneswoosh 581 60 1 20 20 22 0 0 0 1 0 0 expansion\hurricane_swoosh 1024 11 8 1 1 8 8 druid_hurricane 0
hurricanecart 582 60 1 18 18 20 0 0 0 1 0 0 expansion\hurricane_cart 1024 20 16 1 8 1 druid_hurricane 0
hurricanerock 583 60 1 18 18 20 0 0 0 1 0 0 expansion\hurricane_rocks 1024 20 16 1 8 1 druid_hurricane 0
hurricanesack 584 60 1 18 18 20 0 0 0 1 0 0 expansion\hurricane_sack 1024 20 16 1 8 1 druid_hurricane 0
hurricanetree 585 60 1 18 18 20 0 0 0 1 0 0 expansion\hurricane_tree 1024 20 16 1 8 1 druid_hurricane 0
hurricanevase 586 60 1 18 18 20 0 0 0 1 0 0 expansion\hurricane_vase 1024 20 16 1 8 1 druid_hurricane 0
baalcorpseexplodedelay 587 1 1 10 5 255 178 64 0 0 0 null 1024 1 16 1 1 1 1 1 1 1 8 4 1 baalcorpseexplodeexpl 0
baalcorpseexplodeexpl 588 1 44 1 16 5 255 178 64 0 0 0 expansion\CEBaal 1024 16 16 1 1 1 1 1 1 1 4 8 4 1 baalcorpseexplodefade 0
baal cold maker 589 52 31 20 20 50 5 143 143 255 0 0 0 BlueNovaB 1024 8 8 3 1 4 2 1 1 1 75 1 Baal Cold Missiles 4 8 32 1 baal_coldtrail baal cold trail baal cold trail 0
baal cold trail 590 1 1 13 13 20 5 143 143 255 0 0 0 BlueNovaB 1024 8 8 3 1 4 2 1 1 1 75 1 Baal Cold Missiles 4 8 32 1 0
baal spawn monsters exp 591 1 1 20 5 81 81 255 1 0 0 Expansion\baalsummonsmall 1024 11 15 1 1 1 1 1 4 1 0
impmiss21 592 1 1 20 20 80 5 255 64 64 1 0 1 Expansion\impmissile2 1024 8 16 3 1 1 1 1 1 1 1 1 4 8 128 16 imp_missile_1 sorceress_firebolt_impact_1 shamanexp 0
impmiss22 593 1 1 20 20 80 5 255 64 64 1 0 1 Expansion\impmissile2 1024 8 16 3 1 1 1 1 1 1 1 1 4 8 128 16 imp_missile_1 sorceress_firebolt_impact_1 shamanexp 0
impmiss23 594 1 1 20 20 80 5 255 64 64 1 0 1 Expansion\impmissile2 1024 8 16 3 1 1 1 1 1 1 1 1 4 8 128 16 imp_missile_1 sorceress_firebolt_impact_1 shamanexp 0
impmiss24 595 1 1 20 20 80 5 255 64 64 1 0 1 Expansion\impmissile2 1024 8 16 3 1 1 1 1 1 1 1 1 4 8 128 16 imp_missile_1 sorceress_firebolt_impact_1 shamanexp 0
impmiss25 596 1 1 20 20 80 5 255 64 64 1 0 1 Expansion\impmissile2 1024 8 16 3 1 1 1 1 1 1 1 1 4 8 128 16 imp_missile_1 sorceress_firebolt_impact_1 shamanexp 0
anyasteam1 597 1 1 26 0 0 0 0 0 0 ChillBloodPuff 1024 26 16 1 1 0
anyasteam2 598 1 1 26 0 0 0 0 0 0 ChillBloodPuff 1024 26 16 1 1 0
ancientsguide 599 1 1 0 0 0 0 0 0 null 1024 1 16 1 0
ancientsmarker 600 1 1 0 0 0 0 0 0 null 1024 1 16 1 0
ancientscontrol 601 1 1 0 0 0 0 0 0 null 1024 1 16 1 0
overseercontrol 602 61 1 500 0 0 0 0 0 0 null 1024 1 16 1 0
nihlithak1 603 1 60 1 85 zoffset of missile 2 32 0 0 0 0 0 0 expansion\Nihlathak A 1024 16 8 1 1 quest_nihlathakdeath nihlithak2 nehlithakbonechips 0
nihlithak2 604 1 1 192 0 0 0 0 0 1 expansion\Nihlathak B 1024 8 8 1 1 quest_nihlathakdeath nihlithak3 0
nihlithak3 605 1 1 34 0 0 0 0 0 0 expansion\Nihlathak C 1024 17 8 1 1 8 quest_nihlathakdeath 0
nehlithakcontrol 606 62 1 224 0 0 0 0 0 0 null 1024 1 16 1 0
nehlithakswoosh 607 63 1 20 20 22 0 0 0 1 0 0 expansion\nehlthak_Swoosh 1024 11 8 1 1 8 8 0
nehlithakdebris1 608 63 1 18 18 16 0 0 0 0 0 1 expansion\Skeleton_pieces_A 1024 16 16 1 1 0
nehlithakdebris2 609 63 1 18 18 16 0 0 0 0 0 1 expansion\Skeleton_pieces_B 1024 16 16 1 1 0
nehlithakdebris3 610 63 1 18 18 16 0 0 0 0 0 1 expansion\Skeleton_pieces_C 1024 16 16 1 1 0
nehlithakdebris4 611 63 1 18 18 16 0 0 0 0 0 1 expansion\Skeleton_pieces_D 1024 16 16 1 1 0
nehlithakglow 612 1 1 0 0 0 0 0 0 null 1024 1 16 1 0
baalteleport 613 1 1 20 3 128 64 64 0 0 0 Expansion\Baalsummonoverlay 1024 20 24 1 1 8 1 baal_summonflash 0
baalclonedeath 614 1 1 20 3 128 64 64 0 0 0 Expansion\Baalteleport 1024 20 24 1 1 8 1 baal_teleport 0
anyasteamvent 615 1 1 82 0 0 0 0 0 0 expansion\IceCaveEruption 1024 41 8 1 1 8 4 quest_anyaicevent 0
anyasteam 616 1 1 82 0 0 0 0 0 0 expansion\Ice_Smoke 1024 41 8 1 1 8 4 0
nehlithakhole 617 1 1 250 0 0 0 0 0 1 expansion\nehlthak_Hole 1024 41 16 1 25 29 1 8 1 sorceress_inferno 0
nehlithakholelight 618 1 1 250 0 0 0 0 0 1 expansion\nehlthak_Hole_light 1024 41 16 1 25 29 1 1 8 1 0
volcanofiretrail 619 1 1 12 12 0 0 0 0 0 1 expansion\wallfire_low_Tiny 1024 25 16 1 1 8 1 0
nehlithakglow2 620 1 1 192 0 0 0 0 0 1 expansion\NehlithakGlow 1024 16 16 1 1 1 0
nehlithakbonechips 621 1 1 192 0 0 0 0 0 1 expansion\BonePieces 1024 16 16 1 1 0
baalcorpseexplodefade 622 1 1 443 0 0 0 0 0 1 expansion\CEBaalFade 1024 11 4 1 4 1 0
armageddonfire 623 1 1 37 5 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 8 1 2 1 1 2 fire 10 6 7 8 9 10 14 6 7 8 9 10 (skill('Firestorm'.blvl)+skill('Molten Boulder'.blvl)+skill('Volcano'.blvl))*7 32 1 41 0
icesparkle 624 1 1 250 2 255 178 64 0 0 1 expansion\iceglint 1024 6 12 1 1 1 2 1 0
baalfx control 625 64 36 57 650 10 255 178 64 0 0 1 null 1024 1 16 1 1 1 0
baalfx spirit 1 626 65 1 10 10 250 0 0 0 0 0 1 expansion\baaldeathghostie02 1024 8 6 1 1 8 quest_hellforge_soul_1 0
baalfx spirit 2 627 65 1 10 10 250 0 0 0 0 0 1 expansion\baaldeathghostie01 1024 8 6 1 1 8 quest_hellforge_soul_1 0
baalfx spirit 3 628 65 1 10 10 250 0 0 0 0 0 1 null 1024 1 8 1 1 1 quest_hellforge_soul_1 0
baalfx spirit 4 629 65 1 10 10 250 0 0 0 0 0 1 null 1024 1 8 1 1 1 quest_hellforge_soul_1 0
baalfx spirit 5 630 65 1 10 10 250 0 0 0 0 0 1 null 1024 1 8 1 1 1 quest_hellforge_soul_1 0
baalfx baal head appear 631 1 1 455 0 0 0 0 0 0 expansion\baaldeathswirl 1024 36 16 1 1 1 0
baalfx baal head 1 632 1 1 390 5 255 178 64 0 0 0 expansion\baaldeathhead01 1024 42 12 1 1 1 baal_deathhead_1 0
baalfx baal head 2 633 1 1 390 5 255 178 64 0 0 0 expansion\baaldeathhead02 1024 42 12 1 1 1 baal_deathhead_2 0
baalfx baal head 3 634 1 1 390 5 255 178 64 0 0 0 expansion\baaldeathhead03 1024 42 12 1 1 1 baal_deathhead_3 0
baalfx tyreal debris 1 635 1 1 40 0 0 0 0 0 1 expansion\BCeilingChunkFall1 1024 1 16 1 1 1 baalfx tyreal debris break 0
baalfx tyreal debris 2 636 1 1 40 0 0 0 0 0 1 expansion\BCeilingChunkFall2 1024 1 16 1 1 1 baalfx tyreal debris break 0
baalfx tyreal debris 3 637 1 1 40 0 0 0 0 0 1 expansion\BCeilingChunkFall3 1024 1 16 1 1 1 baalfx tyreal debris break 0
baalfx tyreal debris break 638 1 1 1365 0 0 0 0 0 0 expansion\BCeilingChunkBreak 1024 12 12 1 1 0
worldstone shake 639 66 61 1 200 0 0 0 0 0 1 null 1024 1 12 1 1 1 0
blessedhammerex 640 1 1 13 50 bonus vs undead 0 bonus vs demons 18 30 250 120 5 222 222 255 6 0 1 blessedhammer 1024 6 16 3 1 1 1 1 1 4 8 12 8 8 8 8 8 16 8 8 8 8 8 16 paladin_blessedhammer_1 paladin_holybolt_impact_1 0
sentrylightningbolt2 641 8 1 3 Subloops 30 30 10 2 4 255 255 255 0 0 2 null 1024 2 16 3 1 1 2 1 1 1 1 1 Death Sentry 4 64 1 sorceress_lightning_1 lightninghit 0
sentrylightninghit2 642 1 10 1 4 Rand Light Radius Add 12 3 1 255 255 255 0 0 1 LightningStrike 1024 8 16 1 7 1 1 1 8 ltng 2 2 2 2 2 2 5 2 2 2 2 2 64 32 lightning 0
lightningtowernova 643 1 10 1 24 24 -1000 13 255 255 255 0 0 0 ElectricNova 1024 13 16 3 1 1 4 1 1 1 1 4 8 ltng 12 12 12 12 12 12 14 14 14 14 14 14 64 16 sorceress_nova 0
skbowarrow6 644 1 1 24 24 40 2 255 178 64 1 0 1 FireArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 4 128 10 32 amazon_firearrow_1 sorceress_firebolt_impact_1 0
skbowarrow7 645 1 1 24 24 40 2 81 81 255 1 0 1 IceArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 4 128 10 32 amazon_coldarrow_1 impact_cold_1 0
skbowarrow8 646 1 1 24 24 40 2 255 178 64 1 0 1 SafeArrow 1024 8 16 3 1 1 1 1 1 1 1 1 1 1 4 128 10 32 amazon_magicarrow_1 0
bighead6 647 1 1 16 16 40 3 143 143 255 3 0 1 BigheadLightningMissile 1024 3 16 3 1 1 1 1 1 1 1 1 4 128 1 monster_fireball sorceress_firebolt_impact_1 bigheadexp 0
viper_poisjav 648 3 2 3 # subloops 3 # subloops 24 24 15 255 255 255 3 0 0 poisonNova 1024 30 16 3 1 1 1 1 1 1 1 1 1 1 4 128 32 monster_poisonbolt viper_poisjavcloud viper_poisjavcloud 0
viper_poisjavcloud 649 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 128 255 128 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 1 2 1 1 128 6 8 object_poison_loop poisonpuff 0
viper_fire 650 8 1 24 24 15 3 255 255 255 4 0 1 Firebolt 1024 5 16 3 1 1 1 1 1 1 1 4 128 16 monster_fireball sorceress_firebolt_impact_1 shamanexp viper_firecloud 0
viper_firecloud 651 1 1 10 255 178 64 0 0 1 Flamethrower 1024 15 7 3 1 1 4 1 1 1 32 1 82 sorceress_inferno 0
viper_bonespear 652 18 24 1 3 Subloops 24 24 40 3 255 255 255 3 0 1 BoneSpear 1024 6 16 3 1 1 1 1 1 1 1 4 128 6 16 necromancer_bonespear_1 paladin_holybolt_impact_1 bonespearexplode bonespeartrail teethexplode bonespeartrail teethexplode 0
countessfirewallmaker 653 6 6 4 no light freq 12 12 7 8 255 178 64 0 0 1 groundFireBig 1024 2 16 1 1 2 8 1 1 1 1 1 1 8 32 1 countessfirewall countessfirewall firesmall firemedium 0
baal taunt lightning control 654 1 62 3 58 10 range 10 range 1 null 1024 1 16 1 1 baal taunt lightning baal taunt lightning 0
baal taunt poison control 655 1 63 3 59 2 increment 2 increment 1 null 1024 1 16 1 1 baal taunt poison baal taunt poison 0
explodingarrowexp2 656 1 1 1 5 damage radius 1 null 1024 16 16 3 1 1 1 1 1 1 Exploding Arrow 5 2 8 fire 1 0
freezingarrowexp3 657 1 1 1 5 damage radius 1 null 1024 16 16 3 1 1 1 1 1 1 Freezing Arrow 5 2 8 frze 1 0
pantherjav5 658 1 1 20 20 80 255 255 255 1 0 1 Javelin 1024 1 16 1 1 1 1 1 1 1 1 1 1 1 4 8 128 6 32 weapon_throw_1 0
spike6 659 1 1 30 30 40 255 255 255 1 0 1 SpikeFiendMissle 1024 2 16 3 1 1 1 1 1 1 1 1 4 8 128 10 32 0
cr_arrow6 660 1 1 26 26 40 255 255 255 1 0 1 Arrow 1024 1 16 3 1 1 1 1 1 1 1 1 1 4 8 128 10 32 weapon_bow_1 0
skmagepois 661 1 1 12 12 40 2 255 255 255 2 0 0 poisonNova 1024 30 16 3 1 1 1 1 1 1 1 1 4 8 128 pois 32 monster_poisonbolt 0
skmagecold 662 1 1 14 14 40 2 255 255 255 2 0 1 Icebolt 1024 6 16 3 1 1 1 1 1 1 1 1 4 8 128 cold 16 monster_icebolt_1 iceexplode 0
skmagefire 663 1 1 18 18 40 2 255 255 255 2 0 1 Firebolt 1024 5 16 3 1 1 1 1 1 1 1 1 4 8 128 fire 16 monster_firebolt_1 sorceress_firebolt_impact_1 fireexplode 0
skmageltng 664 1 1 20 20 40 2 255 255 255 2 0 1 ChargedBolt 1024 10 16 3 1 1 1 -10 1 1 1 1 1 4 8 128 ltng 16 monster_chargedbolt_1 0
succubusmiss 665 1 1 10 10 80 2 255 64 64 1 0 1 Expansion\impmissile01 1024 10 16 3 1 1 1 -15 1 1 1 1 1 4 8 128 mag 16 succubus_msissile_1 succubus_msissile_impact teethexplode 0
willowisplightningbolt2 666 8 1 3 Subloops 32 32 40 8 178 178 255 1 0 2 null 1024 2 16 3 1 1 2 1 1 1 1 4 8 128 ltng 64 1 monster_lightning_1 lightninghit 0
mummyex 667 1 1 5 5 24 255 255 255 0 0 0 GreaterMummyBreath 1024 24 16 3 1 1 2 1 1 1 4 1 pois 30 8 9 10 11 12 30 8 9 10 11 12 400 8 0
goospitex 668 1 1 10 10 24 255 255 255 3 0 0 SandMaggotGooSpit 1024 24 16 3 1 1 1 1 1 1 1 4 1 3 4 4 4 4 4 5 4 4 4 4 4 pois 8 3 3 3 3 3 8 3 3 3 3 3 300 176 16 tentaclehead_missile_1 goosplat 0
impmissex 669 1 1 20 20 80 5 255 64 64 1 0 1 Expansion\impmissile2 1024 8 16 3 1 1 1 1 1 1 1 1 4 8 fire 23 5 5 5 5 5 33 5 5 5 5 5 16 imp_missile_1 sorceress_firebolt_impact_1 shamanexp 0
diablogeddoncontrol 670 1 1 56 3 damage radius 25 0 0 0 0 0 0 null 1024 1 16 1 1 Diablogeddon 5 2 8 fire 1 diablogeddonfire 0
diablogeddonrock 671 1 55 1 25 0 0 0 1 0 1 expansion\armageddon_rock 1024 16 16 1 1 1 1 8 1 andariel_fire_loop diablogeddonexplosion diablogeddonfire 0
diablogeddontail 672 1 1 25 0 0 0 1 0 1 expansion\armageddon_fire 1024 16 16 1 1 1 8 1 0
diablogeddonexplosion 673 1 1 5 Damage radius 16 5 255 255 255 0 0 0 ExpArrowExplode 1024 16 16 3 1 3 1 1 1 4 8 1 druid_meteor_explode_1 0
diablogeddonfire 674 1 1 37 5 255 178 64 0 0 1 groundFireSmall 1024 37 16 1 12 36 8 1 2 1 1 2 fire 10 6 7 8 8 8 14 6 7 8 8 8 32 1 41 0
megademoninferno 675 1 1 7 Minimum range 12 12 30 4 255 178 64 3 0 0 Flamethrower 1024 15 16 3 1 1 1 1 1 8 fire 3 3 3 3 3 3 6 4 4 4 4 4 32 1 82 sorceress_inferno 0
trapfirebolt 676 1 1 20 20 50 7 255 178 64 1 0 1 Firebolt 1024 5 16 3 1 1 1 1 1 1 1 1 4 8 fire 4 13 13 13 13 13 16 14 14 14 14 14 16 sorceress_firebolt_1 sorceress_firebolt_impact_1 fireexplode 0
trappoisonjavcloud 677 4 3 2 "Slow drift speed, fourths." 4 "Fast drift speed, fourths." 24 spawn rate 1 number 6 radius 60 128 255 128 0 0 1 PoisonSparks 1024 31 16 1 10 19 3 1 1 1 2 1 1 pois 30 12 12 12 12 12 30 12 12 12 12 12 500 6 8 object_poison_loop poisonpuff 0
trapnova 678 1 10 1 24 24 -1000 13 255 255 255 0 0 0 ElectricNova 1024 13 16 3 1 1 4 1 1 1 1 4 8 ltng 1 11 11 11 11 11 20 13 13 13 13 13 64 16 sorceress_nova lightning 0
mephfrostnova 679 1 10 1 24 24 -1000 14 81 81 255 0 0 0 FrostNova 1024 14 16 3 1 1 1 4 1 1 1 1 MephFrostNova 4 48 16 sorceress_frostnova ice_explode 0
mephlight 680 8 10 1 3 Subloops 30 30 25 4 255 255 255 2 0 2 null 1024 2 16 3 1 1 1 2 1 1 PrimeLightning 8 ltng 15 0 0 0 0 0 30 30 50 50 50 50 1 monster_lightning_1 lightning lightninghit 0
vampiremeteorfire 681 5 5 3 19 softhit chance (128) 90 3 2 255 178 64 0 0 1 groundFireMedium 1024 37 16 1 12 36 3 1 1 2 1 12 1 3 1 fire 10 3 5 6 6 6 14 2 5 6 6 6 32 1 41 object_fire_loop_magic 0
strafearrow 682 1 1 24 24 50 255 255 255 1 0 0 Arrow 1024 1 16 3 1 1 1 1 4 1 1 1 1 1 1 4 8 96 10 32 amazon_multi_arrow_1 0
strafebolt 683 1 1 24 24 50 255 255 255 1 0 0 XBowBolt 1024 1 16 3 1 1 1 1 4 1 1 1 1 1 1 4 8 96 10 32 weapon_xbow_1 0

View File

@ -1,149 +0,0 @@
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
UberIzual attack? engage? nova at range? nova in melee? post nova doldrums num swings 0
UberBaal 0
UberMephisto 0
UberDiablo 0

View File

@ -1,46 +0,0 @@
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

View File

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

View File

@ -1,127 +0,0 @@
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 660 1200 1780 660 1415 2100 1190 2070 4360 1190 2070 4360 1160 3040 6800 1160 3040 9060 68 90 126 68 90 126 8560 57000 85200 8560 57000 85200
111 670 1215 1800 670 1430 2120 1202 2090 4400 1202 2090 4400 1180 3075 6900 1180 3075 9180 69 91 128 69 91 128 8670 58000 86600 8670 58000 86600
112 680 1230 1820 680 1445 2140 1214 2110 4440 1214 2110 4440 1200 3110 7000 1200 3110 9300 70 92 130 70 92 130 8780 59000 88000 8780 59000 88000
113 690 1245 1840 690 1460 2160 1226 2130 4480 1226 2130 4480 1220 3150 7100 1220 3150 9420 71 93 132 71 93 132 8890 60000 89400 8890 60000 89400
114 700 1260 1860 700 1475 2180 1238 2150 4520 1238 2150 4520 1240 3190 7200 1240 3190 9540 72 94 134 72 94 134 9000 61000 90800 9000 61000 90800
115 710 1275 1880 710 1490 2200 1250 2170 4560 1250 2170 4560 1260 3230 7300 1260 3230 9660 73 95 136 73 95 136 9110 62000 92200 9110 62000 92200
116 720 1290 1900 720 1505 2220 1262 2190 4600 1262 2190 4600 1280 3270 7400 1280 3270 9780 74 96 138 74 96 138 9220 63000 93600 9220 63000 93600
117 730 1305 1920 730 1520 2240 1274 2210 4640 1274 2210 4640 1300 3310 7500 1300 3310 9900 75 97 140 75 97 140 9330 64000 95000 9330 64000 95000
118 740 1320 1940 740 1535 2260 1286 2230 4680 1286 2230 4680 1320 3350 7600 1320 3350 10020 76 98 142 76 98 142 9440 65000 96400 9440 65000 96400
119 750 1335 1960 750 1550 2280 1298 2250 4720 1298 2250 4720 1340 3390 7700 1340 3390 10140 77 99 144 77 99 144 9550 66000 97800 9550 66000 97800
120 760 1350 1980 760 1565 2300 1310 2270 4760 1310 2270 4760 1360 3430 7800 1360 3430 10260 78 100 146 78 100 146 9660 67000 99200 9660 67000 99200
121 770 1365 2000 770 1580 2320 1322 2290 4800 1322 2290 4800 1380 3470 7900 1380 3470 10380 79 101 148 79 101 148 9770 68000 101600 9770 68000 101600
122 780 1380 2020 780 1595 2340 1334 2310 4840 1334 2310 4840 1400 3510 8000 1400 3510 10500 80 102 150 80 102 150 9880 69000 103000 9880 69000 103000
123 790 1395 2040 790 1610 2360 1346 2330 4880 1346 2330 4880 1420 3550 8100 1420 3550 10620 81 103 152 81 103 152 9990 70000 104400 9990 70000 104400
124 800 1410 2060 800 1625 2380 1348 2350 4920 1358 2350 4920 1440 3575 8250 1440 3575 10740 82 104 154 82 104 154 10100 71000 105800 10100 71000 105800
125 825 1425 2080 825 1650 2400 1360 2370 4960 1370 2370 4960 1460 3600 8500 1460 3600 10860 83 105 156 83 105 156 10210 72000 107200 10210 72000 107200

View File

@ -1,17 +0,0 @@
name token code
death DT DT
neutral NU NU
walk WL WL
gethit GH GH
attack1 A1 A1
attack2 A2 A2
block BL BL
cast SC SC
skill1 S1 S1
skill2 S2 S2
skill3 S3 S3
skill4 S4 S4
dead DD DD
knockback GH KB
sequence xx xx
run RN RN

View File

@ -1,44 +0,0 @@
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

View File

@ -1,38 +0,0 @@
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

View File

@ -1,651 +0,0 @@
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
1 Rotten Fleshthing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
1 place_nothing
2 warriv2
2 atma
2 drognan
2 fara
2 place_nothing
2 place_nothing
2 unraveler2
2 Fangskin2
2 greiz
2 elzix
2 lysander
2 meshif1
2 geglash
2 jerhyn
2 place_unique_pack
2 Blood Swarm
2 Krull the Deviant
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 Garbad the Weak
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
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
2 place_nothing
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 suckernest4
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
3 Yar the Mad
3 Reaver of Souls
3 Venom Tork
3 Geleb Flamefinger1
3 Geleb Flamefinger2
3 Geleb Flamefinger3
3 Geleb Flamefinger4
3 Geleb Flamefinger5
3 Geleb Flamefinger6
3 Geleb Flamefinger7
3 Geleb Flamefinger8
3 Geleb Flamefinger9
3 Geleb Flamefinger10
3 Shaman Elite
3 Dreadfear the Wicked
3 vulture4
3 thornhulk3
3 Geleb Flamefinger11
3 Super51
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
3 place_nothing
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
4 Taintbreeder1
4 Taintbreeder2
4 Taintbreeder3
4 Taintbreeder4
4 Taintbreeder5
4 Taintbreeder6
4 Taintbreeder7
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
4 place_nothing
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 Spirit of Diablo
5 Spirit of Mephisto
5 Spirit of Duriel
5 Spirit of Andariel
5 Guardian Angel
5 Slaad the Warrior
5 Taintbreeder8
5 Frostbite Snake
5 Super1
5 Super2
5 Super3
5 Super4
5 Super5
5 Super6
5 Super7
5 Super8
5 Super9
5 Super10
5 Super11
5 Super12
5 Super13
5 Super14
5 Super15
5 Super16
5 Super17
5 Super18
5 Super19
5 Super20
5 Super21
5 Super22
5 Super23
5 Super24
5 Super25
5 Super26
5 Super27
5 Super28
5 Super29
5 Super30
5 Super31
5 Super32
5 Super33
5 Super34
5 Super35
5 Super36
5 Super37
5 Super38
5 Super39
5 Super40
5 Super41
5 Super42
5 Super43
5 Super44
5 Super45
5 Super46
5 Super47
5 Super48
5 Super49
5 Super50
5 Spirit of Diablo2
5 Spirit of Baal2
5 Spirit of Mephisto2
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing
5 place_nothing

View File

@ -1,83 +0,0 @@
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
xswarm1 aura 114 5 5 death-skill 44 100 4 aura 114 9 9 death-skill 44 100 6 aura 114 18 18 death-skill 44 100 9 0
xswarm2 aura 114 7 7 death-skill 44 100 4 aura 114 11 11 death-skill 44 100 6 aura 114 19 19 death-skill 44 100 9 0
xswarm3 aura 114 8 8 death-skill 44 100 4 aura 114 13 13 death-skill 44 100 6 aura 114 20 20 death-skill 44 100 9 0
xswarm4 aura 114 9 9 death-skill 44 100 4 aura 114 15 15 death-skill 44 100 6 aura 114 20 20 death-skill 44 100 9 0
xquillbear1 aura 102 2 2 death-skill 56 100 1 aura 102 3 3 death-skill 56 100 2 aura 102 12 12 death-skill 56 100 4 0
xquillbear2 aura 102 4 4 death-skill 56 100 1 aura 102 5 5 death-skill 56 100 2 aura 102 13 13 death-skill 56 100 4 0
xquillbear3 aura 102 6 6 death-skill 56 100 1 aura 102 7 7 death-skill 56 100 2 aura 102 14 14 death-skill 56 100 4 0
xquillbear4 aura 102 8 8 death-skill 56 100 1 aura 102 9 9 death-skill 56 100 2 aura 102 15 15 death-skill 56 100 4 0
xquillbear5 aura 102 10 10 death-skill 56 100 1 aura 102 10 10 death-skill 56 100 2 aura 102 16 16 death-skill 56 100 4 0
xclawviper1 aura 104 5 5 death-skill 92 100 1 aura 104 8 8 death-skill 92 100 5 aura 104 12 12 death-skill 92 100 10 0
xmummy1 aura 98 5 5 death-skill 225 100 1 aura 98 8 8 death-skill 225 100 5 aura 98 10 10 death-skill 225 100 9 0
xunraveler1 aura 98 5 5 death-skill 234 100 2 aura 98 8 8 death-skill 234 100 5 aura 98 10 10 death-skill 234 100 9 0
xsandraider1 aura 108 5 5 death-skill 44 100 7 aura 108 8 8 death-skill 44 100 15 aura 108 12 12 death-skill 44 100 18 0
xbaboon1 aura 102 5 5 death-skill 48 100 5 aura 102 8 8 death-skill 48 100 8 aura 102 12 12 death-skill 48 100 12 0
xblunderbore1 aura 118 5 5 death-skill 59 100 1 aura 118 8 8 death-skill 59 100 2 aura 118 12 12 death-skill 59 100 3 0
xskmage_cold1 aura 114 5 5 death-skill 44 100 5 aura 114 8 8 death-skill 44 100 8 aura 114 12 12 death-skill 44 100 12 0
xskmage_fire1 aura 102 5 5 death-skill 225 100 2 aura 102 8 8 death-skill 234 100 8 aura 102 12 12 death-skill 234 100 12 0
xskmage_ltng1 aura 118 5 5 death-skill 53 100 5 aura 118 8 8 death-skill 53 100 8 aura 118 12 12 death-skill 53 100 12 0
xskmage_pois1 aura 104 5 5 death-skill 92 100 1 aura 104 8 8 death-skill 92 100 4 aura 104 12 12 death-skill 92 100 8 0
xwraith1 aura 118 5 5 death-skill 38 100 5 aura 118 8 8 death-skill 38 100 10 aura 118 12 12 death-skill 38 100 15 0
xvampire1 aura 99 5 5 death-skill 244 100 1 aura 99 8 8 death-skill 244 100 2 aura 99 12 12 death-skill 244 100 3 0
xbatdemon1 aura 118 5 5 death-skill 38 100 5 aura 118 8 8 death-skill 38 100 10 aura 118 12 12 death-skill 38 100 15 0
xmosquito1 aura 115 5 5 death-skill 67 100 5 aura 115 8 8 death-skill 67 100 10 aura 115 12 12 death-skill 67 100 15 0
xthornhulk1 aura 100 5 5 death-skill 225 100 5 aura 100 8 8 death-skill 225 100 10 aura 100 12 12 death-skill 225 100 15 0
xfetish1 aura 122 5 5 death-skill 225 100 5 aura 122 8 8 death-skill 121 100 2 aura 122 12 12 death-skill 121 100 5 0
xfetishblow1 aura 122 5 5 death-skill 49 100 5 aura 122 8 8 death-skill 49 100 9 aura 122 12 12 death-skill 49 100 13 0
xfrogdemon1 aura 102 5 5 death-skill 225 100 5 aura 102 8 8 death-skill 225 100 9 aura 102 12 12 death-skill 225 100 13 0
xzealot1 aura 118 5 5 death-skill 225 100 5 aura 118 8 8 death-skill 225 100 9 aura 118 12 12 death-skill 225 100 13 0
xcantor1 aura 99 5 5 death-skill 44 100 5 aura 99 8 8 death-skill 44 100 9 aura 99 12 12 death-skill 44 100 13 0
xarach1 aura 123 5 5 death-skill 62 100 3 aura 123 8 8 death-skill 62 100 9 aura 123 12 12 death-skill 62 100 13 0
xwillowisp1 aura 106 5 5 death-skill 48 100 5 aura 106 8 8 death-skill 48 100 9 aura 106 12 12 death-skill 48 100 13 0
xbonefetish1 aura 102 5 5 death-skill 44 100 5 aura 102 8 8 death-skill 44 100 9 aura 102 12 12 death-skill 44 100 13 0
xvilemother1 aura 99 5 5 death-skill 56 100 1 aura 99 8 8 death-skill 56 100 5 aura 99 12 12 death-skill 56 100 9 0
xvilechild1 aura 99 5 5 death-skill 56 100 1 aura 99 8 8 death-skill 56 100 5 aura 99 12 12 death-skill 56 100 9 0
xfingermage1 aura 99 5 5 death-skill 62 100 1 aura 99 8 8 death-skill 121 100 3 aura 99 12 12 death-skill 121 100 5 0
xregurgitator1 aura 118 5 5 death-skill 62 100 4 aura 118 8 8 death-skill 62 100 8 aura 118 12 12 death-skill 62 100 12 0
xdoomknight1 aura 113 5 5 death-skill 234 100 2 aura 113 8 8 death-skill 234 100 4 aura 113 12 12 death-skill 234 100 6 0
xmegademon1 aura 104 5 5 death-skill 67 100 4 aura 104 8 8 death-skill 121 100 2 aura 104 12 12 death-skill 121 100 5 0
xdeathmauler1 aura 109 5 5 death-skill 225 100 4 aura 104 8 8 death-skill 225 100 8 aura 104 12 12 death-skill 225 100 10 0
xoverseer1 aura 103 5 5 death-skill 62 100 8 aura 103 8 8 death-skill 62 100 12 aura 103 12 12 death-skill 62 100 14 0
xminion1 aura 103 5 5 death-skill 56 100 4 aura 103 8 8 death-skill 56 100 8 aura 103 12 12 death-skill 56 100 10 0
ximp1 aura 102 5 5 death-skill 244 100 2 aura 102 8 8 death-skill 244 100 4 aura 102 12 12 death-skill 244 100 5 0
xsk_archer6 aura 108 5 5 death-skill 67 100 8 aura 108 8 8 death-skill 67 100 12 aura 108 12 12 death-skill 67 100 15 0
xquillrat6 aura 105 5 5 death-skill 38 100 2 aura 105 8 8 death-skill 92 100 10 aura 105 12 12 death-skill 92 100 12 0
xbighead6 aura 110 5 5 death-skill 121 100 1 aura 110 8 8 death-skill 121 100 3 aura 110 12 12 death-skill 121 100 5 0
xsiegebeast1 aura 123 5 5 death-skill 59 100 1 aura 123 8 8 death-skill 59 100 2 aura 123 12 12 death-skill 59 100 3 0
xfrozenhorror1 aura 100 5 5 death-skill 64 100 1 aura 100 8 8 death-skill 64 100 2 aura 100 12 12 death-skill 64 100 3 0
xsnowyeti1 aura 109 5 5 death-skill 44 100 5 aura 109 8 8 death-skill 44 100 9 aura 109 12 12 death-skill 44 100 13 0
xwolfrider1 aura 125 5 5 death-skill 67 100 5 aura 125 8 8 death-skill 67 100 9 aura 125 12 12 death-skill 67 100 13 0
xeagle aura 125 5 5 aura 125 8 8 aura 125 12 12 0
xsuccubus1 aura 118 5 5 death-skill 38 100 6 aura 118 8 8 death-skill 121 100 3 aura 118 12 12 death-skill 121 100 5 0
xsuccubuswitch1 aura 114 5 5 death-skill 51 100 3 aura 114 8 8 death-skill 51 100 5 aura 114 12 12 death-skill 51 100 8 0
xreanimatedhorde1 aura 104 5 5 death-skill 62 100 2 aura 104 8 8 death-skill 121 100 3 aura 104 12 12 death-skill 121 100 5 0
xbloodlord1 aura 103 5 5 death-skill 56 100 1 aura 103 8 8 death-skill 56 100 3 aura 103 12 12 death-skill 56 100 4 0
xputriddefiler1 aura 125 5 5 death-skill 62 100 3 aura 125 8 8 death-skill 62 100 5 aura 125 12 12 death-skill 62 100 8 0
xskeleton1 aura 115 5 5 death-skill 38 100 2 aura 115 8 8 death-skill 38 100 5 aura 115 12 12 death-skill 38 100 7 0
xzombie1 aura 113 5 5 death-skill 44 100 1 aura 113 8 8 death-skill 49 100 5 aura 113 12 12 death-skill 49 100 8 0
xcorruptrogue1 aura 108 5 5 death-skill 67 100 3 aura 108 8 8 death-skill 67 100 5 aura 108 12 12 death-skill 67 100 8 0
xfallenshaman1 aura 125 5 5 death-skill 92 100 3 aura 125 8 8 death-skill 92 100 5 aura 125 12 12 death-skill 92 100 8 0
xcr_archer1 aura 108 5 5 death-skill 38 100 3 aura 108 8 8 death-skill 38 100 5 aura 108 12 12 death-skill 38 100 8 0
xsuicideminion1 aura 114 5 5 death-skill 53 100 3 aura 114 8 8 death-skill 53 100 5 aura 114 12 12 death-skill 53 100 8 0
xgoatman1 aura 102 5 5 death-skill 225 100 1 aura 102 8 8 death-skill 225 100 5 aura 102 12 12 death-skill 225 100 8 0
xfoulcrow5 aura 122 5 5 death-skill 67 100 5 aura 122 8 8 death-skill 67 100 8 aura 122 12 12 death-skill 67 100 12 0
xslinger1 aura 125 5 5 death-skill 53 100 3 aura 125 8 8 death-skill 53 100 5 aura 125 12 12 death-skill 53 100 7 0
xpantherwoman1 aura 102 5 5 death-skill 225 100 1 aura 102 8 8 death-skill 225 100 5 aura 102 12 12 death-skill 225 100 8 0
xsandleaper1 aura 103 5 5 death-skill 49 100 3 aura 103 8 8 death-skill 49 100 5 aura 103 12 12 death-skill 49 100 7 0
xvulture1 aura 125 5 5 death-skill 38 100 5 aura 125 8 8 death-skill 38 100 9 aura 125 12 12 death-skill 121 100 5 0
xhellbovine aura 125 5 5 death-skill 88 100 4 aura 125 8 8 death-skill 88 100 8 aura 125 12 12 death-skill 88 100 12 0

File diff suppressed because it is too large Load Diff

View File

@ -1,142 +0,0 @@
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

View File

@ -1,779 +0,0 @@
Id hcIdx BaseId NextInClass TransLvl NameStr MonStatsEx MonProp MonType AI DescStr Code enabled rangedtype placespawn spawn spawnx spawny spawnmode minion1 minion2 SetBoss BossXfer PartyMin PartyMax MinGrp MaxGrp sparsePopulate Velocity Run Rarity Level Level(N) Level(H) MonSound UMonSound threat aidel aidel(N) aidel(H) aidist aidist(N) aidist(H) aip1 aip1(N) aip1(H) aip2 aip2(N) aip2(H) aip3 aip3(N) aip3(H) aip4 aip4(N) aip4(H) aip5 aip5(N) aip5(H) aip6 aip6(N) aip6(H) aip7 aip7(N) aip7(H) aip8 aip8(N) aip8(H) MissA1 MissA2 MissS1 MissS2 MissS3 MissS4 MissC MissSQ Align isSpawn isMelee npc interact inventory inTown lUndead hUndead demon flying opendoors boss primeevil killable switchai noAura nomultishot neverCount petIgnore deathDmg genericSpawn zoo SendSkills Skill1 Sk1mode Sk1lvl Skill2 Sk2mode Sk2lvl Skill3 Sk3mode Sk3lvl Skill4 Sk4mode Sk4lvl Skill5 Sk5mode Sk5lvl Skill6 Sk6mode Sk6lvl Skill7 Sk7mode Sk7lvl Skill8 Sk8mode Sk8lvl Drain Drain(N) Drain(H) coldeffect coldeffect(N) coldeffect(H) ResDm ResMa ResFi ResLi ResCo ResPo ResDm(N) ResMa(N) ResFi(N) ResLi(N) ResCo(N) ResPo(N) ResDm(H) ResMa(H) ResFi(H) ResLi(H) ResCo(H) ResPo(H) DamageRegen SkillDamage noRatio NoShldBlock ToBlock ToBlock(N) ToBlock(H) Crit minHP maxHP AC Exp A1MinD A1MaxD A1TH A2MinD A2MaxD A2TH S1MinD S1MaxD S1TH MinHP(N) MaxHP(N) AC(N) Exp(N) A1MinD(N) A1MaxD(N) A1TH(N) A2MinD(N) A2MaxD(N) A2TH(N) S1MinD(N) S1MaxD(N) S1TH(N) MinHP(H) MaxHP(H) AC(H) Exp(H) A1MinD(H) A1MaxD(H) A1TH(H) A2MinD(H) A2MaxD(H) A2TH(H) S1MinD(H) S1MaxD(H) S1TH(H) El1Mode El1Type El1Pct El1MinD El1MaxD El1Dur El1Pct(N) El1MinD(N) El1MaxD(N) El1Dur(N) El1Pct(H) El1MinD(H) El1MaxD(H) El1Dur(H) El2Mode El2Type El2Pct El2MinD El2MaxD El2Dur El2Pct(N) El2MinD(N) El2MaxD(N) El2Dur(N) El2Pct(H) El2MinD(H) El2MaxD(H) El2Dur(H) El3Mode El3Type El3Pct El3MinD El3MaxD El3Dur El3Pct(N) El3MinD(N) El3MaxD(N) El3Dur(N) El3Pct(H) El3MinD(H) El3MaxD(H) El3Dur(H) TreasureClass1 TreasureClass2 TreasureClass3 TreasureClass4 TreasureClass1(N) TreasureClass2(N) TreasureClass3(N) TreasureClass4(N) TreasureClass1(H) TreasureClass2(H) TreasureClass3(H) TreasureClass4(H) TCQuestId TCQuestCP SplEndDeath SplGetModeChart SplEndGeneric SplClientEnd *eol
skeleton1 0 skeleton1 skeleton2 0 Skeleton skeleton1 xskeleton1 skeleton Skeleton SK 1 1 3 4 4 2 2 37 68 skeleton skeleton 12 13 12 11 60 65 70 15 12 10 75 80 85 75 75 75 blessedhammer 1 1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 MonBoneArmor S1 1 -50 -40 -25 10 75 100 58 125 100 1 1 22 22 22 15 172 258 136 92 51 152 152 51 152 152 140 200 150 68 60 150 180 60 158 188 140 200 150 68 60 150 180 60 158 188 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
skeleton2 1 skeleton1 skeleton3 1 Returned skeleton2 xskeleton1 skeleton Skeleton SK 1 2 3 5 5 2 6 38 69 skeleton skeleton 12 13 12 11 70 75 80 12 10 7 80 85 90 25 25 25 blessedhammer 1 1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 MonBoneArmor S1 2 -50 -40 -25 20 75 100 58 125 1 1 29 29 29 15 174 254 136 92 62 152 140 62 152 140 140 200 150 68 60 150 180 60 158 188 140 200 150 68 60 150 180 60 158 188 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
skeleton3 2 skeleton1 skeleton4 2 BoneWarrior skeleton3 xskeleton1 skeleton Skeleton SK 1 2 4 5 5 2 7 39 85 skeleton skeleton 12 13 12 11 80 85 90 9 8 7 85 90 95 50 50 50 blessedhammer 1 1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 MonBoneArmor S1 3 -50 -40 -25 30 65 75 85 100 58 135 100 1 1 37 37 37 15 178 248 136 90 62 182 141 62 182 141 140 200 150 68 60 150 180 60 158 188 140 200 150 68 60 150 180 60 158 188 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
skeleton4 3 skeleton1 skeleton5 3 BurningDead skeleton4 xskeleton1 skeleton Skeleton SK 1 2 4 6 6 2 13 43 74 skeleton skeleton 12 13 12 11 90 95 95 7 6 5 90 95 99 66 66 66 blessedhammer 1 1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 MonBoneArmor S1 5 -50 -40 -25 40 75 75 100 100 58 125 100 1 1 45 45 45 15 186 266 136 90 68 152 140 51 152 140 140 200 150 68 60 150 180 60 158 188 140 200 150 68 60 135 165 60 158 188 A1 fire 50 33 82 50 38 82 50 38 82 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
skeleton5 4 skeleton1 skeleton6 4 Horror skeleton5 xskeleton1 skeleton Skeleton SK 1 2 4 6 6 2 14 44 78 skeleton skeleton 12 13 12 11 99 99 99 5 5 5 95 99 99 33 33 33 blessedhammer 1 1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 MonBoneArmor S1 7 -50 -40 -25 50 45 85 75 65 105 100 58 95 145 100 1 1 52 52 52 15 188 262 136 90 62 152 141 46 152 141 140 200 150 68 60 150 180 60 158 188 140 200 150 68 60 150 180 60 142 172 A2 ltng 60 45 90 60 45 75 60 45 75 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
zombie1 5 zombie1 zombie2 0 Zombie zombie1 zombie Zombie ZM 1 1 2 2 4 2 1 36 67 zombie zombieunique 12 13 12 11 30 40 50 10 15 20 20 25 30 pantherpotgreen 1 1 1 1 1 1 125 100 75 -50 -40 -25 10 75 100 75 145 100 1 1 11 11 11 15 202 362 136 118 76 226 152 152 226 152 210 300 120 84 90 210 158 105 225 165 210 300 120 84 90 210 158 105 225 165 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
zombie2 6 zombie1 zombie3 1 HungryDead zombie2 zombie Zombie ZM 1 1 3 2 5 2 2 37 68 zombie zombieunique 12 13 12 11 40 50 60 15 20 25 25 30 35 pantherpotgreen 1 1 1 1 1 1 125 100 75 -50 -40 -25 20 75 100 75 135 100 1 1 13 13 13 15 202 372 136 118 51 152 152 152 201 152 210 300 120 84 90 210 158 105 225 165 210 300 120 84 90 210 158 105 225 165 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
zombie3 7 zombie1 zombie4 2 Ghoul zombie3 zombie Zombie ZM 1 2 3 2 5 2 12 43 73 zombie zombieunique 12 13 12 11 50 60 70 20 25 30 30 35 40 pantherpotgreen 1 1 1 1 1 1 125 100 75 -50 -40 -25 30 75 100 75 125 100 1 1 27 27 27 15 216 394 136 116 76 207 140 170 244 140 210 300 120 84 90 210 158 105 225 165 210 300 120 84 90 210 158 105 225 165 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
zombie4 8 zombie1 zombie5 3 DrownedCarcass zombie4 zombie Zombie ZM 1 2 4 2 6 2 22 50 80 zombie zombieunique 12 13 12 11 100 100 100 30 30 30 35 40 45 pantherpotgreen 1 1 1 1 1 1 125 100 75 -50 -40 -25 40 75 75 75 100 100 75 135 100 1 1 40 40 40 15 214 384 138 116 76 204 141 162 248 141 210 300 120 84 90 210 158 105 225 165 210 300 120 84 82 202 158 105 225 165 A1 cold 75 32 63 38 75 30 60 112 75 30 60 150 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
zombie5 9 zombie1 4 PlagueBearer zombie5 zombie Zombie ZM 1 3 4 2 6 2 17 46 77 zombie zombieunique 12 13 12 11 60 70 80 25 30 30 40 45 50 pantherpotgreen 1 1 1 1 1 1 125 100 75 -50 -40 -25 50 75 75 100 100 75 125 100 1 1 33 33 33 15 218 384 136 116 82 206 138 152 246 138 210 300 120 84 90 210 158 105 225 165 210 300 120 84 82 202 158 105 225 165 A1 pois 50 40 81 600 50 38 38 600 50 38 38 600 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
bighead1 10 bighead1 bighead2 0 Afflicted bighead1 bighead Bighead BH 1 1 2 3 7 7 1 12 43 73 bighead bighead 12 13 12 11 88 75 75 40 30 30 0 20 30 60 70 80 bighead1 1 1 1 1 1 125 110 100 -50 -40 -33 10 95 110 100 50 125 1 1 23 23 23 15 132 254 104 86 114 170 116 130 240 135 100 75 150 165 130 240 135 100 75 150 165 A2 ltng 100 112 165 100 210 270 100 240 300 A1 ltng 15 15 30 35 15 30 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
bighead2 11 bighead1 bighead3 1 Tainted bighead2 bighead Bighead BH 1 1 2 4 7 7 1 11 42 72 bighead bighead 12 13 12 11 86 100 100 40 40 40 0 30 40 60 70 80 bighead2 1 1 1 1 1 125 110 100 -50 -40 -33 20 85 105 100 50 130 1 1 22 22 22 15 134 260 104 86 94 152 111 130 240 135 100 75 150 165 130 240 135 100 75 150 165 A2 ltng 100 112 165 100 210 270 100 240 300 A1 ltng 15 15 30 35 15 30 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
bighead3 12 bighead1 bighead4 2 Misshapen bighead3 bighead Bighead BH 1 1 1 2 6 6 1 5 37 69 bighead bighead 12 13 12 11 80 50 50 40 50 50 0 40 50 60 70 80 bighead3 1 1 1 1 1 125 110 100 -50 -40 -33 30 65 95 50 135 1 1 15 15 15 15 124 248 106 86 114 152 110 130 240 135 100 75 150 165 130 240 135 100 75 150 165 A2 ltng 100 112 165 100 210 270 100 240 300 A1 ltng 15 15 30 35 15 30 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
bighead4 13 bighead1 bighead5 3 Disfigured bighead4 bighead Bighead BH 1 1 1 3 6 6 1 8 40 70 bighead bighead 12 13 12 11 83 0 0 40 40 40 0 50 65 60 70 80 bighead4 1 1 1 1 1 125 110 100 -50 -40 -33 40 75 100 50 140 1 1 19 19 19 15 134 256 104 86 100 152 116 130 240 135 100 75 150 165 130 240 135 100 75 150 165 A2 ltng 100 112 165 100 210 270 100 240 300 A1 ltng 15 15 30 35 15 30 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
bighead5 14 bighead1 bighead6 4 Damned bighead5 bighead Bighead BH 1 1 3 4 8 8 2 27 57 84 bighead bighead 12 13 12 11 90 33 33 40 30 30 0 60 80 60 70 80 bighead5 1 1 1 1 1 125 110 100 -50 -40 -33 50 105 125 50 145 1 1 40 40 40 15 130 252 104 94 106 159 112 130 240 135 100 75 150 165 130 240 135 100 75 150 165 A2 ltng 100 112 165 100 210 270 100 240 300 A1 ltng 15 15 30 35 15 30 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
foulcrow1 15 foulcrow1 foulcrow2 0 FoulCrow foulcrow1 foulcrow BloodHawk BK 1 2 4 5 5 2 4 37 68 foulcrow foulcrow 12 13 12 11 30 45 65 90 90 90 5 10 10 50 60 70 100 100 100 1 1 1 1 1 125 125 125 -50 -40 -33 10 50 125 1 1 15 15 15 15 38 92 30 39 39 76 134 40 90 180 32 105 165 172 40 90 180 32 105 165 172 A1 pois 15 15 50 150 25 15 50 150 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
foulcrow2 16 foulcrow1 foulcrow3 1 BloodHawk foulcrow2 foulcrow BloodHawk BK 1 3 4 5 5 2 6 38 69 foulcrow foulcrow 12 13 12 11 30 50 65 90 90 90 5 10 10 50 60 75 100 100 100 1 1 1 1 1 125 125 125 -50 -40 -33 20 50 130 1 1 17 17 17 15 42 82 31 39 62 92 140 40 90 180 32 105 165 172 40 90 180 32 105 165 172 A1 pois 15 15 50 150 25 15 50 150 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
foulcrow3 17 foulcrow1 foulcrow4 2 BlackRaptor foulcrow3 foulcrow BloodHawk BK 1 3 5 6 6 2 16 45 76 foulcrow foulcrow 12 13 12 11 30 55 65 90 90 90 5 10 10 50 60 75 100 100 100 1 1 1 1 1 125 125 125 -50 -40 -33 30 85 105 50 135 1 1 33 33 33 15 42 90 30 39 56 96 141 40 90 180 32 105 165 172 40 90 180 32 105 165 172 A1 pois 15 15 50 150 25 15 50 150 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
foulcrow4 18 foulcrow1 foulcrow5 3 CloudStalker foulcrow4 foulcrow BloodHawk BK 1 4 5 7 7 2 22 49 79 foulcrow foulcrow 12 13 12 11 30 60 65 90 90 90 5 10 10 50 60 75 100 100 100 1 1 1 1 1 125 125 125 -50 -40 -33 40 45 85 65 75 105 75 125 1 1 40 40 40 15 44 88 30 38 54 108 141 40 90 180 32 105 165 172 40 90 180 32 105 165 172 A1 pois 15 15 50 150 25 15 50 150 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
fallen1 19 fallen1 fallen2 0 Fallen fallen1 fallen Fallen FA 1 fallen1 1 1 2 3 2 3 6 6 2 1 36 67 fallen fallen 12 13 12 11 30 40 50 10 15 20 50 60 70 20 25 30 pantherpotorange 1 1 1 1 1 1 1 Fire Hit seq_firehit 1 MonCurseCast S2 1 125 110 100 -50 -40 -33 10 40 125 65 1 1 21 21 21 15 42 122 136 65 76 152 152 76 152 152 50 110 105 52 68 135 135 75 150 128 50 110 105 52 68 135 135 75 150 128 A1 fire 10 30 45 20 30 45 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
fallen2 20 fallen1 fallen3 1 Carver fallen2 fallen Fallen FA 1 fallen2 1 1 2 4 2 4 6 6 2 5 38 68 fallen fallen 12 13 12 11 45 50 55 15 18 24 60 70 80 25 30 35 pantherpotorange 1 1 1 1 1 1 1 Fire Hit seq_firehit 2 MonCurseCast S2 2 125 110 100 -50 -40 -33 20 40 135 65 1 1 31 31 31 15 48 108 136 65 76 152 136 76 152 136 50 110 105 52 68 135 135 75 150 128 50 110 105 52 68 135 135 75 150 128 A1 cold 10 22 30 225 20 22 30 300 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
fallen3 21 fallen1 fallen4 2 Devilkin fallen3 fallen Fallen FA 1 fallen3 1 1 3 4 3 4 7 7 2 7 39 85 fallen fallen 12 13 12 11 55 60 60 20 22 30 70 80 90 30 35 40 pantherpotorange 1 1 1 1 1 1 1 Fire Hit seq_firehit 3 MonCurseCast S2 4 125 110 100 -50 -40 -33 30 40 145 65 1 1 45 45 45 15 36 106 136 63 62 152 141 62 152 141 50 110 105 52 68 135 135 75 150 128 50 110 105 52 68 135 135 75 150 128 A1 ltng 10 2 75 20 2 120 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
fallen4 22 fallen1 fallen5 3 DarkOne fallen4 fallen Fallen FA 1 fallen4 1 1 3 5 3 5 7 7 2 10 41 71 fallen fallen 12 13 12 11 65 70 70 25 26 30 80 90 95 35 40 45 pantherpotorange 1 1 1 1 1 1 1 Fire Hit seq_firehit 4 MonCurseCast S2 6 125 110 100 -50 -40 -33 40 40 150 65 1 1 61 61 61 15 46 110 136 64 64 152 136 64 152 136 50 110 105 52 68 135 135 75 150 128 50 110 105 52 68 135 135 75 150 128 A1 pois 10 15 22 75 20 15 22 112 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
fallen5 23 fallen1 fallen6 4 WarpedFallen fallen5 fallen Fallen FA 1 fallen5 1 1 1 1 1 1 9 9 2 40 55 83 fallen fallen 12 13 12 11 75 80 80 30 30 30 90 95 99 40 45 50 pantherpotorange 1 1 1 1 1 1 1 Fire Hit seq_firehit 5 MonCurseCast S2 9 125 110 100 -50 -40 -33 50 75 75 75 75 75 91 91 91 91 91 91 50 100 100 100 100 100 1 1 81 81 81 15 42 110 136 99 68 140 140 68 146 140 50 110 105 52 68 135 135 75 150 128 50 110 105 52 68 135 135 75 150 128 A1 cold 10 30 38 262 10 30 38 338 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
brute2 24 brute2 brute3 0 Brute brute2 brute Brute YE 1 1 2 5 5 1 5 38 69 brute brute 12 13 12 11 0 0 0 75 75 80 100 100 90 1 1 1 1 1 1 125 125 125 -50 -40 -33 20 75 145 1 1 16 16 16 15 278 448 136 129 114 152 136 189 226 136 290 420 128 96 105 180 142 165 210 150 290 420 128 96 105 180 142 165 210 150 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
brute3 25 brute2 brute4 1 Yeti brute3 brute Brute YE 1 2 2 5 5 1 9 40 70 brute brute 12 13 12 11 0 0 0 80 80 85 85 85 75 1 1 1 1 1 1 125 125 125 -50 -40 -33 30 45 85 75 155 1 1 22 22 22 15 292 472 136 129 87 152 142 172 194 142 290 420 128 96 105 180 142 165 210 150 290 420 128 96 105 180 142 165 210 150 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
brute4 26 brute2 brute5 2 Crusher brute4 brute Brute YE 1 2 3 6 6 2 19 48 79 brute brute 12 13 12 11 0 0 0 85 85 90 75 75 65 1 1 1 1 1 1 125 125 125 -50 -40 -33 40 85 75 75 165 1 1 35 35 35 15 286 462 136 128 93 152 140 162 208 140 290 420 128 96 105 180 142 165 210 150 290 420 128 96 105 180 142 165 210 150 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
brute5 27 brute2 brute1 3 WailingBeast brute5 brute Brute YE 1 3 4 6 6 1 23 53 84 brute brute 12 13 12 11 0 0 0 90 90 95 60 60 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 50 85 45 105 75 75 125 100 1 1 41 41 41 15 284 460 138 129 92 160 138 171 212 138 290 420 128 96 105 180 142 165 210 150 290 420 128 96 105 180 142 165 210 150 A1 fire 15 22 52 15 45 75 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
brute1 28 brute2 4 GargantuanBeast brute1 brute Brute YE 1 1 1 4 4 1 2 36 68 brute brute 12 13 12 11 0 0 0 100 100 100 45 45 35 1 1 1 1 1 1 125 125 125 -50 -40 -33 10 75 125 1 1 13 13 13 15 258 430 136 129 100 152 152 152 201 152 290 420 128 96 105 180 142 165 210 150 290 420 128 96 105 180 142 165 210 150 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
sandraider1 29 sandraider1 sandraider2 0 SandRaider sandraider1 sandraider SandRaider SR 1 2 3 6 6 1 13 43 74 sandraider sandraider 12 13 12 11 40 40 40 70 70 40 75 80 85 70 75 85 18 12 9 50 50 50 1 1 1 1 1 1 Fire Hit seq_firehit 1 125 100 91 -50 -45 -40 10 50 125 75 58 1 1 45 45 45 15 272 422 136 125 100 152 262 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 S1 fire 100 150 195 100 180 225 100 210 270 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
sandraider2 30 sandraider1 sandraider3 1 Marauder sandraider2 sandraider SandRaider SR 1 2 4 6 6 1 17 46 77 sandraider sandraider 12 13 12 11 45 40 40 70 60 20 80 85 90 70 75 85 15 10 7 1 1 1 50 50 50 1 1 1 1 1 1 Fire Hit seq_firehit 2 125 100 91 -50 -45 -40 20 50 75 125 58 1 1 55 55 55 15 268 424 136 125 96 152 262 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 S1 cold 100 150 195 112 100 180 225 112 100 210 270 112 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
sandraider3 31 sandraider1 sandraider4 2 Invader sandraider3 sandraider SandRaider SR 1 3 4 7 7 1 18 47 78 sandraider sandraider 12 13 12 11 50 40 35 70 50 10 85 90 95 70 80 90 13 9 6 50 50 50 1 1 1 1 1 1 Fire Hit seq_firehit 3 125 100 91 -50 -45 -40 30 50 135 75 58 1 1 58 58 58 15 270 422 136 125 100 138 264 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 S1 fire 100 150 195 100 180 225 100 210 270 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
sandraider4 32 sandraider1 sandraider5 3 Infidel sandraider4 sandraider SandRaider SR 1 3 5 7 7 1 24 53 81 sandraider sandraider 12 13 12 11 55 40 35 70 40 10 88 95 99 70 80 90 10 7 5 1 1 1 50 50 50 1 1 1 1 1 1 Fire Hit seq_firehit 4 125 100 91 -50 -45 -40 40 50 75 135 58 1 1 73 73 73 15 270 422 138 124 94 141 264 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 S1 cold 100 150 195 112 100 180 225 112 100 210 270 112 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
sandraider5 33 sandraider1 sandraider6 4 Assailant sandraider5 sandraider SandRaider SR 1 4 5 8 8 1 26 59 84 sandraider sandraider 12 13 12 11 60 40 35 70 30 10 90 99 100 70 80 90 7 5 4 50 50 50 1 1 1 1 1 1 Fire Hit seq_firehit 5 125 100 91 -50 -45 -40 50 50 145 75 58 1 1 79 79 79 15 268 420 136 131 98 142 264 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 270 360 165 104 98 165 262 165 210 270 80 100 250 S1 fire 100 150 195 100 180 225 100 210 270 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
gorgon1 34 gorgon1 gorgon2 0 unused gorgon1 Idle GO 1 13 12 11 1 1 0
gorgon2 35 gorgon1 gorgon3 1 unused gorgon2 Idle GO 1 13 12 11 1 1 0
gorgon3 36 gorgon1 gorgon4 2 unused gorgon3 Idle GO 1 13 12 11 1 1 0
gorgon4 37 gorgon1 3 unused gorgon4 Idle GO 1 13 12 11 1 1 0
wraith1 38 wraith1 wraith2 0 Ghost wraith1 wraith Wraith drains mana WR 1 1 2 6 6 1 7 38 75 wraith wraith 12 13 12 11 50 60 60 12 10 8 70 75 80 lightningbolt 1 1 1 1 1 1 1 NecromageMissile A1 1 125 91 58 -50 -33 0 20 75 55 85 125 75 75 100 1 1 19 19 19 15 166 330 136 99 92 182 141 130 180 195 84 90 158 142 130 180 195 84 90 158 142 A1 mana 40 90 150 40 150 300 40 300 450 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
wraith2 39 wraith1 wraith3 1 Wraith wraith2 wraith Wraith drains mana WR 1 1 3 7 7 1 10 41 71 wraith wraith 12 13 12 11 60 70 70 10 8 6 75 80 85 lightningbolt 1 1 1 1 1 1 1 NecromageMissile A1 3 125 91 58 -50 -33 0 30 75 65 85 125 75 85 100 1 1 23 23 23 15 174 346 136 98 87 172 136 130 180 195 84 90 158 142 130 180 195 84 90 158 142 A1 mana 45 86 150 45 150 300 45 300 450 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
wraith3 40 wraith1 wraith4 2 Specter wraith3 wraith Wraith drains mana WR 1 2 3 7 7 1 19 48 79 wraith wraith 12 13 12 11 70 80 80 8 6 4 80 85 90 lightningbolt 1 1 1 1 1 1 1 NecromageMissile A1 4 125 91 58 -50 -33 0 40 75 75 85 125 75 95 100 1 1 35 35 35 15 172 346 136 98 93 152 140 130 180 195 84 90 158 142 130 180 195 84 90 158 142 A1 mana 50 57 104 50 150 300 50 300 450 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
wraith4 41 wraith1 wraith5 3 Apparition wraith4 wraith Wraith drains mana WR 1 2 4 8 8 1 20 49 80 wraith wraith 12 13 12 11 80 90 90 6 4 4 85 90 95 lightningbolt 1 1 1 1 1 1 1 NecromageMissile A1 5 125 91 58 -50 -33 0 50 75 85 85 125 75 100 100 1 1 37 37 37 15 172 344 138 99 93 162 140 130 180 195 84 90 158 142 130 180 195 84 90 158 142 A1 mana 60 69 126 60 150 300 60 300 450 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
wraith5 42 wraith1 wraith6 4 DarkShape wraith5 wraith Wraith drains mana WR 1 3 4 9 9 1 22 51 81 wraith wraith 12 13 12 11 90 100 100 4 4 4 90 95 99 lightningbolt 1 1 1 1 1 1 1 NecromageMissile A1 6 125 91 58 -50 -33 0 60 75 100 85 125 75 105 100 1 1 40 40 40 15 170 344 138 99 98 162 141 130 180 195 84 90 158 142 130 180 195 84 90 158 142 A1 mana 70 75 160 70 150 300 70 300 450 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
corruptrogue1 43 corruptrogue1 corruptrogue2 0 DarkHunter corruptrogue1 corruptrogue CorruptRogue CR 1 2 3 6 6 2 2 36 67 corruptrogue corruptrogue 12 13 12 11 60 70 80 15 10 7 75 80 85 100 100 100 20 50 75 blessedhammer 1 1 1 1 1 1 1 CountessFirewall A1 1 125 125 125 -50 -40 -33 10 45 45 58 58 125 45 1 1 25 25 25 15 116 202 136 83 51 152 152 120 200 142 76 82 165 195 120 200 142 76 82 165 195 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
corruptrogue2 44 corruptrogue1 corruptrogue3 1 VileHunter corruptrogue2 corruptrogue CorruptRogue CR 1 2 4 7 9 2 5 38 68 corruptrogue corruptrogue 12 13 12 11 70 80 90 12 9 7 80 85 90 100 100 100 20 50 75 blessedhammer 1 1 1 1 1 1 1 CountessFirewall A1 1 125 125 125 -50 -40 -33 20 45 45 58 58 145 45 1 1 34 34 34 15 124 202 136 83 76 189 136 120 200 142 76 82 165 195 120 200 142 76 82 165 195 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
corruptrogue3 45 corruptrogue1 corruptrogue4 2 DarkStalker corruptrogue3 corruptrogue CorruptRogue CR 1 3 4 7 11 2 8 39 69 corruptrogue corruptrogue 12 13 12 11 80 85 90 9 7 5 85 90 95 100 100 100 20 50 75 blessedhammer 1 1 1 1 1 1 1 CountessFirewall A1 1 125 125 125 -50 -40 -33 30 45 45 58 58 155 45 1 1 45 45 45 15 134 224 136 84 76 176 142 120 200 142 76 82 165 195 120 200 142 76 82 165 195 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
corruptrogue4 46 corruptrogue1 corruptrogue5 3 BlackRogue corruptrogue4 corruptrogue CorruptRogue CR 1 3 5 8 13 2 9 40 70 corruptrogue corruptrogue 12 13 12 11 90 95 95 7 5 5 88 95 95 100 100 100 20 50 75 blessedhammer 1 1 1 1 1 1 1 CountessFirewall A1 1 125 125 125 -50 -40 -33 40 45 45 58 58 165 45 1 1 57 57 57 15 132 222 136 84 64 172 142 120 200 142 76 82 165 195 120 200 142 76 82 165 195 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
corruptrogue5 47 corruptrogue1 4 FleshHunter corruptrogue5 corruptrogue CorruptRogue CR 1 4 5 9 13 1 23 53 84 corruptrogue corruptrogue 12 13 12 11 99 99 99 5 5 5 90 99 100 100 100 100 20 50 75 blessedhammer 1 1 1 1 1 1 1 CountessFirewall A1 1 125 125 125 -50 -40 -33 50 45 65 45 58 58 175 45 1 1 67 67 67 15 130 214 138 83 70 182 138 120 200 142 76 82 165 195 120 200 142 76 82 165 195 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
baboon1 48 baboon1 baboon2 0 DuneBeast baboon1 baboon Baboon BB 1 1 2 8 13 1 18 47 78 baboon baboon 12 13 12 11 33 33 33 20 30 35 55 60 65 0 0 0 1 2 3 pantherpotorange 1 1 1 1 1 1 MonCurseCast S2 1 125 125 125 -50 -40 -33 10 58 125 75 50 1 1 34 34 34 15 216 302 136 102 76 226 138 76 226 138 180 270 165 88 75 195 180 75 165 195 180 270 165 88 75 195 180 75 165 195 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
baboon2 49 baboon1 baboon3 1 RockDweller baboon2 baboon Baboon BB 1 1 3 8 13 1 18 55 83 baboon baboon 12 13 12 11 33 33 33 20 30 35 60 65 70 15 15 15 1 2 3 pantherpotorange 1 1 1 1 1 1 MonCurseCast S2 2 125 125 125 -50 -40 -33 20 58 125 75 50 1 1 34 34 34 15 216 302 136 102 76 226 138 76 226 138 180 270 165 88 75 195 180 75 165 195 180 270 165 88 75 195 180 75 165 195 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
baboon3 50 baboon1 baboon4 2 JungleHunter baboon3 baboon Baboon BB 1 2 3 8 14 1 21 49 79 baboon baboon 12 13 12 11 33 33 33 20 30 35 65 70 75 25 25 25 1 2 3 pantherpotorange 1 1 1 1 1 1 MonCurseCast S2 4 125 125 125 -50 -40 -33 30 70 130 75 50 1 1 39 39 39 15 214 302 138 103 76 226 141 76 226 141 180 270 165 88 75 195 180 75 165 195 180 270 165 88 75 195 180 75 165 195 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
baboon4 51 baboon1 baboon5 3 DoomApe baboon4 baboon Baboon BB 1 2 4 8 14 1 22 52 80 baboon baboon 12 13 12 11 33 33 33 20 30 35 70 75 80 40 40 40 1 2 3 pantherpotorange 1 1 1 1 1 1 MonCurseCast S2 6 125 125 125 -50 -40 -33 40 70 130 75 50 1 1 40 40 40 15 214 302 138 102 76 237 141 76 237 141 180 270 165 88 75 195 180 75 165 195 180 270 165 88 75 195 180 75 165 195 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
baboon5 52 baboon1 baboon7 4 TempleGuard baboon5 baboon Baboon BB 1 3 4 8 15 1 24 53 81 baboon baboon 12 13 12 11 33 33 33 20 30 35 75 80 85 50 50 50 1 2 3 pantherpotorange 1 1 1 1 1 1 MonCurseCast S2 9 125 125 125 -50 -40 -33 50 75 135 75 50 1 1 43 43 43 15 214 302 138 103 76 226 138 76 226 138 180 270 165 88 75 195 180 75 165 195 180 270 165 88 75 195 180 75 165 195 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
goatman1 53 goatman1 goatman2 0 MoonClan goatman1 goatman Goatman GM 1 1 2 6 6 1 4 37 68 goatman goatman 12 13 12 11 75 75 80 10 10 9 80 80 80 pantherpotgreen 1 1 1 1 1 1 1 AndrialSpray seq_andarielspray 1 125 115 105 -50 -40 -33 10 75 125 1 1 15 15 15 15 220 274 86 97 114 189 134 200 260 90 72 112 195 128 200 260 90 72 112 195 128 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
goatman2 54 goatman1 goatman3 1 NightClan goatman2 goatman Goatman GM 1 1 3 7 7 1 6 38 69 goatman goatman 12 13 12 11 75 75 80 10 10 8 80 80 85 pantherpotgreen 1 1 1 1 1 1 1 AndrialSpray seq_andarielspray 1 125 115 105 -50 -40 -33 20 75 135 1 1 17 17 17 15 228 282 86 97 122 212 140 200 260 90 72 105 188 128 200 260 90 72 105 188 128 A1 ltng 15 15 112 20 22 128 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
goatman3 55 goatman1 goatman4 2 BloodClan goatman3 goatman Goatman GM 1 2 3 8 8 1 7 38 75 goatman goatman 12 13 12 11 75 80 85 10 9 7 80 85 90 pantherpotgreen 1 1 1 1 1 1 1 AndrialSpray seq_andarielspray 1 125 115 105 -50 -40 -33 30 75 125 1 1 19 19 19 15 224 272 86 97 122 242 141 200 260 90 72 98 180 128 200 260 90 72 98 180 128 A1 fire 20 45 75 25 60 105 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
goatman4 56 goatman1 goatman5 3 HellClan goatman4 goatman Goatman GM 1 3 4 10 10 1 19 48 79 goatman goatman 12 13 12 11 75 80 85 10 8 7 80 85 95 pantherpotgreen 1 1 1 1 1 1 1 AndrialSpray seq_andarielspray 1 125 115 105 -50 -40 -33 40 65 95 75 135 1 1 35 35 35 15 232 286 86 96 105 220 140 200 260 90 72 98 180 128 200 260 90 72 98 180 128 A1 fire 25 45 75 30 60 105 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
goatman5 57 goatman1 goatman6 4 DeathClan goatman5 goatman Goatman GM 1 2 4 9 9 1 10 40 70 goatman goatman 12 13 12 11 75 85 90 10 7 7 80 90 99 pantherpotgreen 1 1 1 1 1 1 1 AndrialSpray seq_andarielspray 1 125 115 105 -50 -40 -33 50 55 45 75 75 75 75 100 1 1 23 23 23 15 238 292 86 97 108 237 136 200 260 90 72 112 195 128 200 260 90 72 112 195 128 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
fallenshaman1 58 fallenshaman1 fallenshaman2 0 FallenShaman fallenshaman1 fallen FallenShaman raises Fallen FS 1 fallen1 1 2 6 1 1 5 5 2 2 36 68 fallenshaman fallenshaman 14 13 12 11 45 50 55 60 65 70 100 90 80 24 24 26 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 VampireFirewall seq_shamanresurrect 1 125 100 91 -50 -40 -33 10 50 75 40 125 1 1 13 13 13 15 116 202 136 86 51 152 152 110 180 112 120 68 135 158 110 180 112 120 68 135 158 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
fallenshaman2 59 fallenshaman1 fallenshaman3 1 CarverShaman fallenshaman2 fallen FallenShaman raises Carvers FS 1 fallen2 1 2 6 1 1 5 5 2 6 38 69 fallenshaman fallenshaman 14 13 12 11 55 60 65 70 75 75 100 90 80 24 24 26 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 VampireFirewall seq_shamanresurrect 1 125 100 91 -50 -40 -33 20 55 85 40 130 1 1 17 17 17 15 122 202 136 86 62 182 140 110 180 112 120 68 135 158 110 180 112 120 68 135 158 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
fallenshaman3 60 fallenshaman1 fallenshaman4 2 DevilkinShaman fallenshaman3 fallen FallenShaman raises Devilkin FS 1 fallen3 1 2 6 1 1 6 6 2 9 40 70 fallenshaman fallenshaman 14 13 12 11 65 70 75 80 85 85 100 90 80 24 26 28 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 VampireFirewall seq_shamanresurrect 1 125 100 91 -50 -40 -33 30 60 95 40 135 1 1 22 22 22 15 132 222 136 86 64 172 142 110 180 112 120 68 135 158 110 180 112 120 68 135 158 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
fallenshaman4 61 fallenshaman1 fallenshaman5 3 DarkShaman fallenshaman4 fallen FallenShaman raises Dark Ones FS 1 fallen4 1 2 6 1 1 6 6 2 11 42 72 fallenshaman fallenshaman 14 13 12 11 70 80 85 85 90 90 100 90 80 24 26 30 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 VampireFirewall seq_shamanresurrect 1 125 100 91 -50 -40 -33 40 65 105 40 140 1 1 25 25 25 15 134 218 136 86 76 170 138 110 180 112 120 68 135 158 110 180 112 120 68 135 158 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
fallenshaman5 62 fallenshaman1 fallenshaman6 4 WarpedShaman fallenshaman5 fallen FallenShaman raises Warped Fallen FS 1 fallen5 1 2 6 1 3 7 7 1 40 55 83 fallenshaman fallenshaman 14 13 12 11 75 85 90 90 90 95 100 90 80 24 28 30 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 VampireFirewall seq_shamanresurrect 1 125 100 91 -50 -40 -33 50 45 95 75 125 50 75 145 1 1 65 65 65 15 130 214 136 134 80 182 140 110 180 112 120 68 135 158 110 180 112 120 68 135 158 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
quillrat1 63 quillrat1 quillrat2 0 QuillRat quillrat1 quillrat QuillRat SI 1 1 1 2 4 4 2 1 36 67 quillrat quillrat 12 13 12 11 10 15 20 35 45 50 2 2 2 icebolt spike1 icebolt 1 1 1 125 125 125 -50 -40 -33 10 75 75 1 1 11 11 11 15 42 162 136 76 76 152 152 22 38 201 40 140 120 56 45 112 98 45 75 150 40 140 120 56 45 112 98 45 75 150 A2 pois 15 15 22 75 20 30 38 112 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
quillrat2 64 quillrat1 quillrat3 1 SpikeFiend quillrat2 quillrat QuillRat SI 1 1 1 3 4 4 2 5 38 68 quillrat quillrat 12 13 12 11 15 17 20 45 55 55 2 2 2 icebolt spike2 icebolt 1 1 1 125 125 125 -50 -40 -33 20 75 75 1 1 16 16 16 15 48 170 136 76 39 189 136 22 38 192 40 140 120 56 45 112 98 45 75 150 40 140 120 56 45 112 98 45 75 150 A2 cold 5 38 60 150 15 52 90 225 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
quillrat3 65 quillrat1 quillrat4 2 ThornBeast quillrat3 quillrat QuillRat SI 1 1 2 3 5 5 2 8 39 69 quillrat quillrat 12 13 12 11 20 20 22 55 60 65 1 1 1 icebolt spike3 icebolt 1 1 1 125 125 125 -50 -40 -33 30 75 75 1 1 21 21 21 15 46 178 136 76 51 176 142 22 38 186 40 140 120 56 45 112 98 45 75 150 40 140 120 56 45 112 98 45 75 150 A2 cold 5 38 60 150 15 52 90 225 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
quillrat4 66 quillrat1 quillrat5 3 RazorSpine quillrat4 quillrat QuillRat SI 1 1 2 4 5 5 2 9 40 70 quillrat quillrat 12 13 12 11 23 23 23 65 65 70 1 1 1 icebolt spike4 icebolt 1 1 1 125 125 125 -50 -40 -33 40 75 75 1 1 22 22 22 15 42 172 136 76 44 172 142 22 38 190 40 140 120 56 45 112 98 45 75 150 40 140 120 56 45 112 98 45 75 150 A2 fire 5 45 68 15 68 112 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
quillrat5 67 quillrat1 quillrat6 4 JungleUrchin quillrat5 quillrat QuillRat SI 1 1 3 4 6 6 1 18 48 79 quillrat quillrat 12 13 12 11 25 25 27 75 75 75 1 1 1 icebolt spike5 icebolt 1 1 1 125 125 125 -50 -40 -33 50 75 75 1 1 34 34 34 15 44 174 136 76 51 176 138 22 38 188 40 140 120 56 45 112 98 45 75 150 40 140 120 56 45 112 98 45 75 150 A2 ltng 5 8 112 15 8 180 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
sandmaggot1 68 sandmaggot1 sandmaggot2 0 SandMaggot sandmaggot1 sandmaggot SandMaggot Lays Eggs SM 1 maggotegg1 0 0 S1 1 1 5 5 1 16 45 76 sandmaggot sandmaggot 12 13 12 11 35 35 35 35 35 35 2 2 2 75 75 75 120 120 120 goospit1 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 125 100 75 -50 -40 -33 10 91 58 130 1 1 33 33 33 15 278 348 136 125 123 273 141 220 300 172 100 105 165 112 220 300 172 100 105 165 112 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
sandmaggot2 69 sandmaggot1 sandmaggot3 1 RockWorm sandmaggot2 sandmaggot SandMaggot Lays Eggs SM 1 maggotegg2 0 0 S1 1 1 5 5 1 17 45 84 sandmaggot sandmaggot 12 13 12 11 40 40 40 40 45 40 2 2 2 80 80 80 110 110 110 goospit2 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 125 100 75 -50 -40 -33 20 91 58 135 1 1 33 33 33 15 278 346 136 125 136 286 138 220 300 172 100 105 165 112 220 300 172 100 105 165 112 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
sandmaggot3 70 sandmaggot1 sandmaggot4 2 Devourer sandmaggot3 sandmaggot SandMaggot Lays Eggs SM 1 maggotegg3 0 0 S1 1 2 5 5 1 19 48 79 sandmaggot sandmaggot 12 13 12 11 45 45 45 50 50 50 2 2 2 85 85 85 100 100 100 goospit3 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 125 100 75 -50 -40 -33 30 91 58 140 1 1 35 35 35 15 282 346 136 124 128 266 140 220 300 172 100 105 165 112 220 300 172 100 105 165 112 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
sandmaggot4 71 sandmaggot1 sandmaggot5 3 GiantLamprey sandmaggot4 sandmaggot SandMaggot Lays Eggs SM 1 maggotegg4 0 0 S1 2 2 5 5 1 21 50 79 sandmaggot sandmaggot 12 13 12 11 50 50 50 60 60 60 2 2 2 88 88 88 90 90 90 goospit4 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 125 100 75 -50 -40 -33 40 91 58 145 1 1 39 39 39 15 278 342 138 125 129 279 141 220 300 172 100 105 165 112 220 300 172 100 105 165 112 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
sandmaggot5 72 sandmaggot1 sandmaggot6 4 WorldKiller sandmaggot5 sandmaggot SandMaggot Lays Eggs SM 1 maggotegg5 0 0 S1 2 3 5 5 1 27 57 85 sandmaggot sandmaggot 12 13 12 11 55 55 55 70 70 70 2 2 2 90 90 90 80 80 80 goospit5 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 125 100 75 -50 -40 -33 50 91 58 150 1 1 47 47 47 15 280 344 136 135 134 284 140 220 300 172 100 105 165 112 220 300 172 100 105 165 112 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
clawviper1 73 clawviper1 clawviper2 0 TombViper clawviper1 clawviper ClawViper SD 1 1 2 5 5 1 11 43 75 clawviper clawviper 12 13 12 11 40 45 45 8 10 12 75 75 75 50 50 50 15 10 10 1 1 1 1 1 1 1 1 1 SerpentCharge seq_serpentcharge 1 125 100 75 -50 -45 -40 10 65 58 125 1 1 25 25 25 15 134 218 136 83 76 132 138 94 152 138 150 220 188 80 90 120 202 90 158 202 150 220 188 80 90 120 202 90 158 202 A1 fire 100 75 130 100 90 105 100 90 105 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
clawviper2 74 clawviper1 clawviper3 1 ClawViper clawviper2 clawviper ClawViper SD 1 1 3 5 11 1 15 45 76 clawviper clawviper 12 13 12 11 45 50 50 8 10 12 80 80 80 60 60 60 12 12 9 1 1 1 1 1 1 1 1 1 SerpentCharge seq_serpentcharge 1 125 100 75 -50 -45 -40 20 45 65 65 58 145 1 1 31 31 31 15 132 214 136 83 92 152 141 92 152 141 150 220 188 80 90 120 202 90 158 202 150 220 188 80 90 120 202 90 158 202 A1 ltng 100 8 180 100 8 180 100 8 180 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
clawviper3 75 clawviper1 clawviper4 2 Salamander clawviper3 clawviper ClawViper SD 1 2 3 6 13 1 18 46 77 clawviper clawviper 12 13 12 11 50 55 55 8 10 12 85 85 85 70 70 70 9 9 8 1 1 1 1 1 1 1 1 1 SerpentCharge seq_serpentcharge 1 125 100 75 -50 -45 -40 30 65 95 65 58 135 1 1 34 34 34 15 132 216 136 83 76 138 138 88 152 138 150 220 188 80 90 120 202 90 158 202 150 220 188 80 90 120 202 90 158 202 A1 fire 100 75 136 100 90 105 100 90 105 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
clawviper4 76 clawviper1 clawviper5 3 PitViper clawviper4 clawviper ClawViper SD 1 2 4 6 13 1 22 51 82 clawviper clawviper 12 13 12 11 55 60 60 8 10 12 88 88 88 75 75 75 7 7 7 1 1 1 1 1 1 1 1 1 SerpentCharge seq_serpentcharge 1 125 100 75 -50 -45 -40 40 85 85 105 85 65 58 155 85 1 1 40 40 40 15 132 214 138 83 87 152 141 98 162 141 150 220 188 80 90 120 202 90 158 202 150 220 188 80 90 120 202 90 158 202 A1 pois 100 22 22 300 100 38 38 300 100 50 50 300 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
clawviper5 77 clawviper1 clawviper6 4 SerpentMagus clawviper5 clawviper ClawViper SD 1 3 4 7 15 1 24 54 85 clawviper clawviper 12 13 12 11 60 65 65 8 10 12 90 90 90 80 80 80 5 5 5 1 1 1 1 1 1 1 1 1 SerpentCharge seq_serpentcharge 1 125 100 75 -50 -45 -40 50 65 105 45 95 105 85 65 95 58 145 85 1 1 43 43 43 15 130 214 138 83 76 141 138 86 152 138 150 220 188 80 90 120 202 90 158 202 150 220 188 80 90 120 202 90 158 202 A1 cold 100 75 140 150 100 90 120 150 100 90 150 150 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
sandleaper1 78 sandleaper1 sandleaper2 0 SandLeaper sandleaper1 sandleaper SandLeaper SL 1 1 3 11 11 1 14 43 75 sandleaper sandleaper 12 13 12 11 20 21 23 50 50 50 30 30 30 50 50 50 1 1 1 1 Leap seq_leaperleap 1 125 110 100 -50 -40 -33 10 75 125 1 1 29 29 29 15 134 388 136 100 92 182 141 92 182 141 80 160 195 76 98 180 150 82 150 135 80 160 195 76 98 180 150 82 150 135 A1 pois 5 15 15 75 10 22 22 112 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
sandleaper2 79 sandleaper1 sandleaper3 1 CaveLeaper sandleaper2 sandleaper SandLeaper SL 1 2 3 9 9 1 15 44 76 sandleaper sandleaper 12 13 12 11 20 21 23 50 50 50 30 30 30 50 50 50 1 1 1 1 Leap seq_leaperleap 2 125 110 100 -50 -40 -33 20 75 125 1 1 31 31 31 15 132 388 136 100 92 182 141 92 182 141 80 160 195 76 98 180 150 82 150 135 80 160 195 76 98 180 150 82 150 135 A1 pois 5 15 15 75 10 22 22 112 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
sandleaper3 80 sandleaper1 sandleaper4 2 TombCreeper sandleaper3 sandleaper SandLeaper SL 1 2 4 9 9 1 17 46 77 sandleaper sandleaper 12 13 12 11 20 21 24 50 50 50 30 30 30 50 50 50 1 1 1 1 Leap seq_leaperleap 3 125 110 100 -50 -40 -33 30 65 85 130 1 1 33 33 33 15 128 384 136 100 96 192 138 96 192 138 80 160 195 76 98 180 150 82 150 135 80 160 195 76 98 180 150 82 150 135 A1 pois 5 15 15 75 10 22 22 112 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
sandleaper4 81 sandleaper1 sandleaper5 3 TreeLurker sandleaper4 sandleaper SandLeaper SL 1 3 4 9 9 1 22 52 80 sandleaper sandleaper 12 13 12 11 20 22 24 50 50 50 30 30 30 50 50 50 1 1 1 1 Leap seq_leaperleap 4 125 110 100 -50 -40 -33 40 45 65 95 95 105 125 1 1 40 40 40 15 132 384 138 100 98 183 141 98 183 141 80 160 195 76 98 180 150 82 150 135 80 160 195 76 98 180 150 82 150 135 A1 pois 5 15 15 75 10 22 22 112 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
sandleaper5 82 sandleaper1 sandleaper6 4 RazorPitDemon sandleaper5 sandleaper SandLeaper SL 1 3 5 9 9 1 26 56 82 sandleaper sandleaper 12 13 12 11 20 22 25 50 50 50 30 30 30 50 50 50 1 1 1 1 Leap seq_leaperleap 5 125 110 100 -50 -40 -33 50 85 65 45 105 95 50 105 125 1 1 46 46 46 15 130 386 136 106 88 177 140 88 177 140 80 160 195 76 98 180 150 82 150 135 80 160 195 76 98 180 150 82 150 135 A1 pois 5 15 15 75 10 22 22 112 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
pantherwoman1 83 pantherwoman1 pantherwoman2 0 Huntress pantherwoman1 pantherwoman PantherWoman PW 1 1 3 6 11 1 14 43 75 pantherwoman pantherwoman 12 13 12 11 70 70 70 70 75 80 8 8 12 6 6 6 0 25 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 40 125 1 1 29 29 29 15 114 194 106 76 76 182 141 120 200 158 64 75 135 300 120 200 158 64 75 135 300 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
pantherwoman2 84 pantherwoman1 pantherwoman3 1 SaberCat pantherwoman2 pantherwoman PantherWoman PW 1 2 3 7 12 1 15 44 76 pantherwoman pantherwoman 12 13 12 11 80 80 80 80 80 85 12 12 12 6 6 6 0 25 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 40 125 1 1 37 37 37 15 114 194 104 74 76 182 141 120 200 158 64 75 135 300 120 200 158 64 75 135 300 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
pantherwoman3 85 pantherwoman1 pantherwoman4 2 NightTiger pantherwoman3 pantherwoman PantherWoman PW 1 2 4 8 13 1 17 46 77 pantherwoman pantherwoman 12 13 12 11 90 90 90 90 90 90 16 12 12 6 6 6 0 25 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 40 125 1 1 45 45 45 15 118 190 104 76 82 192 138 120 200 158 64 75 135 300 120 200 158 64 68 120 300 A1 cold 15 60 112 225 50 68 150 375 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
pantherwoman4 86 pantherwoman1 pantherwoman5 3 HellCat pantherwoman4 pantherwoman PantherWoman PW 1 3 4 9 14 1 19 48 79 pantherwoman pantherwoman 12 13 12 11 90 90 90 90 90 95 24 12 12 6 6 6 0 25 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 40 145 1 1 52 52 52 15 116 192 104 74 70 174 140 120 200 158 64 75 135 300 120 200 158 64 68 120 300 A1 fire 15 75 120 50 75 180 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
swarm1 87 swarm1 swarm2 0 Itchies swarm1 swarm Swarm drains stamina SW 1 4 8 6 6 1 16 45 76 swarm swarm 12 13 12 11 60 60 60 20 20 18 50 55 65 1 1 1 1 Swarm Move seq_swarmmove 1 -50 -40 -33 60 95 125 1 1 33 33 33 15 42 90 136 65 110 136 141 40 80 180 48 68 90 105 40 80 180 48 68 98 105 A1 stam 40 108 135 100 150 300 100 150 300 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
swarm2 88 swarm1 swarm3 1 BlackLocusts swarm2 swarm Swarm drains stamina SW 1 5 8 7 7 1 17 45 84 swarm swarm 12 13 12 11 60 60 60 20 18 15 50 55 65 1 1 1 1 Swarm Move seq_swarmmove 1 -50 -40 -33 70 105 125 1 1 33 33 33 15 46 90 136 65 110 136 138 40 80 180 48 68 90 105 40 80 180 48 68 98 105 A1 stam 60 108 135 100 150 300 100 150 300 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
swarm3 89 swarm1 swarm4 2 PlagueBugs swarm3 swarm Swarm drains stamina SW 1 6 8 8 8 1 21 48 79 swarm swarm 12 13 12 11 60 60 60 20 18 13 50 60 70 1 1 1 1 Swarm Move seq_swarmmove 1 -50 -40 -33 80 115 125 1 1 39 39 39 15 42 88 138 65 108 129 141 40 80 180 48 68 90 105 40 80 180 48 68 98 105 A1 stam 80 106 128 100 150 300 100 150 300 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
swarm4 90 swarm1 3 HellSwarm swarm4 swarm Swarm drains stamina SW 1 7 9 9 9 1 22 52 81 swarm swarm 12 13 12 11 60 60 60 20 16 12 50 60 70 1 1 1 1 Swarm Move seq_swarmmove 1 -50 -40 -33 90 65 115 95 125 95 1 1 40 40 40 15 44 88 138 65 118 140 141 40 80 180 48 68 90 105 40 80 180 48 68 98 105 A1 stam 90 117 138 100 150 300 100 150 300 A1 fire 25 45 75 40 60 90 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
scarab1 91 scarab1 scarab2 0 DungSoldier scarab1 scarab Scarab SC 1 scarab1 1 1 2 4 2 4 5 5 1 14 43 75 scarab scarab 12 13 12 11 75 80 84 50 50 50 15 13 12 35 45 55 20 24 28 1 1 1 1 1 Jab seq_scarabjab 1 125 100 75 -50 -40 -25 10 75 125 1 1 29 29 29 15 134 222 136 134 76 226 141 76 182 141 1 2 95 140 220 218 100 82 165 180 82 165 210 40 70 95 140 220 218 100 82 165 180 82 165 210 40 70 95 A1 ltng 20 15 30 20 22 45 20 22 45 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
scarab2 92 scarab1 scarab3 1 SandWarrior scarab2 scarab Scarab SC 1 scarab2 1 1 3 4 3 4 6 6 1 16 45 76 scarab scarab 12 13 12 11 80 85 88 60 60 60 12 11 10 45 55 65 20 24 28 1 1 1 1 1 Jab seq_scarabjab 2 125 100 75 -50 -40 -25 20 75 130 2 1 33 33 33 15 136 224 136 134 82 232 141 82 178 141 1 2 95 140 220 218 100 82 165 180 82 165 210 40 70 95 140 220 218 100 82 165 180 82 165 210 40 70 95 A1 ltng 20 14 40 20 22 45 20 22 45 A1 pois 10 15 15 75 20 22 22 75 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
scarab3 93 scarab1 scarab4 2 Scarab scarab3 scarab Scarab SC 1 scarab3 1 1 3 5 3 5 6 6 1 17 45 84 scarab scarab 12 13 12 11 85 88 92 70 70 70 9 9 9 55 65 70 20 24 28 1 1 1 1 1 Jab seq_scarabjab 3 125 100 75 -50 -40 -25 30 75 135 3 1 33 33 33 15 134 224 136 134 82 232 138 82 192 138 1 2 95 140 220 218 100 82 165 180 82 165 210 40 70 95 140 220 218 100 82 165 180 82 165 210 40 70 95 A1 ltng 25 27 40 25 22 45 25 22 45 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
scarab4 94 scarab1 scarab5 3 SteelWeevil scarab4 scarab Scarab SC 1 scarab4 1 1 4 5 4 5 7 7 1 19 48 79 scarab scarab 12 13 12 11 88 91 94 75 75 75 7 7 7 65 70 75 20 24 28 1 1 1 1 1 Jab seq_scarabjab 4 125 100 75 -50 -40 -25 40 75 140 4 1 35 35 35 15 136 222 136 134 70 220 140 70 174 140 1 2 95 140 220 218 100 82 165 180 82 165 210 40 70 95 140 220 218 100 82 165 180 82 165 210 40 70 95 A1 ltng 25 22 45 25 22 45 25 22 45 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
scarab5 95 scarab1 scarab6 4 AlbinoRoach scarab5 scarab Scarab SC 1 scarab5 1 1 4 5 4 5 7 7 1 24 54 85 scarab scarab 12 13 12 11 90 94 96 70 70 70 70 70 70 70 75 80 20 24 28 1 1 1 1 1 Jab seq_scarabjab 5 125 100 75 -50 -40 -25 50 75 145 5 1 43 43 43 15 134 222 138 134 76 226 138 76 178 138 1 2 95 140 220 218 100 82 165 180 82 165 210 40 70 95 140 220 218 100 82 165 180 82 165 210 40 70 95 A1 ltng 30 27 38 30 22 45 30 22 45 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
mummy1 96 mummy1 mummy2 0 DriedCorpse mummy1 mummy Mummy MM 1 2 4 4 4 1 13 43 74 mummy mummy 12 13 12 11 5 9 15 60 60 60 100 100 100 65 65 65 10 10 10 1 1 1 1 1 1 125 91 58 -50 -40 -25 10 95 105 75 58 58 125 1 1 28 28 28 15 136 316 136 92 84 168 140 84 168 140 200 280 142 80 90 158 158 200 280 142 80 90 158 158 A1 pois 10 50 50 300 25 50 50 450 25 50 50 600 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
mummy2 97 mummy1 mummy3 1 Decayed mummy2 mummy Mummy MM 1 3 4 4 4 1 15 44 79 mummy mummy 12 13 12 11 10 12 18 50 50 50 100 100 100 60 60 60 10 10 10 1 1 1 1 1 1 125 91 58 -50 -40 -25 20 95 105 75 58 58 125 1 1 31 31 31 15 138 314 136 93 92 166 141 92 166 141 200 280 142 80 90 158 158 200 280 142 80 90 158 158 A1 pois 10 50 50 300 25 50 50 450 25 50 50 600 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
mummy3 98 mummy1 mummy4 2 Embalmed mummy3 mummy Mummy MM 1 3 5 4 4 1 18 46 77 mummy mummy 12 13 12 11 15 16 21 30 30 30 100 100 100 50 50 50 10 10 10 1 1 1 1 1 1 125 91 58 -50 -40 -25 30 95 105 75 58 58 130 1 1 34 34 34 15 138 312 136 92 76 164 138 76 164 138 200 280 142 80 90 158 158 200 280 142 80 90 158 158 A1 pois 10 50 50 300 30 50 50 450 30 50 50 600 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
mummy4 99 mummy1 mummy5 3 PreservedDead mummy4 mummy Mummy MM 1 4 5 4 4 1 23 49 80 mummy mummy 12 13 12 11 20 22 23 40 40 40 100 100 100 55 55 55 10 10 10 1 1 1 1 1 1 125 91 58 -50 -40 -25 40 95 105 75 58 58 130 1 1 41 41 41 15 138 310 138 92 81 160 138 81 160 138 200 280 142 80 90 158 158 200 280 142 80 90 158 158 A1 pois 10 50 50 300 30 50 50 450 30 50 50 600 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
mummy5 100 mummy1 mummy6 4 Cadaver mummy5 mummy Mummy MM 1 4 5 4 4 1 25 55 83 mummy mummy 12 13 12 11 25 25 25 50 50 50 100 100 100 55 55 55 10 10 10 1 1 1 1 1 1 125 91 58 -50 -40 -25 50 95 105 75 58 58 135 1 1 45 45 45 15 140 308 138 95 86 160 140 86 160 140 200 280 142 80 90 158 158 200 280 142 80 90 158 158 A1 pois 10 50 50 300 35 50 50 1200 35 50 50 600 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
unraveler1 101 unraveler1 unraveler2 0 HollowOne unraveler1 unraveler GreaterMummy raises undead GY 1 skeleton2 2 8 1 1 3 3 1 15 44 79 unraveler unraveler 14 13 12 11 70 70 70 30 35 40 40 45 50 60 70 80 24 27 31 mummy1 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBolt seq_mummyres 1 125 91 58 -50 -33 -25 10 75 75 58 45 45 125 45 75 2 1 29 57 15 388 476 136 145 182 242 141 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 15 180 240 1500 15 50 50 1500 15 50 50 1500 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
unraveler2 102 unraveler1 unraveler3 1 Guardian unraveler2 unraveler GreaterMummy raises undead GY 1 skeleton3 2 8 1 1 3 3 1 18 46 77 unraveler unraveler 14 13 12 11 75 75 75 35 40 45 45 50 50 70 75 85 24 27 31 mummy2 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBolt seq_mummyres 2 125 91 58 -50 -33 -25 20 75 75 58 125 125 45 45 75 2 1 29 57 15 386 474 136 145 176 226 138 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 20 174 225 1650 20 50 50 1650 20 50 50 1650 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
unraveler3 103 unraveler1 unraveler4 2 Unraveler unraveler3 unraveler GreaterMummy raises undead GY 1 skeleton4 2 8 1 1 4 4 1 20 49 80 unraveler unraveler 14 13 12 11 80 80 80 40 45 50 50 55 50 80 85 90 24 27 31 mummy3 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBolt seq_mummyres 3 125 91 58 -50 -33 -25 30 75 75 75 58 125 45 45 125 75 2 1 29 57 15 386 472 138 145 186 231 140 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 25 184 230 1800 25 50 50 1800 25 50 50 1800 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
unraveler4 104 unraveler1 unraveler5 3 Horadrim Ancient unraveler4 unraveler GreaterMummy raises undead GY 1 skeleton5 2 8 1 1 5 5 1 23 52 84 unraveler unraveler 14 13 12 11 85 85 85 45 50 55 55 55 55 85 85 90 24 27 31 mummy4 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBolt seq_mummyres 4 125 91 58 -50 -33 -25 40 75 50 50 50 50 75 58 125 75 75 75 75 2 1 29 57 15 384 472 138 145 182 231 138 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 30 180 230 2250 30 50 50 2250 30 50 50 2250 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
unraveler5 105 unraveler1 unraveler6 4 Baal Subject Mummy unraveler5 unraveler GreaterMummy raises undead GY 1 1 1 6 6 1 40 64 85 unraveler unraveler 14 13 12 11 85 85 85 45 50 55 55 55 55 85 90 95 24 27 31 mummy4 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBolt seq_mummyres 5 125 91 58 -50 -33 -25 50 75 50 50 50 50 75 58 125 91 91 91 75 2 1 29 57 15 384 470 136 225 182 230 140 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 30 180 228 2250 30 50 50 2250 30 50 50 2250 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
chaoshorde1 106 chaoshorde1 chaoshorde2 0 unused chaoshorde1 Idle CH 0 0 4 4 1 1 1 15 0
chaoshorde2 107 chaoshorde1 chaoshorde3 1 unused chaoshorde2 Idle CH 0 0 4 4 1 1 1 15 0
chaoshorde3 108 chaoshorde1 chaoshorde4 2 unused chaoshorde3 Idle CH 0 0 4 4 1 1 1 15 0
chaoshorde4 109 chaoshorde1 3 unused chaoshorde4 Idle CH 0 0 4 4 1 1 1 15 0
vulture1 110 vulture1 vulture2 0 CarrionBird vulture1 vulture Vulture VD 1 1 3 5 5 1 14 43 75 vulture vulture 12 13 12 11 70 75 80 8 8 8 75 65 50 30 30 30 40 40 40 1 1 1 125 125 125 -50 -40 -33 50 135 1 1 29 29 29 15 134 214 136 89 136 182 141 120 180 128 64 120 165 128 120 180 128 64 120 165 128 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 1 1 0
vulture2 111 vulture1 vulture3 1 UndeadScavenger vulture2 vulture Vulture VD 1 2 3 5 5 1 15 44 76 vulture vulture 12 13 12 11 80 80 85 8 8 8 75 65 50 30 30 30 50 50 50 1 1 1 1 125 125 125 -50 -40 -33 50 125 50 1 1 31 31 31 15 132 214 136 89 136 182 141 120 180 128 64 120 165 128 120 180 128 64 120 165 128 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 1 1 0
vulture3 112 vulture1 vulture4 2 HellBuzzard vulture3 vulture Vulture VD 1 2 4 6 6 1 22 52 80 vulture vulture 12 13 12 11 85 85 90 8 8 8 75 65 50 30 30 30 60 60 60 1 1 1 1 125 125 125 -50 -40 -33 125 50 1 1 40 40 40 15 132 214 138 89 140 183 141 120 180 128 64 120 165 128 120 180 128 64 120 165 128 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 1 1 0
vulture4 113 vulture1 vulture5 3 WingedNightmare vulture4 vulture Vulture VD 1 3 4 6 6 1 23 50 81 vulture vulture 12 13 12 11 90 90 95 8 8 8 75 65 50 30 30 30 70 70 70 1 1 1 125 125 125 -50 -40 -33 50 125 50 1 1 41 41 41 15 130 214 138 89 141 182 138 120 180 128 64 120 165 128 120 180 128 64 120 165 128 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 1 1 0
mosquito1 114 mosquito1 mosquito2 0 Sucker mosquito1 mosquito Mosquito drains mana and stamina MO 1 1 3 7 13 1 21 49 79 mosquito mosquito 12 13 12 11 40 45 55 40 45 55 5 5 5 1 1 1 1 1 Mosquito seq_mosquitoskill 1 125 100 75 -50 -40 -33 58 130 1 1 39 39 39 15 42 214 138 79 76 183 141 40 200 142 60 75 142 135 40 200 142 60 75 142 135 A1 stam 60 536 642 100 750 900 100 750 900 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
mosquito2 115 mosquito1 mosquito3 1 Feeder mosquito2 mosquito Mosquito drains mana and stamina MO 1 2 3 7 13 1 23 51 82 mosquito mosquito 12 13 12 11 40 45 55 40 45 55 5 5 5 1 1 1 1 1 Mosquito seq_mosquitoskill 1 125 100 75 -50 -40 -33 58 135 1 1 41 41 41 15 42 214 138 79 81 182 138 40 200 142 60 75 142 135 40 200 142 60 75 142 135 A1 stam 70 600 699 100 750 900 100 750 900 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
mosquito3 116 mosquito1 mosquito4 2 BloodHook mosquito3 mosquito Mosquito drains mana and stamina MO 1 2 4 7 13 1 22 50 81 mosquito mosquito 12 13 12 11 40 50 55 40 50 60 5 5 5 1 1 1 1 1 Mosquito seq_mosquitoskill 1 125 100 75 -50 -40 -33 58 140 1 1 40 40 40 15 44 214 138 79 76 183 141 40 200 142 60 75 142 135 40 200 142 60 75 142 135 A1 stam 80 750 856 100 750 900 100 750 900 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
mosquito4 117 mosquito1 3 BloodWing mosquito4 mosquito Mosquito drains mana and stamina MO 1 3 4 7 13 1 24 53 85 mosquito mosquito 12 13 12 11 40 50 55 40 50 60 5 5 5 1 1 1 1 1 Mosquito seq_mosquitoskill 1 125 100 75 -50 -40 -33 58 145 1 1 43 43 43 15 42 214 138 79 76 178 138 40 200 142 60 75 142 135 40 200 142 60 75 142 135 A1 stam 90 750 843 100 750 900 100 750 900 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
willowisp1 118 willowisp1 willowisp2 0 Gloam willowisp1 willowisp WillOWisp drains mana WW 1 1 2 3 16 16 1 21 50 80 willowisp willowisp 12 13 12 11 40 50 60 70 70 70 50 50 50 willowisplightningbolt 1 1 1 1 1 1 Chain Lightning SC 1 -50 -33 0 40 75 65 95 85 125 1 1 39 39 39 15 88 174 138 79 54 226 141 90 170 172 96 68 172 180 90 170 172 96 68 172 180 A1 mana 40 21 96 40 150 300 40 300 450 SC ltng 100 5 120 100 8 240 100 8 285 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 1 1 0
willowisp2 119 willowisp1 willowisp3 1 SwampGhost willowisp2 willowisp WillOWisp drains mana WW 1 1 2 4 16 16 1 23 53 81 willowisp willowisp 12 13 12 11 50 60 65 80 80 80 40 40 40 willowisplightningbolt 1 1 1 1 1 1 Chain Lightning SC 2 -50 -33 0 50 85 75 105 95 130 1 1 41 41 41 15 88 172 138 79 51 231 138 90 170 172 96 68 172 180 90 170 172 96 68 172 180 A1 mana 60 20 99 60 150 300 60 300 450 SC ltng 100 5 120 100 8 240 100 8 285 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 1 1 0
willowisp3 120 willowisp1 willowisp4 2 BurningSoul willowisp3 willowisp WillOWisp drains mana WW 1 1 3 4 16 16 1 26 56 83 willowisp willowisp 12 13 12 11 60 70 70 85 85 85 35 35 35 willowisplightningbolt 1 1 1 1 1 1 Chain Lightning SC 3 -50 -33 0 60 95 85 110 105 135 1 1 46 46 46 15 90 172 136 83 54 230 140 90 170 172 96 68 172 180 90 170 172 96 68 172 180 A1 mana 80 26 105 80 150 300 80 300 450 SC ltng 100 5 120 100 8 240 100 8 285 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 1 1 0
willowisp4 121 willowisp1 willowisp5 3 BlackSoul willowisp4 willowisp WillOWisp drains mana WW 1 1 3 5 16 16 1 28 58 85 willowisp willowisp 12 13 12 11 70 70 75 90 90 90 30 30 30 willowisplightningbolt 1 1 1 1 1 1 Chain Lightning SC 4 -50 -33 0 70 105 95 125 115 140 1 1 49 49 49 15 88 174 136 87 51 226 140 90 170 172 96 68 172 180 90 170 172 96 68 172 180 A1 mana 90 24 108 90 150 300 90 300 450 SC ltng 100 5 120 100 8 240 100 8 285 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 1 1 0
arach1 122 arach1 arach2 0 Arach arach1 arach Arach SP 1 2 3 7 7 1 11 42 73 arach arach 12 13 12 11 45 55 60 33 33 33 15 20 25 8 8 8 25 25 25 1 1 1 1 1 SpiderLay A2 1 125 100 75 -50 -40 -25 10 75 135 75 2 1 25 25 25 15 310 384 136 122 132 207 138 300 380 202 88 120 180 150 300 380 202 88 120 180 150 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
arach2 123 arach1 arach3 1 SandFisher arach2 arach Arach SP 1 3 3 8 8 1 15 45 75 arach arach 12 13 12 11 55 65 70 40 40 40 15 20 25 8 10 10 30 30 30 1 1 1 1 1 SpiderLay A2 2 125 100 75 -50 -40 -25 20 75 130 80 2 1 31 31 31 15 302 382 136 121 136 226 141 300 380 202 88 120 180 150 300 380 202 88 120 180 150 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
arach3 124 arach1 arach4 2 PoisonSpinner arach3 arach Arach SP 1 3 4 9 9 1 21 49 78 arach arach 12 13 12 11 65 75 75 45 45 45 20 25 30 8 12 12 35 35 35 1 1 1 1 1 SpiderLay A2 3 125 100 75 -50 -40 -25 30 75 135 2 1 39 39 39 15 302 382 138 121 129 214 141 300 380 202 88 105 158 150 300 380 202 88 105 158 150 A1 pois 33 32 52 1800 33 60 150 1800 33 60 150 1800 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
arach4 125 arach1 arach5 3 FlameSpider arach4 arach Arach SP 1 4 4 9 10 1 22 50 79 arach arach 12 13 12 11 75 75 75 50 50 50 33 35 40 8 10 10 40 40 40 1 1 1 1 1 SpiderLay A2 4 125 100 75 -50 -40 -25 40 75 140 85 2 1 40 40 40 15 302 384 138 121 140 226 141 300 380 202 88 105 158 150 300 380 202 88 105 158 150 A1 fire 40 32 63 40 38 75 40 38 75 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
arach5 126 arach1 arach6 4 SpiderMagus arach5 arach Arach SP 1 4 5 9 12 1 23 53 84 arach arach 12 13 12 11 75 75 75 55 55 55 20 25 30 8 8 8 45 45 45 1 1 1 1 1 SpiderLay A2 5 125 100 75 -50 -40 -25 50 75 145 90 2 1 41 41 41 15 302 380 138 122 141 220 138 300 380 202 88 105 158 150 300 380 202 88 105 158 150 A1 pois 50 39 60 4500 50 75 180 4500 50 75 180 4500 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
thornhulk1 127 thornhulk1 thornhulk2 0 ThornedHulk thornhulk1 thornhulk ThornHulk TH 1 1 3 4 4 1 21 49 79 thornhulk thornhulk 12 13 12 11 80 80 80 15 15 15 10 10 10 30 30 30 5 3 1 3 4 5 1 1 1 1 1 MonFrenzy A2 1 125 110 100 -50 -40 -33 50 145 3 1 39 39 39 15 306 496 138 131 129 214 141 108 214 141 380 460 210 104 135 240 158 112 225 180 380 460 210 104 135 240 158 112 225 180 A2 stun 100 10 100 10 100 10 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
thornhulk2 128 thornhulk1 thornhulk3 1 BrambleHulk thornhulk2 thornhulk ThornHulk TH 1 2 3 4 4 1 22 50 80 thornhulk thornhulk 12 13 12 11 85 85 85 25 25 25 10 10 10 40 40 40 5 3 1 3 4 5 1 1 1 1 1 MonFrenzy A2 2 125 110 100 -50 -40 -33 50 155 3 1 40 40 40 15 306 496 138 131 140 226 141 118 226 141 380 460 210 104 135 240 158 112 225 180 380 460 210 104 135 240 158 112 225 180 A2 stun 100 10 100 10 100 10 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
thornhulk3 129 thornhulk1 thornhulk4 2 Thrasher thornhulk3 thornhulk ThornHulk TH 1 2 4 4 4 1 23 52 81 thornhulk thornhulk 12 13 12 11 90 90 90 40 40 40 10 10 10 50 50 50 5 3 1 3 4 5 1 1 1 1 1 MonFrenzy A2 3 125 110 100 -50 -40 -33 50 165 3 1 41 41 41 15 306 496 138 131 130 220 138 111 220 138 380 460 210 104 135 240 158 112 225 180 380 460 210 104 135 240 158 112 225 180 A2 stun 100 10 100 10 100 10 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
thornhulk4 130 thornhulk1 thornhulk5 3 Spikefist thornhulk4 thornhulk ThornHulk TH 1 3 5 4 4 1 27 57 84 thornhulk thornhulk 12 13 12 11 100 100 100 50 50 50 10 10 10 55 55 55 5 3 1 3 4 5 1 1 1 1 1 MonFrenzy A2 4 125 110 100 -50 -40 -33 50 175 3 1 47 47 47 15 304 494 136 142 134 222 140 116 222 140 380 460 210 104 135 240 158 112 225 180 380 460 210 104 135 240 158 112 225 180 A2 stun 100 10 100 10 100 10 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
vampire1 131 vampire1 vampire2 0 GhoulLord vampire1 vampire Vampire steals life VA 1 1 1 2 7 7 1 19 49 80 vampire vampire 13 13 12 11 55 55 55 20 40 50 24 25 25 25 25 35 3 3 3 1 1 1 1 1 1 VampireFireball SC 2 VampireFirewall SC 2 VampireMeteor SC 2 VampireMissile SC 2 125 110 100 -50 -40 -25 30 75 55 75 75 55 58 50 135 75 2 1 35 35 35 15 306 422 136 118 70 174 140 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 60 57 172 38 60 75 150 75 60 75 150 112 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
vampire2 132 vampire1 vampire3 1 NightLord vampire2 vampire Vampire steals life VA 1 1 1 2 8 8 1 23 54 82 vampire vampire 13 13 12 11 65 65 65 25 50 60 25 26 26 25 28 39 5 5 5 1 1 1 1 1 1 VampireFireball SC 3 VampireFirewall SC 3 VampireMeteor SC 3 VampireMissile SC 3 125 110 100 -50 -40 -25 40 75 60 75 75 60 58 50 145 75 2 1 41 41 41 15 306 418 138 118 81 182 138 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 65 60 90 38 65 75 150 75 65 75 150 112 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
vampire3 133 vampire1 vampire4 2 DarkLord vampire3 vampire Vampire steals life VA 1 1 1 3 8 8 1 24 55 83 vampire vampire 13 13 12 11 76 76 76 30 60 70 26 27 27 25 31 43 7 7 7 1 1 1 1 1 1 VampireFireball SC 4 VampireFirewall SC 4 VampireMeteor SC 4 VampireMissile SC 4 125 110 100 -50 -40 -25 50 75 65 75 75 65 58 50 155 75 2 1 43 43 43 15 306 422 138 118 76 178 138 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 70 64 93 38 70 75 150 75 70 75 150 112 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
vampire4 134 vampire1 vampire5 3 BloodLord vampire4 vampire Vampire steals life VA 1 1 2 3 9 9 1 25 55 83 vampire vampire 13 13 12 11 85 85 85 35 40 45 24 24 24 25 34 47 7 7 7 1 1 1 1 1 1 VampireFireball SC 5 VampireFirewall SC 5 VampireMeteor SC 5 VampireMissile SC 5 125 110 100 -50 -40 -25 60 75 70 75 75 70 58 50 165 75 2 1 45 45 45 15 304 420 138 121 76 178 140 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 75 75 102 38 75 75 150 75 75 75 150 112 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
vampire5 135 vampire1 vampire6 4 Banished vampire5 vampire Vampire steals life VA 1 1 1 1 10 10 1 12 43 73 vampire vampire 13 13 12 11 85 85 85 40 70 80 28 28 28 25 37 51 1 1 1 1 1 1 1 1 1 VampireFireball SC 1 VampireFirewall SC 1 VampireMeteor SC 1 VampireMissile SC 1 125 110 100 -50 -40 -25 20 75 45 75 75 75 58 50 175 75 2 1 27 27 27 15 308 424 136 118 76 189 140 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 55 75 130 38 55 75 150 75 55 75 150 112 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
batdemon1 136 batdemon1 batdemon2 0 DesertWing batdemon1 batdemon BatDemon shocking hit BT 1 1 3 8 8 1 15 44 79 batdemon batdemon 12 13 12 11 33 33 33 20 20 20 60 65 70 50 55 60 8 8 8 1 1 1 1 1 125 110 100 -50 -40 -33 10 40 50 125 1 1 31 31 31 15 88 302 136 87 106 152 141 76 152 291 140 220 165 64 98 105 150 120 172 300 140 220 165 64 98 105 150 120 172 300 A2 ltng 65 105 150 65 8 270 65 8 360 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 1 1 0
batdemon2 137 batdemon1 batdemon3 1 Fiend batdemon2 batdemon BatDemon shocking hit BT 1 2 3 9 9 1 19 50 79 batdemon batdemon 12 13 12 11 33 33 33 20 20 20 65 70 75 50 56 62 8 8 8 1 1 1 1 1 125 110 100 -50 -40 -33 20 40 50 135 1 1 35 35 35 15 92 302 136 87 93 140 140 93 140 250 140 220 165 64 98 105 150 120 172 300 140 220 165 64 98 105 150 120 172 300 A2 ltng 70 92 138 70 8 270 70 8 360 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 1 1 0
batdemon3 138 batdemon1 batdemon4 2 Gloombat batdemon3 batdemon BatDemon shocking hit BT 1 2 3 10 10 1 22 51 81 batdemon batdemon 12 13 12 11 33 33 33 20 20 20 70 75 80 50 57 64 8 8 8 1 1 1 1 1 125 110 100 -50 -40 -33 30 40 50 125 1 1 40 40 40 15 88 302 138 87 98 152 141 118 183 234 140 220 165 64 98 105 150 120 172 300 140 220 165 64 98 105 150 120 172 300 A2 ltng 75 96 150 75 8 270 75 8 360 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 1 1 0
batdemon4 139 batdemon1 batdemon5 3 BloodDiver batdemon4 batdemon BatDemon shocking hit BT 1 2 4 11 11 1 24 54 85 batdemon batdemon 12 13 12 11 33 33 33 20 20 20 75 80 85 50 58 66 8 8 8 1 1 1 1 1 125 110 100 -50 -40 -33 40 40 50 130 1 1 43 43 43 15 90 302 138 87 94 141 138 132 207 231 140 220 165 64 98 105 150 120 172 300 140 220 165 64 98 105 150 120 172 300 A2 ltng 80 93 140 80 8 270 80 8 360 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 1 1 0
batdemon5 140 batdemon1 batdemon6 4 DarkFamiliar batdemon5 batdemon BatDemon shocking hit BT 1 3 4 13 13 1 27 57 84 batdemon batdemon 12 13 12 11 33 33 33 20 20 20 80 85 90 50 59 68 8 8 8 1 1 1 1 1 125 110 100 -50 -40 -33 50 40 50 145 1 1 47 47 47 15 86 302 136 95 98 152 140 159 248 219 140 220 165 64 98 105 150 120 172 300 140 220 165 64 98 105 150 120 172 300 A2 ltng 85 96 150 85 8 270 85 8 360 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 1 1 0
fetish1 141 fetish1 fetish2 0 RatMan fetish1 fetish Fetish FE 1 fetish1 1 1 1 1 1 1 7 7 1 10 42 72 fetish fetish 12 13 12 11 100 100 100 10 9 8 4 4 4 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 10 125 58 58 75 1 1 23 23 23 15 128 220 136 86 108 172 136 110 160 188 60 90 142 142 110 160 188 60 90 142 142 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
fetish2 142 fetish1 fetish3 1 Fetish fetish2 fetish Fetish FE 1 fetish2 1 1 1 2 1 2 8 8 1 21 49 79 fetish fetish 12 13 12 11 100 100 100 10 9 8 4 4 4 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 20 58 125 58 75 1 1 39 39 39 15 128 214 138 84 98 152 141 110 160 188 60 90 142 142 110 160 188 60 90 142 142 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
fetish3 143 fetish1 fetish4 2 Flayer fetish3 fetish Fetish FE 1 fetish3 1 1 1 3 1 3 9 9 1 22 50 80 fetish fetish 12 13 12 11 100 100 100 10 9 8 4 4 4 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 30 58 58 125 75 1 1 40 40 40 15 132 214 138 84 108 162 141 110 160 188 60 90 142 142 110 160 188 60 90 142 142 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
fetish4 144 fetish1 fetish5 3 SoulKiller fetish4 fetish Fetish FE 1 fetish4 1 1 2 3 2 3 10 10 1 23 51 81 fetish fetish 12 13 12 11 100 100 100 10 9 8 4 4 4 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 40 58 135 58 75 1 1 41 41 41 15 130 214 138 84 100 160 138 110 160 188 60 90 142 142 110 160 188 60 90 142 142 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
fetish5 145 fetish1 fetish6 4 StygianDoll fetish5 fetish Fetish FE 1 fetish5 1 1 2 4 2 4 11 11 1 24 54 83 fetish fetish 12 13 12 11 100 100 100 10 9 8 4 4 4 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 50 125 58 58 75 1 1 43 43 43 15 130 214 138 84 104 152 138 110 160 188 60 90 142 142 110 160 188 60 90 142 142 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
cain1 146 cain1 0 DeckardCain cain1 human NpcOutOfTown DC 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
gheed 147 gheed 0 Gheed gheed human Npc GH 1 1 1 5 5 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
akara 148 akara 0 Akara akara human Npc PS 1 1 1 2 2 0 lightnpc lightnpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
chicken 149 chicken 0 dummy chicken Idle CK 1 3 3 3 3 0 chicken chicken 13 13 13 1 1 1 1 1 0
kashya 150 kashya 0 Kashya kashya human Npc RC 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
rat 151 rat 0 dummy rat Idle RT 1 4 4 6 6 0 rat rat 13 13 13 1 1 1 1 1 1 1 0
rogue1 152 rogue1 0 Dummy rogue1 human Idle RG 1 1 1 9 9 0 act1hire act1hire 12 13 13 13 rogue1 1 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 119 119 119 15 284 568 136 360 420 225 360 420 225 0
hellmeteor 153 hellmeteor 0 Dummy hellmeteor HellMeteor K9 1 1 1 1 1 0 0 33 66 13 13 13 50 60 70 50 50 50 10 10 10 1 HellMeteor A1 1 1 1 0
charsi 154 charsi 0 Charsi charsi human Npc CI 1 1 1 5 5 0 charsi charsi 13 13 13 1 1 1 1 1 1 1 1 1 1 0
warriv1 155 warriv1 0 Warriv warriv1 human Npc WA 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
andariel 156 andariel 0 Andariel andariel demon Andariel AN 1 1 1 9 9 0 12 49 75 andariel andariel 16 13 9 7 30 35 35 10 8 6 30 32 34 50 55 60 1 1 1 1 1 AndrialSpray seq_andarielspray 1 AndyPoisonBolt A1 1 125 91 58 -25 -15 0 -25 75 75 105 -25 75 75 75 91 -25 91 91 91 0 1 7 37 67 15 5124 5124 136 977 114 357 230 5124 5124 165 1194 270 330 300 2386 2386 165 1194 270 330 705 A1 pois 100 50 50 45 100 90 50 50 100 50 50 338 Andariel Andariel Andariel Andarielq Andariel (N) Andariel (N) Andariel (N) Andarielq (N) Andariel (H) Andariel (H) Andariel (H) Andarielq (H) 6 1 0
bird1 157 bird1 0 dummy bird1 Idle BS 1 1 1 8 8 1 13 13 13 1 1 1 1 1 1 1 0
bird2 158 bird2 0 dummy bird2 Idle BL 1 1 1 5 5 1 13 13 13 1 1 1 1 1 1 1 0
bat 159 bat 0 dummy bat Idle B9 1 1 3 8 8 1 bat bat 13 13 13 1 1 1 1 1 1 0
cr_archer1 160 cr_archer1 cr_archer2 0 DarkRanger cr_archer1 corruptrogue CorruptArcher CR 1 1 1 2 5 5 1 4 37 68 cr_archer cr_archer 12 13 12 11 60 65 70 70 85 88 14 11 9 20 30 40 20 20 20 12 12 12 cr_arrow1 1 1 1 1 1 125 125 125 -50 -40 -33 10 40 50 125 50 50 1 1 27 27 27 15 182 256 136 97 90 135 384 110 190 135 80 90 135 225 110 190 135 80 90 135 225 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
cr_archer2 161 cr_archer1 cr_archer3 1 VileArcher cr_archer2 corruptrogue CorruptArcher CR 1 1 1 3 6 7 1 5 38 69 cr_archer cr_archer 12 13 12 11 70 75 80 75 88 91 12 10 9 25 35 45 20 20 20 12 12 12 cr_arrow2 1 1 1 1 1 125 125 125 -50 -40 -33 20 40 135 50 50 50 1 1 29 29 29 15 186 262 136 97 90 135 382 110 190 135 80 90 135 225 110 190 135 80 90 135 225 A1 pois 10 30 30 150 20 38 38 150 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
cr_archer3 162 cr_archer1 cr_archer4 2 DarkArcher cr_archer3 corruptrogue CorruptArcher CR 1 1 2 3 6 9 1 7 39 83 cr_archer cr_archer 12 13 12 11 80 85 90 80 91 94 10 9 8 30 40 50 20 20 20 12 12 12 cr_arrow3 1 1 1 1 1 125 125 125 -50 -40 -33 30 40 50 135 50 50 1 1 37 37 37 15 190 272 136 97 90 135 381 110 190 135 80 90 135 225 110 190 135 80 90 135 225 A1 cold 10 60 90 225 20 60 90 262 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
cr_archer4 163 cr_archer1 cr_archer5 3 BlackArcher cr_archer4 corruptrogue CorruptArcher CR 1 1 2 4 7 10 1 10 41 72 cr_archer cr_archer 12 13 12 11 90 90 95 80 94 97 8 8 7 35 45 55 20 20 20 12 12 12 cr_arrow4 1 1 1 1 1 125 125 125 -50 -40 -33 40 40 50 140 50 50 1 1 49 49 49 15 192 282 136 97 90 135 380 110 190 135 80 90 135 225 110 190 135 80 90 135 225 A1 ltng 10 8 180 20 8 210 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
cr_archer5 164 cr_archer1 cr_archer6 4 FleshArcher cr_archer5 corruptrogue CorruptArcher CR 1 1 3 4 8 11 1 24 54 85 cr_archer cr_archer 12 13 12 11 99 99 99 85 97 99 6 6 6 40 50 60 20 20 20 12 12 12 cr_arrow5 1 1 1 1 1 125 125 125 -50 -40 -33 50 45 40 50 50 155 50 1 1 75 75 75 15 194 274 138 97 90 135 378 110 190 135 80 90 135 225 110 190 135 80 90 135 225 A1 fire 10 75 105 20 90 120 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
cr_lancer1 165 cr_lancer1 cr_lancer2 0 DarkSpearwoman cr_lancer1 corruptrogue CorruptLancer CR 1 1 2 5 5 1 2 36 67 cr_lancer cr_lancer 12 13 12 11 60 60 60 75 80 85 9 8 7 0 40 55 15 12 10 1 1 1 1 1 1 125 125 125 -50 -40 -33 10 70 50 125 50 50 1 1 13 13 13 15 172 258 136 97 100 201 152 160 230 142 68 98 195 210 160 230 142 68 98 195 210 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
cr_lancer2 166 cr_lancer1 cr_lancer3 1 VileLancer cr_lancer2 corruptrogue CorruptLancer CR 1 1 3 6 7 1 5 38 68 cr_lancer cr_lancer 12 13 12 11 70 70 70 80 85 90 8 7 6 0 45 60 15 12 10 1 1 1 1 1 1 125 125 125 -50 -40 -33 20 70 135 50 50 50 1 1 16 16 16 15 170 248 136 97 114 226 136 160 230 142 68 98 195 210 160 230 142 68 98 195 210 A1 pois 10 38 38 150 20 50 50 150 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
cr_lancer3 167 cr_lancer1 cr_lancer4 2 DarkLancer cr_lancer3 corruptrogue CorruptLancer CR 1 2 3 6 9 1 8 39 69 cr_lancer cr_lancer 12 13 12 11 80 80 80 85 90 95 7 6 5 0 50 65 15 12 10 1 1 1 1 1 1 125 125 125 -50 -40 -33 30 70 50 135 50 50 1 1 21 21 21 15 178 268 136 97 100 226 142 160 230 142 68 98 195 210 160 230 142 68 98 195 210 A1 cold 10 90 120 262 20 90 120 262 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
cr_lancer4 168 cr_lancer1 cr_lancer5 3 BlackLancer cr_lancer4 corruptrogue CorruptLancer CR 1 2 4 7 11 1 9 40 71 cr_lancer cr_lancer 12 13 12 11 90 90 90 88 95 97 6 5 5 0 55 70 15 12 10 1 1 1 1 1 1 125 125 125 -50 -40 -33 40 70 50 140 50 50 1 1 22 22 22 15 172 262 136 97 87 214 142 160 230 142 68 98 195 210 160 230 142 68 98 195 210 A1 ltng 10 8 210 20 8 240 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
cr_lancer5 169 cr_lancer1 cr_lancer6 4 FleshLancer cr_lancer5 corruptrogue CorruptLancer CR 1 3 4 8 13 1 24 53 84 cr_lancer cr_lancer 12 13 12 11 99 99 99 90 99 99 5 5 5 0 60 75 15 12 10 1 1 1 1 1 1 125 125 125 -50 -40 -33 50 45 70 50 50 155 50 1 1 43 43 43 15 174 262 138 96 86 216 138 160 230 142 68 98 195 210 160 230 142 68 98 195 210 A1 fire 10 105 135 20 105 135 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
sk_archer1 170 sk_archer1 sk_archer2 0 SkeletonArcher sk_archer1 skeleton SkeletonBow SK 1 1 1 2 5 5 2 5 38 68 sk_archer sk_archer 12 13 12 11 75 80 85 15 14 13 50 50 50 5 5 5 6 6 6 skbowarrow1 1 1 1 1 1 -50 -40 -25 10 75 85 65 58 58 125 1 1 29 29 29 15 140 294 136 95 98 135 382 140 200 150 76 52 75 172 140 200 150 76 52 75 172 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
sk_archer2 171 sk_archer1 sk_archer3 1 ReturnedArcher sk_archer2 skeleton SkeletonBow SK 1 1 1 3 5 5 2 8 39 69 sk_archer sk_archer 12 13 12 11 75 80 85 15 14 12 50 50 50 5 5 5 6 6 6 skbowarrow2 1 1 1 1 1 -50 -40 -25 20 75 85 65 58 58 130 1 1 41 41 41 15 156 312 136 96 98 135 380 140 200 150 76 52 75 172 140 200 150 76 52 75 172 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
sk_archer3 172 sk_archer1 sk_archer4 2 BoneArcher sk_archer3 skeleton SkeletonBow SK 1 1 2 3 6 6 2 9 40 70 sk_archer sk_archer 12 13 12 11 80 85 90 15 13 12 50 50 50 5 5 5 6 6 6 skbowarrow3 1 1 1 1 1 -50 -40 -25 30 45 75 75 85 70 58 100 130 1 1 45 45 45 15 152 312 136 96 98 135 380 140 200 150 76 52 75 172 140 200 150 76 52 75 172 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
sk_archer4 173 sk_archer1 sk_archer5 3 BurningDeadArcher sk_archer4 skeleton SkeletonBow SK 1 1 2 4 6 6 2 13 43 74 sk_archer sk_archer 12 13 12 11 80 85 90 15 13 11 50 50 50 5 5 5 6 6 6 skbowarrow4 1 1 1 1 1 -50 -40 -25 40 55 75 75 85 70 100 58 135 1 1 59 59 59 15 152 302 136 95 68 105 378 140 200 150 76 52 75 172 140 200 150 76 52 75 172 A1 fire 100 38 82 100 38 82 100 38 82 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
sk_archer5 174 sk_archer1 sk_archer6 4 HorrorArcher sk_archer5 skeleton SkeletonBow SK 1 1 2 4 6 6 2 18 47 78 sk_archer sk_archer 12 13 12 11 90 90 95 15 12 11 50 50 50 5 5 5 6 6 6 skbowarrow5 1 1 1 1 1 -50 -40 -25 50 45 65 75 75 95 85 75 100 100 135 1 1 75 75 75 15 148 302 136 96 68 105 378 140 200 150 76 52 75 172 140 200 150 76 52 75 172 A1 ltng 100 8 120 100 8 120 100 8 180 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
warriv2 175 warriv2 0 Warriv warriv2 human Npc WX 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
atma 176 atma 0 Atma atma human Npc AS 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
drognan 177 drognan 0 Drognan drognan human Npc DR 1 1 1 4 4 0 drognan drognan 13 13 13 1 1 1 1 1 1 1 1 1 1 0
fara 178 fara 0 Fara fara human Npc OF 1 1 1 4 4 0 fara fara 13 13 13 1 1 1 1 1 1 1 1 1 1 0
cow 179 cow 0 dummy cow Idle CW 1 1 1 3 3 0 cow cow 13 13 13 2 1 1 1 1 1 1 0
maggotbaby1 180 maggotbaby1 maggotbaby2 0 SandMaggotYoung maggotbaby1 sandmaggot MaggotLarva SB 1 1 1 5 5 1 16 45 76 maggotbaby maggotbaby 11 13 12 11 75 78 80 20 17 14 60 60 60 15 15 15 20 20 20 1 1 1 1 125 100 75 -50 -40 -33 10 125 1 1 33 33 33 15 42 130 136 58 42 69 141 40 90 75 24 38 68 105 40 90 75 24 38 68 105 A1 pois 5 22 22 75 5 22 22 75 0
maggotbaby2 181 maggotbaby1 maggotbaby3 1 RockWormYoung maggotbaby2 sandmaggot MaggotLarva SB 1 1 1 5 5 1 17 45 84 maggotbaby maggotbaby 11 13 12 11 80 83 85 19 16 13 70 70 70 15 15 15 20 20 20 1 1 1 1 125 100 75 -50 -40 -33 20 125 1 1 33 33 33 15 46 128 136 58 42 69 138 40 90 75 24 38 68 105 40 90 75 24 38 68 105 A1 pois 5 22 22 75 5 22 22 75 0
maggotbaby3 182 maggotbaby1 maggotbaby4 2 DevourerYoung maggotbaby3 sandmaggot MaggotLarva SB 1 1 1 6 6 1 19 48 79 maggotbaby maggotbaby 11 13 12 11 85 88 90 18 15 12 80 80 80 15 15 15 20 20 20 1 1 1 1 125 100 75 -50 -40 -33 30 125 1 1 35 35 35 15 42 132 136 58 36 70 140 40 90 75 24 38 68 105 40 90 75 24 38 68 105 A1 pois 5 22 22 75 5 22 22 75 0
maggotbaby4 183 maggotbaby1 maggotbaby5 3 GiantLampreyYoung maggotbaby4 sandmaggot MaggotLarva SB 1 1 1 6 6 1 21 50 79 maggotbaby maggotbaby 11 13 12 11 88 91 93 17 14 11 85 85 85 15 15 15 20 20 20 1 1 1 1 125 100 75 -50 -40 -33 40 125 1 1 39 39 39 15 42 128 138 58 44 64 141 40 90 75 24 38 68 105 40 90 75 24 38 68 105 A1 pois 5 22 22 75 5 22 22 75 0
maggotbaby5 184 maggotbaby1 maggotbaby6 4 WorldKillerYoung maggotbaby5 sandmaggot MaggotLarva SB 1 1 1 7 7 1 24 57 85 maggotbaby maggotbaby 11 13 12 11 90 93 95 16 13 10 90 90 90 15 15 15 20 20 20 1 1 1 1 125 100 75 -50 -40 -33 50 125 1 1 43 43 43 15 42 130 138 58 39 66 138 40 90 75 24 38 68 105 40 90 75 24 38 68 105 A1 pois 5 22 22 75 5 22 22 75 0
camel 185 camel 0 dummy camel Idle CM 1 1 1 6 6 0 13 13 13 2 1 1 1 1 1 1 1 0
blunderbore1 186 blunderbore1 blunderbore2 0 Blunderbore blunderbore1 blunderbore blunderbore PinHead stun attack PN 1 1 2 4 4 1 18 47 78 pinhead pinhead 12 13 12 11 75 80 85 15 12 10 60 70 70 12 12 12 40 50 55 1 1 1 1 1 1 Smite seq_pinheadsmite 1 125 125 125 -50 -40 -33 80 140 75 75 3 1 43 43 43 15 320 400 136 122 114 201 188 176 226 138 360 440 120 104 135 210 165 180 232 150 360 440 120 104 135 210 165 180 232 150 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
blunderbore2 187 blunderbore1 blunderbore3 1 Gorbelly blunderbore2 blunderbore blunderbore PinHead stun attack PN 1 1 3 5 5 1 20 49 80 pinhead pinhead 12 13 12 11 80 85 90 12 9 7 80 80 80 9 9 9 50 60 65 1 1 1 1 1 1 Smite seq_pinheadsmite 1 125 125 125 -50 -40 -33 80 75 75 165 3 1 47 47 47 15 320 400 138 122 116 208 188 186 231 140 360 440 120 104 135 210 165 180 232 150 360 440 120 104 135 210 165 180 232 150 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
blunderbore3 188 blunderbore1 blunderbore4 2 Mauler blunderbore3 blunderbore blunderbore PinHead stun attack PN 1 2 3 7 7 1 25 55 83 pinhead pinhead 12 13 12 11 85 90 95 9 7 7 90 90 90 7 7 7 60 65 65 1 1 1 1 1 1 Smite seq_pinheadsmite 1 125 125 125 -50 -40 -33 80 75 125 75 3 1 57 57 57 15 320 400 138 126 114 207 189 178 226 140 360 440 120 104 135 210 165 180 232 150 360 440 120 104 135 210 165 180 232 150 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
blunderbore4 189 blunderbore1 blunderbore5 3 Urdar blunderbore4 blunderbore blunderbore PinHead stun attack PN 1 2 4 9 9 1 32 57 85 pinhead pinhead 12 13 12 11 90 95 97 7 7 7 95 95 95 5 5 5 65 65 70 1 1 1 1 1 1 Smite seq_pinheadsmite 1 125 125 125 -50 -40 -33 50 50 75 50 75 75 75 75 80 100 100 100 3 1 70 70 70 15 320 400 136 151 114 204 188 182 226 140 360 440 120 104 135 210 165 180 232 150 360 440 120 104 135 210 165 180 232 150 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
maggotegg1 190 maggotegg1 maggotegg2 0 SandMaggotEgg maggotegg1 MaggotEgg SE 1 maggotbaby1 0 0 S1 1 1 2 2 1 16 45 76 maggotegg maggotegg 10 13 13 13 250 200 200 18 18 18 1 1 MaggotEgg seq_maggotegg 2 125 91 58 -50 -50 -50 10 1 1 154 196 136 54 120 160 38 20 120 160 38 20 0
maggotegg2 191 maggotegg1 maggotegg3 1 RockWormEgg maggotegg2 MaggotEgg SE 1 maggotbaby2 0 0 S1 1 1 2 2 1 17 45 84 maggotegg maggotegg 10 13 13 13 240 200 200 22 22 22 1 1 MaggotEgg seq_maggotegg 3 125 91 58 -50 -50 -50 20 1 1 156 190 136 54 120 160 38 20 120 160 38 20 0
maggotegg3 192 maggotegg1 maggotegg4 2 DevourerEgg maggotegg3 MaggotEgg SE 1 maggotbaby3 0 0 S1 1 1 2 2 1 19 48 79 maggotegg maggotegg 10 13 13 13 210 200 200 26 26 26 1 1 MaggotEgg seq_maggotegg 4 125 91 58 -50 -50 -50 30 1 1 156 192 136 54 120 160 38 20 120 160 38 20 0
maggotegg4 193 maggotegg1 maggotegg5 3 GiantLampreyEgg maggotegg4 MaggotEgg SE 1 maggotbaby4 0 0 S1 1 1 2 2 1 21 50 79 maggotegg maggotegg 10 13 13 13 180 200 200 30 30 30 1 1 MaggotEgg seq_maggotegg 4 125 91 58 -50 -50 -50 40 1 1 156 192 138 54 120 160 38 20 120 160 38 20 0
maggotegg5 194 maggotegg1 maggotegg6 4 WorldKillerEgg maggotegg5 MaggotEgg SE 1 maggotbaby5 0 0 S1 1 1 2 2 1 27 57 85 maggotegg maggotegg 10 13 13 13 150 200 200 34 34 34 1 1 MaggotEgg seq_maggotegg 5 125 91 58 -50 -50 -50 50 1 1 154 190 136 58 120 160 38 20 120 160 38 20 0
act2male 195 act2male 0 dummy act2male human Towner 2M 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 0
act2female 196 act2female 0 Dummy act2female human Towner 2F 1 1 1 3 3 0 lightnpc lightnpc 13 13 13 1 1 1 1 1 1 1 0
act2child 197 act2child 0 dummy act2child human Towner 2C 1 1 1 3 3 0 lightnpc lightnpc 13 13 13 1 1 1 1 1 1 1 0
greiz 198 greiz 0 Greiz greiz human Npc GR 1 1 1 5 5 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
elzix 199 elzix 0 Elzix elzix human Npc EL 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
geglash 200 geglash 0 Geglash geglash human Npc GE 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
jerhyn 201 jerhyn 0 Jerhyn jerhyn human Npc JE 1 1 1 5 5 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
lysander 202 lysander 0 Lysander lysander human Npc LY 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
act2guard1 203 act2guard1 0 Dummy act2guard1 human Towner GU 1 1 1 5 8 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 0
act2vendor1 204 act2vendor1 0 dummy act2vendor1 human Vendor M1 1 1 1 5 5 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
act2vendor2 205 act2vendor2 0 dummy act2vendor2 human Vendor M2 1 1 1 5 5 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
crownest1 206 crownest1 crownest2 0 FoulCrowNest crownest1 FoulCrowNest BN 1 1 foulcrow1 0 3 NU 1 1 1 1 2 3 37 68 crownest crownest 12 13 13 13 100 80 70 6 12 15 1 1 1 Nest seq_nestlay 1 125 100 75 -50 -40 -33 1 1 912 1090 36 189 900 1150 45 240 900 1150 45 240 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
crownest2 207 crownest1 crownest3 1 BloodHawkNest crownest2 FoulCrowNest BN 1 1 foulcrow2 0 3 NU 1 1 1 1 2 8 38 69 crownest crownest 12 13 13 13 100 80 70 8 15 18 1 1 1 Nest seq_nestlay 1 125 100 75 -50 -40 -33 1 1 978 1168 38 190 900 1150 45 240 900 1150 45 240 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
crownest3 208 crownest1 crownest4 2 BlackVultureNest crownest3 FoulCrowNest BN 1 1 foulcrow3 0 3 NU 1 1 1 1 2 15 45 76 crownest crownest 12 13 13 13 100 80 70 10 17 21 1 1 1 Nest seq_nestlay 1 125 100 75 -50 -40 -33 1 1 958 1152 38 189 900 1150 45 240 900 1150 45 240 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
crownest4 209 crownest1 3 CloudStalkerNest crownest4 FoulCrowNest BN 1 1 foulcrow4 0 3 NU 1 1 1 1 2 22 48 79 crownest crownest 12 13 13 13 100 80 70 15 19 24 1 1 1 Nest seq_nestlay 1 125 100 75 -50 -40 -33 1 1 954 1144 38 189 900 1150 45 240 900 1150 45 240 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
meshif1 210 meshif1 0 Meshif meshif1 human Npc MS 1 1 1 5 5 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
duriel 211 duriel 0 Duriel duriel demon Duriel DU 1 1 1 11 16 0 22 55 88 duriel duriel 13 13 13 5 5 6 33 33 33 50 50 50 1 1 1 1 1 Charge seq_durielcharge 5 Jab seq_durieljab 15 Smite seq_durielsmite 7 Holy Freeze NU 1 125 125 125 -20 -20 -20 45 45 75 45 75 75 100 75 75 58 100 100 120 100 0 1 7 45 82 15 9514 9514 138 1766 210 270 302 210 240 378 1 2 200 9514 9514 180 1324 210 285 165 172 248 225 40 50 135 2590 2590 180 1324 210 285 165 172 248 225 40 50 135 A2 stun 100 22 100 30 100 45 Duriel Duriel Duriel Durielq Duriel (N) Duriel (N) Duriel (N) Durielq (N) Duriel (H) Duriel (H) Duriel (H) Durielq (H) 14 5 0
bonefetish1 212 bonefetish1 bonefetish2 0 Undead RatMan bonefetish1 undeadfetish Fetish FK 1 1 1 7 7 1 10 41 73 bonefetish bonefetish 12 13 12 11 100 100 100 10 9 8 5 5 5 33 33 33 1 1 1 1 1 1 1 1 125 91 58 -50 -33 0 10 75 85 50 58 100 125 1 1 23 23 23 15 128 220 136 86 108 172 136 130 210 202 100 98 158 135 130 210 202 100 98 158 135 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
bonefetish2 213 bonefetish1 bonefetish3 1 Undead Fetish bonefetish2 undeadfetish Fetish FK 1 1 2 8 8 1 21 50 80 bonefetish bonefetish 12 13 12 11 100 100 100 10 9 8 5 5 5 33 33 33 1 1 1 1 1 1 1 1 125 91 58 -50 -33 0 20 75 85 50 58 100 130 1 1 39 39 39 15 128 214 138 84 98 152 141 130 210 202 100 98 158 135 130 210 202 100 98 158 135 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
bonefetish3 214 bonefetish1 bonefetish4 2 Undead Flayer bonefetish3 undeadfetish Fetish FK 1 1 3 9 9 1 22 51 81 bonefetish bonefetish 12 13 12 11 100 100 100 10 9 8 5 5 5 33 33 33 1 1 1 1 1 1 1 1 125 91 58 -50 -33 0 30 75 85 50 58 100 135 1 1 40 40 40 15 132 214 138 84 108 162 141 130 210 202 100 98 158 135 130 210 202 100 98 158 135 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
bonefetish4 215 bonefetish1 bonefetish5 3 Undead SoulKiller bonefetish4 undeadfetish Fetish FK 1 2 3 10 10 1 23 52 82 bonefetish bonefetish 12 13 12 11 100 100 100 10 9 8 5 5 5 33 33 33 1 1 1 1 1 1 1 1 125 91 58 -50 -33 0 40 75 85 50 58 100 140 1 1 41 41 41 15 130 214 138 84 100 160 138 130 210 202 100 98 158 135 130 210 202 100 98 158 135 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
bonefetish5 216 bonefetish1 bonefetish6 4 Undead StygianDoll bonefetish5 undeadfetish Fetish FK 1 2 4 11 11 1 24 53 83 bonefetish bonefetish 12 13 12 11 100 100 100 10 9 8 5 5 5 33 33 33 1 1 1 1 1 1 1 1 125 91 58 -50 -33 0 50 75 85 50 58 100 145 1 1 43 43 43 15 130 214 138 84 104 152 138 130 210 202 100 98 158 135 130 210 202 100 98 158 135 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
darkguard1 217 darkguard1 darkguard2 0 unused darkguard1 Idle xx 1 2 5 5 0 1 10 1 1 0
darkguard2 218 darkguard1 darkguard3 1 unused darkguard2 Idle xx 1 3 5 5 0 1 20 1 1 0
darkguard3 219 darkguard1 darkguard4 2 unused darkguard3 Idle xx 2 3 6 6 0 1 30 1 1 0
darkguard4 220 darkguard1 darkguard5 3 unused darkguard4 Idle xx 2 4 6 6 0 1 40 1 1 0
darkguard5 221 darkguard1 4 unused darkguard5 Idle xx 3 4 6 6 0 1 50 1 1 0
bloodmage1 222 bloodmage1 bloodmage2 0 unused bloodmage1 Idle xx 1 2 4 4 0 1 10 1 1 0
bloodmage2 223 bloodmage1 bloodmage3 1 unused bloodmage2 Idle xx 1 3 4 4 0 1 20 1 1 0
bloodmage3 224 bloodmage1 bloodmage4 2 unused bloodmage3 Idle xx 2 3 5 5 0 1 30 1 1 0
bloodmage4 225 bloodmage1 bloodmage5 3 unused bloodmage4 Idle xx 2 4 5 5 0 1 40 1 1 0
bloodmage5 226 bloodmage1 4 unused bloodmage5 Idle xx 3 4 5 5 0 1 50 1 1 0
maggot 227 maggot 0 Maggot maggot Idle MA 1 1 1 2 2 0 bug bug 13 13 13 1 1 1 1 1 1 0
sarcophagus 228 sarcophagus 0 MummyGenerator sarcophagus construct Sarcophagus MG 1 mummy1 0 2 NU 1 1 1 1 1 15 49 79 sarcophagus sarcophagus 12 13 13 13 125 110 90 16 20 24 1 1 1 Nest seq_mummyspawn 1 0 0 0 75 75 75 75 50 50 175 75 1 1 1914 1914 94 349 1900 1900 8 272 1900 1900 8 272 0
radament 229 radament 0 Radament radament demon GreaterMummy RD 1 skeleton4 1 1 3 3 0 16 49 83 radament radament 16 13 12 11 85 85 85 45 50 55 55 55 55 85 90 95 24 27 31 mummy4 1 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBolt seq_mummyres 1 125 100 75 -50 -40 -33 65 75 85 85 75 85 105 0 1 33 33 33 15 996 996 104 233 110 232 141 110 232 188 1000 1000 180 252 150 225 195 105 232 240 1000 1000 180 252 150 225 195 105 232 240 A1 pois 25 272 408 1500 25 270 405 1500 25 270 405 1500 Radament Radament Radament Radament (N) Radament (N) Radament (N) Radament (H) Radament (H) Radament (H) 0
firebeast 230 firebeast 0 unused firebeast ElementalBeast FM 3 6 5 5 1 13 13 13 20 20 20 16 20 24 20 20 20 1 1 95 95 1 1 1 1 0
iceglobe 231 iceglobe 0 unused iceglobe ElementalBeast IM 3 6 5 5 1 13 13 13 20 20 20 16 20 24 20 20 20 1 1 1 95 95 1 1 1 1 0
lightningbeast 232 lightningbeast 0 unused lightningbeast ElementalBeast xx 3 6 5 5 1 13 13 13 20 20 20 16 20 24 20 20 20 1 1 1 95 95 1 1 0
poisonorb 233 poisonorb 0 unused poisonorb ElementalBeast PM 3 6 5 5 1 13 13 13 20 20 20 16 20 24 20 20 20 1 1 1 95 95 1 1 0
flyingscimitar 234 flyingscimitar 0 FlyingScimitar flyingscimitar construct FlyingScimitar ST 1 3 6 5 5 1 12 45 78 flyingscimitar flyingscimitar 12 13 11 8 90 90 90 90 95 99 8 8 8 40 50 60 1 1 1 1 1 1 Charge seq_pinheadsmite 1 -50 -25 95 125 50 125 125 1 1 27 27 27 15 194 262 136 89 57 170 140 200 270 225 112 112 180 225 200 270 225 112 112 180 225 Flying Scimitar Flying Scimitar Flying Scimitar Flying Scimitar (N) Flying Scimitar (N) Flying Scimitar (N) Flying Scimitar (H) Flying Scimitar (H) Flying Scimitar (H) 0
zealot1 235 zealot1 zealot2 0 Zakarumite zealot1 zakarum ZakarumZealot ZZ 1 1 2 7 9 1 20 50 80 zealot zealot 12 13 12 11 65 75 85 50 50 50 35 35 35 50 60 70 1 1 1 1 1 125 125 125 -50 -40 -33 35 125 58 58 45 1 1 37 37 37 15 258 344 138 106 93 162 140 93 162 140 240 300 120 64 90 150 150 90 158 172 240 300 120 64 90 150 150 90 158 172 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
zealot2 236 zealot1 zealot3 1 Faithful zealot2 zakarum ZakarumZealot ZZ 1 1 3 7 10 1 22 51 81 zealot zealot 12 13 12 11 76 85 90 60 60 60 40 40 40 60 70 80 1 1 1 1 1 125 125 125 -50 -40 -33 35 50 58 165 45 1 1 40 40 40 15 262 344 138 106 98 162 141 98 162 141 240 300 120 64 90 150 150 90 158 172 240 300 120 64 90 150 150 90 158 172 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
zealot3 237 zealot1 zealot4 2 Zealot zealot3 zakarum ZakarumZealot ZZ 1 2 3 7 12 1 24 53 82 zealot zealot 12 13 12 11 85 90 95 65 65 65 50 50 50 70 80 90 1 1 1 1 1 125 125 125 -50 -40 -33 35 50 125 58 45 1 1 43 43 43 15 262 346 138 106 86 152 138 86 152 138 240 300 120 64 90 150 150 90 158 172 240 300 120 64 90 150 150 90 158 172 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
cantor1 238 cantor1 cantor2 0 Sexton cantor1 zakarum ZakarumPriest heals Zealots and Cantors ZP 1 1 zealot1 2 4 1 1 7 7 1 22 50 80 cantor cantor 12 13 12 11 25 25 25 5 10 15 50 60 70 25 40 60 120 120 120 36 38 40 1 1 1 1 ZakarumHeal S1 1 ZakarumLightning S1 1 MonTeleport S1 1 MonBlizzard S1 1 125 125 125 -50 -40 -33 75 35 50 58 165 45 1 1 40 40 40 15 262 344 138 112 108 237 141 180 260 112 104 60 128 135 180 260 112 104 60 128 135 A1 ltng 45 42 86 45 45 90 45 45 90 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
cantor2 239 cantor1 cantor3 1 Cantor cantor2 zakarum ZakarumPriest heals Zealots and Cantors ZP 1 1 zealot2 2 4 1 1 7 7 1 23 51 81 cantor cantor 12 13 12 11 30 30 30 6 12 18 55 65 75 30 45 65 120 120 120 36 38 40 1 1 1 1 ZakarumHeal S1 2 ZakarumLightning S1 1 MonTeleport S1 1 MonBlizzard S1 1 125 125 125 -50 -40 -33 75 75 35 50 125 100 45 1 1 41 41 41 15 260 342 138 113 100 231 138 180 260 112 104 60 128 135 180 260 112 104 60 128 135 A1 cold 55 50 90 38 55 45 90 75 55 45 90 112 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
cantor3 240 cantor1 cantor4 2 Heirophant cantor3 zakarum ZakarumPriest heals Zealots and Cantors ZP 1 1 zealot3 2 4 1 2 7 7 1 24 53 82 cantor cantor 12 13 12 11 35 35 35 8 14 22 60 70 80 35 50 70 120 120 120 36 38 40 1 1 1 1 ZakarumHeal S1 3 ZakarumLightning S1 1 MonTeleport S1 1 MonBlizzard S1 1 125 125 125 -50 -40 -33 75 100 35 50 58 185 45 1 1 43 43 43 15 262 346 138 113 104 226 138 180 260 112 104 60 128 135 180 260 112 104 60 128 135 A1 cold 65 46 93 38 65 45 90 75 65 45 90 112 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
cantor4 241 cantor1 cantor5 3 Heirophant cantor4 zakarum ZakarumPriest heals Zealots and Cantors ZP 1 1 zealot3 2 4 1 2 7 7 1 24 57 84 cantor cantor 12 13 12 11 40 40 40 10 16 25 65 75 85 40 55 75 120 120 120 36 38 40 1 1 1 1 ZakarumHeal S1 3 ZakarumLightning S1 1 MonTeleport S1 1 MonBlizzard S1 1 125 125 125 -50 -40 -33 35 58 100 100 45 1 1 43 43 43 15 262 346 138 113 104 226 138 180 260 112 104 60 128 135 180 260 112 104 60 128 135 A1 cold 75 46 102 38 75 45 90 75 75 45 90 112 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
mephisto 242 mephisto 0 Mephisto mephisto mephisto demon Mephisto MP 1 1 1 9 9 0 26 59 87 mephisto mephisto 16 13 8 4 40 46 15 20 25 25 33 33 25 33 33 1 1 1 1 1 PrimeLightning A2 6 PrimeBolt A2 6 PrimePoisonNova A2 7 MephistoMissile A2 5 MephFrostNova A2 1 Blizzard A2 5 125 -25 -15 -10 58 58 50 75 75 75 50 75 45 75 100 100 100 100 0 1 37 67 82 15 11390 11390 196 2273 442 663 376 11390 11390 240 1705 240 330 300 2942 2942 240 1705 240 330 300 Mephisto Mephisto Mephisto Mephistoq Mephisto (N) Mephisto (N) Mephisto (N) Mephistoq (N) Mephisto (H) Mephisto (H) Mephisto (H) Mephistoq (H) 22 0 0
diablo 243 diablo 0 Diablo diablo demon Diablo DI 1 1 1 7 7 0 40 62 94 diablo diablo 16 13 11 10 1 1 1 1 1 DiabLight SC 3 DiabCold S2 4 DiabFire S1 5 DiabWall S3 3 DiabRun seq_diablorun 5 PrimeFirewall S3 8 DiabPrison S3 1 125 75 -25 -15 -10 58 58 58 75 75 75 75 75 70 75 75 75 75 0 1 45 67 82 15 12854 12854 140 3693 116 296 470 170 386 376 12854 12854 210 2770 270 330 322 285 375 300 3154 3154 210 2770 270 330 322 285 375 300 Diablo Diablo Diablo Diabloq Diablo (N) Diablo (N) Diablo (N) Diabloq (N) Diablo (H) Diablo (H) Diablo (H) Diabloq (H) 26 0 1 0
cain2 244 cain2 0 DeckardCain cain2 human Npc DC 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
cain3 245 cain3 0 DeckardCain cain3 human Npc DC 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
cain4 246 cain4 0 DeckardCain cain4 human Npc DC 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
frogdemon1 247 frogdemon1 frogdemon2 0 Swamp Dweller frogdemon1 frogdemon FrogDemon FD 1 1 1 2 10 10 1 21 49 79 frogdemon frogdemon 12 13 12 11 65 70 85 20 25 30 50 55 75 50 55 65 20 35 50 12 12 12 15 13 10 9 9 9 frogfire 1 1 1 Submerge seq_froghidden 1 Emerge S1 1 125 110 100 -50 -40 -33 40 125 50 75 1 1 39 39 39 15 260 342 138 118 98 226 141 220 280 142 72 98 142 150 220 280 142 72 98 142 150 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 1 1 0
frogdemon2 248 frogdemon1 frogdemon3 1 Bog Creature frogdemon2 frogdemon FrogDemon FD 1 1 1 3 11 11 1 22 50 80 frogdemon frogdemon 12 13 12 11 70 75 90 20 25 30 50 65 80 50 60 70 25 40 55 12 12 12 14 12 9 9 9 9 frogfire 1 1 1 Submerge seq_froghidden 1 Emerge S1 1 125 110 100 -50 -40 -33 40 145 75 1 1 40 40 40 15 262 344 138 118 108 237 141 220 280 142 72 98 142 150 220 280 142 72 98 142 150 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 1 1 0
frogdemon3 249 frogdemon1 2 Slime Prince frogdemon3 frogdemon FrogDemon FD 1 1 2 3 12 12 1 24 51 81 frogdemon frogdemon 12 13 12 11 75 80 95 20 25 30 50 70 85 50 65 75 30 45 60 12 12 12 13 11 8 9 9 9 frogpois 1 1 1 Submerge seq_froghidden 1 Emerge S1 1 125 110 100 -50 -40 -33 40 50 135 1 1 43 43 43 15 262 346 138 118 104 226 138 220 280 142 72 98 142 150 220 280 142 72 98 142 150 A1 pois 10 150 150 900 10 150 150 900 10 150 150 900 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 1 1 0
summoner 250 summoner 0 Summoner summoner human Summoner SU 1 1 1 6 6 0 18 55 80 summoner summoner 16 13 11 8 85 93 98 5 5 5 63 63 63 40 40 40 120 100 80 33 20 10 5 8 11 40 40 40 1 1 Glacial Spike SC 6 Frost Nova SC 5 Fire Ball SC 5 VampireFirewall SC 7 Weaken SC 4 125 100 75 -50 -40 -33 75 75 75 75 75 75 100 100 100 0 1 34 34 34 15 258 344 240 131 220 280 128 234 220 280 128 234 Summoner Summoner Summoner Summoner (N) Summoner (N) Summoner (N) Summoner (H) Summoner (H) Summoner (H) 0
tyrael1 251 tyrael1 0 tyrael tyrael1 NpcStationary TX 1 1 1 1 1 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
asheara 252 asheara 0 asheara asheara human Npc AH 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
hratli 253 hratli 0 hratli hratli human Npc HR 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
alkor 254 alkor 0 alkor alkor human Npc AL 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
ormus 255 ormus 0 ormus ormus human Npc OR 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
izual 256 izual 0 izual izual demon Izual 22 1 1 1 11 17 0 29 60 86 izual izual 16 13 10 6 45 50 50 50 50 50 66 66 66 0 75 100 20 5 0 3 4 4 1 1 1 1 Frost Nova SC 8 125 100 75 -50 -33 -25 30 55 55 55 100 55 55 55 55 55 100 55 55 55 55 55 100 55 0 1 82 82 82 15 18962 18962 136 3942 198 356 376 6222 6222 180 1590 180 240 300 1822 1822 180 1590 180 240 300 A1 cold 100 63 126 75 100 75 120 112 100 75 120 150 Izual Izual Izual Izual (N) Izual (N) Izual (N) Izual (H) Izual (H) Izual (H) 0
halbu 257 halbu 0 halbu halbu human Npc 20 1 1 1 3 3 0 halbu halbu 13 13 13 1 1 1 1 1 1 1 1 1 0
tentacle1 258 tentacle1 tentacle2 0 WaterWatcherLimb tentacle1 tentacle Tentacle TN 1 1 1 1 1 0 18 48 75 tentacle tentacle 10 13 13 13 70 75 80 5 8 10 16 16 16 12 12 12 20 15 15 12 12 12 1 Submerge seq_tentaclesubmerge 1 Emerge S1 1 125 110 100 -50 -40 -33 40 75 125 1 1 34 34 34 15 258 344 136 114 114 226 138 140 200 150 60 105 180 135 140 200 150 60 105 180 135 0
tentacle2 259 tentacle1 tentacle3 1 RiverStalkerLimb tentacle2 tentacle Tentacle TN 1 1 1 1 1 0 20 50 78 tentacle tentacle 10 13 13 13 80 85 90 10 10 15 14 14 14 14 14 14 16 15 15 12 12 12 1 Submerge seq_tentaclesubmerge 1 Emerge S1 1 125 110 100 -50 -40 -33 40 75 130 1 1 37 37 37 15 258 344 138 114 116 231 140 140 200 150 60 105 180 135 140 200 150 60 105 180 135 0
tentacle3 260 tentacle1 2 StygianWatcherLimb tentacle3 tentacle Tentacle TN 1 1 1 1 1 0 22 53 80 tentacle tentacle 10 13 13 13 90 95 95 15 15 17 12 12 12 16 16 16 12 12 12 12 12 12 1 Submerge seq_tentaclesubmerge 1 Emerge S1 1 125 110 100 -50 -40 -33 40 75 135 1 1 40 40 40 15 262 344 138 114 118 237 141 140 200 150 60 105 180 135 140 200 150 60 105 180 135 0
tentaclehead1 261 tentaclehead1 tentaclehead2 0 WaterWatcherHead tentaclehead1 tentacle TentacleHead TE 1 tentacle1 1 4 6 1 1 1 1 0 18 48 75 tentaclehead tentaclehead 10 13 13 13 70 75 80 5 8 10 16 16 16 12 12 12 20 15 15 12 14 14 tentaclegoo 1 1 Submerge seq_tentheadsubmerge 1 Emerge S1 1 125 110 100 -50 -40 -33 40 75 125 1 1 43 43 43 15 258 344 136 92 180 240 150 104 180 240 150 104 0
tentaclehead2 262 tentaclehead1 tentaclehead3 1 RiverStalkerHead tentaclehead2 tentacle TentacleHead TE 1 tentacle2 1 4 6 1 1 1 1 0 20 50 78 tentaclehead tentaclehead 10 13 13 13 80 85 90 10 10 15 14 14 14 14 14 14 16 15 15 12 14 14 tentaclegoo 1 1 Submerge seq_tentheadsubmerge 1 Emerge S1 1 125 110 100 -50 -40 -33 40 75 130 1 1 47 47 47 15 258 344 138 93 180 240 150 104 180 240 150 104 0
tentaclehead3 263 tentaclehead1 2 StygianWatcherHead tentaclehead3 tentacle TentacleHead TE 1 tentacle3 1 4 6 1 1 1 1 0 22 53 80 tentaclehead tentaclehead 10 13 13 13 90 90 95 15 15 17 12 12 12 16 16 16 12 12 12 12 14 14 tentaclegoo 1 1 Submerge seq_tentheadsubmerge 1 Emerge S1 1 125 110 100 -50 -40 -33 40 75 135 1 1 51 51 51 15 262 344 138 92 180 240 150 104 180 240 150 104 0
meshif2 264 meshif2 0 meshif meshif2 human Npc M3 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
cain5 265 cain5 0 DeckardCain cain5 human Npc 1D 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
navi 266 navi 0 navi navi human Navi RG 1 1 1 9 9 0 1 34 67 act1hire act1hire 13 13 13 rogue1 1 1 1 1 1 1 1 -50 -50 -50 0 1 19962 19962 336 0 152 8562 8562 225 0 0 150 2150 2150 225 0 0 150 0
bloodraven 267 bloodraven 0 Bloodraven bloodraven bloodraven corruptrogue BloodRaven CR 1 zombie2 0 0 S1 zombie2 5 9 1 1 7 9 0 10 43 88 bloodraven bloodraven 15 13 11 8 raven1 raven2 1 1 1 1 Nest seq_bloodravencast 1 Quick Strike seq_brquickstrike 1 125 110 100 -50 -40 -33 75 75 75 75 75 50 75 75 75 75 75 75 75 75 75 75 75 0 1 49 49 49 15 646 646 106 161 90 142 380 2574 2574 225 782 90 150 300 1772 1772 225 782 90 150 300 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
bug 268 bug 0 Dummy bug Idle BG 1 3 3 3 3 1 13 13 13 1 1 1 1 1 1 1 1 0
scorpion 269 scorpion 0 Dummy scorpion Idle DS 1 4 4 6 6 1 bug bug 13 13 13 1 1 1 1 1 1 1 1 0
rogue2 270 rogue2 0 RogueScout rogue2 human GoodNpcRanged RG 1 1 1 9 9 0 5 38 71 act1hire act1hire 12 13 13 13 rogue1 1 1 1 1 1 1 125 125 125 -50 -50 -50 0 1 29 29 29 15 186 462 136 0 382 360 420 225 0 0 225 360 420 225 0 0 225 0
roguehire 271 roguehire 0 Dummy roguehire human Hireable RG 1 1 1 8 12 0 1 34 67 act1hire act1hire 12 -1 -1 -1 1 1 1 1 1 1 RogueMissile A1 1 125 125 125 -50 -50 -50 3 1 0
rogue3 272 rogue3 0 Dummy rogue3 human TownRogue RG 1 1 1 9 9 0 5 38 71 act1hire act1hire 12 13 13 13 rogue1 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 119 119 119 15 378 662 136 0 140 360 420 225 0 0 225 360 420 225 0 0 225 0
gargoyletrap 273 gargoyletrap 0 GargoyleTrap gargoyletrap construct GargoyleTrap GT 1 1 1 1 1 0 15 40 79 gargoyletrap gargoyletrap 11 13 13 13 24 26 28 20 50 80 12 10 8 15 7 0 1 1 1 GargoyleTrap seq_gargoyletrap 1 -50 0 0 95 125 1025 0 1 31 31 31 15 264 344 136 113 280 380 52 200 280 380 52 200 0
skmage_pois1 274 skmage_pois1 skmage_pois2 1 ReturnedMage skmage_pois1 skeleton SkeletonMage SK 1 1 1 2 5 5 2 8 39 71 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 95 85 58 40 100 1 1 21 21 21 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 pois 100 50 50 150 100 50 50 150 100 50 50 150 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
skmage_pois2 275 skmage_pois1 skmage_pois3 2 BoneMage skmage_pois2 skeleton SkeletonMage SK 1 1 1 3 5 5 2 10 41 75 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 95 85 58 40 100 1 1 23 23 23 15 110 164 136 60 110 160 135 88 110 160 135 88 A1 pois 100 50 50 150 100 50 50 150 100 50 50 150 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
skmage_pois3 276 skmage_pois1 skmage_pois4 3 BurningDeadMage skmage_pois3 skeleton SkeletonMage SK 1 1 2 3 6 6 2 14 44 79 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 95 85 58 40 100 1 1 29 29 29 15 114 162 136 60 110 160 135 88 110 160 135 88 A1 pois 100 50 50 150 100 50 50 150 100 50 50 150 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
skmage_pois4 277 skmage_pois1 skmage_pois5 4 HorrorMage skmage_pois4 skeleton SkeletonMage SK 1 1 2 4 6 6 2 17 47 78 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 95 85 58 40 100 1 1 33 33 33 15 112 162 136 58 110 160 135 88 110 160 135 88 A1 pois 100 50 50 150 100 50 50 150 100 50 50 150 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
fetishshaman1 278 fetishshaman1 fetishshaman2 0 RatManShaman fetishshaman1 fetish FetishShaman raises Ratmen FW 1 fetish1 fetishblow1 1 1 2 7 1 1 7 7 1 11 39 72 fetishshaman fetishshaman 14 13 12 11 40 45 45 0 1 2 15 16 18 66 66 66 50 50 50 1 1 1 1 1 1 FetishInferno A1 7 FetishAura A1 1 Resurrect2 seq_fetishres 1 125 125 125 -50 -40 -33 10 50 50 130 50 75 1 1 25 25 25 15 134 218 136 82 130 210 150 208 130 210 150 208 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 1 0
fetishshaman2 279 fetishshaman1 fetishshaman3 1 FetishShaman fetishshaman2 fetish FetishShaman raises Fetishes FW 1 fetish2 fetishblow2 1 1 2 7 1 1 8 8 1 22 49 80 fetishshaman fetishshaman 14 13 12 11 40 45 45 0 1 2 15 16 19 66 66 66 50 50 50 1 1 1 1 1 1 FetishInferno A1 8 FetishAura A1 2 Resurrect2 seq_fetishres 1 125 125 125 -50 -40 -33 20 50 50 135 50 75 1 1 40 40 40 15 132 214 138 82 130 210 150 208 130 210 150 208 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 1 0
fetishshaman3 280 fetishshaman1 fetishshaman4 2 FlayerShaman fetishshaman3 fetish FetishShaman raises Flayers FW 1 fetish3 fetishblow3 1 1 2 7 1 1 9 9 1 23 50 81 fetishshaman fetishshaman 14 13 12 11 40 45 45 0 2 2 15 17 20 66 66 66 50 50 50 1 1 1 1 1 1 FetishInferno A1 9 FetishAura A1 3 Resurrect2 seq_fetishres 1 125 125 125 -50 -40 -33 30 50 50 140 50 75 1 1 41 41 41 15 130 214 138 81 130 210 150 208 130 210 150 208 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 1 0
fetishshaman4 281 fetishshaman1 fetishshaman5 3 SoulKillerShaman fetishshaman4 fetish FetishShaman raises Soul Killers FW 1 fetish4 fetishblow4 1 1 2 7 1 1 10 10 1 24 51 82 fetishshaman fetishshaman 14 13 12 11 40 45 45 0 2 3 15 17 21 66 66 66 50 50 50 1 1 1 1 1 1 FetishInferno A1 10 FetishAura A1 4 Resurrect2 seq_fetishres 1 125 125 125 -50 -40 -33 40 50 50 145 50 75 1 1 43 43 43 15 130 214 138 82 130 210 150 208 130 210 150 208 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 1 0
fetishshaman5 282 fetishshaman1 fetishshaman6 4 StygianDollShaman fetishshaman5 fetish FetishShaman raises Stygian Dolls FW 1 fetish5 fetishblow5 1 1 2 7 1 1 11 11 1 24 53 84 fetishshaman fetishshaman 14 13 12 11 40 45 45 0 2 3 15 18 22 66 66 66 50 50 50 1 1 1 1 1 1 FetishInferno A1 11 FetishAura A1 5 Resurrect2 seq_fetishres 1 125 125 125 -50 -40 -33 50 50 50 150 50 75 1 1 43 43 43 15 130 214 138 82 130 210 150 208 130 210 150 208 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 1 0
larva 283 larva 0 larva larva Idle LV 1 4 4 2 2 0 larva larva 13 13 13 1 1 1 1 1 1 0
maggotqueen1 284 maggotqueen1 maggotqueen2 0 SandMaggotQueen maggotqueen1 sandmaggot SandMaggotQueen MQ 1 sandmaggot1 8 0 S1 1 1 5 5 1 11 46 81 maggotqueen maggotqueen 12 13 13 13 7 8 9 12 12 12 goospit1 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 QueenDeath seq_queendeath 1 125 100 75 -50 -40 -33 75 145 1 1 25 25 25 15 318 518 136 143 440 540 105 148 440 540 105 148 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 1 0
maggotqueen2 285 maggotqueen1 maggotqueen3 1 RockWormQueen maggotqueen2 sandmaggot SandMaggotQueen MQ 1 sandmaggot2 8 0 S1 1 1 5 5 1 14 47 82 maggotqueen maggotqueen 12 13 13 13 8 9 10 10 10 10 goospit2 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 QueenDeath seq_queendeath 1 125 100 75 -50 -40 -33 75 145 1 1 29 29 29 15 322 522 136 143 440 540 105 148 440 540 105 148 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 1 0
maggotqueen3 286 maggotqueen1 maggotqueen4 2 DevourerQueen maggotqueen3 sandmaggot SandMaggotQueen MQ 1 sandmaggot3 8 0 S1 1 1 5 5 1 17 48 83 maggotqueen maggotqueen 12 13 13 13 9 10 11 8 8 8 goospit3 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 QueenDeath seq_queendeath 1 125 100 75 -50 -40 -33 75 145 1 1 33 33 33 15 318 518 136 143 440 540 105 148 440 540 105 148 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 1 0
maggotqueen4 287 maggotqueen1 maggotqueen5 3 GiantLampreyQueen maggotqueen4 sandmaggot SandMaggotQueen MQ 1 sandmaggot4 8 0 S1 1 1 5 5 1 21 49 84 maggotqueen maggotqueen 12 13 13 13 10 11 12 6 6 6 goospit4 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 QueenDeath seq_queendeath 1 125 100 75 -50 -40 -33 75 145 1 1 39 39 39 15 320 514 138 143 440 540 105 148 440 540 105 148 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 1 0
maggotqueen5 288 maggotqueen1 4 WorldKillerQueen maggotqueen5 sandmaggot SandMaggotQueen MQ 1 sandmaggot5 8 0 S1 1 1 5 5 1 29 50 85 maggotqueen maggotqueen 12 13 13 13 11 12 13 4 4 4 goospit5 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 QueenDeath seq_queendeath 1 125 100 75 -50 -40 -33 75 145 1 1 51 51 51 15 314 514 136 163 440 540 105 148 440 540 105 148 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 1 0
claygolem 289 claygolem 0 ClayGolem claygolem golem NecroPet G1 1 1 1 9 9 0 claygolem claygolem 13 13 13 13 85 85 85 1 1 1 1 1 1 -50 -50 -50 25 45 75 50 45 75 50 45 75 2 1 1 39 39 39 15 200 200 160 3 8 60 6 10 60 350 350 150 3 9 99 8 15 99 550 550 150 4 10 138 9 16 138 0
bloodgolem 290 bloodgolem 0 BloodGolem bloodgolem golem NecroPet G2 1 1 1 10 10 0 bloodgolem bloodgolem 13 13 13 13 90 90 90 1 1 1 1 1 1 BloodGolem NU 0 125 125 125 -50 -50 -50 45 45 45 45 45 45 2 1 1 53 53 53 15 402 402 190 9 24 90 18 36 90 776 776 180 14 34 156 26 52 156 1274 1274 180 15 40 222 30 62 222 0
irongolem 291 irongolem 0 IronGolem irongolem golem NecroPet G4 1 1 1 10 10 0 irongolem irongolem 13 13 13 13 90 90 90 1 1 1 1 1 1 1 -50 -50 -50 75 125 75 125 75 125 2 1 1 69 69 69 15 612 612 220 10 28 120 22 44 120 1190 1190 210 16 45 207 34 68 207 1960 1960 210 18 50 296 38 74 296 0
firegolem 292 firegolem 0 FireGolem firegolem golem NecroPet G3 1 1 1 11 11 0 firegolem firegolem 13 13 13 13 90 90 90 1 1 1 1 1 1 -50 -50 -50 125 125 125 2 1 1 82 82 82 15 626 626 310 15 40 180 32 62 180 1226 1226 300 22 58 314 45 90 314 2026 2026 300 27 70 447 52 106 447 A1 fire 80 8 15 80 80 0
familiar 293 familiar 0 Dummy familiar Idle FI 1 1 13 7 0 13 13 13 90 90 90 1 1 1 0 1 0
act3male 294 act3male 0 Dummy act3male human Towner N4 1 1 1 4 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
baboon6 295 baboon6 0 NightMarauder baboon6 baboon6 baboon Baboon BB 1 2 3 11 17 1 24 59 85 baboon baboon 12 13 12 11 33 33 33 20 30 35 50 50 50 50 50 50 1 2 3 1 1 1 1 1 -50 -25 125 58 130 1 1 43 43 43 15 214 302 138 103 76 226 138 76 226 138 160 250 210 108 90 165 172 75 225 188 160 250 210 108 90 165 172 75 225 202 A1 cold 85 46 102 38 85 45 120 75 85 60 120 112 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
act3female 296 act3female 0 Dummy act3female human Towner N3 1 1 1 4 3 0 lightnpc lightnpc 13 13 13 1 1 1 1 1 1 1 0
natalya 297 natalya 0 Natalya natalya human Npc TZ 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
vilemother1 298 vilemother1 vilemother2 0 FleshSpawner vilemother1 vilekind VileMother VM 1 vilechild1 0 0 NU 1 2 8 8 1 24 56 82 vilemother vilemother 12 13 12 11 16 17 20 5 5 6 30 35 40 80 85 90 70 60 50 30 30 30 10 8 7 1 1 1 1 1 1 Nest seq_vileres 1 125 100 75 -50 -40 -33 91 165 1 1 43 43 43 15 458 590 104 151 123 273 138 400 500 120 104 120 195 165 400 500 120 104 120 195 165 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
vilemother2 299 vilemother1 vilemother3 1 StygianHag vilemother2 vilekind VileMother VM 1 vilechild2 0 0 NU 1 3 8 8 1 27 57 84 vilemother vilemother 12 13 12 11 16 18 21 5 5 6 30 35 40 80 90 95 70 60 50 30 30 30 10 8 7 1 1 1 1 1 1 Nest seq_vileres 1 125 100 75 -50 -40 -33 50 75 91 175 1 1 47 47 47 15 458 590 104 164 134 284 140 400 500 120 104 120 195 165 400 500 120 104 120 195 165 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
vilemother3 300 vilemother1 vilemother4 2 Grotesque vilemother3 vilekind VileMother VM 1 vilechild3 0 0 NU 2 3 8 8 1 30 57 85 vilemother vilemother 12 13 12 11 16 19 22 5 6 6 30 35 40 80 90 95 70 60 50 30 30 30 10 8 7 1 1 1 1 1 1 Nest seq_vileres 1 125 100 75 -50 -40 -33 65 95 91 185 1 1 51 51 51 15 456 588 104 179 135 285 138 400 500 120 104 120 195 165 400 500 120 104 120 195 165 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
vilechild1 301 vilechild1 vilechild2 0 FleshBeast vilechild1 vilekind VileDog VC 1 1 2 9 11 1 24 56 82 vilechild vilechild 11 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 1 125 100 75 -50 -40 -33 50 165 1 1 64 64 64 15 114 170 138 81 66 114 228 100 140 105 32 60 105 128 100 140 105 32 60 105 128 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
vilechild2 302 vilechild1 vilechild3 1 StygianDog vilechild2 vilekind VileDog VC 1 1 3 10 12 1 27 57 84 vilechild vilechild 11 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 1 125 100 75 -50 -40 -33 50 75 50 175 1 1 71 71 71 15 112 168 136 87 72 116 226 100 140 105 32 60 105 128 100 140 105 32 60 105 128 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
vilechild3 303 vilechild1 vilechild4 2 GrotesqueWyrm vilechild3 vilekind VileDog VC 1 2 3 11 13 1 30 57 85 vilechild vilechild 11 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 1 125 100 75 -50 -40 -33 65 95 50 185 1 1 77 77 77 15 110 168 136 95 72 111 226 100 140 105 32 60 105 128 100 140 105 32 60 105 128 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
fingermage1 304 fingermage1 fingermage2 0 Groper fingermage1 fingermage FingerMage homing missiles FR 1 1 2 11 17 1 24 56 82 fingermage fingermage 12 13 12 11 40 40 40 40 60 70 50 50 50 30 30 30 15 20 26 5 5 5 40 40 40 12 10 8 1 1 1 1 1 1 FingerMageSpider S1 3 125 91 58 -50 -40 -25 65 65 75 75 75 125 1 1 43 43 43 15 306 422 138 118 76 178 138 160 220 180 108 82 180 180 160 220 180 108 82 180 180 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
fingermage2 305 fingermage1 fingermage3 1 Strangler fingermage2 fingermage FingerMage homing missiles FR 1 1 3 11 17 1 27 57 84 fingermage fingermage 12 13 12 11 60 60 60 60 75 85 60 60 60 40 40 40 15 20 26 5 5 5 40 40 40 12 10 8 1 1 1 1 1 1 FingerMageSpider S1 4 125 91 58 -50 -40 -25 75 75 85 85 75 125 1 1 47 47 47 15 304 418 136 128 80 186 140 160 220 180 108 82 180 180 160 220 180 108 82 180 180 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
fingermage3 306 fingermage1 fingermage4 2 StormCaster fingermage3 fingermage FingerMage homing missiles FR 1 2 3 11 17 1 30 58 85 fingermage fingermage 12 13 12 11 80 60 60 80 85 95 70 70 70 50 50 50 15 20 26 5 5 5 40 40 40 12 10 8 1 1 1 1 1 1 FingerMageSpider S1 5 125 91 58 -50 -40 -25 85 85 100 100 75 125 1 1 51 51 51 15 304 418 136 138 80 183 138 160 220 180 108 82 180 180 160 220 180 108 82 180 180 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
regurgitator1 307 regurgitator1 regurgitator2 0 Corpulent regurgitator1 regurgitator Regurgitator eats and spits corpses CS 1 1 2 7 13 1 24 56 82 regurgitator regurgitator 12 13 12 11 70 75 75 20 20 20 40 50 50 10 20 30 3 5 5 25 27 30 regurgitatorcorpse 1 1 1 1 1 1 RegurgitatorEat S1 1 125 110 100 -50 -40 -33 75 125 1 1 43 43 43 15 422 570 138 147 123 207 138 480 640 142 112 128 218 158 480 640 142 112 128 218 158 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
regurgitator2 308 regurgitator1 regurgitator3 1 CorpseSpitter regurgitator2 regurgitator Regurgitator eats and spits corpses CS 1 1 3 8 13 1 27 57 84 regurgitator regurgitator 12 13 12 11 80 80 80 20 20 20 50 50 50 10 20 30 6 6 7 25 27 30 regurgitatorcorpse 1 1 1 1 1 1 RegurgitatorEat S1 2 125 110 100 -50 -40 -33 75 130 1 1 47 47 47 15 418 566 136 160 134 222 140 480 640 142 112 128 218 158 480 640 142 112 128 218 158 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
regurgitator3 309 regurgitator1 regurgitator4 2 MawFiend regurgitator3 regurgitator Regurgitator eats and spits corpses CS 1 2 3 9 13 1 30 57 85 regurgitator regurgitator 12 13 12 11 90 90 90 20 20 20 60 60 60 10 20 30 9 9 9 25 27 30 regurgitatorcorpse 1 1 1 1 1 1 RegurgitatorEat S1 3 125 110 100 -50 -40 -33 75 135 1 1 51 51 51 15 418 566 136 174 135 222 138 480 640 142 112 128 218 158 480 640 142 112 128 218 158 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
doomknight1 310 doomknight1 dkfig1 0 DoomKnight doomknight1 doomknight DoomKnight Fighter UM 1 2 3 7 8 1 24 56 82 doomknight doomknight 12 13 12 11 90 95 100 10 5 5 80 85 90 10 10 10 1 1 1 1 1 1 1 125 100 58 -50 -33 -25 105 45 45 65 125 45 45 65 58 135 45 45 75 1 1 43 43 43 15 262 346 170 118 104 226 138 240 300 172 80 105 225 270 240 300 172 80 105 225 270 A1 rand 60 46 93 75 60 45 90 112 60 45 90 150 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
doomknight2 311 doomknight2 0 AbyssKnight doomknight2 doomknight AbyssKnight Fighter Mage UM 1 1 1 3 8 8 1 27 57 84 doomknight doomknight 12 13 12 11 40 75 100 80 80 80 90 94 97 10 5 5 6 6 5 1 1 0 70 65 50 40 40 40 1 1 1 1 1 DoomKnightMissile S1 3 MonBoneArmor S1 5 MonBoneSpirit S1 2 125 100 58 -50 -33 -25 65 105 65 65 65 105 65 65 58 65 125 65 75 1 1 47 47 47 15 258 344 170 129 106 230 140 240 300 172 112 135 210 255 240 300 172 112 135 210 255 A1 rand 40 44 87 75 40 45 90 112 40 45 90 150 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
doomknight3 312 doomknight3 dkmag1 0 OblivionKnight doomknight3 doomknight OblivionKnight Mage UM 1 1 doomknight1 2 4 1 2 9 8 1 30 58 85 doomknight doomknight 12 13 12 11 6 7 8 25 26 27 500 350 200 50 50 50 80 85 90 30 30 30 30 30 30 9 10 11 1 1 1 1 DoomKnightMissile S1 3 MonBoneArmor S1 6 MonBoneSpirit S1 2 Decrepify S2 3 Bestow seq_undeadbestow 2 MonCurseCast S2 3 125 100 58 -50 -33 -25 85 85 85 85 85 85 105 85 58 50 85 85 205 100 1 1 51 51 51 15 260 342 170 140 104 230 138 240 300 172 168 90 202 240 240 300 172 168 90 202 240 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
quillbear1 313 quillbear1 quillbear2 0 QuillBear quillbear1 quillrat QuillMother S7 1 1 1 5 5 1 13 13 13 60 70 80 50 60 60 16 12 10 15 15 15 1 1 1 1 10 1 1 0
quillbear2 314 quillbear1 quillbear3 1 SpikeGiant quillbear2 quillrat QuillMother S7 1 1 2 5 5 1 13 13 13 70 75 85 60 70 70 14 10 9 15 15 15 1 1 1 1 1 20 1 1 0
quillbear3 315 quillbear1 quillbear4 2 ThornBrute quillbear3 quillrat QuillMother S7 1 1 3 6 6 1 13 13 13 80 80 90 70 80 80 12 8 8 15 15 15 1 1 1 1 30 1 1 0
quillbear4 316 quillbear1 quillbear5 3 RazorBeast quillbear4 quillrat QuillMother S7 1 2 3 6 6 1 13 13 13 90 90 95 80 80 85 8 7 7 15 15 15 1 1 1 1 40 1 1 0
quillbear5 317 quillbear1 4 GiantUrchin quillbear5 quillrat QuillMother S7 1 2 4 7 7 1 13 13 13 95 95 95 90 90 90 6 6 6 15 15 15 1 1 1 1 50 1 1 0
snake 318 snake 0 Dummy snake Idle CO 1 1 1 3 3 1 13 13 13 1 1 1 1 1 1 1 0
parrot 319 parrot 0 Dummy parrot Idle PR 1 1 1 6 6 1 13 13 13 1 1 1 1 1 1 1 1 0
fish 320 fish 0 Dummy fish Idle FJ 1 1 1 6 6 1 13 13 13 1 1 1 1 1 1 1 1 0
evilhole1 321 evilhole1 evilhole2 0 Dummy evilhole1 EvilHole EH fallen1 0 0 NU 1 1 1 1 1 1 34 67 smithdeath smithdeath 11 13 13 13 10 10 10 50 50 50 1 1 Nest S4 1 -50 1 1 0
evilhole2 322 evilhole1 evilhole3 1 Dummy evilhole2 EvilHole EH fallen1 0 0 NU 1 1 1 1 1 4 37 70 smithdeath smithdeath 11 13 13 13 10 10 10 50 50 50 1 1 Nest S4 1 -50 1 1 0
evilhole3 323 evilhole1 evilhole4 2 Dummy evilhole3 EvilHole EH fallen1 0 0 NU 1 1 1 1 1 7 40 73 smithdeath smithdeath 11 13 13 13 10 10 10 50 50 50 1 1 Nest S4 1 -50 1 1 0
evilhole4 324 evilhole1 evilhole5 3 Dummy evilhole4 EvilHole EH fallen1 0 0 NU 1 1 1 1 1 9 42 75 smithdeath smithdeath 11 13 13 13 10 10 10 50 50 50 1 1 Nest S4 1 -50 1 1 0
evilhole5 325 evilhole1 4 Dummy evilhole5 EvilHole EH fallen1 0 0 NU 1 1 1 1 1 22 55 83 smithdeath smithdeath 11 13 13 13 10 10 10 50 50 50 1 1 Nest S4 1 -50 1 1 0
trap-firebolt 326 trap-firebolt 0 a trap trap-firebolt Trap-Missile 9A 1 1 1 1 1 1 13 13 13 25 30 32 1 1 1 15 15 15 trapfirebolt 1 1 1 1 0
trap-horzmissile 327 trap-horzmissile 0 a trap trap-horzmissile Trap-RightArrow 9A 1 1 1 1 1 1 1 34 67 sk_archer sk_archer 13 13 13 5 5 5 15 15 15 30 23 18 200 200 200 trap spike right trap poison ball right trap cursed skull right 1 1 PoisonBallTrap S1 1 CursedBallTrapRight S1 1 1 1 76 226 4502 75 225 7500 75 225 7500 S1 pois 100 50 50 225 100 50 50 225 100 50 50 225 0
trap-vertmissile 328 trap-vertmissile 0 a trap trap-vertmissile Trap-LeftArrow 9A 1 1 1 1 1 1 1 34 67 sk_archer sk_archer 13 13 13 5 5 5 15 15 15 30 23 18 200 200 200 trap spike left trap poison ball left trap cursed skull left 1 1 PoisonBallTrap S1 1 CursedBallTrapLeft S1 1 1 1 76 226 4502 75 225 7500 75 225 7500 S1 pois 100 50 50 225 100 50 50 225 100 50 50 225 0
trap-poisoncloud 329 trap-poisoncloud 0 a trap trap-poisoncloud Trap-Poison 9A 1 1 1 1 1 1 13 13 13 20 20 20 1 1 1 15 15 15 trappoisonjavcloud 1 1 PrimePoisonNova A1 1 1 1 0
trap-lightning 330 trap-lightning 0 a trap trap-lightning Trap-Missile 9A 1 1 1 1 1 1 13 13 13 25 30 32 1 1 1 15 15 15 chainlightning 1 1 1 1 0
act2guard2 331 act2guard2 0 Kaelan act2guard2 human JarJar GU 1 1 1 7 7 0 act3hire act3hire 13 13 13 13 1 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 0
invisospawner 332 invisospawner 0 Dummy invisospawner InvisoSpawner K9 1 1 1 1 1 0 13 13 13 4 4 4 5 5 5 125 125 125 1 1 1 1 1 0
diabloclone 333 diablo 0 Diablo diablo demon Diablo DI 1 1 1 9 9 0 110 110 110 diablo diablo 16 13 11 10 1 1 1 1 1 DiabLight SC 2 DiabCold S2 2 DiabFire S1 4 DiabWall S3 2 DiabRun seq_diablorun 5 PrimeFirewall S3 8 DiabPrison S3 1 Diablogeddon S3 5 40 40 40 -10 -10 -10 50 75 100 100 100 100 75 75 100 100 100 100 75 75 120 120 120 120 1 1 82 82 82 15 12854 12854 140 3693 116 296 470 170 386 376 12854 12854 210 2770 150 285 322 165 345 300 12854 12854 210 2770 150 285 322 165 345 300 ROP ROP ROP ROP (N) ROP (N) ROP (N) ROP (H) ROP (H) ROP (H) 1 0
suckernest1 334 suckernest1 suckernest2 0 SuckerNest suckernest1 MosquitoNest DH mosquito1 -2 -2 NU 1 1 1 1 1 13 13 13 16 17 21 25 26 27 200 180 175 1 1 1 Nest seq_mosquitonest 1 1 1 414 1100 136 209 800 1100 98 280 800 1100 98 280 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
suckernest2 335 suckernest1 suckernest3 1 FeederNest suckernest2 MosquitoNest DH mosquito2 -2 -2 NU 1 1 1 1 1 13 13 13 16 18 22 25 26 27 200 180 175 1 1 1 Nest seq_mosquitonest 1 1 1 432 1100 136 209 800 1100 98 280 800 1100 98 280 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
suckernest3 336 suckernest1 suckernest4 2 BloodHookNest suckernest3 MosquitoNest DH mosquito3 -2 -2 NU 1 1 1 1 1 13 13 13 16 19 23 25 26 27 200 180 175 1 1 1 Nest seq_mosquitonest 1 1 1 428 1100 136 209 800 1100 98 280 800 1100 98 280 Act 2 H2H B Act 2 Champ B Act 2 Unique B Act 1 (N) H2H B Act 2 (N) Champ B Act 2 (N) Unique B Act 1 (H) H2H B Act 2 (H) Champ B Act 2 (H) Unique B 0
suckernest4 337 suckernest1 3 BloodWingNest suckernest4 MosquitoNest DH 1 mosquito4 -2 -2 NU 1 1 1 1 1 13 13 13 16 20 24 25 26 27 200 180 175 1 1 1 Nest seq_mosquitonest 1 1 1 428 1100 138 214 800 1100 98 280 800 1100 98 280 Act 3 H2H B Act 3 Champ B Act 3 Unique B Act 1 (N) H2H B Act 3 (N) Champ B Act 3 (N) Unique B Act 1 (H) H2H B Act 3 (H) Champ B Act 3 (H) Unique B 0
act2hire 338 act2hire 0 Guard act2hire human Hireable GU 1 1 1 8 12 0 1 34 67 act2hire act2hire 13 -1 -1 -1 1 1 1 1 1 1 1 1 Jab seq_act2guardjab 1 125 125 125 -50 -50 -50 3 1 0
minispider 339 minispider 0 Dummy minispider Idle LS 1 1 1 2 3 1 spider spider 13 13 13 1 1 1 1 1 1 0
boneprison1 340 boneprison1 0 boneprison1 construct Idle 67 1 1 1 1 1 0 12 45 78 boneprison boneprison 3 13 13 13 1 1 1 1 1 95 95 115 225 75 115 225 1 1 386 770 136 500 500 52 500 500 52 0
boneprison2 341 boneprison2 0 boneprison2 construct Idle 66 1 1 1 1 1 0 12 45 78 boneprison boneprison 3 13 13 13 1 1 1 1 1 95 95 115 225 75 115 225 1 1 386 770 136 500 500 52 500 500 52 0
boneprison3 342 boneprison3 0 boneprison3 construct Idle 69 1 1 1 1 1 0 12 45 78 boneprison boneprison 3 13 13 13 1 1 1 1 1 95 95 115 225 75 115 225 1 1 386 770 136 500 500 52 500 500 52 0
boneprison4 343 boneprison4 0 boneprison4 construct Idle 68 1 1 1 1 1 0 12 45 78 boneprison boneprison 3 13 13 13 1 1 1 1 1 95 95 115 225 75 115 225 1 1 386 770 136 500 500 52 500 500 52 0
bonewall 344 bonewall 0 Dummy bonewall construct BoneWall BW 1 1 1 1 1 0 7 40 73 bonewall bonewall 3 13 13 13 1 1 1 1 1 1 Bone Wall NU 0 95 95 115 225 75 115 225 1 1 1 38 38 62 294 294 261 862 862 501 0
councilmember1 345 councilmember1 councilmember2 0 Council Member councilmember1 councilmember1 councilmember HighPriest HP 1 1 1 7 13 1 25 56 88 councilmember councilmember 13 13 11 10 75 75 75 25 25 15 125 100 75 40 45 45 70 75 75 8 8 8 15 15 15 30 30 30 highpriestlightning 1 1 1 1 1 Hydra S1 2 ZakarumHeal S1 2 125 110 91 -50 -33 -25 75 145 58 58 58 0 1 45 45 45 15 382 762 138 159 76 178 140 400 700 165 120 75 180 210 400 700 165 120 75 180 210 Council Council Council Council (N) Council (N) Council (N) Council (H) Council (H) Council (H) 0
councilmember2 346 councilmember1 councilmember3 1 Council Member councilmember2 councilmember2 councilmember HighPriest HP 1 1 1 9 13 1 25 56 88 councilmember councilmember 13 13 11 10 60 60 60 30 30 15 125 100 75 35 40 40 75 75 75 11 11 11 13 13 13 30 30 30 highpriestlightning 1 1 1 1 1 Hydra S1 3 ZakarumHeal S1 3 125 110 91 -50 -33 -25 75 58 125 58 58 0 1 45 45 45 15 382 762 138 159 76 178 140 400 700 165 120 75 180 210 400 700 165 120 75 180 210 Council Council Council Council (N) Council (N) Council (N) Council (H) Council (H) Council (H) 0
councilmember3 347 councilmember1 2 Council Member councilmember3 councilmember3 councilmember HighPriest HP 1 1 1 11 13 1 25 56 88 councilmember councilmember 13 13 11 10 65 65 65 20 20 15 125 100 75 45 50 50 80 80 80 9 9 9 12 12 12 30 30 30 highpriestlightning 1 1 1 1 1 Hydra S1 4 ZakarumHeal S1 4 125 110 91 -50 -33 -25 75 58 125 58 58 0 1 45 45 45 15 382 762 138 159 76 178 140 400 700 165 120 75 180 210 400 700 165 120 75 180 210 Council Council Council Council (N) Council (N) Council (N) Council (H) Council (H) Council (H) 0
turret1 348 turret1 turret2 0 Turret turret1 construct DesertTurret PB 1 1 1 1 1 1 10 43 76 turret turret 11 13 13 13 10 7 3 5 6 7 120 100 80 30 30 30 5 5 5 1 1 DesertTurret seq_desertturret 1 -50 75 120 75 110 1025 75 124 75 110 1025 50 75 124 75 110 1025 0 1 582 774 68 102 800 900 52 320 800 900 52 320 0
turret2 349 turret1 turret3 1 Turret turret2 construct DesertTurret PB 1 1 1 1 1 1 10 43 76 turret turret 11 13 13 13 10 7 3 6 7 8 120 100 80 30 30 30 5 5 5 1 1 DesertTurret seq_desertturret 1 -50 75 120 75 110 1025 75 124 75 110 1025 50 75 124 75 110 1025 0 1 582 774 68 102 800 900 52 320 800 900 52 320 0
turret3 350 turret1 2 Turret turret3 construct DesertTurret PB 1 1 1 1 1 1 10 43 76 turret turret 11 13 13 13 10 7 3 7 8 9 120 100 80 30 30 30 5 5 5 1 1 DesertTurret seq_desertturret 1 -50 75 120 75 110 1025 75 124 75 110 1025 50 75 124 75 110 1025 0 1 582 774 68 102 800 900 52 320 800 900 52 320 0
hydra1 351 hydra1 0 Hydra hydra1 Hydra HX 1 1 1 1 1 0 hydra hydra 13 13 13 1 1 1 1 HydraMissile A1 1 1 1 0
hydra2 352 hydra2 0 Hydra hydra2 Hydra 21 1 1 1 1 1 0 hydra hydra 13 13 13 1 1 1 1 HydraMissile A1 1 1 1 0
hydra3 353 hydra3 0 Hydra hydra3 Hydra HZ 1 1 1 1 1 0 hydra hydra 13 13 13 1 1 1 1 HydraMissile A1 1 1 1 0
trap-melee 354 trap-melee 0 a trap trap-melee construct Trap-Melee M4 1 1 1 1 1 1 skeleton skeleton 13 13 13 70 70 70 15 15 15 1 1 1 1 15 568 758 67 112 225 270 52 112 225 270 52 112 225 270 0
seventombs 355 seventombs 0 Dummy seventombs 7TIllusion 9A 1 1 1 1 1 0 clawviper clawviper 13 13 13 chainlightning 1 1 1 0
dopplezon 356 dopplezon 0 Dopplezon dopplezon Idle VK 1 1 1 10 10 0 dopplezon dopplezon 16 13 13 13 1 1 1 1 -50 -50 -50 14 1 1 49 49 49 15 20 20 222 20 20 228 20 20 246 0
valkyrie 357 valkyrie 0 Valkyrie valkyrie NecroPet VK 1 1 1 12 12 0 valkyrie valkyrie 13 4 4 4 85 85 85 1 1 1 1 1 1 -50 -50 -50 11 1 1 49 49 49 15 800 960 222 14 36 375 27 56 375 800 960 228 20 52 450 39 80 450 800 960 246 24 62 525 46 93 525 0
act2guard3 358 act2guard3 0 Dummy act2guard3 human Idle SK 1 1 1 9 9 0 mednpc mednpc 13 13 13 13 rogue1 1 1 1 1 1 1 1 Jab seq_act2guardjab 1 125 125 125 -50 -50 -50 95 95 95 0 1 33 33 33 15 1154 1540 136 240 340 188 0
act3hire 359 act3hire 0 Iron Wolf act3hire human Hireable IW 1 1 1 8 12 0 1 34 67 act3hire act3hire 13 -1 -1 -1 1 1 1 1 1 125 125 125 -50 -50 -50 0 1 0
megademon1 360 megademon1 megademon2 0 Balrog megademon1 megademon Megademon DM 1 1 2 11 17 1 24 55 82 megademon megademon 12 13 11 9 50 65 80 40 50 55 80 85 90 70 70 70 50 50 50 75 60 45 1 1 1 1 1 MegademonInferno S1 6 125 110 91 -50 -40 -33 95 105 75 135 100 75 100 1 1 55 55 55 15 382 458 162 138 76 141 188 420 500 172 104 150 240 240 420 500 172 104 150 240 240 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
megademon2 361 megademon1 megademon3 1 PitLord megademon2 megademon Megademon DM 1 1 3 11 17 1 27 56 83 megademon megademon 12 13 11 9 55 70 85 45 55 60 80 90 95 70 70 70 60 60 60 75 60 45 1 1 1 1 1 MegademonInferno S1 7 125 110 91 -50 -40 -33 95 105 75 145 100 75 100 1 1 61 61 61 15 380 458 162 150 80 152 189 420 500 172 104 150 240 240 420 500 172 104 150 240 240 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
megademon3 362 megademon1 megademon4 2 VenomLord megademon3 megademon Megademon DM 1 2 3 11 17 1 30 57 84 megademon megademon 12 13 11 9 60 75 90 50 60 65 80 95 97 70 70 70 70 70 70 75 60 45 1 1 1 1 1 MegademonInferno S1 8 125 110 91 -50 -40 -33 95 95 105 125 75 155 100 75 100 1 1 65 65 65 15 382 456 162 162 80 142 188 420 500 172 104 150 240 240 420 500 172 104 150 240 240 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
necroskeleton 363 necroskeleton 0 NecroSkeleton necroskeleton skeleton NecroPet SK 1 1 1 14 16 1 necroskeleton necroskeleton 12 13 13 13 60 60 60 75 75 75 15 15 15 50 50 50 0 0 0 1 1 1 1 1 1 1 -50 -50 -50 3 1 1 11 11 11 15 42 42 18 2 3 8 2 3 8 60 60 8 2 3 6 2 3 6 84 84 9 2 3 9 2 3 9 0
necromage 364 necromage 0 NecroMage necromage skeleton NecroPet SK 1 1 1 13 15 1 necromage necromage 12 13 13 13 80 80 80 75 75 75 15 15 15 50 50 50 0 0 0 1 1 1 1 1 1 1 NecromageMissile A1 1 -50 -50 -50 3 1 1 11 11 11 15 122 122 46 2 3 8 2 3 8 176 176 39 2 3 6 2 3 6 246 246 42 2 3 9 2 3 9 0
griswold 365 griswold 0 Griswold griswold undead Griswold GZ 1 1 1 4 5 0 5 39 84 zombie zombie 13 13 11 8 1 1 1 1 1 125 110 91 -50 -40 -33 75 75 75 75 145 1 1 16 16 16 15 1216 1216 136 291 76 226 136 1216 1216 120 218 75 225 150 1216 1216 120 218 75 225 150 Griswold Griswold Griswold Griswold (N) Griswold (N) Griswold (N) Griswold (H) Griswold (H) Griswold (H) 0
compellingorb 366 compellingorb 0 compellingorb compellingorb construct Idle 9a 1 1 1 1 1 0 40 55 80 compellingorb compellingorb 13 13 13 1 1025 1025 1025 1 1 304 606 136 606 606 8 808 606 606 8 808 0
tyrael2 367 tyrael2 0 tyrael tyrael2 NpcStationary TY 1 1 1 1 1 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
darkwanderer 368 darkwanderer 0 youngdiablo darkwanderer DarkWanderer 1Z 1 1 1 3 3 0 darkwanderer darkwanderer 13 13 13 1 1 1 1 0
trap-nova 369 trap-nova 0 a trap trap-nova Trap-Nova 9A 1 1 1 1 1 1 13 13 13 20 20 20 1 1 1 15 15 15 firebolt nova 1 1 Trap Nova S1 1 90 115 115 115 115 115 115 115 115 115 115 115 75 115 115 115 115 115 1 1 0
spiritmummy 370 spiritmummy 0 Dummy spiritmummy mummy Idle xx 2 3 11 17 1 24 57 85 12 1 1 1 1 1 -50 -25 1 1 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
lightningspire 371 lightningspire 0 LightningSpire lightningspire construct ArcaneTower AE 1 1 1 1 1 1 1 48 79 lightningorb lightningorb 11 13 13 13 1 1 1 150 125 75 33 25 15 4 4 4 150 125 75 50 33 25 arcanelightningbolt 1 1 1 ArcaneTower seq_arcanetower 1 Lightning seq_arcanetower 6 115 115 115 95 1025 115 115 125 1025 115 115 125 1025 0 1 76 76 76 2002 4042 61 1007 1000 1200 8 755 1000 1200 8 755 0
firetower 372 firetower 0 FireTower firetower construct DesertTurret PB 1 1 1 1 1 1 1 46 77 turret turret 11 13 13 13 10 7 3 5 6 7 120 100 80 30 30 30 5 5 5 1 1 1 DesertTurret seq_desertturret 1 90 115 115 95 115 115 115 115 65 75 124 75 110 1025 0 1 76 76 76 2002 4042 61 1007 2800 3400 8 755 2800 3400 8 755 0
slinger1 373 slinger1 slinger2 0 Slinger slinger1 pantherwoman PantherJavelin PW 1 1 1 3 6 11 1 14 43 75 slinger slinger 12 13 12 11 70 70 70 70 70 70 12 12 12 10 10 10 15 15 15 20 21 25 pantherjav1 1 1 1 1 125 125 125 -50 -40 -33 35 50 145 1 1 29 29 29 15 108 174 97 71 76 182 141 110 170 142 64 75 128 218 110 170 142 64 75 128 218 A1 cold 5 30 60 15 45 90 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
slinger2 374 slinger1 slinger3 1 SpearCat slinger2 pantherwoman PantherJavelin PW 1 1 2 3 6 11 1 15 44 77 slinger slinger 12 13 12 11 70 70 70 75 75 75 11 11 11 15 15 15 14 14 14 20 22 26 pantherjav2 1 1 1 1 125 125 125 -50 -40 -33 35 50 165 1 1 31 31 31 15 108 176 97 71 76 182 141 110 170 142 64 75 128 218 110 170 142 64 75 128 218 A1 cold 5 30 60 15 45 90 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
slinger3 375 slinger1 slinger4 2 NightSlinger slinger3 pantherwoman PantherJavelin PW 1 1 2 4 6 11 1 17 46 79 slinger slinger 12 13 12 11 70 70 70 80 80 80 10 10 10 20 20 20 13 13 13 20 23 27 pantherjav3 1 1 1 1 125 125 125 -50 -40 -33 35 50 125 1 1 33 33 33 15 106 174 97 71 82 192 138 110 170 142 64 75 128 218 110 170 142 64 75 128 218 A1 ltng 5 8 120 15 8 165 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
slinger4 376 slinger1 slinger7 3 HellSlinger slinger4 pantherwoman PantherJavelin PW 1 1 3 4 6 11 1 19 48 80 slinger slinger 12 13 12 11 70 70 70 85 85 85 9 9 9 25 25 25 12 12 12 20 24 28 pantherjav4 1 1 1 1 125 125 125 -50 -40 -33 35 130 1 1 35 35 35 15 106 172 97 71 70 174 140 110 170 142 64 75 128 218 110 170 142 64 75 128 218 A1 fire 5 45 82 15 60 112 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
act2guard4 377 act2guard4 0 Dummy act2guard4 human Idle GU 1 1 1 7 7 0 act3hire act3hire 13 13 13 13 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 0
act2guard5 378 act2guard5 0 Dummy act2guard5 human Idle GU 1 1 1 7 7 0 act3hire act3hire 13 13 13 13 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 0
skmage_cold1 379 skmage_cold1 skmage_cold2 1 ReturnedMage skmage_cold1 skeleton SkeletonMage SK 1 1 1 2 5 5 2 8 39 69 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage2 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 10 55 75 75 85 58 165 100 1 1 21 21 21 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 cold 100 90 165 150 100 90 225 225 100 90 225 300 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
skmage_cold2 380 skmage_cold1 skmage_cold3 2 BoneMage skmage_cold2 skeleton SkeletonMage SK 1 1 1 3 5 5 2 10 40 70 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage2 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 20 55 75 75 85 58 175 100 1 1 23 23 23 15 110 164 136 60 110 160 135 88 110 160 135 88 A1 cold 100 90 165 150 100 90 225 225 100 90 225 300 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
skmage_cold3 381 skmage_cold1 skmage_cold4 3 BaalColdMage skmage_cold3 skeleton SkeletonMage SK 1 1 2 3 6 6 2 14 43 74 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage2 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 30 75 55 75 75 75 85 58 100 185 100 1 1 29 29 29 15 114 162 136 60 110 160 135 88 110 160 135 88 A1 cold 100 90 165 150 100 90 225 225 100 90 225 300 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
skmage_cold4 382 skmage_cold1 skmage_cold5 4 HorrorMage skmage_cold4 skeleton SkeletonMage SK 1 1 2 4 6 6 2 17 47 78 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage2 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 40 55 75 75 85 58 195 100 1 1 33 33 33 15 112 162 136 58 110 160 135 88 110 160 135 88 A1 cold 100 90 165 150 100 90 225 225 100 90 225 300 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
skmage_fire1 383 skmage_fire1 skmage_fire2 1 ReturnedMage skmage_fire1 skeleton SkeletonMage SK 1 1 1 2 5 5 2 8 39 69 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage3 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 10 55 75 75 85 58 125 100 1 1 21 21 21 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 fire 100 105 180 100 105 255 100 105 255 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
skmage_fire2 384 skmage_fire1 skmage_fire3 2 BoneMage skmage_fire2 skeleton SkeletonMage SK 1 1 1 3 5 5 2 10 40 70 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage3 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 20 55 75 75 85 58 130 100 1 1 23 23 23 15 110 164 136 60 110 160 135 88 110 160 135 88 A1 fire 100 105 180 100 105 255 100 105 255 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
skmage_fire3 385 skmage_fire1 skmage_fire4 3 BurningDeadMage skmage_fire3 skeleton SkeletonMage SK 1 1 2 3 6 6 2 14 44 75 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage3 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 30 95 75 125 85 58 135 100 1 1 29 29 29 15 114 162 136 60 110 160 135 88 110 160 135 88 A1 fire 100 105 180 100 105 255 100 105 255 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
skmage_fire4 386 skmage_fire1 skmage_fire5 4 HorrorMage skmage_fire4 skeleton SkeletonMage SK 1 1 2 4 6 6 2 17 47 78 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage3 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 10 55 75 75 85 58 140 100 1 1 33 33 33 15 112 162 136 58 110 160 135 88 110 160 135 88 A1 fire 100 105 180 100 105 255 100 105 255 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
skmage_ltng1 387 skmage_ltng1 skmage_ltng2 1 ReturnedMage skmage_ltng1 skeleton SkeletonMage SK 1 1 1 2 5 5 2 8 40 70 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage4 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 20 55 75 75 85 58 125 100 1 1 21 21 21 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 ltng 100 60 225 100 60 300 100 60 300 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
skmage_ltng2 388 skmage_ltng1 skmage_ltng3 2 BoneMage skmage_ltng2 skeleton SkeletonMage SK 1 1 1 3 5 5 2 10 41 71 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage4 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 30 55 75 75 85 58 130 100 1 1 23 23 23 15 110 164 136 60 110 160 135 88 110 160 135 88 A1 ltng 100 60 225 100 60 300 100 60 300 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
skmage_ltng3 389 skmage_ltng1 skmage_ltng4 3 BurningDeadMage skmage_ltng3 skeleton SkeletonMage SK 1 1 2 3 6 6 2 14 44 78 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage4 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 40 75 55 75 75 75 85 58 135 100 1 1 29 29 29 15 114 162 136 60 110 160 135 88 110 160 135 88 A1 ltng 100 60 225 100 60 300 100 60 300 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
skmage_ltng4 390 skmage_ltng1 skmage_ltng5 4 HorrorMage skmage_ltng4 skeleton SkeletonMage SK 1 1 2 4 6 6 2 17 48 79 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmage4 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 50 55 75 75 85 58 140 100 1 1 33 33 33 15 112 162 136 58 110 160 135 88 110 160 135 88 A1 ltng 100 60 225 100 60 300 100 60 300 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
hellbovine 391 hellbovine 0 Hell Bovine hellbovine bovine Skeleton EC 1 5 10 6 6 1 28 61 81 hellbovine hellbovine 12 13 12 11 99 99 99 5 5 5 95 99 99 33 33 33 1 1 1 1 1 125 100 91 -50 -40 -33 58 40 50 50 50 50 75 58 75 75 75 58 1 1 49 49 49 15 266 570 142 150 226 334 140 267 358 152 440 540 120 64 195 270 195 180 255 232 440 540 120 64 195 270 195 180 255 195 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
window1 392 window1 0 window1 Idle VH 1 1 1 1 1 0 1 1 1 stainedglass stainedglass 3 13 13 13 1 1 1 1 1 90 115 115 115 115 95 115 115 115 115 115 115 65 115 115 115 115 115 1 1 76 76 76 200 136 524 100 100 15 12 100 100 15 12 0
window2 393 window2 0 window2 Idle VJ 1 1 1 1 1 0 1 1 1 stainedglass stainedglass 3 13 13 13 1 1 1 1 1 90 115 115 115 115 95 115 115 115 115 115 115 65 115 115 115 115 115 1 1 76 76 76 200 136 524 100 100 15 12 100 100 15 12 0
slinger5 394 slinger5 slinger6 0 SpearCat slinger5 pantherwoman PantherJavelin PW 1 1 3 6 11 1 15 44 76 slinger slinger 12 13 12 11 70 70 70 70 70 70 12 12 12 10 10 10 15 15 15 20 21 25 pantherpotorange 1 1 1 1 1 125 125 125 -50 -40 -33 40 100 75 1 1 31 31 31 15 94 164 90 68 110 170 142 80 110 170 142 80 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
slinger6 395 slinger5 1 NightSlinger slinger6 pantherwoman PantherJavelin PW 1 2 3 6 11 1 17 46 77 slinger slinger 12 13 12 11 70 70 70 75 75 75 11 11 11 15 15 15 14 14 14 20 22 26 pantherpotgreen 1 1 1 1 1 125 125 125 -50 -40 -33 40 100 75 1 1 33 33 33 15 96 162 90 68 110 170 142 80 110 170 142 80 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
fetishblow1 396 fetishblow1 fetishblow2 0 RatMan fetishblow1 fetish FetishBlowgun FC 1 1 fetishblow1 1 1 1 1 1 1 7 7 1 9 39 72 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 10 125 75 1 1 27 27 27 15 132 222 136 70 22 50 190 90 150 165 72 30 50 165 90 150 165 72 30 50 165 A1 pois 7 15 15 38 12 38 38 75 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
fetishblow2 397 fetishblow1 fetishblow3 1 Fetish fetishblow2 fetish FetishBlowgun FC 1 1 fetishblow2 1 1 1 2 1 2 8 8 1 21 49 79 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 20 125 75 1 1 49 49 49 15 128 214 138 70 22 50 189 90 150 165 72 30 50 165 90 150 165 72 30 50 165 A1 pois 7 15 15 38 12 38 38 75 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
fetishblow3 398 fetishblow1 fetishblow4 2 Flayer fetishblow3 fetish FetishBlowgun FC 1 1 fetishblow3 1 1 2 2 2 2 9 9 1 22 50 80 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 30 165 75 1 1 51 51 51 15 132 214 138 70 22 50 188 90 150 165 72 30 50 165 90 150 165 72 30 50 165 A1 pois 7 15 15 38 12 38 38 75 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
fetishblow4 399 fetishblow1 fetishblow5 3 SoulKiller fetishblow4 fetish FetishBlowgun FC 1 1 fetishblow4 1 1 2 3 2 3 10 10 1 23 52 82 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 40 135 1 1 53 53 53 15 130 214 138 70 22 50 189 90 150 165 72 30 50 165 90 150 165 72 30 50 165 A1 pois 7 15 15 38 12 38 38 75 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
fetishblow5 400 fetishblow1 fetishblow6 4 StygianDoll fetishblow5 fetish FetishBlowgun FC 1 1 fetishblow5 1 1 3 3 3 3 11 11 1 24 53 83 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 50 125 75 1 1 55 55 55 15 130 214 138 70 22 50 188 90 150 165 72 30 50 165 90 150 165 72 30 50 165 A1 pois 7 15 15 38 12 38 38 75 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
mephistospirit 401 mephistospirit 0 Dummy mephistospirit undead Spirit M6 1 1 1 1 1 0 24 55 85 13 13 13 1 1 -50 -40 -33 90 115 115 115 115 95 115 115 115 115 115 115 65 115 115 115 115 115 1 1 15 2534 537 216 328 188 210 300 188 210 300 188 Trapped Soul Trapped Soul Trapped Soul Trapped Soul (N) Trapped Soul (N) Trapped Soul (N) Trapped Soul (H) Trapped Soul (H) Trapped Soul (H) 0
smith 402 smith 0 The Smith smith demon Smith 5P 1 1 1 8 8 0 10 42 79 smith smith 13 13 11 10 1 1 1 1 125 110 91 -50 -40 -33 -25 35 50 -25 50 75 -25 0 1 27 27 27 15 582 582 136 161 152 194 172 800 900 120 182 135 165 219 800 900 120 182 135 165 219 A1 fire 15 45 90 30 60 120 Smith Smith Smith Smith (N) Smith (N) Smith (N) Smith (H) Smith (H) Smith (H) 0
trappedsoul1 403 trappedsoul1 0 TrappedSoul trappedsoul1 TrappedSoul 10 1 1 3 1 1 1 30 57 75 trappedsoul1 trappedsoul1 6 13 13 13 1 1 1 125 125 125 95 95 125 115 175 115 1 1 15 114 152 13 1 24 56 222 24 56 222 100 140 82 24 45 90 270 45 90 270 100 140 82 24 45 90 270 45 90 270 Trapped Soul Trapped Soul Trapped Soul Trapped Soul (N) Trapped Soul (N) Trapped Soul (N) Trapped Soul (H) Trapped Soul (H) Trapped Soul (H) 1 1 1 0
trappedsoul2 404 trappedsoul2 0 TrappedSoul trappedsoul2 TrappedSoul 13 1 1 3 1 1 1 30 57 75 trappedsoul2 trappedsoul2 6 13 13 13 1 1 1 125 125 125 95 95 125 115 175 115 1 1 15 114 152 13 1 24 56 222 24 56 222 100 140 82 24 45 90 270 45 90 270 100 140 82 24 45 90 270 45 90 270 Trapped Soul Trapped Soul Trapped Soul Trapped Soul (N) Trapped Soul (N) Trapped Soul (N) Trapped Soul (H) Trapped Soul (H) Trapped Soul (H) 1 1 1 0
jamella 405 jamella 0 Jamella jamella human Npc ja 1 1 1 3 3 0 jamella jamella 13 13 13 1 1 1 1 1 1 1 1 1 0
izualghost 406 izualghost 0 Izual izualghost NpcStationary 17 1 1 1 1 1 0 izualspirit izualspirit 13 13 13 1 1 1 1 1 1 0
fetish11 407 fetish11 0 RatMan fetish11 fetish Fetish FE 1 fetish3 fetishblow3 1 1 2 7 1 1 7 7 0 10 43 76 fetish fetish 12 13 13 13 0 0 0 55 55 55 20 20 20 0 0 0 0 0 0 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 1 1 23 23 23 15 128 220 136 81 44 129 188 100 160 165 68 60 135 188 100 160 165 68 60 135 188 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
malachai 408 malachai 0 Malachai malachai human Buffy 36 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
hephasto 409 hephasto 0 The Feature Creep hephasto demon Smith 5P 1 1 1 9 9 0 25 60 88 smithdemon smithdemon 14 13 11 10 1 1 1 1 125 110 100 -50 -40 -33 -25 -25 75 100 50 50 0 1 52 52 52 15 1520 1520 170 362 226 339 168 1520 1520 150 271 210 255 165 1520 1520 150 271 210 255 165 A1 fire 25 45 90 50 60 120 Haphesto Haphesto Haphesto Haphesto (N) Haphesto (N) Haphesto (N) Haphesto (H) Haphesto (H) Haphesto (H) 0
Expansion 1 0
wakeofdestruction 410 wakeofdestruction 0 Wake of Destruction wakeofdestruction construct AssassinSentry e9 1 1 1 1 1 0 13 13 13 100 100 100 10 10 10 15 15 15 15 15 15 0 0 0 1 1 1 1 1 Wake Of Destruction Sentry S2 1 -50 -50 -50 1 1 1 200 200 160 200 200 150 200 200 150 8 15 0
chargeboltsentry 411 chargeboltsentry 0 Charged Bolt Sentry chargeboltsentry construct AssassinSentry lg 1 1 1 1 1 0 lightningsentry lightningsentry 13 13 13 100 100 100 10 10 10 15 15 15 25 25 25 0 0 0 1 1 1 1 1 2 BoltSentry seq_chargesentry 1 Shock Field S1 0 -50 -50 -50 1 1 1 200 200 160 200 200 150 200 200 150 0
lightningsentry 412 lightningsentry 0 Lightning Sentry lightningsentry construct AssassinSentry lg 1 1 1 1 1 0 lightningsentry lightningsentry 13 13 13 100 100 100 10 10 10 15 15 15 25 25 25 0 0 0 1 1 1 1 1 sentry lightning seq_chargesentry 1 -50 -50 -50 1 1 1 200 200 160 200 200 150 200 200 150 0
bladecreeper 413 bladecreeper 0 Blade Creeper bladecreeper construct BladeCreeper b8 1 1 1 11 11 0 bladecreeper bladecreeper 13 13 13 1 1 1 1 1 Blade Sentinel A1 1 1 1 1 200 200 160 200 200 150 200 200 150 0
invisopet 414 invisopet 0 Invis Pet invisopet InvisoPet k9 1 1 1 1 1 0 13 13 13 16 16 16 15 15 15 0 0 0 0 0 0 0 0 0 1 1 1 1 -50 -50 -50 1 1 1 0
infernosentry 415 infernosentry 0 Inferno Sentry infernosentry construct AssassinSentry e9 1 1 1 1 1 0 13 13 13 100 100 100 10 10 10 15 15 15 13 13 13 0 0 0 1 1 1 1 1 2 mon inferno sentry seq_infernosentry 1 Wake of Fire Sentry S1 0 -50 -50 -50 1 1 1 200 200 160 200 200 150 200 200 150 0
deathsentry 416 deathsentry 0 Death Sentry deathsentry construct DeathSentry lg 1 1 1 1 1 0 lightningsentry lightningsentry 13 13 13 30 30 30 0 0 0 50 50 50 16 16 16 0 0 0 1 1 1 1 1 mon death sentry seq_chargesentry 1 death sentry ltng seq_chargesentry 1 -50 -50 -50 1 1 1 200 200 160 200 200 150 200 200 150 0
shadowwarrior 417 shadowwarrior 0 Shadow Warrior shadowwarrior ShadowWarrior k9 1 1 1 1 1 0 shadow shadow 13 13 13 13 40 40 40 30 30 30 60 60 60 1 1 1 268 5 64 1 1 1 1 1 1 1 1 1 Fists of Fire seq_swtigerfist 1 Blade Fury seq_swbladefury 1 Blades of Ice seq_swtigerfist 1 Dragon Claw seq_swtigerfist 1 Dragon Flight seq_swdragonflight 1 Claws of Thunder seq_swtigerfist 1 Attack A2 1 -50 -50 -50 40 65 65 2 1 1 82 82 82 752 752 304 0 0 244 0 0 244 752 752 294 0 0 364 0 0 364 752 752 294 0 0 484 0 0 484 1 0
shadowmaster 418 shadowmaster 0 Shadow Master shadowmaster ShadowMaster k9 1 1 1 1 1 0 shadow shadow 13 13 13 13 20 10 10 20 36 36 60 60 60 279 1 1 1 1 1 1 1 1 1 Fists of Fire seq_swtigerfist 1 Blade Fury seq_swbladefury 1 Blades of Ice seq_swtigerfist 1 Dragon Claw seq_swtigerfist 1 Dragon Flight seq_swdragonflight 1 Claws of Thunder seq_swtigerfist 1 Attack A2 1 -50 -50 -50 40 65 65 1 1 1 82 82 82 752 752 304 0 0 244 0 0 244 752 752 294 0 0 364 0 0 364 752 752 294 0 0 484 0 0 484 1 0
druidhawk 419 druidhawk 0 Druid Hawk druidhawk druidhawk Raven hk 1 1 1 11 21 0 raven raven 13 13 13 10 10 10 6 6 6 5 5 5 75 75 75 35 35 35 1 1 1 1 1 1 1 1 Raven NU 0 -50 -50 -50 1 Raven 1 1 15 40 64 48 40 64 38 40 64 38 0
spiritwolf 420 spiritwolf fenris 0 Druid Spirit Wolf spiritwolf DruidWolf wf 1 1 1 6 11 0 wolf wolf 12 13 13 13 22 22 22 20 20 20 14 14 14 20 20 20 26 26 26 1 1 1 1 1 1 1 1 Teleport 2 S1 1 125 125 125 -50 -50 -50 3 Summon Spirit Wolf 1 1 15 120 164 110 75 120 164 100 75 120 164 100 75 0
fenris 421 spiritwolf 1 Druid Fenris fenris DruidWolf wf 1 1 1 6 11 0 wolf wolf 12 13 13 13 22 22 22 20 20 20 25 25 25 24 24 24 30 30 30 1 1 1 1 1 1 1 1 fenris rage A1 1 Teleport 2 S1 1 125 125 125 -50 -50 -50 3 Summon Fenris 1 1 15 196 260 184 225 196 260 174 225 196 260 174 225 0
spiritofbarbs 422 spiritofbarbs heartofwolverine 0 Spirit of Barbs spiritofbarbs Totem x4 1 1 1 7 7 0 druidspirit druidspirit 10 13 13 13 20 20 20 30 30 30 30 30 30 20 20 20 0 0 0 1 1 1 1 1 1 1 -50 -50 -50 50 50 50 50 95 125 50 50 50 50 125 50 50 50 50 125 2 1 1 400 452 304 400 452 294 400 452 294 0
heartofwolverine 423 spiritofbarbs oaksage 1 Heart of Wolverine heartofwolverine Totem x3 1 1 1 7 7 0 druidspirit druidspirit 10 13 13 13 20 20 20 30 30 30 30 30 30 20 20 20 0 0 0 1 1 1 1 1 1 1 -50 -50 -50 50 50 50 50 95 125 50 50 50 50 125 50 50 50 50 125 2 1 1 256 288 194 256 288 184 256 288 184 0
oaksage 424 spiritofbarbs 2 Oak Sage oaksage Totem xw 1 1 1 7 7 0 druidspirit druidspirit 10 13 13 13 20 20 20 30 30 30 30 30 30 20 20 20 0 0 0 1 1 1 1 1 1 1 -50 -50 -50 50 50 50 50 95 125 50 50 50 50 125 50 50 50 50 125 2 1 1 112 128 84 112 128 74 112 128 74 0
plaguepoppy 425 plaguepoppy 0 Druid Plague Poppy plaguepoppy Vines k9 1 1 1 8 8 0 13 13 13 100 100 100 20 20 20 25 25 25 10 10 10 35 35 35 1 1 1 1 1 1 Vine Attack S1 1 -50 -50 -50 2 1 1 84 116 48 84 116 38 84 116 38 0
cycleoflife 426 cycleoflife 0 Druid Cycle of Life cycleoflife CycleOfLife k9 1 1 1 8 8 0 13 13 13 50 50 50 20 20 20 25 25 25 10 10 10 35 35 35 1 1 1 1 1 1 CorpseCycler S1 1 -50 -50 -50 2 1 1 15 160 220 148 160 220 138 160 220 138 0
vinecreature 427 vinecreature 0 Vine Creature vinecreature CycleOfLife k9 1 1 1 8 8 0 13 13 13 50 50 50 20 20 20 25 25 25 10 10 10 35 35 35 1 1 1 1 1 1 VineCycler S1 1 -50 -50 -50 2 1 1 15 276 384 258 276 384 248 276 384 248 0
druidbear 428 druidbear 0 Druid Bear druidbear DruidBear b7 1 1 1 6 10 0 bear bear 13 13 13 13 15 15 15 40 40 40 50 50 50 0 0 0 0 0 0 1 1 1 1 1 1 1 BearSmite seq_bearsmite 1 125 125 125 -50 -50 -50 4 Summon Grizzly 1 1 15 1100 1500 378 450 1100 1500 368 450 1100 1500 368 450 0
eagle 429 eagle 0 Eagle eagle Idle eg 1 1 1 7 7 0 foulcrow foulcrow 13 13 13 1 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 1 79 79 79 15 72 116 152 6 21 140 230 368 153 6 22 207 398 638 165 8 30 274 0
wolf 430 wolf 0 Wolf wolf NecroPet 40 1 1 1 7 7 0 werewolf werewolf 16 13 13 13 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 1 19 19 19 15 32 50 66 3 9 21 3 9 21 92 148 60 3 9 30 3 9 30 158 254 64 3 10 40 3 10 40 0
bear 431 bear 0 Bear bear NecroPet TG 1 1 1 7 7 0 werebear werebear 16 13 13 13 1 1 1 1 1 125 125 125 -50 -50 -50 1 1 1 24 38 55 2 8 42 68 108 50 2 8 60 114 184 52 3 10 80 0
barricadedoor1 432 barricadedoor1 barricadedoor2 0 Barricade Door barricadedoor1 Idle AJ 1 1 1 1 1 0 26 35 67 barricadedoor barricadedoor 8 13 13 13 1 1 1 75 1025 75 1025 75 91 1025 1 190 304 142 300 400 52 300 400 52 0
barricadedoor2 433 barricadedoor1 1 Barricade Door barricadedoor2 Idle AG 1 1 1 1 1 0 26 35 67 barricadedoor barricadedoor 8 13 13 13 1 1 1 75 1025 75 1025 75 91 1025 1 190 304 142 300 400 52 300 400 52 0
prisondoor 434 prisondoor 0 Prison Door prisondoor Idle 2Q 1 1 1 1 1 0 26 35 67 8 13 13 13 1 1 1 25 50 50 50 50 1025 50 50 50 50 50 1025 50 50 50 50 91 1025 1 98 190 142 100 190 45 100 190 45 0
barricadetower 435 barricadetower 0 Barricade Tower barricadetower construct SiegeTower ac 1 1 1 1 1 0 15 35 67 guardtower guardtower 8 13 13 13 40 40 40 1 1 75 1025 75 1025 100 135 91 1025 1 770 1152 142 1400 1600 52 1400 1600 52 2 0
reanimatedhorde1 436 reanimatedhorde1 reanimatedhorde2 0 RotWalker reanimatedhorde1 zombie ReanimatedHorde re 1 2 4 2 6 2 31 61 81 reanimatedhorde reanimatedhorde 12 13 12 11 30 45 55 20 15 12 12 15 18 20 25 30 20 25 25 65 65 65 25 22 19 30 22 15 1 1 1 1 1 Self-resurrect S1 1 Charge seq_reanimatedcharge 1 125 100 91 -50 -33 -25 95 95 75 58 155 95 1 1 75 75 75 15 230 342 170 137 46 129 208 46 129 140 220 270 105 84 105 165 202 90 180 150 220 270 105 84 105 165 202 90 180 150 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
reanimatedhorde2 437 reanimatedhorde1 reanimatedhorde3 1 ReanimatedHorde reanimatedhorde2 zombie ReanimatedHorde re 1 2 4 2 6 2 33 62 82 reanimatedhorde reanimatedhorde 12 13 12 11 40 55 65 20 15 12 12 15 18 25 30 35 25 25 25 65 65 65 25 22 19 30 22 15 1 1 1 1 1 1 Self-resurrect S1 1 Charge seq_reanimatedcharge 1 125 100 91 -50 -33 -25 105 105 75 58 175 105 1 1 77 77 77 15 228 342 170 144 51 129 207 51 129 140 220 270 105 84 105 165 202 90 180 150 220 270 105 84 105 165 202 90 180 150 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 (H) H2H B Act 5 (H) Champ B Act 5 (H) Unique B 0
reanimatedhorde3 438 reanimatedhorde1 reanimatedhorde4 2 ProwlingDead reanimatedhorde3 zombie ReanimatedHorde re 1 2 4 3 6 2 35 63 83 reanimatedhorde reanimatedhorde 12 13 12 11 50 65 70 20 15 12 12 15 18 25 35 40 25 25 25 65 65 65 25 22 19 30 22 15 1 1 1 1 1 1 Self-resurrect S1 1 Charge seq_reanimatedcharge 1 125 100 91 -50 -33 -25 115 115 75 58 195 115 1 1 82 82 82 15 228 342 170 153 48 130 208 48 130 140 220 270 105 84 105 165 202 90 180 150 220 270 105 84 105 165 202 90 180 150 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
reanimatedhorde4 439 reanimatedhorde1 reanimatedhorde5 3 UnholyCorpse reanimatedhorde4 zombie ReanimatedHorde re 1 2 4 3 6 2 40 64 84 reanimatedhorde reanimatedhorde 12 13 12 11 60 70 80 20 15 12 12 15 18 30 40 40 30 30 30 65 65 65 25 22 19 30 22 15 1 1 1 1 1 1 Self-resurrect S1 1 Charge seq_reanimatedcharge 1 125 100 91 -50 -33 -25 20 75 95 45 75 125 75 75 58 75 125 1 1 82 82 82 15 228 342 170 175 50 134 207 50 134 140 220 270 105 84 105 165 202 90 180 150 220 270 105 84 105 165 202 90 180 150 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
reanimatedhorde5 440 reanimatedhorde1 reanimatedhorde6 4 DefiledWarrior reanimatedhorde5 zombie ReanimatedHorde re 1 2 4 4 6 2 42 65 85 reanimatedhorde reanimatedhorde 12 13 12 11 70 80 85 20 15 12 12 15 18 35 45 45 35 35 35 65 65 65 25 22 19 30 22 15 1 1 1 1 1 1 Self-resurrect S1 1 Charge seq_reanimatedcharge 1 125 100 91 -50 -33 -25 75 95 75 125 75 75 58 75 125 1 1 82 82 82 15 228 340 170 185 52 134 207 52 134 140 220 270 105 84 105 165 202 90 180 150 220 270 105 84 105 165 202 90 180 150 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
siegebeast1 441 siegebeast1 siegebeast2 0 Siege Beast siegebeast1 siegebeast SiegeBeast ox 1 imp1 1 3 4 1 1 4 8 1 37 59 81 siegebeast siegebeast 12 13 12 11 25 25 25 50 60 65 1 2 3 15 15 15 1 2 3 50 50 50 100 100 100 1 1 1 1 1 Siege Beast Stomp A2 1 Charge seq_siegebeastcharge 1 125 125 125 -50 -40 -33 75 135 58 75 1 1 82 82 82 15 758 758 142 306 138 183 376 720 840 135 208 210 330 255 720 840 135 208 210 330 255 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 A Act 5 (H) Champ A Act 5 (H) Unique A 0
siegebeast2 442 siegebeast1 siegebeast3 1 CrushBiest siegebeast2 siegebeast SiegeBeast ox 1 imp2 1 3 4 1 1 4 9 1 38 60 81 siegebeast siegebeast 12 13 12 11 25 25 25 50 65 70 1 2 4 15 15 15 1 2 4 50 50 50 100 100 100 1 1 1 1 1 Siege Beast Stomp A2 2 Charge seq_siegebeastcharge 2 125 125 125 -50 -40 -33 75 145 58 75 1 1 82 82 82 15 758 758 142 314 132 182 376 720 840 135 208 210 330 255 720 840 135 208 210 330 255 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 B Act 5 (H) Champ B Act 5 (H) Unique B 0
siegebeast3 443 siegebeast1 siegebeast4 2 BloodBringer siegebeast3 siegebeast SiegeBeast ox 1 imp3 1 3 4 1 1 5 10 1 38 60 81 siegebeast siegebeast 12 13 12 11 25 25 25 50 70 75 1 3 4 15 15 15 1 2 4 50 50 50 100 100 100 1 1 1 1 1 Siege Beast Stomp A2 3 Charge seq_siegebeastcharge 3 125 125 125 -50 -40 -33 75 100 58 145 1 1 82 82 82 15 758 758 142 314 132 182 376 720 840 135 208 210 330 255 720 840 135 208 210 330 255 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 B Act 5 (H) Champ B Act 5 (H) Unique B 0
siegebeast4 444 siegebeast1 siegebeast5 3 GoreBearer siegebeast4 siegebeast SiegeBeast ox 1 imp4 1 3 4 1 1 6 11 1 38 63 84 siegebeast siegebeast 12 13 12 11 25 25 25 50 75 80 1 3 5 15 15 15 1 3 4 50 50 50 100 100 100 1 1 1 1 1 Siege Beast Stomp A2 4 Charge seq_siegebeastcharge 5 125 125 125 -50 -40 -33 75 100 58 155 1 1 82 82 82 15 758 758 142 314 132 182 376 720 840 135 208 210 330 255 720 840 135 208 210 330 255 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
siegebeast5 445 siegebeast1 4 DeamonSteed siegebeast5 siegebeast SiegeBeast ox 1 imp5 1 3 4 1 1 7 12 1 38 64 85 siegebeast siegebeast 12 13 12 11 25 25 25 50 80 85 1 3 5 15 15 15 1 3 5 50 50 50 100 100 100 1 1 1 1 Siege Beast Stomp A2 5 Charge seq_siegebeastcharge 7 125 125 125 -50 -40 -33 75 100 58 165 1 1 82 82 82 15 758 758 142 314 132 182 376 720 840 135 208 210 330 255 720 840 135 208 210 330 255 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
snowyeti1 446 snowyeti1 snowyeti2 0 SnowYeti1 snowyeti1 snowyeti Brute io 1 3 4 6 9 1 40 61 82 brute brute 12 13 12 11 0 0 0 90 90 94 40 50 50 1 1 1 1 125 125 125 -20 -15 -10 45 100 50 110 65 50 175 1 1 82 82 82 15 380 454 170 211 50 134 207 68 146 140 310 420 128 88 98 172 142 112 165 128 310 420 128 88 98 172 142 112 165 128 A1 stun 100 48 72 75 100 112 150 75 100 112 150 75 A2 cold 33 33 50 82 75 33 50 82 112 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
snowyeti2 447 snowyeti1 snowyeti3 1 SnowYeti2 snowyeti2 snowyeti Brute io 1 3 4 7 7 1 41 61 83 brute brute 12 13 12 11 0 0 0 90 91 95 40 40 40 1 1 1 1 125 125 125 -20 -15 -10 55 100 50 110 65 50 195 1 1 82 82 82 15 380 456 170 218 46 128 207 64 146 140 310 420 128 88 98 172 142 112 165 128 310 420 128 88 98 172 142 112 165 128 A1 stun 100 69 92 150 100 112 150 150 100 112 150 150 A2 cold 33 33 50 82 75 33 50 82 112 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
snowyeti3 448 snowyeti1 snowyeti4 2 SnowYeti3 snowyeti3 snowyeti Brute io 1 3 4 8 8 1 42 62 84 brute brute 12 13 12 11 0 0 0 90 92 96 40 30 30 1 1 1 1 125 125 125 -15 -10 -5 100 110 65 50 215 1 1 82 82 82 15 380 454 170 223 52 134 207 64 146 140 310 420 128 88 98 172 142 112 165 128 310 420 128 88 98 172 142 112 165 128 A1 stun 100 92 114 225 100 112 150 225 100 112 150 225 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 B Act 5 (H) Champ B Act 5 (H) Unique B 0
snowyeti4 449 snowyeti1 3 SnowYeti4 snowyeti4 snowyeti Brute io 1 3 4 8 8 1 43 63 85 brute brute 12 13 12 11 0 0 0 90 93 97 40 60 60 1 1 1 1 125 125 125 -15 -10 -5 100 110 65 50 235 1 1 82 82 82 15 378 456 170 230 51 129 207 62 146 138 310 420 128 88 98 172 142 112 165 128 310 420 128 88 98 172 142 112 165 128 A1 stun 100 111 132 300 100 112 150 300 100 112 150 300 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
wolfrider1 450 wolfrider1 wolfrider2 0 WolfRider1 wolfrider1 Idle wr 3 4 2 2 2 1 1 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
wolfrider2 451 wolfrider1 wolfrider3 1 WolfRider2 wolfrider2 Idle wr 3 4 2 2 2 1 1 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
wolfrider3 452 wolfrider1 2 WolfRider3 wolfrider3 Idle wr 3 4 2 2 2 1 1 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
minion1 453 minion1 minion2 0 Minionexp minion1 minion Minion xx 1 2 4 8 11 2 31 58 79 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 50 50 1 1 1 1 1 125 110 100 -50 -40 -33 50 75 50 50 91 40 155 40 1 1 82 82 82 15 380 476 162 178 114 144 226 136 166 243 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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
minion2 454 minion1 minion3 2 Slayerexp minion2 minion Minion xx 1 2 4 8 11 2 33 59 81 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 45 45 1 1 1 1 1 125 110 100 -50 -40 -33 50 130 40 58 40 1 1 82 82 82 15 380 474 162 188 116 144 226 136 172 244 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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
minion3 455 minion1 minion4 1 IceBoar minion3 minion Minion xx 1 2 4 8 11 2 35 60 80 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 40 40 1 1 1 1 1 125 110 100 -50 -40 -33 50 58 40 165 40 1 1 82 82 82 15 378 474 162 198 117 144 226 136 171 243 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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
minion4 456 minion1 minion5 3 FireBoar minion4 minion Minion xx 1 2 4 8 11 2 36 60 81 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 35 35 1 1 1 1 1 125 110 100 -50 -40 -33 50 135 40 58 40 1 1 82 82 82 15 380 474 162 204 111 144 226 130 171 246 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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
minion5 457 minion1 minion6 4 HellSpawn minion5 minion Minion xx 1 2 4 8 11 2 37 62 81 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 60 60 1 1 1 1 1 1 125 110 100 -50 -40 -33 58 140 40 58 40 1 1 82 82 82 15 380 474 162 210 111 144 226 138 171 244 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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 B Act 5 (H) Champ B Act 5 (H) Unique B 0
minion6 458 minion1 minion7 5 IceSpawn minion6 minion Minion xx 1 2 4 8 11 2 40 64 81 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 45 45 1 1 1 1 1 125 110 100 -50 -40 -33 58 58 40 175 40 1 1 82 82 82 15 380 474 162 228 116 146 226 140 176 244 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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 B Act 5 (H) Champ B Act 5 (H) Unique B 0
minion7 459 minion1 minion8 6 GreaterHellSpawn minion7 minion Minion xx 1 3 5 8 11 2 41 65 82 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 50 50 1 1 1 1 1 1 125 110 100 -50 -40 -33 58 145 40 58 40 1 1 82 82 82 15 380 472 162 234 111 146 226 134 168 244 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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 C Act 5 (H) Champ C Act 5 (H) Unique C 0
minion8 460 minion1 minion9 7 GreaterIceSpawn minion8 minion Minion xx 1 3 5 8 11 2 42 66 82 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 55 55 1 1 1 1 1 125 110 100 -50 -40 -33 58 58 40 185 40 1 1 82 82 82 15 380 474 162 241 116 146 226 140 174 244 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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 C Act 5 (H) Champ C Act 5 (H) Unique C 0
suicideminion1 461 suicideminion1 suicideminion2 0 FanaticMinion suicideminion1 minion SuicideMinion xy 1 1 1 11 11 2 31 58 79 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 125 110 100 -50 -40 -33 50 50 50 91 40 155 40 1 1 82 82 82 15 76 114 136 190 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
suicideminion2 462 suicideminion1 suicideminion3 1 BerserkSlayer suicideminion2 minion SuicideMinion xy 1 1 1 11 11 2 33 59 79 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 125 110 100 -50 -40 -33 55 55 50 130 40 58 40 1 1 82 82 82 15 78 116 136 201 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
suicideminion3 463 suicideminion1 suicideminion4 2 ConsumedIceBoar suicideminion3 minion SuicideMinion xy 1 1 1 11 11 2 35 60 80 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 125 110 100 -50 -40 -33 60 60 50 58 40 165 40 1 1 82 82 82 15 76 114 136 211 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
suicideminion4 464 suicideminion1 suicideminion5 3 ConsumedFireBoar suicideminion4 minion SuicideMinion xy 1 1 1 11 11 2 36 61 80 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 125 110 100 -50 -40 -33 65 65 50 135 40 58 40 1 1 82 82 82 15 76 114 136 218 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
suicideminion5 465 suicideminion1 suicideminion6 4 FrenziedHellSpawn suicideminion5 minion SuicideMinion xy 1 1 1 11 11 2 37 62 81 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 1 125 110 100 -50 -40 -33 45 95 45 125 58 45 140 40 58 40 1 1 82 82 82 15 78 114 136 224 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
suicideminion6 466 suicideminion1 suicideminion7 5 FrenziedIceSpawn suicideminion6 minion SuicideMinion xy 1 1 1 11 11 2 40 64 81 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 125 110 100 -50 -40 -33 60 60 58 58 40 175 40 1 1 82 82 82 15 76 116 136 243 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
suicideminion7 467 suicideminion1 suicideminion8 6 InsaneHellSpawn suicideminion7 minion SuicideMinion xy 1 1 1 11 11 2 41 65 82 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 1 125 110 100 -50 -40 -33 65 65 58 145 40 58 40 1 1 82 82 82 15 78 116 136 250 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
suicideminion8 468 suicideminion1 7 InsaneIceSpawn suicideminion8 minion SuicideMinion xy 1 1 1 11 11 1 42 66 82 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 125 110 100 -50 -40 -33 45 95 45 125 58 45 58 40 185 40 1 1 82 82 82 15 78 114 136 257 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
succubus1 469 succubus1 succubus2 0 Succubusexp succubus1 succubus Succubus 0B 1 1 2 3 11 11 1 32 61 82 succubus succubus 12 13 12 11 90 91 93 50 25 10 50 50 50 15 20 20 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 1 Blood Mana S2 1 SuccubusBolt S2 1 125 110 100 -50 -40 -33 35 145 75 75 50 1 1 70 70 70 15 192 304 170 129 69 129 188 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 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
succubus2 470 succubus1 succubus3 1 VileTemptress succubus2 succubus Succubus 0B 1 1 2 4 12 12 1 34 61 82 succubus succubus 12 13 12 11 90 91 94 50 25 10 50 50 50 20 25 25 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 1 Blood Mana S2 1 SuccubusBolt S2 1 125 110 100 -50 -40 -33 35 91 75 75 135 1 1 73 73 73 15 190 304 170 135 69 123 188 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 Act 5 H2H B Act 5 Champ B Act 5 Unique B 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
succubus3 471 succubus1 succubus4 2 StygianHarlot succubus3 succubus Succubus 0B 1 1 3 4 13 13 1 35 62 83 succubus succubus 12 13 12 11 90 92 94 50 25 10 50 50 50 25 25 25 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 2 Blood Mana S2 2 SuccubusBolt S2 1 125 110 100 -50 -40 -33 35 91 125 75 50 1 1 76 76 76 15 190 304 170 140 69 130 189 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 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
succubus4 472 succubus1 succubus5 3 Hell Temptress succubus4 succubus Succubus 0B 1 1 3 5 14 14 1 40 63 84 succubus succubus 12 13 12 11 90 92 95 50 25 10 50 50 50 25 25 25 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 2 Blood Mana S2 2 SuccubusBolt S2 1 125 110 100 -50 -40 -33 125 91 75 75 50 1 1 82 82 82 15 192 304 170 160 68 128 188 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 Act 5 H2H C Act 5 Champ C Act 5 Unique C 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
succubus5 473 succubus1 succubus6 4 Blood Temptress succubus5 succubus Succubus 0B 1 1 4 5 15 15 1 42 64 85 succubus succubus 12 13 12 11 90 93 95 50 25 10 50 50 50 25 25 25 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 1 125 110 100 -50 -40 -33 50 91 75 75 145 1 1 82 82 82 15 190 304 170 170 70 128 188 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch1 474 succubuswitch1 succubuswitch2 0 Dominus succubuswitch1 succubus SuccubusWitch 0C 1 1 2 3 8 8 1 32 60 81 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 0 0 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 1 Blood Mana S2 1 SuccubusBolt S2 1 125 110 100 -50 -40 -33 10 35 91 91 165 50 1 1 76 76 76 15 192 304 170 130 69 129 206 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch2 475 succubuswitch1 succubuswitch3 1 VileWitch succubuswitch2 succubus SuccubusWitch 0C 1 1 2 4 9 9 1 34 61 82 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 25 35 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 1 Blood Mana S2 1 SuccubusBolt S2 1 125 110 100 -50 -40 -33 20 35 135 91 75 50 1 1 81 81 81 15 190 304 170 138 69 123 207 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch3 476 succubuswitch1 succubuswitch4 2 StygianFury succubuswitch3 succubus SuccubusWitch 0C 1 1 3 4 10 10 1 35 62 83 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 30 40 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 2 Blood Mana S2 2 SuccubusBolt S2 1 125 110 100 -50 -40 -33 30 125 50 91 75 50 1 1 82 82 82 15 190 304 170 142 69 130 208 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch4 477 succubuswitch1 succubuswitch5 3 Blood Witch succubuswitch4 succubus SuccubusWitch 0C 1 1 3 5 11 11 1 40 63 84 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 30 50 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 2 Blood Mana S2 2 SuccubusBolt S2 1 125 110 100 -50 -40 -33 40 35 145 91 75 50 1 1 82 82 82 15 192 304 170 163 68 128 207 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch5 478 succubuswitch1 succubuswitch6 4 Hell Witch succubuswitch5 succubus SuccubusWitch 0C 1 1 4 5 13 13 1 42 64 85 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 30 50 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 1 125 110 100 -50 -40 -33 50 105 125 50 50 91 185 50 1 1 82 82 82 15 190 304 170 172 70 128 207 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
overseer1 479 overseer1 overseer2 0 OverSeer overseer1 overseer Overseer os 1 minion1 1 2 4 1 2 5 5 1 33 58 80 overseer overseer 12 13 12 11 250 250 250 50 50 50 50 50 50 17 17 17 7 7 7 100 100 100 50 30 30 1 1 1 1 Cry Help S1 1 Healing Vortex S2 1 Overseer Whip A2 1 Smite seq_genericspawner 1 125 125 125 -50 -40 -33 10 65 58 45 145 2 1 71 71 71 15 760 760 136 129 93 180 189 152 308 140 300 380 135 100 90 165 202 135 240 158 300 380 135 100 90 165 202 135 240 501 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
overseer2 480 overseer1 overseer3 1 Lasher overseer2 overseer Overseer os 1 minion2 1 2 4 1 2 5 5 1 34 59 81 overseer overseer 12 13 12 11 250 250 250 55 55 55 50 50 50 17 17 17 7 7 7 100 100 100 50 40 40 1 1 1 1 Cry Help S1 1 Healing Vortex S2 1 Overseer Whip A2 1 Smite seq_genericspawner 1 125 125 125 -50 -40 -33 20 65 58 45 155 2 1 73 73 73 15 758 758 136 132 90 178 188 152 302 140 300 380 135 100 90 165 202 135 240 158 300 380 135 100 90 165 202 135 240 501 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
overseer3 481 overseer1 overseer4 2 OverLord overseer3 overseer Overseer os 1 minion3 1 2 4 1 2 6 6 1 36 61 82 overseer overseer 12 13 12 11 250 250 250 60 60 60 50 50 50 17 17 17 7 7 7 100 100 100 50 50 50 1 1 1 1 Cry Help S1 1 Healing Vortex S2 1 Overseer Whip A2 1 Smite seq_genericspawner 1 125 125 125 -50 -40 -33 30 65 58 45 165 2 1 77 77 77 15 758 758 136 140 92 177 188 152 302 141 300 380 135 100 90 165 202 135 240 158 300 380 135 100 90 165 202 135 240 501 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
overseer4 482 overseer1 overseer5 3 BloodBoss overseer4 overseer Overseer os 1 minion4 1 2 4 1 2 6 6 1 37 62 83 overseer overseer 12 13 12 11 250 250 250 65 65 65 50 50 50 17 17 17 7 7 7 100 100 100 50 45 45 1 1 1 1 Cry Help S1 1 Healing Vortex S2 1 Overseer Whip A2 1 Smite seq_genericspawner 1 125 125 125 -50 -40 -33 40 65 58 45 175 2 1 79 79 79 15 758 758 136 144 92 183 189 158 308 140 300 380 135 100 90 165 202 135 240 158 300 380 135 100 90 165 202 135 240 501 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
overseer5 483 overseer1 4 HellWhip overseer5 overseer Overseer os 1 minion5 1 2 4 2 3 7 7 1 39 60 81 overseer overseer 12 13 12 11 250 250 250 70 70 70 50 50 50 17 17 17 7 7 7 100 100 100 50 55 55 1 1 1 1 Cry Help S1 1 Healing Vortex S2 1 Overseer Whip A2 1 Smite seq_genericspawner 1 125 125 125 -50 -40 -33 50 65 58 45 185 1 1 82 82 82 15 758 758 136 151 92 176 189 152 302 140 300 380 135 100 90 165 202 135 240 158 300 380 135 100 90 165 202 135 240 501 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
minionspawner1 484 minionspawner1 minionspawner2 0 MinionSpawner minionspawner1 MinionSpawner xa 1 minion1 0 3 NU 1 1 1 1 1 14 58 79 13 13 13 13 100 100 100 25 25 25 100 100 100 20 22 25 25 25 25 1 MinionSpawner A1 1 -50 -40 -33 1 29 29 29 15 302 212 136 99 100 180 112 80 100 180 112 80 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
minionspawner2 485 minionspawner1 minionspawner3 1 MinionSlayerSpawner minionspawner2 MinionSpawner xa 1 minion2 0 3 NU 1 1 1 1 1 14 59 79 13 13 13 13 100 100 100 25 25 25 100 100 100 20 22 25 25 25 25 1 MinionSpawner A1 1 -50 -40 -33 1 29 29 29 15 134 214 136 99 100 180 112 80 100 180 112 80 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
minionspawner3 486 minionspawner1 minionspawner4 2 MinionIce/fireBoarSpawner minionspawner3 MinionSpawner xa 1 minion3 0 3 NU 1 1 1 1 1 14 60 80 13 13 13 13 100 100 100 25 25 25 100 100 100 20 22 25 25 25 25 1 MinionSpawner A1 1 -50 -40 -33 1 29 29 29 15 134 214 136 99 100 180 112 80 100 180 112 80 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
minionspawner4 487 minionspawner1 minionspawner5 3 MinionIce/fireBoarSpawner minionspawner4 MinionSpawner xa 1 minion4 0 3 NU 1 1 1 1 1 14 61 80 13 13 13 13 100 100 100 25 25 25 100 100 100 20 22 25 25 25 25 1 MinionSpawner A1 1 -50 -40 -33 1 29 29 29 15 134 214 136 99 100 180 112 80 100 180 112 80 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
minionspawner5 488 minionspawner1 minionspawner6 4 Minionice/hellSpawnSpawner minionspawner5 MinionSpawner xa 1 minion5 0 3 NU 1 1 1 1 1 14 62 81 13 13 13 13 100 100 100 25 25 25 100 100 100 20 22 25 25 25 25 1 MinionSpawner A1 1 -50 -40 -33 1 29 29 29 15 134 214 136 99 100 180 112 80 100 180 112 80 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
minionspawner6 489 minionspawner1 minionspawner7 5 MinionIce/fireBoarSpawner minionspawner6 MinionSpawner xa 1 minion6 0 3 NU 1 1 1 1 1 14 64 81 13 13 13 13 100 100 100 25 25 25 100 100 100 20 22 25 25 25 25 1 MinionSpawner A1 1 -50 -40 -33 1 29 29 29 15 134 214 136 99 100 180 112 80 100 180 112 80 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
minionspawner7 490 minionspawner1 minionspawner8 6 MinionIce/fireBoarSpawner minionspawner7 MinionSpawner xa 1 minion7 0 3 NU 1 1 1 1 1 14 65 82 13 13 13 13 100 100 100 25 25 25 100 100 100 20 22 25 25 25 25 1 MinionSpawner A1 1 -50 -40 -33 1 29 29 29 15 134 214 136 99 100 180 112 80 100 180 112 80 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
minionspawner8 491 minionspawner1 7 Minionice/hellSpawnSpawner minionspawner8 MinionSpawner xa 1 minion8 0 3 NU 1 1 1 1 1 14 66 82 13 13 13 13 100 100 100 25 25 25 100 100 100 20 22 25 25 25 25 1 MinionSpawner A1 1 -50 -40 -33 1 29 29 29 15 134 214 136 99 100 180 112 80 100 180 112 80 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
imp1 492 imp1 imp2 0 Imp1 imp1 imp Imp ip 1 1 3 4 8 8 1 31 58 80 imp imp 13 13 12 11 25 25 25 14 14 14 10 10 10 12 12 12 impmiss21 1 1 1 1 1 1 1 Imp Teleport S1 1 ImpBolt S2 1 Imp Fireball S2 1 Imp Fire Missile A1 1 Imp Inferno SC 1 125 125 125 -50 -40 -33 10 50 125 50 58 1 1 52 52 52 15 90 130 136 121 90 130 165 96 90 130 165 96 A1 fire 100 60 105 100 120 165 100 135 210 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
imp2 493 imp1 imp3 1 Imp2 imp2 imp Imp ip 1 1 3 4 8 8 1 33 60 83 imp imp 12 13 12 11 5 5 5 25 25 25 45 55 65 7 7 7 impmiss22 1 1 1 1 1 1 1 Imp Teleport S1 1 ImpBolt S2 1 Imp Fireball S2 1 Imp Fire Missile A1 1 Imp Inferno SC 2 125 125 125 -50 -40 -33 20 50 130 50 58 1 1 55 55 55 15 90 130 136 127 90 130 165 96 90 130 165 96 A1 fire 100 60 105 100 120 165 100 135 210 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
imp3 494 imp1 imp4 2 Imp3 imp3 imp Imp ip 1 1 3 4 8 8 1 34 59 81 imp imp 12 13 12 11 10 10 10 40 40 40 22 22 22 25 30 35 impmiss23 1 1 1 1 1 1 1 Imp Teleport S1 1 ImpBolt S2 1 Imp Fireball S2 2 Imp Fire Missile A1 1 Imp Inferno SC 3 125 125 125 -50 -40 -33 30 50 135 50 58 1 1 57 57 57 15 90 130 136 130 90 130 165 96 90 130 165 96 A1 fire 100 60 105 100 120 165 100 135 210 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
imp4 495 imp1 imp5 3 Imp4 imp4 imp Imp ip 1 1 3 4 8 8 1 36 62 84 imp imp 12 13 12 11 13 13 13 60 65 70 impmiss24 1 1 1 1 1 1 1 Imp Teleport S1 1 ImpBolt S2 1 Imp Fireball S2 3 Imp Fire Missile A1 1 Imp Inferno SC 4 125 125 125 -50 -40 -33 40 50 140 50 58 1 1 59 59 59 15 90 130 136 138 90 130 165 96 90 130 165 96 A1 fire 100 60 105 100 120 165 100 135 210 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
imp5 496 imp1 imp6 4 Imp5 imp5 imp Imp ip 1 1 3 4 8 8 1 38 63 85 imp imp 12 13 12 11 impmiss25 1 1 1 1 1 1 1 Imp Teleport S1 1 ImpBolt S2 1 Imp Fireball S2 3 Imp Fire Missile A1 1 Imp Inferno SC 5 125 125 125 -50 -40 -33 50 50 145 50 58 1 1 63 63 63 15 90 130 136 146 90 130 165 96 90 130 165 96 A1 fire 100 60 105 100 120 165 100 135 210 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
catapult1 497 catapult1 catapult2 0 CatapultS catapult1 Catapult 65 1 1 1 1 1 0 34 60 80 catapult catapult 9 13 13 13 20 22 25 catapultchargedball on 1 1 1025 1025 58 45 1025 1 382 758 38 138 600 700 52 160 600 700 52 160 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 1 0
catapult2 498 catapult1 catapult3 1 CatapultE catapult2 Catapult 64 1 1 1 1 1 0 34 60 80 catapult catapult 9 13 13 13 20 22 25 catapultchargedball on 1 1 1025 1025 58 45 1025 1 382 758 38 138 600 700 52 160 600 700 52 160 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 1 0
catapult3 499 catapult1 catapult4 2 CatapultSiege catapult3 Catapult 64 1 1 1 1 1 0 32 60 80 catapult catapult 9 13 13 13 20 22 25 catapultchargedball on 1 1 1025 1025 58 45 1025 1 380 758 38 131 600 700 52 160 600 700 52 160 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 1 0
catapult4 500 catapult1 3 CatapultW catapult4 Catapult ua 1 1 1 1 1 0 34 60 80 catapult catapult 9 13 13 13 20 22 25 catapultchargedball on 1 1 1025 1025 58 45 1025 1 382 758 38 138 600 700 52 160 600 700 52 160 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 1 0
frozenhorror1 501 frozenhorror1 frozenhorror2 0 Frozen Horror1 frozenhorror1 frozenhorror FrozenHorror f0 1 2 3 4 4 1 37 61 82 frozenhorror frozenhorror 12 13 12 11 60 65 70 40 45 50 60 60 60 10 10 10 1 1 1 1 Horror Arctic Blast seq_horrorarcticblast 4 125 110 100 -25 0 33 10 100 125 50 58 175 58 1 1 79 79 79 15 570 758 162 258 92 144 189 380 460 150 96 90 165 150 380 460 150 96 90 165 150 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
frozenhorror2 502 frozenhorror1 frozenhorror3 1 Frozen Horror2 frozenhorror2 frozenhorror FrozenHorror f0 1 2 3 4 4 1 38 61 83 frozenhorror frozenhorror 12 13 12 11 60 70 75 40 45 50 65 65 65 10 10 10 1 1 1 1 1 Horror Arctic Blast seq_horrorarcticblast 4 125 110 100 -15 0 33 20 100 125 50 58 185 58 1 1 81 81 81 15 568 758 162 266 88 144 188 380 460 150 96 90 165 150 380 460 150 96 90 165 150 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
frozenhorror3 503 frozenhorror1 frozenhorror4 2 Frozen Horror3 frozenhorror3 frozenhorror FrozenHorror f0 1 2 3 4 4 1 39 61 84 frozenhorror frozenhorror 12 13 12 11 60 75 80 40 45 50 70 70 70 10 10 10 1 1 1 1 1 Horror Arctic Blast seq_horrorarcticblast 5 125 110 100 0 0 33 30 100 125 50 58 195 58 1 1 82 82 82 15 568 758 162 273 92 140 189 380 460 150 96 90 165 150 380 460 150 96 90 165 150 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 B Act 5 (H) Champ C Act 5 (H) Unique C 0
frozenhorror4 504 frozenhorror1 frozenhorror5 3 Frozen Horror4 frozenhorror4 frozenhorror FrozenHorror f0 1 2 3 4 4 1 40 63 84 frozenhorror frozenhorror 12 13 12 11 60 80 85 40 45 50 75 75 75 10 10 10 1 1 1 1 1 Horror Arctic Blast seq_horrorarcticblast 5 125 110 100 0 0 33 40 100 125 50 58 205 58 1 1 82 82 82 15 570 758 162 281 92 146 188 380 460 150 96 90 165 150 380 460 150 96 90 165 150 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 B Act 5 (H) Champ C Act 5 (H) Unique C 0
frozenhorror5 505 frozenhorror1 frozenhorror22 4 Frozen Horror5 frozenhorror5 frozenhorror FrozenHorror f0 1 2 3 4 4 1 41 64 85 frozenhorror frozenhorror 12 13 12 11 60 85 90 40 45 50 80 80 80 10 10 10 1 1 1 1 1 Horror Arctic Blast seq_horrorarcticblast 6 125 110 100 0 0 33 50 100 125 50 58 215 58 1 1 82 82 82 15 568 758 162 289 87 146 189 380 460 150 96 90 165 150 380 460 150 96 90 165 150 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
bloodlord1 506 bloodlord1 bloodlord2 0 Blood Lord1 bloodlord1 bloodlord BloodLord L3 1 1 2 10 10 1 33 61 82 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 50 55 60 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 -50 -40 -30 10 91 58 135 58 58 58 1 1 82 82 82 15 568 760 199 256 100 222 284 100 222 284 480 600 195 168 120 225 270 120 225 270 480 600 195 168 120 225 270 120 225 270 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
bloodlord2 507 bloodlord1 bloodlord3 1 Blood Lord2 bloodlord2 bloodlord BloodLord L3 1 1 2 10 10 1 35 61 82 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 60 65 65 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 -40 -30 -20 20 91 58 58 125 58 58 1 1 82 82 82 15 568 760 199 270 104 226 282 104 226 282 480 600 195 168 120 180 270 120 180 270 480 600 195 168 120 180 270 120 180 270 A1 ltng 33 90 135 33 90 135 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
bloodlord3 508 bloodlord1 bloodlord4 2 Blood Lord3 bloodlord3 bloodlord BloodLord L3 1 1 2 10 10 1 36 61 82 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 70 70 70 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 -30 -20 -10 30 125 58 58 58 58 58 1 1 82 82 82 15 568 758 199 278 99 222 282 99 222 282 480 600 195 168 120 225 270 120 225 270 480 600 195 168 120 225 270 120 225 270 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
bloodlord4 509 bloodlord1 bloodlord5 3 Blood Lord4 bloodlord4 bloodlord BloodLord L3 1 1 2 10 10 1 40 63 84 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 75 75 75 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 -20 -10 -5 40 91 58 58 58 160 58 1 1 82 82 82 15 570 758 199 310 104 230 282 104 230 282 480 600 195 168 120 180 270 120 180 270 480 600 195 168 120 180 270 120 180 270 A1 cold 33 45 90 188 33 45 90 262 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
bloodlord5 510 bloodlord1 bloodlord6 4 Blood Lord5 bloodlord5 bloodlord BloodLord L3 1 1 2 10 10 1 43 65 85 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 80 80 80 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 0 0 0 50 91 58 145 58 58 58 1 1 82 82 82 15 566 758 199 337 100 224 282 100 224 282 480 600 195 168 120 180 270 120 180 270 480 600 195 168 120 180 270 120 180 270 A1 fire 33 105 120 33 105 120 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
larzuk 511 larzuk 0 Larzuk larzuk human Npc XR 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
drehya 512 drehya 0 Drehya drehya human Npc XS 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
malah 513 malah 0 Malah malah human Npc XT 1 1 1 2 2 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
nihlathak 514 nihlathak 0 Nihlathak Town nihlathak human Npc 0J 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 1 0
qual-kehk 515 qual-kehk 0 Qual-Kehk qual-kehk human Npc XV 1 1 1 4 4 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 1 0
catapultspotter1 516 catapultspotter1 catapultspotter2 0 Catapult Spotter S catapultspotter1 CatapultSpotter k9 1 1 1 1 1 0 13 13 13 8 12 16 25 25 25 25 25 25 10 10 10 10 10 10 1 1 1 Catapult Charged Ball A1 1 Catapult Spike Ball A1 1 CatapultBlizzard A1 1 CatapultPlague A1 1 CatapultMeteor A1 1 1 1 0
catapultspotter2 517 catapultspotter1 catapultspotter3 1 Catapult Spotter E catapultspotter2 CatapultSpotter k9 1 1 1 1 1 0 13 13 13 8 12 16 25 25 25 25 25 25 10 10 10 10 10 10 1 1 1 Catapult Charged Ball A1 1 Catapult Spike Ball A1 1 CatapultBlizzard A1 1 CatapultPlague A1 1 CatapultMeteor A1 1 1 1 0
catapultspotter3 518 catapultspotter1 catapultspotter4 2 Catapult Spotter Siege catapultspotter3 CatapultSpotter k9 1 1 1 1 1 0 13 13 13 8 12 16 25 25 25 25 25 25 10 10 10 10 10 10 1 1 1 Catapult Charged Ball A1 1 Catapult Spike Ball A1 1 CatapultBlizzard A1 1 CatapultPlague A1 1 CatapultMeteor A1 1 1 1 0
catapultspotter4 519 catapultspotter1 3 Catapult Spotter W catapultspotter4 CatapultSpotter k9 1 1 1 1 1 0 13 13 13 8 12 16 25 25 25 25 25 25 10 10 10 10 10 10 1 1 1 Catapult Charged Ball A1 1 Catapult Spike Ball A1 1 CatapultBlizzard A1 1 CatapultPlague A1 1 CatapultMeteor A1 1 1 1 0
cain6 520 cain6 0 DeckardCain cain6 human Npc DC 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
tyrael3 521 tyrael3 0 tyrael tyrael3 NpcStationary TY 1 1 1 1 1 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 1 0
act5barb1 522 act5barb1 0 Act 5 Combatant act5barb1 human NpcBarb 0A 1 1 1 6 15 0 24 55 73 act2hire act2hire 13 13 13 13 15 15 15 85 85 85 15 15 15 1 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 95 95 95 1 1 82 82 82 15 1142 1522 386 48 86 378 120 160 180 75 225 210 60 100 180 75 225 210 0
act5barb2 523 act5barb2 0 Act 5 Combatant act5barb2 human NpcBarb 0A 1 1 1 6 15 0 30 55 73 act2hire act2hire 13 13 13 13 15 15 15 85 85 85 15 15 15 1 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 95 95 95 1 1 82 82 82 15 452 710 328 135 183 376 120 160 180 75 225 210 60 100 180 75 225 210 0
barricadewall1 524 barricadewall1 barricadewall2 0 Barricade Wall Right barricadewall1 Idle A6 1 1 1 1 1 0 26 59 75 gargoyletrap gargoyletrap 4 13 13 13 1 1 1 75 1025 75 1025 91 45 75 75 1025 0 1 190 304 142 500 600 52 500 600 52 0
barricadewall2 525 barricadewall1 1 Barricade Wall Left barricadewall2 Idle AK 1 1 1 1 1 0 26 59 75 gargoyletrap gargoyletrap 4 13 13 13 1 1 1 75 1025 75 1025 91 45 75 75 1025 0 1 190 304 142 500 600 52 500 600 52 0
nihlathakboss 526 nihlathakboss 0 Nihlathak nihlathakboss human Nihlathak XU 1 1 1 8 8 0 65 70 92 nihlathak nihlathak 16 13 13 13 30 30 30 20 20 20 80 80 80 75 75 75 8 8 8 1 1 1 1 Imp Teleport A1 1 Overseer Whip A2 1 NihlathakCorpseExplosion A1 1 Horror Arctic Blast seq_nihlathakarctic 20 MinionSpawner A1 1 125 125 125 -50 -40 -33 95 95 95 95 50 58 58 95 95 0 1 82 82 82 15 382 382 199 295 382 382 165 222 382 382 165 222 Nihlathak Nihlathak Nihlathak Nihlathak (N) Nihlathak (N) Nihlathak (N) Nihlathak (H) Nihlathak (H) Nihlathak (H) 0
drehyaiced 527 drehyaiced 0 Drehya drehyaiced human NpcOutOfTown XS 1 1 1 3 3 0 mednpc mednpc 13 13 13 1 1 1 1 1 1 1 0
evilhut 528 evilhut 0 Evil hut evilhut GenericSpawner 2T 1 imp1 2 5 NU 1 1 40 1 1 0 30 53 81 evilhut evilhut 12 13 13 13 80 80 80 0 0 0 15 15 15 1 1 1 Nest seq_genericspawner 1 75 95 95 95 95 95 95 95 95 0 1 568 950 104 131 660 800 75 98 660 800 75 98 1 0
deathmauler1 529 deathmauler1 deathmauler2 0 Death Mauler1 deathmauler1 deathmauler DeathMauler m5 1 4 5 5 5 1 32 58 80 deathmauler deathmauler 12 13 13 13 75 75 75 65 65 65 15 15 15 50 50 50 1 1 1 1 DeathMaul seq_deathmaulerdig 1 125 110 100 -50 -40 -33 50 75 50 58 75 125 75 1 1 82 82 82 15 246 304 199 163 76 114 376 230 290 142 84 112 210 172 230 290 142 84 112 210 172 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
deathmauler2 530 deathmauler1 deathmauler3 1 Death Mauler2 deathmauler2 deathmauler DeathMauler m5 1 4 5 5 5 1 35 59 81 deathmauler deathmauler 12 13 13 13 75 75 75 65 65 65 18 18 18 60 60 60 1 1 1 1 DeathMaul seq_deathmaulerdig 2 125 110 100 -50 -40 -33 58 75 125 75 1 1 82 82 82 15 248 304 199 177 76 117 376 230 290 142 84 112 210 172 230 290 142 84 112 210 172 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
deathmauler3 531 deathmauler1 deathmauler4 2 Death Mauler3 deathmauler3 deathmauler DeathMauler m5 1 4 5 6 6 1 38 60 81 deathmauler deathmauler 12 13 13 13 75 75 75 65 65 65 19 19 19 70 70 70 1 1 1 1 DeathMaul seq_deathmaulerdig 3 125 110 100 -50 -40 -33 58 75 75 160 1 1 82 82 82 15 248 304 199 192 76 114 376 230 290 142 84 112 210 172 230 290 142 84 112 210 172 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
deathmauler4 532 deathmauler1 deathmauler5 3 Death Mauler4 deathmauler4 deathmauler DeathMauler m5 1 4 5 6 6 1 40 61 82 deathmauler deathmauler 12 13 13 13 75 75 75 65 65 65 20 20 20 80 80 80 1 1 1 1 DeathMaul seq_deathmaulerdig 4 125 110 100 -50 -40 -33 125 50 50 50 1 1 82 82 82 15 248 304 199 204 80 116 376 230 290 142 84 112 210 172 230 290 142 84 112 210 172 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
deathmauler5 533 deathmauler1 deathmauler6 4 Death Mauler5 deathmauler5 deathmauler DeathMauler m5 1 4 5 7 7 1 41 62 83 deathmauler deathmauler 12 13 13 13 75 75 75 65 65 65 21 21 21 90 90 90 1 1 1 1 DeathMaul seq_deathmaulerdig 5 125 110 100 -50 -40 -33 58 75 75 170 1 1 82 82 82 15 246 304 199 209 76 111 376 230 290 142 84 112 210 172 230 290 142 84 112 210 172 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
act5pow 534 act5pow 0 POW act5pow human Wussie 0A 1 1 1 5 8 0 40 55 73 mednpc mednpc 3 13 13 13 1 1 1 1 1 1 125 125 125 -50 -50 -50 75 75 75 75 75 75 75 75 75 75 75 75 75 75 75 2 1 15 1892 2648 136 2200 2800 142 2200 2800 142 0
act5barb3 535 act5barb3 act5barb4 0 Act 5 Townguard act5barb3 human Npc 0A 1 1 1 6 15 0 30 55 73 act2hire act2hire 13 13 13 13 1 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 95 0 1 15 0
act5barb4 536 act5barb3 1 Act 5 Townguard act5barb4 human Npc 0A 1 1 1 6 15 0 30 55 73 act2hire act2hire 13 13 13 13 1 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 0 1 15 0
ancientstatue1 537 ancientstatue1 ancientstatue2 0 Ancient Statue 1 ancientstatue1 AncientStatue 0G 1 ancientbarb1 0 2 NU 1 1 6 15 0 40 70 90 13 13 13 1 1 1 1 1 MinionSpawner A1 1 0 1 0
ancientstatue2 538 ancientstatue1 ancientstatue3 1 Ancient Statue 2 ancientstatue2 AncientStatue 0H 1 ancientbarb2 0 2 NU 1 1 6 15 0 40 70 90 13 13 13 1 1 1 1 1 MinionSpawner A1 1 0 1 0
ancientstatue3 539 ancientstatue1 2 Ancient Statue 3 ancientstatue3 AncientStatue 0I 1 ancientbarb3 0 2 NU 1 1 6 15 0 40 70 90 13 13 13 1 1 1 1 1 MinionSpawner A1 1 0 1 0
ancientbarb1 540 ancientbarb1 ancientbarb2 0 Ancient Barbarian 1 ancientbarb1 human Ancient 0D 1 1 1 11 11 0 37 68 87 ancient ancient 12 13 11 9 15 15 15 25 25 25 75 75 75 8 8 8 1 1 Whirlwind seq_ancientwhirlwind 15 125 125 125 0 0 0 70 95 95 95 95 95 65 135 75 75 75 0 1 15 1000 1200 136 14 21 376 14 21 376 1200 1600 188 6 10 375 6 10 375 1600 2000 188 6 10 375 6 10 375 0
ancientbarb2 541 ancientbarb1 ancientbarb3 1 Ancient Barbarian 2 ancientbarb2 human Ancient 0F 1 1 1 11 11 0 37 68 87 ancient ancient 12 13 11 9 15 15 15 50 50 50 25 25 25 25 25 25 7 7 7 ancient throwing axe 1 1 Shout SC 5 125 125 125 -25 -25 -15 95 95 95 95 65 75 125 95 75 0 1 15 1000 1200 136 14 21 376 1200 1600 188 6 10 375 1600 2000 188 6 10 375 0
ancientbarb3 542 ancientbarb1 2 Ancient Barbarian 3 ancientbarb3 human Ancient 0E 1 1 1 11 11 0 37 68 87 ancient ancient 12 13 11 9 15 15 15 50 50 50 75 75 75 1 1 Leap Attack seq_ancientleap 5 125 125 125 0 0 0 70 95 95 95 95 95 65 95 75 175 75 0 1 15 1000 1200 136 14 21 376 14 21 376 1200 1600 188 6 10 375 6 10 375 1600 2000 188 6 10 375 6 10 375 0
baalthrone 543 baalthrone 0 Baal Throne baalthrone demon BaalThrone 41 1 1 1 7 7 0 60 70 90 baal baal 13 13 13 25 25 25 1 Decrepify S3 5 Baal Corpse Explode S3 1 Defense Curse S3 3 Blood Mana S3 3 58 58 58 75 75 75 75 75 75 75 75 75 75 0 1 82 82 82 15 12672 12672 140 6755 114 166 188 166 268 152 12672 12672 225 5066 112 180 188 165 270 188 12672 12672 225 5066 112 180 188 165 270 188 1 0
baalcrab 544 baalcrab 0 Baal Crab baalcrab demon BaalCrab 42 1 1 1 7 7 0 49 75 99 baalcrab baalcrab 16 13 11 10 1 1 1 1 1 Baal Nova S3 1 Baal Inferno seq_baalinferno 1 Baal Tentacle S2 1 Baal Cold Missiles A1 1 Baal Teleport A1 1 Defense Curse S3 3 Blood Mana S3 3 125 75 45 -15 -15 -15 58 58 58 75 75 75 75 75 75 75 75 75 75 0 1 67 75 89 15 12672 12672 140 6890 159 268 376 204 406 564 12672 12672 225 5168 180 270 375 202 360 375 12672 12672 225 5168 225 285 375 248 360 375 A1 fire 0 100 150 225 100 180 300 A2 frze 0 100 150 240 750 100 180 240 1500 Baal Baal Baal Baalq Baal (N) Baal (N) Baal (N) Baalq (N) Baal (H) Baal (H) Baal (H) Baalq (H) 40 0 1 0
baaltaunt 545 baaltaunt 0 Baal Taunt baaltaunt demon BaalTaunt K9 1 1 1 13 13 0 0 33 66 13 13 13 3 3 3 10 10 10 20 20 20 1 1 Baal Taunt A1 1 1 1 0
putriddefiler1 546 putriddefiler1 putriddefiler2 0 Putrid Defiler1 putriddefiler1 putriddefiler PutridDefiler 45 1 1 1 7 7 1 35 61 80 putriddefiler putriddefiler 12 13 13 13 15 15 15 5 5 5 1 1 1 1 1 1 1 Impregnate S1 1 125 110 100 -50 -40 -33 10 58 58 58 75 75 75 75 75 75 75 75 125 1 1 82 82 82 15 228 378 199 159 48 136 189 160 260 98 88 45 135 165 160 260 98 88 45 135 165 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 1 0
putriddefiler2 547 putriddefiler1 putriddefiler3 1 Putrid Defiler2 putriddefiler2 putriddefiler PutridDefiler 45 1 1 1 7 7 1 37 62 81 putriddefiler putriddefiler 12 13 13 13 15 15 15 5 5 5 1 1 1 1 1 1 1 Impregnate S1 1 125 110 100 -50 -40 -33 20 58 58 58 75 75 75 75 75 75 75 75 130 1 1 82 82 82 15 228 380 199 167 46 138 189 160 260 98 88 45 135 165 160 260 98 88 45 135 165 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 1 0
putriddefiler3 548 putriddefiler1 putriddefiler4 2 Putrid Defiler3 putriddefiler3 putriddefiler PutridDefiler 45 1 1 1 7 7 1 38 63 82 putriddefiler putriddefiler 12 13 13 13 15 15 15 5 5 5 1 1 1 1 1 1 1 Impregnate S1 1 125 110 100 -50 -40 -33 30 58 58 58 75 75 75 75 75 75 75 75 135 1 1 82 82 82 15 230 380 199 173 45 132 188 160 260 98 88 45 135 165 160 260 98 88 45 135 165 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 1 0
putriddefiler4 549 putriddefiler1 putriddefiler5 3 Putrid Defiler4 putriddefiler4 putriddefiler PutridDefiler 45 1 1 1 7 7 1 39 64 83 putriddefiler putriddefiler 12 13 13 13 15 15 15 5 5 5 1 1 1 1 1 1 1 Impregnate S1 1 125 110 100 -50 -40 -33 40 58 58 58 75 75 75 75 75 75 75 75 140 1 1 82 82 82 15 228 378 199 177 44 134 189 160 260 98 88 45 135 165 160 260 98 88 45 135 165 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 1 0
putriddefiler5 550 putriddefiler1 4 Putrid Defiler5 putriddefiler5 putriddefiler PutridDefiler 45 1 1 1 7 7 1 40 65 84 putriddefiler putriddefiler 12 13 13 13 15 15 15 5 5 5 1 1 1 1 1 1 1 Impregnate S1 1 125 110 100 -50 -40 -33 50 58 58 58 75 75 75 75 75 75 75 75 145 1 1 82 82 82 15 228 380 199 182 50 140 188 160 260 98 88 45 135 165 160 260 98 88 45 135 165 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 1 0
painworm1 551 painworm1 painworm2 0 Pain Worm1 painworm1 vilekind VileDog 46 1 2 2 9 11 1 34 61 80 vilechild vilechild 12 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 125 110 100 -50 -40 -33 125 75 1 1 73 73 73 15 130 212 136 6 42 90 188 70 130 128 4 45 90 120 70 130 128 4 45 90 120 0
painworm2 552 painworm1 painworm3 1 Pain Worm2 painworm2 vilekind VileDog 46 1 2 2 9 11 1 35 62 81 vilechild vilechild 12 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 125 110 100 -50 -40 -33 125 75 1 1 76 76 76 15 128 212 136 6 48 90 189 70 130 128 4 45 90 120 70 130 128 4 45 90 120 0
painworm3 553 painworm1 painworm4 2 Pain Worm3 painworm3 vilekind VileDog 46 1 2 2 9 11 1 36 63 82 vilechild vilechild 12 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 125 110 100 -50 -40 -33 165 1 1 77 77 77 15 130 212 136 6 46 92 188 70 130 128 4 45 90 120 70 130 128 4 45 90 120 0
painworm4 554 painworm1 painworm5 3 Pain Worm4 painworm4 vilekind VileDog 46 1 2 2 9 11 1 37 64 83 vilechild vilechild 12 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 125 110 100 -50 -40 -33 75 125 1 1 79 79 79 15 130 214 136 6 46 92 189 70 130 128 4 45 90 120 70 130 128 4 45 90 120 0
painworm5 555 painworm1 4 Pain Worm5 painworm5 vilekind VileDog 46 1 2 2 9 11 1 42 65 84 vilechild vilechild 12 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 125 110 100 -50 -40 -33 175 1 1 82 82 82 15 128 212 136 6 46 93 188 70 130 128 4 45 90 120 70 130 128 4 45 90 120 0
bunny 556 bunny 0 Bunny bunny Idle 48 1 3 3 3 3 1 bunny bunny 13 13 13 1 1 1 1 1 0
baalhighpriest 557 baalhighpriest 0 Council Member baalhighpriest baalhighpriest councilmember HighPriest HP 1 1 1 11 13 0 40 68 93 councilmember councilmember 13 13 12 11 65 65 65 20 25 25 125 100 75 45 50 50 80 80 80 9 9 9 12 12 12 30 30 30 highpriestlightning 1 1 1 1 1 Hydra S1 4 ZakarumHeal S1 4 125 100 75 -50 -40 -33 1 65 65 65 15 380 758 136 240 80 182 140 440 540 150 180 105 225 202 440 540 150 180 105 225 202 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 C Act 5 (H) Champ B Act 5 (H) Unique B 0
venomlord 558 venomlord 0 VenomLord venomlord megademon Megademon DM 1 2 3 11 17 0 40 68 93 megademon megademon 12 13 12 11 60 75 90 50 60 65 80 95 97 70 70 70 70 70 70 75 60 45 infernoflame1 1 1 1 1 1 MegademonInferno S1 4 125 100 75 -50 -40 -33 95 95 105 125 120 145 1 1 82 82 82 15 380 758 162 255 86 146 188 600 700 150 191 150 270 300 600 700 150 191 150 270 300 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 C Act 5 (H) Champ B Act 5 (H) Unique B 0
baalcrabstairs 559 baalcrabstairs 0 Baal Crab to Stairs baalcrabstairs demon BaalToStairs 42 1 1 1 7 7 0 60 70 96 baal baal 13 13 13 4 4 4 1 1 1 1 -50 -40 -33 58 58 58 75 75 75 75 75 75 75 75 75 1 1 0
act5hire1 560 act5hire1 act5hire2 0 Act 5 Hireling 1hs act5hire1 human Hireable 0A 1 1 1 9 15 0 1 1 1 act2hire act2hire 13 -1 -1 -1 1 1 1 1 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 95 95 95 9 1 15 0
act5hire2 561 act5hire1 1 Act 5 Hireling 2hs act5hire2 human Hireable 0A 1 1 1 9 15 0 1 1 1 act2hire act2hire 13 -1 -1 -1 1 1 1 1 1 1 1 1 1 1 1 125 125 125 -50 -50 -50 95 95 95 9 1 15 0
baaltentacle1 562 baaltentacle1 baaltentacle2 0 Baal Tentacle baaltentacle1 demon BaalTentacle 44 1 2 2 1 1 0 34 67 87 baaltentacle baaltentacle 12 13 13 13 70 70 70 24 24 24 10 10 10 1 1 1 1 125 125 125 -50 -40 -33 10 50 50 135 1 1 73 73 73 15 130 212 136 42 130 188 100 160 98 120 180 188 100 160 98 120 180 188 0
baaltentacle2 563 baaltentacle1 baaltentacle3 1 Baal Tentacle baaltentacle2 demon BaalTentacle 44 1 2 2 1 1 0 35 67 87 baaltentacle baaltentacle 12 13 13 13 80 80 80 22 22 22 10 10 10 1 1 1 1 125 125 125 -50 -40 -33 20 50 50 140 1 1 76 76 76 15 128 212 136 48 136 189 100 160 98 120 180 188 100 160 98 120 180 188 0
baaltentacle3 564 baaltentacle1 baaltentacle4 2 Baal Tentacle baaltentacle3 demon BaalTentacle 44 1 2 2 1 1 0 36 67 87 baaltentacle baaltentacle 12 13 13 13 90 90 90 20 20 20 10 10 10 1 1 1 1 125 125 125 -50 -40 -33 30 50 50 145 1 1 77 77 77 15 130 212 136 46 130 188 100 160 98 120 180 188 100 160 98 120 180 188 0
baaltentacle4 565 baaltentacle1 baaltentacle5 3 Baal Tentacle baaltentacle4 demon BaalTentacle 44 1 2 2 1 1 0 37 67 87 baaltentacle baaltentacle 12 13 13 13 90 90 90 18 18 18 10 10 10 1 1 1 1 125 125 125 -50 -40 -33 40 50 50 150 1 1 79 79 79 15 130 214 136 46 138 189 100 160 98 120 180 188 100 160 98 120 180 188 0
baaltentacle5 566 baaltentacle1 4 Baal Tentacle baaltentacle5 demon BaalTentacle 44 1 2 2 1 1 0 42 67 87 baaltentacle baaltentacle 12 13 13 13 90 90 90 16 16 16 10 10 10 1 1 1 1 125 125 125 -50 -40 -33 50 50 50 155 1 1 82 82 82 15 128 212 136 46 140 188 100 160 98 120 180 188 100 160 98 120 180 188 0
injuredbarb1 567 injuredbarb1 0 Injured Barbarian 1 injuredbarb1 human Idle 6z 1 3 3 1 1 0 1 1 1 13 13 13 1 1 1 -50 -50 -50 1 1 0
injuredbarb2 568 injuredbarb2 0 Injured Barbarian 2 injuredbarb2 human Idle 7j 1 3 3 1 1 0 1 1 1 13 13 13 1 1 1 -50 -50 -50 1 1 0
injuredbarb3 569 injuredbarb3 0 Injured Barbarian 3 injuredbarb3 human Idle 7i 1 3 3 1 1 0 1 1 1 13 13 13 1 1 1 -50 -50 -50 1 1 0
baalclone 570 baalclone 0 Baal Crab Clone baalclone demon BaalCrabClone 42 1 1 1 7 7 0 60 69 95 baal baal 16 13 12 10 1 1 1 1 1 1 Baal Nova S3 1 Baal Inferno seq_baalinferno 1 Baal Tentacle S2 1 Baal Cold Missiles A1 1 Baal Clone Teleport A1 1 Defense Curse S3 3 Blood Mana S3 3 125 75 45 -15 -15 -15 40 40 40 58 50 50 50 50 75 50 50 50 50 0 1 67 75 89 15 3802 3802 140 159 268 376 204 406 564 5602 5602 240 165 270 375 202 360 375 5602 5602 240 165 270 375 202 360 375 1 0
baalminion1 571 baalminion1 baalminion2 0 Baals Minion baalminion1 demon BaalMinion 43 1 1 1 9 9 0 55 68 92 baalminion baalminion 12 13 12 11 90 90 90 85 85 85 50 50 50 17 17 17 1 1 1 1 1 Smite A2 1 125 100 75 -50 -40 -33 75 75 120 120 75 120 75 145 58 75 120 1 1 82 82 82 15 944 1320 140 676 45 138 376 22 248 357 860 960 202 198 120 195 315 120 210 315 860 960 202 198 120 195 315 120 210 315 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 1 0
baalminion2 572 baalminion1 baalminion3 1 Baals Minion baalminion2 demon BaalMinion 43 1 1 1 9 9 0 57 68 92 baalminion baalminion 12 13 12 11 90 90 90 85 85 85 50 50 50 17 17 17 1 1 1 1 1 Smite A2 1 125 100 75 -50 -40 -33 75 75 120 120 75 120 75 145 58 75 120 1 1 82 82 82 15 944 1322 140 729 48 138 376 22 249 357 860 960 202 198 120 195 315 120 210 315 860 960 202 198 120 195 315 120 210 315 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 1 0
baalminion3 573 baalminion1 2 Baals Minion baalminion3 demon BaalMinion 43 1 1 1 9 9 0 60 68 92 baalminion baalminion 12 13 12 11 90 90 90 85 85 85 50 50 50 17 17 17 1 1 1 1 1 Smite A2 1 125 100 75 -50 -40 -33 75 75 120 120 75 120 75 145 58 75 120 1 1 82 82 82 15 952 1332 140 814 45 135 376 26 248 357 860 960 202 198 120 195 315 120 210 315 860 960 202 198 120 195 315 120 210 315 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 1 0
worldstoneeffect 574 worldstoneeffect 0 Worldstone Effect worldstoneeffect Idle K9 1 1 1 13 13 0 13 13 13 1 1 Baal Taunt A1 1 125 125 125 1 1 0
sk_archer6 575 sk_archer1 sk_archer7 3 BurningDeadArcher sk_archer6 skeleton SkeletonBow SK 1 1 3 6 5 5 2 32 58 80 sk_archer sk_archer 12 13 12 11 80 90 95 15 14 13 50 50 50 5 5 5 12 12 12 skbowarrow6 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 75 50 125 100 58 125 58 35 115 75 50 125 1 1 29 29 29 15 140 200 160 102 4 26 172 140 200 150 76 52 75 172 140 200 150 76 52 75 172 A1 fire 100 75 120 100 75 120 100 75 120 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
sk_archer7 576 sk_archer1 sk_archer8 2 BoneArcher sk_archer7 skeleton SkeletonBow SK 1 1 3 6 5 5 2 35 60 71 sk_archer sk_archer 12 13 12 11 80 92 96 15 14 12 50 50 50 5 5 5 12 12 12 skbowarrow7 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 50 75 135 58 100 135 58 35 50 75 115 135 1 1 41 41 41 15 140 200 160 102 4 26 172 140 200 150 76 52 75 172 140 200 150 76 52 75 172 A1 cold 100 75 120 38 100 75 120 75 100 75 120 112 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
sk_archer8 577 sk_archer1 sk_archer9 3 BurningDeadArcher sk_archer8 skeleton SkeletonBow SK 1 1 3 6 6 6 2 38 61 77 sk_archer sk_archer 12 13 12 11 85 94 97 15 13 12 50 50 50 5 5 5 12 12 12 skbowarrow6 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 75 50 145 100 58 145 58 35 115 75 50 145 1 1 45 45 45 15 140 200 160 102 4 26 172 140 200 150 76 52 75 172 140 200 150 76 52 75 172 A1 fire 100 75 120 100 75 120 100 75 120 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
sk_archer9 578 sk_archer1 sk_archer10 1 ReturnedArcher sk_archer9 skeleton SkeletonBow SK 1 1 3 6 6 6 2 40 62 83 sk_archer sk_archer 12 13 12 11 85 95 98 15 13 11 50 50 50 5 5 5 12 12 12 skbowarrow7 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 50 155 58 100 155 58 35 50 75 115 155 1 1 59 59 59 15 140 200 160 102 4 26 172 140 200 150 76 52 75 172 140 200 150 76 52 75 172 A1 cold 100 75 120 38 100 75 120 75 100 75 120 112 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
sk_archer10 579 sk_archer1 4 HorrorArcher sk_archer10 skeleton SkeletonBow SK 1 1 3 6 6 6 2 41 63 85 sk_archer sk_archer 12 13 12 11 90 95 99 15 12 11 50 50 50 5 5 5 12 12 12 skbowarrow8 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 58 58 58 165 75 75 75 165 58 35 91 91 91 165 1 1 79 79 79 15 140 200 160 102 15 38 172 140 200 150 76 52 75 172 140 200 150 76 52 75 172 A1 rand 100 75 120 112 100 75 120 150 100 75 120 188 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
bighead6 580 bighead1 bighead7 4 Afflicted bighead6 bighead Bighead BH 1 1 2 3 10 10 1 32 58 70 bighead bighead 12 13 12 11 88 75 75 40 30 30 85 85 85 60 70 80 bighead6 1 1 1 1 1 125 110 100 -50 -40 -33 58 105 75 58 125 100 50 75 125 115 40 1 1 29 29 29 15 160 260 130 106 75 150 150 160 240 135 100 75 150 165 160 240 135 100 75 150 165 A2 ltng 100 240 300 100 240 300 100 240 300 A1 ltng 15 45 90 35 45 90 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
bighead7 581 bighead1 bighead8 1 Tainted bighead7 bighead Bighead BH 1 1 2 3 10 10 1 34 60 71 bighead bighead 12 13 12 11 86 100 100 40 40 40 85 85 85 60 70 80 bighead6 1 1 1 1 1 125 110 100 -50 -40 -33 75 105 58 100 125 58 50 115 125 75 40 1 1 29 29 29 15 160 260 130 106 75 150 150 160 240 135 100 75 150 165 160 240 135 100 75 150 165 A2 ltng 100 240 300 100 240 300 100 240 300 A1 ltng 15 45 90 35 45 90 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
bighead8 582 bighead1 bighead9 2 Misshapen bighead8 bighead Bighead BH 1 1 2 3 11 11 1 37 61 77 bighead bighead 12 13 12 11 80 50 50 40 50 50 85 85 85 60 70 80 bighead6 1 1 1 1 1 125 110 100 -50 -40 -33 75 105 75 75 125 75 50 100 125 100 40 1 1 29 29 29 15 160 260 130 106 75 150 150 160 240 135 100 75 150 165 160 240 135 100 75 150 165 A2 ltng 100 240 300 100 240 300 100 240 300 A1 ltng 15 45 90 35 45 90 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
bighead9 583 bighead1 bighead10 3 Disfigured bighead9 bighead Bighead BH 1 1 2 3 12 12 1 39 62 83 bighead bighead 12 13 12 11 83 0 0 40 40 40 85 85 85 60 70 80 bighead6 1 1 1 1 1 125 110 100 -50 -40 -33 100 105 75 100 125 75 50 115 125 75 40 1 1 29 29 29 15 160 260 130 106 75 150 150 160 240 135 100 75 150 165 160 240 135 100 75 150 165 A2 ltng 100 240 300 100 240 300 100 240 300 A1 ltng 15 45 90 35 45 90 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
bighead10 584 bighead1 0 Damned bighead10 bighead Bighead BH 1 1 2 3 13 13 1 41 63 85 bighead bighead 12 13 12 11 90 33 33 40 30 30 85 85 85 60 70 80 bighead6 1 1 1 1 1 125 110 100 -50 -40 -33 75 105 100 58 75 125 100 58 50 110 125 110 75 1 1 29 29 29 15 160 260 130 106 75 150 150 160 240 135 100 75 150 165 160 240 135 100 75 150 165 A2 ltng 100 240 300 100 240 300 100 240 300 A1 ltng 15 45 90 35 45 90 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
goatman6 585 goatman1 goatman7 0 MoonClan goatman6 goatman Goatman GM 1 2 4 11 11 1 32 59 81 goatman goatman 12 13 12 11 75 85 90 10 7 7 80 90 99 1 1 1 1 1 1 1 125 115 105 -50 -40 -33 55 75 125 50 65 75 75 125 50 50 1 1 37 37 37 15 230 280 145 106 120 210 120 230 280 135 80 120 210 128 230 280 135 80 120 210 128 A1 mana 100 15 30 100 15 30 100 15 30 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
goatman7 586 goatman1 goatman8 1 NightClan goatman7 goatman Goatman GM 1 2 4 11 11 1 35 61 83 goatman goatman 12 13 12 11 75 85 90 10 7 7 80 90 99 1 1 1 1 1 1 1 125 115 105 -50 -40 -33 55 75 125 50 65 75 50 75 160 50 1 1 37 37 37 15 230 280 145 106 120 210 120 230 280 135 80 120 210 128 230 280 135 80 120 210 128 A1 cold 50 38 75 112 50 38 75 225 50 38 75 338 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
goatman8 587 goatman1 goatman9 2 HellClan goatman8 goatman Goatman GM 1 2 4 11 11 1 38 61 84 goatman goatman 12 13 12 11 80 90 95 10 7 7 80 90 99 1 1 1 1 1 1 1 125 115 105 -50 -40 -33 55 75 125 50 65 75 50 75 180 50 1 1 37 37 37 15 230 280 145 106 120 210 120 230 280 135 80 120 210 128 230 280 135 80 120 210 128 A1 cold 60 38 75 112 60 38 75 225 60 38 75 338 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
goatman9 588 goatman1 goatman10 3 BloodClan goatman9 goatman Goatman GM 1 2 4 12 12 1 40 62 81 goatman goatman 12 13 12 11 80 90 95 10 7 7 80 90 99 1 1 1 1 1 1 1 125 115 105 -50 -40 -33 55 85 75 125 50 65 75 135 50 75 50 1 1 37 37 37 15 230 280 145 106 120 210 120 230 280 135 80 120 210 128 230 280 135 80 120 210 128 A1 fire 50 22 50 50 22 50 50 22 50 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
goatman10 589 goatman1 4 DeathClan goatman10 goatman Goatman GM 1 2 4 13 13 1 41 63 84 goatman goatman 12 13 12 11 80 90 95 10 7 7 80 90 99 1 1 1 1 1 1 1 125 115 105 -50 -40 -33 55 55 75 125 75 65 75 58 58 190 75 1 1 37 37 37 15 230 280 145 106 120 210 120 230 280 135 80 120 210 128 230 280 135 80 120 210 128 A1 cold 50 22 50 38 50 22 50 75 50 22 50 112 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
foulcrow5 590 foulcrow1 foulcrow6 0 FoulCrow foulcrow5 foulcrow BloodHawk BK 1 3 4 10 10 1 32 58 80 foulcrow foulcrow 12 13 13 13 65 65 65 90 90 90 5 10 10 75 75 75 100 100 100 1 1 1 1 1 125 125 125 -50 -40 -33 85 65 105 75 58 50 145 1 1 22 22 22 15 80 110 198 80 135 210 150 80 110 188 60 135 210 150 80 110 188 60 135 210 150 A1 pois 15 15 50 112 15 15 50 225 15 22 50 450 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
foulcrow6 591 foulcrow1 foulcrow7 1 BloodHawk foulcrow6 foulcrow BloodHawk BK 1 3 4 10 10 1 35 60 71 foulcrow foulcrow 12 13 13 13 65 65 65 90 90 90 5 10 10 75 75 75 100 100 100 1 1 1 1 1 125 125 125 -50 -40 -33 85 65 105 75 125 50 40 1 1 22 22 22 15 80 110 198 80 135 210 150 80 110 188 60 135 210 150 80 110 188 60 135 210 150 A1 life 100 15 30 100 15 30 100 15 30 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
foulcrow7 592 foulcrow1 foulcrow8 2 BlackRaptor foulcrow7 foulcrow BloodHawk BK 1 3 4 11 11 1 38 61 77 foulcrow foulcrow 12 13 13 13 65 65 65 90 90 90 5 10 10 75 75 75 100 100 100 1 1 1 1 1 125 125 125 -50 -40 -33 85 65 125 75 58 50 40 135 1 1 22 22 22 15 80 110 198 80 135 210 150 80 110 188 60 135 210 150 80 110 188 60 135 210 150 A1 mana 100 15 50 100 15 50 100 15 50 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
foulcrow8 593 foulcrow1 3 CloudStalker foulcrow8 foulcrow BloodHawk BK 1 3 4 13 13 1 40 62 82 foulcrow foulcrow 12 13 13 13 65 65 65 90 90 90 5 10 10 75 75 75 100 100 100 1 1 1 1 1 125 125 125 -50 -40 -33 30 45 85 65 75 125 85 75 125 40 1 1 22 22 22 15 80 110 198 80 135 210 150 80 110 188 60 135 210 150 80 110 188 60 135 210 150 A1 ltng 50 30 75 50 30 75 50 30 75 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
clawviper6 594 clawviper1 clawviper7 4 ClawViper clawviper6 clawviper ClawViperEx SD 1 1 2 3 7 11 1 32 61 82 clawviper clawviper 12 13 12 11 60 65 65 10 13 15 90 90 90 85 90 90 5 5 5 1 1 1 18 18 18 50 50 50 viper_bonespear 1 1 1 1 1 1 Charge seq_serpentcharge 5 125 100 75 -50 -45 -40 75 75 75 100 100 100 50 50 50 115 115 115 1 1 37 37 37 15 140 190 182 106 45 90 180 98 135 225 100 130 150 140 190 172 80 45 90 180 98 135 225 100 130 150 140 190 172 80 45 90 180 98 135 225 100 130 150 A1 mag 100 75 150 100 75 150 100 75 150 A2 pois 50 33 33 75 50 50 50 150 50 50 50 188 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
clawviper7 595 clawviper1 clawviper8 4 PitViper clawviper7 clawviper ClawViperEx SD 1 1 2 3 7 11 1 35 61 83 clawviper clawviper 12 13 12 11 60 65 65 10 13 15 90 90 90 85 90 90 5 5 5 1 1 1 18 18 18 50 50 50 viper_bonespear 1 1 1 1 1 1 Charge seq_serpentcharge 5 125 100 75 -50 -45 -40 25 75 75 75 75 95 95 50 170 135 1 1 37 37 37 15 140 190 182 106 98 135 225 100 130 150 140 190 172 80 98 135 225 100 130 150 140 190 172 80 98 135 225 100 130 150 A1 mag 100 75 150 100 75 150 100 75 150 A2 pois 50 33 33 75 50 50 50 150 50 50 50 188 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
clawviper8 596 clawviper1 clawviper9 0 Salamander clawviper8 clawviper ClawViperEx SD 1 1 2 3 9 13 1 38 61 77 clawviper clawviper 12 13 12 11 60 65 65 10 13 15 90 90 90 80 80 80 5 5 5 0 0 0 18 18 18 50 50 50 viper_fire 1 1 1 1 1 1 Charge seq_serpentcharge 5 125 100 75 -50 -45 -40 100 85 125 100 50 140 50 75 1 1 37 37 37 15 140 190 182 106 98 135 225 100 130 150 140 190 172 80 68 90 98 135 225 100 130 150 140 190 172 80 68 90 98 135 225 100 130 150 A1 fire 100 150 225 100 150 225 100 150 225 A2 fire 50 30 50 50 45 75 50 45 75 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
clawviper9 597 clawviper1 clawviper10 1 TombViper clawviper9 clawviper ClawViperEx SD 1 1 2 3 9 13 1 40 62 81 clawviper clawviper 12 13 12 11 60 65 65 10 13 15 90 90 90 80 80 80 5 5 5 1 1 1 20 24 28 50 50 50 viper_poisjav 1 1 1 1 1 1 Charge seq_serpentcharge 5 125 100 75 -50 -45 -40 85 100 105 125 50 58 125 135 1 1 37 37 37 15 140 190 182 106 15 38 98 135 225 100 130 150 140 190 172 80 68 90 98 135 225 100 130 150 140 190 172 80 68 90 98 135 225 100 130 150 A1 pois 100 38 38 38 100 38 38 50 100 38 38 75 A2 pois 50 33 33 75 50 50 50 150 50 50 50 188 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
clawviper10 598 clawviper1 1 SerpentMagus clawviper10 clawviper ClawViperEx SD 1 1 2 3 10 15 1 41 63 85 clawviper clawviper 12 13 12 11 60 65 65 10 13 15 90 90 90 80 80 80 5 5 5 2 2 2 18 18 18 50 50 50 viper_bonespear 1 1 1 1 1 1 Charge seq_serpentcharge 5 125 100 75 -50 -45 -40 65 45 45 45 45 85 50 95 58 50 140 1 1 37 37 37 15 140 190 182 106 112 165 225 100 130 150 140 190 172 80 112 165 225 100 130 150 140 190 172 80 112 165 225 100 130 150 A1 mag 100 75 150 100 75 150 100 75 150 A2 mag 100 50 100 100 75 150 100 75 150 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
sandraider6 599 sandraider1 sandraider7 0 Marauder sandraider6 sandraider SandRaider SR 1 2 3 16 16 1 33 59 66 sandraider sandraider 12 13 7 5 40 40 40 10 10 10 95 95 95 80 80 80 5 5 5 50 50 50 1 1 1 1 1 1 Fire Hit seq_sandraiderflurry 6 125 100 91 -50 -45 -40 105 75 125 95 60 145 110 65 1 1 59 59 59 15 240 300 160 128 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 S1 fire 100 150 195 100 150 195 100 150 195 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
sandraider7 600 sandraider1 sandraider8 1 Infidel sandraider7 sandraider SandRaider SR 1 2 3 16 16 1 36 60 72 sandraider sandraider 12 13 7 5 45 40 40 10 10 10 95 95 95 80 80 80 5 5 5 1 1 1 50 50 50 1 1 1 1 1 1 Fire Hit seq_sandraiderflurry 7 125 100 91 -50 -45 -40 60 75 75 175 50 1 1 59 59 59 15 240 300 160 128 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 S1 cold 100 150 195 375 100 150 195 375 100 150 195 375 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
sandraider8 601 sandraider1 sandraider9 4 SandRaider sandraider8 sandraider SandRaider SR 1 2 3 16 16 1 39 61 78 sandraider sandraider 12 13 7 5 50 40 35 10 10 10 95 95 95 80 80 80 5 5 5 50 50 50 1 1 1 1 1 1 Fire Hit seq_sandraiderflurry 8 125 100 91 -50 -45 -40 60 150 75 75 50 1 1 59 59 59 15 240 300 160 128 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 S1 fire 100 150 195 100 150 195 100 150 195 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
sandraider9 602 sandraider1 sandraider10 3 Invader sandraider9 sandraider SandRaider SR 1 2 3 16 16 1 40 62 82 sandraider sandraider 12 13 7 5 55 40 35 10 10 10 95 95 95 80 80 80 5 5 5 1 1 1 50 50 50 1 1 1 1 1 1 Fire Hit seq_sandraiderflurry 9 125 100 91 -50 -45 -40 60 75 75 185 50 1 1 59 59 59 15 240 300 160 128 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 S1 cold 100 150 195 375 100 150 195 375 100 150 195 375 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
sandraider10 603 sandraider1 2 Assailant sandraider10 sandraider SandRaider SR 1 2 3 16 16 1 41 63 84 sandraider sandraider 12 13 7 5 60 40 35 10 10 10 95 95 95 80 80 80 5 5 5 50 50 50 1 1 1 1 1 1 Fire Hit seq_sandraiderflurry 10 125 100 91 -50 -45 -40 60 155 75 75 50 1 1 59 59 59 15 240 300 160 128 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 240 300 150 96 120 165 225 165 210 270 80 100 250 S1 fire 100 150 195 100 150 195 100 150 195 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
deathmauler6 604 deathmauler1 0 Death Mauler1 deathmauler1 deathmauler DeathMauler m5 1 4 5 5 5 1 32 49 74 deathmauler deathmauler 12 13 13 13 75 75 75 65 65 65 21 21 21 90 90 90 1 1 1 1 DeathMaul seq_deathmaulerdig 1 125 110 100 -50 -40 -33 50 40 125 40 40 1 1 82 82 82 15 246 304 199 163 76 114 376 230 290 142 84 112 210 172 230 290 142 84 112 210 172 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
quillrat6 605 quillrat1 quillrat7 0 QuillRat quillrat1 quillrat6 quillrat QuillRat SI 1 1 3 4 7 7 1 32 58 80 quillrat quillrat 12 13 10 7 15 20 26 60 85 95 3 3 3 spike6 1 1 1 125 125 125 -50 -40 -33 65 58 125 75 50 58 1 1 11 11 11 15 180 240 136 76 76 152 152 45 75 150 180 240 120 56 45 112 98 45 75 150 180 240 120 56 45 112 98 45 75 150 A2 pois 15 45 45 38 15 45 45 50 15 45 45 99 Quill 1 Act 1 Champ A Act 1 Unique A Quill 1 (N) Act 5 (N) Champ A Act 5 (N) Unique A Quill 1 (H) Act 5 (H) Champ A Act 5 (H) Unique A 0
quillrat7 606 quillrat1 quillrat8 1 SpikeFiend quillrat1 quillrat7 quillrat QuillRat SI 1 1 3 4 7 7 1 32 58 80 quillrat quillrat 12 13 10 7 15 20 26 60 85 95 3 3 3 spike6 1 1 1 125 125 125 -50 -40 -33 75 58 50 75 125 58 1 1 11 11 11 15 180 240 136 76 76 152 152 45 75 150 180 240 120 56 45 112 98 45 75 150 180 240 120 56 45 112 98 45 75 150 A2 pois 15 45 45 38 15 45 45 50 15 45 45 99 Quill 1 Act 1 Champ A Act 1 Unique A Quill 1 (N) Act 5 (N) Champ A Act 5 (N) Unique A Quill 1 (H) Act 5 (H) Champ A Act 5 (H) Unique A 0
quillrat8 607 quillrat1 4 RazorSpine quillrat1 quillrat8 quillrat QuillRat SI 1 1 3 4 7 7 1 32 58 80 quillrat quillrat 12 13 10 7 15 20 26 60 85 95 3 3 3 spike6 1 1 1 125 125 125 -50 -40 -33 75 58 50 125 100 58 1 1 11 11 11 15 180 240 136 76 76 152 152 45 75 150 180 240 120 56 45 112 98 45 75 150 180 240 120 56 45 112 98 45 75 150 A2 pois 15 45 45 38 15 45 45 50 15 45 45 99 Quill 1 Act 1 Champ A Act 1 Unique A Quill 1 (N) Act 5 (N) Champ A Act 5 (N) Unique A Quill 1 (H) Act 5 (H) Champ A Act 5 (H) Unique A 0
vulture5 608 vulture1 0 CarrionBird vulture1 vulture Vulture VD 1 1 3 5 5 1 14 58 80 vulture vulture 12 13 11 9 90 90 95 8 8 8 75 65 50 30 30 30 70 70 70 1 1 1 125 125 125 -50 -40 -33 105 35 58 125 1 1 29 29 29 15 134 214 136 89 136 182 141 120 180 128 64 120 165 128 120 180 128 64 120 165 128 A1 pois 25 50 50 75 25 50 50 112 25 50 50 150 Swarm 1 Act 2 Champ A Act 2 Unique A Swarm 1 (N) Act 5 (N) Champ A Act 5 (N) Unique A Swarm 1 (H) Act 5 (H) Champ A Act 5 (H) Unique A 1 1 0
thornhulk5 609 thornhulk1 0 ThornedHulk thornhulk1 thornhulk ThornHulk TH 1 1 2 7 7 1 27 58 80 thornhulk thornhulk 12 13 11 10 100 100 100 15 15 15 10 10 10 55 55 55 5 3 1 5 5 5 1 1 1 1 1 MonFrenzy A2 5 125 110 100 -50 -40 -33 91 125 65 91 3 1 47 47 47 15 304 494 136 142 134 222 140 116 222 140 380 500 210 104 135 240 210 112 225 270 380 500 210 104 135 240 210 112 225 270 A2 stun 100 10 100 10 100 10 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
slinger7 610 slinger1 slinger8 0 Slinger slinger1 pantherwoman PantherJavelin PW 1 1 3 4 13 17 1 19 58 80 slinger slinger 12 13 11 10 90 90 90 85 85 85 9 9 9 25 25 25 12 12 12 20 24 28 pantherjav5 1 1 1 1 125 125 125 -50 -40 -33 50 135 40 40 40 1 1 35 35 35 15 106 172 97 71 70 174 140 110 170 142 64 75 120 188 110 170 142 64 75 120 188 A1 ltng 100 60 90 100 60 90 100 60 90 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
slinger8 611 slinger1 slinger9 1 Slinger slinger1 pantherwoman PantherJavelin PW 1 1 3 4 13 17 1 19 59 81 slinger slinger 12 13 11 10 90 90 90 85 85 85 9 9 9 25 25 25 12 12 12 20 24 28 pantherjav5 1 1 1 1 125 125 125 -50 -40 -33 50 75 50 75 40 175 40 1 1 35 35 35 15 106 172 97 71 70 174 140 110 170 142 64 75 120 188 110 170 142 64 75 120 188 A1 cold 100 60 90 75 100 60 90 150 100 60 90 225 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
slinger9 612 slinger1 1 Slinger slinger1 pantherwoman PantherJavelin PW 1 1 3 4 13 17 1 19 60 81 slinger slinger 12 13 11 10 90 90 90 85 85 85 9 9 9 25 25 25 12 12 12 20 24 28 pantherjav5 1 1 1 1 125 125 125 -50 -40 -33 50 50 50 50 75 50 75 75 75 125 1 1 35 35 35 15 106 172 97 71 70 174 140 110 170 142 64 75 120 188 110 170 142 64 75 120 188 A1 fire 100 60 90 100 60 90 100 60 90 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
cr_archer6 613 cr_archer1 cr_archer7 1 VileArcher cr_archer1 corruptrogue CorruptArcher CR 1 1 3 4 9 13 1 5 59 81 cr_archer cr_archer 12 13 11 9 70 75 80 80 92 95 12 10 9 35 45 55 24 24 24 20 25 30 15 15 15 16 16 16 1 1 1 1 1 MonBow A1 1 MonFireArrow A1 9 MonExplodingArrow A1 7 125 125 125 -50 -40 -33 75 50 40 140 75 40 1 1 29 29 29 15 186 262 136 97 45 90 382 110 190 135 80 45 90 225 110 190 135 80 45 90 225 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
cr_archer7 614 cr_archer1 2 DarkArcher cr_archer1 corruptrogue CorruptArcher CR 1 1 3 4 9 13 1 5 61 82 cr_archer cr_archer 12 13 11 9 70 75 80 80 92 95 12 10 9 35 45 55 24 24 24 20 25 30 15 15 15 16 16 16 1 1 1 1 1 MonBow A1 1 MonColdArrow A1 9 MonFreezingArrow A1 7 125 125 125 -50 -40 -33 50 50 75 40 75 75 165 40 1 1 29 29 29 15 186 262 136 97 45 90 382 110 190 135 80 45 90 225 110 190 135 80 45 90 225 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
cr_lancer6 615 cr_lancer1 cr_lancer7 1 VileLancer cr_lancer1 corruptrogue CorruptLancer CR 1 3 4 9 13 1 5 59 81 cr_lancer cr_lancer 12 13 11 10 70 70 70 80 85 90 8 7 6 0 45 60 15 12 10 20 25 30 20 20 20 1 1 1 1 1 1 Jab seq_crlancerjab 3 MonPowerStrike A1 9 125 125 125 -50 -40 -33 75 50 58 50 125 75 40 1 1 16 16 16 15 170 248 136 97 114 226 136 60 90 120 160 230 142 68 98 195 210 60 90 120 160 230 142 68 98 195 210 60 90 120 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
cr_lancer7 616 cr_lancer1 cr_lancer8 2 DarkLancer cr_lancer1 corruptrogue CorruptLancer CR 1 3 4 9 13 1 5 59 81 cr_lancer cr_lancer 12 13 11 10 70 70 70 80 85 90 8 7 6 0 45 60 15 12 10 20 25 30 20 20 20 1 1 1 1 1 1 Jab seq_crlancerjab 3 MonIceSpear A1 5 125 125 125 -50 -40 -33 75 50 58 50 125 75 40 1 1 16 16 16 15 170 248 136 97 114 226 136 60 90 120 160 230 142 68 98 195 210 60 90 120 160 230 142 68 98 195 210 60 90 120 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
cr_lancer8 617 cr_lancer1 3 BlackLancer cr_lancer1 corruptrogue CorruptLancer CR 1 3 4 9 13 1 5 59 81 cr_lancer cr_lancer 12 13 11 10 70 70 70 80 85 90 8 7 6 0 45 60 15 12 10 20 25 30 20 20 20 1 1 1 1 1 1 Jab seq_crlancerjab 3 MonPowerStrike A1 9 125 125 125 -50 -40 -33 75 50 58 50 125 75 40 1 1 16 16 16 15 170 248 136 97 114 226 136 60 90 120 160 230 142 68 98 195 210 60 90 120 160 230 142 68 98 195 210 60 90 120 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
blunderbore5 618 blunderbore1 blunderbore6 0 Blunderbore blunderbore1 blunderbore blunderbore PinHead stun attack PN 1 1 2 7 7 1 18 59 81 pinhead pinhead 12 13 11 10 90 95 97 7 7 7 95 95 95 5 5 5 65 65 70 1 1 1 1 1 1 Smite seq_pinheadsmite 1 125 125 125 -50 -40 -33 65 40 40 40 100 58 58 58 2 1 43 43 43 15 216 386 136 122 114 201 240 176 226 138 400 520 120 104 135 210 240 180 232 150 400 520 120 104 135 210 240 180 232 150 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
blunderbore6 619 blunderbore1 2 Mauler blunderbore1 blunderbore blunderbore PinHead stun attack PN 1 1 2 7 7 1 18 59 81 pinhead pinhead 12 13 11 10 90 95 97 7 7 7 95 95 95 5 5 5 65 65 70 1 1 1 1 1 1 Smite seq_pinheadsmite 1 125 125 125 -50 -40 -33 65 40 40 40 100 58 58 58 2 1 43 43 43 15 216 386 136 122 114 201 240 176 226 138 400 520 120 104 135 210 240 180 232 150 400 520 120 104 135 210 240 180 232 150 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
skmage_fire5 620 skmage_fire1 skmage_fire6 1 ReturnedMage skmage_fire1 skeleton SkeletonMage SK 1 1 2 3 7 7 1 8 59 81 sk_mage sk_mage 12 13 11 10 35 65 85 15 18 20 30 30 30 5 6 7 0 30 50 15 18 20 20 20 20 5 5 5 skmagefire 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 55 75 100 125 58 150 75 135 1 1 29 29 29 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 fire 100 112 150 100 150 262 100 150 262 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
skmage_fire6 621 skmage_fire1 3 BurningDeadMage skmage_fire1 skeleton SkeletonMage SK 1 1 2 3 7 7 1 8 59 81 sk_mage sk_mage 12 13 11 10 35 65 85 15 18 20 30 30 30 5 6 7 0 30 50 15 18 20 20 20 20 5 5 5 skmagefire 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 55 75 100 125 58 155 75 135 1 1 29 29 29 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 fire 100 112 150 100 150 262 100 150 262 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
skmage_ltng5 622 skmage_ltng1 skmage_ltng6 1 ReturnedMage skmage_ltng1 skeleton SkeletonMage SK 1 1 2 3 7 7 1 8 59 81 sk_mage sk_mage 12 13 11 10 35 65 85 15 18 20 30 30 30 5 6 7 0 30 50 15 18 20 20 20 20 5 5 5 skmageltng 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 55 75 100 125 58 75 145 135 1 1 29 29 29 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 ltng 100 90 180 100 120 285 100 120 285 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
skmage_ltng6 623 skmage_ltng1 3 HorrorMage skmage_ltng1 skeleton SkeletonMage SK 1 1 2 3 7 7 1 8 59 81 sk_mage sk_mage 12 13 11 10 35 65 85 15 18 20 30 30 30 5 6 7 0 30 50 15 18 20 20 20 20 5 5 5 skmageltng 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 55 75 100 125 58 75 155 135 1 1 29 29 29 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 ltng 100 90 180 100 120 285 100 120 285 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
skmage_cold5 624 skmage_cold1 2 BoneMage skmage_cold1 skeleton SkeletonMage SK 1 1 2 3 7 7 1 15 61 82 sk_mage sk_mage 12 13 11 10 35 65 85 15 18 20 30 30 30 5 6 7 0 30 50 15 18 20 20 20 20 5 5 5 skmagecold 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 55 75 100 125 58 75 185 135 1 1 29 29 29 15 112 168 136 60 110 160 135 88 110 160 135 88 A1 cold 100 75 120 75 100 135 225 150 100 135 225 225 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
skmage_pois5 625 skmage_pois1 skmage_pois6 4 HorrorMage skmage_pois1 skeleton SkeletonMage SK 1 1 2 4 6 6 2 17 47 78 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmagepois 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 95 85 58 100 1 1 33 33 33 15 112 162 136 58 110 160 135 88 110 160 135 88 A1 pois 100 50 50 150 100 60 60 150 100 60 60 150 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
skmage_pois6 626 skmage_pois1 0 HorrorMage skmage_pois1 skeleton SkeletonMage SK 1 1 2 4 6 6 2 17 47 78 sk_mage sk_mage 12 13 13 13 35 65 85 9 10 11 30 30 30 5 6 7 0 30 50 18 17 16 20 20 20 5 5 5 skmagepois 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 95 85 58 100 1 1 33 33 33 15 112 162 136 58 110 160 135 88 110 160 135 88 A1 pois 100 50 50 150 100 60 60 150 100 60 60 150 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
pantherwoman5 627 pantherwoman1 pantherwoman6 0 Huntress pantherwoman1 pantherwoman PantherWoman PW 1 2 4 10 13 1 14 59 81 pantherwoman pantherwoman 12 13 11 10 90 90 90 90 90 95 24 12 12 6 6 6 0 25 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 58 50 50 50 75 75 75 75 75 1 1 29 29 29 15 114 194 106 76 76 182 141 120 200 158 64 75 135 300 120 200 158 64 75 135 300 A1 pois 5 38 38 150 15 38 38 225 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
pantherwoman6 628 pantherwoman1 1 SaberCat pantherwoman1 pantherwoman PantherWoman PW 1 2 4 10 13 1 14 60 81 pantherwoman pantherwoman 12 13 11 10 90 90 90 90 90 95 24 12 12 6 6 6 0 25 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 58 50 50 50 75 75 75 75 75 1 1 29 29 29 15 114 194 106 76 76 182 141 120 200 158 64 75 135 300 120 200 158 64 75 135 300 A1 cold 5 60 90 225 15 60 90 300 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
sandleaper6 629 sandleaper1 sandleaper7 1 CaveLeaper sandleaper1 sandleaper SandLeaper SL 1 2 3 9 9 1 15 61 82 sandleaper sandleaper 12 13 12 11 20 22 25 50 50 50 30 30 30 50 50 50 1 1 1 1 Leap seq_leaperleap 2 125 110 100 -50 -40 -33 50 75 50 58 125 40 1 1 31 31 31 15 132 388 136 100 92 182 141 92 182 141 80 160 195 76 98 180 150 82 150 135 80 160 195 76 98 180 150 82 150 135 A1 cold 100 50 99 38 100 50 99 112 100 50 99 150 A2 cold 100 33 66 25 100 50 99 112 100 50 99 150 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
sandleaper7 630 sandleaper1 3 TombCreeper sandleaper1 sandleaper SandLeaper SL 1 2 3 9 9 1 15 61 82 sandleaper sandleaper 12 13 12 11 20 22 25 50 50 50 30 30 30 50 50 50 1 1 1 1 Leap seq_leaperleap 2 125 110 100 -50 -40 -33 50 75 50 58 145 40 1 1 31 31 31 15 132 388 136 100 92 182 141 92 182 141 80 160 195 76 98 180 150 82 150 135 80 160 195 76 98 180 150 82 150 135 A1 cold 100 50 99 38 100 50 99 112 100 50 99 150 A2 cold 100 33 66 25 100 50 99 112 100 50 99 150 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
wraith6 631 wraith1 wraith7 0 Ghost wraith1 wraith Wraith drains mana WR 1 2 4 9 9 1 15 61 82 wraith wraith 12 13 12 11 90 100 100 4 4 4 90 95 99 1 1 1 1 1 1 1 -50 -33 0 20 75 55 85 125 75 75 125 1 1 19 19 19 15 166 330 136 99 92 182 141 130 180 195 84 90 158 142 130 180 195 84 90 158 142 A1 mana 40 90 150 45 150 300 50 300 450 Act 1 Wraith B Act 5 Champ A Act 5 Unique A Act 1 (N) Wraith B Act 5 (N) Champ A Act 5 (N) Unique A Act 1 (H) Wraith B Act 5 (H) Champ A Act 5 (H) Unique A 0
wraith7 632 wraith1 wraith8 0 Wraith wraith1 wraith Wraith drains mana WR 1 2 4 9 9 1 15 61 82 wraith wraith 12 13 12 11 90 100 100 4 4 4 90 95 99 1 1 1 1 1 1 1 -50 -33 0 20 75 55 85 125 75 75 125 1 1 19 19 19 15 166 330 136 99 92 182 141 130 180 195 84 90 158 142 130 180 195 84 90 158 142 A1 mana 40 90 150 45 150 300 50 300 450 Act 1 Wraith B Act 5 Champ A Act 5 Unique A Act 1 (N) Wraith B Act 5 (N) Champ A Act 5 (N) Unique A Act 1 (H) Wraith B Act 5 (H) Champ A Act 5 (H) Unique A 0
wraith8 633 wraith1 0 Specter wraith1 wraith Wraith drains mana WR 1 2 4 9 9 1 15 61 82 wraith wraith 12 13 12 11 90 100 100 4 4 4 90 95 99 1 1 1 1 1 1 1 -50 -33 0 20 75 55 85 125 75 75 125 1 1 19 19 19 15 166 330 136 99 92 182 141 130 180 195 84 90 158 142 130 180 195 84 90 158 142 A1 mana 40 90 150 45 150 300 50 300 450 Act 1 Wraith B Act 5 Champ A Act 5 Unique A Act 1 (N) Wraith B Act 5 (N) Champ A Act 5 (N) Unique A Act 1 (H) Wraith B Act 5 (H) Champ A Act 5 (H) Unique A 0
succubus6 634 succubus1 succubus7 0 Succubusexp succubus1 succubus Succubus 0B 1 1 4 5 15 15 1 42 61 83 succubus succubus 12 13 12 11 90 93 95 50 25 10 50 50 50 25 25 25 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 1 125 110 100 -50 -40 -33 58 58 40 58 58 50 91 91 58 91 91 1 1 82 82 82 15 190 304 170 170 70 128 188 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 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
succubus7 635 succubus1 2 Hell Temptress succubus1 succubus Succubus 0B 1 1 4 5 15 15 1 42 61 83 succubus succubus 12 13 12 11 90 93 95 50 25 10 50 50 50 25 25 25 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 1 125 110 100 -50 -40 -33 58 58 40 58 58 50 91 91 58 91 91 1 1 82 82 82 15 190 304 170 170 70 128 188 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch6 636 succubuswitch1 succubuswitch7 3 Dominus succubuswitch1 succubus SuccubusWitch 0C 1 1 4 5 13 13 1 42 61 83 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 30 50 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 3 125 110 100 -50 -40 -33 105 58 58 40 125 58 50 91 91 58 150 91 1 1 82 82 82 15 190 304 170 172 70 128 207 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch7 637 succubuswitch1 succubuswitch8 4 Hell Witch succubuswitch1 succubus SuccubusWitch 0C 1 1 4 5 13 13 1 42 61 83 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 30 50 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 3 125 110 100 -50 -40 -33 105 58 58 40 125 58 50 91 91 58 170 91 1 1 82 82 82 15 190 304 170 172 70 128 207 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch8 638 succubuswitch1 1 VileWitch succubuswitch1 succubus SuccubusWitch 0C 1 1 4 5 13 13 1 42 61 83 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 30 50 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 3 125 110 100 -50 -40 -33 105 58 58 40 125 58 50 91 91 58 180 91 1 1 82 82 82 15 190 304 170 172 70 128 207 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
willowisp5 639 willowisp1 willowisp6 0 Gloam willowisp1 willowisp WillOWisp drains mana WW 1 1 2 4 16 16 1 42 61 83 willowisp willowisp 12 13 12 11 70 70 75 90 90 90 30 30 30 willowisplightningbolt2 1 1 1 1 1 1 Chain Lightning SC 4 -50 -33 0 70 105 95 125 75 115 75 125 58 130 1 1 49 49 49 15 88 174 136 87 51 226 140 90 170 172 96 68 172 180 90 170 172 96 68 172 180 A1 mana 90 24 108 90 150 300 90 300 450 SC ltng 100 5 120 100 8 240 100 8 285 Act 4 Wraith B Act 5 Champ A Act 5 Unique A Act 4 (N) Wraith B Act 5 (N) Champ A Act 5 (N) Unique A Act 4 (H) Wraith B Act 5 (H) Champ A Act 5 (H) Unique A 1 1 0
willowisp6 640 willowisp1 willowisp7 3 BlackSoul willowisp1 willowisp WillOWisp drains mana WW 1 1 2 4 16 16 1 42 61 83 willowisp willowisp 12 13 12 11 70 70 75 90 90 90 30 30 30 willowisplightningbolt2 1 1 1 1 1 1 Chain Lightning SC 4 -50 -33 0 70 105 95 125 75 115 75 125 58 135 1 1 49 49 49 15 88 174 136 87 51 226 140 90 170 172 96 68 172 180 90 170 172 96 68 172 180 A1 mana 90 24 108 90 150 300 90 300 450 SC ltng 100 5 120 100 8 240 100 8 285 Act 4 Wraith B Act 5 Champ A Act 5 Unique A Act 4 (N) Wraith B Act 5 (N) Champ A Act 5 (N) Unique A Act 4 (H) Wraith B Act 5 (H) Champ A Act 5 (H) Unique A 1 1 0
willowisp7 641 willowisp1 0 BurningSoul willowisp1 willowisp WillOWisp drains mana WW 1 1 2 4 16 16 1 42 61 83 willowisp willowisp 12 13 12 11 70 70 75 90 90 90 30 30 30 willowisplightningbolt2 1 1 1 1 1 1 Chain Lightning SC 4 -50 -33 0 70 105 95 125 75 115 75 125 58 140 1 1 49 49 49 15 88 174 136 87 51 226 140 90 170 172 96 68 172 180 90 170 172 96 68 172 180 A1 mana 90 24 108 90 150 300 90 300 450 SC ltng 100 5 120 100 8 240 100 8 285 Act 4 Wraith B Act 5 Champ A Act 5 Unique A Act 4 (N) Wraith B Act 5 (N) Champ A Act 5 (N) Unique A Act 4 (H) Wraith B Act 5 (H) Champ A Act 5 (H) Unique A 1 1 0
fallen6 642 fallen1 fallen7 1 Carver fallen1 fallen Fallen FA 1 fallen6 1 1 1 1 2 4 11 11 1 40 61 83 fallen fallen 12 13 12 11 75 80 80 30 30 30 90 95 99 40 45 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 50 75 75 75 75 75 91 91 91 91 91 91 50 100 100 100 100 100 1 1 81 81 81 15 42 110 136 99 68 140 140 68 146 140 50 110 105 52 68 135 135 60 120 128 50 110 105 52 68 135 135 60 120 128 A2 cold 10 60 90 112 20 60 90 188 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
fallen7 643 fallen1 fallen8 2 Devilkin fallen1 fallen Fallen FA 1 fallen7 1 1 1 1 2 4 11 11 1 40 61 83 fallen fallen 12 13 12 11 75 80 80 30 30 30 90 95 99 40 45 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 50 75 75 75 75 75 91 91 91 91 91 91 50 100 100 100 100 100 1 1 81 81 81 15 42 110 136 99 68 140 140 68 146 140 50 110 105 52 68 135 135 60 120 128 50 110 105 52 68 135 135 60 120 128 A2 ltng 10 45 135 20 45 135 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
fallen8 644 fallen1 0 DarkOne fallen1 fallen Fallen FA 1 fallen8 1 1 1 1 2 4 11 11 1 40 61 83 fallen fallen 12 13 12 11 75 80 80 30 30 30 90 95 99 40 45 50 1 1 1 1 1 1 125 125 125 -50 -40 -33 50 75 75 75 75 75 91 91 91 91 91 91 50 100 100 100 100 100 1 1 81 81 81 15 42 110 136 99 68 140 140 68 146 140 50 110 105 52 68 135 135 60 120 128 50 110 105 52 68 135 135 60 120 128 A2 fire 10 75 105 20 75 105 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
fallenshaman6 645 fallenshaman1 fallenshaman7 1 CarverShaman fallenshaman1 fallen FallenShaman raises Warped Fallen FS 1 fallen6 1 2 3 1 3 7 7 1 40 61 83 fallenshaman fallenshaman 12 13 12 11 75 85 90 90 90 95 100 90 80 24 28 30 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 ShamanIce seq_shamanresurrect 1 125 100 91 -50 -40 -33 45 95 75 50 75 50 75 91 75 100 1 1 65 65 65 15 130 214 136 134 80 182 140 110 180 112 120 68 135 158 110 180 112 120 68 135 158 A1 cold 10 60 90 112 20 60 90 188 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
fallenshaman7 646 fallenshaman1 fallenshaman8 2 DevilkinShaman fallenshaman1 fallen FallenShaman raises Warped Fallen FS 1 fallen7 1 2 3 1 3 7 7 1 40 61 83 fallenshaman fallenshaman 12 13 12 11 75 85 90 90 90 95 100 90 80 24 28 30 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 ShamanFireEx seq_shamanresurrect 1 125 100 91 -50 -40 -33 45 95 75 50 75 50 75 91 75 100 1 1 65 65 65 15 130 214 136 134 80 182 140 110 180 112 120 68 135 158 110 180 112 120 68 135 158 A1 ltng 10 45 135 20 45 135 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
fallenshaman8 647 fallenshaman1 0 DarkShaman fallenshaman1 fallen FallenShaman raises Warped Fallen FS 1 fallen8 1 2 3 1 3 7 7 1 40 61 83 fallenshaman fallenshaman 12 13 12 11 75 85 90 90 90 95 100 90 80 24 28 30 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 ShamanFireEx seq_shamanresurrect 1 125 100 91 -50 -40 -33 45 95 75 50 75 50 75 91 75 100 1 1 65 65 65 15 130 214 136 134 80 182 140 110 180 112 120 68 135 158 110 180 112 120 68 135 158 A1 fire 10 75 105 20 75 105 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
skeleton6 648 skeleton1 skeleton7 2 BoneWarrior skeleton1 skeleton Skeleton SK 1 4 5 6 6 2 14 61 83 skeleton skeleton 12 13 12 11 99 99 99 5 5 5 95 99 99 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 45 85 75 65 50 105 100 58 95 75 125 50 130 1 1 52 52 52 15 188 262 136 90 62 152 141 46 152 141 140 200 150 68 60 150 180 60 158 188 140 200 150 68 60 150 180 60 158 188 A1 cold 60 45 90 75 60 45 90 112 60 45 90 188 A2 ltng 60 30 60 60 45 90 60 45 90 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
skeleton7 649 skeleton1 1 Returned skeleton1 skeleton Skeleton SK 1 4 5 6 6 2 14 61 83 skeleton skeleton 12 13 12 11 99 99 99 5 5 5 95 99 99 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 45 85 75 65 50 105 100 58 95 75 125 50 135 1 1 52 52 52 15 188 262 136 90 62 152 141 46 152 141 140 200 150 68 60 150 180 60 158 188 140 200 150 68 60 150 180 60 158 188 A1 cold 60 45 90 75 60 45 90 112 60 45 90 188 A2 ltng 60 30 60 60 45 90 60 45 90 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
batdemon6 650 batdemon1 batdemon7 1 Gloombat batdemon1 batdemon BatDemon shocking hit BT 1 3 4 13 13 1 27 57 84 batdemon batdemon 12 13 12 11 33 33 33 20 20 20 80 85 90 50 59 68 8 8 8 1 1 1 1 1 125 110 100 -50 -40 -33 75 35 58 125 58 1 1 47 47 47 15 86 302 136 95 98 152 140 159 248 219 140 220 165 64 98 105 150 120 172 300 140 220 165 64 98 105 150 120 172 300 A2 ltng 85 96 150 85 8 270 85 8 360 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 1 1 0
batdemon7 651 batdemon1 0 Fiend batdemon1 batdemon BatDemon shocking hit BT 1 3 4 13 13 1 27 57 84 batdemon batdemon 12 13 12 11 33 33 33 20 20 20 80 85 90 50 59 68 8 8 8 1 1 1 1 1 125 110 100 -50 -40 -33 75 35 58 125 58 1 1 47 47 47 15 86 302 136 95 98 152 140 159 248 219 140 220 165 64 98 105 150 120 172 300 140 220 165 64 98 105 150 120 172 300 A2 ltng 85 96 150 85 8 270 85 8 360 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 1 1 0
bloodlord6 652 bloodlord1 bloodlord7 2 Blood Lord1 bloodlord1 bloodlord BloodLord L3 1 1 2 10 10 1 36 61 82 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 70 70 70 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 -30 -20 -10 75 50 50 50 75 100 75 165 75 100 1 1 82 82 82 15 568 758 199 278 99 222 282 99 222 282 480 600 195 168 120 225 270 120 225 270 480 600 195 168 120 225 270 120 225 270 A1 cold 50 50 75 75 50 50 75 112 50 50 75 150 A2 fire 50 33 50 50 50 75 50 50 75 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
bloodlord7 653 bloodlord1 3 Blood Lord4 bloodlord1 bloodlord BloodLord L3 1 1 2 10 10 1 36 62 82 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 70 70 70 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 -30 -20 -10 75 50 50 50 75 100 75 75 125 100 1 1 82 82 82 15 568 758 199 278 99 222 282 99 222 282 480 600 195 168 120 225 270 120 225 270 480 600 195 168 120 225 270 120 225 270 A1 ltng 50 50 75 75 50 50 105 50 50 105 A2 fire 50 33 50 50 50 75 50 50 75 Act 5 H2H B Act 5 Champ B Act 5 Unique B 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
scarab6 654 scarab1 scarab7 2 Scarab scarab1 scarab Scarab SC 1 scarab6 1 1 4 5 4 5 7 7 1 24 54 85 scarab scarab 12 13 12 11 90 94 96 70 70 70 70 70 70 70 75 80 20 24 28 1 1 1 1 1 Jab seq_scarabjab 5 125 100 75 -50 -40 -25 75 125 5 1 43 43 43 15 134 222 138 89 76 226 138 76 178 138 1 2 95 140 220 218 88 82 165 180 82 165 210 40 70 95 140 220 218 88 82 165 180 82 165 210 40 70 95 A1 ltng 30 27 38 30 22 45 30 22 45 A2 ltng 10 18 25 10 22 45 10 22 45 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
scarab7 655 scarab1 0 SteelWeevil scarab1 scarab Scarab SC 1 scarab7 1 1 4 5 4 5 7 7 1 24 54 85 scarab scarab 12 13 12 11 90 94 96 70 70 70 70 70 70 70 75 80 20 24 28 1 1 1 1 1 Jab seq_scarabjab 5 125 100 75 -50 -40 -25 75 125 5 1 43 43 43 15 134 222 138 89 76 226 138 76 178 138 1 2 95 140 220 218 88 82 165 180 82 165 210 40 70 95 140 220 218 88 82 165 180 82 165 210 40 70 95 A1 ltng 30 27 38 30 22 45 30 22 45 A2 ltng 10 18 25 10 22 45 10 22 45 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
fetish6 656 fetish1 fetish7 1 Flayer fetish1 fetish Fetish FE 1 fetish6 1 1 2 4 2 4 11 11 1 24 54 83 fetish fetish 12 13 12 11 100 100 100 10 9 8 4 4 4 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 40 130 50 50 58 1 1 43 43 43 15 130 214 138 84 104 152 138 110 160 188 60 90 142 142 110 160 188 60 90 142 142 A1 pois 7 30 30 75 10 50 50 112 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
fetish7 657 fetish1 fetish8 0 StygianDoll fetish1 fetish Fetish FE 1 fetish7 1 1 2 4 2 4 11 11 1 24 54 83 fetish fetish 12 13 12 11 100 100 100 10 9 8 4 4 4 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 40 135 50 50 58 1 1 43 43 43 15 130 214 138 84 104 152 138 110 160 188 60 90 142 142 110 160 188 60 90 142 142 A1 pois 7 30 30 75 10 50 50 112 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
fetish8 658 fetish1 2 SoulKiller fetish1 fetish Fetish FE 1 fetish8 1 1 2 4 2 4 11 11 1 24 54 83 fetish fetish 12 13 12 11 100 100 100 10 9 8 4 4 4 33 33 33 1 1 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 40 140 50 50 58 1 1 43 43 43 15 130 214 138 84 104 152 138 110 160 188 60 90 142 142 110 160 188 60 90 142 142 A1 pois 7 30 30 75 10 50 50 112 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
fetishblow6 659 fetishblow1 fetishblow7 1 Flayer fetishblow1 fetish FetishBlowgun FC 1 1 fetishblow6 1 1 3 3 3 3 11 11 1 24 53 83 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 40 130 50 50 58 1 1 55 55 55 15 130 214 138 70 188 90 150 165 72 0 0 165 90 150 165 72 0 0 165 A1 pois 7 30 30 75 10 50 50 112 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
fetishblow7 660 fetishblow1 fetishblow8 0 StygianDoll fetishblow1 fetish FetishBlowgun FC 1 1 fetishblow7 1 1 3 3 3 3 11 11 1 24 53 83 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 40 135 50 50 58 1 1 55 55 55 15 130 214 138 70 188 90 150 165 72 0 0 165 90 150 165 72 0 0 165 A1 pois 7 30 30 75 10 50 50 112 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
fetishblow8 661 fetishblow1 2 SoulKiller fetishblow1 fetish FetishBlowgun FC 1 1 fetishblow8 1 1 3 3 3 3 11 11 1 24 53 83 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 40 140 50 50 58 1 1 55 55 55 15 130 214 138 70 188 90 150 165 72 0 0 165 90 150 165 72 0 0 165 A1 pois 7 30 30 75 10 50 50 112 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
fetishshaman6 662 fetishshaman1 fetishshaman7 1 FlayerShaman fetishshaman1 fetish FetishShaman raises Stygian Dolls FW 1 fetish6 fetishblow6 1 1 2 5 1 1 11 11 1 24 53 84 fetishshaman fetishshaman 12 13 12 11 40 45 45 0 2 3 15 18 22 66 66 66 50 50 50 1 1 1 1 1 1 FetishInferno A1 11 FetishAura A1 5 Resurrect2 seq_fetishres 1 125 125 125 -50 -40 -33 40 35 145 50 50 58 1 1 43 43 43 15 130 214 138 82 130 210 150 208 130 210 150 208 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 1 0
fetishshaman7 663 fetishshaman1 fetishshaman8 0 StygianDollShaman fetishshaman1 fetish FetishShaman raises Stygian Dolls FW 1 fetish7 fetishblow7 1 1 2 5 1 1 11 11 1 24 53 84 fetishshaman fetishshaman 12 13 12 11 40 45 45 0 2 3 15 18 22 66 66 66 50 50 50 1 1 1 1 1 1 FetishInferno A1 11 FetishAura A1 5 Resurrect2 seq_fetishres 1 125 125 125 -50 -40 -33 40 35 150 50 50 58 1 1 43 43 43 15 130 214 138 82 130 210 150 208 130 210 150 208 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 1 0
fetishshaman8 664 fetishshaman1 2 SoulKillerShaman fetishshaman1 fetish FetishShaman raises Stygian Dolls FW 1 fetish8 fetishblow8 1 1 2 5 1 1 11 11 1 24 53 84 fetishshaman fetishshaman 12 13 12 11 40 45 45 0 2 3 15 18 22 66 66 66 50 50 50 1 1 1 1 1 1 FetishInferno A1 11 FetishAura A1 5 Resurrect2 seq_fetishres 1 125 125 125 -50 -40 -33 40 35 155 50 50 58 1 1 43 43 43 15 130 214 138 82 130 210 150 208 130 210 150 208 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 1 0
baboon7 665 baboon1 baboon8 4 TempleGuard baboon1 baboon Baboon BB 1 3 4 8 15 1 24 53 81 baboon baboon 12 13 12 11 33 33 33 20 30 35 75 80 85 50 50 50 1 2 3 1 1 1 1 1 1 125 125 125 -50 -40 -33 58 125 58 1 1 43 43 43 15 214 302 138 103 76 226 138 76 226 138 180 270 165 88 75 195 180 75 165 195 180 270 165 88 75 135 180 75 165 195 A1 ltng 50 45 135 50 45 135 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
baboon8 666 baboon1 3 TempleGuard baboon1 baboon Baboon BB 1 3 4 8 15 1 24 53 81 baboon baboon 12 13 12 11 33 33 33 20 30 35 75 80 85 50 50 50 1 2 3 1 1 1 1 1 1 125 125 125 -50 -40 -33 58 125 58 1 1 43 43 43 15 214 302 138 103 76 226 138 76 226 138 180 270 165 88 75 195 180 75 165 195 180 270 165 88 75 135 180 75 165 195 A1 fire 50 45 135 50 45 135 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
unraveler6 667 unraveler1 unraveler7 4 Guardian unraveler1 unraveler GreaterMummy raises undead GY 1 1 1 6 6 1 40 64 85 unraveler unraveler 12 13 12 11 85 85 85 45 50 55 55 55 55 85 90 95 24 27 31 mummyex 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBoltEx seq_mummyres 1 125 91 58 -50 -40 -33 75 50 50 50 50 75 58 125 75 75 50 75 1 1 65 65 65 15 384 470 136 225 182 230 140 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 30 180 228 2250 30 180 225 2250 30 180 225 2250 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
unraveler7 668 unraveler1 unraveler8 2 Unraveler unraveler1 unraveler GreaterMummy raises undead GY 1 1 1 6 6 1 40 64 85 unraveler unraveler 12 13 12 11 85 85 85 45 50 55 55 55 55 85 90 95 24 27 31 mummyex 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBoltEx seq_mummyres 1 125 91 58 -50 -40 -33 75 50 50 50 50 75 58 125 75 50 75 75 1 1 65 65 65 15 384 470 136 225 182 230 140 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 30 180 228 2250 30 180 225 2250 30 180 225 2250 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
unraveler8 669 unraveler1 unraveler9 4 Horadrim Ancient unraveler1 unraveler GreaterMummy raises undead GY 1 1 1 6 6 1 40 64 85 unraveler unraveler 12 13 12 11 85 85 85 45 50 55 55 55 55 85 90 95 24 27 31 mummyex 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBoltEx seq_mummyres 1 125 91 58 -50 -40 -33 75 50 50 50 50 75 58 125 50 75 75 75 1 1 65 65 65 15 384 470 136 225 182 230 140 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 30 180 228 2250 30 180 225 2250 30 180 225 2250 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
unraveler9 670 unraveler1 2 Horadrim Ancient unraveler1 unraveler GreaterMummy raises undead GY 1 1 1 6 6 1 40 64 85 unraveler unraveler 12 13 12 11 85 85 85 45 50 55 55 55 55 85 90 95 24 27 31 mummyex 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBoltEx seq_mummyres 1 125 91 58 -50 -40 -33 75 50 50 50 50 75 58 125 75 75 75 50 1 1 65 65 65 15 384 470 136 225 182 230 140 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 30 180 228 2250 30 180 225 2250 30 180 225 2250 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
zealot4 671 zealot1 zealot5 1 Zealot zealot1 zakarum ZakarumZealot ZZ 1 2 3 7 12 1 24 53 82 zealot zealot 12 13 12 11 85 90 95 65 65 65 50 50 50 70 80 90 1 1 1 1 1 125 125 125 -50 -40 -33 40 45 125 75 1 1 43 43 43 15 262 346 138 106 86 152 138 86 152 138 240 300 120 64 90 150 150 90 158 172 240 300 120 64 90 150 150 90 158 172 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
zealot5 672 zealot1 2 Zealot zealot1 zakarum ZakarumZealot ZZ 1 2 3 7 12 1 24 53 82 zealot zealot 12 13 12 11 85 90 95 65 65 65 50 50 50 70 80 90 1 1 1 1 1 125 125 125 -50 -40 -33 40 45 125 75 1 1 43 43 43 15 262 346 138 106 86 152 138 86 152 138 240 300 120 64 90 150 150 90 158 172 240 300 120 64 90 150 150 90 158 172 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
cantor5 673 cantor1 cantor6 1 Heirophant cantor1 zakarum ZakarumPriest heals Zealots and Cantors ZP 1 1 zealot4 2 4 1 2 7 7 1 24 57 84 cantor cantor 12 13 12 11 40 40 40 10 16 25 65 75 85 40 55 75 120 120 120 36 38 40 1 1 1 1 ZakarumHeal S1 3 ZakarumLightning S1 1 MonTeleport S1 1 MonBlizzard S1 1 125 125 125 -50 -40 -33 40 45 75 45 1 1 43 43 43 15 262 346 138 113 104 226 138 180 260 112 104 60 128 135 180 260 112 104 60 128 135 A1 cold 75 46 102 38 75 45 90 75 75 45 90 112 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
cantor6 674 cantor1 2 Heirophant cantor1 zakarum ZakarumPriest heals Zealots and Cantors ZP 1 1 zealot5 2 4 1 2 7 7 1 24 57 84 cantor cantor 12 13 12 11 40 40 40 10 16 25 65 75 85 40 55 75 120 120 120 36 38 40 1 1 1 1 ZakarumHeal S1 3 ZakarumLightning S1 1 MonTeleport S1 1 MonBlizzard S1 1 125 125 125 -50 -40 -33 40 45 75 45 1 1 43 43 43 15 262 346 138 113 104 226 138 180 260 112 104 60 128 135 180 260 112 104 60 128 135 A1 cold 75 46 102 38 75 45 90 75 75 45 90 112 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
vilemother4 675 vilemother1 vilemother5 2 Grotesque vilemother1 vilekind VileMother VM 1 vilechild4 0 0 NU 2 3 8 8 1 30 57 85 vilemother vilemother 12 13 12 11 16 19 22 5 6 6 30 35 40 80 90 95 70 60 50 30 30 30 10 8 7 1 1 1 1 1 1 Nest seq_vileres 1 125 100 75 -50 -40 -33 65 95 70 58 58 165 50 1 1 51 51 51 15 456 588 104 179 135 285 138 400 500 120 104 105 150 165 400 500 120 104 105 150 165 A1 pois 20 45 45 112 30 45 45 150 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
vilemother5 676 vilemother1 0 FleshSpawner vilemother1 vilekind VileMother VM 1 vilechild5 0 0 NU 2 3 8 8 1 30 57 85 vilemother vilemother 12 13 12 11 16 19 22 5 6 6 30 35 40 80 90 95 70 60 50 30 30 30 10 8 7 1 1 1 1 1 1 Nest seq_vileres 1 125 100 75 -50 -40 -33 65 95 70 58 58 170 50 1 1 51 51 51 15 456 588 104 179 135 285 138 400 500 120 104 105 150 165 400 500 120 104 105 150 165 A1 cold 20 60 75 150 30 60 75 188 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
vilechild4 677 vilechild1 vilechild5 2 GrotesqueWyrm vilechild1 vilekind VileDog VC 1 2 3 11 13 1 30 57 85 vilechild vilechild 12 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 1 125 100 75 -50 -40 -33 65 95 58 58 165 50 1 1 77 77 77 15 110 168 136 95 72 111 226 100 140 105 32 60 105 128 100 140 105 32 60 105 128 A1 pois 5 30 30 75 9 30 30 112 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
vilechild5 678 vilechild1 0 FleshBeast vilechild1 vilekind VileDog VC 1 2 3 11 13 1 30 57 85 vilechild vilechild 12 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 1 125 100 75 -50 -40 -33 65 95 58 58 170 50 1 1 77 77 77 15 110 168 136 95 72 111 226 100 140 105 32 60 105 128 100 140 105 32 60 105 128 A1 cold 5 38 52 112 9 38 52 150 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
sandmaggot6 679 sandmaggot1 4 WorldKiller sandmaggot1 sandmaggot SandMaggot Lays Eggs SM 1 maggotegg6 0 0 S1 2 3 5 5 1 27 57 85 sandmaggot sandmaggot 12 13 12 11 55 55 55 70 70 70 2 3 4 90 90 90 80 80 80 goospitex 1 1 1 MagottUp seq_maggotup 1 MagottDown seq_maggotdown 1 MagottLay seq_maggotlay 1 125 100 75 -50 -40 -33 65 50 125 50 130 1 1 47 47 47 15 280 344 136 135 134 284 140 220 300 172 100 105 165 112 220 300 172 100 105 165 112 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
maggotbaby6 680 maggotbaby1 4 WorldKillerYoung maggotbaby1 sandmaggot MaggotLarva SB 1 1 1 7 7 1 24 57 85 maggotbaby maggotbaby 12 13 12 11 90 93 95 16 13 10 90 90 90 15 15 15 20 20 20 1 1 1 1 125 100 75 -50 -40 -33 35 40 58 40 130 1 1 43 43 43 15 42 130 138 58 39 66 138 40 90 75 24 38 68 105 40 90 75 24 38 68 105 0
maggotegg6 681 maggotegg1 4 WorldKillerEgg maggotegg1 MaggotEgg SE 1 maggotbaby6 0 0 S1 1 1 2 2 1 27 57 85 maggotegg maggotegg 12 13 12 11 150 200 200 34 34 34 1 1 MaggotEgg seq_maggotegg 5 125 91 58 -50 -50 -50 35 40 58 40 1 1 154 190 136 58 120 160 38 20 120 160 38 20 0
minion9 682 minion1 minion10 2 Slayerexp minion1 minion Minion xx 1 3 5 8 11 2 42 66 82 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 55 55 1 1 1 1 1 125 110 100 -50 -40 -33 58 75 50 155 1 1 82 82 82 15 380 474 162 241 116 146 226 140 174 244 200 250 120 64 112 150 150 105 172 165 200 250 180 60 112 150 150 105 172 165 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 C Act 5 (H) Champ C Act 5 (H) Unique C 0
minion10 683 minion1 minion11 3 HellSpawn minion1 minion Minion xx 1 3 5 8 11 2 42 66 82 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 55 55 1 1 1 1 1 125 110 100 -50 -40 -33 58 135 50 75 1 1 82 82 82 15 380 474 162 241 116 146 226 140 174 244 200 250 120 64 112 150 150 105 172 165 200 250 180 60 112 150 150 105 172 165 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 C Act 5 (H) Champ C Act 5 (H) Unique C 0
minion11 684 minion1 2 GreaterHellSpawn minion1 minion Minion xx 1 3 5 8 11 2 42 66 82 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 55 55 1 1 1 1 1 125 110 100 -50 -40 -33 58 75 50 160 1 1 82 82 82 15 380 474 162 241 116 146 226 140 174 244 200 250 120 64 112 150 150 105 172 165 200 250 180 60 112 150 150 105 172 165 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 C Act 5 (H) Champ C Act 5 (H) Unique C 0
arach6 685 arach1 0 Arach arach1 arach Arach SP 1 4 5 9 12 1 23 53 84 arach arach 12 13 12 11 75 85 90 55 55 55 20 20 20 8 8 8 45 45 45 1 1 1 1 1 SpiderLay A2 5 125 100 75 -50 -40 -25 75 145 50 75 5 1 41 41 41 15 302 380 138 122 141 220 138 300 380 202 88 120 180 150 300 380 202 88 120 180 150 A1 pois 50 39 60 4500 50 75 180 4500 50 75 180 4500 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
megademon4 686 megademon1 megademon5 0 Balrog megademon1 megademon Megademon DM 1 2 3 11 17 1 30 57 84 megademon megademon 12 13 11 9 60 75 90 50 60 65 80 95 97 70 70 70 70 70 70 75 60 45 1 1 1 1 1 MegademonInferno S1 9 125 110 91 -50 -40 -33 95 95 105 125 75 45 165 58 75 1 1 65 65 65 15 382 456 162 162 80 142 188 420 500 172 104 120 180 240 420 500 172 104 120 180 240 A1 fire 15 60 120 25 60 120 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 5 (H) Unique B 0
megademon5 687 megademon1 0 PitLord megademon1 megademon Megademon DM 1 2 3 11 17 1 30 57 84 megademon megademon 12 13 11 9 60 75 90 50 60 65 80 95 97 70 70 70 70 70 70 75 60 45 1 1 1 1 1 MegademonInferno S1 9 125 110 91 -50 -40 -33 95 95 105 125 75 45 170 58 75 1 1 65 65 65 15 382 456 162 162 80 142 188 420 500 172 104 120 180 240 420 500 172 104 120 180 240 A1 fire 15 60 120 25 60 120 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 5 (H) Unique B 0
imp6 688 imp1 imp7 0 Imp1 imp1 imp Imp ip 1 1 3 4 8 8 1 38 63 85 imp imp 12 13 12 11 impmissex 1 1 1 1 1 1 1 Imp Teleport S1 1 ImpBolt S2 1 Imp Fireball S2 3 Imp Fire Missile Ex A1 1 Imp Inferno seq_impinferno 5 125 125 125 -50 -40 -33 135 50 50 1 1 63 63 63 15 130 214 136 146 90 130 165 96 90 130 165 96 A1 fire 100 60 105 100 120 165 100 135 210 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
imp7 689 imp1 3 Imp4 imp1 imp Imp ip 1 1 3 4 8 8 1 38 63 85 imp imp 12 13 12 11 impmissex 1 1 1 1 1 1 1 Imp Teleport S1 1 ImpBolt S2 1 Imp Fireball S2 3 Imp Fire Missile Ex A1 1 Imp Inferno seq_impinferno 5 125 125 125 -50 -40 -33 140 50 50 1 1 63 63 63 15 130 214 136 146 90 130 165 96 90 130 165 96 A1 fire 100 60 105 100 120 165 100 135 210 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
bonefetish6 690 bonefetish1 bonefetish7 2 Undead StygianDoll bonefetish1 undeadfetish Fetish FK 1 2 4 11 11 1 24 53 83 bonefetish bonefetish 12 13 12 11 100 100 100 10 9 8 5 5 5 33 33 33 1 1 1 1 1 1 1 1 125 91 58 -50 -33 0 75 85 58 50 58 130 1 1 43 43 43 15 130 214 138 84 104 152 138 130 210 202 100 98 158 135 130 210 202 100 98 158 135 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 5 (H) Unique B 0
bonefetish7 691 bonefetish1 2 Undead SoulKiller bonefetish1 undeadfetish Fetish FK 1 2 4 11 11 1 24 53 83 bonefetish bonefetish 12 13 12 11 100 100 100 10 9 8 5 5 5 33 33 33 1 1 1 1 1 1 1 1 125 91 58 -50 -33 0 75 85 58 50 58 135 1 1 43 43 43 15 130 214 138 84 104 152 138 130 210 202 100 98 158 135 130 210 202 100 98 158 135 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 5 (H) Unique B 0
fingermage4 692 fingermage1 fingermage5 1 Strangler fingermage1 fingermage FingerMage homing missiles FR 1 2 3 11 17 1 30 58 85 fingermage fingermage 12 13 12 11 80 60 60 80 85 95 70 70 70 50 50 50 15 20 26 5 5 5 40 40 40 12 10 8 1 1 1 1 1 1 FingerMageSpider S1 5 125 91 58 -50 -40 -25 85 85 100 100 65 91 125 50 50 1 1 51 51 51 15 304 418 136 138 80 183 138 160 220 180 108 82 180 180 160 220 180 108 82 180 180 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 5 (H) Unique B 0
fingermage5 693 fingermage1 1 StormCaster fingermage1 fingermage FingerMage homing missiles FR 1 2 3 11 17 1 30 58 85 fingermage fingermage 12 13 12 11 80 60 60 80 85 95 70 70 70 50 50 50 15 20 26 5 5 5 40 40 40 12 10 8 1 1 1 1 1 1 FingerMageSpider S1 5 125 91 58 -50 -40 -25 85 85 100 100 65 91 125 50 50 1 1 51 51 51 15 304 418 136 138 80 183 138 160 220 180 108 82 180 180 160 220 180 108 82 180 180 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 5 (H) Unique B 0
regurgitator4 694 regurgitator1 2 MawFiend regurgitator1 regurgitator Regurgitator eats and spits corpses CS 1 2 3 9 13 1 30 57 85 regurgitator regurgitator 12 13 12 11 90 90 90 20 20 20 60 60 60 10 20 30 9 9 9 25 27 30 regurgitatorcorpse 1 1 1 1 1 1 RegurgitatorEat S1 3 125 110 100 -50 -40 -33 75 135 1 1 51 51 51 15 418 566 136 174 135 222 138 480 640 142 112 128 218 158 480 640 142 112 128 218 158 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 5 (H) Unique B 0
vampire6 695 vampire1 vampire7 3 BloodLord vampire1 vampire Vampire steals life VA 1 1 2 3 9 9 1 25 55 83 vampire vampire 12 13 12 11 85 85 85 35 40 45 24 24 24 25 34 47 7 7 7 1 1 1 1 1 1 VampireFireball SC 5 VampireFirewall SC 5 VampireMeteor SC 5 VampireMissile SC 1 125 110 100 -50 -40 -25 60 75 85 75 75 100 58 58 150 75 4 1 45 45 45 15 304 420 138 121 76 178 140 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 75 75 102 38 75 75 150 75 75 75 150 112 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 5 (H) Unique C 0
vampire7 696 vampire1 vampire8 0 GhoulLord vampire1 vampire Vampire steals life VA 1 1 2 3 9 9 1 25 55 83 vampire vampire 12 13 12 11 85 85 85 35 40 45 24 24 24 25 34 47 7 7 7 1 1 1 1 1 1 VampireFireball SC 5 VampireFirewall SC 5 VampireMeteor SC 5 VampireMissile SC 1 125 110 100 -50 -40 -25 60 75 85 75 75 100 58 58 155 75 4 1 45 45 45 15 304 420 138 121 76 178 140 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 75 75 102 38 75 75 150 75 75 75 150 112 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 5 (H) Unique C 0
vampire8 697 vampire1 3 DarkLord vampire1 vampire Vampire steals life VA 1 1 2 3 9 9 1 25 55 83 vampire vampire 12 13 12 11 85 85 85 35 40 45 24 24 24 25 34 47 7 7 7 1 1 1 1 1 1 VampireFireball SC 5 VampireFirewall SC 5 VampireMeteor SC 5 VampireMissile SC 1 125 110 100 -50 -40 -25 60 75 85 75 75 100 58 58 160 75 4 1 45 45 45 15 304 420 138 121 76 178 140 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 75 75 102 38 75 75 150 75 75 75 150 112 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 5 (H) Unique C 0
reanimatedhorde6 698 reanimatedhorde1 0 UnholyCorpse reanimatedhorde1 zombie ReanimatedHorde re 1 2 4 4 6 2 42 65 85 reanimatedhorde reanimatedhorde 12 13 12 11 70 80 85 70 70 70 10 12 14 35 45 45 35 35 35 65 65 65 25 22 19 1 1 1 1 1 1 Self-resurrect S1 1 Charge seq_reanimatedcharge 1 125 100 91 -50 -33 -25 75 95 75 125 75 75 145 1 1 82 82 82 15 228 340 170 185 52 134 207 52 134 140 220 270 105 84 105 165 202 90 180 150 220 270 105 84 105 165 202 90 180 150 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
dkfig1 699 doomknight1 dkfig2 0 DoomKnight doomknight1 doomknight DoomKnight Fighter UM 1 2 3 7 8 1 24 56 82 doomknight doomknight 12 13 12 11 90 95 100 10 5 5 80 85 90 10 10 10 1 1 1 1 1 1 1 125 100 58 -50 -33 -25 105 45 45 65 125 45 45 65 58 155 50 50 75 1 1 43 43 43 15 262 346 170 118 104 226 138 240 300 172 80 105 225 270 240 300 172 80 105 225 270 A1 rand 60 46 93 75 60 45 90 112 60 45 90 150 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 5 (H) Unique A 0
dkfig2 700 doomknight1 0 DoomKnight doomknight1 doomknight DoomKnight Fighter UM 1 2 3 7 8 1 24 56 82 doomknight doomknight 12 13 12 11 90 95 100 10 5 5 80 85 90 10 10 10 1 1 1 1 1 1 1 125 100 58 -50 -33 -25 105 45 45 65 125 45 45 65 58 165 50 50 75 1 1 43 43 43 15 262 346 170 118 104 226 138 240 300 172 80 105 225 270 240 300 172 80 105 225 270 A1 rand 60 46 93 75 60 45 90 112 60 45 90 150 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 5 (H) Unique A 0
dkmag1 701 doomknight3 dkmag2 0 OblivionKnight doomknight3 doomknight OblivionKnight Mage UM 1 1 dkfig1 2 4 1 2 9 8 1 30 58 85 doomknight doomknight 12 13 12 11 6 7 8 25 26 27 500 350 200 50 50 50 80 85 90 30 30 30 30 30 30 9 10 11 1 1 1 1 DoomKnightMissile S1 1 MonBoneArmor S1 6 MonBoneSpirit S1 2 Decrepify S2 3 Bestow seq_undeadbestow 2 MonCurseCast S2 3 125 100 58 -50 -33 -25 85 85 85 85 85 85 105 85 58 85 85 165 100 1 1 51 51 51 15 260 342 170 140 104 230 138 240 300 172 168 90 202 240 240 300 172 168 90 202 240 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 5 (H) Unique B 0
dkmag2 702 doomknight3 0 OblivionKnight doomknight3 doomknight OblivionKnight Mage UM 1 1 dkfig2 2 4 1 2 9 8 1 30 58 85 doomknight doomknight 12 13 12 11 6 7 8 25 26 27 500 350 200 50 50 50 80 85 90 30 30 30 30 30 30 9 10 11 1 1 1 1 DoomKnightMissile S1 1 MonBoneArmor S1 6 MonBoneSpirit S1 2 Decrepify S2 3 Bestow seq_undeadbestow 2 MonCurseCast S2 3 125 100 58 -50 -33 -25 85 85 85 85 85 85 105 85 58 85 85 170 100 1 1 51 51 51 15 260 342 170 140 104 230 138 240 300 172 168 90 202 240 240 300 172 168 90 202 240 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 5 (H) Unique B 0
mummy6 703 mummy1 3 Cadaver mummy1 mummy Mummy MM 1 4 5 4 4 1 25 55 83 mummy mummy 12 13 12 11 25 25 25 50 50 50 100 100 100 55 55 55 10 10 10 1 1 1 1 1 1 125 91 58 -50 -40 -25 95 105 75 75 75 155 1 1 45 45 45 15 140 308 138 95 86 160 140 86 160 140 200 280 142 80 90 158 158 200 280 142 80 90 158 158 A1 pois 35 84 159 1200 35 82 165 1200 35 82 165 1200 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 5 (H) Unique C 0
reanimatedhorde22 704 reanimatedhorde22 4 DefiledWarrior reanimatedhorde5 zombie ReanimatedHorde re 1 2 4 4 6 2 65 97 110 reanimatedhorde reanimatedhorde 12 13 12 11 70 80 85 20 15 12 12 15 18 35 45 45 35 35 35 65 65 65 25 22 19 30 22 15 1 1 1 1 1 1 Self-resurrect S1 1 Charge seq_reanimatedcharge 1 125 100 91 -50 -33 -25 50 75 50 50 50 95 75 75 50 50 50 125 75 75 50 58 75 125 3 1 82 82 82 15 228 340 170 185 52 134 207 52 134 140 220 270 105 84 105 165 202 90 180 150 220 270 105 84 105 165 202 90 180 150 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
siegebeast22 705 siegebeast22 4 DeamonSteed siegebeast5 siegebeast SiegeBeast ox 1 imp22 1 3 4 1 1 7 12 1 66 97 110 siegebeast siegebeast 12 13 12 11 25 25 25 50 80 85 1 3 5 15 15 15 1 3 5 50 50 50 100 100 100 1 1 1 1 Siege Beast Stomp A2 5 Charge seq_siegebeastcharge 7 125 125 125 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 100 58 165 50 3 1 82 82 82 15 758 758 142 314 132 182 376 720 840 135 208 210 330 255 720 840 135 208 210 330 255 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
imp22 706 imp22 4 Imp5 imp5 imp Imp ip 1 1 2 4 8 8 1 66 97 110 imp imp 12 13 12 11 impmiss25 1 1 1 1 1 1 1 Imp Teleport S1 1 ImpBolt S2 1 Imp Fireball S2 3 Imp Fire Missile A1 1 Imp Inferno SC 5 125 125 125 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 145 50 58 50 3 1 63 63 63 15 90 130 136 146 90 130 165 96 90 130 165 96 A1 fire 100 60 105 100 120 165 100 135 210 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
snowyeti22 707 snowyeti22 3 SnowYeti4 snowyeti4 snowyeti Brute io 1 2 4 8 8 1 65 97 110 brute brute 12 13 12 11 0 0 0 90 93 97 40 60 60 1 1 1 1 125 125 125 -15 -10 -5 50 50 50 50 100 50 75 50 50 50 110 50 75 50 50 50 235 50 3 1 82 82 82 15 378 456 170 230 51 129 207 62 146 138 310 420 128 88 98 172 142 112 165 128 310 420 128 88 98 172 142 112 165 128 A1 stun 100 111 132 300 100 112 150 300 100 112 150 300 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
minion22 708 minion22 7 GreaterIceSpawn minion8 minion Minion xx 1 2 4 8 11 2 67 97 110 minion minion 12 13 12 11 70 75 80 15 13 10 50 55 60 15 15 15 50 55 55 1 1 1 1 1 125 110 100 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 58 40 185 40 3 1 82 82 82 15 380 474 162 241 116 146 226 140 174 244 200 250 150 64 112 150 150 105 172 165 200 250 150 64 112 150 150 105 172 165 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
suicideminion22 709 suicideminion22 7 InsaneIceSpawn suicideminion8 minion SuicideMinion xy 1 1 1 11 11 1 67 97 110 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 125 110 100 -50 -40 -33 50 45 95 50 50 50 75 45 125 50 50 50 75 45 58 40 185 40 3 1 82 82 82 15 78 114 136 257 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
overseer22 710 overseer22 4 HellWhip overseer5 overseer Overseer os 1 minion22 1 2 4 2 3 7 7 1 68 97 110 overseer overseer 12 13 12 11 250 250 250 70 70 70 50 50 50 17 17 17 7 7 7 100 100 100 50 55 55 1 1 1 1 Cry Help S1 1 Healing Vortex S2 1 Overseer Whip A2 1 Smite seq_genericspawner 1 125 125 125 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 58 45 185 50 3 1 82 82 82 15 758 758 136 151 92 176 189 152 302 140 300 380 135 100 90 165 202 135 240 158 300 380 135 100 90 165 202 135 240 501 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
succubus22 711 succubus22 4 Blood Temptress succubus5 succubus Succubus 0B 1 1 3 4 15 15 1 67 97 110 succubus succubus 12 13 12 11 90 93 95 50 25 10 50 50 50 25 25 25 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 1 125 110 100 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 91 75 75 145 3 1 82 82 82 15 190 304 170 170 70 128 188 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 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
succubuswitch22 712 succubuswitch22 4 Hell Witch succubuswitch5 succubus SuccubusWitch 0C 1 1 3 4 13 13 1 68 98 111 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 30 50 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 1 125 110 100 -50 -40 -33 50 50 50 50 105 50 75 50 50 50 125 50 75 50 50 91 185 50 3 1 82 82 82 15 190 304 170 172 70 128 207 120 180 172 116 75 135 180 120 180 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
frozenhorror22 713 frozenhorror1 frozen24 4 Frozen Horror4 frozenhorror4 frozenhorror FrozenHorror f0 1 2 3 4 4 1 69 98 111 frozenhorror frozenhorror 12 13 12 11 60 85 90 40 45 50 80 80 80 10 10 10 1 1 1 1 1 Horror Arctic Blast seq_horrorarcticblast 6 125 110 100 0 0 33 50 50 50 50 100 50 75 50 50 50 125 50 75 50 50 58 215 58 3 1 82 82 82 15 568 758 162 289 87 146 189 380 460 150 96 90 165 150 380 460 150 96 90 165 150 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
bloodlord22 714 bloodlord22 4 Blood Lord5 bloodlord5 bloodlord BloodLord L3 1 1 2 10 10 1 70 98 111 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 80 80 80 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 0 0 0 50 50 50 50 50 50 75 50 50 50 50 50 91 58 145 58 58 58 3 1 82 82 82 15 566 758 199 337 100 224 282 100 224 282 480 600 195 168 120 180 270 120 180 270 480 600 195 168 120 180 270 120 180 270 A1 fire 33 105 120 33 105 120 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
deathmauler22 715 deathmauler22 4 Death Mauler5 deathmauler5 deathmauler DeathMauler m5 1 3 4 7 7 1 71 98 111 deathmauler deathmauler 12 13 13 13 75 75 75 65 65 65 21 21 21 90 90 90 1 1 1 1 DeathMaul seq_deathmaulerdig 5 125 110 100 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 75 75 170 50 3 1 82 82 82 15 246 304 199 209 76 111 376 230 290 142 84 112 210 172 230 290 142 84 112 210 172 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
putriddefiler22 716 putriddefiler22 4 Putrid Defiler5 putriddefiler5 putriddefiler PutridDefiler 45 1 1 1 7 7 1 73 99 111 putriddefiler putriddefiler 12 13 13 13 15 15 15 5 5 5 1 1 1 1 1 1 1 Impregnate S1 1 125 110 100 -50 -40 -33 50 50 58 58 58 75 75 50 75 75 75 75 75 50 75 75 75 145 3 1 82 82 82 15 228 380 199 182 50 140 188 160 260 98 88 45 135 165 160 260 98 88 45 135 165 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 1 0
painworm22 717 painworm22 4 Pain Worm5 painworm5 vilekind VileDog 46 1 2 2 9 11 1 73 99 111 vilechild vilechild 12 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 125 110 100 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 50 50 175 50 3 1 82 82 82 15 128 212 136 6 46 93 188 70 130 128 4 45 90 120 70 130 128 4 45 90 120 0
baalminion22 718 baalminion22 2 Baals Minion baalminion3 demon BaalMinion 43 1 1 1 9 9 0 74 99 111 baalminion baalminion 12 13 12 11 90 90 90 85 85 85 50 50 50 17 17 17 1 1 1 1 1 Smite A2 1 125 100 75 -50 -40 -33 50 50 75 50 75 120 75 50 120 50 75 120 75 50 145 58 75 120 3 1 82 82 82 15 952 1332 140 814 45 135 376 26 248 357 860 960 202 198 120 195 315 120 210 315 860 960 202 198 120 195 315 120 210 315 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 1 0
clawviper22 719 clawviper22 1 SerpentMagus clawviper10 clawviper ClawViperEx SD 1 1 2 3 10 15 1 73 99 111 clawviper clawviper 12 13 12 11 60 65 65 10 13 15 90 90 90 80 80 80 5 5 5 2 2 2 18 18 18 50 50 50 viper_bonespear 1 1 1 1 1 1 Charge seq_serpentcharge 5 125 100 75 -50 -45 -40 50 65 45 45 45 45 75 85 50 50 50 50 75 95 58 50 50 140 3 1 37 37 37 15 140 190 182 106 112 165 225 100 130 150 140 190 172 80 112 165 225 100 130 150 140 190 172 80 112 165 225 100 130 150 A1 mag 100 75 150 100 75 150 100 75 150 A2 mag 100 50 100 100 75 150 100 75 150 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
sk_archer22 720 sk_archer22 4 HorrorArcher sk_archer10 skeleton SkeletonBow SK 1 1 2 5 6 6 2 75 99 111 sk_archer sk_archer 12 13 12 11 90 95 99 15 12 11 50 50 50 5 5 5 12 12 12 skbowarrow8 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 50 50 58 58 58 165 75 50 75 75 75 165 75 35 91 91 91 165 3 1 79 79 79 15 140 200 160 102 15 38 172 140 200 150 76 52 75 172 140 200 150 76 52 75 172 A1 rand 100 75 120 112 100 75 120 150 100 75 120 188 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
dkfig22 721 dkfig22 0 DoomKnight doomknight1 doomknight DoomKnight Fighter UM 1 2 3 7 8 1 76 99 111 doomknight doomknight 12 13 12 11 90 95 100 10 5 5 80 85 90 10 10 10 1 1 1 1 1 1 1 125 100 58 -50 -33 -25 50 50 105 45 45 65 75 50 125 45 45 65 75 50 165 50 50 75 3 1 43 43 43 15 262 346 170 118 104 226 138 240 300 172 80 105 225 270 240 300 172 80 105 225 270 A1 rand 60 46 93 75 60 45 90 112 60 45 90 150 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
doomknight22 722 doomknight22 0 AbyssKnight doomknight2 doomknight AbyssKnight Fighter Mage UM 1 1 1 3 8 8 1 77 99 111 doomknight doomknight 12 13 12 11 40 75 100 80 80 80 90 94 97 10 5 5 6 6 5 1 1 0 70 65 50 40 40 40 1 1 1 1 1 DoomKnightMissile S1 3 MonBoneArmor S1 5 MonBoneSpirit S1 2 125 100 58 -50 -33 -25 50 50 65 105 65 65 75 50 65 105 65 65 75 50 65 125 65 75 3 1 47 47 47 15 258 344 170 129 106 230 140 240 300 172 112 135 210 255 240 300 172 112 135 210 255 A1 rand 40 44 87 75 40 45 90 112 40 45 90 150 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
succubus23 723 succubus22 4 Blood Temptress succubus5 succubus Succubus 0B 1 1 3 4 15 15 1 72 98 11 succubus succubus 12 13 12 11 90 93 95 50 25 10 50 50 50 25 25 25 15 13 11 15 15 15 3 3 4 50 80 1 1 1 1 1 1 1 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 1 125 110 100 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 91 75 75 145 3 1 82 82 82 15 190 304 170 170 70 128 188 120 180 172 72 75 135 232 120 180 172 72 75 135 232 A2 mag 100 60 112 100 60 112 100 60 112 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
andariel1 724 andariel1 0 Andariel andariel demon Andariel AN 1 1 1 9 9 0 35 68 90 andariel andariel 16 13 9 7 30 35 35 10 8 6 30 32 34 50 55 60 1 1 1 1 1 AndrialSpray seq_andarielspray 1 AndyPoisonBolt A1 1 125 91 58 -25 -15 0 35 50 -25 75 75 105 60 50 -25 75 75 75 91 60 -25 91 91 91 0 1 37 52 67 15 1000 1200 136 266 114 357 230 1000 1200 165 200 270 330 300 1000 1200 165 200 270 330 705 A1 pois 100 50 50 45 100 90 50 50 100 50 50 338 Mephisto Mephisto Mephisto Mephisto (N) Mephisto (N) Mephisto (N) Mephisto (H) Mephisto (H) Mephisto (H) 6 1 0
duriel1 725 duriel1 0 Duriel duriel demon Duriel DU 1 1 1 11 16 0 38 70 92 duriel duriel 13 13 13 5 5 6 33 33 33 50 50 50 1 1 1 1 1 Charge seq_durielcharge 5 Jab seq_durieljab 15 Smite seq_durielsmite 7 Holy Freeze NU 1 125 125 125 -20 -20 -20 20 50 45 45 75 45 45 50 75 75 100 75 75 58 100 100 120 100 0 1 37 59 82 15 1200 1400 138 320 210 270 302 210 240 378 1 2 200 1200 1400 180 240 210 285 165 172 248 225 40 50 135 1200 1400 180 240 210 285 165 172 248 225 40 50 135 A2 stun 100 22 100 30 100 45 Diablo Diablo Diablo Diablo (N) Diablo (N) Diablo (N) Diablo (H) Diablo (H) Diablo (H) 14 5 0
mephisto1 726 mephisto1 0 Mephisto mephisto mephisto demon Mephisto MP 1 1 1 9 9 0 44 79 99 mephisto mephisto 16 13 8 4 40 46 15 20 25 25 33 33 25 33 33 1 1 1 1 1 PrimeLightning A2 6 PrimeBolt A2 6 PrimePoisonNova A2 7 MephistoMissile A2 5 MephFrostNova A2 1 Blizzard A2 5 125 -25 -15 -10 15 50 58 58 50 75 40 50 75 75 50 75 45 75 100 100 100 100 0 1 37 67 82 15 1400 1600 196 426 442 663 376 1400 1600 240 320 240 330 300 1400 1600 240 320 240 330 300 Baal Baal Baal Baal (N) Baal (N) Baal (N) Baal (H) Baal (H) Baal (H) 22 0 0
diablo1 727 diablo1 0 Diablo diablo demon Diablo DI 1 1 1 7 7 0 49 79 99 diablo diablo 16 13 11 10 1 1 1 1 1 DiabLight SC 3 DiabCold S2 4 DiabFire S1 5 DiabWall S3 3 DiabRun seq_diablorun 5 PrimeFirewall S3 8 DiabPrison S3 1 125 75 -25 -15 -10 15 50 58 58 58 75 40 50 75 75 75 75 70 60 75 75 75 75 0 1 45 67 82 15 1600 1800 140 534 116 296 470 170 386 376 1600 1800 210 400 270 330 322 285 375 300 1600 1800 210 400 270 330 322 285 375 300 Baal Baal Baal Baal (N) Baal (N) Baal (N) Baal (H) Baal (H) Baal (H) 26 0 1 0
vilemother22 728 vilemother22 2 Grotesque vilemother3 vilekind VileMother VM 1 vilechild22 0 0 NU 2 3 8 8 1 78 100 112 vilemother vilemother 12 13 12 11 16 19 22 5 6 6 30 35 40 80 90 95 70 60 50 30 30 30 10 8 7 1 1 1 1 1 1 Nest seq_vileres 1 125 100 75 -50 -40 -33 25 50 50 50 65 50 50 50 50 50 95 50 91 50 50 50 185 50 3 1 51 51 51 15 456 588 104 179 135 285 138 400 500 120 104 120 195 165 400 500 120 104 120 195 165 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
vilechild22 729 vilechild22 2 GrotesqueWyrm vilechild3 vilekind VileDog VC 1 2 3 11 13 1 77 100 112 vilechild vilechild 11 13 12 11 80 85 90 10 10 10 80 85 90 1 1 1 1 1 1 125 100 75 -50 -40 -33 25 50 50 50 65 50 50 50 50 50 95 50 50 50 50 50 185 50 3 1 77 77 77 15 110 168 136 95 72 111 226 100 140 105 32 60 105 128 100 140 105 32 60 105 128 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
fingermage22 730 fingermage22 2 StormCaster fingermage3 fingermage FingerMage homing missiles FR 1 2 3 11 17 1 79 100 112 fingermage fingermage 12 13 12 11 80 60 60 80 85 95 70 70 70 50 50 50 15 20 26 5 5 5 40 40 40 12 10 8 1 1 1 1 1 1 FingerMageSpider S1 5 125 91 58 -50 -40 -25 25 50 85 85 50 50 50 50 100 100 50 50 75 50 50 125 50 50 3 1 51 51 51 15 304 418 136 138 80 183 138 160 220 180 108 82 180 180 160 220 180 108 82 180 180 Act 5 Wraith C Act 5 Champ C Act 5 Unique C Act 5 (N) Wraith C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) Wraith C Act 5 (H) Champ C Act 5 (H) Unique C 0
regurg22 731 regurg22 2 MawFiend regurgitator3 regurgitator Regurgitator eats and spits corpses CS 1 2 3 9 13 1 78 100 112 regurgitator regurgitator 12 13 12 11 90 90 90 20 20 20 60 60 60 10 20 30 9 9 9 25 27 30 regurgitatorcorpse 1 1 1 1 1 1 RegurgitatorEat S1 3 125 110 100 -50 -40 -33 25 50 50 50 50 50 50 50 50 50 50 50 75 50 50 50 50 135 3 1 51 51 51 15 418 566 136 174 135 222 138 480 640 142 112 128 218 158 480 640 142 112 128 218 158 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
megademon22 732 megademon22 2 VenomLord megademon3 megademon Megademon DM 1 2 3 11 17 1 78 100 112 megademon megademon 12 13 11 9 60 75 90 50 60 65 80 95 97 70 70 70 70 70 70 75 60 45 1 1 1 1 1 MegademonInferno S1 8 125 110 91 -50 -40 -33 25 50 95 50 50 95 50 50 110 50 50 125 75 50 155 100 75 100 3 1 65 65 65 15 382 456 162 162 80 142 188 420 500 172 104 150 240 240 420 500 172 104 150 240 240 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
hellbovine22 733 hellbovine22 0 Hell Bovine hellbovine bovine Skeleton EC 1 3 5 6 6 1 80 101 113 hellbovine hellbovine 12 13 12 11 99 99 99 5 5 5 95 99 99 33 33 33 1 1 1 1 1 125 100 91 -50 -40 -33 25 50 50 50 50 50 58 40 50 50 50 50 75 58 75 75 75 58 3 1 49 49 49 15 266 570 142 150 226 334 140 267 358 152 440 540 120 64 195 270 195 180 255 232 440 540 120 64 195 270 195 180 255 195 Cow Act 5 Champ C Act 5 Unique C Cow (N) Act 5 (N) Champ C Act 5 (N) Unique C Cow (H) Act 5 (H) Champ C Act 5 (H) Unique C 0
dkmage22 734 dkmage22 0 OblivionKnight doomknight3 doomknight OblivionKnight Mage UM 1 1 bloodlord23 2 4 1 2 9 8 1 81 101 113 doomknight doomknight 12 13 12 11 6 7 8 25 26 27 500 350 200 50 50 50 80 85 90 30 30 30 30 30 30 9 10 11 1 1 1 1 DoomKnightMissile S1 1 MonBoneArmor S1 6 MonBoneSpirit S1 2 Decrepify S2 3 Bestow seq_undeadbestow 2 MonCurseCast S2 3 125 100 58 -50 -33 -25 25 50 85 85 85 85 50 50 85 85 105 85 58 50 85 85 170 100 3 1 51 51 51 15 260 342 170 140 104 230 138 240 300 172 168 90 202 240 240 300 172 168 90 202 240 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 4 (H) H2H C Act 5 (H) Champ C Act 5 (H) Unique C 0
bloodlord23 735 bloodlord23 4 Blood Lord5 bloodlord5 bloodlord BloodLord L3 1 1 2 10 10 1 81 101 113 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 80 80 80 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 0 0 0 50 50 50 50 50 50 75 50 50 50 50 50 91 58 145 58 58 58 3 1 82 82 82 15 566 758 199 337 100 224 282 100 224 282 480 600 195 168 120 180 270 120 180 270 480 600 195 168 120 180 270 120 180 270 A1 fire 33 105 120 33 105 120 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
council22 736 council22 0 Council Member baalhighpriest baalhighpriest councilmember HighPriest HP 1 2 3 11 13 0 83 101 113 councilmember councilmember 13 13 12 11 65 65 65 20 25 25 125 100 75 45 50 50 80 80 80 9 9 9 12 12 12 30 30 30 highpriestlightning 1 1 1 1 1 Hydra S1 4 ZakarumHeal S1 4 125 100 75 -50 -40 -33 25 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 3 1 65 65 65 15 380 758 136 240 80 182 140 440 540 150 180 105 225 202 440 540 150 180 105 225 202 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
big22 737 big22 0 Damned bighead10 bighead Bighead BH 1 1 2 3 13 13 1 86 102 114 bighead bighead 12 13 12 11 90 33 33 40 30 30 85 85 85 60 70 80 bighead6 1 1 1 1 1 125 110 100 -50 -40 -33 25 50 75 105 100 58 50 50 75 125 100 58 50 50 110 125 110 75 3 1 29 29 29 15 160 260 130 106 75 150 150 160 240 135 100 75 150 165 160 240 135 100 75 150 165 A2 ltng 100 240 300 100 240 300 100 240 300 A1 ltng 15 45 90 35 45 90 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
goat22 738 goat22 4 DeathClan goatman10 goatman Goatman GM 1 2 4 13 13 1 85 102 114 goatman goatman 12 13 12 11 80 90 95 10 7 7 80 90 99 1 1 1 1 1 1 1 125 115 105 -50 -40 -33 25 55 55 50 50 50 50 75 50 50 125 75 65 75 58 58 190 75 3 1 37 37 37 15 230 280 145 106 120 210 120 230 280 135 80 120 210 128 230 280 135 80 120 210 128 A1 cold 50 22 50 38 50 22 50 75 50 22 50 112 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
seer23 739 seer23 4 HellWhip overseer5 overseer Overseer os 1 minion22 1 2 4 2 3 7 7 1 86 102 114 overseer overseer 12 13 12 11 250 250 250 70 70 70 50 50 50 17 17 17 7 7 7 100 100 100 50 55 55 1 1 1 1 Cry Help S1 1 Healing Vortex S2 1 Overseer Whip A2 1 Smite seq_genericspawner 1 125 125 125 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 58 45 185 50 3 1 82 82 82 15 758 758 136 151 92 176 189 152 302 140 300 380 135 100 90 165 202 135 240 158 300 380 135 100 90 165 202 135 240 501 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
beast23 740 beast23 4 DeamonSteed siegebeast5 siegebeast SiegeBeast ox 1 imp22 1 3 4 1 1 7 12 1 85 102 114 siegebeast siegebeast 12 13 12 11 25 25 25 50 80 85 1 3 5 15 15 15 1 3 5 50 50 50 100 100 100 1 1 1 1 Siege Beast Stomp A2 5 Charge seq_siegebeastcharge 7 125 125 125 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 100 58 165 50 3 1 82 82 82 15 758 758 142 314 132 182 376 720 840 135 208 210 330 255 720 840 135 208 210 330 255 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
vampire23 741 vampire23 3 DarkLord vampire1 vampire Vampire steals life VA 1 1 2 3 9 9 1 89 103 115 vampire vampire 12 13 12 11 85 85 85 35 40 45 24 24 24 25 34 47 7 7 7 1 1 1 1 1 1 VampireFireball SC 5 VampireFirewall SC 5 VampireMeteor SC 5 VampireMissile SC 1 125 110 100 -50 -40 -25 60 50 50 50 75 50 85 50 50 50 75 75 100 50 58 58 160 75 3 1 45 45 45 15 304 420 138 121 76 178 140 300 400 150 120 75 150 180 300 400 150 120 75 150 180 A1 cold 75 75 102 38 75 75 150 75 75 75 150 112 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
unrav23 742 unrav23 2 Horadrim Ancient unraveler1 unraveler GreaterMummy raises undead GY 1 1 1 6 6 1 89 103 114 unraveler unraveler 12 13 12 11 85 85 85 45 50 55 55 55 55 85 90 95 24 27 31 mummyex 1 1 1 1 1 Resurrect2 seq_mummyres 1 Bestow seq_mummyres 1 UnHolyBoltEx seq_mummyres 1 125 91 58 -50 -40 -33 25 50 50 50 50 75 50 50 50 50 50 75 58 125 75 75 75 50 2 1 65 65 65 15 384 470 136 225 182 230 140 340 420 180 240 165 210 240 340 420 180 240 165 210 240 A1 pois 30 180 228 2250 30 180 225 2250 30 180 225 2250 Act 5 Cast C Act 5 Champ B 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
sk_archer23 743 sk_archer23 4 HorrorArcher sk_archer10 skeleton SkeletonBow SK 1 1 3 5 6 6 2 90 103 115 sk_archer sk_archer 12 13 12 11 90 95 99 15 12 11 50 50 50 5 5 5 12 12 12 skbowarrow8 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 50 50 58 58 58 165 75 50 75 75 75 165 75 35 91 91 91 165 2 1 79 79 79 15 280 400 160 102 15 38 172 280 400 150 76 52 75 172 280 400 150 76 52 75 172 A1 rand 100 75 120 112 100 75 120 150 100 75 120 188 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
horde23 744 horde23 4 DefiledWarrior reanimatedhorde5 zombie ReanimatedHorde re 1 2 4 4 6 2 90 104 114 reanimatedhorde reanimatedhorde 12 13 12 11 70 80 85 20 15 12 12 15 18 35 45 45 35 35 35 65 65 65 25 22 19 30 22 15 1 1 1 1 1 1 Self-resurrect S1 1 Charge seq_reanimatedcharge 1 125 100 91 -50 -33 -25 50 75 50 50 50 95 75 75 50 50 50 125 75 75 50 58 75 125 2 1 82 82 82 15 228 340 170 185 52 134 207 52 134 140 220 270 105 84 105 165 202 90 180 150 220 270 105 84 105 165 202 90 180 150 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
sk_cold23 745 sk_cold23 2 BoneMage skmage_cold1 skeleton SkeletonMage SK 1 1 2 3 7 7 1 91 104 114 sk_mage sk_mage 12 13 11 10 35 65 85 15 18 20 30 30 30 5 6 7 0 30 50 15 18 20 20 20 20 5 5 5 skmagecold 1 1 1 1 1 SkeletonRaise seq_skeletonraise 1 -50 -40 -25 25 50 50 50 55 75 50 50 50 50 100 125 58 50 75 50 185 135 2 1 29 29 29 15 240 400 136 60 240 400 135 88 240 400 135 88 A1 cold 100 75 120 75 100 135 225 150 100 135 225 225 Act 5 Cast C Act 5 Champ A 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
frozen24 746 frozenhorror1 4 Frozen Horror4 frozenhorror4 frozenhorror FrozenHorror f0 1 2 3 4 4 1 91 104 115 frozenhorror frozenhorror 12 13 12 11 60 85 90 40 45 50 80 80 80 10 10 10 1 1 1 1 1 Horror Arctic Blast seq_horrorarcticblast 6 125 110 100 0 0 33 50 50 50 50 100 50 75 50 50 50 125 50 75 50 50 58 215 58 2 1 82 82 82 15 568 758 162 289 87 146 189 380 460 150 96 90 165 150 380 460 150 96 90 165 150 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
bm24 747 bm24 2 Baals Minion baalminion3 demon BaalMinion 43 1 1 1 9 9 0 91 104 115 baalminion baalminion 12 13 12 11 90 90 90 85 85 85 50 50 50 17 17 17 1 1 1 1 1 Smite A2 1 125 100 75 -50 -40 -33 50 50 75 50 75 120 75 50 120 50 75 120 75 50 145 58 75 120 2 1 82 82 82 15 952 1332 140 814 45 135 376 26 248 357 860 960 202 198 120 195 315 120 210 315 860 960 202 198 120 195 315 120 210 315 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 1 0
dm24 748 dm24 4 Death Mauler5 deathmauler5 deathmauler DeathMauler m5 1 3 4 7 7 1 91 104 115 deathmauler deathmauler 12 13 13 13 75 75 75 65 65 65 21 21 21 90 90 90 1 1 1 1 DeathMaul seq_deathmaulerdig 5 125 110 100 -50 -40 -33 50 50 50 50 50 50 75 50 50 50 50 50 75 50 75 75 170 50 2 1 82 82 82 15 246 304 199 209 76 111 376 230 290 142 84 112 210 172 230 290 142 84 112 210 172 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
vm24 749 vm24 2 Grotesque vilemother3 vilekind VileMother VM 1 vilechild22 0 0 NU 2 3 8 8 1 91 104 115 vilemother vilemother 12 13 12 11 16 19 22 5 6 6 30 35 40 80 90 95 70 60 50 30 30 30 10 8 7 1 1 1 1 1 1 Nest seq_vileres 1 125 100 75 -50 -40 -33 25 50 50 50 65 50 50 50 50 50 95 50 91 50 50 50 185 50 2 1 51 51 51 15 456 588 104 179 135 285 138 400 500 120 104 120 195 165 400 500 120 104 120 195 165 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
sy24 750 sy24 3 SnowYeti4 snowyeti4 snowyeti Brute io 1 3 4 8 8 1 91 104 115 brute brute 12 13 12 11 0 0 0 90 93 97 40 60 60 1 1 1 1 125 125 125 -15 -10 -5 50 50 50 50 100 50 75 50 50 50 110 50 75 50 50 50 235 50 2 1 82 82 82 15 378 456 170 230 51 129 207 62 146 138 310 420 128 88 98 172 142 112 165 128 310 420 128 88 98 172 142 112 165 128 A1 stun 100 111 132 300 100 112 150 300 100 112 150 300 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
fallen25 751 fallen25 4 WarpedFallen fallen5 fallen Fallen FA 1 1 1 9 9 2 91 104 116 fallen fallen 12 13 12 11 75 80 80 30 30 30 90 95 99 40 45 50 1 1 1 1 1 1 1 125 110 100 -50 -40 -33 50 75 75 75 75 75 91 91 91 91 91 91 50 100 100 100 100 100 2 1 81 81 81 15 320 400 136 214 112 140 140 68 146 140 320 400 105 160 112 135 135 75 150 128 320 400 105 160 105 135 135 75 150 128 A1 cold 10 30 38 262 10 30 38 338 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
fallenshaman25 752 fallenshaman25 4 WarpedShaman fallenshaman5 fallen FallenShaman raises Warped Fallen FS 1 fallen25 1 1 3 4 1 1 7 7 1 91 104 116 fallenshaman fallenshaman 14 13 12 11 75 85 90 90 90 95 100 90 80 24 28 30 15 15 15 1 1 1 1 1 Resurrect seq_shamanresurrect 1 ShamanFire seq_shamanresurrect 1 125 100 91 -50 -40 -33 25 45 95 50 50 50 50 75 125 50 50 50 50 75 145 50 50 50 2 1 65 65 65 15 400 480 136 214 112 182 140 400 480 112 192 112 135 158 400 480 112 192 105 135 158 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
fetish25 753 fetish25 0 RatMan fetish11 fetish Fetish FE 1 2 3 7 7 0 92 105 116 fetish fetish 12 13 13 13 0 0 0 55 55 55 20 20 20 0 0 0 0 0 0 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 25 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 2 1 23 23 23 15 128 220 136 81 44 129 188 100 160 165 68 60 135 188 100 160 165 68 60 135 188 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
bonefetish25 754 bonefetish25 4 Undead StygianDoll bonefetish5 undeadfetish Fetish FK 1 2 4 11 11 1 92 105 116 bonefetish bonefetish 12 13 12 11 100 100 100 10 9 8 5 5 5 33 33 33 1 1 1 1 1 1 1 1 125 91 58 -50 -33 0 25 50 50 50 50 75 50 50 50 50 50 85 50 50 58 50 100 145 2 1 43 43 43 15 130 214 138 84 104 152 138 130 210 202 100 98 158 135 130 210 202 100 98 158 135 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
fetishblow25 755 fetishblow25 4 StygianDoll fetishblow5 fetish FetishBlowgun FC 1 1 3 3 11 11 1 92 105 116 fetishblow fetishblow 12 13 12 11 20 20 20 30 30 30 blowgun 1 1 1 1 1 SkeletonRaise seq_fethisraise 1 125 125 125 -50 -40 -33 25 50 50 50 50 50 50 50 50 50 50 50 50 50 125 50 50 75 2 1 55 55 55 15 130 214 138 70 22 50 188 90 150 165 72 30 50 165 90 150 165 72 30 50 165 A1 pois 7 15 15 38 12 38 38 75 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
scarab25 756 scarab25 0 SteelWeevil scarab1 scarab Scarab SC 1 scarab25 1 1 4 5 3 4 7 7 1 92 105 117 scarab scarab 12 13 12 11 90 94 96 70 70 70 70 70 70 70 75 80 20 24 28 1 1 1 1 1 Jab seq_scarabjab 5 125 100 75 -50 -40 -25 25 50 50 50 50 50 50 50 50 50 50 50 75 50 50 125 50 50 3 1 43 43 43 15 134 222 138 89 76 226 138 76 178 138 1 2 95 140 220 218 88 82 165 180 82 165 210 40 70 95 140 220 218 88 82 165 180 82 165 210 40 70 95 A1 ltng 30 27 38 30 22 45 30 22 45 A2 ltng 10 18 25 10 22 45 10 22 45 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
willowisp25 757 willowisp25 0 BurningSoul willowisp1 willowisp WillOWisp drains mana WW 1 1 2 4 16 16 1 92 105 117 willowisp willowisp 12 13 12 11 70 70 75 90 90 90 30 30 30 willowisplightningbolt2 1 1 1 1 1 1 Chain Lightning SC 4 -50 -33 0 70 50 50 105 50 50 95 50 50 125 50 75 115 75 50 125 58 140 2 1 49 49 49 15 174 300 136 87 51 226 140 170 300 172 96 68 172 180 170 300 172 96 68 172 180 A1 mana 90 24 108 90 150 300 90 300 450 SC ltng 100 5 120 100 8 240 100 8 285 Act 5 Wraith C Act 5 Champ C Act 5 Unique C Act 5 (N) Wraith C Act 5 (N) Champ C Act 5 (N) Unique C Act 5 (H) Wraith C Act 5 (H) Champ C Act 5 (H) Unique C 1 1 0
baboon25 758 baboon25 3 TempleGuard baboon1 baboon Baboon BB 1 3 4 8 15 1 92 105 117 baboon baboon 12 13 12 11 33 33 33 20 30 35 75 80 85 50 50 50 1 2 3 1 1 1 1 1 1 125 125 125 -50 -40 -33 25 50 50 50 50 50 50 50 50 50 50 50 58 50 50 125 58 50 2 1 43 43 43 15 214 302 138 103 76 226 138 76 226 138 180 270 165 88 75 195 180 75 165 195 180 270 165 88 75 135 180 75 165 195 A1 fire 50 45 135 50 45 135 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
dkfig26 759 dkfig26 0 DoomKnight doomknight1 doomknight DoomKnight Fighter UM 1 2 3 7 8 1 93 106 118 doomknight doomknight 12 13 12 11 90 95 100 10 5 5 80 85 90 10 10 10 1 1 1 1 1 1 1 125 100 58 -50 -33 -25 25 50 105 45 45 65 50 50 125 45 45 65 58 50 165 50 50 75 2 1 43 43 43 15 262 346 170 118 104 226 138 240 300 172 80 105 225 270 240 300 172 80 105 225 270 A1 rand 60 46 93 75 60 45 90 112 60 45 90 150 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
dkmag26 760 dkmag26 0 OblivionKnight doomknight3 doomknight OblivionKnight Mage UM 1 1 bloodlord26 2 3 1 2 9 8 1 93 106 118 doomknight doomknight 12 13 12 11 6 7 8 25 26 27 500 350 200 50 50 50 80 85 90 30 30 30 30 30 30 9 10 11 1 1 1 1 DoomKnightMissile S1 1 MonBoneArmor S1 6 MonBoneSpirit S1 2 Decrepify S2 3 Bestow seq_undeadbestow 2 MonCurseCast S2 3 125 100 58 -50 -33 -25 25 50 85 85 85 85 50 50 85 85 105 85 58 50 85 85 170 100 2 1 51 51 51 15 260 342 170 140 104 230 138 240 300 172 168 90 202 240 240 300 172 168 90 202 240 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
bloodlord26 761 bloodlord26 4 Blood Lord5 bloodlord5 bloodlord BloodLord L3 1 1 2 10 10 1 93 106 118 bloodlord bloodlord 12 13 12 11 90 90 90 85 85 85 80 80 80 10 10 10 1 1 1 1 BloodLordFrenzy A2 1 125 110 100 0 0 0 50 50 50 50 50 50 75 50 50 50 50 50 91 58 145 58 58 58 2 1 82 82 82 15 566 758 199 337 100 224 282 100 224 282 480 600 195 168 120 180 270 120 180 270 480 600 195 168 120 180 270 120 180 270 A1 fire 33 105 120 33 105 120 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
suicide26 762 suicide26 6 InsaneHellSpawn suicideminion7 minion SuicideMinion xy 1 1 1 11 11 2 93 106 118 suicideminion suicideminion 13 13 12 11 15 15 15 5 5 5 50 60 70 4 4 4 1 1 1 1 1 125 110 100 -50 -40 -33 25 50 65 50 50 50 50 50 65 50 50 50 58 50 145 40 58 40 2 1 82 82 82 15 78 116 136 250 150 225 40 80 128 56 150 225 40 80 128 56 150 225 0
brute26 763 brute26 4 GargantuanBeast brute1 brute Brute YE 1 1 1 4 4 1 93 106 119 brute brute 12 13 12 11 0 0 0 100 100 100 45 45 35 1 1 1 1 1 1 125 125 125 -50 -40 -33 25 50 50 50 50 50 50 50 50 50 50 50 75 50 50 50 125 50 1 1 57 57 57 15 258 430 136 129 100 152 152 152 201 152 290 420 128 96 105 180 142 165 210 150 290 420 128 96 105 180 142 165 210 150 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
thorn26 764 thorn26 3 Spikefist thornhulk4 thornhulk ThornHulk TH 1 3 5 4 4 1 93 106 119 thornhulk thornhulk 12 13 12 11 100 100 100 50 50 50 10 10 10 55 55 55 5 3 1 3 4 5 1 1 1 1 1 MonFrenzy A2 4 125 110 100 -50 -40 -33 25 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 175 50 2 1 47 47 47 15 304 494 136 142 134 222 140 116 222 140 380 460 210 104 135 240 158 112 225 180 380 460 210 104 135 240 158 112 225 180 A2 stun 100 10 100 10 100 10 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
bore26 765 bore26 3 Urdar blunderbore4 blunderbore blunderbore PinHead stun attack PN 1 2 4 9 9 1 93 106 119 pinhead pinhead 12 13 12 11 90 95 97 7 7 7 95 95 95 5 5 5 65 65 70 1 1 1 1 1 1 Smite seq_pinheadsmite 1 125 125 125 -50 -40 -33 25 50 50 50 75 50 50 50 75 75 75 75 80 50 100 100 100 50 2 1 70 70 70 15 320 400 136 151 114 204 188 182 226 140 360 440 120 104 135 210 165 180 232 150 360 440 120 104 135 210 165 180 232 150 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
arach27 766 arach27 0 Arach arach1 arach Arach SP 1 4 5 9 12 1 93 107 120 arach arach 12 13 12 11 75 85 90 55 55 55 20 20 20 8 8 8 45 45 45 1 1 1 1 1 SpiderLay A2 5 125 100 75 -50 -40 -25 25 50 50 50 50 50 50 50 50 50 50 50 75 50 145 50 75 50 3 1 41 41 41 15 302 380 138 122 141 220 138 300 380 202 88 120 180 150 300 380 202 88 120 180 150 A1 pois 50 39 60 4500 50 75 180 4500 50 75 180 4500 Act 3 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
viper27 767 viper27 1 SerpentMagus clawviper10 clawviper ClawViperEx SD 1 1 2 3 10 15 1 94 107 121 clawviper clawviper 12 13 12 11 60 65 65 10 13 15 90 90 90 80 80 80 5 5 5 2 2 2 18 18 18 50 50 50 viper_bonespear 1 1 1 1 1 1 Charge seq_serpentcharge 5 125 100 75 -50 -45 -40 25 65 45 45 45 45 50 85 50 50 50 50 50 95 58 50 50 140 1 1 37 37 37 15 140 190 182 106 112 165 225 100 130 150 140 190 172 80 112 165 225 100 130 150 140 190 172 80 112 165 225 100 130 150 A1 mag 100 75 150 100 75 150 100 75 150 A2 mag 100 50 100 100 75 150 100 75 150 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
arach28 768 arach28 0 Arach arach1 arach Arach SP 1 4 5 9 12 1 94 107 121 arach arach 12 13 12 11 75 85 90 55 55 55 20 20 20 8 8 8 45 45 45 1 1 1 1 1 SpiderLay A2 5 125 100 75 -50 -40 -25 25 50 50 50 50 50 50 50 50 50 50 50 75 50 145 50 75 50 3 1 41 41 41 15 302 380 138 122 141 220 138 300 380 202 88 120 180 150 300 380 202 88 120 180 150 A1 pois 50 39 60 4500 50 75 180 4500 50 75 180 4500 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
bovine31 769 bovine31 0 Hell Bovine hellbovine bovine Skeleton EC 1 4 5 8 8 1 94 108 122 hellbovine hellbovine 12 13 12 11 99 99 99 5 5 5 95 99 99 33 33 33 1 1 1 1 1 125 100 91 -50 -40 -33 25 50 50 50 50 50 58 40 50 50 50 50 75 58 75 75 75 58 2 1 49 49 49 15 266 570 142 150 226 334 140 267 358 152 440 540 120 64 195 270 195 180 255 232 440 540 120 64 195 270 195 180 255 195 Cow Act 5 Champ C Act 4 Unique C Cow (N) Act 5 (N) Champ C Act 5 (N) Unique C Cow (H) Act 5 (H) Champ C Act 5 (H) Unique C 0
council31 770 council31 0 Council Member baalhighpriest baalhighpriest councilmember HighPriest HP 1 3 4 11 13 0 95 108 122 councilmember councilmember 13 13 12 11 65 65 65 20 25 25 125 100 75 45 50 50 80 80 80 9 9 9 12 12 12 30 30 30 highpriestlightning 1 1 1 1 1 Hydra S1 4 ZakarumHeal S1 4 125 100 75 -50 -40 -33 25 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 2 1 65 65 65 15 380 758 136 240 80 182 140 440 540 150 180 105 225 202 440 540 150 180 105 225 202 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
bd33 771 bd33 1 Gloombat batdemon1 batdemon BatDemon shocking hit BT 1 3 4 13 13 1 95 109 122 batdemon batdemon 12 13 12 11 33 33 33 20 20 20 80 85 90 50 59 68 8 8 8 1 1 1 1 1 125 110 100 -50 -40 -33 25 50 50 50 50 50 50 50 50 75 50 50 50 50 58 125 58 50 1 1 47 47 47 15 200 302 136 95 98 152 140 159 248 219 200 300 165 64 98 105 150 120 172 300 200 300 165 64 98 105 150 120 172 300 A2 ltng 85 96 150 85 8 270 85 8 360 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 3 (H) H2H C Act 5 (H) Champ C Act 5 (H) Unique C 1 1 0
ww33 772 ww33 0 BurningSoul willowisp1 willowisp WillOWisp drains mana WW 1 1 2 4 16 16 1 95 109 124 willowisp willowisp 12 13 12 11 70 70 75 90 90 90 30 30 30 willowisplightningbolt2 1 1 1 1 1 1 Chain Lightning SC 4 -50 -33 0 70 50 50 105 50 50 95 50 50 125 50 75 115 75 50 125 58 140 1 1 49 49 49 15 200 300 136 87 51 226 140 200 300 172 96 68 172 180 200 300 172 96 68 172 180 A1 mana 90 24 108 90 150 300 90 300 450 SC ltng 100 5 120 100 8 240 100 8 285 Act 5 Wraith C Act 5 Champ C Act 5 Unique C Act 5 (N) Wraith 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 1 1 0
sw33 773 sw33 4 Hell Witch succubuswitch5 succubus SuccubusWitch 0C 1 1 4 5 13 13 1 95 109 123 succubus succubus 12 13 12 11 90 90 90 25 25 25 0 30 50 0 8 12 90 90 90 15 14 13 80 80 80 66 66 66 1 1 1 1 1 1 Amplify Damage S2 3 Weaken S2 3 Defense Curse S2 3 Blood Mana S2 3 SuccubusBolt S2 1 125 110 100 -50 -40 -33 50 50 50 50 105 50 75 50 50 50 125 50 75 50 50 91 185 50 2 1 82 82 82 15 190 304 170 172 70 128 207 190 304 172 116 75 135 180 180 300 172 116 75 135 180 A2 mag 100 60 112 100 60 112 100 60 112 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
dk33 774 dk33 0 AbyssKnight doomknight2 doomknight AbyssKnight Fighter Mage UM 1 1 1 3 8 8 1 95 109 125 doomknight doomknight 12 13 12 11 40 75 100 80 80 80 90 94 97 10 5 5 6 6 5 1 1 0 70 65 50 40 40 40 1 1 1 1 1 DoomKnightMissile S1 3 MonBoneArmor S1 5 MonBoneSpirit S1 2 125 100 58 -50 -33 -25 25 50 65 105 65 65 50 50 65 105 65 65 58 50 65 125 65 75 1 1 47 47 47 15 258 344 170 129 106 230 140 240 300 172 112 135 210 255 240 300 172 112 135 210 255 A1 rand 40 44 87 75 40 45 90 112 40 45 90 150 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
izzy33 775 izzy33 0 izual izual demon Izual 22 1 1 1 11 17 0 95 109 125 izual izual 16 13 10 6 45 50 50 50 50 50 66 66 66 0 75 100 20 5 0 3 4 4 1 1 1 1 Frost Nova SC 8 125 100 75 -50 -33 -25 30 55 55 55 100 55 55 55 55 55 100 55 55 55 55 55 100 55 0 1 82 82 82 15 932 1200 136 320 198 356 376 932 1200 180 240 180 240 300 1822 1822 180 320 180 240 300 A1 cold 100 63 126 75 100 75 120 112 100 75 120 150 Izual Izual Izual Izual (N) Izual (N) Izual (N) Izual (H) Izual (H) Izual (H) 0
baalcrab1 776 baalcrab 0 Baal Crab baalcrab demon BaalCrab 42 1 1 1 7 7 0 49 75 99 baalcrab baalcrab 16 13 11 10 1 1 1 1 1 Baal Nova S3 1 Baal Inferno seq_baalinferno 1 Baal Tentacle S2 1 Baal Cold Missiles A1 1 Baal Teleport A1 1 Defense Curse S3 3 Blood Mana S3 3 125 75 45 -15 -15 -15 58 58 58 75 75 75 75 75 75 75 75 75 75 0 1 67 75 89 15 12672 12672 140 6890 159 268 376 204 406 564 12672 12672 225 5168 180 270 375 202 360 375 12672 12672 225 5168 225 285 375 248 360 375 A1 fire 0 100 150 225 100 180 300 A2 frze 0 100 150 240 750 100 180 240 1500 Baal Baal Baal Baalq Baal (N) Baal (N) Baal (N) Baalq (N) Baal (H) Baal (H) Baal (H) Baalq (H) 0

View File

@ -1,611 +0,0 @@
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
ubermephisto 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
uberandariel 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
uberizual 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
uberduriel 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
uberbaal 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

View File

@ -1,60 +0,0 @@
type equiv1 equiv2 equiv3 strsing strplur *eol
0
undead 0
demon 0
insect 0
human 0
construct 0
lowundead undead 0
highundead undead 0
skeleton lowundead 0
zombie lowundead 0
bighead demon Afflicted Afflicted 0
foulcrow 0
fallen demon Fallen Fallen 0
brute Yeti Yeti 0
sandraider 0
wraith undead 0
corruptrogue demon 0
baboon 0
goatman demon 0
quillrat 0
sandmaggot 0
clawviper demon 0
sandleaper 0
pantherwoman 0
swarm insect HellSwarm HellSwarm 0
scarab insect 0
mummy lowundead 0
unraveler highundead 0
vulture 0
mosquito insect 0
willowisp 0
arach insect 0
thornhulk 0
vampire highundead 0
batdemon 0
fetish demon Fetish Fetish 0
blunderbore demon 0
undeadfetish lowundead demon Undead Fetish Undead Fetish 0
zakarum 0
frogdemon 0
tentacle 0
fingermage lowundead 0
golem construct 0
vilekind demon 0
regurgitator demon 0
doomknight lowundead 0
councilmember demon 0
megademon demon 0
bovine 0
siegebeast 0
snowyeti Yeti Yeti 0
minion 0
succubus demon 0
overseer demon 0
imp demon 0
frozenhorror 0
bloodlord demon 0
deathmauler 0
putriddefiler demon 0

View File

@ -1,44 +0,0 @@
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

View File

@ -1,18 +0,0 @@
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 30000 35000
charsi 512 960 128 4 1024 922 1024 5000 30000 35000
akara 512 1024 128 4 1024 922 1024 5000 30000 35000
lysander 512 1024 128 9 1024 922 1024 10000 30000 35000
drognan 512 1024 128 9 1024 922 1024 10000 30000 35000
elzix 512 1024 128 9 1024 922 1024 10000 30000 35000
fara 512 1024 128 9 1024 922 1024 10000 30000 35000
hratli 512 1024 128 17 1024 922 1024 15000 30000 35000
alkor 512 1024 128 17 1024 922 1024 15000 30000 35000
ormus 512 1024 128 17 1024 922 1024 15000 30000 35000
asheara 512 1024 128 17 1024 922 1024 15000 30000 35000
jamella 512 1024 128 41 1024 922 1024 20000 30000 35000
halbu 512 1024 128 41 1024 922 1024 20000 30000 35000
malah 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 30000 35000
drehya 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 30000 35000
larzuk 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 30000 35000
nihlathak 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 30000 35000

View File

@ -1,134 +0,0 @@
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

View File

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

View File

@ -1,575 +0,0 @@
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

View File

@ -1,575 +0,0 @@
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 0 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
TrappDoor 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 0 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 0 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 410 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) 411 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) 412 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

View File

@ -1,295 +0,0 @@
overlay Filename version 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 0 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 0 20 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 11 11 255 255 255 1 0
cast_resistfire AuraResistFireFrontCast 0 11 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 193 103 1 0
aura_resistfire AuraResistFireFront 0 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 193 103 1 0
cast_resistcold AuraResistColdBackCast 0 11 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 210 210 255 1 0
aura_resistcold AuraResistColdBack 0 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 210 210 255 1 0
cast_resistlight AuraResistLightningBackCast 0 11 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 255 200 1 0
aura_resistlight AuraResistLightningBack 0 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 255 200 1 0
cast_resistall AuraResistAllCast 0 20 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 1 10 211 148 255 1 0
aura_resistall_front AuraResistAllFront 0 20 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 6 6 211 148 255 1 0
aura_resistall_back AuraResistAllBack 0 20 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 6 6 211 148 255 1 0
aura_might_front AuraMightFront 0 15 Paladin 0 1 0 1 1 4 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
aura_might_back AuraMightBack 0 15 Paladin 1 1 0 1 1 4 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
aura_prayer_front AuraPrayerFront 0 16 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
aura_prayer_back AuraPrayerBack 0 16 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
aura_holyfire_front AuraHolyFireFront 0 12 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
aura_holyfire_back AuraHolyFireBack 0 12 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hit_holyfire AuraHolyFireHit 0 12 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
target_holyfire AuraHfireIndicate 0 19 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
aura_thorns_front AuraThornsFront 0 18 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
aura_thorns_back AuraThornsBack 0 18 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hit_thorns AuraThornsHit 0 10 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
target_thorns AuraHfireIndicate 0 19 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
aura_defiance_front AuraDefianceFront 0 15 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
aura_defiance_back AuraDefianceBack 0 15 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
aura_fanatic AuraFanatic 0 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 0 17 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
receiving AmazonHealSpell 0 20 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 8 255 184 199 1 0
cast_undead HolyBoltCloud 0 16 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
fire_cast_1 FireCast_for_Sorceress 0 14 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 178 64 1 0
fire_cast_2 FireCast2 0 16 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 178 64 1 0
ice_cast_1 IceCastNew01 0 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
ice_cast_2 IceCastNew02 0 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
ice_cast_3 IceCastNew03 0 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
light_cast_1 LightningCast 0 10 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 255 255 1 0
fire_explode FireExplode 0 12 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 14 14 255 193 103 1 0
ice_explode IceExplode 0 16 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 14 14 210 210 255 1 0
warmth Warmth 0 14 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 8 255 193 103 1 0
frozenarmor FrozenArmor 0 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 0 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 0 24 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 13 200 200 255 1 0
cast_shivers AuraResistColdCast 0 11 Sorceress 1 1 0 0 0 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
frozenarmor_hit AuraResistColdCast 0 11 Sorceress 1 1 0 0 0 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
shiverarmor_hit AuraResistColdCast 0 11 Sorceress 1 1 0 1 1 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
chillarmor_hit AuraResistColdCast 0 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 0 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 0 16 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 193 103 1 0
cast_innersight EOZCast 0 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 0 24 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 255 255 1 0
cast_slowmissiles HOAcast 0 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 0 9 Amazon 0 1 0 0 0 0 0 0 0 0 0 16 0 3 2 2 255 255 255 1 0
cast_fistofares FOACast 0 20 Amazon 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 6 255 255 255 1 0
durieldead_fwd DurielBloodsplatOverlayFwd 0 26 ? 1 1 0 0 0 0 0 0 0 0 0 8 0 5 0 0 255 255 255 1 1
cast_familiar FamiliarCast 0 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 0 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 0 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 0 4 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
shrine_shimmer00 ShrineShimmer00 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_shimmer01 ShrineShimmer01 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_armor ShrineArmor 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_combat ShrineCombat 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_resist_lightning ShrineResistLightning 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_resist_fire ShrineResistFire 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_resist_cold ShrineResistCold 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_resist_poison ShrineResistPoison 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_skill ShrineSkill 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_mana_regen ShrineManaRegen 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_stamina ShrineStamina 0 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
shrine_experience ShrineExperience 0 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 0 10 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 193 103 1 0
itemgleam Gleam 0 8 item 0 1 0 1 1 0 0 0 0 0 0 16 4000 3 0 0 255 255 255 1 0
multigleam multigleam 0 10 objects 0 1 0 0 0 0 0 0 0 0 0 10 4000 3 0 0 255 255 255 1 0
npcalert NPCSpeechBalloon 0 16 npcs 0 1 0 1 1 -5 -7 -30 0 0 -50 9 7000 3 0 0 255 255 255 1 0
gleamtest3 Gleam 0 8 test 0 1 0 1 1 10 -14 0 0 0 0 11 4000 3 0 0 255 255 255 1 0
gleamtest4 Gleam 0 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 0 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 0 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 0 24 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 193 103 1 0
zakarumpriest_death Zakarum_Priest_DeathGlow 0 24 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 2 2 103 193 255 1 0
thornedhulk_death ThornedHulkDeathOverlay 0 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 0 8 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
fire_hit FireHit 0 8 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 3 1 255 193 103 1 0
frogdemon_death FrogExplode 0 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 0 16 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
brraisefront brraisedeadfront 0 16 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
brraiseback brraisedeadback 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 6 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
fingermagecurse FingerMageCurse 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 255 0 1 0
cursedecrepify CurseDecrepifyEffect 0 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 0 255 1 0
curselowerresist CurseLowerResistEffect 0 29 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 0 255 1 0
hit_ironmaiden AuraThornsHit 0 10 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
hit_reversevampire CurseRevVampireHit 0 13 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
bonearmor_cast BoneShieldEmerge 0 12 Necro 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
bonearmor_front BoneShieldFront 0 24 Necro 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
bonearmor_back BoneShieldBack 0 24 Necro 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
bonearmor_null1 null 0 2 Necro 0 1 0 1 1 0 0 0 0 0 0 4 0 3 0 0 0 0 0 1 0
bonearmor_null2 null 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 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 0 20 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
durieldead_rear DurielBloodsplatOverlayRear 0 26 ? 1 1 0 0 0 0 0 0 0 0 0 8 0 5 0 0 255 255 255 1 1
tentacleheadbloodripple BloodRipple 0 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 0 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 0 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 0 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 0 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 0 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 0 25 Bar 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
firegolem FireGolemOverlay 0 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 0 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 0 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 0 8 Bar 0 1 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 1 0
vampiresteal VampiricHitHealth 0 8 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
fingermageflames FingerMageFlames 0 14 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 2 2 255 64 64 1 0
warcry WarcryHit 0 16 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
dopllezon_appear DopplezonAppear 0 19 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 4 255 255 255 1 0
hydra_start1 HydraGroundFireStart 0 16 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hydra_start2 HydraGroundFireStart 0 16 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hydra_start3 HydraGroundFireStart 0 16 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hydra_loop1 HydraGroundFire 0 20 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hydra_loop2 HydraGroundFire 0 20 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hydra_loop3 HydraGroundFire 0 20 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hydra_end1 HydraGroundFireEnd 0 16 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hydra_end2 HydraGroundFireEnd 0 16 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
hydra_end3 HydraGroundFireEnd 0 16 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
light_jet LIGHTJET 0 13 object 0 1 0 0 0 0 0 0 0 0 0 4 0 3 0 0 255 255 255 1 0
horadric_light HoradricLightBeam 0 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 0 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 0 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 0 20 Monster 0 1 0 0 0 0 0 0 0 0 0 8 0 3 2 2 255 64 64 1 0
light_cast_2 LightningCastRunesFront 0 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 0 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 0 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 0 10 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
Expansion
psychic_hammer_hit Expansion\PsyHammerHit 100 7 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
psychic_hammer_curse Expansion\PsyHammerOverlay 100 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
fist_will_cast Expansion\PsyHammerOverlay 100 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 100 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 100 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 100 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
arctic_blast_cast Expansion\ColdWindOverlay 100 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 100 14 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
wolf_into expansion\druidmorph 100 13 all 0 1 0 0 0 0 0 0 0 0 0 20 0 3 0 0 255 255 255 1 0
wolf_undo expansion\druidmorph 100 13 all 0 1 0 0 0 0 0 0 0 0 0 10 0 3 0 0 255 255 255 1 0
bear_into expansion\druidmorph 100 13 all 0 1 0 0 0 0 0 0 0 0 0 20 0 3 0 0 255 255 255 1 0
bear_undo expansion\druidmorph 100 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 100 20 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
bloodlust_state BloodRipple 100 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 Expansion\Suicide_Death_Overlay 100 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 Expansion\oak_sage_Aura 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 30 all 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
impregnated expansion\painwormcurse 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
shadowwarriordeath expansion\ShadowAppear 100 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 100 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 100 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
poisonhit expansion\poisonhit 100 8 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
baal_on_throne expansion\baalshield 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 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 100 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
tigerstrike1 expansion\tiger_Strike_A 100 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
tigerstrike2 expansion\tiger_Strike_B 100 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
tigerstrike3 expansion\tiger_Strike_C 100 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
cobrastrike1 expansion\Cobra_Strike_A 100 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
cobrastrike2 expansion\Cobra_Strike_B 100 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
cobrastrike3 expansion\Cobra_Strike_C 100 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0

View File

@ -1,21 +0,0 @@
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 0 1 1 1 1 strUI6 1 2 wolf 0
fenris 12 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 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

View File

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

View File

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

View File

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

View File

@ -1,429 +0,0 @@
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 durability 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 1 item_elemskillfire 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 0
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
str% 1 1 item_strength_percent 0
dex% 1 1 item_dexterity_percent 0
vit% 1 1 item_vitality_percent 0
enr% 1 1 item_energy_percent 0
str%/lvl 1 17 item_strengthpercent_perlevel Strength per Player Level (8ths) none 0
dex%/lvl 1 17 item_dexteritypercent_perlevel Dexterity per Player Level (8ths) none 0
enr%/lvl 1 17 item_energypercent_perlevel Energy per Player Level (8ths) none 0
vit%/lvl 1 17 item_vitalitypercent_perlevel Vitality per Player Level (8ths) none 0
thorns-blind 1 11 item_attackergetsblind attacker gets blinded min max armour only 0
thorns-flee 1 11 item_attackerflees attacker runs away min max armour only 0
fire-thorns 1 1 item_attackertakesfiredamage 0
cold-thorns 1 1 item_attackertakescolddamage 0
dmg-max/str 1 17 item_maxdamage_perstr (8ths) 0
dmg-max/dex 1 17 item_maxdamage_perdex (8ths) 0
dmg-min/lvl 1 17 item_mindamage_perlvl (8ths) 0
dmg-min/str 1 17 item_mindamage_perstr (8ths) 0
dmg-min/dex 1 17 item_mindamage_perdex (8ths) 0
dmg%/str 1 17 item_maxdamage_percent_perstr (8ths) 0
dmg%/dex 1 17 item_maxdamage_percent_perdex (8ths) 0
wounds/dex 1 17 item_openwounds_perdex (8ths) 0
deadly/dex 1 17 item_deadlystrike_perdex (8ths) 0
wounds/str 1 17 item_openwounds_perstr (8ths) 0
deadly/str 1 17 item_deadlystrike_perstr (8ths) 0
ac/str 1 17 item_armor_perstr armour per strength (8ths) armour only 0
ac/dex 1 17 item_armor_perdex armour class per dex (8ths) min max armour only 0
att/str 1 17 item_tohit_perstr to hit per dex (8ths) min max weap only 0
att/dex 1 17 item_tohit_perDex to hit per dex (8ths) min max weap only 0
hp/vit 1 17 item_hp_pervitality (8ths) 0
mana/enr 1 17 item_mana_perenr (8ths) 0
cast/enr 1 17 item_fastercastrate_perenr (8ths) 0
block/dex 1 17 item_fasterblockrate_perdex (8ths) 0
move/vit 1 17 item_fastermovevelocity_pervitality (8ths) 0
swing/str 1 17 item_fasterswingvelocity_perstrength (8ths) 0
dmg-min%/str 1 17 item_mindamage_percent_perstr (8ths) 0
dmg-min%/dex 1 17 item_mindamage_percent_perdex (8ths) 0
dmg-min%/lvl 1 17 item_mindamage_percent_perlvl (8ths) 0
crush/str 1 17 item_crushingblow_perstr +% Chance of Crushing Blow per Player Level (8ths) none 0
crush/dex 1 17 item_crushingblow_perdex +% Chance of Crushing Blow per Player Level (8ths) none 0
coldskill 1 4 21 item_elemskill 1 item_elemskillcold none 0
lightningskill 1 2 21 item_elemskill 1 item_elemskilllight none 0
poisonskill 1 5 21 item_elemskill 1 item_elemskillpoison none 0
magicskill 1 3 21 item_elemskill 1 item_elemskillmagic none 0
ac%/str 1 17 item_armorpercent_perstr AC% per Player Level ac%/lvl (8ths) none 0
ac%/dex 1 17 item_armorpercent_perdex AC% per Player Level ac%/lvl (8ths) none 0
att%/str 1 17 item_tohitpercent_perstr Attack% per Player Level att%/lvl (8ths) none 0
att%/dex 1 17 item_tohitpercent_perdex Attack% per Player Level att%/lvl (8ths) none 0
swing/dex 1 17 item_fasterswingvelocity_perdex (8ths) 0
swing/lvl 1 17 item_fasterswingvelocity_perlvl (8ths) 0
block/str 1 17 item_fasterblockrate_perstr (8ths) 0
block/lvl 1 17 item_fasterblockrate_perlvl (8ths) 0
move/dex 1 17 item_fastermovevelocity_perdex (8ths) 0
move/lvl 1 17 item_fastermovevelocity_perlvl (8ths) 0
cast/lvl 1 17 item_fastercastrate_perlvl (8ths) 0
balance/vit 1 17 item_fasterhitrecovery_pervit (8ths) 0
balance/lvl 1 17 item_fasterhitrecovery_perlvl (8ths) 0
block%/dex 1 17 item_increasedblock_perdex (8ths) 0
block%/lvl 1 17 item_increasedblock_perlvl (8ths) 0
addxp/lvl 1 17 item_addexperience_perlvl additional xp gain 0
addxp/enr 1 17 item_addexperience_perenr additional xp gain 0
cheap/lvl 1 17 item_reducedprices_perlvl reduces vendor prices min max none 0
pierce/lvl 1 17 item_pierce_perlvl none 0
pierce/str 1 17 item_pierce_perstr none 0
all-zero-display 1 1 resmax_display_all_zero 0
res-all-hidden 1 1 magicresist_hidden 3 fireresist_hidden 3 lightresist_hidden 3 coldresist_hidden 3 poisonresist_hidden 3 hiddenresist_dummy 0
res-all-max-hidden 1 1 maxmagicresist_hidden 3 maxfireresist_hidden 3 maxlightresist_hidden 3 maxcoldresist_hidden 3 maxpoisonresist_hidden 3 hiddenresist_dummy 0
res-all-max% 1 1 maxmagres_percent 3 maxfireres_percent 3 maxlightres_percent 3 maxcoldres_percent 3 maxpoisres_percent 0
res-all/lvl 1 17 item_resist_cold_perlevel 3 item_resist_ltng_perlevel 3 item_resist_fire_perlevel 3 item_resist_pois_perlevel none 0
slow/lvl 1 17 item_slow_perlvl none 0
kick/str 1 17 item_kick_damage_perstr Kick Damage per Player Level (8ths) none 0
kick/dex 1 17 item_kick_damage_perdex Kick Damage per Player Level (8ths) none 0
red-dmg%/lvl 1 17 damageresist_perlvl none 0
red-dmg%/vit 1 17 damageresist_pervit none 0
red-mag/lvl 1 17 magic_damage_reduction_perlvl none 0
red-mag/enr 1 17 magic_damage_reduction_perenr none 0
res-mag/lvl 1 17 magicresist_perlvl none 0
res-mag/enr 1 17 magicresist_perenr none 0
stupidity/lvl 1 17 item_stupidity_perlvl none 0
freeze/lvl 1 17 item_freeze_perlvl chance in 128 length in frames none 0
freeze/enr 1 17 item_freeze_perenr chance in 128 length in frames none 0
res-pois-len/lvl 1 17 item_poisonlengthresist_perlvl none 0
res-pois-len/vit 1 17 item_poisonlengthresist_pervit none 0
res-curse/lvl 1 17 curse_resistance_perlvl 0
res-curse/enr 1 17 curse_resistance_perenr 0
res-curse-len 1 1 curse_resistance_length 1 curse_resistance 0
mana-kill/lvl 1 17 item_manaafterkill_perlvl none 0
mana-kill/enr 1 17 item_manaafterkill_perenr none 0
dmg-mana/lvl 1 17 item_damagetomana_perlvl none 0
dmg-mana/enr 1 17 item_damagetomana_perenr none 0
dmg-mana/mana 1 17 item_damagetomana_permana none 0
pruby 1 1 gembag_pruby 0
fruby 1 1 gembag_fruby 0
nruby 1 1 gembag_nruby 0
flruby 1 1 gembag_flruby 0
cruby 1 1 gembag_cruby 0
pamethyst 1 1 gembag_pamethyst 0
famethyst 1 1 gembag_famethyst 0
namethyst 1 1 gembag_namethyst 0
flamethyst 1 1 gembag_flamethyst 0
camethyst 1 1 gembag_camethyst 0
pdiamond 1 1 gembag_pdiamond 0
fdiamond 1 1 gembag_fdiamond 0
ndiamond 1 1 gembag_ndiamond 0
fldiamond 1 1 gembag_fldiamond 0
cdiamond 1 1 gembag_cdiamond 0
pemerald 1 1 gembag_pemerald 0
femerald 1 1 gembag_femerald 0
nemerald 1 1 gembag_nemerald 0
flemerald 1 1 gembag_flemerald 0
cemerald 1 1 gembag_cemerald 0
psapphire 1 1 gembag_psapphire 0
fsapphire 1 1 gembag_fsapphire 0
nsapphire 1 1 gembag_nsapphire 0
flsapphire 1 1 gembag_flsapphire 0
csapphire 1 1 gembag_csapphire 0
ptopaz 1 1 gembag_ptopaz 0
ftopaz 1 1 gembag_ftopaz 0
ntopaz 1 1 gembag_ntopaz 0
fltopaz 1 1 gembag_fltopaz 0
ctopaz 1 1 gembag_ctopaz 0
pskull 1 1 gembag_pskull 0
fskull 1 1 gembag_fskull 0
nskull 1 1 gembag_nskull 0
flskull 1 1 gembag_flskull 0
cskull 1 1 gembag_cskull 0
rbgr01 1 1 runebag_r01 0
rbgr02 1 1 runebag_r02 0
rbgr03 1 1 runebag_r03 0
rbgr04 1 1 runebag_r04 0
rbgr05 1 1 runebag_r05 0
rbgr06 1 1 runebag_r06 0
rbgr07 1 1 runebag_r07 0
rbgr08 1 1 runebag_r08 0
rbgr09 1 1 runebag_r09 0
rbgr10 1 1 runebag_r10 0
rbgr11 1 1 runebag_r11 0
rbgr12 1 1 runebag_r12 0
rbgr13 1 1 runebag_r13 0
rbgr14 1 1 runebag_r14 0
rbgr15 1 1 runebag_r15 0
rbgr16 1 1 runebag_r16 0
rbgr17 1 1 runebag_r17 0
rbgr18 1 1 runebag_r18 0
rbgr19 1 1 runebag_r19 0
rbgr20 1 1 runebag_r20 0
rbgr21 1 1 runebag_r21 0
rbgr22 1 1 runebag_r22 0
rbgr23 1 1 runebag_r23 0
rbgr24 1 1 runebag_r24 0
rbgr25 1 1 runebag_r25 0
rbgr26 1 1 runebag_r26 0
rbgr27 1 1 runebag_r27 0
rbgr28 1 1 runebag_r28 0
rbgr29 1 1 runebag_r29 0
rbgr30 1 1 runebag_r30 0
rbgr31 1 1 runebag_r31 0
rbgr32 1 1 runebag_r32 0
rbgr33 1 1 runebag_r33 0
magharv 1 1 magharv 0
showkills 1 17 display_kills 0
iforge 1 1 iforge 0

View File

@ -1,9 +0,0 @@
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

View File

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

View File

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

View File

@ -1,170 +0,0 @@
Name Rune Name complete server itype1 itype2 itype3 itype4 itype5 itype6 etype1 etype2 etype3 *runes 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 T1Code7 T1Param7 T1Min7 T1Max7 eol
Runeword1 Ancient's Pledge 1 shld RalOrtTal r08 r09 r07 res-cold 30 30 res-all 13 13 ac% 50 50 dmg-to-mana 10 10 0
Runeword6 Black 1 club hamm mace ThulIoNef r10 r16 r04 crush 40 40 dmg% 120 120 swing2 15 15 red-mag 2 2 att 200 200 charged 74 12 4 0
Runeword44 Fury 1 mele JahGulEth r31 r25 r05 dmg% 209 209 swing2 40 40 noheal 1 1 openwounds 66 66 lifesteal 6 6 deadly 33 33 skill 147 5 5 0
Runeword54 Holy Thunder 1 scep EthRalOrtTal r05 r08 r09 r07 dmg% 60 60 dmg-ltng 20 60 dmg-max 10 10 res-ltng 60 60 res-ltng-max 5 5 skill 118 3 3 charged 53 60 7 0
Runeword55 Honor 1 mele AmnElIthTirSol r11 r01 r06 r03 r12 dmg% 160 160 regen 10 10 allskills 1 1 att 200 200 deadly 25 25 str 10 10 0
Runeword65 King's Grace 1 swor scep AmnRalThul r11 r08 r10 dmg% 100 100 att 150 150 dmg-demon 100 100 dmg-undead 50 50 att-demon 100 100 att-undead 100 100 0
Runeword72 Leaf 1 staf TirRal r03 r08 fireskill 3 3 ac/lvl 16 16 res-cold 33 33 skill 41 3 3 skill 36 3 3 skill 37 3 3 0
Runeword74 Lionheart 1 tors HelLumFal r15 r17 r19 str 15 15 vit 20 20 dex 15 15 dmg% 20 20 hp 50 50 res-all 30 30 0
Runeword75 Lore 1 helm OrtSol r09 r12 enr 10 10 allskills 1 1 light 2 2 mana-kill 2 2 0
Runeword81 Malice 1 mele IthElEth r06 r01 r05 openwounds 100 100 dmg-ac -100 -100 noheal 1 1 dmg% 33 33 light -1 -1 regen -5 -5 0
Runeword82 Melody 1 miss ShaelKoNef r13 r18 r04 dmg% 50 50 skilltab 0 3 3 skill 9 3 3 skill 13 3 3 skill 17 3 3 dmg-undead 300 300 0
Runeword83 Memory 1 staf LumIoSolEth r17 r16 r12 r05 mana% 20 20 red-mag 7 7 ac% 50 50 cast2 33 33 sor 3 3 skill 58 3 3 skill 42 2 2 0
Runeword88 Nadir 1 helm NefTir r04 r03 ac% 50 50 ac 10 10 light -3 -3 charged 264 9 13 gold% -33 -33 str 5 5 0
Runeword116 Radiance 1 helm NefSolIth r04 r12 r06 light 5 5 enr 10 10 vit 10 10 red-mag 3 3 mana 33 33 ac% 75 75 0
Runeword120 Rhyme 1 shld ShaelEth r13 r05 block2 20 20 block 20 20 res-all 25 25 nofreeze 1 1 gold% 50 50 mag% 25 25 0
Runeword126 Silence 1 weap DolEldHelIstTirVex r14 r02 r15 r24 r03 r26 manasteal 4 4 stupidity 33 33 dmg% 200 200 swing2 20 20 res-all 75 75 allskills 2 2 balance2 20 20 0
Runeword128 Smoke 1 tors NefLum r04 r17 ac-miss 250 250 ac% 75 75 res-all 50 50 balance2 20 20 light -1 -1 charged 72 18 6 0
Runeword133 Stealth 1 tors TalEth r07 r05 red-mag 3 3 dex 6 6 stam 15 15 move2 25 25 cast2 25 25 balance2 25 25 0
Runeword134 Steel 1 swor axe mace TirEl r03 r01 swing2 25 25 dmg-min 3 3 dmg-max 3 3 openwounds 50 50 dmg% 20 20 0
Runeword139 Strength 1 mele AmnTir r11 r03 str 20 20 dmg% 35 35 vit 10 10 crush 25 25 0
Runeword154 Venom 1 weap TalDolMal r07 r14 r23 dmg-pois 175 312 312 ignore-ac 1 1 charged 83 27 15 charged 92 11 13 manasteal 7 7 0
Runeword160 Wealth 1 tors LemKoTir r20 r18 r03 gold% 250 250 mag% 100 100 0
Runeword162 White 1 wand DolIo r14 r16 skilltab 7 3 3 red-mag 4 4 cast2 20 20 mana 13 13 skill 68 3 3 skill 84 2 2 skill 69 4 4 0
Runeword170 Zephyr 1 miss OrtEth r09 r05 move2 25 25 swing2 25 25 dmg% 33 33 att 66 66 gethit-skill 240 7 1 ac 25 25 0
Runeword14 Bound by Duty 1 tors DolUmBerIst r14 r22 r30 r24 res-all 50 50 ac% 70 70 dmg-demon 200 200 dmg-undead 100 100 lifesteal 8 8 allskills 2 2 str 20 20 0
Runeword9 Bramble 1 tors RalOhmSurEth r08 r27 r29 r05 balance2 50 50 ac 300 300 aura Thorns 15 21 heal-kill 13 13 extra-pois 25 50 res-pois 100 100 charged Spirit of Barbs 33 13 0
Runeword11 Breath of the Dying 1 weap VexHelElEldZodEth r26 r15 r01 r02 r33 r05 swing2 60 60 dmg-undead 125 125 lifesteal 12 15 noheal 1 1 kill-skill Poison Nova 50 20 dmg% 350 400 all-stats 30 30 0
Runeword13 Call to Arms 1 weap AmnRalMalIstOhm r11 r08 r23 r24 r27 swing2 40 40 dmg% 200 240 allskills 1 1 oskill Battle Command 2 6 oskill Battle Orders 1 6 oskill Battle Cry 1 4 regen 12 12 0
Runeword17 Crescent Moon 1 axe swor pole ShaelUmTir r13 r22 r03 pierce-ltng 35 35 ignore-ac 1 1 dmg% 180 220 abs-mag 9 11 charged Summon Spirit Wolf 30 18 hit-skill Static Field 7 13 hit-skill Chain Lightning 10 17 0
Runeword22 Delirium 1 helm LemIstIo r20 r24 r16 hit-skill Confuse 11 18 charged Attract 60 17 gethit-skill Terror 14 13 ac 261 261 gethit-skill Mind Blast 6 14 gethit-skill Delerium Change 1 50 allskills 2 2 0
Runeword26 Doomsayer 1 axe pole hamm HelOhmUmLoCham r15 r27 r22 r28 r32 dmg% 280 320 aura Holy Freeze 12 12 swing2 45 45 noheal 1 1 pierce-cold 40 60 allskills 2 2 hit-skill Volcano 5 18 0
Runeword33 Enigma 1 tors JahIthBer r31 r06 r30 ac 750 775 heal-kill 14 14 move2 45 45 str/lvl 6 allskills 2 2 mag%/lvl 8 oskill Teleport 1 1 0
Runeword137 Stone 1 tors ShaelUmPulLum r13 r22 r21 r17 ac% 220 260 charged Clay Golem 16 16 ac-miss 300 300 charged Molten Boulder 80 16 str 16 16 vit 16 16 balance2 40 40 0
Runeword36 Eternity 1 mele AmnBerIstSolSur r11 r30 r24 r12 r29 dmg% 260 310 indestruct 1 1 slow 33 33 charged Revive 88 8 regen 16 16 regen-mana 16 16 nofreeze 1 1 0
Runeword37 Exile's Path 1 pala VexOhmIstDol r26 r27 r24 r14 block2 30 30 freeze 1 1 ac% 220 260 aura Defiance 13 16 skilltab 10 2 2 hit-skill Life Tap 15 5 rep-dur 25 0
Runeword39 Famine 1 axe hamm FalOhmOrtJah r19 r27 r09 r31 dmg% 270 320 lifesteal 12 12 swing2 30 30 noheal 1 1 dmg-mag 180 200 dmg-elem 100 50 200 ethereal 1 1 0
Runeword48 Hand of Justice 1 weap SurChamAmnLo r29 r32 r11 r28 swing2 33 33 dmg% 280 330 aura Holy Fire 16 16 levelup-skill Blaze 100 36 death-skill Meteor 100 48 ignore-ac 1 1 pierce-fire 20 20 0
Runeword51 Heart of the Oak 1 staf mace KoVexPulThul r18 r26 r21 r10 cast2 40 40 charged Oak Sage 25 4 mana% 15 15 allskills 3 3 regen 20 20 res-all 30 40 charged Raven 60 14 0
Runeword66 Kingslayer 1 swor axe MalUmGulFal r23 r22 r25 r19 swing2 30 30 dmg% 230 270 reduce-ac 25 25 crush 33 33 openwounds 25 25 oskill Vengeance 1 1 gold% 40 40 0
Runeword95 Passion 1 weap DolOrtEldLem r14 r09 r02 r20 dmg% 160 210 oskill Zeal 1 1 att% 50 80 oskill Berserk 1 1 swing2 25 25 charged Heart of Wolverine 12 3 stupidity 10 10 0
Runeword45 Gloom 1 tors FalUmPul r19 r22 r21 ac% 170 230 res-all 30 30 gethit-skill Dim Vision 15 3 balance2 10 10 dmg-to-mana 5 5 light -3 -3 half-freeze 1 1 0
Runeword122 Sanctuary 1 shld KoKoMal r18 r18 r23 block 20 20 block2 20 20 ac% 130 160 ac-miss 250 250 res-all 50 70 balance2 20 20 charged Slow Missiles 60 12 0
Runeword16 Chaos 1 h2h FalOhmUm r19 r27 r22 demon-heal 15 15 dmg% 240 290 dmg-mag 216 471 oskill Whirlwind 1 1 swing2 35 35 hit-skill Frozen Orb 9 11 hit-skill Charged Bolt 11 9 0
Runeword4 The Beast 1 axe scep hamm BerTirUmMalLum r30 r03 r22 r23 r17 swing2 40 40 aura Fanaticism 9 9 dmg% 240 270 str 25 40 charged Summon Grizzly 5 13 oskill Wearbear 3 3 oskill Shape Shifting 3 3 0
Runeword123 Serendipity 1 pole AmnAmn r11 r11 dmg% 120 120 hit-skill 8 50 2 enr 20 20 regen-mana 50 50 cast2 20 20 0
Runeword124 Shadow 1 miss PulSolShaelSol r21 r12 r13 r12 dmg% 166 166 dmg-cold/time 1 200 cold-len 75 300 move3 50 50 gethit-skill 264 25 12 charged 78 50 10 0
Runeword125 Shadow of Doubt 1 wand ElTir r01 r03 skilltab 6 1 3 skilltab 7 1 3 skilltab 8 1 3 cast1 15 15 extra-pois 10 10 0
Runeword127 Siren's Song 1 circ LemShael r20 r13 allskills 2 2 mana% 40 40 cast2 25 25 all-stats 10 20 mag% 30 50 gethit-skill 81 44 3 ac/lvl 8 0
Runeword129 Sorrow 1 hamm ShaelHel r13 r15 dmg% 160 200 swing2 20 20 manasteal 6 6 charged 75 5 20 heal-kill 6 9 regen-mana 50 50 regen -2 -2 0
Runeword130 Spirit 1 swor shld TalThulOrtAmn r07 r10 r09 r11 allskills 2 2 cast2 25 35 balance2 55 55 vit 22 22 mana 82 112 abs-mag 3 8 0
Runeword131 Splendor 1 shld EthLum r05 r17 allskills 1 1 cast2 10 10 block2 20 20 ac% 60 100 gold% 50 50 mag% 20 20 light 3 3 0
Runeword132 Starlight 1 weap armo shld ZodHelIstEl r33 r15 r24 r01 allskills 3 3 dmg-norm 35 140 ac% 100 200 ease -80 -80 mag% 150 300 levelreq 20 20 balance3 20 20 0
Runeword135 Still Water 1 abow GulUmMalNef r25 r22 r23 r04 ama 1 1 swing1 20 20 dmg-norm 30 150 dmg% 80 120 skilltab 0 2 2 heal-kill 15 20 dmg-cold 300 100 150 0
Runeword30 Duress 1 tors ShaelUmThul r13 r22 r10 balance2 20 20 dmg% 10 20 dmg-cold 75 37 133 crush 15 15 openwounds 33 33 ac% 150 200 stamdrain -20 -20 0
Runeword138 Storm 1 spear JahUmOhmOrtNef r31 r22 r27 r09 r04 dmg% 333 333 swing1 20 20 hit-skill 49 16 21 oskill thunder storm 10 10 res-ltng 100 100 abs-ltng% 25 25 addxp 3 3 0
Runeword140 Tempest 1 h2h LemThul r20 r10 dmg-cold 30 70 dmg-fire 100 200 dmg-ltng 1 300 extra-ltng 20 30 ass 2 2 skilltab 18 3 3 dmg% 140 190 0
Runeword141 Temptation 1 mace OrtNefEl r09 r04 r01 addxp 10 15 dmg% 176 176 allskills 1 1 all-stats -10 -10 swing1 20 20 0
Runeword142 Terror 1 necr LumMal r17 r23 gethit-skill 77 100 10 nec 2 2 skill-rand 3 66 95 ac/lvl 12 cast2 25 25 mag%/lvl 8 oskill fanaticism 3 3 0
Runeword90 Nightfall 1 tors HelLoOhm r15 r28 r27 ac% 150 300 mag%/time 2 1 300 vit/time 2 1 50 ac/time 2 1 500 dmg/time 2 1 75 gold%/time 2 1 300 enr/time 2 1 25 0
Runeword91 Oath 1 swor axe mace ShaelPulMalLum r13 r21 r23 r17 hit-skill 93 30 20 indestruct 1 1 swing2 30 30 dmg% 210 340 abs-mag 10 15 charged 236 20 16 charged 90 14 17 0
Runeword92 Obedience 1 pole HelKoThulEthFal r15 r18 r10 r05 r19 kill-skill 52 30 21 balance2 40 40 dmg% 370 370 pierce-fire 25 25 crush 40 40 ac 200 300 res-all 20 30 0
Runeword93 Oblivion 1 barb UmFalKo r22 r19 r18 bar 2 2 ac% 115 160 skill-rand 3 126 155 hit-skill 66 12 9 hp/lvl 12 swing2 20 20 crush/time 3 1 100 0
Runeword94 Obsession 1 club ThulEl r10 r01 dmg-norm 20 40 freeze 2 2 lifesteal 4 6 gold% 100 100 mag% 40 40 0
Runeword49 Harmony 1 miss TirIthSolKo r03 r06 r12 r18 aura 115 10 10 dmg% 200 275 dmg-fire 55 160 dmg-cold 75 55 160 oskill 32 2 6 regen-mana 20 20 charged 95 25 20 0
Runeword50 Hatred 1 weap IoThul r16 r10 dmg% 140 190 allskills 1 1 mag% 50 50 knock 1 1 freeze 3 3 dmg-dem/time 0 1 500 0
Runeword40 Flickering Flame 1 tors VexRalKo r26 r08 r18 extra-fire 15 20 pierce-fire 15 20 abs-fire% 15 20 aura 102 17 17 gethit-skill 47 20 19 att-skill 234 8 13 light 5 5 0
Runeword41 Fortitude 1 weap armo shld ElSolDolLo r01 r12 r14 r28 gethit-skill 60 20 15 dmg% 300 300 ac% 200 200 hp/lvl 8 res-all 25 30 cast2 25 25 0
Runeword42 Fortune's Favor 1 weap armo shld FalIo r19 r16 mag%/lvl 16 25 25 allskills 1 1 hp 30 50 res-all 10 10 levelreq 5 5 gold% 200 200 0
Runeword89 Nature's Kingdom 1 drui AmnIth r11 r06 dru 1 1 ac% 75 100 mana 40 60 cast2 20 20 res-all 20 20 all-stats 10 10 0
Runeword46 Glory 1 tors IstIstIstIst r24 r24 r24 r24 allskills 2 2 balance2 25 25 cast3 35 35 mana% 25 25 hp% 25 25 ac% 75 125 ease -30 -30 0
Runeword38 Faith 1 miss OhmJahLemEld r27 r31 r20 r02 aura 122 12 15 allskills 1 2 dmg% 330 330 att% 300 300 res-all 15 15 dmg-fire 120 120 reanimate 4 10 10 0
Runeword43 Amity 1 mace HelAmn r15 r11 levelreq 5 5 addxp -3 -3 rip 1 1 dmg% 133 133 dmg-norm 25 50 crush 66 66 deadly 34 34 0
Runeword2 Armageddon 1 swor RalOrtThulChamBerHel r08 r09 r10 r32 r30 r15 levelreq 13 13 dmg% 275 350 dmg-elem 200 50 300 hit-skill 59 40 20 gethit-skill 53 40 20 swing2 30 30 res-all 35 35 0
Runeword3 Authority 1 helm ChamZodBer r32 r33 r30 allskills 2 2 levelreq 12 12 mag%/lvl 12 ac% 160 200 hit-skill 72 16 9 slow 20 20 deadly 25 25 0
Runeword5 Beauty 1 abow TirDol r03 r14 skilltab 0 3 3 dmg-norm 30 60 knock 3 3 slow 15 15 lifesteal 8 8 ignore-ac 1 1 openwounds 50 50 0
Runeword7 Blood 1 weap armo shld MalShael r23 r13 levelreq 18 18 dmg% 200 250 ac 125 175 bloody 1 1 allskills 2 2 hp% 10 15 red-dmg% 10 15 0
Runeword8 Bone 1 necr BerUm r30 r22 nec 2 2 skilltab 7 4 4 skill 68 3 3 skill 78 3 3 skill 84 3 3 skill 88 3 3 skill 93 3 3 0
Runeword10 Brand 1 miss JahLoMalGul r31 r28 r23 r25 gethit-skill 66 35 14 hit-skill 84 100 18 explosivearrow 1 1 dmg% 260 340 dmg-demon 280 330 knock 1 1 0
Runeword12 Broken Promise 1 weap ChamVexAmnShaelLo r32 r26 r11 r13 r28 dmg% 350 400 allskills 2 2 dmg/lvl 24 addxp -5 -5 hit-skill 93 18 18 levelreq 15 15 crush/time 1 1 100 0
Runeword15 Chance 1 shld EthIthTir r05 r06 r03 block 15 15 block2 20 20 mana 25 25 cast1 15 15 mag% 20 30 gold% 75 75 0
Runeword136 Sting 1 miss NefTalEth r04 r07 r05 dmg-max 25 40 swing1 15 15 manasteal 5 8 oskill multiple Shot 3 3 oskill ice arrow 5 5 0
Runeword18 Darkness 1 h2h ZodAmnVex r33 r11 r26 ass 3 3 str/time 1 1 100 vit/time 3 1 100 dmg-norm 75 150 res-all 20 40 red-dmg% 15 15 mag%/lvl 8 0
Runeword19 Daylight 1 orb JahFalUm r31 r19 r22 sor 3 3 regen-mana 50 50 cast2 30 30 aura 123 4 4 charged 91 33 18 mana% 50 50 hp% 25 25 0
Runeword20 Death 1 swor axe HelElVexOrtGul r15 r01 r26 r09 r25 death-skill 53 100 44 att-skill 55 25 18 indestruct 1 1 dmg% 300 385 crush 50 50 deadly/lvl 4 charged 85 15 22 0
Runeword21 Deception 1 pole IoDolLum r16 r14 r17 dmg% 165 205 lifesteal 8 8 oskill teleport 1 1 balance3 40 40 dmg/lvl 8 extra-fire 15 15 charged 56 150 18 0
Runeword23 Desire 1 weap armo shld ElTirEl r01 r03 r01 dmg% 30 50 ac% 30 50 all-stats 5 5 mag% 20 25 0
Runeword24 Despair 1 spea GulMalShaelShaelEl r25 r23 r13 r13 r01 dmg% 260 300 hit-skill 72 32 6 slow 20 20 oskill fend 7 7 mag% 35 35 manasteal 9 9 0
Runeword32 Destiny's Daughter 1 abow ShaelNefChamThulVex r13 r04 r32 r10 r26 dmg-min 40 75 dmg/lvl 18 hit-skill 48 100 8 noheal 1 1 death-skill nova 100 60 extra-cold 20 25 extra-fire 20 25 0
Runeword25 Destruction 1 pole swor VexLoBerJahKo r26 r28 r30 r31 r18 hit-skill 244 23 12 hit-skill 229 5 23 death-skill 56 100 45 att-skill 48 15 22 dmg% 350 350 dmg-mag 100 180 0
Runeword27 Dragon 1 armo shld SurLoSol r29 r28 r12 gethit-skill 278 20 18 hit-skill 62 12 15 ac 360 360 ac-miss 230 230 str/lvl 3 all-stats 3 5 aura 102 14 14 0
Runeword28 Dread 1 tors DolElIth r14 r01 r06 ac% 100 125 hit-skill 38 13 13 move2 20 20 heal-kill 6 8 levelreq 1 1 str/lvl 4 dex/lvl 4 0
Runeword29 Dream 1 helm shld IoJahPul r16 r31 r21 gethit-skill 81 10 15 aura 118 15 15 balance2 20 30 ac 150 220 mana/lvl 5 res-all 5 20 mag% 15 25 0
Runeword56 Dweomer 1 armo shld ThulEld r10 r02 sor 1 1 mana 50 75 cast1 15 15 addxp 1 3 regen-mana 60 70 res-mag 5 10 levelreq 3 3 0
Runeword31 Edge 1 miss TirTalAmn r03 r07 r11 aura 103 15 15 swing2 35 35 dmg-demon 320 380 dmg-undead 280 280 noheal 1 1 cheap 15 15 all-stats 8 9 0
Runeword34 Enlightenment 1 drui TirUmLum r03 r22 r17 dru 2 2 skill-rand 3 221 250 regen-mana 75 75 skilltab 17 3 3 gethit-skill 235 30 20 red-dmg% 20 25 block2 20 20 0
Runeword35 Envy 1 weap FalKoLumIo r19 r18 r17 r16 dmg% 222 222 swing2 30 30 manasteal 6 6 lifesteal 6 6 addxp 2 2 mag% 35 35 res-all 25 25 0
Runeword52 Heaven's Will 1 pala DolEld r14 r02 pal 1 1 block 50 50 block3 30 30 dmg% 30 50 rip 1 1 skill 121 6 6 0
Runeword53 Holy Tears 1 scep IoTirShael r16 r03 r13 dmg% 160 200 hit-skill 121 16 9 dmg-demon 300 300 att% 35 35 slow 35 35 oskill zeal 5 5 swing2 20 20 0
Runeword57 Humility 1 tors ZodUmIthCham r33 r22 r06 r32 levelreq 17 17 oskill shout 10 15 oskill battle orders 10 15 oskill battle command 10 15 oskill shiver armor 10 15 oskill valkyrie 10 15 aura salvation 5 7 0
Runeword58 Hunger 1 shld AmnHel r11 r15 levelreq 8 8 block 15 30 red-dmg% 10 15 res-all 20 20 res-mag 20 20 lifesteal 5 5 regen -1 -1 0
Runeword59 Ice 1 miss AmnShaelJahLo r11 r13 r31 r28 levelup-skill 59 100 40 hit-skill 44 25 22 aura 114 18 18 dmg% 140 210 extra-cold 25 30 pierce-cold 20 20 gold%/lvl 25 0
Runeword60 Infinity 1 pole BerMalBerIst r30 r23 r30 r24 kill-skill 53 50 20 aura 123 12 12 move2 35 35 dmg% 255 325 pierce-ltng 55 55 vit/lvl 4 charged 235 30 21 0
Runeword61 Innocence 1 hamm VexLemIst r26 r20 r24 dmg% 190 240 dmg/lvl 16 rep-dur 15 allskills 2 2 hp% 25 25 all-stats 15 25 addxp -3 -3 0
Runeword62 Insight 1 pole staff RalTirTalSol r08 r03 r07 r12 aura 120 12 17 cast2 35 35 dmg% 200 260 att% 180 250 oskill 9 1 6 all-stats 5 5 mag% 23 23 0
Runeword63 Jealousy 1 spea TalEld r07 r02 dmg% 122 122 lifesteal 7 7 manasteal 7 7 oskill jab 3 3 oskill spear mastery 3 3 swing2 20 20 0
Runeword64 Judgment 1 pala UmHelUm r22 r15 r22 pal 2 2 ignore-ac 1 1 block 25 35 dmg-max 20 30 gethit-skill 117 2 35 gethit-skill 87 50 5 red-mag 35 50 0
Runeword67 Knight's Vigil 1 armo shld BerLemUmIst r30 r20 r22 r24 pal 2 2 aura 120 8 12 cast3 40 40 block 20 30 block2 20 20 levelreq 12 12 regen 10 15 0
Runeword69 Last Wish 1 swor hamm axe ChamMalJahSurJahBer r32 r23 r31 r29 r31 r30 gethit-skill 267 6 11 hit-skill 82 10 18 att-skill 38 20 20 aura 98 17 17 dmg% 330 375 crush 0 10 mag%/lvl 4 4 0
Runeword70 Law 1 axe HelHel r15 r15 levelreq 26 26 dmg% 120 170 swing2 15 15 hp 48 48 mana 24 24 slow 30 30 rip 1 1 0
Runeword71 Lawbringer 1 swor hamm scep AmnLemKo r11 r20 r18 hit-skill 87 20 15 aura 119 18 18 reduce-ac 50 50 dmg-fire 150 220 dmg-cold 75 130 180 rip 1 1 ac-miss 200 250 0
Runeword73 Lightning 1 weap OrtOrtAmn r09 r09 r11 res-ltng 35 50 dmg% 100 175 swing2 20 20 hit-skill 49 15 9 aura 118 2 2 abs-ltng 8 10 0
Runeword77 Loyalty 1 shld VexDol r26 r14 aura 103 5 9 res-ltng-max 5 5 res-cold-max 5 5 res-pois-max 5 5 res-all 100 100 addxp 6 6 block 35 50 0
Runeword78 Lust 1 wand ShaelMal r13 r23 nec 2 2 addxp 5 5 mana% 35 35 res-all 35 50 aura 118 8 8 mag% 40 40 gold%/time 1 1 300 0
Runeword79 Madness 1 armo shld IoEthDol r16 r05 r14 gethit-skill 81 9 5 hit-skill 77 12 16 swing1 15 15 levelreq 1 1 allskills 1 1 block2 15 15 hp 35 50 0
Runeword84 Mist 1 club OhmHelUm r27 r15 r22 dmg% 250 300 gethit-skill 234 33 15 aura 104 7 7 crush 33 33 block 15 15 dmg/lvl 8 str 15 15 0
Runeword85 Morning Dew 1 pole MalIthBerChamZodIst r23 r06 r30 r32 r33 r24 levelreq 10 10 swing3 50 50 dmg% 300 360 dru 3 3 oskill pole arm mastery 20 20 kill-skill static field 100 20 res-all 25 25 0
Runeword86 Mystery 1 drui ShaelZodGul r13 r33 r25 dru 3 3 mana% 15 15 hp% 15 15 res-all 30 50 aura 113 6 6 swing2 20 20 addxp 3 3 0
Runeword87 Myth 1 spea FalChamBerHelTirRal r19 r32 r30 r15 r03 r08 levelreq 8 8 dmg-norm 200 400 rep-dur 15 dmg% 80 120 allskills 3 3 res-all 50 50 death-skill nova 100 60 0
Runeword95 Patience 1 weap armo shld NefEldRal r04 r02 r08 Balance2 20 20 addxp 1 3 hp 20 25 heal-kill 3 5 mana-kill 2 2 move1 15 15 0
Runeword97 Pattern 1 miss OhmOhm r27 r27 dmg/lvl 16 res-all 75 75 balance3 40 40 swing3 40 40 allskills 2 2 red-dmg% 25 25 gethit-skill 86 100 12 0
Runeword98 Peace 1 mele TirEthEl r03 r05 r01 levelreq 6 6 dmg-norm 20 40 swing1 20 20 Balance2 20 20 block2 20 20 fade 1 1 res-all 15 15 0
Runeword100 Penitence 1 armo shld IthTir r06 r03 block1 15 15 balance1 15 15 rep-dur 10 half-freeze 1 1 res-pois-len 50 50 0
Runeword101 Peril 1 miss ChamLoBerBerLoCham r32 r28 r30 r30 r28 r32 levelreq 11 11 dmg-min 100 200 dmg-max 300 400 swing3 75 75 allskills 1 1 mag%/lvl 8 all-stats 20 30 0
Runeword102 Pestilence 1 axe SolKoIo r12 r18 r16 dmg-pois 100 800 800 noheal 1 1 mag% 20 35 dmg% 188 188 extra-pois 20 20 oskill poison explosion 3 3 res-pois-len 50 50 0
Runeword103 Phoenix 1 weap shld VexVexLoJah r26 r26 r28 r31 levelup-skill 46 100 40 hit-skill 225 40 22 aura 124 13 13 dmg% 350 400 pierce-fire 28 28 ac-miss 350 400 abs-fire 15 21 0
Runeword104 Piety 1 helm LemNefShael r20 r04 r13 ac% 90 125 enr 20 20 mana/lvl 8 allskills 1 1 cast2 20 20 res-all 15 25 res-mag 15 25 0
Runeword105 Pillar of Faith 1 spea FalFalUmAmn r19 r19 r22 r11 dmg% 230 230 rep-dur 20 ac 400 500 aura 109 12 12 swing2 20 20 hp 75 75 abs-fire% 15 15 0
Runeword106 Plague 1 mace SurUmMalShaelShael r29 r22 r23 r13 r13 dmg% 200 250 dmg-pois 150 1800 1800 res-pois 80 80 res-all-max 10 10 deadly 100 100 hit-skill 92 15 27 levelreq 10 10 0
Runeword107 Praise 1 hamm FalGulOhmShael r19 r25 r27 r13 levelreq 15 15 dmg% 280 350 ignore-ac 1 1 death-skill 64 100 47 gethit-skill 55 100 10 mag%/time 0 1 200 lifesteal 10 10 0
Runeword108 Prayer 1 weap armo shld HelEthThul r15 r05 r10 dmg-norm 10 30 ac 50 100 swing1 20 20 levelreq 7 7 block 20 30 aura 99 10 14 res-all 15 25 0
Runeword109 Pride 1 pole ChamSurLoIo r32 r29 r28 r16 gethit-skill 51 25 17 aura 113 18 18 att% 260 300 dmg-dem/lvl 8 dmg-ltng 50 280 regen 8 8 gold% 15 0
Runeword110 Principle 1 aspe ShaekFalKoShael r13 r19 r18 r13 dmg% 200 260 rip 1 1 addxp 2 2 ama 2 2 res-all 35 35 charged 57 10 20 charged 235 22 10 0
Runeword111 Prowess in Battle 1 barb JahIstFal r31 r24 r19 levelreq 10 10 bar 3 3 att% 50 50 aura 122 6 6 dmg% 100 100 balance3 40 40 ac/lvl 24 0
Runeword112 Prudence 1 tors MalTir r23 r03 balance2 25 25 ac% 140 170 res-all 25 35 red-dmg 3 3 red-mag 10 10 light 1 1 rep-dur 25 0
Runeword113 Punishment 1 swor OrtDolAmn r09 r14 r11 dmg% 135 135 dmg-norm 20 40 regen -3 -3 addxp -2 -2 all-stats 20 20 levelup-skill thunder Storm 100 35 red-dmg 15 20 0
Runeword114 Purity 1 shld JahIstShaelZod r31 r24 r13 r33 block 55 55 heal-kill 15 15 balance3 50 50 res-all 30 50 gethit-skill 68 10 19 hit-skill 71 35 8 ac/lvl 32 0
Runeword115 Question 1 swor KoNef r18 r04 mag%/lvl 12 gold%/lvl 16 str/lvl 6 dex/lvl 6 vit/lvl 6 enr/lvl 6 dex -10 -10 0
Runeword117 Rain 1 circ BerChamBer r30 r32 r30 levelreq 22 22 allskills 4 4 hp 100 150 mana 60 100 all-stats 25 25 regen 20 20 regen-mana 100 100 0
Runeword118 Reason 1 staf LumLumZodTir r17 r17 r33 r03 sor 3 3 cast3 50 50 aura 120 5 5 addxp 3 3 red-dmg% 20 20 dmg-to-mana 20 20 skill-rand 8 36 65 0
Runeword119 Red 1 mele IoRalRalHel r16 r08 r08 r15 dmg% 155 155 rep-dur 20 res-fire 35 50 abs-fire% 10 10 res-cold -20 -20 extra-fire 15 25 hit-skill 56 8 4 0
Runeword121 Rift 1 pole scep HelKoLemGul r15 r18 r20 r25 hit-skill 245 20 16 att-skill 64 16 21 dmg-mag 160 250 dmg-fire 60 180 all-stats 5 10 dmg-to-mana 38 38 charged 76 40 15 0
Runeword76 The Lovers 1 abow PulHelEl r21 r15 r01 ama 2 2 hp 75 75 mana 50 50 dmg% 200 200 swing3 40 40 deadly 30 30 explosivearrow 1 1 0
Runeword143 Thirst 1 spea SolThulRal r12 r10 r08 allskills 1 1 dmg% 125 150 addxp 1 3 heal-kill 8 12 mana-kill 2 5 dmg/lvl 12 0
Runeword68 Thirst for Knowledge 1 swor ElElEl r01 r01 r01 dmg% 100 100 dmg/lvl 12 addxp 20 20 allskills 1 1 swing1 15 15 levelreq 11 11 0
Runeword144 Thought 1 orb TirLumIst r03 r17 r24 sor 2 2 regen 6 6 regen-mana 75 75 pierce-ltng 20 20 extra-cold 20 20 block 15 15 balance2 20 20 0
Runeword145 Thunder 1 mele PulLemKoFal r21 r20 r18 r19 dmg% 235 235 dmg-ltng 1 444 gethit-skill 57 10 22 res-ltng 75 75 res-cold -25 -25 oskill 42 1 1 addxp 2 2 0
Runeword146 Time 1 armo shld JahAmn r31 r11 ac% 160 220 Levelreq 20 20 hp 35 50 hp% 10 20 gethit-skill 48 100 25 noheal 1 1 oskill teleport 1 1 0
Runeword147 Tradition 1 aspe SurLoOhmGulIst r29 r28 r27 r25 r24 ama 3 3 dmg% 325 400 lifesteal 10 10 manasteal 10 10 swing3 50 50 pierce-ltng 25 25 extra-ltng 25 25 0
Runeword148 Treachery 1 necr TirHel r03 r15 levelreq 12 12 block 40 40 ac% 100 100 mana 50 50 hp 50 50 addxp -2 -2 0
Runeword149 Trust 1 tors AmnOhmFal r11 r27 r19 levelreq 5 5 ac% 125 200 allskills 1 1 hp 75 100 swing2 20 20 dmg-norm 15 30 death-skill nova 100 57 0
Runeword150 Truth 1 orb SolIth r12 r06 dmg% 100 100 sor 1 1 mana 35 35 regen-mana 75 75 cast2 25 25 0
Runeword151 Unbending Will 1 swor BerLumIstIstTirAmn r30 r17 r24 r24 r03 r11 dmg% 280 280 ethereal 1 1 indestruct 1 1 hit-skill 48 50 10 noheal 1 1 levelreq 12 12 balance3 60 60 0
Runeword152 Valor 1 mele ShaelTirDolChamSurUm r13 r03 r14 r32 r29 r22 levelreq 10 10 dmg-min 100 100 dmg/lvl 20 ethereal 1 1 indestruct 1 1 addxp 5 5 charged 149 15 40 0
Runeword153 Vengeance 1 h2h Dol + Nef r14 r04 dmg-norm 35 70 death-skill poison nova 100 55 lifesteal 6 6 hp 40 40 all-stats 10 10 ass 1 1 0
Runeword155 Victory 1 axe OhmOhmIstLemOhmOhm r27 r27 r24 r20 r27 r27 levelreq 24 24 dmg/lvl 20 rep-dur 10 swing3 60 60 ease -50 -50 noheal 1 1 dmg-elem 125 1 300 0
Runeword156 Voice 1 armo shld UmIthAmnHel r22 r06 r11 r15 levelreq 1 1 extra-cold 10 15 extra-fire 10 15 extra-ltng 10 15 res-all 7 10 howl 77 77 mana/lvl 8 0
Runeword157 Void 1 barb SolAmn r12 r11 bar 1 1 dmg-max 10 15 hp 50 50 balance2 25 25 move2 25 25 lifesteal 3 6 manasteal 3 6 0
Runeword158 War 1 helm IoHel r16 r15 ac% 100 140 dmg% 35 50 swing3 30 30 red-dmg% 20 25 ignore-ac 1 1 noheal 1 1 balance2 25 25 0
Runeword159 Water 1 spea KoShaelHel r18 r13 r15 dmg-cold 150 33 122 regen-mana 35 35 regen 3 5 dmg% 175 175 balance2 25 25 levelup-skill battle orders 100 25 res-fire 50 50 0
Runeword161 Whisper 1 weap ShaelShaelShael r13 r13 r13 dmg-norm 25 75 dmg% 100 100 regen 6 6 reduce-ac 15 15 ease -25 -25 0
Runeword47 Widowmaker 1 swor axe EthTirLoMalRal r05 r03 r28 r23 r08 hit-skill 278 20 15 swing2 30 40 dmg 340 400 ignore-ac 1 1 dmg-dem/lvl 15 pierce-pois 20 25 heal-kill 11 11 0
Runeword163 Wind 1 mele SurEl r29 r01 hit-skill 245 10 9 move2 20 20 swing2 40 40 balance2 15 15 dmg% 120 120 160 reduce-ac 50 50 charged 240 127 13 0
Runeword164 Wings of Hope 1 scep ChamCham r32 r32 dmg-min 60 100 dmg-max 150 200 oskill teleport 8 8 aura 125 3 3 hit-skill 84 25 35 rip 1 1 all-stats 20 20 0
Runeword99 Winter 1 swor mace LemKoElEld r20 r18 r01 r02 hit-skill 64 15 13 hit-skill 45 18 20 dmg-demon 220 350 dmg-undead 280 300 dmg-cold 75 100 220 pierce-cold 24 24 nofreeze 1 1 0
Runeword165 Wisdom 1 wand JahLum r31 r17 allskills 2 2 addxp 3 5 cheap 10 10 mana/lvl 16 regen 5 5 regen-mana 75 75 res-mag 20 20 0
Runeword166 Woe 1 tors ChamTirShael r32 r03 r13 levelreq 7 7 gethit-skill 53 25 25 gethit-skill 47 25 25 gethit-skill 59 25 25 allskills 2 2 all-stats 25 25 res-pois-len 80 80 0
Runeword167 Wonder 1 mele VexAmnShaelAmnVex r26 r11 r13 r11 r26 dmg% 275 275 balance2 30 30 str 20 20 dex 20 20 gold%/time 1 1 200 mag%/time 3 1 100 hp/lvl 12 0
Runeword168 Wrath 1 miss PulLumBerMal r21 r17 r30 r23 hit-skill 87 30 1 hit-skill 82 5 10 dmg-demon 300 300 nofreeze 1 1 dmg-undead 250 300 dmg-mag 85 120 dmg-ltng 41 240 0
Runeword169 Youth 1 tors OrtEth r09 r05 res-fire 30 35 res-cold 30 35 res-pois 30 35 ac% 90 120 regen 8 10 regen-mana 85 85 hit-skill 72 9 4 0

View File

@ -1,430 +0,0 @@
index set item *item rarity lvl lvl req chrtransform invtransform invfile flippyfile dropsound dropsfxframe usesound cost mult cost add add func prop1 par1 min1 max1 prop2 par2 min2 max2 prop3 par3 min3 max3 prop4 par4 min4 max4 prop5 par5 min5 max5 prop6 par6 min6 max6 prop7 par7 min7 max7 prop8 par8 min8 max8 prop9 par9 min9 max9 aprop1a apar1a amin1a amax1a aprop1b apar1b amin1b amax1b aprop2a apar2a amin2a amax2a aprop2b apar2b amin2b amax2b aprop3a apar3a amin3a amax3a aprop3b apar3b amin3b amax3b aprop4a apar4a amin4a amax4a aprop4b apar4b amin4b amax4b aprop5a apar5a amin5a amax5a aprop5b apar5b amin5b amax5b *eol
Civerb's Ward Civerb's Vestments lrg Large Shield 7 13 9 lyel lyel 5 2500 1 ac 15 15 block 15 15 mana 21 22 res-pois 25 26 0
Civerb's Icon Civerb's Vestments amu Amulet 7 13 9 lyel lyel 5 2500 2 regen-mana 40 40 regen 4 4 res-cold 25 25 ac 25 25 0
Civerb's Cudgel Civerb's Vestments gsc Grand Scepter 7 13 9 lyel lyel 5 2500 att 75 75 dmg-max 17 23 dmg/lvl 8 0
Hsarus' Iron Heel Hsarus' Defense mbt Chain Boots 7 4 3 dred dred 5 2500 2 res-fire 25 25 move2 20 20 att/lvl 20 0
Hsarus' Iron Fist Hsarus' Defense buc Buckler 7 4 3 dred dred 5 2500 2 red-dmg 2 2 str 10 10 ac/lvl 20 0
Hsarus' Iron Stay Hsarus' Defense mbl Belt 7 4 3 dred dred 5 2500 2 res-cold 20 20 hp 20 20 ac/lvl 20 0
Cleglaw's Tooth Cleglaw's Brace lsd Long Sword 7 6 4 lred lred 5 2500 2 att% 30 30 deadly 50 50 dmg/lvl 10 0
Cleglaw's Claw Cleglaw's Brace sml Small Shield 7 6 4 lred lred 5 2500 2 ac 17 17 res-pois-len 75 75 res-all 15 15 0
Cleglaw's Pincers Cleglaw's Brace mgl Chain Gloves 7 6 4 lred lred 5 2500 2 knock 1 1 slow 25 25 att/lvl 20 0
Iratha's Collar Iratha's Finery amu Amulet 7 21 15 lgry lgry 5 2500 2 res-pois 30 30 res-pois-len 75 75 res-all 15 15 0
Iratha's Cuff Iratha's Finery tgl Light Gauntlets 7 21 15 lgry lgry 5 2500 2 res-cold 30 30 half-freeze 1 1 swing2 20 20 0
Iratha's Coil Iratha's Finery crn Crown 7 21 15 lgry lgry 5 2500 2 res-fire 30 30 res-ltng 30 30 ac/lvl 16 0
Iratha's Cord Iratha's Finery tbl Heavy Belt 7 21 15 lgry lgry 5 2500 2 ac 25 25 dmg-min 5 5 dex 10 10 0
Isenhart's Lightbrand Isenhart's Armory bsd Broad Sword 7 11 8 lgld lgld 5 2500 2 dmg-min 10 10 swing2 20 20 att/lvl 10 0
Isenhart's Parry Isenhart's Armory gts Gothic Shield 7 11 8 lgld lgld 5 2500 2 ac 40 40 light-thorns 4 4 res-all 8 8 0
Isenhart's Case Isenhart's Armory brs Breast Plate 7 11 8 lgld lgld 5 2500 2 ac 40 40 red-mag 2 2 ac/lvl 16 0
Isenhart's Horns Isenhart's Armory fhl Full Helm 7 11 8 lgld lgld 5 2500 2 dex 6 6 red-dmg 2 2 res-all 8 8 0
Vidala's Barb Vidala's Rig lbb Long Battle Bow 7 19 14 blac blac 5 2500 2 ltng-min 1 1 ltng-max 20 20 att/lvl 16 0
Vidala's Fetlock Vidala's Rig tbt Light Plated Boots 7 19 14 blac blac 5 2500 2 stam 150 150 move3 30 30 res-all 8 8 0
Vidala's Ambush Vidala's Rig lea Leather Armor 7 19 14 blac blac 5 2500 2 ac 50 50 dex 11 11 res-fire 24 24 ac/lvl 20 0
Vidala's Snare Vidala's Rig amu Amulet 7 19 14 blac blac 5 2500 2 hp 15 15 res-cold 20 20 mag% 50 50 0
Milabrega's Orb Milabrega's Regalia kit Kite Shield 7 23 17 dblu dblu 5 2500 2 mag% 20 20 ac 25 25 hp 50 50 ac% 50 50 0
Milabrega's Rod Milabrega's Regalia wsp War Scepter 7 23 17 dblu dblu 5 2500 pal 1 1 dmg% 50 50 light 2 2 0
Milabrega's Diadem Milabrega's Regalia crn Crown 7 23 17 dblu dblu 5 2500 2 hp 15 15 mana 15 15 res-cold 40 40 0
Milabrega's Robe Milabrega's Regalia aar Ancient Armor 7 23 17 dblu dblu 5 2500 2 thorns 3 3 red-dmg 2 2 ac% 100 100 0
Cathan's Rule Cathan's Traps bst Battle Staff 7 15 11 dgrn dgrn 5 2500 2 fireskill 1 1 fire-max 10 10 mana 50 50 res-all 10 10 0
Cathan's Mesh Cathan's Traps chn Chain Mail 7 15 11 dgrn dgrn 5 2500 2 ac 15 15 ease -50 -50 thorns 5 5 res-fire 30 30 0
Cathan's Visage Cathan's Traps msk Mask 7 15 11 dgrn dgrn 5 2500 2 mana 20 20 res-cold 25 25 ac/lvl 16 0
Cathan's Sigil Cathan's Traps amu Amulet 7 15 11 dgrn dgrn 5 2500 2 balance1 10 10 light-thorns 5 5 att 50 50 mag% 25 25 0
Cathan's Seal Cathan's Traps rin Ring 7 15 11 dgrn dgrn 5 2500 2 lifesteal 6 6 red-dmg 2 2 str 10 10 0
Tancred's Crowbill Tancred's Battlegear mpi Military Pick 7 27 20 dgld dgld 5 2500 2 att 75 75 dmg% 80 80 mana 20 20 swing2 20 20 0
Tancred's Spine Tancred's Battlegear ful Full Plate Mail 7 27 20 dgld dgld 5 2500 2 hp 40 40 str 15 15 ac/lvl 16 0
Tancred's Hobnails Tancred's Battlegear lbt Boots 7 27 20 dgld dgld 5 2500 2 regen-stam 25 25 dex 10 10 move3 30 30 str 10 10 0
Tancred's Weird Tancred's Battlegear amu Amulet 7 27 20 dgld dgld 5 2500 2 red-dmg 2 2 red-mag 1 1 mag% 78 78 att 60 60 0
Tancred's Skull Tancred's Battlegear bhm Bone Helm 7 27 20 dgld dgld 5 2500 2 dmg% 10 10 att 40 40 res-all 10 10 0
Sigon's Gage Sigon's Complete Steel hgl Gauntlets 7 9 6 whit whit 5 2500 2 str 10 10 att 20 20 swing3 30 30 0
Sigon's Visor Sigon's Complete Steel ghm Great Helm 7 9 6 whit whit 5 2500 2 mana 30 30 ac 25 25 att/lvl 16 0
Sigon's Shelter Sigon's Complete Steel gth Gothic Plate 7 9 6 whit whit 5 2500 2 ac% 25 25 res-ltng 30 30 thorns 20 20 0
Sigon's Sabot Sigon's Complete Steel hbt Greaves 7 9 6 whit whit 5 2500 2 move2 20 20 res-cold 40 40 att 50 50 mag% 50 50 0
Sigon's Wrap Sigon's Complete Steel hbl Plated Belt 7 9 6 whit whit 5 2500 2 res-fire 20 20 hp 20 20 ac/lvl 16 0
Sigon's Guard Sigon's Complete Steel tow Tower Shield 7 9 6 whit whit 5 2500 2 allskills 1 1 block 20 20 0
Infernal Cranium Infernal Tools cap Cap 7 7 5 lyel lyel 5 2500 2 res-all 10 10 dmg-to-mana 20 20 ac/lvl 16 0
Infernal Torch Infernal Tools gwn Grim Wand 7 7 5 lyel lyel 5 2500 2 dmg-min 8 8 nec 1 1 att/lvl 20 0
Infernal Sign Infernal Tools tbl Heavy Belt 7 7 5 lyel lyel 5 2500 2 ac 25 25 hp 20 20 res-pois 25 25 half-freeze 1 1 0
Berserker's Headgear Berserker's Garb hlm Helm 7 5 3 dred dred 5 2500 2 ac 15 15 res-fire 25 25 att/lvl 16 0
Berserker's Hauberk Berserker's Garb spl Splint Mail 7 5 3 dred dred 5 2500 2 red-mag 2 2 bar 1 1 ac/lvl 24 0
Berserker's Hatchet Berserker's Garb 2ax Double Axe 7 5 3 dred dred 5 2500 2 att% 30 30 manasteal 5 5 dmg% 50 50 0
Death's Hand Death's Disguise lgl Leather Gloves 7 8 6 lred lred 5 2500 2 res-pois 50 50 res-pois-len 75 75 swing3 30 30 0
Death's Guard Death's Disguise lbl Sash 7 8 6 lred lred 5 2500 2 ac 20 20 nofreeze 1 1 res-all 15 15 0
Death's Touch Death's Disguise wsd War Sword 7 8 6 lred lred 5 2500 2 dmg% 25 25 lifesteal 4 4 dmg-cold 75 25 75 0
Angelic Sickle Angelical Raiment sbr Sabre 7 17 12 lgry lgry 5 2500 2 att 75 75 dmg-undead 250 250 dmg% 75 75 swing3 30 30 0
Angelic Mantle Angelical Raiment rng Ring Mail 7 17 12 lgry lgry 5 2500 2 red-dmg 3 3 ac% 40 40 ac 150 150 res-fire 50 50 0
Angelic Halo Angelical Raiment rin Ring 7 17 12 lgry lgry 5 2500 2 regen 6 6 hp 20 20 att/lvl 24 mag% 50 50 0
Angelic Wings Angelical Raiment amu Amulet 7 17 12 lgry lgry 5 2500 2 light 3 3 dmg-to-mana 20 20 hp 75 75 allskills 1 1 0
Arctic Horn Arctic Gear swb Short War Bow 7 3 2 lgld lgld 5 2500 2 att% 20 20 dmg% 50 50 att/lvl 16 dmg-cold 75 20 30 0
Arctic Furs Arctic Gear qui Quilted Armor 7 3 2 lgld lgld 5 2500 2 ac% 275 325 res-all 10 10 ac/lvl 24 res-cold 15 15 0
Arctic Binding Arctic Gear vbl Light Belt 7 3 2 lgld lgld 5 2500 2 res-cold 40 40 ac 30 30 mag% 40 40 res-cold 10 10 0
Arctic Mitts Arctic Gear tgl Light Gauntlets 7 3 2 lgld lgld 5 2500 2 hp 20 20 swing1 10 10 att 50 50 dex 10 10 0
Arcanna's Sign Arcanna's Tricks amu Amulet 7 20 15 blac blac 5 2500 2 mana 15 15 regen-mana 20 20 mag% 50 50 res-fire 20 20 0
Arcanna's Deathwand Arcanna's Tricks wst War Staff 7 20 15 blac blac 5 2500 2 sor 1 1 deadly 25 25 mana 50 50 regen-mana 5 5 0
Arcanna's Head Arcanna's Tricks skp Skull Cap 7 20 15 blac blac 5 2500 2 regen 4 4 thorns 2 2 ac/lvl 24 res-ltng 15 15 0
Arcanna's Flesh Arcanna's Tricks ltp Light Plate 7 20 15 blac blac 5 2500 2 light 2 2 red-dmg 3 3 ac 100 100 enr 10 10 0
Expansion 0
Natalya's Totem Natalya's Odium xh9 Grim Helm 7 22 59 dgry dgry 5 5000 ac 135 175 dex 20 30 str 10 20 res-all 10 20 red-mag 3 3 0
Natalya's Mark Natalya's Odium 7qr Scissors Suwayyah 7 22 79 dgry dgry 5 5000 swing3 40 40 dmg% 200 200 ignore-ac 1 1 dmg-cold 100 50 50 dmg-fire 12 17 dmg-undead 200 200 dmg-demon 200 200 0
Natalya's Shadow Natalya's Odium ucl Loricated Mail 7 22 73 dgry dgry 5 5000 ac 150 225 hp/lvl 8 skilltab 19 2 2 res-pois-len 75 75 res-pois 25 25 sock 1 3 0
Natalya's Soul Natalya's Odium xmb Mesh Boots 7 22 25 dgry dgry 5 5000 ac 75 125 move3 40 40 regen-stam/lvl 2 dur 50 50 res-cold 15 25 res-ltng 15 25 0
Aldur's Stony Gaze Aldur's Watchtower dr8 Hunter's Guise 7 29 36 oran oran 5 5000 2 ac 90 90 regen-mana 17 17 light 5 5 balance3 25 25 res-cold 40 50 sock 2 2 enr 15 15 enr 15 15 enr 15 15 0
Aldur's Deception Aldur's Watchtower uul Shadow Plate 7 29 76 oran oran 5 5000 2 ac 300 300 skilltab 16 1 1 str 20 20 dex 15 15 res-ltng 40 50 ease -50 -50 skilltab 17 1 1 vit 15 15 vit 15 15 vit 15 15 0
Aldur's Gauntlet Aldur's Watchtower 9mt Jagged Star 7 29 42 oran oran 5 5000 2 dmg-norm 40 62 dmg-ltng 50 75 lifesteal 10 10 swing3 30 30 dmg-demon 200 200 manasteal 5 5 sock 2 5 str 15 15 str 15 15 str 15 15 0
Aldur's Advance Aldur's Watchtower xtb Battle Boots 7 29 45 oran oran 5 5000 2 indestruct 1 1 regen-stam 32 32 hp 50 50 dmg-to-mana 10 10 move3 40 40 stam 180 180 res-fire 40 50 dex 15 15 dex 15 15 dex 15 15 0
Immortal King's Will Immortal King ba5 Avenger Guard 7 37 47 lgry lgry 5 5000 ac 125 125 gold% 37 37 skilltab 14 2 2 light 4 4 mag% 25 40 sock 2 2 0
Immortal King's Soul Cage Immortal King uar Sacred Armor 7 37 76 lgry lgry 5 5000 2 ac 400 400 gethit-skill 52 5 5 skilltab 12 2 2 res-pois 50 50 balance2 25 25 res-cold 40 40 res-fire 40 40 res-ltng 40 40 ac% 50 50 0
Immortal King's Detail Immortal King zhb War Belt 7 37 29 lgry lgry 5 5000 2 ac 36 36 res-fire 28 28 res-ltng 31 31 str 25 25 ac 105 105 balance2 25 25 ac% 100 100 red-dmg% 20 20 skilltab 13 2 2 0
Immortal King's Forge Immortal King xhg War Gauntlets 7 37 30 lgry lgry 5 5000 2 ac 65 65 str 20 20 dex 20 20 gethit-skill 38 12 4 swing2 25 25 ac 120 120 lifesteal 10 10 manasteal 10 10 freeze 2 2 0
Immortal King's Pillar Immortal King xhb War Boots 7 37 31 lgry lgry 5 5000 2 ac 75 75 move3 40 40 att 110 110 hp 44 44 mag% 25 25 skilltab 12 2 2 ac 160 160 half-freeze 1 1 0
Immortal King's Stone Crusher Immortal King 7m7 Ogre Maul 7 37 76 lgry lgry 5 5000 2 indestruct 1 1 swing3 40 40 dmg-demon 200 200 dmg-undead 200 200 crush 35 40 dmg% 200 200 sock 2 2 dmg-fire 211 397 dmg-ltng 7 477 dmg-cold 150 127 364 dmg-pois 150 349 349 dmg-mag 250 361 0
Tal Rasha's Fire-Spun Cloth Tal Rasha's Wrappings zmb Mesh Belt 7 26 53 dpur dpur 5 5000 2 ease -20 -20 mana 30 30 dex 20 20 dmg-to-mana 37 37 mag% 10 15 ac 60 60 cast2 10 10 0
Tal Rasha's Adjudication Tal Rasha's Wrappings amu Amulet 1 26 67 dpur dpur 5 5000 2 res-ltng 33 33 sor 2 2 hp 50 50 dmg-ltng 3 32 mana 42 42 cast2 10 10 0
Tal Rasha's Lidless Eye Tal Rasha's Wrappings oba Swirling Crystal 7 26 65 dpur dpur 5 5000 2 hp 57 57 mana 77 77 enr 10 10 cast3 20 20 skill Fire Mastery 1 2 skill Lightning Mastery 1 2 skill Cold Mastery 1 2 sor 1 1 pierce-fire 15 15 pierce-ltng 15 15 extra-cold 15 15 0
Tal Rasha's Howling Wind Tal Rasha's Wrappings uth Lacquered Plate 7 26 71 dpur dpur 5 5000 2 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 cast2 10 10 0
Tal Rasha's Horadric Crest Tal Rasha's Wrappings xsk Death Mask 7 26 66 dpur dpur 5 5000 mana 30 30 hp 60 60 ac 45 45 res-all 15 15 lifesteal 10 10 manasteal 10 10 0
Griswold's Valor Griswold's Legacy urn Corona 7 44 69 dgld dgld 5 5000 2 ac% 50 75 abs-cold/lvl 2 2 sock 2 2 ease -40 -40 mag% 20 30 res-all 5 5 skilltab 10 2 2 0
Griswold's Heart Griswold's Legacy xar Ornate Plate 7 44 45 dgld dgld 5 5000 ac 500 500 skilltab 11 2 2 sock 3 3 str 20 20 ease -40 -40 0
Griswolds's Redemption Griswold's Legacy 7ws Caduceus 7 44 53 dgld dgld 5 5000 2 dmg% 200 240 swing2 40 40 dmg-undead 200 200 ease -20 -20 sock 3 4 skilltab 9 2 2 dmg-norm 10 20 dmg-norm 10 20 0
Griswold's Honor Griswold's Legacy paf Vortex Shield 7 44 68 dgld dgld 5 5000 ac 108 108 sock 3 block2 65 65 block 20 20 res-all 45 45 0
Trang-Oul's Guise Trang-Oul's Avatar uh9 Bone Visage 7 32 65 dgld dgld 5 5000 ac 80 100 balance2 25 25 thorns 20 20 mana 150 150 regen 5 5 0
Trang-Oul's Scales Trang-Oul's Avatar xul Chaos Armor 7 32 49 dyel dyel 5 5000 2 ease -40 -40 ac-miss 100 100 res-pois 40 40 skilltab 8 2 2 move3 40 40 ac% 150 150 res-ltng 50 50 red-dmg% 25 25 0
Trang-Oul's Wing Trang-Oul's Avatar ne9 Cantor Trophy 7 32 54 dyel dyel 5 5000 2 ac 125 125 str 25 25 dex 15 15 res-fire 38 45 block 30 30 res-pois 40 40 skilltab 7 2 2 pierce-pois 25 25 regen 15 15 0
Trang-Oul's Claws Trang-Oul's Avatar xmg Heavy Bracers 7 32 45 dyel dyel 5 5000 ac 30 30 cast3 20 20 res-cold 30 30 skilltab 6 2 2 extra-pois 25 25 0
Trang-Oul's Girth Trang-Oul's Avatar utc Troll Belt 7 32 47 dyel dyel 5 5000 2 ac 75 100 stam 30 30 regen 5 5 hp 66 66 nofreeze 1 1 ease -40 -40 mana 25 50 res-cold 40 40 0
M'avina's True Sight M'avina's Battle Hymn ci3 Diadem 7 21 59 whit whit 5 5000 2 ac 150 150 regen 10 10 swing2 30 30 mana 25 25 allskills 1 1 att% 50 50 res-all 25 25 0
M'avina's Embrace M'avina's Battle Hymn uld Kraken Shell 7 21 70 whit whit 5 5000 2 gethit-skill 55 10 3 ease -30 -30 red-mag 5 12 skilltab 1 2 2 ac/lvl 32 ac 350 350 balance2 30 30 0
M'avina's Icy Clutch M'avina's Battle Hymn xtg Battle Gauntlets 7 21 32 whit whit 5 5000 2 ac 45 50 dmg-cold 150 6 18 half-freeze 1 1 gold% 56 56 str 10 10 dex 15 15 dmg-cold 100 131 252 extra-cold 20 20 0
M'avina's Tenet M'avina's Battle Hymn zvb Sharkskin Belt 7 21 45 whit whit 5 5000 2 ac 50 50 move2 20 20 manasteal 5 5 light 5 5 res-all 25 25 0
M'avina's Caster M'avina's Battle Hymn amc Grand Matron Bow 7 21 70 whit whit 5 5000 2 dmg% 188 188 swing3 40 40 magicarrow 1 1 att 50 50 dmg-mag 114 377 hit-skill Nova 10 15 skilltab 0 2 2 0
Telling of Beads The Disciple amu Amulet 4 39 30 lblu lblu 5 5000 res-pois 35 50 allskills 1 1 res-cold 18 18 thorns 8 10 0
Laying of Hands The Disciple ulg Bramble Mitts 7 39 63 lblu lblu 5 5000 ac 25 25 swing2 20 20 res-fire 50 50 dmg-demon 350 350 hit-skill 101 10 3 0
Rite of Passage The Disciple xlb Demonhide Boots 7 39 29 lblu lblu 5 5000 ac 25 25 move3 30 30 half-freeze 1 1 stam 15 25 0
Spiritual Custodian The Disciple uui Dusk Shroud 7 39 43 lblu lblu 5 5000 ac 305 415 res-fire 24 24 gethit-skill 48 25 3 dmg-pois 50 125 175 0
Credendum The Disciple umc Mithril Coil 7 39 65 lblu lblu 5 5000 ac 50 50 str 10 10 dex 10 10 res-all 15 15 0
Dangoon's Teaching Heaven's Brethren 7ma Reinforced Mace 7 55 68 5 5000 dmg/lvl 12 swing3 40 40 hit-skill 44 10 3 dmg-fire 20 30 0
Heaven's Taebaek Heaven's Brethren uts Ward 7 55 81 5 5000 ac 50 50 mana 100 100 res-ltng 30 30 thorns 30 30 indestruct 1 1 block 25 25 block3 30 30 0
Haemosu's Adament Heaven's Brethren xrs Cuirass 7 55 44 5 5000 ac 500 500 ac-miss 35 35 hp 75 75 ac-hth 40 40 ease -20 -20 0
Ondal's Almighty Heaven's Brethren uhm Spired Helm 7 55 69 5 5000 ac 50 50 ease -40 -40 hit-skill 72 10 3 str 10 10 dex 15 15 balance3 24 24 0
Guillaume's Face Orphan's Call xhm Winged Helm 7 41 34 lgry lgry 5 5000 ac% 120 120 balance3 30 30 crush 35 35 deadly 15 15 str 15 15 0
Wilhelm's Pride Orphan's Call ztb Battle Belt 7 41 42 lgry lgry 5 5000 ac% 75 75 manasteal 5 5 res-cold 10 10 lifesteal 5 5 0
Magnus' Skin Orphan's Call xvg Sharkskin Gloves 7 41 37 lgry lgry 5 5000 ac% 50 50 res-fire 15 15 swing2 20 20 light 3 3 att 100 100 0
Wihtstan's Guard Orphan's Call xml Round Shield 7 41 29 lgry lgry 5 5000 ac% 175 175 block3 40 40 block 55 55 half-freeze 1 1 light 5 5 0
Hwanin's Splendor Hwanin's Majesty xrn Grand Crown 7 28 45 5 5000 regen 20 20 red-mag 10 10 res-cold 37 37 ac% 100 100 0
Hwanin's Refuge Hwanin's Majesty xcl Tigulated Mail 7 28 30 5 5000 ac 200 200 res-pois 27 27 hp 100 100 gethit-skill 42 10 3 0
Hwanin's Seal Hwanin's Majesty mbl Belt 7 28 35 5 5000 dmg-ltng 3 33 noheal 1 1 ac/lvl 12 dmg-to-mana 12 12 0
Hwanin's Justice Hwanin's Majesty 9vo Bill 7 28 28 5 5000 att 330 330 indestruct 1 1 hit-skill 45 10 3 swing3 40 40 dmg% 200 200 dmg-ltng 5 25 0
Sazabi's Cobalt Redeemer Sazabi's Grand Tribute 7ls Cryptic Sword 7 34 73 dblu dblu 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 0
Sazabi's Ghost Liberator Sazabi's Grand Tribute upl Balrog Skin 7 34 67 dblu dblu 5 5000 ac 400 400 balance3 30 30 str 25 25 att-demon 300 300 hp 50 75 0
Sazabi's Mental Sheath Sazabi's Grand Tribute xhl Basinet 7 34 43 dblu dblu 5 5000 ac 100 100 allskills 1 1 res-fire 15 20 res-ltng 15 20 0
Bul-Kathos' Sacred Charge Bul-Kathos' Children 7gd Colossus Blade 7 50 61 dgrn dgrn 5 5000 crush 35 35 res-all 20 20 swing2 20 20 knock 1 1 dmg% 200 200 0
Bul-Kathos' Tribal Guardian Bul-Kathos' Children 7wd Mythical Sword 7 50 54 dgrn dgrn 5 5000 res-fire 50 50 dmg-pois 50 255 255 swing2 20 20 str 20 20 dmg% 200 200 0
Cow King's Horns Cow King's Leathers xap War Hat 7 20 25 5 5000 ac 75 75 half-freeze 1 1 dmg-to-mana 35 35 thorns 10 10 0
Cow King's Hide Cow King's Leathers stu Studded Leather 7 20 18 5 5000 res-all 18 18 ac% 60 60 hp 30 30 gethit-skill 53 18 5 0
Cow King's Hoofs Cow King's Leathers vbt Heavy Boots 7 20 13 5 5000 ac 25 35 move3 30 30 mag% 25 25 dex 20 20 dmg-fire 25 35 0
Naj's Puzzler Naj's Ancient Set 6cs Elder Staff 7 43 78 5 5000 enr 35 35 dmg% 150 150 charged 54 69 11 cast3 30 30 dmg-ltng 6 45 mana 70 70 allskills 1 1 0
Naj's Light Plate Naj's Ancient Set ult Hellforge Plate 7 43 71 5 5000 ease -60 -60 hp 65 65 res-all 25 25 dmg-to-mana 45 45 allskills 1 1 ac 300 300 0
Naj's Circlet Naj's Ancient Set ci0 Circlet 7 43 28 5 5000 ac 75 75 dmg-fire 25 35 Light 5 5 str 15 15 gethit-skill 53 12 5 0
McAuley's Paragon McAuley's Folly cap Cap 3 20 25 lpur lpur 5 5000 mag% 35 35 thorns 8 8 ac/lvl 8 0
McAuley's Riprap McAuley's Folly vbt Heavy Boots 7 20 20 lpur lpur 5 5000 move3 40 40 att 100 100 str 5 5 dex 10 10 0
McAuley's Taboo McAuley's Folly vgl Heavy Gloves 7 20 28 lpur lpur 5 5000 ac 20 25 swing2 20 20 hp 40 40 dmg-pois 75 30 36 0
McAuley's Superstition McAuley's Folly bwn Bone Wand 7 20 25 lpur lpur 5 5000 dmg% 75 75 mana 25 25 manasteal 8 8 cast3 20 20 dmg-cold 50 25 75 0
Jakira's Strike Midnight Calling axf Hatchet hands 7 10 12 lgry lgry 5 5000 2 dmg% 120 120 lifesteal 5 5 dmg-min 15 15 0
Jakira's Braces Midnight Calling mgl Chain Gloves 7 10 10 lgry lgry 5 5000 2 swing1 10 10 ac% 75 75 hp 25 35 skilltab 18 2 2 0
Jakira's Hood Midnight Calling cap Cap 7 10 5 lgry lgry 5 5000 2 ass 1 1 ac 15 25 mana 20 30 red-mag 6 6 0
Jakira's Leather Jerkin Midnight Calling stu Studded Leather Armor 7 10 9 lgry lgry 5 5000 2 ac 35 50 dex 15 15 str 15 15 red-dmg 8 8 0
Peace Ring Nature's Grove rin Ring 5 12 12 5 5000 2 mana 40 50 hp 40 50 0
Balance of Power Nature's Grove mau Maul 7 12 18 dyel dyel 5 5000 2 dmg% 140 200 swing1 15 15 dmg-cold 75 10 30 0
Calming Embrace Nature's Grove hla Hard Leather Armor 7 12 7 dyel dyel 5 5000 2 ac% 80 120 skilltab 15 1 3 regen 3 3 regen-mana 75 75 0
Animal Kinship Nature's Grove dr3 Antlers 7 12 15 dyel dyel 5 5000 2 ac 30 40 dru 1 1 skill 224 4 4 0
Grimlock's Skull Grimlock's Grave ne2 Zombie Head 7 11 16 blac blac 5 5000 2 block 25 30 block1 20 20 ac% 100 100 0
Grimlock's Wand Grimlock's Grave bwn Bone Wand 7 11 15 blac blac 5 5000 2 nec 1 1 mana 33 33 dmg-norm 8 20 0
Grimlock's Shroud Grimlock's Grave qui Quilted Armor 7 11 11 blac blac 5 5000 2 red-dmg% 10 10 gethit-skill 44 15 2 ac 77 77 regen-mana 40 40 0
Grimlock's Belt Grimlock's Grave mbl Belt 7 11 9 blac blac 5 5000 2 hp 20 25 balance1 15 15 ac 20 20 0
Corgina's Orb Corgina's Element ob2 Sacred Globe 7 15 15 5 5000 2 sor 1 1 mana-kill 2 4 skilltab 5 1 1 skilltab 4 1 1 skilltab 3 1 1 0
Corgina's Plate Corgina's Element ltp Light Plate 7 20 21 5 5000 2 ac% 75 105 res-all 20 20 dmg-to-mana 10 10 mana/lvl 8 0
Corgina's Ward Corgina's Element lrg Large Shield 7 12 14 5 5000 2 ac 20 30 block 15 25 block1 15 15 res-cold 20 20 res-ltng 20 20 0
Corgina's Slippers Corgina's Element lbt Boots 7 9 9 5 5000 2 move2 20 20 balance2 20 20 res-fire 20 20 res-pois 20 20 0
Sheena's Heartwood Sheena's Grace am1 Stag Bow 7 15 15 dred dred 5 5000 2 dmg-norm 15 30 openwounds 35 55 swing2 25 25 0
Sheena's Choker Sheena's Grace amu Amulet 5 12 12 5 5000 2 allskills 1 1 res-all 12 12 0
Sheena's Elven Mail Sheena's Grace scl Scale Mail 7 16 14 dgld dgld 5 5000 2 ac/time 0 1 200 dex 15 15 red-dmg 12 12 red-mag 8 8 lifesteal 5 5 0
Sheena's Band Sheena's Grace vbl Light Belt 7 8 10 oran oran 5 5000 2 hp% 5 10 mana 5 10 vit 10 10 0
Berserker's Howl Talonrage's Fury ba4 Assault Helmet 7 18 18 5 5000 2 bar 1 1 oskill 77 1 1 skilltab 12 1 1 0
Chaos Heart Talonrage's Fury fld Field Plate 7 20 22 dred dred 5 5000 2 ac% 90 120 sock 2 2 hp 40 40 red-dmg% 10 10 0
Warlord's Pike Talonrage's Fury pik Pike 7 20 20 dblu dblu 5 5000 2 dmg% 110 140 rep-dur 5 swing2 30 30 0
Shattering Fist Talonrage's Fury hgl Gauntlets 7 20 21 oran oran 5 5000 2 ac 20 30 crush 10 10 str 20 20 0
Greyhawk's Wing Greyhawk's Mantle plt Plate Mail 7 17 19 5 5000 2 ac 75 100 res-ltng 15 20 regen 3 3 0
Greyhawk's Icebrand Greyhawk's Mantle scp Scepter 7 17 14 5 5000 2 dmg% 80 120 dmg-cold 100 10 20 gethit-skill 40 15 3 0
Greyhawk's Deflector Greyhawk's Mantle pa3 Heraldic Shield 7 17 15 5 5000 2 sock 1 4 block 15 15 block3 25 25 0
Greyhawk's Viser Greyhawk's Mantle fhl Full Helm 7 17 13 5 5000 2 ac 20 30 manasteal 3 5 hp 20 20 0
Dragon Flanks Silent Runnings bsh Bone Shield 7 14 18 dblu dblu 5 5000 2 ac% 65 90 red-dmg% 5 10 block 20 20 0
Ferrit's Paw Silent Runnings vgl Heavy Gloves 7 12 14 whit whit 5 5000 2 swing2 20 20 lifesteal 4 6 mag% 25 25 0
Turtle's Shell Silent Runnings ful Full Plate Mail 7 22 23 dgrn dgrn 5 5000 2 ac% 90 130 balance2 20 20 red-dmg% 8 8 0
Wolf Pelt Silent Runnings tbl Heavy Belt 7 14 14 dgld dgld 5 5000 2 hp 35 50 res-all 10 15 ac 20 20 0
Beast Collar Silent Runnings bhm Bone Helm 7 15 15 5 5000 2 dmg% 20 30 dmg-mag 20 30 0
Jeweled Circlet Snowmane's Jewelry ci0 Circlet 7 22 22 5 5000 2 str 15 15 vit 15 15 hp 20 20 balance1 15 15 0
Jeweled Belt Snowmane's Jewelry hbl Plated Belt 7 22 22 5 5000 2 ac% 100 125 res-all 10 15 red-dmg% 10 10 0
Ruby Ring Snowmane's Jewelry rin Ring 4 22 22 5 5000 2 res-all 10 15 red-mag 6 8 hp 30 30 mag% 15 15 0
Diamond Necklace Snowmane's Jewelry amu Amulet 4 22 22 5 5000 2 res-all 15 20 mag% 20 30 allskills 1 1 0
Winter's Heart Four Seasons aar Ancient Armor 7 20 25 whit whit 5 5000 2 pierce-cold 10 15 extra-cold 10 15 abs-cold% 10 10 res-cold-max 10 10 nofreeze 1 1 0
Spring Dawning Four Seasons ghm Great Helm 7 20 22 cblu cblu 5 5000 2 pierce-ltng 10 15 extra-ltng 10 15 abs-ltng% 10 10 res-ltng-max 10 10 0
Summer Flame Four Seasons hbt Greaves 7 20 21 dred dred 5 5000 2 pierce-fire 10 15 extra-fire 10 15 abs-fire% 10 10 res-fire-max 10 10 0
Autumn's Decay Four Seasons tgl Light Gauntlets 7 20 19 oran oran 5 5000 2 pierce-pois 10 15 extra-pois 10 15 res-mag 10 10 res-pois-max 10 10 res-pois-len 75 75 0
Fernandez' Plate Forgotten Treasures brs Breast Plate 7 15 15 5 5000 2 ac% 75 120 sock 3 3 res-mag 10 10 red-dmg% 15 15 0
Katriana's Mask Forgotten Treasures msk Mask 7 15 15 5 5000 2 ac% 60 100 sock 3 3 mana 30 30 regen-mana 50 50 0
Luther's Cord Forgotten Treasures tbl Heavy Belt 7 10 10 5 5000 2 ac 20 30 regen 2 5 hp 50 50 manasteal 5 5 0
Janis' Gloves Forgotten Treasures vgl Heavy Gloves 7 10 10 5 5000 2 ac 20 30 swing2 20 20 lifesteal 5 5 str 10 10 0
Xavier's Greaves Forgotten Treasures tbt Light Plate Greaves 7 15 15 5 5000 2 ac% 80 110 move2 30 30 balance2 20 20 dex 10 10 0
Quincy's Shield Forgotten Treasures spk Spike Shield 7 10 10 5 5000 2 ac% 100 135 sock 3 3 block2 25 25 block 20 20 0
Power of Brother Laz Insight of Brother Laz xtg Battle Gauntlets 7 30 33 5 5000 2 swing1 10 10 manasteal 4 6 res-fire 15 20 ac% 80 100 str 15 15 0
Prayer of Brother Laz Insight of Brother Laz pa8 Protector Shield 7 30 38 5 5000 2 block 20 30 block2 20 20 balance2 20 20 ac/lvl 8 gethit-skill 64 7 1 0
Brother Laz' Holy Symbol Insight of Brother Laz amu Amulet 5 30 40 5 5000 2 pal 1 1 hp 25 50 res-ltng 25 50 res-pois-len 60 80 mana 25 25 gethit-skill 273 9 2 0
Wrath of Brother Laz Insight of Brother Laz 9sc Rune Scepter 7 30 29 5 5000 2 dmg% 160 190 dmg-norm 20 40 pal 1 1 ignore-ac 1 1 hit-skill 51 12 1 dmg/lvl 8 0
Brother Laz' Faith Insight of Brother Laz xld Sharktooth Armor 7 30 36 5 5000 2 ac% 100 200 red-dmg% 15 15 res-mag 15 20 regen-mana 50 50 gethit-skill 154 6 2 regen 3 3 0
Afterlife Hades' Underworld xla Demonhide Armor 7 30 34 5 5000 2 ac/lvl 32 skilltab 8 1 3 res-ltng 25 40 mana 50 50 0
Dracolich Hades' Underworld ne8 Sexton Trophy 7 30 36 5 5000 2 block 20 30 ac/lvl 16 res-fire 25 40 red-dmg% 20 20 0
Vampire's Crusade Hades' Underworld rin Ring 5 30 39 5 5000 2 regen-mana 50 75 cast1 10 10 mana/lvl 8 res-all 8 15 0
The River Stix Hades' Underworld xlb Demonhide Boots 7 30 32 5 5000 2 ac/lvl 8 move3 30 30 res-cold 25 40 nofreeze 1 1 0
Lord Hades' Throne Hades' Underworld xrn Grand Crown 7 30 41 5 5000 2 ac% 100 100 balance2 20 20 res-pois 25 40 gold% 100 100 mag% 35 35 0
Secret Sociaty Darque's Cabal ba9 Savage Helmet 7 35 40 5 5000 2 bar 1 1 gethit-skill 42 12 6 hp 50 70 ac% 100 100 dmg-max 15 15 swing1 15 15 0
Fallen Angels Darque's Cabal xth Embossed Armor 7 35 43 5 5000 2 ac% 180 220 res-all 20 30 sock 1 1 dmg-demon 100 100 0
Savant Fury Darque's Cabal 9gd Executionor Sword 7 35 42 5 5000 2 dmg% 220 300 indestruct 1 1 swing3 40 40 dmg-norm 50 125 noheal 1 1 0
Dawn's Blessing Darque's Cabal xts Ancient Shield 7 35 41 5 5000 2 block 25 35 balance2 25 25 dmg% 35 50 block2 20 20 0
Cry of the Wolf Red Havoc's Challenge xcl Tigulated Mail 7 30 35 dred dred 5 5000 2 charged 237 8 35 ac%/lvl 16 move2 20 20 dmg/lvl 8 0
Full Moon Frenzy Red Havoc's Challenge dr6 Alpha Helm 7 30 33 dred dred 5 5000 2 ac% 180 180 skilltab 16 2 3 sock 2 2 hp% 10 10 mag% 25 25 0
Torment of Innocence Red Havoc's Challenge 9m9 War Club 7 30 39 dred dred 5 5000 2 dmg% 160 200 swing3 50 50 ease -40 -40 att% 20 20 res-all 35 35 0
Drawing Out the Beast Red Havoc's Challenge zlb Demonhide Sash 7 30 32 dred dred 5 5000 2 ac% 90 110 hp 30 40 res-all 10 15 cast2 20 20 mana 50 50 0
Elven Grace Mishy's Avatar xvb Sharkskin Boots 7 35 32 5 5000 2 ac% 120 150 dex 15 15 res-cold 20 30 dmg-max 5 10 balance2 20 20 0
Woodland Protector Mishy's Avatar xhn Mesh Armor 7 35 35 dgrn 5 5000 2 ac% 100 120 sock 2 2 hp/lvl 8 res-pois-len 80 80 swing1 15 15 hp 25 25 0
Silent Whisper Mishy's Avatar ci1 Coronet 7 35 40 5 5000 2 allskills 1 1 cast2 20 20 dmg-to-mana 22 22 manasteal 5 5 0
Warder's Bond Mishy's Avatar rin Ring 5 35 38 5 5000 2 str 10 10 lifesteal 6 6 mana 40 50 knock 2 2 0
Maiden's Kiss Mishy's Avatar xmg Heavy Bracers 7 35 33 dgrn 5 5000 2 res-fire 30 40 res-ltng 30 40 res-pois 30 40 res-cold 30 40 swing2 20 20 0
Trent's Caster Mishy's Avatar am7 Ceremonial Bow 7 35 40 dgrn 5 5000 2 dmg% 170 210 swing2 20 20 sock 3 3 dmg-elem 100 25 100 0
Eye of the Trent Joel's Sanctuary ob8 Cloudy Sphere 7 32 33 5 5000 2 allskills 1 1 cast2 20 20 aura 109 4 4 mana% 20 20 0
Power of Fire Joel's Sanctuary xui Ghost Armor 7 32 33 dred dred 5 5000 2 ac% 100 120 extra-fire 10 20 pierce-fire 10 20 abs-fire% 10 20 res-fire 35 50 regen 5 5 0
Power of Ice Joel's Sanctuary xap War Hat 7 32 33 cblu cblu 5 5000 2 ac% 100 120 extra-cold 10 20 pierce-cold 10 20 abs-cold% 10 20 res-cold 35 50 half-freeze 1 1 0
Power of Lightning Joel's Sanctuary xuc Defender 7 32 33 dyel dyel 5 5000 2 ac% 100 120 extra-ltng 10 20 pierce-ltng 10 20 abs-ltng% 10 20 res-ltng 35 50 block 20 20 0
Shadow Ninja JBouley's Scion xtu Trellised Armor 7 35 35 blac dgry 5 5000 2 ac 300 400 oskill dodge 1 1 oskill evade 1 1 oskill avoid 1 1 0
Night's Caress JBouley's Scion xlg Demonhide Gloves 7 35 32 blac 5 5000 2 ac/lvl 12 swing2 20 20 skilltab 20 2 2 res-all 15 15 0
Mystic Blades JBouley's Scion 9qr Scissors Quhab 7 35 39 blac 5 5000 2 dmg% 160 190 swing2 20 20 sock 1 1 lifesteal 8 8 manasteal 8 8 0
Fade to Black JBouley's Scion ztb Battle Belt 7 35 38 blac 5 5000 2 fade 1 1 res-all 15 15 hp 25 25 mana 25 25 ac% 80 80 slow 15 15 0
Fall From Grace Heaven DeClineD rin Ring 3 45 45 5 5000 2 lifesteal 6 9 manasteal 4 7 hp 35 50 mana 60 80 0
Tyrial's Grief Heaven DeClineD rin Ring 3 45 45 5 5000 2 regen 3 5 regen-mana 45 70 cast2 20 20 mag% 25 35 0
Redemption Denied Heaven DeClineD amu Amulet 3 45 45 5 5000 2 allskills 1 1 mag% 40 50 all-stats 10 10 res-all 15 25 0
Hell's Embrace Heaven DeClineD xtp Mage Plate 7 45 45 dred dred 5 5000 2 ac% 160 200 sock 4 4 gold% 100 100 mag% 50 50 allskills 1 1 0
Spectral Knight's Unholy Shield Volf's Undead Legion xsh Grim Shield 7 30 38 whit whit 5 5000 2 ac% 125 155 red-dmg% 15 15 res-all 20 30 hp -10 -10 block 35 35 0
Death Knight's Demon Blade Volf's Undead Legion 9bs Battle Sword 7 30 37 whit whit 5 5000 2 dmg% 160 220 dmg-norm 20 55 lifesteal 15 15 swing1 20 20 cold-len 300 dmg-demon 100 100 0
Lich's Cranium Volf's Undead Legion xh9 Grim Helm 7 30 39 whit whit 5 5000 2 mana 60 80 cast2 25 25 sock 1 1 str 15 15 sor 1 1 0
Skeleton Warrior's Corpse Plate Volf's Undead Legion xlt Templar Plate 7 30 42 whit whit 5 5000 2 ac% 80 120 ac/lvl 16 balance2 25 25 nofreeze 0
Dagger of Vashna Legacy of Vashna 9dg Piognard 7 30 30 5 5000 2 dmg-norm 35 70 swing3 75 75 cast1 10 10 heal-kill 8 8 mana-kill 5 5 0
Mask of Vashna Legacy of Vashna xsk Death Mask 7 30 37 5 5000 2 ac% 100 115 move1 15 15 cast1 10 10 oskill 70 5 5 oskill skeleton mastery 3 3 0
Robes of Vashna Legacy of Vashna xea Serpent Skin 7 30 33 5 5000 2 half-freeze 1 1 ac 300 400 nec 1 1 dmg-undead 50 50 noheal 1 1 0
Lancer's Reach Salander's Tirade 9pa Partizan 7 30 37 dgld dgld 5 5000 2 dmg% 180 240 swing2 30 30 knock 12 12 dmg-fire 75 120 0
Salander's Mail Salander's Tirade xng Linked Mail 7 30 35 5 5000 2 ac% 120 150 sock 1 1 balance2 25 25 res-all 15 15 hp 35 35 0
Salander's Visor Salander's Tirade xlm Casque 7 30 34 5 5000 2 ac% 75 120 dmg-to-mana 10 10 mana-kill 3 3 mana 35 35 0
Red Dragon Scale Mail Jerik's Dragon Armor xcl Tigulated Mail 7 30 37 dred cred 5 5000 2 ac/lvl 32 abs-fire% 35 35 extra-fire 40 40 0
Black Dragon Hide Shield Jerik's Dragon Armor xit Dragon Shield 7 30 37 blac blac 5 5000 2 res-all 60 60 ac% 100 100 block 20 20 block2 30 30 0
Green Dragon Mask Jerik's Dragon Armor xhm Winged Helm 7 30 40 dgrn dgrn 5 5000 2 res-pois 50 50 res-pois-len 60 90 ac% 100 125 red-dmg 20 25 red-mag 20 20 0
Onyx' Fallen Star Onyx's Primal Rage uhb Myrmidon Greaves 7 60 77 oran oran 5 5000 2 ac% 170 200 res-ltng 25 35 move2 25 25 balance2 20 20 red-dmg 15 15 red-mag 15 15 str 30 30 0
Onyx' Solar Flair Onyx's Primal Rage 7b7 Champion Sword 7 60 69 cred cred 5 5000 2 dmg% 200 300 dmg-norm 75 200 thorns/lvl 16 dmg-to-mana 10 10 manasteal 7 7 lifesteal 12 12 swing3 40 40 0
Onyx' Super Nova Onyx's Primal Rage 7gs Balrog Blade 7 60 75 whit whit 5 5000 2 dmg% 200 300 dmg/lvl 24 swing3 30 30 sock 2 2 hit-skill 48 12 19 hp 50 50 0
Onyx' Meteor Shower Onyx's Primal Rage upl Balrog Skin 7 60 80 cblu cblu 5 5000 2 ac% 160 200 balance3 40 40 hp% 10 15 mana% 10 15 bar 1 1 gethit-skill 56 15 7 0
Onyx' Celestial Rage Onyx's Primal Rage baf Guardian Crown 7 60 79 5 5000 2 bar 2 2 red-dmg% 15 20 all-stats 15 25 addxp 3 3 swing2 20 20 att/lvl 32 0
Teachings of Brother Laz Brother Laz' Calling urn Corona 7 60 81 5 5000 2 ac% 100 150 res-all 20 30 sock 2 2 pal 1 1 balance2 20 20 addxp 3 3 0
Holy Aura Brother Laz' Calling uar Sacred Plate 7 60 83 5 5000 2 ac% 140 190 aura 125 3 5 nofreeze 1 1 res-pois-len 60 80 allskills 1 1 rip 1 1 red-dmg% 15 15 0
Retribution Brother Laz' Calling pae Zakarum Shield 7 60 69 5 5000 2 ac/lvl 32 block 33 33 block3 40 40 dmg% 60 80 dmg-max 33 33 dmg-min 15 15 res-mag 25 25 0
Glory of Salvation Brother Laz' Calling utg Crusader Gauntlets 7 60 74 5 5000 2 cast2 20 20 mana 60 60 ac% 75 125 oskill 125 3 3 gethit-skill 66 10 3 res-all 15 15 mag% 50 50 0
Angel's Touch Brother Laz' Calling 7qs Seraph Rod 7 60 71 5 5000 2 dmg% 220 300 dmg-demon 300 300 dmg-norm 40 120 swing2 30 30 dex 25 25 hit-skill 44 20 8 cold-len 600 600 0
Spin's Enigma The Mysterious Spin ci2 Tiara 7 60 59 dgld 5 5000 2 allskills 1 1 res-all 15 15 res-all 15 15 ac/lvl 12 gold% 100 100 mag% 25 25 mana/lvl 8 hp/lvl 10 0
Spin's Paradox The Mysterious Spin ula Scarab Husk 7 60 68 dgld 5 5000 2 allskills 2 2 red-dmg% 15 15 ac% 120 120 res-all 15 15 res-mag 15 15 balance2 20 20 cast2 20 20 0
Spin's Mystery The Mysterious Spin ulc Spiderweb Sash 7 60 63 dgld 5 5000 2 allskills 1 1 abs-cold% 10 10 abs-ltng% 10 10 abs-fire% 10 10 mag% 25 25 res-pois-len 50 50 res-all 10 10 0
Spin's Conundrum The Mysterious Spin uow Aegis 7 60 84 dgld 5 5000 2 ease -80 -80 block 40 40 block2 40 40 regen 15 15 regen-mana 75 75 red-dmg% 15 15 ac% 110 110 0
Spin's Perplexing Puzzle The Mysterious Spin obc Eldritch Orb 7 60 70 dgld 5 5000 2 allskills 2 2 extra-fire 10 10 res-fire 25 25 extra-cold 10 10 res-cold 25 25 extra-ltng 10 10 res-ltng 25 25 0
Dark1 Darkmage's Astral Projection uhn Boneweave 7 60 73 cblu cblu 5 5000 2 ac% 150 180 sock 1 1 ethereal 1 1 indestruct 1 1 red-dmg% 15 15 res-all 15 15 0
Dark2 Darkmage's Astral Projection umg Vambraces 7 60 70 oran oran 5 5000 2 ac% 125 150 swing3 30 30 ethereal 1 1 indestruct 1 1 dex 25 25 str 25 25 gethit-skill 243 4 20 0
Dark3 Darkmage's Astral Projection umb Boneweave Boots 7 60 74 cred cred 5 5000 2 ac% 140 170 move3 30 30 ethereal 1 1 indestruct 1 1 lifesteal 6 6 manasteal 6 6 gethit-skill 48 20 14 0
Dark4 Darkmage's Astral Projection 7mt Devil Star 7 60 69 whit whit 5 5000 2 dmg% 220 280 swing2 25 25 ethereal 1 1 indestruct 1 1 allskills 1 1 hit-skill 56 8 12 crush 25 25 0
Dark5 Darkmage's Astral Projection dre Sky Spirit 7 60 80 dyel dyel 5 5000 2 ac% 190 220 balance2 20 20 ethereal 1 1 indestruct 1 1 dru 2 2 hp 135 135 mana 75 75 0
Cryptic Claws Phrozen Heart's Mysticism 7tw Runic Talons 7 60 77 5 5000 2 dmg% 200 300 lifesteal 11 11 regen 6 6 deadly 20 20 crush 20 20 addxp 2 2 0
Way of the Shadow Phrozen Heart's Mysticism ung Diamond Mail 7 60 71 lgry lgry 5 5000 2 balance3 30 30 ac% 160 200 hp 75 100 red-dmg% 20 20 res-pois-len 50 50 nofreeze 1 1 0
Dawns Mist Phrozen Heart's Mysticism uvg Vampirebone gloves 7 60 74 whit whit 5 5000 2 ac% 100 140 mana 40 50 res-all 10 15 swing2 20 20 dmg% 50 50 dex 15 15 str 15 15 0
Featherfoot Phrozen Heart's Mysticism ulb Wyrmhide Boots 7 60 73 lgrn lgrn 5 5000 2 ac% 125 150 ac 100 200 move3 40 40 oskill dodge 3 3 oskill evade 3 3 oskill teleport 3 3 kick 15 15 0
Winter's Discourd Phrozen Heart's Mysticism uvc Vampirefang Belt 7 60 75 whit whit 5 5000 2 ac% 100 120 gethit-skill 44 10 6 att% 20 20 mag% 50 50 kick 10 10 red-dmg% 15 15 0
Soulstone of Power Chaos Energy amu Amulet 2 60 72 5 5000 2 allskills 2 2 cast2 35 35 regen-mana 75 75 red-dmg% 10 10 res-all 23 23 mag% 35 35 0
Guiding Focus Chaos Energy ukp Hydroskull 7 60 69 cblu cblu 5 5000 2 ac% 120 165 balance2 20 20 allskills 1 1 mana-kill 4 8 mana 50 50 dmg-to-mana 22 22 0
Chaotic Shield Chaos Energy nef Bloodlord Skull 7 60 83 5 5000 2 nec 3 3 gethit-skill 38 44 17 block 20 40 block2 30 30 res-all 22 22 mana 55 55 0
Treads of Energy Chaos Energy uvb Scarabshell Boots 7 60 74 cred cred 5 5000 2 ac% 100 100 enr/lvl 6 manasteal 3 6 dmg-mag 122 122 move3 30 30 mag% 25 25 swing2 20 20 0
Band of Mysticism Chaos Energy urs Great Hauberk 7 60 77 5 5000 2 cast3 40 40 allskills 1 1 regen 7 9 hp% 20 20 hp 85 85 mana 77 77 res-mag 20 20 0
Chiad's Lances Aiel Shieldmaiden amf Matriarchal Javelins 7 60 80 dgld dgld 5 5000 2 dmg% 220 250 dmg-norm 35 70 skilltab 2 1 3 pierce 33 33 swing2 20 20 ama 2 2 0
Chiad's Wall Aiel Shieldmaiden uit Monarch 7 60 73 dgrn dgrn 5 5000 2 ac% 180 220 ease -40 -40 block 33 33 block3 30 30 red-dmg% 20 20 res-all 25 25 0
Chiad's Heartbane Aiel Shieldmaiden ucl Loricated Mail 7 60 75 dgrn dgrn 5 5000 2 ac% 175 200 ease -35 -35 dex 35 35 dmg-throw 20 50 hp 75 75 mana 75 75 0
Chiad's Halo Aiel Shieldmaiden rin Ring 2 60 71 5 5000 2 swing2 20 20 lifesteal 8 12 manasteal 6 8 aura 114 4 4 mag% 20 20 hp 35 35 0
Chiad's Valor Aiel Shieldmaiden ulc Spiderweb Sash 7 60 74 lgrn lgrn 5 5000 2 ac% 160 200 fade 1 1 all-stats 15 15 pierce-ltng 15 15 extra-ltng 25 25 heal-kill 15 15 0
Myhrginoc's Headhunter Myhrginoc's Warbreeder 7ga Champion Axe 7 60 80 lred lred 5 5000 2 dmg% 280 320 dmg/lvl 18 swing2 20 20 knock 1 1 noheal 1 1 0
Myhrginoc's Black Rain Myhrginoc's Warbreeder uul Shadow Plate 7 60 77 blac blac 5 5000 2 ac% 170 200 red-dmg% 15 25 allskills 1 1 res-all 20 30 sock 2 2 0
Myhrginoc's Crimson Crusader Myhrginoc's Warbreeder ulm Armet 7 60 70 cred cred 5 5000 2 ac/lvl 16 hp% 10 10 mana% 10 10 gethit-skill 154 12 4 bloody 1 1 0
Myhrginoc's Deathmonger Myhrginoc's Warbreeder uhg Ogre Gauntlets 7 60 79 dred dred 5 5000 2 ac% 100 130 swing1 15 15 oskill 128 10 10 dmg% 30 40 crush 22 22 deadly 16 16 0
Sin and Greed Nefarius Ways 7s8 Thresher 7 60 80 dgrn dgrn 5 5000 2 dmg% 400 500 ease 20 20 swing3 40 40 hit-skill 71 15 15 mag%/lvl 16 gold%/lvl 32 0
wicked Impulse Nefarius Ways ult Hellforged Plate 7 60 75 cblu cblu 5 5000 2 ac% 125 175 balance3 40 40 dmg% 100 160 swing3 30 30 0
Evil Reputation Nefarius Ways utb Mirrored Boots 7 60 76 blac blac 5 5000 2 ac 200 250 move3 50 50 lifesteal 7 7 dex 15 25 mag% 30 30 0
Noxious Wispers Nefarius Ways usk Demonhead 7 60 70 5 5000 2 hp 150 200 mana 75 100 allskills 1 2 heal-kill 15 25 mana-kill 7 7 0
Eternal Sleep Kraj's Memorial amu Amulet 2 60 80 5 5000 2 allskills 2 2 rip 1 1 hp% 10 10 mana% 10 10 res-all 18 18 half-freeze 1 1 0
Calming Peace Kraj's Memorial uow Aegis 7 60 83 5 5000 2 ac% 140 160 ac/lvl 16 ac 125 150 red-dmg% 25 35 block 35 35 balance2 25 25 aura 109 4 4 0
Silk Shroud Kraj's Memorial uld Kraken Shell 7 60 79 5 5000 2 ac% 100 130 balance3 25 25 res-fire 25 50 res-ltng 25 50 hp 70 70 0
Temple Guardian Kraj's Memorial 7fl Scourge 7 60 77 5 5000 2 dmg% 220 250 dmg-min 75 75 att% 75 75 oskill zeal 8 8 swing2 25 25 heal-kill 18 18 mana-kill 3 3 0
Sundered Heart The Darkest Weaves uth Lacquered Plate 7 60 76 dred dred 5 5000 2 ac% 170 200 sock 4 4 balance3 50 50 0
Soulreaver The Darkest Weaves 7cr Phase Blade 7 60 77 dred dred 5 5000 2 dmg% 220 300 sock 6 6 dmg/lvl 8 0
Throws of Hatred The Darkest Weaves ush Troll Nest 7 60 78 oran oran 5 5000 2 ac% 170 210 block 30 50 sock 3 3 block3 50 50 0
Blood Raven's Pain Blood Raven's Dispair uh9 Bone Visage 7 60 73 dgld dgld 5 5000 2 ac 160 220 hp 80 100 mana 75 100 dmg-to-mana 15 15 all-stats 10 10 0
Blood Raven's Curse Blood Raven's Dispair utu Wire Fleece 7 60 77 lgry lgry 5 5000 2 ac 675 900 balance3 25 25 str 20 30 lifesteal 9 9 manasteal 6 6 0
Blood Raven's Redemption Blood Raven's Dispair 6lb Shadow Bow 7 60 74 dblu dblu 5 5000 2 dmg% 200 300 dmg-min 35 70 dmg-max 100 150 oskill 21 10 12 oskill 27 10 10 0
Char's Grimace of Death Narrow Path Between Light and Darkness xh9 Grim Helm 7 35 62 5 5000 2 light -2 -2 str 10 10 dex 10 10 ac% 113 113 swing1 15 15 gethit-skill 44 25 1 0
Char's Annulus of Obscurity Narrow Path Between Light and Darkness rin Ring 3 40 51 5 5000 2 light -1 -1 pal 1 1 oskill sanctuary 12 15 mana 45 45 red-mag 10 10 regen-mana 10 10 0
Char's Blessed Reflection Narrow Path Between Light and Darkness rin Ring 3 40 51 5 5000 2 light 1 1 nec 1 1 oskill decrepify 8 12 hp 45 45 red-dmg 10 10 0
Char's Hand of Blessed Light Narrow Path Between Light and Darkness 7sc Mighty Scepter 7 60 67 5 5000 2 sock 2 2 dmg% 75 110 cast1 15 15 allskills 1 1 skilltab 10 1 1 dmg-ltng 1 50 oskill static field 13 16 res-fire 15 15 0
King1 Kingpin's Set ztb Battle Belt 7 35 25 lblu lblu 5 5000 2 mag% 30 30 light 2 2 ac 25 35 swing1 10 10 ac% 40 60 gold% 50 80 0
King2 Kingpin's Set xtb Battle Boots 7 35 42 5 5000 2 vit 10 10 str 10 10 mag% 30 50 dur 30 30 move2 25 25 ac% 150 190 dmg-norm 15 25 thorns 5 10 stamdrain 40 40 0
King3 Kingpin's Set xpl Russet Armor 7 35 42 5 5000 2 allskills 1 1 mag%/lvl 10 ac% 160 200 dur 60 60 red-mag 10 10 rep-dur 20 vit 10 10 enr 10 10 0
King4 Kingpin's Set rin Ring 4 7 7 dpur 5 5000 2 red-mag 3 3 thorns 3 7 att 50 80 mag% 10 15 mag% 15 15 hp 44 44 0
King5 Kingpin's Set uap Shako 7 60 61 cgrn cgrn 5 5000 2 all-stats 2 2 mana/lvl 12 hp/lvl 12 allskills 2 2 mag% 50 50 red-dmg% 10 10 0
King6 Kingpin's Set 9fc Tulwar 7 35 35 cred cred 5 5000 2 sock 2 2 gold%/lvl 20 mag%/lvl 8 mana 15 15 dmg% 60 120 dex 5 15 dmg-norm 50 120 0
Char's Carapice Narrow Path Between Light and Darkness uui Dusk Shroud 7 60 65 5 5000 2 ac% 65 110 sock 1 1 res-all 15 25 red-dmg% 10 15 allskills 1 1 0
Wiseman's Cap Yohann's Savant crn Crown 7 25 28 lred lred 5 5000 2 sor 1 1 mana-kill 2 3 res-ltng 15 25 pierce-ltng 10 15 0
Sage's Leather Yohann's Savant xla Demonhide Armor 7 32 33 lgrn lgrn 5 5000 2 str 15 15 red-dmg 15 25 red-mag 15 25 hp 55 75 regen 5 5 0
Gloves of Knowledge Yohann's Savant xmg Heavy Bracers 7 35 38 lblu lblu 5 5000 2 mana 35 45 cast2 20 20 heal-kill 10 15 mana-kill 1 3 mag% 35 35 0
Arcane Battlestaff Yohann's Savant 8bs Gothic Staff 7 20 23 oran oran 5 5000 2 dmg-norm 35 80 dmg% 110 140 swing3 30 30 lifesteal 6 8 manasteal 5 5 oskill whirlwind 1 1 0
Unholy Desires Zhoulomcrist's Dread xap War Hat 7 25 31 dred dred 5 5000 2 mana 35 50 cast1 15 15 dmg-to-mana 12 15 dmg-cold 250 25 35 oskill warmth 1 1 oskill warmth 1 1 0
Darkest Wishes Zhoulomcrist's Dread 72a Ettin Axe 7 60 70 blac blac 5 5000 2 dmg% 220 260 swing2 20 20 knock 1 1 oskill zeal 8 8 charged 79 65 15 kill-skill life tap 20 15 0
Shadowed Plate Zhoulomcrist's Dread utp Archon Plate 7 60 74 lgry lgry 5 5000 2 balance2 30 30 addxp 1 5 allskills 1 1 ac% 175 195 red-dmg 20 20 red-mag 25 25 0
Draven Coil Zhoulomcrist's Dread rin Ring 3 40 50 5 5000 2 hp 35 50 cast1 10 10 ac 80 120 att% 10 20 freeze 2 2 0
Tortured Soul Gauntlets The Warlord of Blood hgl Gauntlets 7 28 29 dred dred 5 5000 2 swing2 20 20 dmg% 30 50 deadly 15 15 crush 15 15 att% 20 20 red-dmg% 10 10 ac 250 250 0
Hell's Torment Greaves The Warlord of Blood hbt Greaves 7 28 31 dred dred 5 5000 2 move2 30 30 hit-skill 82 18 1 res-all 10 10 dmg-norm 10 20 res-mag 10 10 thorns/lvl 12 ac 313 313 0
Bloody Visage Helm The Warlord of Blood xhm War Belt 7 45 45 lred lred 5 5000 2 hp 70 100 bloody 1 1 mana 33 45 knock 2 2 ac% 120 170 res-ltng 33 33 pierce-ltng 15 15 dmg-ltng 25 200 0
Vengeance Unleashed The Warlord of Blood zhb Winged Helm 7 45 47 cred cred 5 5000 2 sock 2 2 ac% 180 200 hp 50 75 red-dmg 22 40 red-mag 20 40 res-fire 33 33 pierce-fire 15 15 dmg-fire 100 150 0
Elysian Fields The Warlord of Blood upk Blade Barrier 7 60 68 lred lred 5 5000 2 block 20 40 block3 40 40 red-dmg% 15 20 res-all 35 50 ac% 160 200 pierce-cold 15 15 dmg-cold 150 100 150 0
Death and Decay The Warlord of Blood utp Archon Plate 7 60 77 cred cred 5 5000 2 ac% 180 220 hp 75 100 mana 35 50 dex 15 20 str 15 25 noheal 1 1 allskills 2 2 0
Dying Curses Darque Necromancy zlb Demonhide Sash 7 30 30 5 5000 2 ac% 100 120 skilltab 6 1 1 levelup-skill weaken 100 40 mana/lvl 8 0
Lich's Rites Darque Necromancy uuc Heater 7 60 63 5 5000 2 ac% 80 140 block3 30 30 levelup-skill bone armor 100 33 sock 1 1 block 25 25 0
Twilight of Evil Darque Necromancy 9yw Petrified Wand 7 30 29 blac blac 5 5000 2 allskills 1 1 cast2 25 25 regen 1 5 aura 103 1 7 0
Dark Rituals Darque Necromancy xtp Mage Plate 7 40 50 dred dred 5 5000 2 ac 300 400 red-dmg% 10 15 balance3 30 30 res-fire 15 15 res-cold 20 20 res-ltng 10 10 res-pois 25 25 0
Legacy in Blood Darque Necromancy amu Amulet 4 33 35 5 5000 2 allskills 1 1 swing1 10 10 mag% 50 75 gold% 100 100 0
Andariel's Claw Marhawkman's Disquise uvg Vampirebone Gloves 7 60 69 5 5000 2 ac% 90 130 swing1 15 15 cast1 15 15 res-pois 60 80 res-pois-len 60 90 mana 40 70 0
Andariel's Hooves Marhawkman's Disquise umb Boneweave Boots 7 60 72 5 5000 2 ac% 80 120 move2 25 25 dex 20 30 res-all 10 20 dmg-pois 300 1222 1222 0
Andariel's Mask Marhawkman's Disquise xsk Death Mask 7 30 36 5 5000 2 ac 75 100 heal-kill 15 20 mana-kill 3 6 enr 20 30 vit 20 30 0
Andariel's Breastbone Marhawkman's Disquise ula Scarab Husk 7 60 60 5 5000 2 ac% 120 150 noheal 1 1 red-dmg 20 30 red-mag 20 30 extra-pois 25 25 pierce-pois 25 25 addxp 4 4 0
Set1.1 Set1 xui Ghost Armor 7 30 33 oran oran 5 5000 2 ac% 100 120 res-fire 25 35 red-dmg 15 25 res-mag 10 10 0
Set1.2 Set1 9wa Naga 7 30 40 5 5000 2 dmg% 120 200 dmg-fire 150 250 pierce-fire 15 20 heal-kill 8 12 dmg-norm 45 135 0
Set1.3 Set1 uml Luna 7 60 62 dgrn dgrn 5 5000 2 ac/lvl 16 block 20 30 block2 20 20 noheal 1 1 res-cold 25 35 0
Set1.4 Set1 xhb War Boots 7 30 43 oran oran 5 5000 2 ac% 100 125 move2 20 20 kick 8 15 manasteal 3 6 dex 25 25 0
Set2.1 Set2 xea Serpentskin 7 30 34 dblu dblu 5 5000 2 allskills 1 1 nofreeze 1 1 ac 250 350 pierce-cold 10 20 0
Set2.2 Set2 9ma Flanged Mace 7 30 31 dred dred 5 5000 2 allskills 2 2 cast2 20 20 mana 35 50 aura 102 3 5 regen-mana 50 50 0
Set2.3 Set2 urg Hyporian 7 60 64 5 5000 2 allskills 1 1 mag% 40 75 block3 35 35 balance3 30 30 str 15 25 0
Set3.1 Set3 xla Demonhide Armor 7 30 36 5 5000 2 ac% 120 200 red-dmg% 15 25 res-all 15 25 addxp 1 2 ac/lvl 40 0
Set3.2 Set3 7wh Legendary Mallet 7 60 75 5 5000 2 dmg% 175 225 swing3 60 60 sock 2 2 manasteal 6 6 lifesteal 6 6 0
Set3.3 Set3 xrg Scutum 7 30 43 5 5000 2 ac/lvl 13 block 10 20 ignore-ac 1 1 dmg% 35 50 0
Set4.1 Set4 xtu Trellised Armor 7 30 41 5 5000 2 mag% 25 30 gold% 75 75 ac% 160 200 heal-kill 10 10 mana-kill 3 3 0
Set4.2 Set4 9cr Demensional Blade 7 30 44 5 5000 2 dmg-min 35 50 dmg-max 100 140 hit-skill 72 4 20 dmg-demon 200 200 abs-fire 10 15 abs-cold 10 15 0
Set4.3 Set4 rin Ring 3 60 67 5 5000 2 swing1 5 5 cast1 10 10 all-stats 8 15 allskills 1 1 hp 40 40 0
Set4.4 Set4 amu Amulet 3 60 67 5 5000 2 balance1 10 10 block 5 10 addxp 4 7 gethit-skill 87 35 1 allskills 1 1 0
Set4.5 Set4 uuc Heater 7 60 67 5 5000 2 ac% 130 150 regen 5 8 block 10 25 block2 20 20 balance2 20 20 0
Set4.6 Set4 vbt Heavy Boots 7 10 21 dgld dgld 5 5000 2 ac 25 35 dex 10 10 mag% 25 25 move2 30 30 res-all 15 15 mana/lvl 5 hp/lvl 8 0
Set5.1 Set5 xng Linked Mail 7 30 35 whit 5 5000 2 ac% 130 170 dmg% 50 75 balance3 30 30 0
Set5.2 Set5 9cm Dacian Falx 7 30 55 blac dgry 5 5000 2 dmg% 200 300 swing2 20 20 sock 1 4 lifesteal 8 8 oskill sword mastery 3 3 dmg-norm 100 150 0
Set5.3 Set5 utg Crasader Gauntlets 7 60 73 lyel lyel 5 5000 2 ac 100 160 swing3 25 25 deadly 7 15 addxp 1 2 allskills 1 1 0
Set6.1 Set6 xcl Tigulated Mail 7 30 40 dpur dpur 5 5000 2 ac% 170 210 balance3 30 30 hp/lvl 10 mana/lvl 6 0
Set6.2 Set6 7sm Ataghan 7 60 69 dpur dpur 5 5000 2 dmg% 240 290 dmg-norm 30 80 swing1 15 15 extra-ltng 25 25 abs-ltng 8 15 0
Set6.3 Set6 xit Dragon Shield 7 30 46 dpur dpur 5 5000 2 ac% 125 125 red-dmg% 15 15 res-all 15 20 sock 1 1 block 20 20 block2 20 20 0
Set6.4 Set6 umc Mithril Coil 7 60 70 5 5000 2 ac/lvl 13 hp% 25 25 cast1 10 10 mana 30 30 regen-mana 50 50 0
Set6.5 Set6 amu Amulet 3 50 50 5 5000 2 bar 1 2 dmg% 20 30 dmg-min 10 15 swing1 10 10 0
Set7.1 Set7 xhn Mesh Armor 7 30 44 cblu cblu 5 5000 2 ac% 175 225 swing1 15 15 balance1 15 15 block1 15 15 fade 1 1 ac 200 200 mag% 50 50 0
Set7.2 Set7 9ls Rune Sword 7 30 42 5 5000 2 dmg% 200 250 ac 225 250 extra-cold 10 15 pierce-cold 15 20 dmg-norm 25 75 0
Set7.3 Set7 xsh Grim Shield 7 30 47 lgry 5 5000 2 ac% 75 100 block 40 40 block1 15 15 dmg-demon 100 100 res-all 25 25 0
Set7.4 Set7 uhl Giant Conch 7 60 65 5 5000 2 ac/lvl 14 ac% 75 100 allskills 1 1 cast3 30 30 regen-mana 75 75 mag% 20 50 0
Set7.5 Set7 utg Crusader Gauntlets 7 60 72 5 5000 2 ac% 180 220 skilltab 12 1 3 hp 30 50 lifesteal 5 5 0
Set8.1 Set8 xpl Russet Armor 7 30 47 lgrn lgrn 5 5000 2 ac% 135 180 knock 3 3 manasteal 4 8 lifesteal 8 8 0
Set8.2 Set8 8l8 Long Siege Bow 7 30 44 whit whit 5 5000 2 dmg% 180 220 swing2 20 20 sock 3 3 dmg/lvl 16 dmg-min 50 50 0
Set8.3 Set8 ulb Wyrmhide Boots 7 60 60 lgrn lgrn 5 5000 2 ac% 160 200 dmg-norm 5 10 dmg% 20 30 str 15 15 move3 30 30 0
Set9.1 Set9 xlt Templar Coat 7 30 46 lgry dgry 5 5000 2 ac% 150 190 hp 75 100 regen 20 30 regen-mana 100 150 0
Set9.2 Set9 7dg Bone Knife 7 60 63 lgry 5 5000 2 dmg% 220 250 swing2 20 20 extra-pois 10 20 pierce-pois 10 20 cast2 20 20 nec 1 2 0
Set9.3 Set9 bsh Bone Shield 7 12 16 blac 5 5000 2 aura 103 7 10 dmg-to-mana 15 15 block 22 22 dex 15 15 mag% 25 25 0
Set9.4 Set9 zvb Sharkskin Belt 7 30 32 dgry 5 5000 2 ac% 120 130 mana 55 75 mana-kill 2 4 addxp 1 2 0
Set10.1 Set10 xld Sharktooth Armor 7 30 48 5 5000 2 ac% 130 160 ac/lvl 24 red-dmg% 15 15 openwounds 35 50 pierce 50 50 0
Set10.2 Set10 7bk Winged Knife 7 60 62 5 5000 2 dmg% 200 300 swing2 20 20 slow 75 75 reduce-ac 20 30 nofreeze 1 1 stack 100 100 dmg-throw 25 75 0
Set10.3 Set10 xhl Basinet 7 30 38 5 5000 2 ac% 170 200 all-stats 10 20 addxp 1 2 res-fire 25 35 res-ltng 30 30 0
Set10.4 Set10 xtb Battle Boots 7 30 45 5 5000 2 ac% 100 120 dex 15 15 gold% 300 300 move2 20 20 att 100 100 0
Set11.1 Set11 xth Embossed Armor 7 30 50 lred oran 5 5000 2 ac% 180 220 swing2 20 20 sock 2 2 hp 55 55 regen 8 8 0
Set11.2 Set11 7s7 Balrog Spear 7 60 64 oran 5 5000 2 dmg-norm 25 100 stack 200 200 dmg-throw 25 100 dmg% 150 180 hit-skill 53 37 10 oskill charged strike 6 6 0
Set11.3 Set11 uvb Scarabshell Boots 7 60 67 oran 5 5000 2 ac% 130 150 move2 25 25 mag% 15 25 heal-kill 15 25 gethit-skill 54 5 1 0
Set11.4 Set11 umg Vambraces 7 60 71 oran 5 5000 2 cast2 20 20 mana/lvl 8 regen-mana 25 25 oskill frost nova 1 1 oskill blizzard 1 1 oskill frozen orb 1 1 0
Set11.5 Set11 ztb Battle Belt 7 30 39 oran 5 5000 2 extra-cold 15 15 abs-cold 15 20 ac% 75 120 manasteal 6 8 allskills 1 1 0
Set12.1 Set12 xul Chaos Armor 7 30 51 lgld lgld 5 5000 2 ac/lvl 24 ac 300 400 stupidity 3 3 red-mag 15 20 res-all 20 20 0
Set12.2 Set12 7tr Stygian Pike 7 60 70 lgld lgld 5 5000 2 dmg% 240 270 dmg-norm 50 200 swing3 30 30 oskill spear mastery 5 9 lifesteal 8 8 0
Set12.3 Set12 zmb Mesh Belt 7 30 43 lgld lgld 5 5000 2 ac/lvl 12 mag% 20 25 vit 15 20 enr 15 20 regen 3 5 0
Set13.1 Set13 xar Ornate Plate 7 30 63 dred 5 5000 2 ac% 150 180 res-all 75 100 0
Set13.2 Set13 7o7 Ogre Axe 7 60 70 oran oran 5 5000 2 dmg% 220 270 dmg-max 200 300 swing3 20 20 sock 1 3 0
Set13.3 Set13 uhm Spired Helm 7 60 74 5 5000 2 red-dmg% 35 50 ac% 155 185 0
Set13.4 Set13 xhg War Gauntlets 7 30 55 5 5000 2 swing3 40 40 ac% 175 200 0
Set13.5 Set13 zhb war Belt 7 30 58 5 5000 2 hp 175 200 mana 75 100 0
Set14.1 Set14 xtp Mage Plate 7 30 59 dpur dpur 5 5000 2 allskills 3 4 sock 2 2 ac 300 500 0
Set14.2 Set14 8ss Jo Staff 7 30 36 dgrn dgrn 5 5000 2 allskills 2 2 mana% 35 35 cast2 20 20 addxp 2 2 0
Set14.3 Set14 xap War Hat 7 30 38 dyel dyel 5 5000 2 allskills 2 2 ac% 75 100 mag% 50 50 all-stats 2 2 hp% 40 40 ac 150 150 0
Set14.4 Set14 ulg Bramble Mitts 7 60 71 5 5000 2 allskills 2 2 ac 150 200 0
Set14.5 Set14 ulc Spiderweb Sash 7 60 66 5 5000 2 allskills 2 2 ac 125 175 0
Set15.1 Set15 uui Dusk Shroud 7 60 70 whit 5 5000 2 ac% 160 200 oskill axe mastery 4 6 mag% 25 30 noheal 1 1 state fullsetgeneric 1 1 0
Set15.2 Set15 9ax Cleaver 7 30 47 whit 5 5000 2 dmg% 280 320 knock 2 2 dmg-cold 100 25 100 pierce-cold 10 15 res-cold 40 50 dmg-norm 40 80 0
Set15.3 Set15 uml Luna 7 60 65 whit 5 5000 2 ac% 120 160 block3 40 40 red-dmg% 10 15 red-dmg 15 20 abs-mag% 10 15 heal-kill 8 12 0
Set15.4 Set15 rin Ring 5 30 33 whit 5 5000 2 hp 35 50 dex 25 30 str 15 20 att 125 200 thorns/lvl 8 0
Set15.5 Set15 hbt Greaves 7 15 22 whit 5 5000 2 ac/lvl 8 move2 20 20 dex 10 15 res-ltng 30 30 mag% 33 33 extra-ltng 8 15 dmg-max 20 20 0
Set15.6 Set15 zlb Demonhide Sash 7 30 30 whit 5 5000 2 ac% 190 230 vit 15 20 red-mag 10 15 mag% 33 33 regen-mana 33 33 0
Set16.1 Set16 uea Wyrmhide 7 60 60 whit 5 5000 2 cast3 30 30 balance2 20 20 swing2 25 25 hp 40 60 dex/lvl 4 0
Set16.2 Set16 7ba Silver-Edged Axe 7 60 72 blac blac 5 5000 2 dmg% 290 350 swing2 30 30 lifesteal 12 15 mana-kill 3 7 sock 2 2 dmg/lvl 20 0
Set16.3 Set16 xlm Casque 7 30 40 dgld dgld 5 5000 2 ac% 120 150 ac/lvl 8 manasteal 5 5 addxp 1 2 allskills 1 1 mag% 25 25 0
Set16.4 Set16 uhc Colossus Girdle 7 60 75 dgrn dgrn 5 5000 2 oskill axe mastery 3 5 dmg% 25 35 red-dmg% 10 20 str 35 35 ease -20 -20 0
Set16.5 Set16 xtg Battle Gauntlets 7 30 48 cblu cblu 5 5000 2 ac% 250 250 oskill axe mastery 1 3 hit-skill 55 12 3 swing1 15 15 dex 10 15 hp 45 45 0
Set17.1 Set17 ung Diamond Mail 7 60 73 lblu cblu 5 5000 2 ac% 230 300 dmg% 75 100 dmg-norm 25 50 str 5 20 0
Set17.2 Set17 6rx Demon Crossbow 7 60 79 5 5000 2 dmg% 200 240 dmg-norm 30 60 swing3 60 60 pierce 40 40 knock 1 1 oskill magic arrow 10 10 oskill guided arrow 6 6 dmg-norm 20 100 0
Set17.3 Set17 uh9 Bone Visage 7 60 81 cred cred 5 5000 2 ac 200 300 dmg% 50 75 dmg-norm 15 30 dex 5 20 0
Set17.4 Set17 xmg Heavy Bracers 7 30 44 5 5000 2 ac/lvl 16 dmg% 35 50 dmg-min 15 20 dmg-max 30 40 swing2 20 20 0
Set17.5 Set17 xmb Mesh Boots 7 30 56 5 5000 2 ac/lvl 14 dmg% 40 60 dmg-max 20 30 swing1 10 10 move3 30 30 0
Set18.1 Set18 uhn Boneweave 7 60 77 dyel lyel 5 5000 2 ac% 150 190 balance2 20 20 regen 3 5 gethit-skill 47 17 22 res-fire 35 45 0
Set18.2 Set18 7cl Truncheon 7 60 68 dyel lyel 5 5000 2 dmg% 230 280 swing2 20 20 knock 2 2 oskill berserk 1 3 res-cold 35 45 0
Set18.3 Set18 xow Pavice 7 30 51 dyel lyel 5 5000 2 ac% 100 130 block 20 30 charged 66 100 13 block2 25 25 res-all 25 35 0
Set18.4 Set18 ukp Hydraskull 7 60 60 whit whit 5 5000 2 ac% 120 140 dex 10 15 str 10 15 kill-skill 76 100 4 res-ltng 35 45 0
Set18.5 Set18 hbl Plated Belt 7 20 30 whit whit 5 5000 2 ac% 100 120 res-pois 35 45 hp 30 30 mana 30 30 dmg-ltng 1 100 0
Set19.1 Set19 urs Great Haberk 7 60 76 blac blac 5 5000 2 ac 600 800 ease -35 -35 skilltab 7 1 3 balance3 30 30 charged 82 12 30 0
Set19.2 Set19 xts Ancient Shield 7 30 49 blac blac 5 5000 2 ac% 120 140 red-dmg% 15 15 ease -50 -50 lifesteal 4 6 freeze 4 4 half-freeze 1 1 0
Set19.3 Set19 urn Corona 7 60 80 blac blac 5 5000 2 ac% 135 175 ease -60 -60 mana 35 35 allskills 1 1 oskill evade 2 2 0
Set19.4 Set19 9bw Tomb Wand 7 30 40 blac blac 5 5000 2 allskills 1 1 cast2 20 20 mana/lvl 6 regen-mana 45 45 addxp 1 1 dmg-norm 80 180 0
Set20.1 Set20 upl Balrog Skin 7 60 74 5 5000 2 ac% 160 200 charged 142 200 12 mag%/lvl 10 hp% 25 25 red-mag 20 25 0
Set20.2 Set20 7cr Phase Blade 7 60 83 5 5000 2 dmg-norm 50 150 manasteal 12 15 lifesteal 15 18 dmg-undead 350 350 dmg-demon 175 175 dmg-mag 300 500 0
Set20.3 Set20 utc Troll Belt 7 60 77 5 5000 2 ac% 110 130 red-dmg% 10 15 res-all 10 15 allskills 1 1 swing2 20 20 0
Set20.4 Set20 xtb Battle Boots 7 30 58 cred 5 5000 2 ac% 125 150 dmg-min 25 35 gold% 75 75 balance3 30 30 pal 1 1 move3 30 30 0
Set20.5 Set20 xow Pavice 7 30 63 5 5000 2 ac% 175 200 block 100 100 block1 15 15 aura 118 6 6 mag% 65 65 0
Set21.1 Set21 ult Hellforge Plate 7 60 73 5 5000 2 dmg-demon 200 200 ac% 100 125 pierce-fire 75 100 0
Set21.2 Set21 xkp Sallet 7 30 40 5 5000 2 ac% 125 150 red-dmg% 15 15 pierce-cold 75 100 0
Set21.3 Set21 uhc Colossus Girdle 7 60 75 5 5000 2 ac% 125 150 res-all 35 40 pierce-ltng 75 100 0
Set21.4 Set21 uhb Myrmidon Greaves 7 60 77 5 5000 2 ac% 120 140 res-mag 20 20 pierce-pois 75 100 0
Set21.5 Set21 uhg Ogre Gauntlets 7 60 76 5 5000 2 ac% 120 150 cast3 30 30 ease -50 -50 regen-mana 60 60 swing2 20 20 0
Set21.6 Set21 9ws Devine Scepter 7 30 50 5 5000 2 dmg% 200 220 swing2 20 20 sock 2 3 lifesteal 6 8 light 5 5 dmg-norm 50 100 0
Set22.1 Set22 uld Kraken Shell 7 60 74 whit dgry 5 5000 2 red-dmg% 25 25 red-dmg 35 50 res-ltng -50 -50 res-fire 75 75 move3 20 20 0
Set22.2 Set22 7wc Great Thresher 7 60 77 dred dred 5 5000 2 dmg% 220 290 ease -25 -25 lifesteal 6 6 manasteal 6 6 bar 3 3 dmg-norm 50 250 swing3 45 45 0
Set22.3 Set22 zvb Sharkskin Belt 7 30 39 lblu lblu 5 5000 2 ac% 130 160 move1 15 15 balance1 15 15 dex 25 25 oskill avoid 4 8 0
Set22.4 Set22 xvb Sharkskin Boots 7 30 44 lgry lgry 5 5000 2 ac% 100 100 red-dmg% 10 10 bloody 1 1 crush 15 25 hp 60 90 0
Set23.1 Set23 uth Lacquered Plate 7 60 81 5 5000 2 cast2 20 20 block2 20 25 balance2 20 20 mag%/lvl 9 sock 1 2 swing2 20 20 0
Set23.2 Set23 9b9 Gothic Sword 7 30 45 5 5000 2 dmg% 260 300 deadly 15 15 crush 15 15 regen -1 -5 swing2 20 20 dmg-mag 100 200 dmg-cold 100 200 dmg-fire 100 200 dmg-ltng 100 200 dmg-max 250 250 0
Set23.3 Set23 zlb Demonhide Sash 7 30 36 5 5000 2 ac% 80 110 hp 35 50 mana-kill 7 7 regen 6 6 regen-mana 50 50 res-all 10 10 mag% 35 35 0
Set23.4 Set23 utb Mirrored Boots 7 60 70 5 5000 2 ac% 180 210 ease -20 -20 move3 50 50 dex -20 -20 balance2 -20 -20 str 35 35 0
Set23.5 Set23 ulm Armet 7 60 61 5 5000 2 allskills 1 1 ac 150 200 mana 30 30 res-pois 25 25 enr/lvl 4 0
Set23.6 Set23 rin Ring 5 49 49 5 5000 2 allskills 1 1 dmg% 25 25 heal-kill 10 10 addxp 1 2 cheap 5 10 0
Set24.1 Set24 uul Shadow Plate 7 60 80 5 5000 2 gethit-skill 264 20 8 light -5 -5 ac% 140 160 aura 109 1 1 0
Set24.2 Set24 rin Ring 3 77 77 5 5000 2 allskills 1 1 hp 50 50 mana 50 50 red-dmg% 10 10 red-mag 20 25 mag% 50 50 0
Set24.3 Set24 amu Amulet 3 74 74 5 5000 2 allskills 2 2 mag% 35 50 regen 25 25 regen-mana 50 75 0
Set24.4 Set24 9ts Harpoon 7 30 51 5 5000 2 dmg% 190 240 stack 75 75 rep-quant 20 knock 2 2 swing2 25 25 oskill lightning fury 8 8 0
Set25.1 Set25 rin Ring 1 45 45 5 5000 2 hp 35 50 mana 25 25 mag% 200 200 regen -20 -20 regen -15 -15 extra-fire 100 100 0
Set25.2 Set25 rin Ring 1 45 45 5 5000 2 hp 35 50 mana 25 25 mag% 200 200 regen -20 -20 regen -15 -15 extra-ltng 100 100 0
Set25.3 Set25 amu Amulet 1 45 45 5 5000 2 hp 50 75 mana 40 40 mag% 200 200 regen -20 -20 regen -15 -15 extra-cold 100 100 0
"Set 1item" "set 1" ghm "Great Helm" 1 2 3 inv flippy 12 213 2 0 on setitems
"Set 1item" "set 1" ghm "Great Helm" 1 2 3 inv flippy 12 213 2 0 on setitems
"Set 1item" "set 1" ghm "Great Helm" 1 2 3 inv flippy 12 213 2 0 on setitems
"Set 1item" "set 1" ghm "Great Helm" 1 2 3 inv flippy 12 213 2 0 on setitems
"Set 1item" "set 1" ghm "Great Helm" 1 2 3 inv flippy 12 213 2 0 on setitems
"Set 1item" "set 1" ghm "Great Helm" 1 2 3 inv flippy 12 213 2 0 on setitems
"Set 1item" "set 1" ghm "Great Helm" 1 2 3 inv flippy 12 213 2 0 on setitems

View File

@ -1,101 +0,0 @@
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 0
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
Midnight Calling Midnight Calling 100 10 dex 10 10 str 10 10 ass 1 1 mag% 50 50 swing1 15 15 res-all 20 20 0
Nature's Grove Nature's Grove 100 10 vit 10 10 enr 10 10 dru 1 1 mag% 50 50 skilltab 17 1 1 res-all 30 30 0
Grimlock's Grave Grimlock's Grave 100 15 enr 10 10 dex 10 10 nec 1 1 mag% 50 50 pierce-pois 10 10 res-all 25 25 0
Corgina's Element Corgina's Element 100 22 mana 60 60 cast2 20 20 sor 1 1 mag% 50 50 extra-fire 10 10 extra-cold 10 10 extra-ltng 10 10 0
Sheena's Grace Sheena's Grace 100 20 swing1 15 15 hp 30 30 ama 1 1 mag% 50 50 dmg-max 20 20 res-all 35 35 0
Talonrage's Fury Talonrage's Fury 100 23 regen 5 5 dmg% 35 35 bar 1 1 mag% 50 50 balance2 30 30 res-all 25 25 0
Greyhawk's Mantle Greyhawk's Mantle 100 18 heal-kill 8 8 mana-kill 4 4 pal 1 1 mag% 50 50 res-pois-len 60 60 res-all 30 30 0
Silent Runnings Silent Runnings 100 24 Move2 20 20 Balance2 20 20 block2 20 20 allskills 1 1 res-all 30 30 mag% 75 75 addxp 3 3 gold% 150 150 0
Snowmane's Jewelry Snowmane's Jewelry 100 20 mag% 30 30 res-all 15 15 allskills 1 1 manasteal 5 5 lifesteal 5 5 move2 20 20 0
Four Seasons Four Seasons 100 18 all-stats 10 10 res-all 25 25 allskills 1 1 res-all 30 30 gethit-skill 38 15 6 gethit-skill 44 15 6 gethit-skill 56 10 1 0
Forgotten Treasures Forgotten Treasures 100 15 str 15 15 dex 15 15 enr 15 15 vit 15 15 allskills 2 2 res-all 40 40 mag% 100 100 addxp 4 4 gold% 200 200 aura 99 4 4 0
Insight of Brother Laz Insight of Brother Laz 100 30 mag% 50 50 str 20 20 dex 20 20 pal 2 2 res-all 60 60 mag% 50 50 hp 100 100 mana 50 50 half-freeze 0
Hades' Underworld Hades' Underworld 100 30 oskill revive 2 2 oskill skeleton mastery 7 7 oskill shout 4 4 nec 2 2 abs-fire% 20 20 abs-cold% 20 20 abs-ltng% 20 20 mag% 50 50 0
Darque's Cabal Darque's Cabal 100 30 dmg-undead 200 200 dmg-demon 200 200 bar 2 2 res-all 40 40 all-stats 25 25 addxp 3 3 mag% 125 125 0
Red Havoc's Challenge Red Havoc's Challenge 100 30 oskill wearwolf 8 8 oskill shape shifting 6 6 oskill fury 5 5 dru 2 2 res-all 50 50 att% 30 30 addxp 3 3 mag% 60 60 0
Mishy's Avatar Mishy's Avatar 100 35 att 150 150 dmg% 40 40 dex 10 10 dex 10 10 ama 2 2 res-all 50 50 addxp 3 3 hp 75 75 mag% 50 50 0
Joel's Sanctuary Joel's Sanctuary 100 33 mana 50 50 regen-mana 50 50 sor 2 2 res-all 50 50 addxp 3 3 mag% 50 50 mana-kill 7 7 0
JBouley's Scion JBouley's Scion 100 35 deadly 33 33 swing2 20 20 ass 2 2 res-all 40 40 addxp 3 3 openwounds 100 100 mag% 50 50 0
Heaven DeClineD Heaven DeClineD 100 35 addxp -3 -3 addxp -5 -5 allskills 2 2 res-all 25 25 addxp -7 -7 dmg% 200 200 swing3 50 50 0
Volf's Undead Legion Volf's Undead Legion 100 33 regen -1 -1 regen -2 -2 allskills 2 2 res-all 35 35 regen -2 -2 dmg-undead 300 300 rip 1 1 0
Legacy of Vashna Legacy of Vashna 100 33 mag% 25 25 allskills 1 1 res-all 50 50 cheap -10 -10 lifesteal 15 15 manasteal 15 15 0
Salander's Tirade Salander's Tirade 100 33 swing2 20 20 allskills 1 1 dmg-norm 25 50 res-all 25 25 balance3 30 30 heal-kill 20 20 0
Jerik's Dragon Armor Jerik's Dragon Armor 100 33 res-all 15 15 allskills 1 1 res-all 25 25 addxp 2 2 move1 -15 -15 res-all-max 5 5 0
Onyx's Primal Rage Onyx's Primal Rage 100 60 res-all 25 25 addxp 2 2 allskills 1 1 allskills 3 3 res-all 50 50 addxp 3 3 mag% 100 100 state monsterset1 1 1 0
Brother Laz' Calling Brother Laz' Calling 100 60 all-stats 15 15 crush 33 33 allskills 1 1 allskills 3 3 res-all 50 50 addxp 4 4 mag% 75 75 state monsterset2 1 1 0
The Mysterious Spin The Mysterious Spin 100 60 mag% 25 25 mag% 25 25 mag% 50 50 allskills 4 4 res-all 50 50 addxp 5 5 oskill 17 15 15 state fullsetgeneric 1 1 0
Darkmage's Astral Projection Darkmage's Astral Projection 100 60 all-stats 10 10 all-stats 20 20 all-stats 20 20 allskills 4 4 res-all 50 50 addxp 4 4 mag% 100 100 state fullsetgeneric 1 1 0
Phrozen Heart's Mysticism Phrozen Heart's Mysticism 100 60 allskills 1 1 allskills 1 1 allskills 1 1 allskills 1 1 res-all 50 50 addxp 5 5 mag% 100 100 state fullsetgeneric 1 1 gethit-skill 64 12 8 0
Chaos Energy Chaos Energy 100 60 enr 25 25 vit 25 25 dex 25 25 allskills 4 4 res-all 50 50 addxp 5 5 mag% 100 100 state monsterset3 1 1 str 25 25 0
Aiel Shieldmaiden Aiel Shieldmaiden 100 60 dmg% 50 50 allskills 1 1 addxp 2 2 allskills 3 3 res-all 50 50 addxp 4 4 mag% 100 100 state fullsetgeneric 1 1 dmg% 100 100 0
Myhrginoc's Warbreeder Myhrginoc's Warbreeder 100 60 swing3 30 30 dmg-norm 25 50 allskills 2 2 res-all 50 50 all-stats 15 15 lifesteal 10 10 manasteal 10 10 0
Nefarius Ways Nefarius Ways 100 60 regen -3 -3 addxp -10 -10 allskills 5 5 res-all 100 100 deadly 50 50 crush 50 50 rip 1 1 0
Kraj's Memorial Kraj's Memorial 100 60 addxp 2 2 mag% 75 75 allskills 2 2 res-all 50 50 openwounds 100 100 noheal 1 1 dmg-cold 200 150 250 0
The Darkest Weaves The Darkest Weaves 100 60 all-stats 20 20 allskills 2 2 res-all 25 25 move3 50 50 regen-mana 75 75 dmg-fire 300 500 0
Blood Raven's Dispair Blood Raven's Dispair 100 60 pierce 100 100 allskills 2 2 knock 5 5 slow 25 25 reanimate 9 8 12 aura 113 5 5 0
Narrow Path Between Light and Darkness Narrow Path Between Light and Darkness 100 30 hp 50 50 mana 50 50 res-all-max 10 10 res-all 25 25 allskills 1 1 0
Kingpin's Set Kingpin's Set 100 30 mag% 25 25 mag% 25 25 mag% 25 25 mag% 25 25 mag% 200 200 allskills 1 1 res-all 35 35 state fullsetgeneric 1 1 0
Yohann's Savant Yohann's Savant 100 35 allskills 1 1 addxp 3 3 allskills 2 2 mana 125 125 res-all 35 35 mag% 75 75 regen-mana 75 75 0
Zhoulomcrist's Dread Zhoulomcrist's Dread 100 40 regen 5 5 regen-mana 50 50 allskills 3 3 red-dmg% 30 30 res-mag 25 25 res-all 50 50 oskill lower resist 3 3 0
The Warlord of Blood The Warlord of Blood 100 29 allskills 1 1 addxp 2 2 res-all 20 20 mag% 50 50 allskills 2 2 mag% 50 50 rip 1 1 gold% 200 200 0
Darque Necromancy Darque Necromancy 100 33 nec 1 1 nec 1 1 nec 1 1 res-all 30 30 gethit-skill 76 5 10 mag% 50 50 dmg-undead 300 300 oskill revive 3 3 0
Marhawkman's Disquise Marhawkman's Disquise 100 40 allskills 1 1 allskills 1 1 state monsterset4 1 1 gethit-skill 92 100 2 hit-skill 92 8 12 res-all 30 30 lifesteal 8 8 manasteal 8 8 0
Set1 Set1 100 45 allskills 1 1 dmg% 100 100 mag% 50 50 gethit-skill 42 25 2 oskill howl 1 1 slow 15 15 0
Set2 Set2 100 45 dex 20 20 gold% 200 200 mag% 100 100 addxp 3 3 hp 75 75 ac 350 350 block 15 15 0
Set3 Set3 100 45 allskills 2 2 rip 1 1 gethit-skill battle orders 25 9 gethit-skill 68 25 12 dmg-cold 100 200 250 0
Set4 Set4 100 45 allskills 1 1 mag% 35 35 mag% 65 65 allskills 1 1 gold%/lvl 25 res-all 40 40 oskill sacrifice 7 7 swing3 30 30 dmg-max 40 40 0
Set5 Set5 100 45 openwounds 65 65 allskills 2 2 res-all 20 20 dmg-max 150 150 0
Set6 Set6 100 45 dmg% 20 20 dmg% 30 30 dmg% 50 50 allskills 1 1 mag%/lvl 12 hit-skill 48 10 10 noheal 1 1 dmg-pois 150 800 800 res-all 35 35 0
Set7 Set7 100 45 allskills 1 1 allskills 1 1 dmg-ltng 1 300 addxp 25 25 mag%/lvl 20 gold%/lvl 40 0
Set8 Set8 100 45 allskills 1 1 mag% 300 300 dmg-norm 25 50 allskills 2 2 pierce 30 30 0
Set9 Set9 100 45 enr 15 15 vit 15 15 allskills 3 3 hit-skill 74 20 3 att% 25 25 cast3 30 30 0
Set10 Set10 100 45 allskills 1 1 allskills 1 1 mag% 150 150 hp 100 100 mana 50 50 0
Set11 Set11 100 45 allskills 1 1 addxp 2 2 allskills 1 1 res-all 50 50 red-dmg% 50 50 res-all-max 20 20 0
Set12 Set12 100 45 allskills 2 2 att 350 350 slow 15 15 oskill whirlwind 5 5 0
Set13 Set13 100 45 allskills 1 1 allskills 1 1 allskills 1 1 allskills 5 5 all-stats 25 25 addxp 4 4 mag% 125 125 gold% 125 125 0
Set14 Set14 100 45 res-all 25 25 res-all 25 25 red-dmg% 25 25 allskills 4 4 mag% 75 75 res-all 50 50 heal-kill 20 20 mana-kill 5 5 0
Set15 Set15 100 45 mag% 25 25 mag% 25 25 mag% 25 25 mag% 25 25 allskills 3 3 gold% 100 100 res-all 25 25 dmg% 50 50 0
Set16 Set16 100 45 res-all 1 15 res-all 1 20 res-all 10 40 allskills 2 2 mag% 50 50 mag%/lvl 12 light-thorns 100 100 abs-ltng% 20 20 0
Set17 Set17 100 45 balance1 15 15 balance2 25 25 allskills 2 2 res-all 40 40 oskill dodge 8 8 swing2 20 20 deadly/lvl 6 0
Set18 Set18 100 45 deadly 20 20 crush 20 20 allskills 2 2 hp/lvl 24 mana/lvl 12 aura 125 1 1 0
Set19 Set19 100 45 allskills 1 1 hp 50 50 mag% 75 75 res-all 30 30 balance3 30 30 mana-kill 5 5 allskills 1 1 gethit-skill 38 100 9 0
Set20 Set20 100 45 swing1 10 10 swing1 10 10 allskills 2 2 abs-fire% 25 25 abs-cold% 25 25 abs-ltng% 25 25 res-pois-len 70 70 0
Set21 Set21 100 45 balance2 20 20 balance2 20 20 block3 30 30 allskills 2 2 block 15 15 addxp 2 2 move3 30 30 0
Set22 Set22 100 45 half-freeze 1 1 deadly 25 25 allskills 2 2 crush 66 66 dmg% 150 150 dmg-norm 25 50 hit-skill 243 15 18 0
Set23 Set23 100 45 mag% 20 20 mag% 25 25 mag% 45 45 allskills 2 2 res-all 40 40 regen 20 20 rip 1 1 0
Set24 Set24 100 45 allskills 2 2 pierce 75 75 gethit-skill 38 13 31 slow 20 20 res-all 40 40 noheal 1 1 openwounds 55 55 0
Set25 Set25 100 22 regen -15 -15 regen -45 -45 addxp -90 -90 extra-pois 100 100 mag% 100 100 allskills 10 10 0

View File

@ -1,24 +0,0 @@
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 50 50 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

View File

@ -1,74 +0,0 @@
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

View File

@ -1,222 +0,0 @@
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+skill('Impale'.blvl)*par8+skill('Fend'.blvl)*par8 1 1 2 StrSkill4 StrSkill23 ln34+skill('Impale'.blvl)*par8+skill('Fend'.blvl)*par8 2 StrSkill22 StrSkill23 toht 25 StrSkill61 40 Sksyn skillname10 2 63 skillname19 Damplev par8 63 skillname30 Damplev par8 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)" 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+skill('Jab'.blvl)*par8+skill('Fend'.blvl)*par8 1 1 3 StrSkill65 StrSkill23 par6-dm34 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 ln12+skill('Jab'.blvl)*par8+skill('Fend'.blvl)*par8 40 Sksyn skillname19 2 63 skillname10 Damplev par8 63 skillname30 Damplev par8 0
lightning bolt 3 3 3 3 0 28 skillname20 skillsd20 skillld20 skillan20 StrSkill3 21 1 11 10 9 8 66 Convphy2magalt 100 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+skill('Magic Arrow'.blvl)*par8 1 2 StrSkill4 StrSkill23 ln34+skill('Magic Arrow'.blvl)*par8 40 Sksyn skillname22 2 63 skillname6 Damplev par8 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+skill('Multiple Shot'.blvl)*par7+skill('Guided Arrow'.blvl)*par8 1 1 2 StrSkill4 StrSkill23 ln12+skill('Multiple Shot'.blvl)*par7+skill('Guided Arrow'.blvl)*par8 3 StrSkill86 StrSkill87 "min(lvl+par3,par4)" 40 Sksyn skillname26 2 63 skillname12 Damplev par7 63 skillname22 Damplev par8 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+skill('Jab'.blvl)*par8+skill('Impale'.blvl)*par8 1 1 2 StrSkill4 StrSkill23 ln34+skill('Jab'.blvl)*par8+skill('Impale'.blvl)*par8 2 StrSkill30 StrSkill23 toht 40 Sksyn skillname30 2 63 skillname10 Damplev par8 63 skillname19 Damplev par8 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 63 skillname48 Ltngdplev par7 63 skillname53 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 40 Sksyn skillname46 2 63 skillname41 Firedplev par8 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 40 Sksyn skillname48 2 63 skillname42 Ltngdplev par8 63 skillname43 Ltngdplev par8 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 40 Sksyn skillname51 2 67 skillname41 Firedplev par8 63 skillname46 Firedplev par8 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 63 skillname41 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 40 Sksyn skillname57 2 63 skillname49 Ltngdplev par8 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 63 skillname45 Colddplev par8 67 skillname55 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:(0+lvl) 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:(0+lvl) 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 4 StrSkill50 skill('Parayer'.edmn) 2 StrSkill54 StrSkill23 dm34 19 StrSkill18 ln12 67 skillname99 Healplev2 skill('Prayer'.edmn) 40 Sksyn skillname125 2 18 skillname99 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 clc1 40 Sksyn skillname145 2 63 skillname138 Defplev par8 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 40 Sksyn skillname151 2 63 skillname144 Damplev par8 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 63 Skillname248 Damplev par8 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 40 Sksyn Skillname258 2 63 Skillname267 Damplev par8 63 Skillname278 Damplev par8 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)/3 40 Sksyn Skillname262 2 71 Skillname257 Boltplev3 3 71 Skillname272 Shotplev3 3 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 40 Sksyn Skillname267 2 63 Skillname258 Damplev par8 63 Skillname278 Damplev par8 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 + skill('Shock Field'.blvl)/3 40 Sksyn Skillname272 2 71 Skillname257 Shotplev3 3 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 40 Sksyn Skillname278 2 63 Skillname258 Damplev par8 63 Skillname267 Damplev par8 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

View File

@ -1,359 +0,0 @@
skill Id charclass skilldesc srvstfunc srvdofunc prgstack srvprgfunc1 srvprgfunc2 srvprgfunc3 prgcalc1 prgcalc2 prgcalc3 prgdam srvmissile decquant lob srvmissilea srvmissileb srvmissilec srvoverlay aurafilter aurastate auratargetstate auralencalc aurarangecalc aurastat1 aurastatcalc1 aurastat2 aurastatcalc2 aurastat3 aurastatcalc3 aurastat4 aurastatcalc4 aurastat5 aurastatcalc5 aurastat6 aurastatcalc6 auraevent1 auraeventfunc1 auraevent2 auraeventfunc2 auraevent3 auraeventfunc3 auratgtevent auratgteventfunc passivestate passiveitype passivestat1 passivecalc1 passivestat2 passivecalc2 passivestat3 passivecalc3 passivestat4 passivecalc4 passivestat5 passivecalc5 passiveevent passiveeventfunc summon pettype petmax summode sumskill1 sumsk1calc sumskill2 sumsk2calc sumskill3 sumsk3calc sumskill4 sumsk4calc sumskill5 sumsk5calc sumumod sumoverlay stsuccessonly stsound stsoundclass stsounddelay weaponsnd dosound dosound a dosound b tgtoverlay tgtsound prgoverlay prgsound castoverlay cltoverlaya cltoverlayb cltstfunc cltdofunc cltprgfunc1 cltprgfunc2 cltprgfunc3 cltmissile cltmissilea cltmissileb cltmissilec cltmissiled cltcalc1 *cltcalc1 desc cltcalc2 *cltcalc2 desc cltcalc3 *cltcalc3 desc warp immediate enhanceable attackrank noammo range weapsel itypea1 itypea2 itypea3 etypea1 etypea2 itypeb1 itypeb2 itypeb3 etypeb1 etypeb2 anim seqtrans monanim seqnum seqinput durability UseAttackRate LineOfSight TargetableOnly SearchEnemyXY SearchEnemyNear SearchOpenXY SelectProc TargetCorpse TargetPet TargetAlly TargetItem AttackNoMana TgtPlaceCheck ItemEffect ItemCltEffect ItemTgtDo ItemTarget ItemCheckStart ItemCltCheckStart ItemCastSound ItemCastOverlay skpoints reqlevel maxlvl reqstr reqdex reqint reqvit reqskill1 reqskill2 reqskill3 restrict State1 State2 State3 delay leftskill repeat checkfunc nocostinstate usemanaondo startmana minmana manashift mana lvlmana interrupt InTown aura periodic perdelay finishing passive progressive general scroll calc1 *calc1 desc calc2 *calc2 desc calc3 *calc3 desc calc4 *calc4 desc Param1 *Param1 Description Param2 *Param2 Description Param3 *Param3 Description Param4 *Param4 Description Param5 *Param5 Description Param6 *Param6 Description Param7 *Param7 Description Param8 *Param8 Description InGame ToHit LevToHit ToHitCalc ResultFlags HitFlags HitClass Kick HitShift SrcDam MinDam MinLevDam1 MinLevDam2 MinLevDam3 MinLevDam4 MinLevDam5 MaxDam MaxLevDam1 MaxLevDam2 MaxLevDam3 MaxLevDam4 MaxLevDam5 DmgSymPerCalc EType EMin EMinLev1 EMinLev2 EMinLev3 EMinLev4 EMinLev5 EMax EMaxLev1 EMaxLev2 EMaxLev3 EMaxLev4 EMaxLev5 EDmgSymPerCalc ELen ELevLen1 ELevLen2 ELevLen3 ELenSymPerCalc aitype aibonus cost mult cost add
Attack 0 attack 1 1 1 1 0 both weap tpot A1 A1 A1 1 1 1 1 1 1 1 1 0 8 0 0 1 1 1 1 8 128 0
Kick 1 kick 2 2 0 0 0 h2h 4 KK KK xx 1 1 1 1 0 8 0 0 1 1 1 8 0
Throw 2 throw 65 3 2 2 0 rng thro TH TH xx 1 1 1 2 0 8 0 0 1 1 1 8 128 0
Unsummon 3 unsummon 3 4 3 0 0 rng SC SC xx 1 1 1 1 0 8 0 0 1 1 1 1 8 0
Left Hand Throw 4 left hand throw 65 5 2 2 0 rng 1 thro S4 S4 xx 1 1 1 1 3 0 8 0 0 1 1 1 8 0
Left Hand Swing 5 left hand swing 1 1 4 1 0 both 1 weap tpot S3 S3 S3 1 1 1 1 1 1 4 0 8 0 0 1 1 1 8 0
Magic Arrow 6 ama magic arrow magicarrow magicarrow 1 0 1 rng miss A1 A1 xx 1 1 1 30 1 0 5 12 -1 1 1 10 9 8 128 1 1 1 2 2 3 3 1 1 2 2 3 256 1000
Fire Arrow 7 ama fire arrow 4 firearrow 1 11 firearrow 1 0 rng miss A1 A1 xx 1 1 1 30 1 1 1 5 24 1 1 12 damage synergy 1 10 9 8 128 fire 1 2 3 6 12 24 4 2 3 7 14 27 (skill('Exploding Arrow'.blvl)) * par8 256 1000
Inner Sight 8 ama inner sight 6 34179 innersight ln34 ln56 armorclass -edmn amazon_eyeofzeus cast_innersight 1 3 none SC SC xx 4 1 amazon_eyeofzeus cast_innersight 1 30 1 7 10 0 1 40 base monster ac 25 monster ac/lvl 200 duration 100 duration per level 20 radius of effect 0 radius per level 1 8 40 25 45 60 80 100 256 1000
Critical Strike 9 ama critical strike criticalstrike passive_critical_strike dm12 1 4 rng spea miss xx 1 1 1 30 1 0 8 0 0 1 1 5 min % to do double damage 80 max % to do double damage 1 8 256 1000
Jab 10 ama jab 5 7 amazon_jab_1 weapon_1ht_1 weapon_2ht_1 12 16 1 3 h2h spea SQ A1 xx 1 1 1 1 1 1 1 1 30 1 1 6 8 1 ln34+skill('Impale'.blvl)*par8+skill('Fend'.blvl)*par8 dmg% -15 Percent damage base 3 Percent damage per level 5 damage synergy 1 10 9 8 128 256 1000
Cold Arrow 11 ama cold arrow 4 coldarrow 1 11 coldarrow 1 4 rng miss A1 A1 xx 1 1 6 30 1 1 1 5 28 1 1 12 damage synergy 1 10 9 7 128 cold 6 4 5 8 16 42 8 4 5 9 17 44 (skill('Ice Arrow'.blvl)) * par8 100 30 30 30 384 3000
Multiple Shot 12 ama multiple shot 4 8 1 multipleshotarrow multipleshotbolt 11 17 multipleshotarrow multipleshotbolt 1 7 rng miss A1 A1 xx 1 1 6 30 Magic Arrow 1 1 1 8 4 1 1 "min(24,ln12)" # missiles par3 activation frame 2 triggered 2 number of arrows to fire 1 additional arrows per level 1 Acivation frame of arrows. 5 damage synergy 1 8 128 384 3000
Dodge 13 ama dodge dodge passive_dodge dm12 amazon_dodge_1 1 0 h2h S1 S1 xx 1 6 30 1 0 8 0 0 1 1 10 min % dodge 65 max % dodge 1 8 384 3000
Power Strike 14 ama power strike 6 2 1 4 h2h spea A1 A1 xx 1 1 1 1 1 6 30 Jab 1 1 6 8 1 1 10 damage synergy 1 20 12 8 128 ltng 1 0 0 0 0 0 16 18 36 54 72 90 (skill('Lightning Strike'.blvl)+skill('Lightning Bolt'.blvl)+skill('Charged Strike'.blvl)+skill('Lightning Fury'.blvl)) * par8 384 3000
Poison Javelin 15 ama poison javelin 4 poisonjav 1 amazon_cast_poison 1 11 poisonjav 1 2 rng jave TH TH xx 1 1 6 30 15 1 1 6 16 1 1 12 damage synergy 1 128 pois 32 16 32 48 64 96 48 16 36 52 68 84 (skill('Plague Javelin'.blvl)) * par8 200 50 50 50 384 3000
Exploding Arrow 16 ama exploding arrow 4 explodingarrow 1 11 explodingarrow 1 5 rng miss A1 A1 xx 1 1 12 30 Fire Arrow Multiple Shot 1 1 1 7 10 1 1 12 damage synergy 1 20 9 8 128 fire 2 5 7 9 12 20 6 5 8 11 14 23 (skill('Fire Arrow'.blvl)) * par8 512 8000
Slow Missiles 17 ama slow missiles 6 50563 slowmissiles ln34 ln56 skill_handofathena ln12 amazon_handofathena cast_slowmissiles 1 8 none SC SC xx 4 1 amazon_handofathena cast_slowmissiles 12 30 Inner Sight 1 7 10 0 1 33 % velocity for missiles 0 % velocity per level 300 duration 150 duration per level 20 radius of effect 0 radius per level 1 8 512 8000
Avoid 18 ama avoid avoid passive_avoid dm12 amazon_dodge_1 1 0 h2h S1 S1 xx 1 12 30 Dodge 1 0 8 0 0 1 1 15 min % avoid 75 max % avoid 1 8 512 8000
Impale 19 ama impale 7 2 amazon_impale_1 1 1 1 6 h2h spea SQ A1 xx 8 1 1 1 1 1 1 12 30 Jab 1 1 8 3 0 1 ln12+skill('Jab'.blvl)*par8+skill('Fend'.blvl)*par8 dm% par6-dm34 dur loss chance par5 dur loss 300 Percent damage 25 % damage per level 0 % chance durability loss delta min 30 % chance durability loss delta max 1 durability loss 50 % max chance durability loss 5 damage synergy 1 100 25 8 128 512 8000
Lightning Bolt 20 ama lightning bolt 4 lightningjavelin 1 11 lightningjavelin 1 6 rng jave TH TH xx 1 12 30 Poison Javelin 1 1 6 24 1 1 3 damage synergy 1 8 128 ltng 1 0 0 0 0 0 40 12 18 28 48 88 (skill('Lightning Strike'.blvl)+skill('Power Strike'.blvl)+skill('Charged Strike'.blvl)+skill('Lightning Fury'.blvl)) * par8 512 8000
Ice Arrow 21 ama ice arrow 4 icearrow 1 11 icearrow 1 6 rng miss A1 A1 xx 1 1 18 30 Cold Arrow 1 1 1 6 16 1 1 5 length synergy 8 damage synergy 1 20 9 8 128 cold 6 6 12 18 26 36 10 6 13 19 27 38 (skill('Cold Arrow'.blvl))*par8 50 5 5 5 (skill('Freezing Arrow'.blvl)) * par7 640 16000
Guided Arrow 22 ama guided arrow 4 10 1 guidedarrow guidedarrow guidedarrow 11 18 guidedarrow guidedarrow guidedarrow 1 4 rng miss A1 A1 xx 1 1 18 30 Cold Arrow Multiple Shot 1 1 1 6 32 -1 1 ln34+skill('Magic Arrow'.blvl)*par8 damage% 0 Damage percent 5 damage % per level 6 damage synergy 1 8 128 640 16000
Penetrate 23 ama penetrate penetrate item_tohit_percent ln12 1 1 rng spea miss xx 1 18 30 Critical Strike 1 0 8 0 0 1 1 35 add % to hit with missiles base 10 add % to hit with missiles/level 1 8 640 16000
Charged Strike 24 ama charged strike 6 11 chargedstrikebolt chargedstrikebolt chargedstrikebolt 19 chargedstrikebolt chargedstrikebolt chargedstrikebolt 1 5 h2h spea A1 A1 xx 1 1 1 1 1 18 30 Power Strike Lightning Bolt 1 1 6 16 1 1 par1+lvl/par2 # bolts 3 Bolts to send out 5 Additional bolts per N levels 10 damage synergy 1 8 ltng 1 0 0 0 0 0 30 12 16 20 24 28 (skill('Lightning Strike'.blvl)+skill('Lightning Bolt'.blvl)+skill('Power Strike'.blvl)+skill('Lightning Fury'.blvl)) * par8 640 16000
Plague Javelin 25 ama plague javelin 4 plaguejavelin 1 amazon_cast_poison 1 11 plaguejavelin 1 3 rng jave TH TH xx 1 1 18 30 Lightning Bolt 100 1 1 1 7 14 1 1 10 damage synergy 1 30 9 3 128 pois 10 6 12 20 40 60 16 6 12 20 40 60 (skill('Poison Javelin'.blvl))*par8 75 10 10 10 640 16000
Strafe 26 ama strafe 8 12 strafearrow strafebolt par5 amazon_dodge_1 paladin_charge 13 20 multipleshotarrow multipleshotbolt 1 0 rng miss A1 A1 xx 1 1 24 30 Guided Arrow 1 1 1 8 11 0 "min(par3 + lvl - 1, par4)" #missiles ln12+skill('Multiple Shot'.blvl)*par7+skill('Guided Arrow'.blvl)*par8 damage % 2+lvl/4 min # missiles 5 Damage increase 5 Damage increase per level 4 Base Shots to take (+1 per level) 10 Max shots to take 35 Radius 50 % frame rollback 5 damage synergy 6 damage synergy 1 8 128 768 32000
Immolation Arrow 27 ama immolation arrow 4 immolationarrow 1 11 immolationarrow 1 6 rng miss A1 A1 xx 1 1 24 30 Exploding Arrow 25 1 1 1 7 12 1 1 par1 fire disc radius par2 damage radius 2 Fire disc radius 3 Radial Damage Radius 10 damage synergy 1 30 9 8 128 fire 10 10 20 30 32 34 20 10 20 30 32 34 (skill('Exploding Arrow'.blvl)) * par8 768 32000
Dopplezon 28 ama dopplezon 15 dopplezon fireresist "min(lvl*par7,85)" lightresist "min(lvl*par7,85)" coldresist "min(lvl*par7,85)" poisonresist "min(lvl*par7,85)" dopplezon dopplezon 1 NU dopllezon_appear amazon_valkyrie_cast 1 4 none SC SC xx 4 1 24 30 Slow Missiles 1 6 76 -3 1 lvl*par4 bonus hp% ln12 duration par3 %hp of caster 250 duration of decoy 125 duration per level 50 percent hitpoints of caster 10 hp % bonus per level 4 resistances 1 8 768 32000
Evade 29 ama evade evade passive_evade dm12 amazon_dodge_1 1 0 h2h S1 S1 xx 1 24 30 Avoid 1 0 8 0 0 1 1 10 min % evade 65 max % evade 1 8 768 32000
Fend 30 ama fend 9 13 amazon_jab_1 1 14 21 1 0 h2h spea A1 A1 xx 9 1 1 1 1 1 24 30 Impale 1 1 8 5 0 12 max targets ln34+skill('Jab'.blvl)*par8+skill('Impale'.blvl)*par8 damage % 1 additional target/level 60 % frame rollback 70 % damage percent 10 damage % per level 5 damage synergy 1 40 10 8 128 768 32000
Freezing Arrow 31 ama freezing arrow 4 freezingarrow 1 11 freezingarrow 1 7 rng miss A1 A1 xx 1 1 30 30 Ice Arrow 1 1 1 7 18 1 1 par1 damage radius 5 Radius of impact 5 length synergy 12 damage synergy 1 40 9 8 128 cold 40 10 15 20 22 24 50 10 15 20 22 24 (skill('Cold Arrow'.blvl))*par8 50 (skill('Ice Arrow'.blvl)) * par7 896 64000
Valkyrie 32 ama valkyrie 16 strength lvl * par2 dexterity lvl * par4 fireresist "min((lvl+skill('Dopplezon'.blvl))*par7,85)" lightresist "min((lvl+skill('Dopplezon'.blvl))*par7,85)" coldresist "min((lvl+skill('Dopplezon'.blvl))*par7,85)" poisonresist "min((lvl+skill('Dopplezon'.blvl))*par7,85)" item_armor_percent par3 * (lvl - 1) tohit toht valkyrie valkyrie 1 NU dodge skill('Dodge'.blvl) avoid skill('Avoid'.blvl) Evade skill('Evade'.blvl) Critical Strike skill('Critical Strike'.blvl) amazon_valkyrie_cast 1 6 none SC SC xx 4 1 30 30 Dopplezon Evade 150 1 8 25 1 1 1 par1 * (lvl - 1) + skill('Dopplezon'.blvl) * par8 bonus hp% ln56 itemlevel 20 % hitpoints more per level 25 str per level 10 % AC increase per level 12 dex per level 25 Magic Item level 3 Magic Item level per level 2 resistances 20 hp synergy 1 40*lvl+40*skill('Penetrate'.blvl) 8 896 64000
Pierce 33 ama pierce pierce skill_pierce dm12 1 0 rng miss xx 1 30 30 Penetrate 1 0 8 0 0 1 1 1 10 min % chance 110 max % chance 1 8 896 64000
Lightning Strike 34 ama lightning strike 10 14 lightningstrike lightningstrike lightningstrike par1 22 lightningstrike lightningstrike lightningstrike 1 8 h2h spea A1 A1 xx 1 1 1 1 1 30 30 Charged Strike 1 1 8 9 0 1 20 radius ln34 hits 20 radius of jump to next target 2 Target hits 1 Target hits per level 8 damage synergy 1 8 ltng 1 0 0 0 0 0 25 10 15 20 25 30 (skill('Charged Strike'.blvl)+skill('Lightning Bolt'.blvl)+skill('Power Strike'.blvl)+skill('Lightning Fury'.blvl)) * par8 896 64000
Lightning Fury 35 ama lightning fury 4 lightningfury 1 42371 par3 11 lightningfury 1 8 rng jave TH TH xx 1 30 30 Plague Javelin 1 1 7 20 1 1 ln12 num targets 2 lightning spells from target 1 extra spells/level 15 Target search radius 1 damage synergy 1 8 128 ltng 1 0 0 0 0 0 40 20 30 40 50 50 (skill('Charged Strike'.blvl)+skill('Lightning Bolt'.blvl)+skill('Power Strike'.blvl)+skill('Lightning Strike'.blvl)) * par8 896 64000
Fire Bolt 36 sor fire bolt firebolt sorceress_cast_fire fire_cast_1 firebolt 1 2 none SC SC xx 1 sorceress_cast_fire 1 30 1 1 7 5 0 1 16 damage synergy 1 7 fire 6 3 4 8 18 54 12 3 6 10 20 56 (skill('Fire Ball'.blvl)+skill('Meteor'.blvl))*par8 256 1000
Warmth 37 sor warmth warmth manarecoverybonus ln12 1 0 none SC SC xx 1 1 30 1 0 8 0 0 1 1 1 30 increase in mana recovery 12 additional increase/level 1 8 fire 256 1000
Charged Bolt 38 sor charged bolt 17 chargedbolt chargedbolt chargedbolt sorceress_cast_lightning light_cast_1 23 chargedbolt 1 1 none SC SC xx 1 sorceress_cast_lightning 1 30 1 1 5 24 4 1 "min(24,ln12)" # bolts 3 Bolts to send out 1 Additional bolts per level 6 damage synergy 1 7 ltng 4 1 1 2 3 4 8 1 1 2 3 4 (skill('Nova'.blvl)+skill('Lightning'.blvl)+skill('Chain Lightning'.blvl))*par8 256 1000
Ice Bolt 39 sor ice bolt icebolt sorceress_cast_cold ice_cast_1 icebolt 1 5 none SC SC xx 1 sorceress_cast_cold 1 30 1 1 8 3 0 1 15 damage synergy 1 7 cold 6 2 4 6 8 10 10 3 5 7 9 11 (skill('Frost Nova'.blvl)+skill('Ice Blast'.blvl)+skill('Glacial Spike'.blvl)+skill('Blizzard'.blvl)+skill('Frozen Orb'.blvl))*par8 150 35 35 35 256 1000
Frozen Armor 40 sor frozen armor 18 frozenarmor ln34+(skill('Shiver Armor'.blvl)+skill('Chilling Armor'.blvl))*par7 skill_armor_percent ln12 damagedinmelee 2 sorceress_cast_cold sorceress_frozenarmor ice_cast_1 frozenarmor_hit 1 0 none SC SC xx 1 sorceress_cast_cold ice_cast_1 1 30 1 8 7 0 1 1 ln56*(100+((skill('Shiver Armor'.blvl)+skill('Chilling Armor'.blvl))*par8))/100 freeze length 30 % AC base 5 % AC per level 3000 Duration 300 Duration per level 30 Freeze Frames 3 Freeze Frames per level 250 duration synergy 5 freeze synergy 1 8 1 256 1000
Inferno 41 sor inferno 11 19 infernoflame1 infernoflame1 infernoflame1 ln12/4-2 15 24 infernoflame1 infernoflame2 1 7 rng SQ SQ xx 6 10 1 6 30 1 1 6 0 2 36 1 1 ln12/2 range 20 frames if monster 20 base ranged (doubled) 3 level range (doubled) 6 Min Mana to start casting 13 damage synergy 1 2 fire 32 24 26 28 32 36 64 24 27 29 33 37 (skill('Warmth'.blvl))*par8 384 3000
Static Field 42 sor static field 20 34691 ln12 sorceress_cast_lightning light_cast_1 1 10 none SC SC xx 4 1 sorceress_cast_lightning 6 30 1 8 9 0 1 par4 damage % par3 min damage 5 Base radius of effect. 1 Level radius bonus. 0 Minimum Damage. 25 Percent Damage. 1 8 ltng 384 3000
Telekinesis 43 sor telekinesis 12 21 par1 sorceress_cast_lightning sorceress_telekinesis light_cast_2 1 10 none SC SC xx 1 1 sorceress_telekinesis 6 30 1 8 7 0 1 1 25 On-screen cast range. 35 Chance to knockback/stun. 1 5 2 109 8 ltng 1 1 1 1 1 1 2 1 1 1 1 1 384 3000
Frost Nova 44 sor frost nova 22 frostnova frostnova frostnova sorceress_cast_cold ice_cast_2 25 frostnova 1 6 none SC SC SC 36 10 sorceress_cast_cold 6 30 1 8 9 1 1 9 radius of freeze 3 additional radius/level 10 damage synergy 1 7 cold 4 4 6 8 10 12 8 5 7 9 11 13 (skill('Blizzard'.blvl)+skill('Frozen Orb'.blvl))*par8 200 25 25 25 384 3000
Ice Blast 45 sor ice blast iceblast sorceress_cast_cold ice_cast_1 iceblast 1 6 none SC SC xx 1 sorceress_cast_cold 6 30 Ice Bolt 1 1 7 12 1 1 75 Duration of freeze 5 additional duration/level 10 freeze synergy 8 damage synergy 1 7 cold 16 14 28 42 56 70 24 15 29 43 57 71 (skill('Ice Bolt'.blvl)+skill('Blizzard'.blvl)+skill('Frozen Orb'.blvl))*par8 75 5 5 5 (skill('Glacial Spike'.blvl))*par7 384 3000
Blaze 46 sor blaze 23 blaze blaze blaze blaze dm12 sorceress_cast_fire fire_cast_2 blaze firewall firesmall firemedium 1 3 none SC SC xx 1 12 30 Inferno 1 7 22 1 1 50 Min Frames 500 Max Frames 11 damage synergy 1 4 fire 4 2 3 4 6 9 8 2 3 4 6 9 (skill('Inferno'.blvl)*par8 512 8000
Fire Ball 47 sor fire ball fireball sorceress_cast_fire fire_cast_2 fireball 1 5 none SC SC xx 1 sorceress_cast_fire 12 30 Fire Bolt 1 1 7 10 1 1 14 damage synergy 1 7 fire 12 13 23 28 33 38 28 15 25 30 35 40 (skill('Fire Bolt'.blvl)+skill('Meteor'.blvl))*par8 512 8000
Nova 48 sor nova 22 nova nova nova sorceress_cast_lightning light_cast_1 25 nova 1 2 none SC SC xx 36 10 sorceress_cast_lightning 12 30 Static Field 1 8 15 1 1 12 number of missiles 4 additional missiles per level 6 damage synergy 1 8 ltng 1 6 7 8 9 10 20 8 9 10 11 12 (skill('Static Field'.blvl)+skill('Telekinesis'.blvl))*par8 512 8000
Lightning 49 sor lightning lightningbolt sorceress_cast_lightning light_cast_1 lightningbolt 1 6 none SQ SC xx 12 1 1 sorceress_cast_lightning 12 30 Charged Bolt 1 1 7 16 1 1 10 minimum damage 20 max damage 4 increase in dam/level (min & max) 8 damage synergy 1 8 ltng 1 0 0 0 0 0 40 8 12 20 28 36 (skill('Charged Bolt'.blvl)+skill('Chain Lightning'.blvl)+skill('Nova'.blvl))*par8 512 8000
Shiver Armor 50 sor shiver armor 18 shiverarmor ln34+(skill('Frozen Armor'.blvl)+skill('Chilling Armor'.blvl))*par7 skill_armor_percent ln12 attackedinmelee 3 sorceress_cast_cold sorceress_shiverarmor ice_cast_2 shiverarmor_hit sparkle 10 sparkle delay 5 sparkle radius 3 sparkle height 1 0 none SC SC xx 1 sorceress_cast_cold ice_cast_3 12 30 Ice Blast Frozen Armor 1 8 11 0 1 1 45 % AC base 6 % AC per level 3000 Duration 300 duration per level 250 duration synergy 9 damage synergy 1 7 cold 12 4 6 8 10 12 16 5 7 9 11 13 (skill('Frozen Armor'.blvl)+skill('Chilling Armor'.blvl))*par8 100 25 50 512 8000
Fire Wall 51 sor fire wall 24 firewallmaker firewall sorceress_cast_fire fire_cast_2 26 firewallmaker 1 4 none SC SC SC 4 1 1 sorceress_cast_fire 18 30 Blaze 35 1 8 22 1 1 3 damage synergy 1 4 fire 15 9 14 21 21 21 20 9 14 21 21 21 (skill('Inferno'.blvl)+skill('Blaze'.blvl))*par8 640 16000
Enchant 52 sor enchant 25 enchant ln12 firemindam enma firemaxdam exma item_tohit_percent toht sorceress_enchant 1 4 none SC SC xx 1 1 1 1 sorceress_enchant 18 30 Warmth Fire Ball 1 8 25 1 1 1 3600 duration 600 duration per level 33 missile pct 9 damage synergy 1 20 9 7 fire 16 3 7 11 15 19 20 5 9 13 17 21 (skill('Warmth'.blvl)+skill('Inferno'.blvl))*par8 640 16000
Chain Lightning 53 sor chain lightning 26 chainlightning chainlightning chainlightning par1 sorceress_cast_lightning light_cast_1 27 chainlightning chainlightning chainlightning 1 2 none SQ SC SC 12 1 151 96 sorceress_cast_lightning 18 30 Lightning 1 1 8 9 1 1 ln34 / 5 # hits 20 radius of jump to next target 26 bolts (5ths) 1 bolts per level (5ths) 5 5ths 4 damage synergy 1 8 ltng 1 0 0 0 0 0 40 11 13 15 15 15 (skill('Charged Bolt'.blvl)+skill('Lightning'.blvl)+skill('Nova'.blvl))*par8 640 16000
Teleport 54 sor teleport 27 sorceress_teleport teleport 1 1 0 none SC SC xx 1 1 2 sorceress_teleport teleport 18 30 Telekinesis 1 8 24 -1 1 1 8 640 16000
Glacial Spike 55 sor glacial spike glacialspike ln34 * (100 + skill('Blizzard'.blvl) * par7) / 100 ln12 sorceress_cast_cold ice_cast_2 glacialspike 1 7 none SC SC SC 1 sorceress_cast_cold 18 30 Ice Blast 1 1 7 20 1 1 4 radius 0 radius per level 50 freeze frames 3 freeze frames per level 3 freeze synergy 5 damage synergy 1 7 cold 32 14 26 28 30 32 48 15 27 29 31 33 (skill('Ice Bolt'.blvl)+skill('Ice Blast'.blvl)+skill('Frozen Orb'.blvl))*par8 640 16000
Meteor 56 sor meteor 28 meteorcenter meteorcenter meteorcenter ln12 sorceress_cast_fire sorceress_meteor fire_cast_2 28 meteorcenter 1 6 none SC SC xx 4 1 1 sorceress_cast_fire fire_cast_2 24 30 Fire Ball Fire Wall 30 1 7 34 1 1 ln12 radius 6 radius of explosion 0 radius per level 30 Frames of fire 15 Frames of fire per level 5 damage synergy 1 8 fire 80 23 39 79 81 83 100 25 41 81 83 85 (skill('Fire Bolt'.blvl)+skill('Fire Ball'.blvl))*par8 768 32000
Thunder Storm 57 sor thunder storm 13 29 thunderstorm1 thunderstorm ln12 sorceress_thunder_cast lightning light_cast_2 84 thunderstorm1 1 5 none SC SC xx 1 24 30 Nova Chain Lightning 1 8 19 0 1 1 (100-dm56) * par4/100 + par3 800 duration 200 additional duration/level 25 minimum repeat time 100 repeat time factor 0 min % repeat time 100 max % repeat time 17 radius 10 damage synergy 1 8 ltng 1 10 10 11 11 11 100 10 10 11 11 11 (skill('Lightning'.blvl))*par8 768 32000
Energy Shield 58 sor energy shield 23 energyshield ln12 absorbdamage 24 sorceress_cast_lightning sorceress_energyshield energyshieldhit0 light_cast_2 1 4 none SC SC xx 1 24 30 Teleport Chain Lightning 1 8 5 0 1 1 "min(edmn,95)" damage absorption par5-skill('Telekinesis'.blvl) ratio 3600 duration 1500 additional duration/level 32 Mana Damage mult in sixteenths 1 8 20 5 2 1 1 1 768 32000
Blizzard 59 sor blizzard 28 blizzardcenter blizzardcenter blizzardcenter sorceress_cast_cold ice_cast_3 28 blizzardcenter 1 7 none SC SC xx 4 1 1 sorceress_cast_cold ice_cast_3 24 30 Frost Nova Glacial Spike 45 1 8 23 1 1 par1 radius par3 frequency 7 radius 4 Missile delay 0 Change duration in Missiles.xls 5 damage synergy 1 8 cold 45 15 30 45 55 65 75 16 31 46 56 66 (skill('Ice Bolt'.blvl)+skill('Ice Blast'.blvl)+skill('Glacial Spike'.blvl))*par8 100 768 32000
Chilling Armor 60 sor chilling armor 18 chillingarmorbolt chillingarmor ln34+(skill('Frozen Armor'.blvl)+skill('Shiver Armor'.blvl))*par7 skill_armor_percent ln12 hitbymissile 1 sorceress_cast_cold sorceress_shiverarmor ice_cast_3 chillarmor_hit chillingarmorbolt 1 5 none SC SC xx 1 sorceress_cast_cold 24 30 Shiver Armor 1 8 17 0 1 1 45 % AC Bonus 5 % AC bonus per level 3600 duration 150 duration per level 250 duration synergy 7 damage synergy 1 7 cold 8 2 4 6 8 10 12 3 5 7 9 11 (skill('Frozen Armor'.blvl)+skill('Shiver Armor'.blvl))*par8 100 25 25 768 32000
Fire Mastery 61 sor fire mastery firemastery passive_fire_mastery ln12 1 3 none SC SC xx 1 30 30 1 0 8 0 0 1 1 30 % Damage bonus 7 % Damage bonus per level 1 8 fire 896 64000
Hydra 62 sor hydra 14 144 passive_fire_mastery stat('passive_fire_mastery'.accr) passive_fire_pierce stat('passive_fire_pierce'.accr) hydra1 hydra 99 S2 HydraMissile lvl Fire Bolt skill('Fire Bolt'.blvl) Fire Ball skill('Fire Ball'.blvl) 1 sorceress_cast_fire fire_cast_2 17 1 7 none SC SC S1 4 1 1 sorceress_cast_fire fire_cast_2 30 30 Enchant 50 1 7 40 1 1 250 duration 0 additional duration/level 4 damage synergy 1 7 fire 24 9 13 17 21 25 34 11 15 19 23 27 (skill('Fire Bolt'.blvl) + skill('Fire Ball'.blvl))*par8 896 64000
Lightning Mastery 63 sor lightning mastery lightningmastery passive_ltng_mastery ln12 1 5 none SC SC xx 1 30 30 1 0 8 0 0 1 1 50 % Damage bonus 12 % Damage bonus per level 1 8 896 64000
Frozen Orb 64 sor frozen orb frozenorb sorceress_cast_cold ice_cast_3 29 frozenorb 1 8 none SC SC xx 1 sorceress_cast_cold 30 30 Blizzard 25 1 1 7 50 1 1 3 damage synergy 1 7 cold 80 20 24 28 29 30 90 21 25 29 30 31 (skill('Ice Bolt'.blvl)+skill('Ice Blast'.blvl)+skill('Glacial Spike'.blvl))*par8 200 25 25 25 896 64000
Cold Mastery 65 sor cold mastery coldmastery passive_cold_pierce ln12 1 3 none SC SC xx 1 30 30 1 0 8 0 0 1 1 20 lower resist 5 lower resist per level 1 8 896 64000
Amplify Damage 66 nec amplify damage 30 3 amplifydamage ln34 ln12 damageresist -par5 necromancer_curse_cast 18 30 curseamplifydamage cursecast 1 10 none SC SC S2 4 1 necromancer_curse_cast 1 30 1 8 4 0 1 3 radius 1 radius per level 200 duration 75 additional duration/level 100 % additional damage taken 1 8 256 1000
Teeth 67 nec teeth 8 teeth necromancer_bone_cast 19 17 teeth teeth bonecast 1 1 none SC SC xx 1 necromancer_bone_cast 1 30 1 1 7 6 1 1 "min(ln12,24)" # missiles par3 activation frame 4 number of missiles 1 additional missiles/level 0 Acivation frame of teeth 15 damage synergy 1 7 mag 4 2 3 4 5 6 8 3 4 5 6 7 (skill('Bone Wall'.blvl)+skill('Bone Prison'.blvl)+skill('Bone Spear'.blvl)+skill('Bone Spirit'.blvl))*par8 256 1000
Bone Armor 68 nec bone armor 18 bonearmor bonearmor (ln12 + (skill('Bone Wall'.blvl) + skill('Bone Prison'.blvl)) * par8)*256 bonearmormax (ln12 + (skill('Bone Wall'.blvl) + skill('Bone Prison'.blvl)) * par8)*256 absorbdamage 22 necromancer_bonearmor 1 3 none SC SC xx 1 necromancer_bonearmor 1 30 1 8 11 1 1 1 20 damage absorbed 10 additional absorbed/level 15 absorb synergy 1 8 256 1000
Skeleton Mastery 69 nec skeleton mastery skel_mastery 1 0 none SC SC xx 1 1 30 Raise Skeleton 0 8 0 0 1 1 8 additional hit points/level 2 additional damage per level 5 hp% per level for revive 10 dmg% per level for revive 1 8 256 1000
Raise Skeleton 70 nec raise skeleton 15 31 damagepercent ((lvl < 4) ? 0 : ((lvl-3)*par3)) tohit (lvl+skill('Skeleton Mastery'.lvl))*par4 armorclass (lvl+skill('Skeleton Mastery'.lvl))*par5 maxhp skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par1) * 256 item_normaldamage skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par2) + edmn necroskeleton skeleton (lvl < 4) ?lvl:(0+lvl) S1 1 necromancer_golem_cast 20 31 corpseexplosion 1 0 none SC SC xx 1 2 1 1 1 30 1 8 6 1 1 (lvl < 4) ? 0 : (par2 * (lvl - 3)) hp % adjustment 25 % chance of shield 50 hp%/lvl 7 dmg%/lvl 15 to hit/lvl 15 ac/lvl 1 8 0 0 1 2 3 4 256 1000
Dim Vision 71 nec dim vision 30 2 dimvision ln34 ln12 necromancer_curse_cast 18 30 cursedimvision cursecast 1 0 none SC SC xx 4 1 necromancer_curse_cast 6 30 1 8 9 0 1 4 radius 1 radius per level 175 duration 50 additional duration/level 1 8 384 3000
Weaken 72 nec weaken 30 3 weaken ln34 ln12 damagepercent -par5 necromancer_curse_cast 18 30 curseweaken cursecast 1 9 none SC SC SC 4 1 necromancer_curse_cast 6 30 Amplify Damage 1 8 4 0 1 9 radius 1 radius per level 350 duration 60 additional duration/level 33 % damage target can do 1 8 384 3000
Poison Dagger 73 nec poison dagger 16 32 1 4 h2h knif A1 A1 xx 1 1 1 1 6 30 1 1 6 12 1 1 20 damage synergy 1 30 20 1 128 pois 18 10 15 20 23 26 40 10 15 20 23 26 (skill('Poison Explosion'.blvl)+skill('Poison Nova'.blvl))*par8 50 10 10 10 384 3000
Corpse Explosion 74 nec corpse explosion 17 55 ln34 1 necromancer_corpse_cast necromancer_corpseexp_1 21 32 corpseexplosion explodingarrowexp redlightmissile 1 0 none SC SC xx 1 1 1 1 3 1 necromancer_corpse_cast 6 30 Teeth 1 8 15 1 1 par1 % target hp min damage par2 % target hp max damage par5 % damage to do as elemental 60 % of base monster HP min damage 100 % of base monster HP max damage 8 radius (half squares) 1 additional radius/level (half squares) 50 % damage to do as elemental 1 8 fire 384 3000
Clay Golem 75 nec clay golem 56 item_slow dm34 damagedinmelee 27 velocitypercent skill('Golem Mastery'.dm34) tohit skill('Golem Mastery'.ln56) + (lvl*par8) damagepercent par2 * (lvl - 1) + (skill('FireGolem'.blvl)*skill('FireGolem'.par8)) armorclass skill('IronGolem'.blvl)*skill('IronGolem'.par8) ClayGolem golem 1 S1 necromancer_golem_cast 1 5 none SC SC S1 4 1 6 30 1 8 15 3 1 1 (100+(par1 * (lvl - 1)))*(100+skill('Golem Mastery'.ln12) + (skill('BloodGolem'.blvl)*skill('BloodGolem'.par8)))/100-100 hp % adjustment 35 % HP bonus per level 35 % Damage bonus per level 0 slow effect min 75 slow effect max 20 clay golem attack synergy 1 8 384 3000
Iron Maiden 76 nec iron maiden 30 3 ironmaiden ln34 ln12 domeleedamage 4 necromancer_curse_cast 18 30 curseironmaiden cursecast 1 9 none SC SC S2 4 1 12 30 Amplify Damage 1 8 5 0 1 ln56 % damage to return ln56/4 % damage to return vs. players ln56/4 % damage to return other 3 radius 1 radius per level 300 duration 60 additional duration/level 200 % damage returned to accursed 25 % additional returned/level 1 16385 141 8 512 8000
Terror 77 nec terror 30 2 terror ln34 ln12 necromancer_curse_cast 18 30 curseterror cursecast 1 0 none SC SC xx 4 1 necromancer_curse_cast 12 30 Weaken 1 8 7 0 1 2 radius 1 radius per level 200 duration 25 additional duration/level 24 Distance to run 2 Distance per level 1 8 512 8000
Bone Wall 78 nec bone wall 60 bonewallmaker bonewall none S1 necromancer_bone_cast 22 1 0 none SC SC xx 4 1 necromancer_bone_cast 12 30 Bone Armor 1 8 17 0 1 (par1 * (lvl-1)) + ((skill('Bone Armor'.blvl)+skill('Bone Prison'.blvl))*par8) hp % adjustment par34 # of walls - 1 25 % additional HP per level 600 MAX duration 8 Max Monsters per wall 0 "Level, max monsters per wall" 10 life synergy 1 8 512 8000
Golem Mastery 79 nec golem mastery golem_mastery 1 0 none SC SC xx 1 12 30 Clay Golem 1 0 8 0 0 1 1 20 % HP bonus per level 20 % HP bonus per level 0 min velocity increase 40 max velocity increase 25 to hit 25 to hit/lvl 1 8 512 8000
Raise Skeletal Mage 80 nec raise skeletal mage 15 31 armorclass (lvl+skill('Skeleton Mastery'.lvl))*par5 maxhp skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par1) * 256 necromage skeletonmage (lvl < 4) ?lvl:(0+lvl) S1 NecromageMissile skill('Skeleton Mastery'.lvl) + ((lvl < 4)?0:((lvl-2)/2)) 1 necromancer_golem_cast 20 31 corpseexplosion 1 0 none SC SC xx 1 2 1 1 12 30 Raise Skeleton 1 8 8 1 1 (lvl < 4) ? 0 : (par2 * (lvl - 3)) hp % adjustment 7 hp%/lvl 10 ac/lvl 1 8 512 8000
Confuse 81 nec confuse 61 2 confuse ln34 ln12 necromancer_curse_cast 18 30 curseconfuse cursecast 1 0 none SC SC xx 4 1 necromancer_curse_cast 18 30 Dim Vision 1 8 13 0 1 6 radius 1 radius per level 250 duration 50 additional duration/level 1 8 640 16000
Life Tap 82 nec life tap 30 3 lifetap ln34 ln12 damagedinmelee 5 damagedbymissile 5 necromancer_curse_cast steallife 18 30 cursereversevampire cursecast 1 4 none SC SC S2 4 1 necromancer_curse_cast 18 30 Iron Maiden 1 8 9 0 1 ln56 hp % returned 4 radius 1 radius per level 400 duration 60 additional duration/level 50 % damage healed 0 % additional heal/level 1 8 640 16000
Poison Explosion 83 nec poison explosion 17 63 poisonexplosioncloud ln34 1 necromancer_corpse_cast necromancer_corpseexp_1 21 33 poisoncorpseexplosion poisonexplosioncloud greenlightmissile 1 0 none SC SC xx 1 1 1 1 3 1 necromancer_corpse_cast 18 30 Poison Dagger Corpse Explosion 1 8 8 0 1 15 damage synergy 1 4 pois 8 2 4 6 8 10 24 2 4 6 8 10 (skill('Poison Dagger'.blvl)+skill('Poison Nova'.blvl))*par8 50 10 10 10 640 16000
Bone Spear 84 nec bone spear bonespear necromancer_bone_cast 19 bonespear bonecast 1 6 none SC SC xx 1 necromancer_bone_cast 18 30 Corpse Explosion 1 1 6 28 1 1 7 damage synergy 1 8 mag 24 8 9 12 18 24 48 9 11 14 19 25 (skill('Bone Wall'.blvl)+skill('Bone Prison'.blvl)+skill('Teeth'.blvl)+skill('Bone Spirit'.blvl))*par8 640 16000
BloodGolem 85 nec bloodgolem 56 domeleedamage 23 damagedinmelee 26 damagedbymissile 26 velocitypercent skill('Golem Mastery'.dm34) tohit skill('Golem Mastery'.ln56)+skill('Clay Golem'.blvl)*skill('Clay Golem'.par8) damagepercent par4 * (lvl - 1) + (skill('FireGolem'.blvl)*skill('FireGolem'.par8)) armorclass skill('IronGolem'.blvl)*skill('IronGolem'.par8) BloodGolem golem 1 S1 necromancer_golem_cast 1 5 none SC SC xx 4 1 18 30 Clay Golem 1 8 25 4 1 1 skill('Golem Mastery'.ln12) hp % adjustment 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 5 blood golem life synergy 1 8 640 16000
Attract 86 nec attract 18 59 2 attract ln34 ln12 necromancer_curse_cast 18 30 curseattract cursecast 1 0 none SC SC xx 4 1 1 24 30 Confuse 1 8 17 0 1 9 radius 1 radius per level 300 duration 90 additional duration/level 1 8 768 32000
Decrepify 87 nec decrepify 30 3 decrepify ln34 ln12 velocitypercent par5 damagepercent par5 damageresist par5 attackrate par5 necromancer_curse_cast 18 30 cursedecrepify cursecast 1 9 none SC SC S2 4 1 necromancer_curse_cast 24 30 Terror 1 8 11 0 1 6 radius 1 radius per level 100 duration 15 additional duration/level -50 "% slowed, -dam, -dam resist" 1 8 768 32000
Bone Prison 88 nec bone prison 19 62 bonewall none NU necromancer_bone_cast 22 1 10 none SC SC xx 4 1 1 1 necromancer_bone_cast 24 30 Bone Wall Bone Spear 1 8 27 -1 1 (par1 * (lvl-1)) + ((skill('Bone Armor'.blvl)+skill('Bone Wall'.blvl))*par8) hp % adjustment 25 % additional HP per level 600 MAX duration 8 life synergy 1 8 768 32000
Summon Resist 89 nec summon resist summonresist passive_summon_resist dm12 1 6 none SC SC xx 1 24 30 Golem Mastery 1 1 8 44 -3 1 1 20 min % resist 75 max % resist 1 8 768 32000
IronGolem 90 nec irongolem 20 57 thorns thorns_percent ln12 fade 16 velocitypercent skill('Golem Mastery'.dm34) tohit skill('Golem Mastery'.ln56)+skill('Clay Golem'.blvl)*skill('Clay Golem'.par8) armorclass lvl*par8 damagepercent (skill('FireGolem'.blvl)*skill('FireGolem'.par8)) IronGolem golem 1 S1 1 necromancer_golem_cast 23 1 5 none SC SC xx 4 1 1 1 24 30 BloodGolem 1 8 35 0 1 1 skill('Golem Mastery'.ln12) + (skill('BloodGolem'.blvl)*skill('BloodGolem'.par8)) hp % adjustment 150 % thorns damage back (level 2) 15 % thorns damage back per level 35 iron golem armor synergy 1 8 768 32000
Lower Resist 91 nec lower resist 30 3 lowerresist ln34 ln12 fireresist -dm56 lightresist -dm56 coldresist -dm56 poisonresist -dm56 necromancer_curse_cast 18 30 curselowerresist cursecast 1 8 none SC SC S2 4 1 necromancer_curse_cast 30 30 Life Tap Decrepify 1 8 22 0 1 7 radius 1 radius per level 500 duration 50 additional duration/level 25 min % resist lower 70 max % resist lower 1 8 896 64000
Poison Nova 92 nec poison nova 22 poisonnova necromancer_poison_cast 25 poisonnova 1 3 none SC SC xx 1 necromancer_poison_cast 30 30 Poison Explosion 1 8 20 0 1 10 damage synergy 1 4 pois 14 4 5 8 12 14 25 4 5 8 12 14 (skill('Poison Dagger'.blvl)+skill('Poison Explosion'.blvl))*par8 50 896 64000
Bone Spirit 93 nec bone spirit 10 bonespirit bonespirit necromancer_bone_cast 18 bonespirit 1 7 none SC SC xx 1 4 necromancer_bone_cast 30 30 Bone Spear 1 1 7 24 1 1 0 + dmg% 6 damage synergy 1 8 mag 40 18 19 20 22 24 60 21 22 23 24 26 (skill('Bone Wall'.blvl)+skill('Bone Prison'.blvl)+skill('Teeth'.blvl)+skill('Bone Spear'.blvl))*par8 896 64000
FireGolem 94 nec firegolem 56 fireresist 100 - dm12 item_absorbfire_percent dm12 firemindam edmn firemaxdam edmx velocitypercent skill('Golem Mastery'.dm34) tohit skill('Golem Mastery'.ln56)+skill('Clay Golem'.blvl)*skill('Clay Golem'.par8) armorclass skill('IronGolem'.blvl)*skill('IronGolem'.par8) FireGolem golem 1 S1 holy fire "min(ln56,30)" necromancer_golem_cast 1 6 none SC SC xx 4 1 30 30 IronGolem 1 8 50 10 1 1 skill('Golem Mastery'.ln12) + (skill('BloodGolem'.blvl)*skill('BloodGolem'.par8)) hp % adjustment 25 min % fire absorbtion 100 max % fire absorbtion 100 % damage increase 35 % damage increase per level 8 Holy Fire Aura level 1 Plus Holy Fire Aura level 6 fire golem damage synergy 1 8 fire 10 9 10 11 12 13 27 10 11 12 13 14 896 64000
Revive 95 nec revive 21 58 damagepercent skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par4) velocitypercent par5 revive lvl NU 1 necromancer_revive_cast necromancer_revive_target 24 revivemedium revivesmall revivelarge 1 6 none SC SC xx 4 1 3 1 1 30 30 Raise Skeletal Mage IronGolem 1 8 45 0 1 par1+skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par3) hp % adjustment ln34 duration 200 additional hp percent 4500 Duration 0 additional duration/level 50 Velocity bonus for revived 1 8 896 64000
Sacrifice 96 pal sacrifice 29 64 paladin_sacrifice 1 34 blood1 3 blood1-bigblood1 1 7 h2h mele A1 A1 xx 2 1 1 1 1 1 1 1 30 1 0 8 0 0 1 ln12+skill('Redemption'.blvl)*par8+skill('Fanaticism'.blvl)*par7 damage % par3 damage self % 180 Percent damage 15 percent damage per level 8 percent damage to self 5 damage synergy 15 damage synergy 1 20 7 8 128 256 1000
Smite 97 pal smite 150 weapon_2hs_large_1 1 1 9 h2h 4 shld S1 S1 xx 1 1 1 1 1 1 30 1 1 8 2 0 ln34 damage % "min(250,ln12)" stunlen 15 Stun Length 5 additional frames/level 15 Percent bonus damage 15 percent damage per level 1 8 8 256 1000
Might 98 pal might 65 73731 might might ln12 damagepercent ln34 1 1 9 none xx 1 1 30 1 8 0 0 1 1 1 50 16 radius 2 additional radius per level 40 % additional damage 10 % additional damage/level 1 8 256 1000
Prayer 99 pal prayer 65 73731 prayer prayer ln12 hitpoints edns 1 7 none xx 1 1 30 1 4 16 3 1 1 1 50 16 radius 2 additional radius per level 1 8 2 1 1 2 2 3 256 1000
Resist Fire 100 pal resist fire 65 73731 resistfire resistfire ln12 fireresist dm34 maxfireresist skill('Resist Fire'.blvl) passive_resistfire maxfireresist skill('Resist Fire'.blvl)/2 1 1 8 none xx 1 1 30 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 35 min % resist 150 max % resist 1 8 256 1000
Holy Bolt 101 pal holy bolt holybolt paladin_holybolt_cast cast_undead holybolt 1 7 none SC SC xx 1 1 1 paladin_holybolt_cast cast_undead 6 30 1 1 4 32 1 1 ln12 * (100 + skill('Prayer'.blvl) * par7) / 100 min heal ln34 * (100 + skill('Prayer'.blvl) * par7) / 100 max heal 1 min hitpoints healed 2 hitpoints healed per level 6 max hitpoints healed 4 hitpoints healed per level 15 heal synergy 50 damage synergy 1 8 mag 8 8 10 13 16 20 16 8 11 15 18 23 (skill('Blessed Hammer'.blvl)+skill('Fist of the Heavens'.blvl))*par8 384 3000
Holy Fire 102 pal holy fire 66 42883 holyfire ln12 firemindam enms*par5/256 firemaxdam exms*par5/256 1 0 none xx 1 6 30 Might 0 8 0 0 1 1 1 50 6 radius 1 additional radius per level 6 damage to attack multiplier 6 damage synergy 18 damage synergy 1 16385 7 fire 2 1 2 3 5 7 6 1 2 3 5 7 skill('Resist Fire'.blvl)*par8+skill('Salvation'.blvl)*par7 384 3000
Thorns 103 pal thorns 65 73731 thorns thorns ln12 thorns_percent ln34 1 9 none xx 1 6 30 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 250 % damage bounced back 40 % additional bounce back/level 1 8 384 3000
Defiance 104 pal defiance 65 73731 defiance defiance ln12 skill_armor_percent ln34 1 1 4 none xx 1 6 30 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 70 % additional AC 10 % additional AC/level 0 ? 0 ? 1 8 384 3000
Resist Cold 105 pal resist cold 65 73731 resistcold resistcold ln12 coldresist dm34 maxcoldresist skill('Resist Cold'.blvl) passive_resistcold maxcoldresist skill('Resist Cold'.blvl)/2 1 1 6 none xx 1 6 30 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 35 min % resist 150 max % resist 0 ? 0 ? 1 8 384 3000
Zeal 106 pal zeal 37 13 1 paladin_zeal 53 21 1 2 h2h mele A1 A1 xx 1 1 1 1 12 30 Sacrifice 1 1 8 2 0 "min((par5 + lvl -1), par6)" max targets ((lvl < 5) ? 0 : ((lvl-4) * par4) )+skill('Sacrifice'.blvl)*par8 damage % 100 % frame rollback 30 % damage percent 6 damage % per level 2 Targets 5 Max targets 12 damage synergy 1 10 10 8 128 512 8000
Charge 107 pal charge 31 67 1 paladin_charge 25 37 1 2 none mele SQ A1 xx 4 8 1 1 1 1 1 12 30 Smite 1 1 8 9 0 ln34+(skill('Vigor'.blvl)+skill('Might'.blvl))*par8 damage % elem conversion% 150 percent increase in velocity 0 ? 100 plus % damage 25 plus % dam per level 2 Trails 0 ? 20 damage synergy 1 50 15 8 128 512 8000
Blessed Aim 108 pal blessed aim 65 73731 blessedaim blessedaim ln12 item_tohit_percent ln34 penetrate item_tohit_percent skill('Blessed Aim'.blvl) * par8 1 1 6 none xx 1 12 30 Might 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 75 % attack# bonus 15 % additional attack# bonus 0 ? 0 ? 5 passive to hit bonus 1 8 512 8000
Cleansing 109 pal cleansing 65 73731 cleansing cleansing ln12 item_poisonlengthresist 100-dm34 hitpoints skill('Prayer'.edns) 1 3 none xx 1 12 30 Prayer 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 30 min % reduction 90 max % reduction 0 ? 0 ? 1 8 512 8000
Resist Lightning 110 pal resist lightning 65 73731 resistlight resistlight ln12 lightresist dm34 maxlightresist skill('Resist Lightning'.blvl) passive_resistltng maxlightresist skill('Resist Lightning'.blvl)/2 1 1 6 none xx 1 12 30 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 35 min % resist 150 max % resist 0 ? 0 ? 1 8 512 8000
Vengeance 111 pal vengeance 35 2 1 1 3 h2h mele A1 A1 xx 1 1 1 1 1 18 30 Zeal 1 1 6 16 1 1 ln12+skill('Resist Fire'.blvl)*par8+skill('Salvation'.blvl)*par7 fire damage% ln12+skill('Resist Cold'.blvl)*par8+skill('Salvation'.blvl)*par7 cold damage% ln12+skill('Resist Lightning'.blvl)*par8+skill('Salvation'.blvl)*par7 ltng damage% 70 percent damage 6 percent damage per level 0 ? 0 ? 0 ? 0 ? 2 damage synergy 10 damage synergy 1 20 10 8 128 cold 30 15 15 15 640 16000
Blessed Hammer 112 pal blessed hammer 73 blessedhammer paladin_holybolt_cast 35 blessedhammer 1 2 none SC SC xx 1 paladin_holybolt_cast 18 30 Holy Bolt 1 1 6 20 1 1 4 Concentration influence in 8ths 0 ? 0 ? 0 ? 0 ? 0 ? 14 damage synergy 1 8 mag 12 8 10 12 13 14 16 8 10 12 13 14 (skill('Vigor'.blvl)+skill('Blessed Aim'.blvl))*par8 640 16000
Concentration 113 pal concentration 65 73731 concentration concentration ln12 damagepercent ln34 skill_concentration par5 1 1 6 none xx 1 18 30 Blessed Aim 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 60 % additional damage 15 $ additional damage/level 100 percent chance that attack will not be interrupted 0 ? 1 8 640 16000
Holy Freeze 114 pal holy freeze 81 303747 holywind holywindcold ln12 velocitypercent -dm34 attackrate -dm34 other_animrate -dm34 coldmindam enms*par5/256 coldmaxdam exms*par5/256 1 8 none xx 1 18 30 Holy Fire 0 8 0 0 1 1 1 50 6 radius 1 additional radius per level 25 min% slowing 60 max% slowing 5 damage to attack multiplier 0 ? 7 damage synergy 15 damage synergy 1 16385 8 cold 2 1 2 3 4 5 3 1 2 3 4 5 skill('Resist Cold'.blvl)*par8+skill('Salvation'.blvl)*par7 640 16000
Vigor 115 pal vigor 65 73731 stamina stamina ln12 staminarecoverybonus ln34 skill_staminapercent ln34 velocitypercent dm56 1 1 1 none xx 1 18 30 Cleansing Defiance 0 8 0 0 1 1 1 50 16 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 1 8 640 16000
Conversion 116 pal conversion 32 79 conversion ln12 1 1 0 h2h mele A1 A1 xx 1 1 1 1 1 24 30 Vengeance 1 1 8 4 0 1 dm34 chance to convert 400 duration of conversion (frames) 20 additional frames/level 0 min % chance convert 50 max % chance convert 0 ? 0 ? 1 8 128 768 32000
Holy Shield 117 pal holy shield 36 18 holyshield ln12 toblock dm56 ln34+skill('Defiance'.blvl)*par8 paladin_holyshield 1 3 none shld SC SC xx 1 1 24 30 Charge Blessed Hammer 1 8 35 0 1 1 ln34+skill('Defiance'.blvl)*par8 ac bonus to shield 750 duration of shield 625 duration/level 25 AC bonus 15 AC bonus per level 10 min % ToBlock Add 40 max % ToBlockAdd 15 armor synergy 1 8 3 2 3 4 4 4 6 2 3 4 4 4 768 32000
Holy Shock 118 pal holy shock 66 42883 holyshock ln12 lightmindam 1 lightmaxdam exms*par5/256 1 4 none xx 1 24 30 Holy Freeze 0 8 0 0 1 1 1 50 6 radius 1 additional radius per level 6 damage to attack multiplier 0 ? 4 damage synergy 12 damage synergy 1 16385 8 ltng 1 10 6 8 10 12 15 skill('Resist Lightning'.blvl)*par8+skill('Salvation'.blvl)*par7 768 32000
Sanctuary 119 pal sanctuary 66 59270 sanctuary ln12 item_undeaddamage_percent ln34 item_undead_tohit ln56 skill_bypass_undead 1 cast_undead sanctuarybolt 1 0 none xx 1 24 30 Thorns Holy Freeze 1 8 1 0 1 1 1 50 5 radius 1 additional radius per level 150 % damage to undead 30 % damage per level 100 att vs. undead 50 att vs. undead per level 7 damage synergy 1 11 157 8 mag 8 4 4 5 5 6 16 4 5 6 6 7 skill('Cleansing'.blvl)*par8 768 32000
Meditation 120 pal meditation 65 73729 meditation meditation ln12 manarecoverybonus ln34 hitpoints skill('Prayer'.edns) 1 7 none xx 1 24 30 Cleansing 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 300 % boost to mana recovery 25 % additional boost/level 0 ? 0 ? 1 8 768 32000
Fist of the Heavens 121 pal fist of the heavens 80 fistoftheheavensdelay handofgod 42375 20 paladin_handofgod_cast 36 fistoftheheavensdelay 1 7 none SC SC xx 4 1 1 1 4 30 30 Blessed Hammer Conversion 25 1 1 8 25 0 1 ln34 min heal ln56 max heal ln12 # bolts 6 holy bolts to release 1 holy bolts per level 1 min hitpoints healed 2 hitpoints healed per level 6 max hitpoints healed 2 hitpoints healed per level 7 damage synergy 1 8 ltng 150 15 30 45 55 65 200 15 30 45 55 65 skill('Holy Shock'.blvl)*par8 896 64000
Fanaticism 122 pal fanaticism 65 73731 fanaticism fanaticism ln12 attackrate dm34 item_tohit_percent toht damagepercent ln56/2 damagepercent ln56 1 1 8 none S1 1 30 30 Concentration 0 8 0 0 1 1 1 50 11 radius 1 additional radius per level 10 min% boost 40 max% boost 50 % damage boost 17 % damage bonus per level 1 40 5 8 896 64000
Conviction 123 pal conviction 66 42371 conviction conviction ln12 skill_armor_percent -dm56 fireresist "-min(ln34,150)" coldresist "-min(ln34,150)" lightresist "-min(ln34,150)" 1 6 none mele xx 5 1 1 30 30 Sanctuary 0 8 0 0 1 1 1 50 20 radius 1 additional radius per level 30 % resist reduction 5 % resist reduction per level 40 min % AC reduction 100 max % AC reduction 1 8 896 64000
Redemption 124 pal redemption 82 4354 redemption ln12 redemption 1 0 none xx 1 30 30 Vigor 0 8 0 0 1 1 1 50 dm34 chance to redeem ln56 hp gain ln56 mana gain 16 radius 1 additional radius per level 10 min % chance redeem 100 max % chance redeem 25 HP and mana gained 5 HP and mana gained/level 1 8 896 64000
Salvation 125 pal salvation 65 73731 resistall resistall ln12 fireresist dm34 coldresist dm34 lightresist dm34 hitpoints skill('Prayer'.edns) 1 1 8 none xx 1 30 30 0 8 0 0 1 1 1 50 16 radius 2 additional radius per level 50 min % resist 120 max % resist 1 8 896 64000
Bash 126 bar bash 32 2 barbarian_grunt_small_1 1 1 7 h2h mele A1 A1 xx 1 1 1 1 1 1 30 1 1 8 2 0 1 ln12+skill('Stun'.blvl)*par8 damage% ln34 post dmg add attack rate bonus 50 Damage % base 5 Damage % per level 1 Min Damage 1 Min Damager per level 5 to hit synergy 5 damage synergy 1 15+lvl*5+skill('Concentrate'.blvl)*par7 8 112 8 128 256 1000
Sword Mastery 127 bar sword mastery swordmastery swor passive_mastery_melee_th ln12 passive_mastery_melee_dmg ln34 passive_mastery_melee_crit dm56 1 0 none SC SC xx 1 1 1 30 0 8 0 0 1 1 1 28 Attack % base 8 Attack % per level 28 Damage % base 5 damage % per level 0 critical% 25 critical% 1 8 256 1000
Axe Mastery 128 bar axe mastery axemastery axe passive_mastery_melee_th ln12 passive_mastery_melee_dmg ln34 passive_mastery_melee_crit dm56 1 0 none SC SC xx 1 1 1 30 0 8 0 0 1 1 1 28 Attack % base 8 Attack % per level 28 Damage % base 5 damage % per level 0 critical% 25 critical% 1 8 256 1000
Mace Mastery 129 bar mace mastery macemastery blun passive_mastery_melee_th ln12 passive_mastery_melee_dmg ln34 passive_mastery_melee_crit dm56 1 0 none SC SC xx 1 1 1 30 0 8 0 0 1 1 1 28 Attack % base 8 Attack % per level 28 Damage % base 5 damage % per level 0 critical% 25 critical% 1 8 256 1000
Howl 130 bar howl 22 howl terror barbarian_howl_1 25 howl par1 * (lvl-1) velocity adder 1 0 none SC SC xx 1 1 1 30 1 8 4 0 1 par1 * (lvl-1) velocity adder 2 Velocity/level increase 1 Plev+Slev+n 24 Distance to retreat 5 Distance per level 75 Time to retreat 25 Time per level 1 8 256 1000
Find Potion 131 bar find potion 33 69 1 barbarian_findobject_1 barbarian_findheart_1 26 38 1 0 h2h SC SC xx 1 1 4 1 1 1 30 1 8 2 0 1 dm12 chance 0 min chance to find heart 100 max chance to find heart 30 Chance of finding a mana potion 10 Chance of finding rejuv 1 8 256 3000
Leap 132 bar leap 40 77 leapknockback dm12 1 barbarian_leap_1 29 43 1 0 none SQ A1 xx 13 1 1 6 30 1 1 8 2 0 1 ln34 knockback radius 4 min distance 30 max distance 4 Knockback range 1 knockback range per level 1 8 384 3000
Double Swing 133 bar double swing 70 1 27 39 par5 attack rate bonus 1 5 h2h 3 mele mele SQ A1 xx 11 1 1 1 1 1 1 6 30 Bash 1 0 5 8 -1 1 skill('Bash'.blvl)*par8 damage% post dmg add par5 attack rate bonus 50 Attack rate bonus 50 Attack rate bonus 10 damage synergy 1 15 5 8 128 384 3000
Pole Arm Mastery 134 bar pole arm mastery polearmmastery pole passive_mastery_melee_th ln12 passive_mastery_melee_dmg ln34 passive_mastery_melee_crit dm56 1 0 none SC SC xx 1 1 6 30 0 8 0 0 1 1 30 Attack % base 8 Attack % per level 28 Damage % base 5 damage % per level 0 critical% 25 critical% 1 8 384 3000
Throwing Mastery 135 bar throwing mastery throwingmastery thro passive_mastery_throw_th ln12 passive_mastery_throw_dmg ln34 passive_mastery_throw_crit dm56 1 0 none SC SC xx 1 1 6 30 0 8 0 0 1 1 30 Attack % base 8 Attack % per level 28 Damage % base 5 damage % per level 0 critical% 25 critical% 1 8 384 3000
Spear Mastery 136 bar spear mastery spearmastery spea passive_mastery_melee_th ln12 passive_mastery_melee_dmg ln34 passive_mastery_melee_crit dm56 1 0 none SC SC xx 1 1 6 30 0 8 0 0 1 1 30 Attack % base 8 Attack % per level 28 Damage % base 5 damage % per level 0 critical% 25 critical% 1 8 384 3000
Taunt 137 bar taunt 71 34179 taunt item_tohit_percent ln12 damagepercent ln34 barbarian_taunt_1 1 0 none SC SC S1 1 1 1 6 30 Howl 1 8 3 0 1 -5 % to hit for target -2 % to hit/level -5 % damage for target -2 % damage/level 1 8 384 3000
Shout 138 bar shout 68 shout shout shout ln34+(skill('Battle Orders'.blvl)+skill('Battle Command'.blvl))*par8 skill_armor_percent ln12 barbarian_shout_1 25 shout 1 8 none SC SC SC 1 1 6 30 Howl 1 8 6 0 1 100 % AC bonus for friendlies 10 % AC bonus per level 1500 duration 250 duration/level 125 duration synergy 1 8 384 3000
Stun 139 bar stun 32 2 barbarian_grunt_small_1 1 1 0 h2h mele A1 A1 xx 1 1 1 1 1 12 30 Bash 1 1 8 2 0 1 skill('Bash'.blvl)*par8 30 Frames the target is stunned 5 additional frames/level 5 stun synergy 5 to hit synergy 8 damage synergy 1 10+lvl*5+skill('Concentrate'.blvl)*par7 96 8 128 stun 30 5 5 2 skill('War Cry'.blvl)*par6 512 8000
Double Throw 140 bar double throw 74 11 42 1 5 rng 3 thro thro SQ A1 xx 15 1 1 1 12 30 Double Swing 1 6 1 8 1 0 1 skill('Double Swing'.blvl)*par8 damage% 0 ? 0 ? 8 damage synergy 1 20 10 8 128 512 8000
Increased Stamina 141 bar increased stamina increasedstamina skill_passive_staminapercent ln12 1 0 none SC SC xx 1 1 12 30 0 8 0 0 1 1 30 % stamina increase 15 % stamina increase per level 1 8 512 8000
Find Item 142 bar find item 34 72 1 barbarian_findobject_1 barbarian_findheart_1 28 40 1 0 h2h SC SC xx 1 1 5 1 1 12 30 Find Potion 1 8 7 0 1 dm12 chance 5 min chance to find heart 60 max chance to find heart 30 % chance high quality 5 % chance magic item 1 8 512 8000
Leap Attack 143 bar leap attack 41 78 bash 1 barbarian_leapattack_1 30 44 1 6 none mele SQ A1 xx 14 1 1 1 18 30 Leap 1 1 8 9 0 1 ln34+skill('Leap'.blvl)*par8 4 min distance 30 max distance 100 Min % damage bonus 30 % damage bonus 4 Knockback range 2 knockback range per level 10 damage synergy 1 50 15 8 128 640 16000
Concentrate 144 bar concentrate 32 2 doubledamage1 concentrate skill_armor_percent ln34 barbarian_grunt_small_1 1 1 0 h2h mele A1 A1 xx 1 1 1 1 1 18 30 Stun 1 1 8 2 0 ln12+skill('Bash'.blvl)*par8+skill('Battle Orders'.blvl)*par7 damage% post dmg add attack rate bonus skill('Berserk'.blvl) convert% 70 Damage % base 5 Damage % per level 100 % AC bonus 10 % AC bonus per level 10 damage synergy 5 damage synergy 1 60 10 8 128 mag 640 16000
Iron Skin 145 bar iron skin ironskin skill_armor_percent ln12+skill('Shout'.blvl)*par8 1 0 none SC SC xx 1 1 18 30 0 8 0 0 1 1 ln12+skill('Shout'.blvl)*par8 30 % AC bonus 10 % AC bonus per level 3 defense synergy 1 8 640 16000
Battle Cry 146 bar battle cry 68 battlecry 98304 battlecry ln12 skill_armor_percent ln34 damagepercent ln56 barbarian_battlecry_1 25 battlecry 1 9 none SC SC xx 1 1 18 30 Taunt 1 8 5 0 1 300 duration 60 duration/level -50 % AC bonus -2 % AC bonus per level -25 $ damage bonus -1 % damage bonus per level 1 8 640 16000
Frenzy 147 bar frenzy 9 frenzy par7 velocitypercent dm34 attackrate dm56 1 39 1 3 h2h 3 mele mele SQ A1 xx 11 1 1 1 1 1 24 30 Double Throw 1 1 7 3 0 ln12+(skill('Double Swing'.blvl) + skill('Taunt'.blvl))*par8 damage% skill('Berserk'.blvl) convert% 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 150 duration 8 damage synergy 1 100 7 8 128 mag 768 32000
Increased Speed 148 bar increased speed increasedspeed velocitypercent dm12 1 0 none SC SC xx 1 1 24 30 Increased Stamina 0 8 0 0 1 1 7 min % speed increase 50 max % speed increase 1 8 768 32000
Battle Orders 149 bar battle orders 68 battleorders battleorders battleorders ln12+(skill('Shout'.blvl)+skill('Battle Command'.blvl))*par8 item_maxmana_percent ln34 item_maxhp_percent ln34 skill_staminapercent ln34 barbarian_battleorders_1 25 battleorders 1 9 none SC SC xx 1 1 24 30 Shout 1 8 7 0 1 1500 duration 250 duration/level 35 Base % increase 3 Increase per level 125 duration synergy 1 50 10 8 768 32000
Grim Ward 150 bar grim ward 33 75 grimwardmediumstart grimwardsmallstart grimwardlargestart 2 terror par6 ln12 barbarian_grimward_1 26 41 grimwardmediumstart grimwardsmallstart grimwardlargestart 1 0 h2h SC SC xx 1 1 6 1 1 24 30 Find Item 1 8 4 0 1 ln34 ward duration 3 radius 1 radius/level 1000 duration 0 duration/level 10 Distance to run 60 Monster scare duration 1 8 768 32000
Whirlwind 151 bar whirlwind 38 76 whirlwind 1 barbarian_whirlwind 31 45 1 3 none 2 mele SQ A1 xx 10 1 1 1 1 30 30 Leap Attack Concentrate 1 1 7 50 1 ln12+(skill('Concentrate'.blvl))*par8 damage% -50 Damage percent per attack 8 Damage percent per level 1 Attacks per tick 8 damage synergy 1 5 8 128 896 64000
Berserk 152 bar berserk 39 2 berserk "par4-min(((110*lvl)/(lvl+6)*(par4-par3)/100),(par4-par3))" damageresist par5 armor_override_percent -100 barbarian_grunt_large_1 1 1 4 h2h mele A1 A1 xx 1 1 1 1 1 30 30 Concentrate 1 1 8 4 0 1 ln12+(skill('Howl'.blvl) + skill('Shout'.blvl))*par8 damage% "par4-min(((110*lvl)/(lvl+6)*(par4-par3)/100),(par4-par3))" duration 100 convert% 150 Damage % base 15 Damage % per level 25 min vulnerable duration 75 max vulerable duration 0 damage resist bonus 10 damage synergy 1 100 15 8 128 mag 896 64000
Natural Resistance 153 bar natural resistance naturalresistance fireresist dm12 lightresist dm12 coldresist dm12 poisonresist dm12 1 0 none SC SC xx 1 1 30 30 Iron Skin 0 8 0 0 1 1 0 min % resistance bonus 80 max % resistance bonus 1 8 896 64000
War Cry 154 bar war cry 68 warcry barbarian_warcry_1 warcry 25 warcry 1 9 none SC SC xx 1 1 30 30 Battle Cry Battle Orders 1 8 10 1 1 25 stun length 5 stun length per level 6 damage synergy 1 8 20 6 7 8 9 10 30 6 7 8 9 10 (skill('Howl'.blvl)+skill('Taunt'.blvl)+skill('Battle Cry'.blvl))*par8 896 64000
Battle Command 155 bar battle command 68 battlecommand battlecommand battlecommand ln12+(skill('Shout'.blvl)+skill('Battle Orders'.blvl))*par8 item_allskills 1 barbarian_command_1 25 battlecommand 1 9 none SC SC xx 1 1 30 30 Battle Orders 1 8 11 0 1 1500 duration 250 duration/level 125 duration synergy 1 8 896 64000
Fire Hit 156 42 83 1 0 none SQ SQ xx 1 1 1 1 base damage 5 extra per level 50 duration 50 duration/level 1 20 10 8 0
UnHolyBolt 157 85 unholybolt1 unholybolt1 1 0 none SQ SQ xx 1 1 1 8 0
SkeletonRaise 158 1 0 none SQ SQ xx 1 1 1 1 1 1 8 0
MaggotEgg 159 43 84 sandmaggotegg_hatch_1 46 1 0 none SQ SQ xx 1 1 "(lvl < 5) ? lvl : min(12,5+(lvl-5)/3)" # to spawn 1 8 0
ShamanFire 160 85 shafire1 shafire1 1 0 none SQ SQ xx 1 1 1 8 0
MagottUp 161 44 sandmaggot_emerge 32 dirt pile sand pile 1 0 none SQ SQ xx 1 1 1 8 0
MagottDown 162 45 86 sandmaggot_burrow 33 47 1 0 none SQ SQ xx 1 1 10 heal% 1 8 0
MagottLay 163 87 1 0 none SQ SQ xx 1 1 1 8 0
AndrialSpray 164 46 88 andarielspray 34 48 andarielspray 1 0 none SQ SQ xx 1 1 1 8 0
Jump 165 47 89 1 0 none SQ SQ xx 1 1 10 damage% 1 15 5 8 0
Swarm Move 166 48 90 35 49 1 0 none SQ SQ xx 1 1 11 do frame 19 stop frame 1 8 0
Nest 167 49 91 36 50 1 0 none SQ SQ xx 1 1 1 8 0
Quick Strike 168 50 92 raven1 1 0 none SQ SQ xx 1 1 1 1 8 0
VampireFireball 169 vampirefireball vampirefireball 1 0 none SQ SQ SC 1 1 1 8 0
VampireFirewall 170 24 vampirefirewallmaker vampirefirewall 26 vampirefirewallmaker 1 0 none SQ SQ SC 1 1 1 0
VampireMeteor 171 28 vampiremeteorcenter ln12 sorceress_meteor fire_cast_2 28 vampiremeteorcenter 1 0 none SQ SQ SC 1 1 ln12 5 radius of explosion 1 radius/level 30 Frames of fire 15 Frames of fire per level 1 8 fire 5 5 5 5 5 5 10 5 5 5 5 5 0
GargoyleTrap 172 93 shafire3 51 shafire3 1 0 none SQ SQ xx 18 1 1 1 8 0
SpiderLay 173 23 spiderlay slowed 300 velocitypercent -100 1 0 none SQ SQ A2 1 1 20 frames to apply aura to target 30 Slow Duration/Level 75 Duration/Level 1 8 0
VampireHeal 174 1 0 none SQ SQ SC 1 1 1 8 0
VampireRaise 175 1 0 none SQ SQ SC 1 1 1 1 1 1 1 8 0
Submerge 176 51 94 37 52 1 0 none SQ SQ xx 1 1 1 8 0
FetishAura 177 111 ln12 necromancer_curse_1 53 curseeffectred 3 density 1 0 none SQ SQ SC 1 1 10 Base stat mod 50 Duration/Level 5 Stat Mod/Level 10 Base Range ( + 2/Lvl ) 1 8 0
FetishInferno 178 53 95 fetishinferno1 54 fetishinferno1 fetishinferno2 1 0 none SQ SQ A1 1 1 par1 length of fire 3 density 15 frame length 1 8 0
ZakarumHeal 179 96 receiving receiving healing 1 0 none SQ SQ S1 1 1 15+5*lvl min heal% 50 max heal % 15 ? 30 ? 5 ? 0 ? 1 8 0
Emerge 180 52 38 1 0 none SQ SQ S1 1 1 1 8 0
Resurrect 181 97 fallenshaman_resurrect_cast healing 39 1 0 none SQ SQ xx 1 1 1 1 1 1 1 1 8 0
Bestow 182 96 receiving 1 0 none SQ SQ xx 1 1 1 1 8 0
MissileSkill1 183 110 66 1 0 none SQ SQ S1 1 1 1 8 0
MonTeleport 184 98 sorceress_teleport teleport 1 0 none SQ SQ S1 1 1 1 8 0
PrimeLightning 185 monsterlight mephisto_lightning_cast monsterlight 1 0 none SQ SQ A2 1 1 1 8 0
PrimeBolt 186 17 chargedstrikebolt mephisto_chargedbolt_cast 23 chargedbolt 1 0 none SQ SQ A1 1 1 lvl+2 #bolts 1 8 0
PrimeBlaze 187 23 blaze blaze dm12 monster_cast_fire blaze 1 0 none SQ SQ A1 1 1 0 ? 60 duration/level 0 ? 0 ? 1 8 0
PrimeFirewall 188 24 vampirefirewallmaker vampirefirewall monster_cast_fire 26 vampirefirewallmaker 1 0 none SQ SQ A1 1 1 0 ? 0 ? 0 ? 0 ? 1 8 0
PrimeSpike 189 monglacialspike ln12 ln34 monster_cast_cold monglacialspike 1 0 none SQ SQ A1 1 1 4 radius 0 radius per level 25 freeze frames 10 freeze frames per level 1 8 0
PrimeIceNova 190 22 frostnova monster_cast_cold 25 frostnova 1 0 none SQ SQ A1 1 1 0 ? 0 ? 0 ? 0 ? 1 8 0
PrimePoisonball 191 8 poisonball mephisto_orb_cast 17 poisonball 1 0 none SQ SQ A1 1 1 3 #missiles 1 activate frame 0 ? 0 ? 0 ? 0 ? 1 8 0
PrimePoisonNova 192 99 primepoisoncloud 55 primepoisoncloud 1 0 none SQ SQ A1 1 1 lvl-1 #subloops 2 skip 0 ? 0 ? 0 ? 0 ? 1 8 0
DiabLight 193 53 152 diablight diablo_laser_cast 40 56 diablight 0 interval 1 0 none SQ SQ SC 1 1 1 par1 length of fire 2 density 40 frame length 0 ? 0 ? 0 ? 1 8 0
DiabCold 194 100 diablo_cold_cast 1 0 none SQ SQ S2 1 1 1 0 ? 200 Frames 0 ? 0 ? 1 8 mag 15 9 9 9 9 9 25 12 12 12 12 12 100 50 50 50 0
DiabFire 195 22 diabfire diablo_fire_cast 25 diabfire 1 0 none SQ SQ S1 1 1 1 0 ? 0 ? 0 ? 0 ? 1 8 0
FingerMageSpider 196 101 fingermagespider fingermagecurse ln12 manarecovery -par3 * lvl fingermage_bolt_cast_1 57 fingermagespider 1 0 none SQ SQ S1 1 1 lvl-1 #subloops 30 base frames 10 frames per level 24 unshifted damage per frame 0 ? 1 8 0
DiabWall 197 102 diabwallmaker diablo_fire_cast 58 diabwallmaker 1 0 none SQ SQ S1 1 1 1 lvl #missiles 0 ? 0 ? 0 ? 0 ? 1 8 0
DiabRun 198 54 103 diablo_run 41 59 1 0 none SQ SQ xx 22 1 1 1 20 velocity 8 stop anim len 14 stop anim frame 5 start frame 13 repeat on frame 16 repeat len 6 repeat back frame 1 5 8 17 9 9 9 9 9 33 9 9 9 9 9 0
DiabPrison 199 104 boneprison1 none diablo_boneprison_rise 1 0 none SQ SQ S3 1 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
PoisonBallTrap 200 trap poison ball left trap poison ball left 1 0 none SC SC S1 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 10 10 10 10 10 10 20 10 10 10 10 10 0
AndyPoisonBolt 201 andypoisonbolt andypoisonbolt 1 0 none SQ SQ A1 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
HireableMissile 202 110 66 1 0 none SQ SQ A1 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
DesertTurret 203 105 desertfireball 60 desertfireball 1 0 none SQ SQ xx 26 1 1 3 #missiles 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
ArcaneTower 204 106 lightningtowernova lightningorb_attack_1 61 lightningtowernova 1 0 none SQ SQ xx 27 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
MonBlizzard 205 28 monblizcenter monster_cast_cold ice_cast_2 28 monblizcenter 1 3 none SQ SQ S1 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
Mosquito 206 55 107 42 62 1 0 none SQ SQ xx 34 1 1 4 min loops 7 max loops 25 heal pct 12 reset loop frame 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 2 2 2 2 2 2 4 2 2 2 2 2 2 3 3 3 3 3 4 3 3 3 3 3 200 0
CursedBallTrapRight 207 trap cursed skull right trap cursed skull right 1 0 none SC SC S2 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 10 5 5 5 5 5 20 5 5 5 5 5 0
CursedBallTrapLeft 208 trap cursed skull left trap cursed skull left 1 0 none SC SC S2 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 10 5 5 5 5 5 20 5 5 5 5 5 0
MonFrozenArmor 209 18 frozenarmor ln34 skill_armor_percent ln12 monster_cast_cold sorceress_frozenarmor ice_cast_3 1 0 none SQ SQ SC 1 1 30 % AC base 5 % AC per level 3600 Duration 300 Duration per level 30 Freeze Frames 3 Freeze Frames per level 1 8 1 0
MonBoneArmor 210 18 bonearmor bonearmor ln12*256 bonearmormax ln12*256 necromancer_bonearmor 1 0 none SQ SQ S1 1 1 20 damage absorbed 10 additional absorbed/level 0 ? 0 ? 0 ? 0 ? 1 8 0
MonBoneSpirit 211 10 monbonespirit monbonespirit monster_cast_fire 18 monbonespirit monbonespirit 1 0 none SQ SQ S1 1 1 15 Search range 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
MonCurseCast 212 112 ln34 ln12 18 30 curseeffectred cursecast 1 5 none SQ SQ S2 1 1 3 radius 1 radius per level 300 duration 60 additional duration/level 25 min % resist lower 70 max % resist lower -50 speed 1 8 0
HellMeteor 213 28 hellmeteordown 44 1 4 none SQ SQ A1 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
RegurgitatorEat 214 108 regurgitator_eat_1 63 corpseexplosion bigblood1 1 2 none SQ SQ S1 1 1 1 1 33 heal% of target hp 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
MonFrenzy 215 64 109 monfrenzy ln12 velocitypercent dm34 attackrate dm34 other_animrate dm34 1 3 none SQ SQ A2 1 1 1 1 1 200 duration 25 duration/level 30 min % speed increase 110 max % speed increase 0 ? 0 ? 1 10 10 8 128 0
QueenDeath 216 64 1 0 none SQ SQ xx 41 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
Scroll of Identify 217 scroll of identify 113 0 none SC SC xx 1 1 5 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
Book of Identify 218 book of identify 113 0 none SC SC xx 1 1 5 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
Scroll of Townportal 219 scroll of townportal 113 0 none SC SC xx 1 1 5 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
Book of Townportal 220 book of townportal 113 0 none SC SC xx 1 1 5 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
Raven 221 dru raven 114 druidhawk raven "min(lvl,par2)" S1 druid_summon 1 0 none SC SC xx 1 4 1 1 30 1 1 8 6 1 1 1 0 hp adj ulvl + par1 + lvl raven lvl -2 monster level = your level + this + SkillLevel 5 Max ravens 0 ? 0 ? 12 Attacks 1 Attacks per level 1 100 15 8 2 1 2 3 4 5 4 2 4 6 8 10 256 1000
Plague Poppy 222 dru plague poppy 115 vine_beast plaguepoppy vine 1 S1 Vine Attack lvl druid_summon 1 0 none SC SC xx 1 4 1 1 30 1 1 8 8 0 1 1 par3 * (lvl-1) hp % ulvl * 3 / 4 + lvl vine lvl 3 Number of vines 1 vines per level 25 % more hitpoints per level 0 ? 0 ? 0 ? 1 pois 12 7 12 15 17 19 16 7 12 15 17 19 100 256 1000
Wearwolf 223 dru wearwolf 116 wolf 1000+skill('Shape Shifting'.ln12) skill_staminapercent par1 attackrate dm34 item_tohit_percent toht item_maxhp_percent par2+skill('Shape Shifting'.ln34) wolf_into wolf_undo 45 1 0 none SC SC xx 22 1 1 1 30 1 25 1 1 8 15 0 1 25 % stamina increase 25 % hitpoints increase 10 % min speed increase 80 % max speed increase 0 ? 0 ? 1 50 15 8 128 256 1000
Shape Shifting 224 dru shape shifting 1 0 none SC SC xx 1 1 1 30 Wearwolf 0 8 0 0 1 1 2000 Base duration of all forms 500 Bonus duration per level 20 % base hitpoint bonus 5 % hitpoints per level 0 ? 0 ? 1 8 256 1000
Firestorm 225 dru firestorm 117 firestormmaker druid_firecast_b druid_fire_cast_1 67 firestormmaker 1 0 none SC SC xx 1 1 druid_firecast_b druid_fire_cast_1 1 30 1 15 1 1 8 4 0 1 ln12 # missiles 3 Number of missiles 0 Number of missiles per level 0 ? 0 ? 0 ? 0 ? 23 damage synergy 1 2 fire 3 3 5 7 14 21 6 3 6 8 15 23 (skill('Molten Boulder'.blvl)+skill('Eruption'.blvl))*par8 256 1000
Oak Sage 226 dru oak sage 119 poisonresist 100 maxpoisonresist 100 oaksage totem 1 NU Oak Sage Aura lvl druid_summon 1 0 none SC SC xx 1 4 1 6 30 1 1 8 15 1 1 1 (lvl-1)*par1 hp adj ulvl totem lvl 30 % hitpoints more per level 5 % hitpoint bonus per level 250 duration of aura 0 ? 0 ? 0 ? 30 radius 2 radius/lvl 1 8 384 3000
Summon Spirit Wolf 227 dru summon spirit wolf 119 fireresist "min(ln78,85)" coldresist "min(ln78,85)" lightresist "min(ln78,85)" poisonresist "min(ln78,85)" item_armor_percent (par4 * lvl) + ln56 tohit ln12 damagepercent skill('Summon Grizzly'.ln12) spiritwolf spiritwolf "min(lvl,par3)" S1 druid_summon 1 0 none SC SC xx 1 4 1 6 30 Raven 1 1 8 15 0 1 1 skill('Summon Fenris'.ln12) hp % ulvl pet lvl 50 % feral add to attack 25 % feral attack per level 5 max wolves 7 defense points per level 50 % defense bonus 10 % defense bonus per level 0 resist 5 resist/lvl 1 75 20 8 2 1 2 4 5 8 6 1 2 4 5 8 384 3000
Wearbear 228 dru wearbear 116 bear 1000+skill('Shape Shifting'.ln12) damagepercent ln12 skill_armor_percent ln34 item_maxhp_percent par5 + skill('Shape Shifting'.ln34) bear_into bear_undo 45 1 0 none SC SC xx 22 1 1 6 30 1 25 1 1 8 15 0 1 50 % Base bonus damage 7 % bonus damage per level 25 % increase armorclass 5 % armor class per level 50 % Base bonus hitpoints 5 damage synergy 1 8 128 384 3000
Molten Boulder 229 dru molten boulder moltenboulderemerge par1 druid_firecast_b druid_fire_cast_1 moltenboulderemerge 1 0 none SC SC xx 1 1 druid_firecast_b druid_fire_cast_1 6 30 Firestorm 1 50 1 1 7 20 1 1 7 Explosion Radius 10 phys damage synergy 8 fire damage synergy 1 8 6 4 7 10 13 16 12 5 8 11 14 17 skill('Volcano'.blvl)*par7 fire 6 4 7 10 13 16 12 5 8 11 14 17 skill('Firestorm'.blvl)*par8 384 3000
Arctic Blast 230 dru arctic blast 11 19 arcticblast1 ln12/4-2 arctic_blast_cast druid_windcast 15 24 arcticblast1 arcticblast2 1 0 none SQ SQ xx 18 10 1 6 30 1 1 1 6 0 2 24 1 1 ln12/2 range 20 frames if monster 35 base ranged (doubled) 2 level range (doubled) 4 Min Mana to start casting 15 damage synergy 1 2 cold 21 16 18 20 24 29 40 16 19 21 25 31 (skill('Cyclone Armor'.blvl)+skill('Hurricane'.blvl))*par8 100 15 15 15 384 3000
Cycle of Life 231 dru cycle of life 115 vine_beast cycleoflife vine 1 S1 Vine Attack lvl CorpseCycler lvl druid_summon 1 0 none SC SC xx 1 4 1 12 30 Plague Poppy 1 1 8 10 0 1 1 par3 * (lvl-1) hp % ulvl * 3 / 4 + lvl vine lvl 10 Radius 0 Life steal moved --> 25 % more hitpoints per level 0 ? 3 min % life steal 12 max % life steal 1 8 512 3000
Feral Rage 232 dru feral rage 56 120 feralrage par1 velocitypercent dm34 lifedrainmindam par2 * lvl lifedrainmaxdam par2 * lvl 1 0 h2h A1 A1 xx 1 1 1 1 1 12 30 Wearwolf 2 wolf 1 1 8 3 0 1 ln56 dmg% lvl/par7 + par8 500 duration 4 % life steal per hit 10 Min Speed boost 70 Max Speed boost 50 % damage increase 5 % damage increase per level 2 Levels per charge 3 Min charge 1 20 10 8 128 512 3000
Maul 233 dru maul 56 120 maul par4 damagepercent lvl*par3 stunlength dm56 1 0 h2h A1 A1 xx 1 1 1 1 1 12 30 Wearbear 2 bear 1 1 8 3 0 1 0 dmg% lvl/par7 + par8 20 damage per charge 500 duration 10 min stun duration 100 max stun duration 2 Levels per charge 3 Min charge 1 20 10 8 128 512 3000
Eruption 234 dru eruption 28 erruption center druid_firecast_a druid_fire_cast_2 28 erruption center 1 0 none SC SC xx 1 4 1 1 druid_firecast_a druid_fire_cast_2 12 30 Molten Boulder 1 50 1 8 15 0 1 par1 radius par2 frequency 7 radius 6 Missile delay 0 Change duration in Missiles.xls 12 damage synergy 1 8 fire 15 6 12 16 18 22 25 6 12 16 19 23 (skill('Firestorm'.blvl)+skill('Volcano'.blvl))*par8 512 8000
Cyclone Armor 235 dru cyclone armor 18 cyclonearmor bonearmor (ln12*(100+(skill('Twister'.blvl)+skill('Tornado'.blvl)+skill('Hurricane'.blvl))*par8)/100)*256 bonearmormax (ln12*(100+(skill('Twister'.blvl)+skill('Tornado'.blvl)+skill('Hurricane'.blvl))*par8)/100)*256 absorbdamage 25 druid_cyclonearmor 1 0 none SC SC xx 1 1 12 30 Arctic Blast 1 1 8 5 1 1 1 40 damage absorbed 12 additional absorbed/level 7 absorb synergy 1 8 512 8000
Heart of Wolverine 236 dru heart of wolverine 119 poisonresist 100 maxpoisonresist 100 heartofwolverine totem 1 NU Wolverine Aura lvl druid_summon 1 0 none SC SC xx 1 4 1 18 30 Oak Sage 1 1 8 20 1 1 1 (lvl-1)*par1 hp adj ulvl totem lvl 25 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 30 radius 2 radius/lvl 1 8 640 8000
Summon Fenris 237 dru summon fenris 119 fireresist "min(ln78,85)" coldresist "min(ln78,85)" lightresist "min(ln78,85)" poisonresist "min(ln78,85)" item_armor_percent (par6 * lvl) + skill('Summon Spirit Wolf'.ln56) tohit skill('Summon Spirit Wolf'.ln12) damagepercent skill('Summon Grizzly'.ln12) fenris fenris "min(lvl,par3)" S1 druid_summon 1 0 none SC SC xx 1 4 1 18 30 Oak Sage Summon Spirit Wolf 1 1 8 20 0 1 1 ln12 hp% ulvl pet lvl 50 % feral hitpoints 25 % feral hitpoints per level 3 max fenri 500 rage duration - see fenris rage 100 % damage with rage - see fenris rage 4 defense points per level 0 resist 5 resist/lvl 1 150 20 8 7 2 3 6 8 11 12 2 3 6 9 13 640 8000
Rabies 238 dru rabies 57 121 rabiesplague rabies 1 0 h2h S3 S3 S3 1 1 1 1 1 18 30 Feral Rage 2 wolf 1 1 8 10 0 1 18 damage synergy 1 50 7 1 2 3 pois 6 4 5 7 11 16 14 4 5 7 11 16 (skill('Plague Poppy'.blvl))*par8 100 10 10 10 640 16000
Fire Claws 239 dru fire claws 58 2 fire_hit 1 0 h2h A1 A1 xx 1 1 1 1 1 18 30 Feral Rage Maul 2 wolf bear 1 1 8 4 0 1 0 dmg% 22 damage synergy 1 50 15 8 128 fire 15 8 12 20 24 30 20 8 12 22 26 34 (skill('Firestorm'.blvl)+skill('Molten Boulder'.blvl)+skill('Volcano'.blvl)+skill('Eruption'.blvl))*par8 640 16000
Twister 240 dru twister 118 twister druid_windcast 68 twister 1 0 none SC SC xx 1 1 18 30 Cyclone Armor 1 1 1 8 7 0 1 par1 # missiles 3 Number of twisters 10 Frames the target is stunned 10 damage synergy 1 7 12 4 7 10 13 16 16 4 7 11 14 17 (skill('Tornado'.blvl)+skill('Hurricane'.blvl))*par8 640 16000
Vines 241 dru vines 115 vine_beast vinecreature vine 1 S1 Vine Attack lvl VineCycler lvl druid_summon 1 0 none SC SC xx 1 4 1 24 30 Cycle of Life 1 1 8 14 1 1 1 par3 * (lvl-1) hp % ulvl * 3 / 4 + lvl vine lvl 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 1 8 768 16000
Hunger 242 dru hunger 122 1 0 h2h S3 S3 S3 1 1 1 1 1 24 30 Fire Claws 2 wolf bear 1 1 8 3 0 1 par5 dmg% dm12 lifesteal dm34 manasteal 50 min % life steal 200 max % life steal 50 min % mana steal 200 max % mana steal -75 % damage penalty 1 50 10 8 128 768 32000
Shock Wave 243 dru shock wave 8 shockwave shockwave 17 shockwave shockwave 1 0 none SC SC xx 1 1 24 30 Maul 2 bear 1 1 8 7 0 1 5 # missiles 40 stun length 15 stun length per level 1 8 10 3 5 7 7 7 20 3 5 7 7 7 768 32000
Volcano 244 dru volcano 123 volcano par1 druid_firecast_a druid_fire_cast_2 91 volcano overlay fire volcano 1 0 none SC SC xx 1 4 1 1 sorceress_cast_fire druid_fire_cast_2 24 30 Eruption 1 100 1 8 25 0 1 par2 damage delay 12 debris range 2 delay between debris 12 damage synergy 12 fire damage synergy 1 8 8 2 4 6 8 10 10 2 4 6 8 10 skill('Molten Boulder'.blvl)*par7 fire 8 2 4 6 8 11 10 2 4 6 8 13 (skill('Eruption'.blvl)+skill('Armageddon'.blvl))*par8 768 32000
Tornado 245 dru tornado 118 tornado 42371 par2 druid_windcast 69 tornado 1 0 none SC SC xx 1 4 1 24 30 Twister 1 1 1 8 10 0 1 1 # missiles par1 damage delay 15 Frame delay between damage 3 Radius of damage 9 damage synergy 1 8 25 8 14 20 24 28 35 8 15 21 25 29 (skill('Cyclone Armor'.blvl)+skill('Twister'.blvl)+skill('Hurricane'.blvl))*par8 768 32000
Spirit of Barbs 246 dru spirit of barbs 119 poisonresist 100 maxpoisonresist 100 spiritofbarbs totem 1 NU Barbs Aura lvl druid_summon 1 0 none SC SC xx 1 4 1 30 30 Heart of Wolverine 1 1 8 25 1 1 1 (lvl-1)*par1 hp adj ulvl totem lvl 25 % hitpoints more per level 0 Bonus Level 50 % thorns damage back 20 % thorns damage back per level 30 radius 2 radius/lvl 1 8 896 64000
Summon Grizzly 247 dru summon grizzly 119 fireresist "min(ln78,85)" coldresist "min(ln78,85)" lightresist "min(ln78,85)" poisonresist "min(ln78,85)" damagepercent ln12 tohit skill('Summon Spirit Wolf'.ln12) item_armor_percent skill('Summon Spirit Wolf'.ln56) druidbear grizzly 1 S1 druid_summon 1 0 none SC SC xx 1 4 1 30 30 Summon Fenris 1 1 8 40 0 1 1 skill('Summon Fenris'.ln12) hp % ulvl pet lvl 25 % feral add to damage 10 % feral damage per level 0 resist 5 resist/lvl 1 300 20 8 30 10 15 20 26 30 60 10 15 20 26 30 896 64000
Fury 248 dru fury 37 13 53 21 1 0 h2h A1 A1 A1 1 1 1 1 30 30 Rabies 2 wolf 1 1 8 4 0 1 "min((par5 + lvl -1), par6)" max targets ln34 damage % 100 % frame rollback 100 % damage percent 17 damage % per level 2 Targets 5 Max targets 1 50 7 8 128 896 64000
Armageddon 249 dru armageddon 124 armageddoncontrol armageddoncontrol armageddoncontrol armageddon ln12 + skill('Eruption'.blvl) * par7 par3 druid_firecast_a druid_fire_cast_2 92 armageddontail armageddonrock 25 frames 25 fall rate 15 slide rate 1 0 none SC SC xx 1 4 1 30 30 Volcano Hurricane 1 150 1 8 35 0 1 250 base duration 0 duration per level 8 radius to drop meteors 8 frame delay between rocks 50 duration synergy 14 damage synergy 1 8 4 4 6 8 10 12 16 4 7 9 12 14 fire 25 15 20 25 31 38 75 16 22 27 34 40 (skill('Firestorm'.blvl)+skill('Molten Boulder'.blvl)+skill('Volcano'.blvl))*par8 896 64000
Hurricane 250 dru hurricane 124 42883 hurricane ln12 + skill('Cyclone Armor'.blvl) * par7 par3 druid_windcast druid_hurricane hurricaneswoosh hurricanerock hurricanetree 3 debris/frame 75 height 1 0 none SC SC xx 1 1 30 30 Tornado 1 150 1 8 30 0 1 250 base duration 0 duration per level 9 radius 20 frames per hit search 50 duration synergy 9 damage synergy 1 1 2 8 cold 25 7 10 12 14 16 50 7 10 12 14 16 (skill('Twister'.blvl)+skill('Tornado'.blvl))*par8 50 896 64000
Fire Trauma 251 ass fire trauma bomb in air 1 par1 weapon_throw_1 bomb in air 1 0 rng S2 S2 S2 1 1 1 30 1 1 5 24 1 1 5 radius 9 damage synergy 1 7 fire 6 3 8 20 38 58 8 5 11 24 44 66 (skill('Shock Field'.blvl) + skill('Death Sentry'.blvl) + skill('Charged Bolt Sentry'.blvl) + skill('Lightning Sentry'.blvl) + skill('Wake of Fire Sentry'.blvl) + skill('Inferno Sentry'.blvl)) * par8 5 256 1000
Claw Mastery 252 ass claw mastery clawmastery h2h passive_mastery_melee_th ln12 passive_mastery_melee_dmg ln34 passive_mastery_melee_crit dm56 1 0 none h2h SC SC SC 1 1 1 30 0 8 0 0 1 1 30 Attack rating bonus percent 10 Percent attack rating per level 35 % damage percent 6 damage % per level 0 critical% 25 critical% 1 8 10 256 1000
Psychic Hammer 253 ass psychic hammer 22 33 1 assassin_psychichammer psychic_hammer_hit paladin_holybolt_impact_1 psychic_hammer_curse 5 3 1 0 rng SC SC SC 1 4 1 1 1 1 30 1 6 16 1 1 par1 knockback% vs. monster dm34 knockback% vs. unique dm56 knockback% vs. boss dm56 knockback% vs. player 100 knockback % vs. monster 50 min knockback% vs. unique 100 max knockback% vs. unique 25 min knockback% vs. boss 99 max knockback% vs. boss 1 7 2 2 3 4 5 6 6 3 4 5 6 7 mag 2 2 3 4 5 6 6 3 4 5 6 7 5 256 1000
Tiger Strike 254 ass tiger strike 23 34 1 progressive_damage par3 progressive_damage progressive_tohit par4 assassinfootimpact tigerstrike1 assassin_chargeup_tiger_1 12 12 12 1 0 h2h mele A1 A1 A2 1 1 1 1 1 1 30 1 1 8 1 0 1 1 ln12 progressive damage 100 % Damage bonus 20 % damage per level 225 duration 50 tohit bonus for each charge-up 1 15 7 8 128 4 256 1000
Dragon Talon 255 ass dragon talon 24 42 assassin_kick_1 6 4 1 0 h2h 4 KK KK A1 19 1 1 1 1 1 30 1 1 8 6 0 1 1 lvl/6+1 number of kicks dm34 knockback% vs. unique dm56 knockback% vs. boss dm56 knockback% vs. player 5 Percent damage 7 percent damage per level 50 min knockback% vs. unique 100 max knockback% vs. unique 25 min knockback% vs. boss 99 max knockback% vs. boss 1 20 25 1 8 4 256 1000
Shock Field 256 ass shock field 43 par1+lvl/par2+skill('Fire Trauma'.blvl)/3 shock field in air (par1+lvl/par2+skill('Fire Trauma'.blvl)/3)/4+1 weapon_throw_1 5 shock field in air 1 0 rng S2 S2 S2 1 1 6 30 Fire Trauma 15 1 1 8 6 0 1 6 Number of missiles 4 Levels per missile 11 damage synergy 1 7 ltng 2 0 0 0 0 0 20 6 12 20 30 42 (skill('Charged Bolt Sentry'.blvl) + skill('Lightning Sentry'.blvl) + skill('Death Sentry'.blvl)) * par8 11 384 3000
Blade Sentinel 257 ass blade sentinel 44 blade creeper tohit lvl*5 bladecreeper assassintrap 5 S1 Blade Sentinel lvl assassin_summon 1 0 rng S2 S2 S2 1 1 6 30 50 1 1 8 7 0 1 ln12 duration 100 duration 12 duration per level 5 Total number assassin traps 3 Total number pet traps 5 damage synergy 1 8 48 6 3 4 5 5 5 10 3 4 5 5 5 (skill('Blade Fury'.blvl)+skill('Blade Shield'.blvl))*par8 5 3 384 3000
Quickness 258 ass quickness 18 quickness ln56 velocitypercent dm12 attackrate dm34 assassin_quickness 1 0 none SC SC SC 1 1 6 30 Claw Mastery 1 8 10 0 1 1 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 1 8 1 384 3000
Fists of Fire 259 ass fists of fire 23 35 1 143 38 39 par1 par2 4 fistsoffirefirewall progressive_fire par3 progressive_fire progressive_tohit par4 9 9 fistsoffireexplode fistsoffirefirewall 1 0 h2h 3 h2h SQ A1 xx 16 1 1 1 1 1 6 30 1 1 8 2 0 1 1 lvl*3 convert to fire% 4 Radius of explosion 4 Radius of firewall fragments 225 duration 50 tohit bonus for each charge-up 12 damage synergy 1 15 7 8 128 fire 6 5 10 20 30 40 10 5 11 22 33 44 (skill('Royal Strike'.blvl)) * par8 4 384 3000
Dragon Claw 260 ass dragon claw 25 46 assassin_kick_1 1 0 h2h 3 h2h h2h SQ A1 xx 16 1 1 1 1 1 6 30 Dragon Talon 1 1 8 2 0 1 1 ln12 damage% 50 % Damage bonus 5 % damage per level 1 40 25 8 128 4 384 3000
Charged Bolt Sentry 261 ass charged bolt sentry 45 chargeboltsentry assassintrap 5 S1 BoltSentry lvl Fire Trauma skill('Fire Trauma'.blvl) Shock Field skill('Shock Field'.blvl) Lightning Sentry skill('Lightning Sentry'.blvl) Death Sentry skill('Death Sentry'.blvl) assassin_summon 1 0 rng S2 S2 S2 1 4 1 12 30 Shock Field 1 8 13 0 1 par1 + skill('Lightning Sentry'.blvl)/4 shots fired 10 Shots fired 5 Bolts to send out 0 Bolts to send out per level 6 damage synergy 1 7 ltng 2 0 0 0 0 0 14 6 8 12 14 16 (skill('Fire Trauma'.blvl) + skill('Lightning Sentry'.blvl) + skill('Death Sentry'.blvl)) * par8 3 512 3000
Wake of Fire Sentry 262 ass wake of fire sentry 45 wakeofdestruction assassintrap 5 S1 Wake Of Destruction Sentry lvl Fire Trauma skill('Fire Trauma'.blvl) Inferno Sentry skill('Inferno Sentry'.blvl) 32 assassin_summon 1 0 rng S2 S2 S2 1 4 1 12 30 Fire Trauma 1 8 13 0 1 10 Shots fired 8 damage synergy 1 8 fire 5 2 3 5 7 9 10 2 3 6 8 10 (skill('Fire Trauma'.blvl) + skill('Inferno Sentry'.blvl)) * par8 3 512 3000
Weapon Block 263 ass weapon block weaponblock h2h passive_weaponblock dm12 1 0 rng h2h h2h SC SC SC 1 1 12 30 Claw Mastery 1 0 8 0 0 1 1 20 min block % 65 max block % 1 8 10 512 3000
Cloak of Shadows 264 ass cloak of shadows 47 57347 cloak_of_shadows cloaked ln34 dm12 skill_armor_percent "-min(ln56,95)" item_armor_percent ln78 7 1 0 none SC SC SC 1 1 12 30 Psychic Hammer 1 8 13 0 1 30 min radius of effect 30 max radius of effect 200 duration 25 Duration per level 15 percent armor decrease 3 percent decrease per level 10 percent armor bonus 3 percent armor bonus per level 1 8 2 512 8000
Cobra Strike 265 ass cobra strike 23 34 2 progressive_steal par3 progressive_steal progressive_tohit par4 cobrastrike1 assassin_chargeup_cobra_1 13 13 13 1 0 h2h mele A1 A1 A2 1 1 1 1 1 12 30 Tiger Strike 1 1 8 2 0 1 1 40 Base percent life steal 5 Percent life steal per level 225 duration 50 tohit bonus for each charge-up 1 15 7 8 128 12 512 8000
Blade Fury 266 ass blade fury 26 48 par4 bladefragment1 8 6 bladefragment2 1 0 rng SQ A1 SC 23 12 1 18 30 Blade Sentinel Wake of Fire Sentry 1 1 1 6 0 5 8 1 1 0 "Don't Use, missile range mod" 0 "Don't Use, missile range mod" 3 Min Mana to start casting 5 Frame delay between blades 5 damage synergy 1 8 96 8 3 5 8 8 8 10 3 5 8 8 8 (skill('Blade Sentinel'.blvl)+skill('Blade Shield'.blvl))*Par8 5 640 8000
Fade 267 ass fade 18 fade ln56 fireresist dm12 coldresist dm12 lightresist dm12 poisonresist dm12 curse_resistance dm34 damageresist ln78 fade 2 assassin_fade 1 0 none SC SC SC 1 1 18 30 Quickness 1 8 10 0 1 1 10 min Elemental resistance 75 max elemental resist 40 min curse length reduction 90 max curse length reduction 3000 duration 300 Duration per level 1 damage resist % 1 damage resist % per level 1 8 1 640 8000
Shadow Warrior 268 ass shadow warrior 49 shadowwarrior tohit lvl*par2 skill_armor_percent lvl*par3 strength lvl*10 dexterity lvl*10 fireresist "min(lvl*4,75)" coldresist "min(lvl*4,75)" lightresist "min(lvl*4,75)" poisonresist "min(lvl*4,75)" shadowwarrior shadowwarrior 1 NU 42 assassin_summon 1 0 none SC SC SC 1 4 1 18 30 Cloak of Shadows Weapon Block 150 1 7 54 1 1 1 15 Plus % HP per level 40 plus to hit per level 12 Plus % AC per level 0 ? 18 base item quality level 2 item quality per level 1 8 3 640 16000
Claws of Thunder 269 ass claws of thunder 23 35 1 36 37 par1 4 clawsofthundernova clawsofthunderbolt progressive_lightning par3 progressive_lightning progressive_tohit par4 10 11 clawsofthundernova clawsofthunderbolt 1 0 h2h 3 h2h SQ A1 xx 16 1 1 1 1 18 30 Fists of Fire 1 1 8 4 0 1 1 4 skip 225 duration 50 tohit bonus for each charge-up 8 damage synergy 1 15 7 8 128 ltng 1 0 0 0 0 0 80 20 40 60 80 100 (skill('Royal Strike'.blvl)) * par8 4 640 16000
Dragon Tail 270 ass dragon tail 27 50 dragontail missile par3 assassin_kick_1 9 7 dragontail missile 1 0 h2h 4 KK KK A1 1 1 1 1 18 30 Dragon Claw 1 1 8 10 0 1 1 ln12 damage% 50 Percent area damage min 10 percent area damage per level 6 Radius -40 Attack rate penalty 1 20 15 1 8 fire 4 640 16000
Lightning Sentry 271 ass lightning sentry 45 lightningsentry assassintrap 5 S1 sentry lightning lvl Shock Field skill('Shock Field'.blvl) Charged Bolt Sentry skill('Charged Bolt Sentry'.blvl) Death Sentry skill('Death Sentry'.blvl) assassin_summon 1 0 rng S2 S2 S2 1 4 1 24 30 Charged Bolt Sentry 1 8 20 0 1 10 Shots fired 12 damage synergy 1 8 ltng 1 0 0 0 0 0 20 10 16 24 34 44 (skill('Shock Field'.blvl) + skill('Charged Bolt Sentry'.blvl) + skill('Death Sentry'.blvl))*par8 3 768 16000
Inferno Sentry 272 ass inferno sentry 45 infernosentry assassintrap 5 S1 mon inferno sentry lvl Fire Trauma skill('Fire Trauma'.blvl) Wake of Fire Sentry skill('Wake of Fire Sentry'.blvl) Death Sentry skill('Death Sentry'.blvl) 32 assassin_summon 1 0 rng S2 S2 S2 1 4 1 24 30 Wake of Fire Sentry 1 8 20 0 1 10 Shots fired 10 synergy damage bonus 7 damage synergy 1 4 fire 20 17 21 26 32 39 50 19 23 28 34 41 (skill('Fire Trauma'.blvl) + skill('Death Sentry'.blvl)) * par7 + skill('Wake of Fire Sentry'.blvl)*par8 3 768 32000
Mind Blast 273 ass mind blast 51 33667 par7 assassin_psychichammer fist_will_cast 8 mindblast center mindblast hit 1 0 rng SC SC SC 1 1 1 24 30 Cloak of Shadows 1 8 15 0 1 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 4 radius 1 9 8 10 2 5 8 8 8 20 2 5 8 8 8 stun 50 5 5 5 11 768 32000
Blades of Ice 274 ass blades of ice 23 35 1 38 39 par1 par2 4 bladesoficecubes 34571 progressive_cold par3 progressive_cold progressive_tohit par4 9 9 bladesoficeexplode bladesoficecubes 1 0 h2h 3 h2h SQ A1 xx 16 1 1 1 1 1 24 30 Claws of Thunder 1 1 8 3 0 1 1 6 Second level radius 3 Third level radius 225 duration 50 tohit bonus for each charge-up 1 freeze length divisor 8 damage synergy 1 15 7 8 128 cold 15 8 10 20 30 40 35 8 10 22 32 42 (skill('Royal Strike'.blvl)) * par8 100 10 10 10 4 768 32000
Dragon Flight 275 ass dragon flight 12 52 par7 1 sorceress_teleport dragonflight 5 1 1 0 rng 4 SQ A1 xx 21 1 1 1 24 30 Dragon Tail 25 1 1 8 15 0 1 1 100 % Damage bonus 25 % damage per level 27 range 1 60 25 1 8 13 768 32000
Death Sentry 276 ass death sentry 45 deathsentry assassintrap 5 S1 mon death sentry lvl death sentry ltng lvl Fire Trauma skill('Fire Trauma'.blvl) Lightning Sentry skill('Lightning Sentry'.blvl) 32 assassin_summon 1 0 rng S2 S2 S2 1 4 1 30 30 Lightning Sentry 1 8 20 0 1 10 Shots fired 12 damage synergy 1 8 ltng 1 0 0 0 0 0 50 8 14 22 28 34 (skill('Lightning Sentry'.blvl))*par8 3 896 64000
Blade Shield 277 ass blade shield 28 54 blade shield attachment 33667 bladeshield ln12 par4 assassin_bladeshield 1 0 none SC SC SC 1 1 30 30 Blade Fury 1 8 27 2 1 1 1 par3 500 duration 125 duration per level 25 delay 6 radius to attack in 5 damage synergy 1 32 3 8 32 1 5 6 7 7 7 30 5 6 7 7 7 (skill('Blade Sentinel'.blvl)+skill('Blade Fury'.blvl))*par8 1 896 64000
Venom 278 ass venom 18 venomclaws ln12 poisonmindam enms poisonmaxdam exms skill_poison_override_length edma assassin_venom 1 0 none SC SC SC 1 1 30 30 Fade 1 8 12 0 1 1 3000 duration 100 duration per level 0 ? 0 ? 0 ? 0 ? 1 6 pois 24 6 8 10 12 14 32 6 8 10 12 14 10 1 896 64000
Shadow Master 279 ass shadow master 49 shadowwarrior tohit lvl*par2 strength lvl*10 dexterity lvl*10 fireresist dm34 coldresist dm34 lightresist dm34 poisonresist dm34 shadowmaster shadowwarrior 1 NU 42 assassin_summon 1 0 none SC SC SC 1 1 30 30 Shadow Warrior 150 1 7 70 1 1 1 15 Pluse % HP per level 40 plus to hit per level 5 Min % resist all 80 Max % resist all 24 base item quality level 3 item quality per level 1 8 3 896 64000
Royal Strike 280 ass royal strike 23 34 40 143 41 par6 par5 royalstrikemeteorcenter royalstrikechainlightning royalstrikechaosice progressive_other 225 par1 progressive_other progressive_tohit par7 14 83 15 royalstrikemeteorcenter royalstrikechainlightning royalstrikechaosice 1 0 h2h mele A1 A1 A2 1 1 1 1 1 30 30 Cobra Strike Blades of Ice 1 1 8 4 0 1 1 par2 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 10 chain lightning skip 25 to hit bonus per charge up 1 15 7 8 128 4 -3 896 64000
Wake Of Destruction Sentry 281 125 wake of destruction maker 70 wake of destruction maker 1 0 none SQ SQ S2 1 1 1 par8 shots fired 6 Number of missiles 2 Number of missiles per level 2 Min Range 5 Shots Fired 1 8 0
Imp Inferno 282 59 126 impinfernoflame1 71 impinfernoflame1 impinfernoflame2 8 z offset lvl-1 range 1 0 none SQ SQ SC 6 1 1 1 "rand(par3,par4)" len lvl-1 range 30 base ranged (doubled) 3 level range (doubled) 100 min frames 120 max frames 1 4 fire 18 15 15 15 15 15 37 15 15 15 15 15 0
Imp Fireball 283 impfireball 1 sorceress_cast_fire fire_cast_2 72 impfireball 40 z offset 1 0 none SQ SQ S2 1 1 1 1 8 0
Baal Taunt 284 28 baal taunt control monster_baal_taunt_1 46 baal taunt control 1 0 none SQ SQ A1 1 1 1 3 45 45 Delay in poison clouds 3 Delay in lightning 1 8 0
Baal Corpse Explode 285 141 ln34 82 1 0 none SQ SQ S3 1 1 1 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 1 8 0
Baal Monster Spawn 286 baal spawn monsters 1 baal_summon baal spawn monsters 1 0 none SQ SQ S3 1 1 1 1 8 0
Catapult Charged Ball 287 28 catapultchargedball 47 catapultchargedball 16 fall rate 1 0 none SQ SQ A1 1 1 1 4 Charged bolts per level 1 8 0
Catapult Spike Ball 288 28 catapult spike ball 47 catapult spike ball 16 fall rate 1 0 none SQ SQ A1 1 1 1 ln12 20 Spikes to launch 5 Spikes per level 1 8 0
Suck Blood 289 60 127 1 0 none SQ SQ A1 1 1 1 par1 heal% 25 Percent life to boss 1 8 1 3 0
Cry Help 290 128 curseattract 1 0 none SQ SQ S1 1 1 ln12 duration 100 Time for minions to attack target 20 Time per level 1 8 0
Healing Vortex 291 healing vortex healing vortex 1 0 none SQ SQ S2 1 1 1 1 8 10 5 5 5 5 5 20 5 5 5 5 5 0
Teleport 2 292 98 48 73 1 0 none SQ SQ S1 1 1 1 1 8 0
Self-resurrect 293 61 38 1 0 none SQ SQ S1 1 1 1 1 8 0
Vine Attack 294 130 plague vines slowed velocitypercent -100 druidpod_attack_1 druidpod_walk1_1 druidpod_neutral_1 49 vine beast attack vines vine beast walk 1 vine beast neutral "min(12,ln12)" #vines 35 delay 6 min dist between missiles 1 0 none SQ SQ S1 1 1 1 "min(24,ln12)" # missiles 20 frames to apply aura to target 3 Number of vines 1 vines per level 1 8 0
Overseer Whip 295 131 bloodlust par2 velocitypercent par3 attackrate par4 skill_armor_percent par5 damagepercent par6 suicideminion1 S1 33 1 0 none SQ SQ A2 1 1 1 par1 chance 65 Chance Bloodlust 250 Bloodlust duration 80 Velocity change 80 Speed change 50 Armor change 100 Damage change 1 8 0
Barbs Aura 296 65 65795 barbscontrol barbs ln12 thorns_percent ln34 1 0 none SQ SQ A1 1 1 1 1 30 Radius 2 radius per level 50 % thorns damage back 10 % thorns damage back per level 1 8 0
Wolverine Aura 297 65 65795 wolverinecontrol wolverine ln12 item_tohit_percent ln34 damagepercent ln56 1 0 none SQ SQ A1 1 1 1 1 30 Radius 2 radius per level 25 % attack rating bonus 7 % attack rating bonus per lvl 20 % damage increase 7 % damage increase per level 1 8 0
Oak Sage Aura 298 65 65795 oaksagecontrol oaksage ln12 item_maxhp_percent ln34 1 0 none SQ SQ A1 1 1 1 1 30 Radius 2 radius per level 30 % hitpoints more per level 5 % hitpoint bonus per level 1 8 0
Imp Fire Missile 299 132 impmiss21 sorceress_cast_fire fist_will_cast impmiss21 1 0 none A1 A1 A1 1 1 lvl-1 range adder ? ? ? ? ? ? 1 8 0
Impregnate 300 133 painworm1 NU 1 0 none S1 S1 S1 1 1 1 ? ? ? ? ? ? 1 8 0
Siege Beast Stomp 301 134 par5 siege_beast_dust 75 0 none A2 A2 A2 1 1 1 8 screen shake magnitude 5 screen shake bulid 20 screen shake duration 15 screen shake fade 25 radius of effect ? 1 1 8 20 10 10 10 10 10 60 10 10 10 10 10 0
MinionSpawner 302 62 135 spawnedminion 1 0 none A1 A1 A1 1 1 ? ? ? ? ? ? 1 8 0
CatapultBlizzard 303 28 catapult cold ball 47 catapult cold ball 16 fall rate 1 0 none A1 A1 A1 1 1 ? ? ? ? ? ? 1 8 0
CatapultPlague 304 28 catapult plague ball 47 catapult plague ball 16 fall rate 1 0 none A1 A1 A1 1 1 ? ? ? ? ? ? 1 8 0
CatapultMeteor 305 28 catapult meteor ball par1 47 catapult meteor ball 16 fall rate 1 0 none A1 A1 A1 1 1 5 radius of explosion ? 50 duration base 3 duration/level ? ? 1 8 0
BoltSentry 306 17 sentrychargedbolt 23 sentrychargedbolt 1 0 none SC SC xx 1 1 ln12 + skill('Shock Field'.blvl)/3 # bolts par8 + skill('Lightning Sentry'.blvl)/4 shots fired 5 Bolts to send out 0 Bolts to send out per level 5 Shots Fired 1 8 0
CorpseCycler 307 63 recycler delay 10 49 93 vine beast attack recycler delay 1 0 none SQ SQ S1 1 1 1 1 dm12 life steal 3 min % life steal 12 max % life steal 1 8 0
DeathMaul 308 136 death mauler 76 death mauler death mauler trail 1 0 none A1 A1 xx 1 1 96 missile animrate ? ? ? ? ? ? 1 8 10 4 4 4 4 4 20 4 4 4 4 4 0
Defense Curse 309 30 3 defense_curse ln34 ln12 skill_armor_percent -ln56 18 30 curseeffectred cursecast 1 0 none SC SC S2 1 1 3 radius 1 radius per level 200 duration 75 additional duration/level 50 % defense 5 % defense/lvl 1 0
Blood Mana 310 30 3 blood_mana ln34 ln12 18 30 curseeffectred cursecast 1 0 none SC SC S2 1 1 3 radius 1 radius per level 200 duration 75 additional duration/level 40 Max hitpoints to remove curse 1 8 10 4 4 4 4 4 20 4 4 4 4 4 0
mon inferno sentry 311 53 95 inferno sentry 1 52 77 inferno sentry 1 inferno sentry 2 -37 z offset 1 0 none SQ SQ xx 1 1 ln34/2 + skill('Wake of Fire Sentry'.blvl) range par1 + skill('Wake of Fire Sentry'.blvl) length of fire 3 density par8 shots fired 15 frame length 40 range times two 10 Shots fired 1 8 0
mon death sentry 312 55 ln34 necromancer_corpseexp_1 death_sentry 50 78 corpseexplosion deathsentryexplode 1 0 none SQ SQ xx 1 1 1 par1 damage % par2 damage % 50 fire % par8 + skill('Fire Trauma'.blvl)/3 shots fired 40 % of base monster HP min damage 80 % of base monster HP max damage 10 radius (half squares) 1 additional radius/level (half squares) 5 Shots Fired 1 8 fire 0
sentry lightning 313 sentrylightningbolt sentrylightningbolt 1 0 none SQ SQ xx 1 1 1 par8 shots fired 10 minimum damage 20 max damage 4 increase in dam/level (min & max) 10 Shots Fired 1 8 0
fenris rage 314 137 fenris_rage par1 damagepercent par2 necromancer_corpseexp_1 51 79 corpseexplosion 1 0 none A1 A1 A1 1 1 1 1 500 rage duration - see fenris rage 100 % damage with rage - see fenris rage 1 8 0
Baal Tentacle 315 140 1 0 none S2 S2 S2 1 1 1 ? ? ? ? 1 0
Baal Nova 316 22 baal nova baal_novacast fire_cast_2 25 baal nova 1 0 none S3 S3 S3 1 1 1 8 fire 50 24 32 32 32 32 75 24 32 32 32 32 0
Baal Inferno 317 53 95 baal inferno baal_missilecast 54 baal inferno 1 0 none SQ SQ xx 1 1 par1 length of fire 2 density 20 frame length ? 1 5 mag 64 48 48 48 48 48 96 48 48 48 48 48 0
Baal Cold Missiles 318 139 baal cold maker baal_coldtrailcast 81 baal cold maker 1 0 none A1 A1 A1 1 1 1 1 8 cold 20 9 13 13 13 13 40 9 13 13 13 13 200 50 50 50 0
MegademonInferno 319 53 95 megademoninferno 54 fetishinferno1 fetishinferno2 1 0 none SQ SQ S1 1 1 par1 length of fire 2 density 15 frame length 1 8 0
EvilHutSpawner 320 49 91 spawnedflames 36 50 1 0 none SQ SQ xx 1 1 1 8 0
CountessFirewall 321 24 countessfirewallmaker countessfirewall sorceress_cast_fire 26 countessfirewallmaker 1 0 none SQ SQ A1 1 1 1 0
ImpBolt 322 17 imp charged bolt 23 imp charged bolt 1 0 none SQ SQ A1 1 1 lvl+2 #bolts 1 8 0
Horror Arctic Blast 323 53 95 frozenhorror arcticblast1 54 frozenhorror arcticblast1 frozenhorror arcticblast1 1 0 none SQ SQ xx 18 1 1 par1 length of fire 2 density 15 frame length 1 8 0
death sentry ltng 324 sentrylightningbolt2 sentrylightningbolt2 1 0 none SQ SQ xx 1 1 1 5 Shots Fired 1 8 0
VineCycler 325 63 vine recycler delay 10 49 93 vine beast attack recycler delay 1 0 none SQ SQ S1 1 1 1 1 dm12 mana steal 1 min % mana steal 8 max % mana steal 1 8 0
BearSmite 326 32 2 druidbear_attack_1 1 9 h2h S1 S1 xx 1 1 1 1 ln34 damage % "max(250,ln12)" stunlen 15 Stun Length 5 additional frames/level 15 Percent bonus damage 15 percent damage per level 1 8 8 128 0
Resurrect2 327 97 healing 39 1 0 none SQ SQ xx 1 1 1 1 1 1 1 1 0
BloodLordFrenzy 328 37 109 monfrenzy ln12 velocitypercent dm34 attackrate dm34 other_animrate dm34 weapon_giant_1 1 weapon_giant_1 1 3 none SQ SQ A2 1 1 1 1 1 200 duration 25 duration/level 30 min % speed increase 110 max % speed increase 1 10 10 8 128 0
Baal Teleport 329 98 48 73 baalteleport 1 0 none SQ SQ S1 1 1 1 1 8 0
Imp Teleport 330 129 attached sorceress_teleport 48 74 imp teleport imp teleport 1 0 none SQ SQ S1 1 1 1 1 8 0
Baal Clone Teleport 331 98 48 73 baalclonedeath baalteleport 1 0 none SQ SQ S1 1 1 1 1 8 0
ZakarumLightning 332 monsterlight sorceress_cast_lightning light_cast_1 monsterlight 1 0 none SQ SQ S1 1 1 1 8 0
VampireMissile 333 firehead firehead 1 0 none SC SC SC 1 1 1 8 0
MephistoMissile 334 mephisto mephisto 1 0 none SC SC A2 1 1 1 8 0
DoomKnightMissile 335 148 undeadmissile1 94 undeadmissile1 1 0 none SC SC S1 1 1 1 8 0
RogueMissile 336 110 rogue1 66 rogue1 1 0 none A1 A1 A1 1 1 1 8 0
HydraMissile 337 hydra hydra 1 0 none SC SC SC 1 1 1 8 0
NecromageMissile 338 149 necromage1 95 necromage1 1 0 none SC SC A1 1 1 1 8 0
MonBow 339 4 cr_arrow6 11 cr_arrow6 1 0 rng A1 A1 A1 1 1 1 1 8 128 0
MonFireArrow 340 4 firearrow 11 firearrow 1 0 rng A1 A1 A1 1 1 1 1 10 10 8 128 fire 1 8 8 8 8 8 4 9 9 9 9 9 0
MonColdArrow 341 4 coldarrow 11 coldarrow 1 4 rng A1 A1 A1 1 1 1 1 10 10 8 128 cold 1 7 7 7 7 7 4 8 8 8 8 8 100 25 25 25 0
MonExplodingArrow 342 4 explodingarrow 11 explodingarrow 1 5 rng A1 A1 A1 1 1 1 1 10 10 8 128 fire 2 8 8 8 8 8 6 9 9 9 9 9 0
MonFreezingArrow 343 4 freezingarrow 11 freezingarrow 1 7 rng A1 A1 A1 1 1 1 par1 damage radius 5 Radius of impact 1 10 10 8 128 cold 2 7 7 7 7 7 6 8 8 8 8 8 100 25 25 25 0
MonPowerStrike 344 6 2 1 4 h2h A1 A1 A1 1 1 1 1 1 1 1 20 15 8 128 ltng 1 0 0 0 0 0 16 12 12 12 12 12 0
SuccubusBolt 345 4 succubusmiss 11 succubusmiss 1 0 rng SC SC S2 1 1 1 1 8 mag 10 2 4 6 6 6 15 2 5 7 7 7 0
MephFrostNova 346 22 mephfrostnova mephfrostnova mephfrostnova sorceress_cast_cold 25 frostnova 1 6 none SC SC A2 1 1 1 9 radius of freeze 3 additional radius/level 1 8 cold 40 20 20 20 20 20 60 20 20 20 20 20 200 50 50 50 0
MonIceSpear 347 6 2 1 4 h2h A1 A1 A1 1 1 1 1 1 1 1 20 15 8 128 cold 10 8 8 8 8 8 14 9 9 9 9 9 125 25 25 25 0
ShamanIce 348 glacialspike ln34 * (100 + skill('Blizzard'.blvl) * par7) / 100 ln12 sorceress_cast_cold glacialspike 1 7 none SC SC xx 1 1 1 4 radius 0 radius per level 50 freeze frames 3 freeze frames per level 1 8 cold 4 10 14 14 14 14 12 10 15 15 15 15 125 50 50 50 0
Diablogeddon 349 124 diablogeddoncontrol diablogeddoncontrol diablogeddoncontrol armageddon ln12 par3 druid_firecast_a 92 diablogeddontail diablogeddonrock 25 frames 25 fall rate 15 slide rate 1 0 none SC SC S3 1 1 1 1000 base duration 50 duration per level 8 radius to drop meteors 8 frame delay between rocks 1 8 4 4 6 8 10 12 16 4 7 9 12 14 fire 25 15 20 25 30 35 75 16 22 27 33 38 0
Delerium Change 350 delerium change 116 delerium 1500 velocitypercent 33 attackrate 33 other_animrate 33 45 1 0 none SC SC NU 1 1 1 1 8 0
NihlathakCorpseExplosion 351 17 55 "min(30,16+lvl)" 1 necromancer_corpse_cast necromancer_corpseexp_1 21 32 corpseexplosion explodingarrowexp redlightmissile 1 0 none SC SC xx 1 1 1 1 1 1 par1 % target hp min damage par2 % target hp max damage par5 % damage to do as elemental 10 % of base monster HP min damage 20 % of base monster HP max damage 50 % damage to do as elemental 1 8 fire 0
SerpentCharge 352 31 67 25 37 1 2 none SQ A1 xx 4 1 1 1 1 150 percent increase in velocity 0 plus % damage 0 plus % dam per level 1 50 15 8 128 0
Trap Nova 353 22 trapnova trapnova trapnova sorceress_cast_lightning light_cast_1 25 trapnova 1 2 none SC SC xx sorceress_cast_lightning 1 12 number of missiles 4 additional missiles per level 1 8 0
UnHolyBoltEx 354 unholybolt1 unholybolt1 1 0 none SQ SQ xx 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
ShamanFireEx 355 shafire1 shafire1 1 0 none SQ SQ xx 1 1 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? 1 8 0
Imp Fire Missile Ex 356 impmiss21 sorceress_cast_fire fist_will_cast impmiss21 1 0 none A1 A1 A1 1 1 lvl-1 range adder ? ? ? ? ? ? 1 8 0
Battle Orders1 357 68 battleorders battleorders1 battleorders1 ln12 item_mindamage_percent ln34 item_maxdamage_percent ln34 item_armor_percent ln34 barbarian_battleorders_1 25 battleorders 1 9 none SC SC xx 1 1 24 20 8 1 1 2500 duration 500 duration/level 50 Base % increase 5 Increase per level 1 50 10 8 1 768 32000

View File

@ -1,51 +0,0 @@
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 4673 70 71 0 0 250 0 1 5 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_WILDERNESS 2 4679 70 71 192 197 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_TRISTRAM 3 4677 70 71 192 197 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_CAVE 4 4657 54 54 87 87 200 1 1 0 5 11600 1000 -1000 -300 2700 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_CRYPT 5 4658 55 55 95 95 500 1 2 0 5 11600 1000 -1240 -300 1700 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_MONASTERY 6 4667 63 63 157 157 250 0 1 3 7 19600 1000 -1650 -500 3300 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_COURTYARD 7 4667 63 63 157 157 250 0 1 3 7 19600 1000 -1650 -500 3300 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_BARRACKS 8 4667 52 52 82 82 800 1 1 0 6 21600 1000 -1540 -476 2600 590 -789 20 -289 30 0 -5000
ESOUNDENVIRON_CATHEDRAL 9 4667 53 53 77 77 500 1 2 0 7 19600 1000 -1240 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_CATACOMBS 10 4667 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 4667 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 4674 56 57 172 177 250 0 3 4 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_DESERT 13 4659 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 4678 56 57 100 100 250 0 4 3 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_SEWERS 15 4670 65 65 87 87 150 1 2 0 13 13500 1000 -1650 -237 1400 790 -1214 13 395 20 0 -5000
ESOUNDENVIRON_HAREM 16 4661 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 4661 58 58 110 110 750 1 2 0 9 36200 1000 -1700 -698 4000 330 -1166 20 16 30 0 -5000
ESOUNDENVIRON_BASEMENT 18 4661 52 52 110 110 750 1 2 0 10 50300 1000 -1592 -1000 3300 230 -602 20 198 30 0 -5000
ESOUNDENVIRON_TOMBS 19 4672 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 4665 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 4672 67 67 77 77 500 1 2 0 13 13500 1000 -1500 -237 2000 790 -1214 13 395 20 0 -5000
ESOUNDENVIRON_ARCANE 22 4669 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 4675 68 69 182 187 500 0 1 0 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_JUNGLE 24 4662 59 60 118 123 300 0 1 0 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_KURAST 25 4663 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 4664 54 54 95 95 500 1 2 0 5 11600 1000 -1200 -300 2700 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_DUNGEON 27 4671 65 65 138 138 250 1 2 0 5 11600 1000 -1240 -300 1700 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_TEMPLE 28 4664 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 4671 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 4664 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 4676 62 62 0 0 500 0 1 0 5 11600 1000 -1600 -300 2310 640 -711 12 83 17 0 -5000
ESOUNDENVIRON_MESA 32 4666 62 62 82 82 300 0 1 0 12 1800 1000 -2300 -300 4700 590 -1217 7 441 11 0 -5000
ESOUNDENVIRON_LAVA 33 4666 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 4660 61 61 143 143 300 0 1 0 12 1800 1000 -2100 -300 4700 590 -1217 7 441 11 0 -5000
ESOUNDENVIRON_GUILD 35 4679 70 71 0 0 250 0 1 5 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_XTOWN 36 4684 70 71 0 0 250 0 1 3 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
ESOUNDENVIRON_BARRICADE 37 4682 70 71 72 77 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_BARRICADESNOW 38 4682 70 71 72 77 250 0 1 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_ICECAVE1 39 4681 54 54 87 138 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
ESOUNDENVIRON_ICECAVE2 40 4681 54 54 138 87 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
ESOUNDENVIRON_ICECAVE3 41 4681 54 54 87 138 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
ESOUNDENVIRON_MOUNTAINTOP 42 4682 63 63 72 77 250 0 3 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_XTEMPLEENTRANCE 43 4682 63 63 77 72 500 0 1 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
ESOUNDENVIRON_XTEMPLE 44 4683 52 52 162 162 250 1 1 2 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_XTEMPLEBOSS 45 4683 52 52 72 72 250 1 1 2 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_XHELL 46 4666 62 62 143 143 300 1 1 0 12 1800 1000 -2300 -300 4700 590 -1217 7 441 11 0 -5000
ESOUNDENVIRON_BAALTEMPLE 47 4680 52 52 82 82 250 1 2 5 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_BAALTHRONE 48 4680 52 52 82 82 250 1 2 5 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
ESOUNDENVIRON_WORLDSTONE 49 4680 53 53 82 82 250 1 2 0 7 19600 1000 -1240 -500 4750 700 -1230 20 -2 29 0 -5000

File diff suppressed because it is too large Load Diff

View File

@ -1,190 +0,0 @@
state id group remhit nosend transform aura curable curse active immed restrict disguise blue attblue damblue armblue rfblue rlblue rcblue stambarblue rpblue attred damred armred rfred rlred rcred rpred exp plrstaydeath monstaydeath bossstaydeath hide shatter udead life green pgsv nooverlays noclear bossinv meleeonly notondead overlay1 overlay2 overlay3 overlay4 pgsvoverlay castoverlay removerlay stat setfunc remfunc missile skill itemtype itemtrans colorpri colorshift light-r light-g light-b onsound offsound gfxtype gfxclass cltevent clteventfunc cltactivefunc srvactivefunc eol
none 0 0
freeze 1 1 1 1 1 1 100 108 150 215 255 impact_bluemotize_1 0
poison 2 1 1 poisonhit 95 104 128 255 128 impact_poison_1 0
resistfire 3 1 1 1 aura_resistfire cast_resistfire fireresist paladin_aura_resistfire 0
resistcold 4 1 1 1 aura_resistcold cast_resistcold coldresist paladin_aura_resistcold 0
resistlight 5 1 1 1 aura_resistlight cast_resistlight lightresist paladin_aura_resistlightning 0
resistmagic 6 0
playerbody 7 0
resistall 8 1 1 1 1 1 aura_resistall_front aura_resistall_back cast_resistall lightresist paladin_aura_salvation 0
amplifydamage 9 1 1 curseamplifydamage curse_hit damageresist necromancer_amplifydamage 0
frozenarmor 10 1 1 frozenarmor skill_armor_percent 0
cold 11 1 velocitypercent 100 108 150 215 255 impact_bluemotize_1 0
inferno 12 1 0
blaze 13 3 0
bonearmor 14 1 1 1 bonearmor_front bonearmor_back bonearmor_null1 bonearmor_null2 bonearmor_cast 6 3 0
concentrate 15 1 skill_armor_percent 0
enchant 16 1 1 enchant skill_enchant weap cred 0
innersight 17 1 innersight armorclass 0
skill_move 18 0
weaken 19 1 1 1 curseweaken curse_hit damagepercent necromancer_weaken 0
chillingarmor 20 1 1 chillarmor skill_armor_percent hitbymissile 1 0
stunned 21 stun 0
spiderlay 22 0
dimvision 23 1 1 cursedimvision curse_hit necromancer_dimvision 0
slowed 24 0
fetishaura 25 fetish_aura attackrate 0
shout 26 1 1 shout shoutstart skill_armor_percent 0
taunt 27 1 1 1 1 taunt barbarian_battlecry_state 0
conviction 28 1 convictionfront convictionback paladin_aura_purification 0
convicted 29 1 1 1 1 1 convictionfront convictionback skill_conviction 0
energyshield 30 energyshield 0
venomclaws 31 poisonmindam mele cgrn 0
battleorders 32 1 battleorders battleorderscast maxmana 0
might 33 1 1 1 aura_might_front aura_might_back damagepercent paladin_aura_might 0
prayer 34 1 aura_prayer_front aura_prayer_back paladin_aura_prayer 0
holyfire 35 1 aura_holyfire_front aura_holyfire_back paladin_aura_holyfire 0
thorns 36 1 aura_thorns_front aura_thorns_back paladin_aura_thorns 0
defiance 37 1 1 1 aura_defiance_front aura_defiance_back skill_armor_percent paladin_aura_defiance 0
thunderstorm 38 thunderstormback thunderstormcast 0
lightningbolt 39 0
blessedaim 40 1 1 1 blessedaimfront blessedaimback item_tohit_percent paladin_aura_blessedaim 0
stamina 41 1 1 staminafront staminaback maxstamina paladin_aura_stamina 0
concentration 42 1 1 1 concentrationfront concentrationback damagepercent paladin_aura_concentration 0
holywind 43 1 holyfreeze paladin_aura_holywind 0
holywindcold 44 1 1 null ice_explode velocitypercent 100 108 150 215 255 impact_bluemotize_1 0
cleansing 45 1 cleansingfront cleansingback paladin_aura_cleansing 0
holyshock 46 1 holyshockfront holyshockback lightmaxdam paladin_aura_holylight 0
sanctuary 47 1 1 sanctuaryfront sanctuaryback skill_staminapercent paladin_aura_sanctuary 86 0
meditation 48 1 1 meditationfront meditationback paladin_aura_meditation 0
fanaticism 49 1 1 1 1 fanaticismfront fanaticismback attackrate paladin_aura_fanatacism 0
redemption 50 1 redemptionfront redemptionback paladin_aura_redemption 0
battlecommand 51 1 battlecommand battlecommandcast 0
preventheal 52 1 1 0
conversion 53 1 conversionaura paladin_conversion 0
uninterruptable 54 7 0
ironmaiden 55 1 1 curseironmaiden curse_hit necromancer_ironmaiden 0
terror 56 1 1 curseterror curse_hit necromancer_taint 0
attract 57 1 1 1 curseattract curse_hit necromancer_attract 0
lifetap 58 1 1 cursereversevampire curse_hit necromancer_reversevampire 0
confuse 59 1 1 1 curseconfuse curse_hit necromancer_confuse 0
decrepify 60 1 1 1 cursedecrepify curse_hit skill_decrepify necromancer_decrepify 0
lowerresist 61 1 1 1 1 1 1 curselowerresist curse_hit lightresist 0
openwounds 62 1 1 85 0
dopplezon 63 1 1 1 1 1 1 1 2 0 0
criticalstrike 64 1 0
dodge 65 1 0
avoid 66 1 0
penetrate 67 0
evade 68 1 0
pierce 69 0
warmth 70 1 0
firemastery 71 0
lightningmastery 72 0
coldmastery 73 0
swordmastery 74 0
axemastery 75 0
macemastery 76 0
polearmmastery 77 0
throwingmastery 78 0
spearmastery 79 0
increasedstamina 80 0
ironskin 81 0
increasedspeed 82 velocitypercent 0
naturalresistance 83 0
fingermagecurse 84 fingermagecurse 0
nomanaregen 85 1 0
justhit 86 1 1 0
slowmissiles 87 innersight skill_handofathena 0
shiverarmor 88 1 1 1 shiverarmor skill_armor_percent 87 0
battlecry 89 1 1 1 battlecry skill_armor_percent barbarian_battlecry_state 0
blue 90 1 100 108 150 215 255 0
red 91 70 100 255 255 255 0
death_delay 92 0
valkyrie 93 1 1 valkyrie valkyriestart 2 0 0
frenzy 94 frenzy skill_frenzy 0
berserk 95 1 berserkfront berserkback 0
revive 96 1 1 1 15 85 73 255 255 255 0
skel_mastery 97 1 0
sourceunit 98 1 1 4 2 0
redeemed 99 1 1 1 1 10 redemption paladin_redeemed_soul 0
healthpot 100 0
holyshield 101 1 skill_armor_percent Holy Shield 0
just_portaled 102 0
monfrenzy 103 monfrenzy skill_frenzy 0
corpse_nodraw 104 1 1 1 1 0
alignment 105 1 1 1 0
manapot 106 0
shatter 107 1 1 1 1 1 0
sync_warped 108 1 0
conversion_save 109 0
pregnant 110 impregnated 10 0
golem_mastery 111 1 0
rabies 112 rabiesplague 0
defense_curse 113 1 1 1 defense_curse skill_armor_percent 0
blood_mana 114 1 1 blood_mana 0
burning 115 burning 0
dragonflight 116 0
maul 117 3 1 1 maul1 maul5 maul1back maul5back damagepercent 16 11 0
corpse_noselect 118 1 1 1 1 0
shadowwarrior 119 1 1 1 1 2 6 0
feralrage 120 3 1 feralrage1 feralrage5 feralrage1back feralrage5back attackrate 16 11 0
skilldelay 121 19 12 0
progressive_damage 122 1 progressive_damage_1 progressive_damage 1 1 0
progressive_steal 123 1 progressive_steal_1 progressive_steal 1 1 0
progressive_other 124 1 progressive_other_1 progressive_other 1 1 0
progressive_fire 125 1 progressive_fire_1 progressive_fire 1 1 0
progressive_cold 126 1 progressive_cold_1 progressive_cold 1 1 0
progressive_lightning 127 1 progressive_lightning_1 progressive_lightning 1 1 0
shrine_armor 128 1 1 shrine_armor shrine_shimmer00 armorclass 0
shrine_combat 129 1 1 1 shrine_combat shrine_shimmer00 tohit 0
shrine_resist_lightning 130 1 1 shrine_resist_lightning shrine_shimmer01 lightresist 0
shrine_resist_fire 131 1 1 shrine_resist_fire shrine_shimmer00 fireresist 0
shrine_resist_cold 132 1 1 shrine_resist_cold shrine_shimmer01 coldresist 0
shrine_resist_poison 133 1 1 shrine_resist_poison shrine_shimmer01 poisonresist 0
shrine_skill 134 1 shrine_skill shrine_shimmer00 9 6 0
shrine_mana_regen 135 1 shrine_mana_regen shrine_shimmer01 0
shrine_stamina 136 1 1 shrine_stamina shrine_shimmer01 stamina 0
shrine_experience 137 1 shrine_experience shrine_shimmer00 0
fenris_rage 138 direwolfcharged direwolfcharged 0
wolf 139 3 1 1 1 1 1 14 druid_morph druid_morph 1 430 0
bear 140 3 1 1 1 1 1 1 14 druid_morph druid_morph 1 431 0
bloodlust 141 1 bloodlust_state bloodlust_state 0
changeclass 142 5 0
attached 143 1 1 1 1 13 9 88 147 0
hurricane 144 1 7 4 90 145 0
armageddon 145 146 0
invis 146 12 8 0
barbs 147 1 spirit_of_barbs 0
wolverine 148 1 1 1 heart_of_wolverine item_tohit_percent 0
oaksage 149 1 oak_sage 0
vine_beast 150 1 11 89 0
cyclonearmor 151 1 1 cyclonearmor1front cyclonearmor2front cyclonearmor3front 8 5 0
clawmastery 152 0
cloak_of_shadows 153 1 1 2 assassin_cloakofdarkness 0
recycled 154 1 1 1 1 0
weaponblock 155 0
cloaked 156 1 1 cloaked skill_armor_percent 0
quickness 157 2 1 quickness attackrate 0
bladeshield 158 bladeshield 0
fade 159 2 1 1 1 1 fade poisonresist 0
summonresist 160 1 0
oaksagecontrol 161 1 0
wolverinecontrol 162 1 0
barbscontrol 163 1 0
debugcontrol 164 0
itemset1 165 0
itemset2 166 0
itemset3 167 0
itemset4 168 0
itemset5 169 0
itemset6 170 1 0
runeword 171 1 0
restinpeace 172 1 1 1 1 17 redemption paladin_redeemed_soul 0
corpseexp 173 1 1 1 1 1 18 corpseexplosion necromancer_corpseexp_1 0
whirlwind 174 0
fullsetgeneric 175 aura_fanatic 0
monsterset 176 3 1 1 fire_cast_2 1 135 0
delerium 177 3 1 1 1 teleport teleport 1 212 0
antidote 178 1 0
thawing 179 1 0
staminapot 180 1 0
passive_resistfire 181 0
passive_resistcold 182 0
passive_resistltng 183 0
monsterset1 184 3 1 1 fire_cast_2 1 362 0
monsterset2 185 3 1 1 fire_cast_2 1 256 0
monsterset3 186 3 1 1 fire_cast_2 1 40 0
monsterset4 187 3 1 1 fire_cast_2 1 156 0
battleorders1 188 1 bladeshield battleorderscast 0

View File

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

View File

@ -1,157 +0,0 @@
Superunique Name Class hcIdx MonSound Mod1 Mod2 Mod3 MinGrp MaxGrp EClass AutoPos Stacks Replaceable Utrans Utrans(N) Utrans(H) TC TC(N) TC(H) *eol
Bishibosh Bishibosh fallenshaman1 0 8 9 0 2 2 0 1 0 11 11 11 Act 1 Super Ax Act 1 (N) Super Ax Act 1 (H) Super Ax 0
Bonebreak Bonebreak skeleton1 1 5 8 0 5 5 0 1 0 5 5 5 Act 1 Super Ax Act 1 (N) Super Ax Act 1 (H) Super Ax 0
Coldcrow Coldcrow cr_archer1 2 18 0 0 4 4 0 1 0 18 18 18 Act 1 Super Ax Act 1 (N) Super Ax Act 1 (H) Super Ax 0
Rakanishu Rakanishu fallen2 3 17 6 0 8 8 0 0 0 1 29 29 29 Act 1 Super Bx Act 1 (N) Super Bx Act 1 (H) Super Bx 0
Treehead WoodFist Treehead WoodFist brute2 4 5 6 0 2 2 0 1 0 1 4 4 4 Act 1 Super Bx Act 1 (N) Super Bx Act 1 (H) Super Bx 0
Griswold Griswold griswold 5 7 0 0 0 0 0 1 0 1 17 17 17 Griswold Griswold (N) Griswold (H) 0
The Countess The Countess corruptrogue3 6 countess 9 0 0 6 6 0 1 0 16 16 16 Countess Countess (N) Countess (H) 0
Pitspawn Fouldog Pitspawn Fouldog bighead2 7 7 18 0 4 4 0 1 0 31 31 31 Act 1 Super Bx Act 1 (N) Super Bx Act 1 (H) Super Bx 0
Flamespike the Crawler Flamespike the Crawler quillrat4 8 9 7 0 6 6 0 1 0 16 16 16 Act 1 Unique Cx Act 1 (N) Unique Cx Act 1 (H) Unique Cx 0
Boneash Boneash skmage_pois3 9 8 5 18 0 0 0 1 0 15 15 15 Act 1 Super Cx Act 1 (N) Super Cx Act 1 (H) Super Cx 0
Radament Radament radament 10 6 0 0 3 3 0 1 0 30 30 30 Radament Radament (N) Radament (H) 0
Bloodwitch the Wild Bloodwitch the Wild pantherwoman1 11 5 7 0 5 5 0 1 0 29 29 29 Act 2 Super Ax Act 2 (N) Super Ax Act 2 (H) Super Ax 0
Fangskin Fangskin clawviper3 12 17 6 0 4 4 0 1 0 14 14 14 Act 2 Super Bx Act 2 (N) Super Bx Act 2 (H) Super Bx 0
Beetleburst Beetleburst scarab2 13 8 0 0 3 3 0 1 0 1 13 13 13 Act 2 Super Bx Act 2 (N) Super Bx Act 2 (H) Super Bx 0
Leatherarm Leatherarm mummy2 14 5 18 0 5 5 0 1 0 25 25 25 Act 2 Super Ax Act 2 (N) Super Ax Act 2 (H) Super Ax 0
Coldworm the Burrower Coldworm the Burrower maggotqueen1 15 18 8 0 0 0 0 0 0 13 13 13 Act 2 Super Bx Act 2 (N) Super Bx Act 2 (H) Super Bx 0
Fire Eye Fire Eye sandraider3 16 9 6 0 3 3 0 1 0 12 12 12 Act 2 Super Bx Act 2 (N) Super Bx Act 2 (H) Super Bx 0
Dark Elder Dark Elder zombie5 17 6 8 0 4 4 0 1 0 1 27 27 27 Act 2 Super Bx Act 2 (N) Super Bx Act 2 (H) Super Bx 0
The Summoner The Summoner summoner 18 5 6 0 0 0 0 1 0 26 26 26 Summoner Summoner (N) Summoner (H) 0
Ancient Kaa the Soulless Ancient Kaa the Soulless unraveler3 19 25 5 17 3 3 0 1 0 11 11 11 Act 2 Super Cx Act 2 (N) Super Cx Act 2 (H) Super Cx 0
The Smith The Smith smith 20 smith 5 0 0 0 0 0 1 0 26 26 26 Smith Smith (N) Smith (H) 0
Web Mage the Burning Web Mage the Burning arach4 21 5 7 0 5 5 0 1 0 19 19 19 Act 3 Super Ax Act 3 (N) Super Ax Act 3 (H) Super Ax 0
Witch Doctor Endugu Witch Doctor Endugu fetishshaman4 22 8 9 0 6 6 0 1 0 20 20 20 Act 3 Super Bx Act 3 (N) Super Bx Act 3 (H) Super Bx 0
Stormtree Stormtree thornhulk3 23 6 17 0 4 4 0 1 0 1 35 35 35 Act 3 Super Bx Act 3 (N) Super Bx Act 3 (H) Super Bx 0
Sarina the Battlemaid Sarina the Battlemaid corruptrogue5 24 6 27 0 9 9 0 1 0 1 36 36 36 Act 3 Super Bx Act 3 (N) Super Bx Act 3 (H) Super Bx 0
Icehawk Riftwing Icehawk Riftwing batdemon3 25 18 26 0 7 7 0 1 0 21 21 21 Act 3 Super Ax Act 3 (N) Super Ax Act 3 (H) Super Ax 0
Ismail Vilehand Ismail Vilehand councilmember1 26 6 7 0 2 2 0 1 0 36 36 36 Council Council (N) Council (H) 0
Geleb Flamefinger Geleb Flamefinger councilmember2 27 5 9 0 2 2 0 1 0 37 37 37 Council Council (N) Council (H) 0
Bremm Sparkfist Bremm Sparkfist councilmember3 28 30 17 0 2 2 0 1 0 22 22 22 Council Council (N) Council (H) 0
Toorc Icefist Toorc Icefist councilmember1 29 18 28 0 0 0 0 1 0 23 23 23 Council Council (N) Council (H) 0
Wyand Voidfinger Wyand Voidfinger councilmember2 30 25 26 0 0 0 0 1 0 38 38 38 Council Council (N) Council (H) 0
Maffer Dragonhand Maffer Dragonhand councilmember3 31 5 6 0 0 0 0 1 0 23 23 23 Council Council (N) Council (H) 0
Winged Death Winged Death megademon3 32 5 7 0 7 7 0 1 0 24 24 24 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
The Tormentor The Tormentor willowisp3 33 8 9 0 5 5 0 1 0 9 9 9 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Taintbreeder Taintbreeder vilemother2 34 6 0 0 6 6 0 1 0 10 10 10 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Riftwraith the Cannibal Riftwraith the Cannibal regurgitator2 35 18 26 0 8 8 0 1 0 25 25 25 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Infector of Souls Infector of Souls megademon3 36 6 27 0 9 9 0 1 0 26 26 26 Act 4 Super Bx Act 4 (N) Super Bx Act 4 (H) Super Bx 0
Lord De Seis Lord De Seis doomknight3 37 5 30 24 5 5 0 1 0 11 11 11 Act 4 Super Cx Act 4 (N) Super Cx Act 4 (H) Super Cx 0
Grand Vizier of Chaos Grand Vizier of Chaos fingermage3 38 5 9 0 9 9 0 1 0 26 26 26 Act 4 Super Bx Act 4 (N) Super Bx Act 4 (H) Super Bx 0
The Cow King The Cow King hellbovine 39 8 17 0 6 6 0 1 0 27 27 27 Cow King Cow King (N) Cow King (H) 0
Corpsefire Corpsefire zombie1 40 27 0 0 5 5 0 1 0 25 25 25 Act 1 Super Ax Act 1 (N) Super Ax Act 1 (H) Super Ax 0
The Feature Creep The Feature Creep hephasto 41 smithdemon 27 30 0 0 0 0 1 0 20 20 20 Haphesto Haphesto (N) Haphesto (H) 0
Expansion 0
Siege Boss Siege Boss overseer1 42 5 0 0 0 0 1 0 1 7 7 7 Act 5 Super Ax Act 5 (N) Super Ax Act 5 (H) Super Ax 0
Ancient Barbarian 1 Ancient Barbarian 1 ancientbarb1 43 0 0 0 0 0 1 0 1 25 25 25 Act 5 Champ C Act 5 (N) Champ C Act 5 (H) Champ C 0
Ancient Barbarian 2 Ancient Barbarian 2 ancientbarb2 44 0 0 0 0 0 1 0 1 26 26 26 Act 5 Champ C Act 5 (N) Champ C Act 5 (H) Champ C 0
Ancient Barbarian 3 Ancient Barbarian 3 ancientbarb3 45 0 0 0 0 0 1 0 1 11 11 11 Act 5 Champ C Act 5 (N) Champ C Act 5 (H) Champ C 0
Axe Dweller Axe Dweller bloodlord3 46 8 9 0 0 0 1 0 0 17 20 20 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Bonesaw Breaker Bonesaw Breaker reanimatedhorde2 47 5 8 0 5 5 1 0 0 35 35 35 Act 5 Super Ax Act 5 (N) Super Ax Act 5 (H) Super Ax 0
Dac Farren Dac Farren imp3 48 18 0 0 4 4 1 0 0 1 36 36 36 Act 5 Super Bx Act 5 (N) Super Bx Act 5 (H) Super Bx 0
Megaflow Rectifier Megaflow Rectifier minion1 49 1 6 0 8 8 1 0 0 1 21 21 21 Act 5 Super Ax Act 5 (N) Super Ax Act 5 (H) Super Ax 0
Eyeback Unleashed Eyeback Unleashed deathmauler1 50 5 6 0 2 2 1 0 0 8 8 8 Act 5 Super Ax Act 5 (N) Super Ax Act 5 (H) Super Ax 0
Threash Socket Threash Socket siegebeast3 51 7 0 0 0 0 1 0 0 37 37 37 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Pindleskin Pindleskin reanimatedhorde5 52 9 0 0 6 6 1 0 0 22 22 22 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Snapchip Shatter Snapchip Shatter frozenhorror1 53 7 18 0 4 4 1 0 0 23 23 23 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Anodized Elite Anodized Elite succubus4 54 9 7 0 6 6 1 0 0 38 38 38 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Vinvear Molech Vinvear Molech succubuswitch2 55 8 5 18 3 5 1 0 0 23 23 23 Act 5 Super Ax Act 5 (N) Super Ax Act 5 (H) Super Ax 0
Sharp Tooth Sayer Sharp Tooth Sayer overseer3 56 6 0 0 3 3 1 0 0 1 24 24 24 Act 5 Super Bx Act 5 (N) Super Bx Act 5 (H) Super Bx 0
Magma Torquer Magma Torquer imp5 57 5 7 0 5 5 1 0 0 9 9 9 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Blaze Ripper Blaze Ripper deathmauler5 58 17 6 0 4 4 1 0 0 10 10 10 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Nihlathak Boss Nihlathak nihlathakboss 60 0 0 0 0 0 1 0 1 28 28 28 Nihlathak Nihlathak (N) Nihlathak (H) 0
Baal Subject 1 Baal Subject 1 fallenshaman5 61 9 0 0 5 5 0 0 1 29 29 29 Act 5 Champ Cx Act 5 (N) Champ Cx Act 5 (H) Champ Cx 0
Baal Subject 2 Baal Subject 2 unraveler5 62 23 0 0 3 3 0 0 1 21 21 21 Act 5 Champ Cx Act 5 (N) Champ Cx Act 5 (H) Champ Cx 0
Baal Subject 3 Baal Subject 3 baalhighpriest 63 17 0 0 5 5 1 0 1 36 36 36 Act 5 Champ Cx Act 5 (N) Champ Cx Act 5 (H) Champ Cx 0
Baal Subject 4 Baal Subject 4 venomlord 64 6 0 0 8 8 1 0 1 20 20 20 Act 5 Champ Cx Act 5 (N) Champ Cx Act 5 (H) Champ Cx 0
Baal Subject 5 Baal Subject 5 baalminion1 65 27 0 0 5 5 1 0 1 20 20 20 Act 5 Champ Cx Act 5 (N) Champ Cx Act 5 (H) Champ Cx 0
Spirit of Diablo Spirit of Diablo diablo 66 0 0 0 0 0 0 0 0 Baal Baal (N) Baal (H) 0
Spirit of Duriel Spirit of Duriel duriel1 67 8 0 0 0 0 0 0 0 Diablo Diablo (N) Diablo (H) 0
Spirit of Mephisto Spirit of Mephisto mephisto 68 0 0 0 0 0 0 0 0 Baal Baal (N) Baal (H) 0
Spirit of Andariel Spirit of Andariel andariel1 69 8 0 0 0 0 0 0 0 Mephisto Mephisto (N) Mephisto (H) 0
Guardian Angel Guardian Angel izual 70 0 0 0 0 0 0 1 0 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Yar the Mad Yar the Mad vampire2 71 0 0 0 3 5 0 1 0 Act 3 Super Ax Act 3 (N) Super Ax Act 3 (H) Super Bx 0
Slaad the Warrior Slaad the Warrior bloodlord3 72 10 12 0 0 1 1 0 0 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Rotten Fleshthing Rotten Fleshthing zombie3 73 7 0 0 0 3 3 1 0 Act 1 Super Cx Act 1 (N) Super Cx Act 1 (H) Super Cx 0
Fangskin2 Fangskin2 clawviper2 74 23 18 0 4 4 0 1 0 11 11 11 Act 2 Super Bx Act 2 (N) Super Bx Act 2 (H) Super Bx 0
Blood Swarm Blood Swarm swarm2 75 10 0 0 3 5 0 1 0 7 7 7 Act 2 Super Ax Act 2 (N) Super Ax Act 2 (H) Super Ax 0
Krull the Deviant Krull the Deviant sandraider3 76 6 4 8 2 4 0 1 0 22 22 22 Act 3 Super Ax Act 3 (N) Super Ax Act 3 (H) Super Ax 0
Garbad the Weak Garbad the Weak goatman5 77 23 25 0 1 2 0 1 0 1 21 21 21 Act 2 Super Bx Act 2 (N) Super Bx Act 2 (H) Super Bx 0
Reaver of Souls Reaver of Souls mummy4 78 18 26 0 4 6 0 1 0 18 18 18 Act 3 Super Ax Act 3 (N) Super Ax Act 3 (H) Super Ax 0
Venom Tork Venom Tork mosquito4 79 5 31 0 4 7 0 1 0 32 32 32 Act 3 Super Ax Act 3 (N) Super Ax Act 3 (H) Super Ax 0
Geleb Flamefinger1 Geleb Flamefinger1 councilmember1 80 3 7 0 2 4 0 1 0 3 3 3 Council Council (N) Council (H) 0
Geleb Flamefinger2 Geleb Flamefinger2 councilmember2 81 6 9 0 2 4 0 1 0 6 6 6 Council Council (N) Council (H) 0
Geleb Flamefinger3 Geleb Flamefinger3 councilmember3 82 5 6 0 2 4 0 1 0 9 9 9 Council Council (N) Council (H) 0
Geleb Flamefinger4 Geleb Flamefinger4 councilmember1 83 4 10 0 2 4 0 1 0 12 12 12 Council Council (N) Council (H) 0
Geleb Flamefinger5 Geleb Flamefinger5 councilmember2 84 17 29 0 2 4 0 1 0 15 15 15 Council Council (N) Council (H) 0
Geleb Flamefinger6 Geleb Flamefinger6 councilmember3 85 26 23 0 2 4 0 1 0 18 18 18 Council Council (N) Council (H) 0
Geleb Flamefinger7 Geleb Flamefinger7 councilmember1 86 18 15 0 2 4 0 1 0 21 21 21 Council Council (N) Council (H) 0
Geleb Flamefinger8 Geleb Flamefinger8 councilmember2 87 25 27 0 2 4 0 1 0 24 24 24 Council Council (N) Council (H) 0
Geleb Flamefinger9 Geleb Flamefinger9 councilmember3 88 11 20 0 2 4 0 1 0 27 27 27 Council Council (N) Council (H) 0
Geleb Flamefinger10 Geleb Flamefinger10 councilmember2 89 33 35 0 2 4 0 1 0 30 30 30 Council Council (N) Council (H) 0
Shaman Elite Shaman Elite fetishshaman4 90 0 0 0 1 3 0 1 0 20 20 20 Act 3 Super Bx Act 3 (N) Super Bx Act 3 (H) Super Bx 0
Dreadfear the Wicked Dreadfear the Wicked sandraider4 91 6 13 0 3 5 0 1 0 7 7 7 Act 2 Super Ax Act 2 (N) Super Ax Act 2 (H) Super Ax 0
Geleb Flamefinger11 Geleb Flamefinger11 councilmember3 92 8 10 0 1 3 0 1 0 29 29 29 Council Council (N) Council (H) 0
Taintbreeder1 Taintbreeder1 sandmaggot5 93 2 18 0 3 6 0 1 0 1 1 1 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Taintbreeder2 Taintbreeder2 blunderbore4 94 4 28 0 3 6 0 1 0 2 2 2 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Taintbreeder3 Taintbreeder3 regurgitator3 95 17 0 0 3 6 0 1 0 3 3 3 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Taintbreeder4 Taintbreeder4 doomknight2 96 25 0 0 3 6 0 1 0 4 4 4 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Taintbreeder5 Taintbreeder5 batdemon5 97 30 13 4 3 6 0 1 0 5 5 5 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Taintbreeder6 Taintbreeder6 willowisp4 98 11 10 0 3 6 0 1 0 6 6 6 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Taintbreeder7 Taintbreeder7 bighead5 99 6 7 0 3 6 0 1 0 7 7 7 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Taintbreeder8 Taintbreeder8 minion1 100 35 18 0 3 6 0 1 0 8 8 8 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0
Frostbite Snake Frostbite Snake clawviper10 101 18 33 28 5 6 1 0 0 9 9 9 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super1 Super1 reanimatedhorde22 102 4 0 0 5 6 1 0 0 10 10 10 Act 5 Super C Act 5 (N) Super C Act 5 (H) Super C 0
Super2 Super2 siegebeast22 103 9 13 0 5 6 1 0 0 11 11 11 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super3 Super3 snowyeti22 104 18 28 0 5 6 1 0 0 12 12 12 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super4 Super4 succubus22 105 26 0 0 5 6 1 0 0 13 13 13 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super5 Super5 succubuswitch23 106 31 7 0 5 6 1 0 0 14 14 14 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super6 Super6 frozenhorror22 107 2 0 0 5 6 1 0 0 15 15 15 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super7 Super7 bloodlord22 108 5 6 0 5 6 1 0 0 16 16 16 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super8 Super8 deathmauler22 109 17 27 0 5 6 1 0 0 17 17 17 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super9 Super9 baalminion22 110 20 30 0 5 6 1 0 0 18 18 18 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super10 Super10 dkfig22 111 25 18 0 5 6 1 0 0 19 19 19 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super11 Super11 doomknight22 112 23 30 28 5 6 1 0 0 20 20 20 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super12 Super12 vilemother22 113 13 6 0 5 6 1 0 0 21 21 21 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super13 Super13 fingermage22 114 2 3 4 5 6 1 0 0 22 22 22 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super14 Super14 megademon22 115 9 0 0 5 6 1 0 0 23 23 23 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super15 Super15 hellbovine22 116 11 0 0 5 6 1 0 0 24 24 24 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super16 Super16 bloodlord23 117 5 0 0 5 6 1 0 0 25 25 25 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super17 Super17 dkmage22 118 26 28 0 5 6 1 0 0 26 26 26 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super18 Super18 council22 119 13 2 0 5 6 1 0 0 27 27 27 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super19 Super19 council22 120 9 8 0 5 6 1 0 0 28 28 28 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super20 Super20 council22 121 27 30 0 5 6 1 0 0 29 29 29 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super21 Super21 big22 122 28 0 0 5 6 1 0 0 30 30 30 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super22 Super22 goat22 123 4 5 6 5 6 1 0 0 31 31 31 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super23 Super23 vampire23 124 20 18 9 5 6 1 0 0 32 32 32 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super24 Super24 unrav23 125 15 0 0 5 6 1 0 0 33 33 33 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super25 Super25 sk_archer23 126 17 29 0 5 6 1 0 0 34 34 34 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super26 Super26 frozen24 127 18 33 13 5 6 1 0 0 35 35 35 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super27 Super27 bm24 128 6 5 0 5 6 1 0 0 36 36 36 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super28 Super28 vm24 129 5 0 0 5 6 1 0 0 37 37 37 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super29 Super29 dm24 130 17 35 0 5 6 1 0 0 38 38 38 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super30 Super30 sy24 131 18 25 0 5 6 1 0 0 1 1 1 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super31 Super31 fallenshaman25 132 0 0 0 5 6 1 0 0 2 2 2 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super32 Super32 fetish25 133 0 0 0 5 6 1 0 0 3 3 3 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super33 Super33 bonefetish25 134 33 0 0 5 6 1 0 0 4 4 4 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super34 Super34 scarab25 135 5 13 0 5 6 1 0 0 5 5 5 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super35 Super35 baboon25 136 2 5 0 5 6 1 0 0 6 6 6 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super36 Super36 dkfig26 137 2 4 5 5 6 1 0 0 7 7 7 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super37 Super37 dkmag26 138 10 28 0 5 6 1 0 0 8 8 8 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super38 Super38 brute26 139 3 20 0 5 6 1 0 0 9 9 9 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super39 Super39 thorn26 140 25 26 27 5 6 1 0 0 11 11 11 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super40 Super40 bore26 141 23 0 0 5 6 1 0 0 12 12 12 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super41 Super41 arach27 142 23 5 0 5 6 1 0 0 13 13 13 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super42 Super42 viper27 143 2 0 0 5 6 1 0 0 14 14 14 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super43 Super43 arach28 144 26 31 28 5 6 1 0 0 21 21 21 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super44 Super44 bovine31 145 3 4 0 5 6 1 0 0 22 22 22 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super45 Super45 bovine31 146 4 5 0 5 6 1 0 0 23 23 23 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super46 Super46 council31 147 2 4 5 5 6 1 0 0 24 24 24 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super47 Super47 bd33 148 18 0 0 5 6 1 0 0 25 25 25 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super48 Super48 ww33 149 33 10 0 5 6 1 0 0 31 31 31 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super49 Super49 sw33 150 28 6 0 5 6 1 0 0 33 33 33 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Super50 Super50 izzy33 151 2 4 5 5 6 1 0 0 34 34 34 Act 5 Super Cx Act 5 (N) Super Cx Act 5 (H) Super Cx 0
Spirit of Diablo2 Spirit of Diablo2 diablo 152 2 5 25 0 0 0 0 0 Baal Baal (N) Baal (H) 0
Spirit of Baal2 Spirit of Baal2 baalcrab1 153 17 13 0 0 0 0 0 0 Baal Baal (N) Baal (H) 0
Spirit of Mephisto2 Spirit of Mephisto2 mephisto 154 28 8 7 0 0 0 0 0 Baal Baal (N) Baal (H) 0
Super51 Super51 doomknight1 155 5 8 28 3 4 0 1 0 4 4 4 Act 4 Super Ax Act 4 (N) Super Ax Act 4 (H) Super Ax 0

View File

@ -1,708 +0,0 @@
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

File diff suppressed because it is too large Load Diff

View File

@ -1,26 +0,0 @@
Name
the Hammer
the Axe
the Sharp
the Jagged
the Flayer
the Slasher
the Impaler
the Hunter
the Slayer
the Mauler
the Destroyer
theQuick
the Witch
the Mad
the Wraith
the Shade
the Dead
the Unholy
the Howler
the Grim
the Dark
the Tainted
the Unclean
the Hungry
the Cold

File diff suppressed because it is too large Load Diff

View File

@ -1,54 +0,0 @@
Name
GloomUM
Gray
DireUM
Black
ShadowUM
Haze
Wind
StormUM
Warp
Night
Moon
Star
Pit
Fire
Cold
Seethe
SharpUM
AshUM
Blade
SteelUM
StoneUM
Rust
Mold
Blight
Plague
Rot
Ooze
Puke
Snot
Bile
BloodUM
Pulse
Gut
Gore
FleshUM
BoneUM
SpineUM
Mind
SpiritUM
SoulUM
Wrath
GriefUM
Foul
Vile
Sin
ChaosUM
DreadUM
DoomUM
BaneUM
DeathUM
ViperUM
Dragon
Devil

Some files were not shown because too many files have changed in this diff Show More