mirror of
https://gitlab.com/hashborgir/d2tools.git
synced 2024-11-30 12:36:03 +00:00
Merge branch 'windows' into 'master'
Windows See merge request hashborgir/d2tools!1
This commit is contained in:
commit
6071797be5
BIN
.d2um.conf.kate-swp
Normal file
BIN
.d2um.conf.kate-swp
Normal file
Binary file not shown.
61
index.php
61
index.php
@ -28,43 +28,60 @@ $filename = 'd2um.conf';
|
||||
if (file_exists($filename)) {
|
||||
|
||||
$p = file_get_contents($filename);
|
||||
if(is_dir($p)) {
|
||||
if (is_dir($p)) {
|
||||
$path = $p;
|
||||
define('TXT_PATH', $p);
|
||||
} else {
|
||||
header('Location: ./src/config.php');
|
||||
header('Location: /src/D2Config.php');
|
||||
}
|
||||
|
||||
// Misc functions
|
||||
require_once "./src/functions.php";
|
||||
require_once "./src/D2Functions.php";
|
||||
|
||||
// Txt Parser
|
||||
require_once './src/txtParser.php';
|
||||
// D2 Files Loader
|
||||
require_once './src/D2Files.php';
|
||||
|
||||
// parse txt data
|
||||
$txtParser = new txtParser();
|
||||
$parser = $txtParser->getData();
|
||||
$armor = $parser['a'];
|
||||
$weapon = $parser['w'];
|
||||
$prop = $parser['p'];
|
||||
$uni = $parser['u'];
|
||||
// Txt Parser
|
||||
require_once './src/D2TxtParser.php';
|
||||
|
||||
// parse txt data
|
||||
$files = new D2Files();
|
||||
|
||||
$parser = new D2TxtParser();
|
||||
|
||||
$armor = $parser->parseFile($files->getFile('Armor'));
|
||||
$weapon = $parser->parseFile($files->getFile('Weapons'));
|
||||
$prop = $parser->parseFile($files->getFile('Properties'));
|
||||
$uni = $parser->parseFile($files->getFile('UniqueItems'));
|
||||
$sets = $parser->parseFile($files->getFile('Sets'));
|
||||
$setitems = $parser->parseFile($files->getFile('SetItems'));
|
||||
|
||||
$u = $files->getFile("UniqueItems");
|
||||
$s = $files->getFile("SetItems");
|
||||
|
||||
$files = $txtParser->getFiles();
|
||||
$u = $files['u'];
|
||||
|
||||
if (!empty($_POST)) {
|
||||
// Saver Object
|
||||
require_once './src/saveFile.php';
|
||||
$saver = new saveFile();
|
||||
require_once './src/D2SaveFile.php';
|
||||
$saver = new D2SaveFile();
|
||||
|
||||
// save files
|
||||
$saver->saveTxt($u);
|
||||
$saver->saveTblEnries($path);
|
||||
if ($_POST['formtype'] == "uniqueitems") {
|
||||
$saver->save($u);
|
||||
$saver->saveTblEnries("UniqueItems.tbl.txt");
|
||||
}
|
||||
if ($_POST['formtype'] == "setitems") {
|
||||
|
||||
|
||||
|
||||
|
||||
$saver->save($s);
|
||||
$saver->saveTblEnries("SetItems.tbl.txt");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// load app
|
||||
require_once './src/D2UM.php';
|
||||
require_once './src/index.php';
|
||||
} else {
|
||||
header('Location: ./src/config.php');
|
||||
header('Location: ./src/D2Config.php');
|
||||
}
|
||||
?>
|
38
res/app.js
38
res/app.js
@ -1,14 +1,3 @@
|
||||
function val() {
|
||||
w = document.getElementById("w-select");
|
||||
w.value = '';
|
||||
w.required = "";
|
||||
}
|
||||
function val2() {
|
||||
a = document.getElementById("a-select");
|
||||
a.value = '';
|
||||
a.required = "";
|
||||
}
|
||||
|
||||
$(document).ready(function () {
|
||||
$('.form-text').hide();
|
||||
$('.help').click(function () {
|
||||
@ -23,4 +12,31 @@ $(document).ready(function () {
|
||||
$('option[disabled="disabled"]').show();
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
$('.w-select').change(function(){
|
||||
$('.a-select').each(function(i,v){
|
||||
v.value = '';
|
||||
v.required = '';
|
||||
});
|
||||
|
||||
x = $(this).find(':selected').text();
|
||||
y = document.getElementById('item');
|
||||
y.value = x;
|
||||
|
||||
});
|
||||
|
||||
$('.a-select').change(function(){
|
||||
$('.w-select').each(function(i,v){
|
||||
v.value = '';
|
||||
v.required = '';
|
||||
});
|
||||
|
||||
|
||||
x = $(this).find(':selected').text();
|
||||
y = document.getElementById('item');
|
||||
y.value = x;
|
||||
|
||||
|
||||
});
|
||||
});
|
@ -37,7 +37,9 @@
|
||||
}
|
||||
|
||||
|
||||
|
||||
ul {
|
||||
font-family: Lato;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 108px;
|
||||
@ -50,7 +52,7 @@ input {
|
||||
|
||||
.form-text,
|
||||
.help {
|
||||
font-size: 11px;
|
||||
font-size: 0.9rem;
|
||||
color: #999;
|
||||
}
|
||||
|
||||
@ -70,7 +72,7 @@ option {
|
||||
}
|
||||
|
||||
.row {
|
||||
padding: 0 5px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
.col-2,
|
||||
@ -84,15 +86,16 @@ option {
|
||||
margin: 30px auto;
|
||||
padding: 10px;
|
||||
background: white;
|
||||
}
|
||||
|
||||
body {
|
||||
background: black;
|
||||
font-family: "Exocet";
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
footer, .options {
|
||||
body {
|
||||
background: black;
|
||||
|
||||
}
|
||||
|
||||
footer, .options, ul *, li * {
|
||||
font-family: Lato !important;
|
||||
|
||||
|
||||
|
63
src/D2Config.php
Normal file
63
src/D2Config.php
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
D2UniqueMaker
|
||||
GPLv2 (C) <2021> <HashCasper>
|
||||
|
||||
This file is part of D2UM.
|
||||
|
||||
D2UM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
D2UM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with D2UM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
if (!empty($_POST)) {
|
||||
|
||||
// write the d2um.conf file and replace \ with \\
|
||||
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
||||
$path = rtrim($_POST['path'], "\\");
|
||||
$path = str_replace("\\", "\\\\", $path);
|
||||
$path .= '\\\\data\\\\global\\\\excel\\\\';
|
||||
file_put_contents("../d2um.conf", $path);
|
||||
} else {
|
||||
|
||||
file_put_contents("../d2um.conf", $_POST['path'].DIRECTORY_SEPARATOR);
|
||||
}
|
||||
|
||||
header('Location: /');
|
||||
}
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<?php
|
||||
/* Require the <head> section */
|
||||
require_once "head.php";
|
||||
?>
|
||||
<body style="text-align: center; background: white;">
|
||||
<div class="container container-top">
|
||||
<h1><img src="/img/Diablo2.png" style="float:left">D2 Item Maker, v3. By HashCasper</h1>
|
||||
<a class="btn" style="color:red; font-size: 18px;float:right;" href="/">X</a>
|
||||
<hr style="margin: 60px;">
|
||||
<h2>Select Mod folder</h2>
|
||||
<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>
|
||||
|
||||
<div style="margin-top: 20px;">
|
||||
<form enctype="multipart/form-data" style="font-family: Lato; font-size: 14pt;" action="" method="post">
|
||||
<label for="path">Choose PATH</label>
|
||||
<input id="path" style="width: 420px;" required="required" name="path" type="text">
|
||||
<input type="submit" value="Save" name="submit">
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
133
src/D2Files.php
Normal file
133
src/D2Files.php
Normal file
@ -0,0 +1,133 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
D2UniqueMaker
|
||||
GPLv2 (C) <2021> <HashCasper>
|
||||
|
||||
This file is part of D2UM.
|
||||
|
||||
D2UM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
D2UM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with D2UM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
class D2Files {
|
||||
|
||||
public $files = [
|
||||
"Aiparms" => "Aiparms.txt",
|
||||
"Arena" => "Arena.txt",
|
||||
"Armor" => "Armor.txt",
|
||||
"ArmType" => "ArmType.txt",
|
||||
"automagic" => "automagic.txt",
|
||||
"AutoMap" => "AutoMap.txt",
|
||||
"belts" => "belts.txt",
|
||||
"bodylocs" => "bodylocs.txt",
|
||||
"Books" => "Books.txt",
|
||||
"CharStats" => "CharStats.txt",
|
||||
"CharTemplate" => "CharTemplate.txt",
|
||||
"colors" => "colors.txt",
|
||||
"CompCode" => "CompCode.txt",
|
||||
"Composit" => "Composit.txt",
|
||||
"CubeMain" => "CubeMain.txt",
|
||||
"CubeMod" => "CubeMod.txt",
|
||||
"cubetype" => "cubetype.txt",
|
||||
"DifficultyLevels" => "DifficultyLevels.txt",
|
||||
"ElemTypes" => "ElemTypes.txt",
|
||||
"Events" => "Events.txt",
|
||||
"Experience" => "Experience.txt",
|
||||
"gamble" => "gamble.txt",
|
||||
"Gems" => "Gems.txt",
|
||||
"hiredesc" => "hiredesc.txt",
|
||||
"Hireling" => "Hireling.txt",
|
||||
"HitClass" => "HitClass.txt",
|
||||
"Inventory" => "Inventory.txt",
|
||||
"ItemRatio" => "ItemRatio.txt",
|
||||
"ItemStatCost" => "ItemStatCost.txt",
|
||||
"ItemTypes" => "ItemTypes.txt",
|
||||
"Levels" => "Levels.txt",
|
||||
"lowqualityitems" => "lowqualityitems.txt",
|
||||
"LvlMaze" => "LvlMaze.txt",
|
||||
"LvlPrest" => "LvlPrest.txt",
|
||||
"LvlSub" => "LvlSub.txt",
|
||||
"LvlTypes" => "LvlTypes.txt",
|
||||
"LvlWarp" => "LvlWarp.txt",
|
||||
"MagicPrefix" => "MagicPrefix.txt",
|
||||
"MagicSuffix" => "MagicSuffix.txt",
|
||||
"Misc" => "Misc.txt",
|
||||
"MissCalc" => "MissCalc.txt",
|
||||
"Missiles" => "Missiles.txt",
|
||||
"MonAi" => "MonAi.txt",
|
||||
"MonEquip" => "MonEquip.txt",
|
||||
"MonItemPercent" => "MonItemPercent.txt",
|
||||
"MonLvl" => "MonLvl.txt",
|
||||
"MonMode" => "MonMode.txt",
|
||||
"MonName" => "MonName.txt",
|
||||
"MonPlace" => "MonPlace.txt",
|
||||
"MonPreset" => "MonPreset.txt",
|
||||
"MonProp" => "MonProp.txt",
|
||||
"MonSeq" => "MonSeq.txt",
|
||||
"MonSounds" => "MonSounds.txt",
|
||||
"MonStats2" => "MonStats2.txt",
|
||||
"MonStats" => "MonStats.txt",
|
||||
"MonType" => "MonType.txt",
|
||||
"MonUMod" => "MonUMod.txt",
|
||||
"Npc" => "Npc.txt",
|
||||
"Objects" => "Objects.txt",
|
||||
"objgroup" => "objgroup.txt",
|
||||
"ObjMode" => "ObjMode.txt",
|
||||
"ObjType" => "ObjType.txt",
|
||||
"Overlay" => "Overlay.txt",
|
||||
"PetType" => "PetType.txt",
|
||||
"PlayerClass" => "PlayerClass.txt",
|
||||
"PlrMode" => "PlrMode.txt",
|
||||
"PlrType" => "PlrType.txt",
|
||||
"Properties" => "Properties.txt",
|
||||
"qualityitems" => "qualityitems.txt",
|
||||
"RarePrefix" => "RarePrefix.txt",
|
||||
"RareSuffix" => "RareSuffix.txt",
|
||||
"Runes" => "Runes.txt",
|
||||
"SetItems" => "SetItems.txt",
|
||||
"Sets" => "Sets.txt",
|
||||
"Shrines" => "Shrines.txt",
|
||||
"SkillCalc" => "SkillCalc.txt",
|
||||
"SkillDesc" => "SkillDesc.txt",
|
||||
"Skills" => "Skills.txt",
|
||||
"SoundEnviron" => "SoundEnviron.txt",
|
||||
"Sounds" => "Sounds.txt",
|
||||
"States" => "States.txt",
|
||||
"StorePage" => "StorePage.txt",
|
||||
"SuperUniques" => "SuperUniques.txt",
|
||||
"TreasureClassEx" => "TreasureClassEx.txt",
|
||||
"TreasureClass" => "TreasureClass.txt",
|
||||
"UniqueAppellation" => "UniqueAppellation.txt",
|
||||
"UniqueItems" => "UniqueItems.txt",
|
||||
"UniquePrefix" => "UniquePrefix.txt",
|
||||
"UniqueSuffix" => "UniqueSuffix.txt",
|
||||
"UniqueTitle" => "UniqueTitle.txt",
|
||||
"WeaponClass" => "WeaponClass.txt",
|
||||
"Weapons" => "Weapons.txt"
|
||||
];
|
||||
|
||||
|
||||
public function __construct() {
|
||||
|
||||
}
|
||||
|
||||
public function getFiles(){
|
||||
return $this->files;
|
||||
}
|
||||
|
||||
public function getFile($name){
|
||||
return $this->files[$name];
|
||||
}
|
||||
|
||||
}
|
8
src/D2Functions.php
Normal file
8
src/D2Functions.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
function dd($var) {
|
||||
echo "<pre>";
|
||||
var_dump($var);
|
||||
echo "</pre>";
|
||||
die();
|
||||
}
|
263
src/D2SM.php
Normal file
263
src/D2SM.php
Normal file
@ -0,0 +1,263 @@
|
||||
<div style="height: 40px; margin: 40px;"><h1>Set Item Maker</h1></div>
|
||||
<form action="/index.php" method="post">
|
||||
|
||||
<!-- First row -->
|
||||
<div class="form-group row">
|
||||
|
||||
<div class="col-4">
|
||||
<div class="input-group">
|
||||
<input id="index" name="index" placeholder="Index (Item Name)" type="text" aria-describedby="indexHelpBlock" required="required" class="form-control">
|
||||
</div><span class="help">[show/hide Help]</span>
|
||||
<span id="indexHelpBlock" class="form-text text-muted">Index: string key to item's name in a .tbl file</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-4">
|
||||
<div class="input-group">
|
||||
<input id="set" name="set" placeholder="Set" type="text" aria-describedby="setHelpBlock" required="required" class="form-control">
|
||||
</div><span class="help">[show/hide Help]</span>
|
||||
<span id="indexHelpBlock" class="form-text text-muted">
|
||||
Set: string key to the index field in Sets.txt - the set the item is a part of.
|
||||
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-2" style="background: #ccd;">
|
||||
<label for="a-select">Armor</label>
|
||||
<select class="a-select custom-select" name="code[]" id="" required="required">
|
||||
<option value=""></option>
|
||||
<?php
|
||||
foreach ($armor as $a)
|
||||
if ($a['spawnable']) {
|
||||
echo '<option value="' . $a['code'] . '">' . $a['name'] . '</option>';
|
||||
} else {
|
||||
echo '<option disabled value="' . $a['code'] . '">' . $a['name'] . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-2" style="background: #ddc;">
|
||||
<label for="w-select">Weapon</label>
|
||||
<select class="w-select custom-select" name="code[]" id="w-select" required="required">
|
||||
<option value=""></option>
|
||||
<?php
|
||||
foreach ($weapon as $a) {
|
||||
echo '<option value="' . $a['code'] . '">' . $a['name'] . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<input id="item" type="hidden" name="item" value="">
|
||||
<!-- Second row -->
|
||||
|
||||
<div class="form-group row">
|
||||
|
||||
<div class="col-2" style="background: #dec;">
|
||||
<div class="input-group">
|
||||
<input id="rarity" name="rarity" placeholder="Rarity" type="text" aria-describedby="rarityHelpBlock" required="required" class="form-control">
|
||||
</div><span class="help">[show/hide Help]</span>
|
||||
<span id="rarityHelpBlock" class="form-text text-muted">Rarity: Chance to pick this set item if more then one set item of the same base item exist, this uses the common rarity/total_rarity formula, so if you have two set rings, one with a rarity of 100 the other with a rarity of 1, then the first will drop 100/101 percent of the time (99%) and the other will drop 1/101 percent of the time (1%), rarity can be anything between 0 and 255.</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-2" style="background: #edd;">
|
||||
<input id="lvl" name="lvl" placeholder="Lvl" type="text" aria-describedby="lvlHelpBlock" required="required" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="lvlHelpBlock" class="form-text text-muted">The quality level of this set item, monsters, cube recipes, vendors, objects and the like most be at least this level or higher to be able to drop this item, otherwise they would drop a magical item with twice normal durability.</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-2" style="background: #edd;">
|
||||
<input id="lvlreq" name="lvlreq" placeholder="Level Required" type="text" aria-describedby="lvlreqHelpBlock" required="required" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="lvlreqHelpBlock" class="form-text text-muted">lvl req: The character level required to use this set item.</span>
|
||||
</div>
|
||||
|
||||
<div class="col-2">
|
||||
<input id="chrtransform" name="chrtransform" placeholder="ChrTransform" type="text" aria-describedby="chrtransformHelpBlock" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="chrtransformHelpBlock" class="form-text text-muted">ChrTransform: palette shift to apply to the the DCC component-file and the DC6 flippy-file (whenever or not the color shift will apply is determined by Weapons.txt, Armor.txt or Misc.txt). This is an ID pointer from Colors.txt.</span>
|
||||
</div>
|
||||
|
||||
<div class="col-2">
|
||||
<input id="invtransform" name="invtransform" type="text" placeholder="InvTransform" aria-describedby="invtransformHelpBlock" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="invtransformHelpBlock" class="form-text text-muted">InvTransform: palette shift to apply to the the DC6 inventory-file (whenever or not the color shift will apply is determined by Weapons.txt, Armor.txt or Misc.txt). This is an ID pointer from Colors.txt.</span>
|
||||
</div>
|
||||
|
||||
<div class="col-2" style="background: #eef;">
|
||||
<input id="invfile" name="invfile" placeholder="InvFile" type="text" aria-describedby="invfileHelpBlock" required="required" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="invfileHelpBlock" class="form-text text-muted">InvFile: overrides the invfile and uniqueinvfile specified in Weapons.txt, Armor.txt or Misc.txt for the base item. This field contains the file name of the DC6 inventory graphic.</span>
|
||||
</div>
|
||||
|
||||
<div class="col-2" style="background: #eef;">
|
||||
<input id="flippyfile" name="flippyfile" placeholder="Flippy File" type="text" aria-describedby="flippyfileHelpBlock" class="form-control" required="required"><span class="help">[show/hide Help]</span>
|
||||
<span id="flippyfileHelpBlock" class="form-text text-muted">FlippyFile: overrides the flippyfile specified in Weapons.txt, Armor.txt or Misc.txt for the base item. This field contains the file name of the DC6 flippy animation.</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-2" style="background: #fed;">
|
||||
<input id="dropsound" name="dropsound" placeholder="DropSound" type="text" aria-describedby="dropsoundHelpBlock" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="dropsoundHelpBlock" class="form-text text-muted">DropSound: overrides the dropsound (the sound played when the item hits the ground) specified in Weapons.txt, Armor.txt or Misc.txt for the base item. This field contains an ID pointer from Sounds.txt.</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-2" style="background: #fed;">
|
||||
<input id="dropsfxframe" name="dropsfxframe" placeholder="DropSfxFrame" type="text" aria-describedby="dropsfxframeHelpBlock" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="dropsfxframeHelpBlock" class="form-text text-muted">DropSfxFrame: how many frames after the flippy animation starts playing will the associated drop sound start to play. This overrides the values in Weapons.txt, Armor.txt or Misc.txt.</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-2" style="background: #fed;">
|
||||
<input id="usesound" name="usesound" placeholder="UseSound" type="text" aria-describedby="usesoundHelpBlock" class="form-control"><span class="help">[show/hide Help]</span><span id="usesoundHelpBlock" class="form-text text-muted">UseSound: overrides the usesound (the sound played when the item is consumed by the player) specified in Weapons.txt, Armor.txt or Misc.txt for the base item. This field contains an ID pointer from Sounds.txt.</span>
|
||||
</div>
|
||||
|
||||
<div class="col-2" style="background: #def;">
|
||||
Cost Mult:
|
||||
<input id="costmult" value="5" name="costmult" placeholder="Cost Mult" type="text" aria-describedby="costmultHelpBlock" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="costmultHelpBlock" class="form-text text-muted">Cost Mult: the base item's price is multiplied by this value when sold, repaired or bought from a vendor.</span>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-2" style="background: #def;">
|
||||
Cost Add:
|
||||
<input id="costadd" value="5000" name="costadd" placeholder="Cost Add" type="text" aria-describedby="costaddHelpBlock" required="required" class="form-control"><span class="help">[show/hide Help]</span>
|
||||
<span id="costaddHelpBlock" class="form-text text-muted">Cost Add: after the price has been multiplied, this amount of gold is added to the price on top.</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-3" style="background: #ffc">
|
||||
<p>Add Func:</p>
|
||||
<div class="custom-control custom-radio custom-control-inline">
|
||||
<input name="addfunc" id="addfunc_0" type="radio" aria-describedby="addfuncHelpBlock" required="required" class="custom-control-input" value="0">
|
||||
<label for="addfunc_0" class="custom-control-label">0</label>
|
||||
</div>
|
||||
<div class="custom-control custom-radio custom-control-inline">
|
||||
<input name="addfunc" id="addfunc_1" type="radio" aria-describedby="addfuncHelpBlock" required="required" class="custom-control-input" value="1">
|
||||
<label for="addfunc_1" class="custom-control-label">1</label>
|
||||
</div>
|
||||
<div class="custom-control custom-radio custom-control-inline">
|
||||
<input name="addfunc" id="addfunc_2" type="radio" aria-describedby="addfuncHelpBlock" required="required" class="custom-control-input" value="2">
|
||||
<label for="addfunc_2" class="custom-control-label">2</label>
|
||||
</div><br> <span class="help">[show/hide Help]</span>
|
||||
<span id="addfuncHelpBlock" class="form-text text-muted">add func: a property mode field that controls how the variable attributes will appear and be functional on a set item. See the appendix for further details about this field's effects.<ol>
|
||||
<li>no green properties on item (apropxx will appear as a blue attribute on the list instead).</li>
|
||||
<li>green properties (apropxx) depend on which other items from the set are equipped.</li>
|
||||
<li>green properties (apropxx) depend on how many other items from the set are equipped.</li>
|
||||
</ol></span>
|
||||
</div>
|
||||
|
||||
<div class="form-group row">
|
||||
<div class="col-12">
|
||||
<h3 style="color: blue;">Blue Attributes</h3>
|
||||
</div>
|
||||
<?php
|
||||
$html = '';
|
||||
foreach (range(1, 9) as $p) {
|
||||
?>
|
||||
<div class="col-2" style="background: #D6DDFF;">
|
||||
<select id="prop<?php echo $p ?>-select" name="prop<?php echo $p ?>" class="custom-select">
|
||||
<option class="PropFirst" value="">Prop<?php echo $p ?></option>
|
||||
<?php
|
||||
foreach ($prop as $a) {
|
||||
echo '<option value="' . $a['code'] . '">' . $a['code'] . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<input id="par<?php echo $p ?>" name="par<?php echo $p ?>" placeholder="Par<?php echo $p ?>" type="number" aria-describedby="par<?php echo $p ?>HelpBlock" class="form-control par<?php echo $p ?>">
|
||||
|
||||
<input id="min<?php echo $p ?>" name="min<?php echo $p ?>" placeholder="min<?php echo $p ?>" type="number" aria-describedby="min<?php echo $p ?>HelpBlock" class="form-control min<?php echo $p ?>">
|
||||
|
||||
<input id="max<?php echo $p ?>" name="max<?php echo $p ?>" placeholder="max<?php echo $p ?>" type="number" aria-describedby="max<?php echo $p ?>HelpBlock" class="form-control max<?php echo $p ?>">
|
||||
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group row">
|
||||
<div class="col-12">
|
||||
<h3 style="color: green">Green Attributes</h3>
|
||||
<p style="font-family: lato;">Note: Edit boxes in Vertical Order. <br>[aprop1a, aprop1b][aprop2a, aprop2b]</p>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
$html = '';
|
||||
foreach (range(1, 5) as $p) {
|
||||
?>
|
||||
<div class="col-2" style="background: #DDFFD6">
|
||||
<select id="aprop<?php echo $p ?>a-select" name="aprop<?php echo $p ?>a" class="custom-select">
|
||||
<option class="aPropFirst" value="">aProp<?php echo $p ?>a</option>
|
||||
<?php
|
||||
foreach ($prop as $a) {
|
||||
echo '<option value="' . $a['code'] . '">' . $a['code'] . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<input id="apar<?php echo $p ?>a" name="apar<?php echo $p ?>a" placeholder="apar<?php echo $p ?>a" type="number" aria-describedby="apar<?php echo $p ?>aHelpBlock" class="form-control apar<?php echo $p ?>a">
|
||||
|
||||
<input id="amin<?php echo $p ?>a" name="amin<?php echo $p ?>a" placeholder="amin<?php echo $p ?>a" type="number" aria-describedby="amin<?php echo $p ?>aHelpBlock" class="form-control amin<?php echo $p ?>a">
|
||||
|
||||
<input id="amax<?php echo $p ?>a" name="amax<?php echo $p ?>a" placeholder="amax<?php echo $p ?>a" type="number" aria-describedby="amax<?php echo $p ?>aHelpBlock" class="form-control amax<?php echo $p ?>a">
|
||||
<i class="fa fa-arrow-down" aria-hidden="true"></i>
|
||||
<!-- b -->
|
||||
|
||||
<div style="margin-top: 0px;">
|
||||
<i class="fa fa-arrow-down" aria-hidden="true"></i>
|
||||
|
||||
<select id="bprop<?php echo $p ?>b-select" name="aprop<?php echo $p ?>b" class="custom-select">
|
||||
<option class="aPropFirst" value="">aProp<?php echo $p ?>b</option>
|
||||
<?php
|
||||
foreach ($prop as $a) {
|
||||
echo '<option value="' . $a['code'] . '">' . $a['code'] . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
|
||||
<input id="apar<?php echo $p ?>b" name="apar<?php echo $p ?>b" placeholder="apar<?php echo $p ?>b" type="number" aria-describedby="apar<?php echo $p ?>aHelpBlock" class="form-control apar<?php echo $p ?>b">
|
||||
|
||||
<input id="amin<?php echo $p ?>b" name="amin<?php echo $p ?>b" placeholder="amin<?php echo $p ?>b" type="number" aria-describedby="amin<?php echo $p ?>aHelpBlock" class="form-control amin<?php echo $p ?>b">
|
||||
|
||||
<input id="amax<?php echo $p ?>b" name="amax<?php echo $p ?>b" placeholder="amax<?php echo $p ?>b" type="number" aria-describedby="amax<?php echo $p ?>aHelpBlock" class="form-control amax<?php echo $p ?>b">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<span class="help">[show/hide Help]</span>
|
||||
<span id="apropHelpBlock" class="form-text text-muted">
|
||||
<p><strong>aprop1a,aprop1b to aprop5a,aprop5b:</strong> An ID pointer of a property from Properties.txt, these columns control each of the five pairs of different variable (green) modifiers a set item can grant you at most.</p>
|
||||
<p><strong>apar1a,apar1b to apar5a,apar5b:</strong> The parameter passed on to the associated property, this is used to pass skill IDs, state IDs, monster IDs, montype IDs and the like on to the properties that require them, these fields support calculations.</p>
|
||||
<p><strong>amin1a,amin1b to amin5a,amin5b:</strong> Minimum value to assign to the associated property. Certain properties have special interpretations based on stat encoding (e.g. chance-to-cast and charged skills). See the File Guide for Properties.txt and ItemStatCost.txt for further details.</p>
|
||||
<p><strong>amax1a,amax1b to amax5a,amax5b:</strong> Maximum value to assign to the associated property. Certain properties have special interpretations based on stat encoding (e.g. chance-to-cast and charged skills). See the File Guide for Properties.txt and ItemStatCost.txt for further details.</p>
|
||||
|
||||
|
||||
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
||||
<input type="hidden" name="*eol" value="0">
|
||||
<?php include 'optionSubmit.php'; ?>
|
||||
|
||||
<!-- distinguish between forms -->
|
||||
<input type="hidden" name="formtype" value="setitems">
|
||||
|
||||
|
||||
</form>
|
||||
<ul>
|
||||
<li><a href="https://d2mods.info/forum/kb/viewarticle?a=348">SetItems.txt</a></li>
|
||||
<li><a href="https://d2mods.info/forum/kb/viewarticle?a=349">Sets.txt</a></li>
|
||||
<li><a href="https://d2mods.info/forum/viewtopic.php?t=34455">Intro to the D2 Files and File Guide/Tutorial Masterlist</a></li>
|
||||
<li><a href="https://d2mods.info/index.php?ind=reviews&op=entry_view&iden=2">Armor.txt by Kingpin et al. [ex Nefarius] (accurate)</a></li>
|
||||
<li><a href="https://d2mods.info/index.php?ind=reviews&op=entry_view&iden=345">Properties.txt by Joel (revised by Myhrginoc 8/22/06)</a></li>
|
||||
<li><a href="https://d2mods.info/index.php?ind=reviews&op=entry_view&iden=346">Weapons.txt by Kingpin and Ric Faith (accurate)</a></li>
|
||||
|
||||
</ul>
|
@ -20,11 +20,11 @@
|
||||
along with D2UM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
class saveFile {
|
||||
class D2SaveFile {
|
||||
|
||||
public $path;
|
||||
|
||||
public function saveTxt($file) {
|
||||
public function save($file) {
|
||||
$post = $_POST;
|
||||
if (!empty($post['code'])) {
|
||||
array_filter($post['code']);
|
||||
@ -49,24 +49,28 @@ class saveFile {
|
||||
// if dir doesn't exist, create it
|
||||
if (!is_dir($this->path.DIRECTORY_SEPARATOR."backup")) mkdir($this->path."backup", 0700);
|
||||
|
||||
// set new file location to copy to (backup)
|
||||
$newfile = $this->path.DIRECTORY_SEPARATOR."backup".DIRECTORY_SEPARATOR.$file;
|
||||
$oldfile = $this->path.$file;
|
||||
|
||||
if (!copy($file, $newfile)) {
|
||||
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
||||
// set new file location to copy to (backup)
|
||||
$newfile = $this->path."\\backup\\$file";
|
||||
} else {
|
||||
$newfile = $this->path."backup/$file";
|
||||
}
|
||||
if (!copy($oldfile, $newfile)) {
|
||||
echo "Failed to create backup of $file...\n";
|
||||
}
|
||||
}
|
||||
|
||||
public function saveTblEnries() {
|
||||
public function saveTblEnries($filename) {
|
||||
$post = $_POST;
|
||||
|
||||
if (!is_dir($this->path."tblEntries")) mkdir($this->path."tblEntries", 0700);
|
||||
|
||||
// write for .tbl
|
||||
$str[0] = $post['index'];
|
||||
$str[1] = $post['index'];
|
||||
$fp = fopen($this->path.DIRECTORY_SEPARATOR.'tblEntries'. DIRECTORY_SEPARATOR. "UniqueItemsTblEntries.txt", 'a+');
|
||||
fputcsv($fp, $str, "\t");
|
||||
$str = '"'.$post['index'].'"'."\t".'"'.$post['index'].'"'.PHP_EOL;
|
||||
$file = $this->path."\\tblEntries\\$filename";
|
||||
file_put_contents($file, $str, FILE_APPEND);
|
||||
}
|
||||
|
||||
public function __construct() {
|
@ -23,18 +23,17 @@
|
||||
This is a generic D2 Txt Parser
|
||||
*/
|
||||
|
||||
class txtParser {
|
||||
class D2TxtParser {
|
||||
|
||||
public $path = TXT_PATH;
|
||||
// Files specific to Unique Items
|
||||
|
||||
public $u = "UniqueItems.txt";
|
||||
public $w = "Weapons.txt";
|
||||
public $a = "Armor.txt";
|
||||
public $p = "Properties.txt";
|
||||
public function __construct() {
|
||||
}
|
||||
|
||||
public function parseFile($file){
|
||||
return $this->toPHP($file);
|
||||
|
||||
public function getFiles(){
|
||||
return ['u'=>$this->u, 'w'=>$this->w, 'a'=>$this->a, 'p'=>$this->p];
|
||||
}
|
||||
|
||||
function toPHP($file) {
|
||||
@ -50,15 +49,5 @@ class txtParser {
|
||||
return $data;
|
||||
}
|
||||
|
||||
public function getData() {
|
||||
|
||||
$data['a'] = $this->toPHP($this->a);
|
||||
$data['w'] = $this->toPHP($this->w);
|
||||
$data['p'] = $this->toPHP($this->p);
|
||||
$data['u'] = $this->toPHP($this->u);
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
}
|
||||
?>
|
||||
}
|
||||
?>
|
47
src/D2UM.php
47
src/D2UM.php
@ -1,15 +1,6 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<?php
|
||||
/*Require the <head> section*/
|
||||
require_once "head.php";
|
||||
?>
|
||||
<div style="height: 40px; margin: 40px;"><h1>Unique Item Maker</h1></div>
|
||||
|
||||
<body>
|
||||
<div class="container container-top">
|
||||
<h1><img src="img/Diablo2.png" style="float:left">D2UM: Diablo 2 Unique Maker, v2. By HashCasper</h1>
|
||||
|
||||
<form action="/index.php" method="post">
|
||||
<form action="/index.php" method="post">
|
||||
<div class="form-group row">
|
||||
|
||||
<div class="col-3">
|
||||
@ -105,7 +96,7 @@
|
||||
|
||||
<div class="col-2" style="background: #ccd;">
|
||||
<label for="a-select">Armor</label>
|
||||
<select class="custom-select" onChange="val();" name="code[]" id="a-select" required="required">
|
||||
<select class="a-select custom-select" name="code[]" id="" required="required">
|
||||
<option value=""></option>
|
||||
<?php
|
||||
foreach ($armor as $a)
|
||||
@ -121,7 +112,7 @@
|
||||
|
||||
<div class="col-2" style="background: #ddc;">
|
||||
<label for="w-select">Weapon</label>
|
||||
<select class="custom-select" onChange="val2();" name="code[]" id="w-select" required="required">
|
||||
<select class="w-select custom-select" name="code[]" id="" required="required">
|
||||
<option value=""></option>
|
||||
<?php
|
||||
foreach ($weapon as $a) {
|
||||
@ -226,35 +217,17 @@
|
||||
?>
|
||||
|
||||
<input type="hidden" name="*eol" value="0">
|
||||
<!-- distinguish between forms -->
|
||||
<input type="hidden" name="formtype" value="uniqueitems">
|
||||
|
||||
</div>
|
||||
<div class="form-group row options" style="background: none;">
|
||||
<div class="col-9" style="background: none;">
|
||||
<p>Options: <br>
|
||||
(Hide 'unspawnable' items) <input type="checkbox" id="op1" name="opt-hide-disabled" checked>
|
||||
<a style="font-weight: bold;" class="btn" href="/src/config.php">Recofigure Mod Path</a>
|
||||
<?php require_once 'optionSubmit.php'; ?>
|
||||
</form>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-3" style="background: none;">
|
||||
<button name="submit" type="submit" class="btn btn-success">Save Item</button>
|
||||
<button name="submit" type="reset" class="btn btn-danger">Clear</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<footer>
|
||||
<h1 id="credits-">Credits:</h1>
|
||||
<p>Thanks Phrozen Keep! My favorite mod community since 2002!</p>
|
||||
<ul>
|
||||
<ul>
|
||||
<li><a href="https://d2mods.info/forum/viewtopic.php?t=34455">Intro to the D2 Files and File Guide/Tutorial Masterlist</a></li>
|
||||
<li><a href="https://d2mods.info/index.php?ind=reviews&op=entry_view&iden=2">Armor.txt by Kingpin et al. [ex Nefarius] (accurate)</a></li>
|
||||
<li><a href="https://d2mods.info/index.php?ind=reviews&op=entry_view&iden=345">Properties.txt by Joel (revised by Myhrginoc 8/22/06)</a></li>
|
||||
<li><a href="https://d2mods.info/index.php?ind=reviews&op=entry_view&iden=346">Weapons.txt by Kingpin and Ric Faith (accurate)</a></li>
|
||||
<li><a href="https://d2mods.info/index.php?ind=reviews&op=entry_view&iden=386">UniqueItems.txt by Nefarius (accurate)</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</ul>
|
3
src/bottom.php
Normal file
3
src/bottom.php
Normal file
@ -0,0 +1,3 @@
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,35 +0,0 @@
|
||||
<?php
|
||||
if (!empty($_POST)) {
|
||||
|
||||
if (DIRECTORY_SEPARATOR === '/') {
|
||||
file_put_contents("../d2um.conf", $_POST['path'].DIRECTORY_SEPARATOR);
|
||||
}
|
||||
|
||||
if (DIRECTORY_SEPARATOR === '\\') {
|
||||
file_put_contents("../d2um.conf", $_POST['path'].DIRECTORY_SEPARATOR.'data'.DIRECTORY_SEPARATOR.'global'.DIRECTORY_SEPARATOR.'excel'.DIRECTORY_SEPARATOR);
|
||||
}
|
||||
header('Location: /');
|
||||
}
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<?php
|
||||
/* Require the <head> section */
|
||||
require_once "head.php";
|
||||
?>
|
||||
<body style="text-align: center; background: white;">
|
||||
<div class="container container-top">
|
||||
<h1><img src="/img/Diablo2.png" style="float:left">D2UM: Diablo 2 Unique Maker, v2. By HashCasper</h1>
|
||||
<hr style="margin: 60px;">
|
||||
<h2>Select Mod TXT folder</h2>
|
||||
<p style="font-family: lato">Input path to D2 Mod Directory.</p>
|
||||
|
||||
<div style="margin-top: 20px;">
|
||||
<form enctype="multipart/form-data" style="font-family: Lato; font-size: 11px;" action="" method="post">
|
||||
<label for="path">Choose PATH</label>
|
||||
<input id="path" style="width: 420px;" required="required" name="path" type="text">
|
||||
<input type="submit" value="Write Config" name="submit">
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
4
src/footer.php
Normal file
4
src/footer.php
Normal file
@ -0,0 +1,4 @@
|
||||
<footer>
|
||||
<h1 id="credits-">Credits:</h1>
|
||||
<p><a target="_blank" href="https://d2mods.info">Thanks Phrozen Keep! My favorite mod community since 2002!</a></p>
|
||||
</footer>
|
@ -1,10 +0,0 @@
|
||||
<?php
|
||||
|
||||
function db() {
|
||||
echo "<pre>";
|
||||
var_dump($post);
|
||||
foreach ($post as $p) {
|
||||
echo "$p\t";
|
||||
}
|
||||
echo "</pre>";
|
||||
}
|
@ -43,5 +43,5 @@ along with D2UM. If not, see <http://www.gnu.org/licenses/>.
|
||||
<script src="/res/app.js"></script>
|
||||
|
||||
</script>
|
||||
<title>Unique Maker</title>
|
||||
<title>D2 Item Maker</title>
|
||||
</head>
|
50
src/header.php
Normal file
50
src/header.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
D2UniqueMaker
|
||||
GPLv2 (C) <2021> <HashCasper>
|
||||
|
||||
This file is part of D2UM.
|
||||
|
||||
D2UM is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
D2UM is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with D2UM. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<?php
|
||||
/* Require the <head> section */
|
||||
require_once "head.php";
|
||||
?>
|
||||
|
||||
<body>
|
||||
<div class="container container-top">
|
||||
<div>
|
||||
<img src="img/Diablo2.png" style="float:right"><h2 syle="font-weight: 900">D2 Item Maker, v3. By HashCasper</h2><br><br>
|
||||
<ul class="nav nav-tabs" id="Tabs" role="tablist">
|
||||
<li class="nav-item" role="presentation">
|
||||
<a class="nav-link active" id="Unique-tab" data-toggle="tab" href="#Unique" role="tab" aria-controls="Unique" aria-selected="true">UniqueItems.txt</a>
|
||||
</li>
|
||||
<li class="nav-item" role="presentation">
|
||||
<a class="nav-link" id="Set-tab" data-toggle="tab" href="#Set" role="tab" aria-controls="Set" aria-selected="false">SetItems.txt</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="tab-content" id="TabContent">
|
||||
<div class="tab-pane fade show active" id="Unique" role="tabpanel" aria-labelledby="Unique-tab">
|
||||
<?php require_once 'D2UM.php'; ?>
|
||||
</div>
|
||||
<div class="tab-pane fade" id="Set" role="tabpanel" aria-labelledby="Set-tab">
|
||||
<?php require_once 'D2SM.php'; ?>
|
||||
</div>
|
||||
</div>
|
5
src/index.php
Normal file
5
src/index.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
require_once 'header.php'; // loads head.php inside. Further loads D2UM/SM
|
||||
require_once 'footer.php';
|
||||
require_once 'bottom.php';
|
17
src/optionSubmit.php
Normal file
17
src/optionSubmit.php
Normal file
@ -0,0 +1,17 @@
|
||||
<div class="form-group row options" style="background: none;">
|
||||
<div class="col-9" style="background: none;">
|
||||
<p style="display:inline;">
|
||||
<input style="width: 32px;" type="checkbox" id="op1" name="opt-hide-disabled" checked>
|
||||
Toggle 'unspawnable' items
|
||||
</p>
|
||||
<p style="display:inline;margin-left: 60px;">
|
||||
<a style="font-weight: bold;" class="btn" href="/src/config.php">Reconfigure Mod Path</a>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-3" style="background: none;">
|
||||
<button style="padding: 10px;font-size: 1.5rem;" name="submit" type="submit" class="btn btn-success">Save Item</button>
|
||||
<button name="submit" type="reset" class="btn btn-danger">Clear</button>
|
||||
</div>
|
||||
|
||||
</div>
|
1
txt/.~lock.SetItems.txt#
Normal file
1
txt/.~lock.SetItems.txt#
Normal file
@ -0,0 +1 @@
|
||||
,stoned,stoned-desktop,23.03.2021 02:12,file:///home/stoned/.config/libreoffice/4;
|
406
txt/Armor.txt
406
txt/Armor.txt
@ -1,204 +1,204 @@
|
||||
name version compactsave rarity spawnable minac maxac absorbs speed reqstr block durability nodurability level levelreq cost gamble cost code magic lvl auto prefix alternategfx OpenBetaGfx normcode ubercode ultracode spelloffset component invwidth invheight hasinv gemsockets gemapplytype flippyfile invfile uniqueinvfile setinvfile rArm lArm Torso Legs rSPad lSPad useable throwable stackable minstack maxstack type sound unique transparent transtbl quivered lightradius belt quest missiletype durwarning qntwarning mindam maxdam gemoffset bitfield1 CharsiMin CharsiMax CharsiMagicMin CharsiMagicMax CharsiMagicLvl GheedMin GheedMax GheedMagicMin GheedMagicMax GheedMagicLvl AkaraMin AkaraMax AkaraMagicMin AkaraMagicMax AkaraMagicLvl FaraMin FaraMax FaraMagicMin FaraMagicMax FaraMagicLvl LysanderMin LysanderMax LysanderMagicMin LysanderMagicMax LysanderMagicLvl DrognanMin DrognanMax DrognanMagicMin DrognanMagicMax DrognanMagicLvl HraltiMin HraltiMax HraltiMagicMin HraltiMagicMax HratliMagicLvl AlkorMin AlkorMax AlkorMagicMin AlkorMagicMax AlkorMagicLvl OrmusMin OrmusMax OrmusMagicMin OrmusMagicMax OrmusMagicLvl ElzixMin ElzixMax ElzixMagicLvl ElzixMagicMin ElzixMagicMax AshearaMin AshearaMax AshearaMagicMin AshearaMagicMax AshearaMagicLvl CainMin CainMax CainMagicMin CainMagicMax CainMagicLvl HalbuMin HalbuMax HalbuMagicMin HalbuMagicMax HalbuMagicLvl JamellaMin JamellaMax JamellaMagicMin JamellaMagicMax JamellaMagicLvl LarzukMin LarzukMax LarzukMagicMin LarzukMagicMax LarzukMagicLvl MalahMin MalahMax MalahMagicMin MalahMagicMax MalahMagicLvl DrehyaMin DrehyaMax DrehyaMagicMin DrehyaMagicMax DrehyaMagicLvl Source Art Game Art Transform InvTrans SkipName NightmareUpgrade HellUpgrade mindam maxdam nameable
|
||||
Cap/hat 0 0 1 1 3 5 0 0 0 0 12 0 1 0 64 3016 cap cap cap cap xap uap 0 0 2 2 1 2 1 flpcap invcap invcapu invcapu 0 0 0 0 0 helm 6 0 0 5 0 0 0 0 0 3 0 0 0 0 1 1 1 1 1 5 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 skp ghm 0 0 1
|
||||
Skull Cap 0 0 1 1 8 11 0 0 15 0 18 0 5 0 441 5551 skp skp skp skp xkp ukp 0 0 2 2 1 2 1 flpskp invskp 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 1 1 1 1 10 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 hlm crn 0 0 1
|
||||
Helm 0 0 1 1 15 18 0 0 26 0 24 0 11 0 1558 12284 hlm hlm hlm hlm xlm ulm 0 0 2 2 1 2 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 fhl ghm 0 0 1
|
||||
Full Helm 0 0 2 1 23 26 0 0 41 0 30 0 15 0 3095 21606 fhl fhl hlm fhl xhl uhl 0 0 2 2 1 2 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 ghm xxx 0 0 1
|
||||
Great Helm 0 0 2 1 30 35 0 0 63 0 40 0 23 0 6177 49517 ghm ghm hlm ghm xhm uhm 0 0 2 2 1 3 1 flpghm invghm 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 20 0 0 0 0 1 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 8 0 crn xxx 0 0 1
|
||||
Crown 0 0 2 1 25 45 0 0 55 0 50 0 29 0 8345 77501 crn crn hlm crn xrn urn 0 0 2 2 1 3 1 flpcrn invcrn 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 1 1 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Mask 0 0 3 1 9 27 0 0 23 0 20 0 19 0 2857 25570 msk msk hlm msk xsk usk 0 0 2 2 1 3 1 flpmsk invmsk 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
|
||||
Quilted Armor 0 0 1 1 8 11 0 0 12 0 20 0 1 0 140 3035 qui qlt qlt qui xui uui 0 1 2 3 1 2 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 1 1 1 1 5 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 lea gth 0 0 1
|
||||
Leather Armor 0 0 1 1 14 17 0 0 15 0 24 0 3 0 481 4360 lea lea lea lea xea uea 0 1 2 3 1 2 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 1 1 1 1 10 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 hla ful 0 0 1
|
||||
Hard Leather Armor 0 0 1 1 21 24 0 0 20 0 28 0 5 0 1060 6325 hla hla hla hla xla ula 0 1 2 3 1 2 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 1 1 1 1 15 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 stu aar 0 0 1
|
||||
Studded Leather 0 0 1 1 32 35 0 0 27 0 32 0 8 0 2385 11270 stu stu stu stu xtu utu 0 1 2 3 1 2 1 flpstu invstu 1 0 0 1 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 1 1 1 1 20 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 rng ltp 0 0 1
|
||||
Ring Mail 0 0 1 1 45 48 0 5 36 0 26 0 11 0 4428 20177 rng rng rng rng xng ung 0 1 2 3 1 3 1 flprng invrng 0 0 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 1 0 1 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 scl chn 0 0 1
|
||||
Scale Mail 0 0 1 1 57 60 0 10 44 0 36 0 13 0 6508 30151 scl scl scl scl xcl ucl 0 1 2 3 1 2 1 flpscl invscl 1 1 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 chn brs 0 0 1
|
||||
Chain Mail 0 0 1 1 72 75 0 5 48 0 45 0 15 0 9360 45100 chn chn chn chn xhn uhn 0 1 2 3 1 2 1 flpchn invchn 1 1 1 1 2 2 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 brs spl 0 0 1
|
||||
Breast Plate 0 0 2 1 65 68 1 0 30 0 50 0 18 0 10078 56851 brs brs brs brs xrs urs 0 1 2 3 1 3 1 flpbrs invbrs 0 0 2 0 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 spl plt 0 0 1
|
||||
Splint Mail 0 0 1 1 90 95 0 5 51 0 30 0 20 0 15489 89945 spl spl spl spl xpl upl 0 1 2 3 1 2 1 flpspl invspl 1 1 2 1 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 1 1 0 1 1 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 2 8 0 plt fld 0 0 1
|
||||
Plate Mail 0 0 1 1 108 116 0 10 65 0 60 0 24 0 22335 148510 plt plt plt plt xlt ult 0 1 2 3 1 2 1 flpplt invplt 2 2 2 2 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 1 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 2 8 0 fld xxx 0 0 1
|
||||
Field Plate 0 0 3 1 101 105 2 5 55 0 48 0 28 0 23841 183387 fld fld fld fld xld uld 0 1 2 3 1 2 1 flpfld invfld 1 1 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 1 0 0 1 2 20 0 0 0 0 255 0 0 0 0 255 2 8 0 gth ful 0 0 1
|
||||
Gothic Plate 0 0 3 1 128 135 0 5 70 0 55 0 32 0 34646 295668 gth gth gth gth xth uth 0 1 2 3 1 4 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 1 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 1 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 2 8 0 ful xxx 0 0 1
|
||||
Full Plate Mail 0 0 1 1 150 161 2 10 80 0 70 0 37 0 47192 457526 ful ful ful ful xul uul 0 1 2 3 1 4 1 flpful invful invfulu invfulu 2 2 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 1 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 2 8 0 aar xxx 0 0 1
|
||||
Ancient Armor 0 0 4 1 218 233 5 5 100 0 60 0 40 0 73864 761140 aar aar aar aar xar uar 0 1 2 3 1 4 1 flpaar invaar invaaru invaaru 1 2 2 2 2 0 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 1 1 2 20 2 8 0 ltp xxx 0 0 1
|
||||
Light Plate 0 0 2 1 90 107 1 0 41 0 60 0 35 0 28327 267861 ltp ltp ltp ltp xtp utp 0 1 2 3 1 3 1 flpltp invltp 2 0 1 1 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 1 0 0 255 0 0 1 2 20 0 0 0 0 255 0 1 1 1 20 2 8 0 buc xxx 0 0 1
|
||||
Buckler 0 0 1 1 4 6 0 0 12 0 12 0 1 0 68 3017 buc buc buc buc xuc uuc 0 7 2 2 1 1 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 1 3 0 3 1 1 1 1 3 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 sml tow 0 0 1
|
||||
Small Shield 0 0 1 1 8 10 0 0 22 5 16 0 5 0 410 5512 sml buc buc sml xml uml 0 7 2 2 1 2 2 flpsml invsml invsmlu invsmlu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 2 3 0 3 1 1 1 1 5 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 1 1 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 5 0 lrg kit 0 0 1
|
||||
Large Shield 0 0 1 1 12 14 0 5 34 12 24 0 11 0 1214 11338 lrg lrg buc lrg xrg urg 0 7 2 3 1 3 2 flplrg invlrg invlrgu invlrgu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 2 4 0 3 0 1 0 1 10 0 1 0 1 1 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 kit tow 0 0 1
|
||||
Kite Shield 0 0 2 1 16 18 0 0 47 8 30 0 15 0 2129 17983 kit kit buc kit xit uit 0 7 2 3 1 3 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 2 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 tow gts 0 0 1
|
||||
Tower Shield 0 0 2 1 22 25 1 10 75 24 60 0 22 0 4249 36869 tow tow buc tow xow uow 0 7 2 3 1 3 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 1 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 1 1 0 0 1 1 1 1 2 20 0 0 0 0 255 0 0 0 0 20 2 2 0 gts xxx 0 0 1
|
||||
Gothic Shield 0 0 3 1 30 35 0 5 60 16 40 0 30 0 8000 77500 gts kit buc gts xts uts 0 7 2 4 1 3 2 flpgts invgts invgtsu invgtsu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 2 6 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 1 0 0 1 2 20 0 0 0 0 255 0 0 1 1 20 2 2 0 xxx xxx 0 0 1
|
||||
Gloves(L) 0 0 1 1 2 3 0 0 0 0 12 0 3 0 80 4060 lgl lgl lgl lgl xlg ulg 0 16 2 2 0 0 0 flplgl invlgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 1 1 1 1 3 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 vgl hgl 0 0 1
|
||||
Heavy Gloves 0 0 1 1 5 6 0 0 0 0 14 0 7 0 352 6616 vgl vgl vgl vgl xvg uvg 0 16 2 2 0 0 0 flpvgl invvgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 1 0 1 5 0 1 0 1 1 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 mgl tgl 0 0 1
|
||||
Bracers(M) 0 0 2 1 8 9 0 0 25 0 16 0 12 0 859 11077 mgl mgl mgl mgl xmg umg 0 16 2 2 0 0 0 flpmgl invmgl 0 0 0 0 0 glov 35 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 1 0 0 10 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 tgl hgl 0 0 1
|
||||
Light Gauntlets 0 0 2 1 9 11 0 0 45 0 18 0 20 0 1635 20675 tgl mgl mgl tgl xtg utg 0 16 2 2 0 0 0 flptgl invtgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 2 1 1 1 1 2 1 1 1 0 0 1 1 255 1 1 0 1 255 0 0 1 1 20 0 0 0 0 255 1 1 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Gaunlets(H) 0 0 3 1 12 15 0 0 60 0 24 0 27 0 2964 36007 hgl hgl hgl hgl xhg uhg 0 16 2 2 0 0 0 flphgl invhgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 1 1 0 1 255 1 1 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 1 1 20 0 8 0 xxx xxx 0 0 1
|
||||
Leather Boots 0 0 1 1 2 3 0 0 0 0 12 0 3 0 80 4060 lbt lbt lbt lbt xlb ulb 0 16 2 2 0 0 0 flplbt invlbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 3 8 0 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 vbt tbt 0 0 1
|
||||
Heavy Boots 0 0 1 1 5 6 0 0 18 0 14 0 7 0 334 6584 vbt vbt vbt vbt xvb uvb 0 16 2 2 0 0 0 flpvbt invvbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 4 10 0 1 0 1 0 1 1 0 1 0 1 1 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 mbt tbt 0 0 1
|
||||
Chain Boots 0 0 2 1 8 9 0 0 30 0 16 0 12 0 854 11062 mbt mbt mbt mbt xmb umb 0 16 2 2 0 0 0 flpmbt invmbt 0 0 0 0 0 boot 33 0 0 5 0 0 0 0 0 6 0 6 12 0 3 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 tbt hbt 0 0 1
|
||||
Light Plate Boots 0 0 2 1 9 11 0 0 50 0 18 0 20 0 1630 20650 tbt mbt mbt tbt xtb utb 0 16 2 2 0 0 0 flptbt invtbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 8 16 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 2 1 1 1 1 2 1 1 1 0 0 1 1 20 1 1 0 1 255 0 0 1 1 20 0 0 0 0 255 1 1 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Plate Boots 0 0 3 1 12 15 0 0 70 0 24 0 27 0 2954 35939 hbt hbt hbt hbt xhb uhb 0 16 2 2 0 0 0 flphbt invhbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 10 20 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 1 1 1 1 20 1 1 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 1 1 20 0 8 0 xxx xxx 0 0 1
|
||||
Sash(L) 0 0 1 1 2 2 0 0 0 0 12 0 3 0 64 4048 lbl lbl lbl lbl zlb ulb 0 16 2 1 0 0 0 flplbl invlbl 0 0 0 0 0 belt 17 0 0 5 0 0 1 0 0 4 0 0 0 0 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 vbl tbl 0 0 1
|
||||
Light Belt 0 0 1 1 3 3 0 0 0 0 14 0 7 0 192 6336 vbl vbl vbl vbl zvb uvb 0 16 2 1 0 0 0 flpvbl invvbl 0 0 0 0 0 belt 2 0 0 5 0 0 4 0 0 4 0 0 0 0 1 0 1 0 1 1 0 1 0 1 1 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 mbl hbl 0 0 1
|
||||
Belt(M) 0 0 2 1 5 5 0 0 25 0 16 0 12 0 495 9985 mbl mbl mbl mbl zmb umb 0 16 2 1 0 0 0 flpmbl invmbl 0 0 0 0 0 belt 2 0 0 5 0 0 0 0 0 4 0 0 0 0 1 0 1 0 0 1 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 tbl hbl 0 0 1
|
||||
Heavy Belt 0 0 2 1 6 6 0 0 45 0 18 0 20 0 963 17315 tbl mbl mbl tbl ztb utb 0 16 2 1 0 0 0 flptbl invtbl 0 0 0 0 0 belt 2 0 0 5 0 0 5 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 2 1 1 1 1 2 1 1 1 0 0 1 1 20 1 1 0 1 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Girdle(H) 0 0 3 1 8 11 0 0 60 0 24 0 27 0 2068 29959 hbl hbl hbl hbl zhb uhb 0 16 2 1 0 0 0 flphbl invhbl 0 0 0 0 0 belt 2 0 0 5 0 0 3 0 0 4 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 1 1 0 1 1 1 1 0 1 1 1 1 1 1 20 1 1 0 0 255 1 1 1 2 20 0 0 0 0 255 1 1 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Bone Helm 0 0 4 1 33 36 0 0 25 0 40 0 22 0 6323 48276 bhm bhm hlm bhm xh9 uh9 0 0 2 2 1 2 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm 12 0 0 5 0 2 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 3 20 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 2 8 0 xxx xxx 0 0 1
|
||||
Bone Shield 0 0 4 1 10 30 0 0 25 20 40 0 19 0 3175 27081 bsh bsh buc bsh xsh ush 0 7 2 3 1 2 2 flpbsh invbsh invbshu invbshu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 3 6 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 3 20 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 2 8 0 xxx xxx 0 0 1
|
||||
Spiked Shield 0 0 4 1 15 25 0 0 30 10 40 0 11 0 1890 13197 spk spk buc spk xpk upk 0 7 2 3 1 2 2 flpspk invspk invspku invspku 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 5 9 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 3 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 2 8 0 xxx xxx 0 0 1
|
||||
War Hat 0 0 1 1 45 53 0 0 20 0 12 0 34 22 13560 82061 xap cap cap cap xap uap 0 0 2 2 1 2 1 flpcap invcap 0 0 0 0 0 helm 6 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Sallet 0 0 1 1 52 62 0 0 43 0 18 0 37 25 17210 113647 xkp skp skp skp xkp ukp 0 0 2 2 1 2 1 flpskp invskp invxkpu invxkpu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Casque 0 0 1 1 63 72 0 0 59 0 24 0 42 25 23075 171804 xlm hlm hlm hlm xlm ulm 0 0 2 2 1 2 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Basinet 0 0 2 1 75 84 0 0 82 0 30 0 45 25 29083 233910 xhl fhl fhl fhl xhl uhl 0 0 2 2 1 2 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Winged Helm 0 0 2 1 85 98 0 0 115 0 40 0 51 25 37846 355900 xhm ghm ghm ghm xhm uhm 0 0 2 2 1 3 1 flpghm invghm 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Grand Crown 0 0 2 1 78 113 0 0 103 0 50 0 55 25 42458 448816 xrn crn crn crn xrn urn 0 0 2 2 1 3 1 flpcrn invcrn invxrnu invxrnu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Death Mask 0 0 3 1 54 86 0 0 55 0 20 0 48 25 27190 241184 xsk msk msk msk xsk usk 0 0 2 2 1 3 1 flpmsk invmsk 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
|
||||
Ghost Armor 0 0 1 1 102 117 0 0 38 0 20 0 34 22 30552 165635 xui qlt qlt qui xui uui 0 1 2 3 1 2 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Serpentskin Armor 0 0 1 1 111 126 0 0 43 0 24 0 36 24 34960 197896 xea lea lea lea xea uea 0 1 2 3 1 2 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Demonhide Armor 0 0 1 1 122 136 0 0 50 0 28 0 37 25 39090 236758 xla hla hla hla xla ula 0 1 2 3 1 2 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Trellised Armor 0 0 1 1 138 153 0 0 61 0 32 0 40 25 47582 305707 xtu stu stu stu xtu utu 0 1 2 3 1 2 1 flpstu invstu invxtuu invxtuu 1 0 0 1 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Linked Mail 0 0 1 1 158 172 0 5 74 0 26 0 42 25 56600 393748 xng rng rng rng xng ung 0 1 2 3 1 3 1 flprng invrng 0 0 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Tigulated Mail 0 0 1 1 176 190 0 10 86 0 36 0 43 25 64242 473193 xcl scl scl scl xcl ucl 0 1 2 3 1 2 1 flpscl invscl 1 1 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Mesh Armor 0 0 1 1 198 213 0 5 92 0 45 0 45 25 75440 574094 xhn chn chn chn xhn uhn 0 1 2 3 1 2 1 flpchn invchn 1 1 1 1 2 2 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Cuirass 0 0 2 1 188 202 1 0 65 0 50 0 47 25 74719 613456 xrs brs brs brs xrs urs 0 1 2 3 1 2 1 flpbrs invbrs invxrss 0 0 2 0 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Russet Armor 0 0 1 1 225 243 0 5 97 0 30 0 49 25 93404 788235 xpl spl spl spl xpl upl 0 1 2 3 1 2 1 flpspl invspl 1 1 2 1 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Templar Coat 0 0 1 1 252 274 0 10 118 0 60 0 52 25 111395 1017928 xlt plt plt plt xlt ult 0 1 2 3 1 3 1 flpplt invplt 2 2 2 2 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Sharktooth Armor 0 0 3 1 242 258 2 5 103 0 48 0 55 25 111674 1103159 xld fld fld fld xld uld 0 1 2 3 1 2 1 flpfld invfld 1 1 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Embossed Plate 0 0 3 1 282 303 0 5 125 0 55 0 58 25 137817 1457493 xth gth gth gth xth uth 0 1 2 3 1 4 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Chaos Armor 0 0 1 1 315 342 2 10 140 0 70 0 61 25 162672 1888411 xul ful ful ful xul uul 0 1 2 3 1 4 1 flpful invful 2 2 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Ornate Armor 0 0 4 1 417 450 5 5 170 0 60 0 64 25 225120 2696482 xar aar aar aar xar uar 0 1 2 3 1 4 1 flpaar invaar invxaru invxaru 1 2 2 2 2 0 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Mage Plate 0 0 2 1 225 261 1 0 55 0 60 0 60 25 118407 1327498 xtp ltp ltp ltp xtp utp 0 1 2 3 1 3 1 flpltp invltp 2 0 1 1 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Defender 0 0 1 1 41 49 0 0 38 10 68 0 34 22 12562 77123 xuc buc buc buc xuc uuc 0 7 2 2 1 1 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 8 12 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 0 0 1
|
||||
Round Shield 0 0 1 1 47 55 0 0 53 12 64 0 37 25 15451 103735 xml buc buc sml xml uml 0 7 2 2 1 2 2 flpsml invsml invxmlu invxmlu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 7 14 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 5 0 xxx xxx 0 0 1
|
||||
Scutum 0 0 1 1 53 61 0 5 71 14 62 0 42 25 19537 148359 xrg lrg lrg lrg xrg urg 0 7 2 3 1 3 2 flplrg invlrg invxrgu invxrgu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 11 15 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
|
||||
Dragon Shield 0 0 2 1 59 67 0 0 91 18 76 0 45 25 23094 189944 xit kit kit kit xit uit 0 7 2 3 1 3 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 15 24 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
|
||||
Pavise 0 0 2 1 68 78 1 10 133 24 72 0 50 25 29550 278500 xow tow tow tow xow uow 0 7 2 3 1 3 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 10 17 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
|
||||
Ancient Shield 0 0 3 1 80 93 0 5 110 16 80 0 56 25 39220 422340 xts kit kit gts xts uts 0 7 2 4 1 3 2 flpgts invgts invgtsu invgtsu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 12 16 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
|
||||
Demonhide Gloves 0 0 1 1 28 35 0 0 20 0 12 0 36 24 9230 64102 xlg lgl lgl lgl xlg ulg 0 16 2 2 0 0 0 flplgl invlgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Sharkskin Gloves 0 0 1 1 33 39 0 0 20 0 14 0 39 25 11420 85063 xvg vgl vgl vgl xvg uvg 0 16 2 2 0 0 0 flpvgl invvgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Heavy Bracers 0 0 2 1 37 44 0 0 58 0 16 0 43 25 14111 114806 xmg mgl mgl mgl xmg umg 0 16 2 2 0 0 0 flpmgl invmgl 0 0 0 0 0 glov 35 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Battle Gauntlets 0 0 2 1 39 47 0 0 88 0 18 0 49 25 16913 161025 xtg mgl mgl tgl xtg utg 0 16 2 2 0 0 0 flptgl invtgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
War Gauntlets 0 0 3 1 43 53 0 0 110 0 24 0 54 25 20900 223744 xhg hgl hgl hgl xhg uhg 0 16 2 2 0 0 0 flphgl invhgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Demonhide Boots 0 0 1 1 28 35 0 0 20 0 12 0 36 24 9230 64102 xlb lbt lbt lbt xlb ulb 0 16 2 2 0 0 0 flplbt invlbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 13 23 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Sharkskin Boots 0 0 1 1 33 39 0 0 47 0 14 0 39 25 11393 84859 xvb vbt vbt vbt xvb uvb 0 16 2 2 0 0 0 flpvbt invvbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 14 25 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Mesh Boots 0 0 2 1 37 44 0 0 65 0 16 0 43 25 14103 114742 xmb mbt mbt mbt xmb umb 0 16 2 2 0 0 0 flpmbt invmbt 0 0 0 0 0 boot 33 0 0 5 0 0 0 0 0 6 0 16 27 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Battle Boots 0 0 2 1 39 47 0 0 95 0 18 0 49 25 16905 160950 xtb mbt mbt tbt xtb utb 0 16 2 2 0 0 0 flptbt invtbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 18 31 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
War Boots 0 0 3 1 43 53 0 0 125 0 24 0 54 25 20885 223574 xhb hbt hbt hbt xhb uhb 0 16 2 2 0 0 0 flphbt invhbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 20 35 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Demonhide Sash 0 0 1 1 29 34 0 0 20 0 12 0 36 24 9304 64486 zlb lbl lbl lbl zlb ulc 0 16 2 1 0 0 0 flplbl invlbl 0 0 0 0 0 belt 17 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Sharkskin Belt 0 0 1 1 31 36 0 0 20 0 14 0 39 25 10700 80809 zvb vbl vbl vbl zvb uvc 0 16 2 1 0 0 0 flpvbl invvbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Mesh Belt 0 0 2 1 35 40 0 0 58 0 16 0 43 25 13143 108261 zmb mbl mbl mbl zmb umc 0 16 2 1 0 0 0 flpmbl invmbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Battle Belt 0 0 2 1 37 42 0 0 88 0 18 0 49 25 15713 151185 ztb mbl mbl tbl ztb utc 0 16 2 1 0 0 0 flptbl invtbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
War Belt 0 0 3 1 41 52 0 0 110 0 24 0 54 25 20350 218512 zhb hbl hbl hbl zhb uhc 0 16 2 1 0 0 0 flphbl invhbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Grim Helm 0 0 4 1 60 125 0 0 58 0 40 0 50 25 37683 348947 xh9 bhm bhm bhm xh9 uh9 0 0 2 2 1 2 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm 12 0 0 5 0 2 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Grim Shield 0 0 4 1 50 150 0 0 58 14 70 0 48 25 39143 337523 xsh bsh bsh bsh xsh ush 0 7 2 3 1 2 2 flpbsh invbsh invxshu invxshu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 14 20 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Barbed Shield 0 0 4 1 58 78 0 0 65 17 55 0 42 25 23155 172324 xpk spk spk spk xpk upk 0 7 2 3 1 2 2 flpspk invspk invxpku invxpku 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 18 35 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
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 2 1 8 11 0 0 16 0 20 0 4 3 364 4868 dr1 dr1 dr1 dr1 dr6 drb 0 0 2 2 1 3 1 flpdr1 invdr1 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Hawk Helm 100 0 3 1 4 15 0 0 20 0 20 0 8 6 664 7840 dr2 dr4 dr4 dr2 dr7 drc 0 0 2 2 1 3 1 flpdr4 invdr2 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Antlers 100 0 3 1 18 24 0 0 24 0 20 0 16 12 2832 21852 dr3 dr3 dr3 dr3 dr8 drd 0 0 2 2 1 3 1 flpdr3 invdr3 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Falcon Mask 100 0 4 1 12 28 0 0 28 0 20 0 20 15 3332 29200 dr4 dr4 dr4 dr4 dr9 dre 0 0 2 2 1 3 1 flpdr4 invdr4 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Spirit Mask 100 0 5 1 22 35 0 0 30 0 20 0 24 18 5670 48550 dr5 dr1 dr1 dr5 dra drf 0 0 2 2 1 3 1 flpdr1 invdr5 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Jawbone Cap 100 0 2 1 10 15 0 0 25 0 25 0 4 3 320 4750 ba1 ba1 dr1 ba1 ba6 bab 0 0 2 2 1 3 1 flpba1 invba1 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Fanged Helm 100 0 3 1 15 20 0 0 35 0 35 0 8 6 750 8250 ba2 ba1 bhm ba2 ba7 bac 0 0 2 2 1 3 1 flpba1 invba2 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Horned Helm 100 0 3 1 25 30 0 0 45 0 45 0 16 12 2750 20750 ba3 ba3 bhm ba3 ba8 bad 0 0 2 2 1 3 1 flpba3 invba3 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Assault Helmet 100 0 4 1 30 35 0 0 55 0 50 0 20 15 3420 29360 ba4 ba5 bhm ba4 ba9 bae 0 0 2 2 1 3 1 flpba5 invba4 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Avenger Guard 100 0 5 1 35 50 0 0 65 0 55 0 24 18 5785 49280 ba5 ba5 bhm ba5 baa baf 0 0 2 2 1 3 1 flpba5 invba5 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Targe 100 0 2 1 8 12 0 0 16 10 20 0 4 3 384 6317 pa1 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 4 2 flppa1 invpa1 0 0 0 0 0 ashd 18 0 0 5 0 1 0 0 0 1 0 2 6 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
|
||||
Rondache 100 0 3 1 10 18 0 0 26 15 30 0 8 6 982 10517 pa2 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 4 2 flppa1 invpa2 0 0 0 0 0 ashd 18 0 0 5 0 2 0 0 0 1 0 2 8 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
|
||||
Heraldic Shield 100 0 3 1 16 26 0 0 40 20 40 0 16 12 2816 21240 pa3 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 4 2 flppa3 invpa3 0 0 0 0 0 ashd 18 0 0 5 0 3 0 0 0 1 0 3 9 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
|
||||
Aerin Shield 100 0 4 1 26 36 0 0 50 22 50 0 20 15 5158 43557 pa4 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 4 2 flppa3 invpa4 0 0 0 0 0 ashd 18 0 0 5 0 4 0 0 0 1 0 4 10 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
|
||||
Crown Shield 100 0 5 1 30 40 0 0 65 25 60 0 24 18 6935 82075 pa5 304 pa5 spk pa5 paa paf 0 7 2 2 1 4 2 flppa5 invpa5 0 0 0 0 0 ashd 18 0 0 5 0 5 0 0 0 1 0 4 12 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 0
|
||||
Preserved Head 100 0 2 1 2 5 0 0 12 3 20 0 4 3 128 4628 ne1 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 2 2 flpne1 invne1 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Zombie Head 100 0 3 1 4 8 0 0 14 5 20 0 8 6 418 7336 ne2 305 ne2 bhm ne2 ne7 nec 0 10 2 2 1 2 2 flpne2 invne2 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Unraveller Head 100 0 3 1 6 10 0 0 18 8 20 0 16 12 1070 14780 ne3 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 2 2 flpne3 invne3 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Gargoyle Head 100 0 4 1 10 16 0 0 20 10 20 0 20 15 2164 23320 ne4 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 2 2 flpne3 invne4 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Demon Head 100 0 5 1 15 20 0 0 25 12 20 0 24 18 3475 35350 ne5 305 ne2 bhm ne5 nea nef 0 10 2 2 1 2 2 flpne2 invne5 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Circlet 100 0 2 1 20 30 0 0 0 0 35 0 24 16 5000 44500 ci0 10 lit lit ci0 ci2 ci3 0 0 2 2 1 2 1 flpci0 invci0 0 0 0 0 0 circ 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
|
||||
Coronet 100 0 3 1 30 40 0 0 0 0 30 0 35 27 7500 85625 ci1 15 lit lit ci1 ci2 ci3 0 0 2 2 1 2 1 flpci1 invci1 0 0 0 0 0 circ 12 0 0 5 0 1 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
|
||||
Tiara 100 0 4 1 40 50 0 0 0 0 25 0 45 37 60000 700000 ci2 20 lit lit ci1 ci2 ci3 0 0 2 2 1 3 1 flpci1 invci2 0 0 0 0 0 circ 12 0 0 5 0 2 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
|
||||
Diadem 100 0 4 1 50 60 0 0 0 0 20 0 60 52 90000 1382500 ci3 25 lit lit ci1 ci2 ci3 0 0 2 2 1 3 1 flpci2 invci3 0 0 0 0 0 circ 12 0 0 5 0 3 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
|
||||
Shako 100 0 1 1 98 141 0 0 50 0 12 0 65 57 62993 503591 uap cap cap cap xap uap 0 0 2 2 1 2 1 flpcap invcap 0 0 0 0 0 helm 6 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Hydraskull 100 0 1 1 101 145 0 0 84 0 18 0 68 60 67647 568276 ukp skp skp skp xkp ukp 0 0 2 2 1 2 1 flpskp invskp 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Armet 100 0 1 1 105 149 0 0 109 0 24 0 73 65 75016 671703 ulm hlm hlm hlm xlm ulm 0 0 2 2 1 2 1 flphlm invhlm invhlmu invhlmu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Giant Conch 100 0 2 1 110 154 0 0 142 0 30 0 54 46 57806 757863 uhl fhl fhl fhl xhl uhl 0 0 2 2 1 2 1 flpfhl invfhl invfhlu invfhlu 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Spired Helm 100 0 2 1 114 159 0 0 192 0 40 0 78 70 86076 920880 uhm ghm ghm ghm xhm uhm 0 0 2 2 1 3 1 flpghm invghm invuhms 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Corona 100 0 2 1 111 165 0 0 174 0 50 0 81 73 90354 1042170 urn crn crn crn xrn urn 0 0 2 2 1 3 1 flpcrn invcrn 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Demonhead 100 0 3 1 101 154 0 0 102 0 20 0 76 68 78623 799703 usk msk msk msk xsk usk 0 0 2 2 1 3 1 flpmsk invmsk 0 0 0 0 0 helm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0 1
|
||||
Dusk Shroud 100 0 1 1 361 467 0 0 77 0 20 0 66 58 221666 1685148 uui qlt qlt qui xui uui 0 1 2 3 1 4 1 flpqlt invqlt 0 0 0 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Wyrmhide 100 0 1 1 364 470 0 0 84 0 24 0 67 59 226927 1785276 uea lea lea lea xea uea 0 1 2 3 1 4 1 flplea invlea 0 0 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Scarab Husk 100 0 1 1 369 474 0 0 95 0 28 0 68 60 232573 1891607 ula hla hla hla xla ula 0 1 2 3 1 4 1 flphla invhla 1 1 1 0 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Wire Fleece 100 0 1 1 375 481 0 0 111 0 32 0 70 62 243050 2059887 utu stu stu stu xtu utu 0 1 2 3 1 4 1 flpstu invstu 1 0 0 1 1 1 0 0 0 0 0 tors 17 0 0 5 0 0 0 0 0 2 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Diamond Mail 100 0 1 1 383 489 0 5 131 0 26 0 72 64 254435 2243423 ung rng rng rng xng ung 0 1 2 3 1 4 1 flprng invrng 0 0 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Loricated Mail 100 0 1 1 390 496 0 10 149 0 36 0 72 64 258621 2382039 ucl scl scl scl xcl ucl 0 1 2 3 1 4 1 flpscl invscl 1 1 1 1 1 1 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Boneweave 100 0 1 1 399 505 0 5 158 0 45 0 64 56 234934 2536340 uhn chn chn chn xhn uhn 0 1 2 3 1 4 1 flpchn invchn 1 1 1 1 2 2 0 0 0 0 0 tors 7 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Great Hauberk 100 0 2 1 395 501 1 0 118 0 50 0 75 67 272206 2676189 urs brs brs brs xrs urs 0 1 2 3 1 4 1 flpbrs invbrs 0 0 2 0 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Balrog Skin 100 0 1 1 410 517 0 5 165 0 30 0 77 69 289059 2882894 upl spl spl spl xpl upl 0 1 2 3 1 4 1 flpspl invspl 1 1 2 1 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Hellforged Plate 100 0 1 1 421 530 0 10 196 0 60 0 79 71 303932 3197721 ult plt plt plt xlt ult 0 1 2 3 1 4 1 flpplt invplt 2 2 2 2 1 1 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Kraken Shell 100 0 3 1 417 523 2 5 174 0 48 0 81 73 308015 3411990 uld fld fld fld xld uld 0 1 2 3 1 4 1 flpfld invfld 1 1 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Lacquered Plate 100 0 3 1 433 541 0 5 208 0 55 0 84 76 330885 3803464 uth gth gth gth xth uth 0 1 2 3 1 4 1 flpgth invgth 2 2 1 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Shadow Plate 100 0 1 1 446 557 2 10 230 0 70 0 86 78 348675 4274953 uul ful ful ful xul uul 0 1 2 3 1 4 1 flpful invful 2 2 2 2 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Sacred Armor 100 0 4 1 487 600 5 5 232 0 60 0 88 80 386598 4872212 uar aar aar aar xar uar 0 1 2 3 1 4 1 flpaar invaar invaaru invaaru 1 2 2 2 2 0 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Archon Plate 100 0 2 1 410 524 1 0 103 0 60 0 85 77 321262 3851372 utp ltp ltp ltp xtp utp 0 1 2 3 1 4 1 flpltp invltp 2 0 1 1 2 2 0 0 0 0 0 tors 21 0 0 5 0 0 0 0 0 2 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Heater 100 0 1 1 81 100 0 0 77 22 88 0 66 58 48163 385227 uuc buc buc buc xuc uuc 0 7 2 2 1 1 2 flpbuc invbuc invbucu invbucu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 16 30 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 0 0 1
|
||||
Luna 100 0 1 1 84 103 0 0 100 20 84 0 68 60 51237 436543 uml buc buc sml xml uml 0 7 2 2 1 2 2 flpsml invsml invsmlu invsmlu 0 0 0 0 0 shie 32 0 0 5 0 0 0 0 0 1 0 17 29 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 5 0 xxx xxx 0 0 1
|
||||
Hyperion 100 0 1 1 87 106 0 5 127 24 82 0 72 64 55938 514278 urg lrg lrg lrg xrg urg 0 7 2 3 1 3 2 flplrg invlrg invlrgu invlrgu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 14 32 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
|
||||
Monarch 100 0 2 1 90 109 0 0 156 22 86 0 74 66 59244 576154 uit kit kit kit xit uit 0 7 2 3 1 3 2 flpkit invkit invkitu invkitu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 12 34 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
|
||||
Aegis 100 0 2 1 94 114 1 10 219 24 92 0 78 70 65430 693568 uow tow tow tow xow uow 0 7 2 3 1 3 2 flptow invtow invtowu invtowu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 18 28 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
|
||||
Ward 100 0 3 1 100 121 0 5 185 24 100 0 82 74 73270 856602 uts kit kit gts xts uts 0 7 2 4 1 3 2 flpgts invgts invgtsu invutss 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 11 35 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0 1
|
||||
Bramble Mitts 100 0 1 1 54 62 0 0 50 0 12 0 67 59 31570 269938 ulg lgl lgl lgl xlg ulg 0 16 2 2 0 0 0 flplgl invlgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Vampirebone Gloves 100 0 1 1 56 65 0 0 50 0 14 0 69 61 33760 306103 uvg vgl vgl vgl xvg uvg 0 16 2 2 0 0 0 flpvgl invvgl 0 0 0 0 0 glov 10 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Vambraces 100 0 2 1 59 67 0 0 106 0 16 0 72 64 36467 352152 umg mgl mgl mgl xmg umg 0 16 2 2 0 0 0 flpmgl invmgl 0 0 0 0 0 glov 35 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Crusader Gauntlets 100 0 2 1 59 68 0 0 151 0 18 0 77 69 39629 420620 utg mgl mgl tgl xtg utg 0 16 2 2 0 0 0 flptgl invtgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Ogre Gauntlets 100 0 3 1 62 71 0 0 185 0 24 0 81 73 43357 498191 uhg hgl hgl hgl xhg uhg 0 16 2 2 0 0 0 flphgl invhgl 0 0 0 0 0 glov 36 0 0 5 0 0 0 0 0 5 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Wyrmhide Boots 100 0 1 1 54 62 0 0 50 0 12 0 67 59 31570 269938 ulb lbt lbt lbt xlb ulb 0 16 2 2 0 0 0 flplbt invlbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 23 38 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Scarabshell Boots 100 0 1 1 56 65 0 0 91 0 14 0 69 61 33720 305620 uvb vbt vbt vbt xvb uvb 0 16 2 2 0 0 0 flpvbt invvbt 0 0 0 0 0 boot 4 0 0 5 0 0 0 0 0 6 0 24 40 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Boneweave Boots 100 0 2 1 59 67 0 0 118 0 16 0 72 64 36456 352010 umb mbt mbt mbt xmb umb 0 16 2 2 0 0 0 flpmbt invmbt 0 0 0 0 0 boot 33 0 0 5 0 0 0 0 0 6 0 26 42 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Mirrored Boots 100 0 2 1 59 68 0 0 163 0 18 0 77 69 39618 420465 utb mbt mbt tbt xtb utb 0 16 2 2 0 0 0 flptbt invtbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 28 46 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Myrmidon Greaves 100 0 3 1 62 71 0 0 208 0 24 0 81 73 43335 497859 uhb hbt hbt hbt xhb uhb 0 16 2 2 0 0 0 flphbt invhbt 0 0 0 0 0 boot 34 0 0 5 0 0 0 0 0 6 0 30 50 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Spiderweb Sash 100 0 1 1 55 62 0 0 50 0 12 0 67 59 31638 270466 ulc lbl lbl lbl zlb ulc 0 16 2 1 0 0 0 flplbl invlbl 0 0 0 0 0 belt 17 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Vampirefang Belt 100 0 1 1 56 63 0 0 50 0 14 0 69 61 33130 300879 uvc vbl vbl vbl zvb uvc 0 16 2 1 0 0 0 flpvbl invvbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Mithril Coil 100 0 2 1 58 65 0 0 106 0 16 0 72 64 35664 345000 umc mbl mbl mbl zmb umc 0 16 2 1 0 0 0 flpmbl invmbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Troll Belt 100 0 2 1 59 66 0 0 151 0 18 0 77 69 38693 411380 utc mbl mbl tbl ztb utc 0 16 2 1 0 0 0 flptbl invtbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Colossus Girdle 100 0 3 1 61 71 0 0 185 0 24 0 81 73 42947 493775 uhc hbl hbl hbl zhb uhc 0 16 2 1 0 0 0 flphbl invhbl 0 0 0 0 0 belt 2 0 0 5 0 0 6 0 0 4 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 8 0 xxx xxx 0 0 1
|
||||
Bone Visage 100 0 4 1 70 108 0 0 106 0 40 0 78 70 55984 598161 uh9 bhm bhm bhm xh9 uh9 0 0 2 2 0 0 1 flpbhm invbhm invbhmu invbhmu 0 0 0 0 0 helm 12 0 0 5 0 2 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Troll Nest 100 0 4 1 65 120 0 0 106 20 74 0 76 68 56874 586580 ush bsh bsh bsh xsh ush 0 7 2 3 0 0 2 flpbsh invbsh invbshu invbshu 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 24 38 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Blade Barrier 100 0 4 1 69 84 0 0 118 20 83 0 72 64 44413 413914 upk spk spk spk xpk upk 0 7 2 3 0 0 2 flpspk invspk invspku invspku 0 0 0 0 0 shie 18 0 0 5 0 0 0 0 0 1 0 26 40 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 255 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 8 0 xxx xxx 0 0 1
|
||||
Alpha Helm 100 0 2 1 52 62 0 0 44 0 20 0 28 20 13122 82061 dr6 dr1 dr1 dr1 dr6 drb 0 0 2 2 1 3 1 flpdr1 invdr1 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 0 0 xxx xxx 0 0 1
|
||||
Griffon Headress 100 0 3 1 46 68 0 0 50 0 20 0 31 23 14478 82062 dr7 dr4 dr4 dr2 dr7 drc 0 0 2 2 1 3 1 flpdr4 invdr2 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 0 0 xxx xxx 0 0 1
|
||||
Hunter's Guise 100 0 3 1 67 81 0 0 56 0 20 0 37 29 22440 82063 dr8 dr3 dr3 dr3 dr8 drd 0 0 2 2 1 3 1 flpdr3 invdr3 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Sacred Feathers 100 0 4 1 58 87 0 0 62 0 20 0 40 32 23718 82064 dr9 dr4 dr4 dr4 dr9 dre 0 0 2 2 1 3 1 flpdr4 invdr4 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Totemic Mask 100 0 5 1 73 98 0 0 65 0 20 0 43 35 29943 82065 dra dr1 dr1 dr5 dra drf 0 0 2 2 1 3 1 flpdr1 invdr5 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Jawbone Visor 100 0 2 1 55 68 0 0 58 0 25 0 28 20 14153 82061 ba6 ba1 dr1 ba1 ba6 bab 0 0 2 2 1 3 1 flpba1 invba1 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 5 0 0 xxx xxx 0 0 1
|
||||
Lion Helm 100 0 3 1 63 75 0 0 73 0 35 0 31 23 17528 82062 ba7 ba1 bhm ba2 ba7 bac 0 0 2 2 1 3 1 flpba1 invba2 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 5 0 0 xxx xxx 0 0 1
|
||||
Rage Mask 100 0 3 1 78 90 0 0 88 0 45 0 37 29 25373 82063 ba8 ba3 bhm ba3 ba8 bad 0 0 2 2 1 3 1 flpba3 invba3 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Savage Helmet 100 0 4 1 85 98 0 0 103 0 50 0 40 32 29828 82064 ba9 ba5 bhm ba4 ba9 bae 0 0 2 2 1 3 1 flpba5 invba4 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Slayer Guard 100 0 5 1 93 120 0 0 118 0 55 0 43 35 37283 82065 baa ba5 bhm ba5 baa baf 0 0 2 2 1 3 1 flpba5 invba5 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Akaran Targe 100 0 2 1 47 58 0 0 44 10 20 0 28 20 12136 82065 pa6 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 4 2 flppa1 invpa1 0 0 0 0 0 ashd 18 0 0 5 0 1 0 0 0 1 0 12 16 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 xxx xxx 0 0 1
|
||||
Akaran Rondache 100 0 3 1 50 67 0 0 59 15 30 0 31 23 14917 82066 pa7 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 4 2 flppa1 invpa2 0 0 0 0 0 ashd 18 0 0 5 0 2 0 0 0 1 0 15 20 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 xxx xxx 0 0 1
|
||||
Protector Shield 100 0 3 1 59 79 0 0 69 20 40 0 37 29 20907 82067 pa8 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 4 2 flppa3 invpa3 0 0 0 0 0 ashd 18 0 0 5 0 3 0 0 0 1 0 18 24 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Guilded Shield 100 0 4 1 74 94 0 0 89 22 50 0 40 32 27463 82068 pa9 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 4 2 flppa3 invpa4 0 0 0 0 0 ashd 18 0 0 5 0 4 0 0 0 1 0 20 28 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Royal Shield 100 0 5 1 80 100 0 0 114 25 60 0 43 35 31566 82069 paa 304 pa5 spk pa5 paa paf 0 7 2 2 1 4 2 flppa5 invpa5 0 0 0 0 0 ashd 18 0 0 5 0 5 0 0 0 1 0 24 32 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Mummified Trophy 100 0 2 1 38 48 0 0 38 3 20 0 28 20 9880 82069 ne6 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 2 2 flpne1 invne1 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 0 0 xxx xxx 0 0 1
|
||||
Fetish Trophy 100 0 3 1 41 52 0 0 41 5 20 0 31 23 11863 82070 ne7 305 ne2 bhm ne2 ne7 nec 0 10 2 2 1 2 2 flpne2 invne2 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 0 0 xxx xxx 0 0 1
|
||||
Sexton Trophy 100 0 3 1 44 55 0 0 47 8 20 0 37 29 15001 82071 ne8 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 2 2 flpne3 invne3 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Cantor Trophy 100 0 4 1 50 64 0 0 50 10 20 0 40 32 18646 82072 ne9 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 2 2 flpne3 invne4 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Heirophant Trophy 100 0 5 1 58 70 0 0 58 12 20 0 43 35 22383 82073 nea 305 ne2 bhm ne5 nea nef 0 10 2 2 1 2 2 flpne2 invne5 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Blood Spirt 100 0 2 1 101 145 0 0 86 0 20 0 56 48 55865 413914 drb dr1 dr1 dr1 dr6 drb 0 0 2 2 1 3 1 flpdr1 invdr1 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Sun Spirit 100 0 3 1 98 147 0 0 95 0 20 0 58 50 58065 413915 drc dr4 dr4 dr2 dr7 drc 0 0 2 2 1 3 1 flpdr4 invdr2 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Earth Spirit 100 0 3 1 107 152 0 0 104 0 20 0 63 55 65992 413916 drd dr3 dr3 dr3 dr8 drd 0 0 2 2 1 3 1 flpdr3 invdr3 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Sky Spirit 100 0 4 1 103 155 0 0 113 0 20 0 65 57 67999 413917 dre dr4 dr4 dr4 dr9 dre 0 0 2 2 1 3 1 flpdr4 invdr4 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Dream Spirit 100 0 5 1 109 159 0 0 118 0 20 0 67 59 73101 413918 drf dr1 dr1 dr5 dra drf 0 0 2 2 1 3 1 flpdr1 invdr5 0 0 0 0 0 pelt 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Carnage Helm 100 0 2 1 102 147 0 0 106 0 25 0 56 48 56666 413918 bab ba1 dr1 ba1 ba6 bab 0 0 2 2 1 3 1 flpba1 invba1 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Fury Visor 100 0 3 1 105 150 0 0 129 0 35 0 58 50 60306 413919 bac ba1 bhm ba2 ba7 bac 0 0 2 2 1 3 1 flpba1 invba2 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Destroyer Helm 100 0 3 1 111 156 0 0 151 0 45 0 63 55 67934 413920 bad ba3 bhm ba3 ba8 bad 0 0 2 2 1 3 1 flpba3 invba3 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Conquerer Crown 100 0 4 1 114 159 0 0 174 0 50 0 65 57 71898 413921 bae ba5 bhm ba4 ba9 bae 0 0 2 2 1 3 1 flpba5 invba4 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Guardian Crown 100 0 5 1 117 168 0 0 196 0 55 0 67 59 77609 413922 baf ba5 bhm ba5 baa baf 0 0 2 2 1 3 1 flpba5 invba5 0 0 0 0 0 phlm 12 0 0 5 0 0 0 0 0 3 0 0 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 0 0 xxx xxx 0 0 1
|
||||
Sacred Targe 100 0 2 1 84 104 0 0 86 10 20 0 56 48 42778 82065 pab 304 pa1 spk pa1 pa6 pab 0 7 2 2 1 4 2 flppa1 invpa1 0 0 0 0 0 ashd 18 0 0 5 0 1 0 0 0 1 0 22 70 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Sacred Rondache 100 0 3 1 85 109 0 0 109 15 30 0 58 50 45675 82066 pac 304 pa1 spk pa2 pa7 pac 0 7 2 2 1 4 2 flppa1 invpa2 0 0 0 0 0 ashd 18 0 0 5 0 2 0 0 0 1 0 35 58 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Ancient Shield 100 0 3 1 90 115 0 0 124 20 40 0 62 55 51536 82067 pad 304 pa3 spk pa3 pa8 pad 0 7 2 4 1 4 2 flppa3 invpa3 0 0 0 0 0 ashd 18 0 0 5 0 3 0 0 0 1 0 10 82 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Zakarum Shield 100 0 4 1 97 122 0 0 142 22 50 0 65 57 57674 82068 pae 304 pa3 spk pa4 pa9 pae 0 7 2 4 1 4 2 flppa3 invpa4 0 0 0 0 0 ashd 18 0 0 5 0 4 0 0 0 1 0 46 46 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Vortex Shield 100 0 5 1 100 125 0 0 148 25 60 0 67 59 61052 82069 paf 304 pa5 spk pa5 paa paf 0 7 2 2 1 4 2 flppa5 invpa5 0 0 0 0 0 ashd 18 0 0 5 0 5 0 0 0 1 0 5 87 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 0 1
|
||||
Minion Skull 100 0 2 1 95 139 0 0 77 3 20 0 56 48 53321 82069 neb 305 ne1 dr1 ne1 ne6 neb 0 10 2 2 1 2 2 flpne1 invne1 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Hellspawn Skull 100 0 3 1 96 141 0 0 82 5 20 0 58 50 55898 82070 nec 305 ne2 bhm ne2 ne7 nec 0 10 2 2 1 2 2 flpne2 invne2 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Overseer Skull 100 0 3 1 98 142 0 0 91 8 20 0 62 55 60289 82071 ned 305 ne3 bhm ne3 ne8 ned 0 10 2 2 1 2 2 flpne3 invne3 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Succubae Skull 100 0 4 1 100 146 0 0 95 10 20 0 65 57 64743 82072 nee 305 ne3 bhm ne4 ne9 nee 0 10 2 2 1 2 2 flpne3 invne4 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
Bloodlord Skull 100 0 5 1 103 148 0 0 106 12 20 0 67 59 68166 82073 nef 305 ne2 bhm ne5 nea nef 0 10 2 2 1 2 2 flpne2 invne5 0 0 0 0 0 head 41 0 0 5 0 0 0 0 0 3 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 0 0 xxx xxx 0 0 1
|
||||
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
|
||||
|
53
txt/AutoMagic.txt
Normal file
53
txt/AutoMagic.txt
Normal file
@ -0,0 +1,53 @@
|
||||
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
|
16
txt/Belts.txt
Normal file
16
txt/Belts.txt
Normal file
@ -0,0 +1,16 @@
|
||||
name numboxes boxwidth boxheight box1left box1right box1top box1bottom box2left box2right box2top box2bottom box3left box3right box3top box3bottom box4left box4right box4top box4bottom box5left box5right box5top box5bottom box6left box6right box6top box6bottom box7left box7right box7top box7bottom box8left box8right box8top box8bottom box9left box9right box9top box9bottom box10left box10right box10top box10bottom box11left box11right box11top box11bottom box12left box12right box12top box12bottom box13left box13right box13top box13bottom box14left box14right box14top box14bottom box15left box15right box15top box15bottom box16left box16right box16top box16bottom
|
||||
belt 12 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
|
12
txt/BodyLocs.txt
Normal file
12
txt/BodyLocs.txt
Normal file
@ -0,0 +1,12 @@
|
||||
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
|
@ -1,4 +1,4 @@
|
||||
Name Namco Completed ScrollSpellCode BookSpellCode SpellOffset SpellIcon SkillScrollOffset SkillBookOffset BaseCost CostPerCharge
|
||||
unused of Town Portal 1 tsc tbk 0 -1 0 0 250 50
|
||||
unused of Identify 1 isc ibk 0 0 0 0 200 40
|
||||
unused of Ressurect 0 0 -1 0 0 500 100
|
||||
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
|
||||
|
@ -1,9 +1,9 @@
|
||||
class str dex int vit tot stamina hpadd PercentStr PercentDex PercentInt PercentVit ManaRegen ToHitFactor WalkVelocity RunVelocity RunDrain Comment LifePerLevel StaminaPerLevel ManaPerLevel LifePerVitality StaminaPerVitality ManaPerMagic #walk #run #swing #spell #gethit #bow BlockFactor StartSkill baseWClass item1 item1loc item1count item2 item2loc item2count item3 item3loc item3count item4 item4loc item4count item5 item5loc item5count item6 item6loc item6count item7 item7loc item7count item8 item8loc item8count item9 item9loc item9count item10 item10loc item10count
|
||||
Amazon 20 25 15 20 80 84 30 30 35 15 20 120 5 6 9 20 The following are in fourths 8 4 6 12 4 6 6 4 16 20 6 14 25 0 hth jav rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
|
||||
Sorceress 10 25 35 10 80 74 30 25 30 30 15 120 -15 6 9 20 The following are in fourths 4 4 8 8 4 8 8 5 20 14 8 18 20 0 hth sst rarm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Necromancer 15 25 25 15 80 79 30 20 30 30 20 120 -10 6 9 20 The following are in fourths 6 4 8 8 4 8 9 5 19 16 7 17 20 0 hth wnd rarm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Paladin 25 20 15 25 85 89 30 30 20 20 30 120 20 6 9 20 The following are in fourths 8 4 6 12 4 6 8 5 17 18 4 17 30 0 hth ssd rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
|
||||
Barbarian 30 20 10 25 85 92 30 35 30 10 25 120 20 6 9 20 The following are in fourths 8 4 4 16 4 4 7 4 15 22 5 16 25 0 hth hax rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
|
||||
Expansion 0
|
||||
Druid 15 20 20 25 80 84 30 20 30 30 20 120 5 6 9 20 The following are in fourths 6 4 8 8 4 8 9 5 19 16 7 17 20 222 hth clb rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
|
||||
Assassin 20 20 25 20 85 95 30 25 15 35 25 120 15 6 9 15 The following are in fourths 8 5 6 12 5 7 6 4 16 20 6 14 25 254 hth ktr rarm 1 buc larm 1 hp1 4 tsc 1 isc 1 0 0 0 0 0 0 0 0 0 0
|
||||
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
|
||||
|
18020
txt/CubeMain.txt
18020
txt/CubeMain.txt
File diff suppressed because it is too large
Load Diff
@ -1,13 +1,13 @@
|
||||
cube modifier type Code
|
||||
None
|
||||
amethyst ame
|
||||
ruby rub
|
||||
sapphire sap
|
||||
topaz top
|
||||
emerald eme
|
||||
diamond dim
|
||||
skull sku
|
||||
magic mag
|
||||
rare rar
|
||||
unique unq
|
||||
crafted crf
|
||||
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
|
||||
|
16
txt/CubeType.txt
Normal file
16
txt/CubeType.txt
Normal file
@ -0,0 +1,16 @@
|
||||
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
|
3
txt/D2NewStats.txt
Normal file
3
txt/D2NewStats.txt
Normal file
@ -0,0 +1,3 @@
|
||||
*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
|
@ -1,4 +1,4 @@
|
||||
Name ResistPenalty DeathExpPenalty UberCodeOddsNormal UberCodeOddsGood UltraCodeOddsNormal UltraCodeOddsGood MonsterSkillBonus MonsterFreezeDivisor MonsterColdDivisor AiCurseDivisor LifeStealDivisor ManaStealDivisor ExtraUniqueMonsters
|
||||
Normal 0 0 0 0 0 0 0 1 1 1 1 1 0
|
||||
Nightmare -40 5 10 20 0 0 3 2 2 2 2 2 1
|
||||
Hell -100 10 20 40 30 40 7 4 4 4 2 2 2
|
||||
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
|
||||
|
@ -1,13 +1,14 @@
|
||||
Elemental Type Code
|
||||
None
|
||||
Fire fire
|
||||
Lightning ltng
|
||||
Magic mag
|
||||
Cold cold
|
||||
Poison pois
|
||||
Life Drain life
|
||||
Mana Drain mana
|
||||
Stamina Drain stam
|
||||
Stun stun
|
||||
Random rand
|
||||
Burning burn
|
||||
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
|
||||
|
@ -1,102 +1,102 @@
|
||||
Level Amazon Sorceress Necromancer Paladin Barbarian Druid Assassin
|
||||
MaxLvl 99 99 99 99 99 99 99
|
||||
0 0 0 0 0 0 0 0
|
||||
1 500 500 500 500 500 500 500
|
||||
2 1500 1500 1500 1500 1500 1500 1500
|
||||
3 3750 3750 3750 3750 3750 3750 3750
|
||||
4 7875 7875 7875 7875 7875 7875 7875
|
||||
5 14175 14175 14175 14175 14175 14175 14175
|
||||
6 22680 22680 22680 22680 22680 22680 22680
|
||||
7 32886 32886 32886 32886 32886 32886 32886
|
||||
8 44396 44396 44396 44396 44396 44396 44396
|
||||
9 57715 57715 57715 57715 57715 57715 57715
|
||||
10 72144 72144 72144 72144 72144 72144 72144
|
||||
11 90180 90180 90180 90180 90180 90180 90180
|
||||
12 112725 112725 112725 112725 112725 112725 112725
|
||||
13 140906 140906 140906 140906 140906 140906 140906
|
||||
14 176132 176132 176132 176132 176132 176132 176132
|
||||
15 220165 220165 220165 220165 220165 220165 220165
|
||||
16 275207 275207 275207 275207 275207 275207 275207
|
||||
17 344008 344008 344008 344008 344008 344008 344008
|
||||
18 430010 430010 430010 430010 430010 430010 430010
|
||||
19 537513 537513 537513 537513 537513 537513 537513
|
||||
20 671891 671891 671891 671891 671891 671891 671891
|
||||
21 839864 839864 839864 839864 839864 839864 839864
|
||||
22 1049830 1049830 1049830 1049830 1049830 1049830 1049830
|
||||
23 1312287 1312287 1312287 1312287 1312287 1312287 1312287
|
||||
24 1640359 1640359 1640359 1640359 1640359 1640359 1640359
|
||||
25 2050449 2050449 2050449 2050449 2050449 2050449 2050449
|
||||
26 2563061 2563061 2563061 2563061 2563061 2563061 2563061
|
||||
27 3203826 3203826 3203826 3203826 3203826 3203826 3203826
|
||||
28 3902260 3902260 3902260 3902260 3902260 3902260 3902260
|
||||
29 4663553 4663553 4663553 4663553 4663553 4663553 4663553
|
||||
30 5493363 5493363 5493363 5493363 5493363 5493363 5493363
|
||||
31 6397855 6397855 6397855 6397855 6397855 6397855 6397855
|
||||
32 7383752 7383752 7383752 7383752 7383752 7383752 7383752
|
||||
33 8458379 8458379 8458379 8458379 8458379 8458379 8458379
|
||||
34 9629723 9629723 9629723 9629723 9629723 9629723 9629723
|
||||
35 10906488 10906488 10906488 10906488 10906488 10906488 10906488
|
||||
36 12298162 12298162 12298162 12298162 12298162 12298162 12298162
|
||||
37 13815086 13815086 13815086 13815086 13815086 13815086 13815086
|
||||
38 15468534 15468534 15468534 15468534 15468534 15468534 15468534
|
||||
39 17270791 17270791 17270791 17270791 17270791 17270791 17270791
|
||||
40 19235252 19235252 19235252 19235252 19235252 19235252 19235252
|
||||
41 21376515 21376515 21376515 21376515 21376515 21376515 21376515
|
||||
42 23710491 23710491 23710491 23710491 23710491 23710491 23710491
|
||||
43 26254525 26254525 26254525 26254525 26254525 26254525 26254525
|
||||
44 29027522 29027522 29027522 29027522 29027522 29027522 29027522
|
||||
45 32050088 32050088 32050088 32050088 32050088 32050088 32050088
|
||||
46 35344686 35344686 35344686 35344686 35344686 35344686 35344686
|
||||
47 38935798 38935798 38935798 38935798 38935798 38935798 38935798
|
||||
48 42850109 42850109 42850109 42850109 42850109 42850109 42850109
|
||||
49 47116709 47116709 47116709 47116709 47116709 47116709 47116709
|
||||
50 51767302 51767302 51767302 51767302 51767302 51767302 51767302
|
||||
51 56836449 56836449 56836449 56836449 56836449 56836449 56836449
|
||||
52 62361819 62361819 62361819 62361819 62361819 62361819 62361819
|
||||
53 68384473 68384473 68384473 68384473 68384473 68384473 68384473
|
||||
54 74949165 74949165 74949165 74949165 74949165 74949165 74949165
|
||||
55 82104680 82104680 82104680 82104680 82104680 82104680 82104680
|
||||
56 89904191 89904191 89904191 89904191 89904191 89904191 89904191
|
||||
57 98405658 98405658 98405658 98405658 98405658 98405658 98405658
|
||||
58 107672256 107672256 107672256 107672256 107672256 107672256 107672256
|
||||
59 117772849 117772849 117772849 117772849 117772849 117772849 117772849
|
||||
60 128782495 128782495 128782495 128782495 128782495 128782495 128782495
|
||||
61 140783010 140783010 140783010 140783010 140783010 140783010 140783010
|
||||
62 153863570 153863570 153863570 153863570 153863570 153863570 153863570
|
||||
63 168121381 168121381 168121381 168121381 168121381 168121381 168121381
|
||||
64 183662396 183662396 183662396 183662396 183662396 183662396 183662396
|
||||
65 200602101 200602101 200602101 200602101 200602101 200602101 200602101
|
||||
66 219066380 219066380 219066380 219066380 219066380 219066380 219066380
|
||||
67 239192444 239192444 239192444 239192444 239192444 239192444 239192444
|
||||
68 261129853 261129853 261129853 261129853 261129853 261129853 261129853
|
||||
69 285041630 285041630 285041630 285041630 285041630 285041630 285041630
|
||||
70 311105466 311105466 311105466 311105466 311105466 311105466 311105466
|
||||
71 339515048 339515048 339515048 339515048 339515048 339515048 339515048
|
||||
72 370481492 370481492 370481492 370481492 370481492 370481492 370481492
|
||||
73 404234916 404234916 404234916 404234916 404234916 404234916 404234916
|
||||
74 441026148 441026148 441026148 441026148 441026148 441026148 441026148
|
||||
75 481128591 481128591 481128591 481128591 481128591 481128591 481128591
|
||||
76 524840254 524840254 524840254 524840254 524840254 524840254 524840254
|
||||
77 572485967 572485967 572485967 572485967 572485967 572485967 572485967
|
||||
78 624419793 624419793 624419793 624419793 624419793 624419793 624419793
|
||||
79 681027665 681027665 681027665 681027665 681027665 681027665 681027665
|
||||
80 742730244 742730244 742730244 742730244 742730244 742730244 742730244
|
||||
81 809986056 809986056 809986056 809986056 809986056 809986056 809986056
|
||||
82 883294891 883294891 883294891 883294891 883294891 883294891 883294891
|
||||
83 963201521 963201521 963201521 963201521 963201521 963201521 963201521
|
||||
84 1050299747 1050299747 1050299747 1050299747 1050299747 1050299747 1050299747
|
||||
85 1145236814 1145236814 1145236814 1145236814 1145236814 1145236814 1145236814
|
||||
86 1248718217 1248718217 1248718217 1248718217 1248718217 1248718217 1248718217
|
||||
87 1361512946 1361512946 1361512946 1361512946 1361512946 1361512946 1361512946
|
||||
88 1484459201 1484459201 1484459201 1484459201 1484459201 1484459201 1484459201
|
||||
89 1618470619 1618470619 1618470619 1618470619 1618470619 1618470619 1618470619
|
||||
90 1764543065 1764543065 1764543065 1764543065 1764543065 1764543065 1764543065
|
||||
91 1923762030 1923762030 1923762030 1923762030 1923762030 1923762030 1923762030
|
||||
92 2097310703 2097310703 2097310703 2097310703 2097310703 2097310703 2097310703
|
||||
93 2286478756 2286478756 2286478756 2286478756 2286478756 2286478756 2286478756
|
||||
94 2492671933 2492671933 2492671933 2492671933 2492671933 2492671933 2492671933
|
||||
95 2717422497 2717422497 2717422497 2717422497 2717422497 2717422497 2717422497
|
||||
96 2962400612 2962400612 2962400612 2962400612 2962400612 2962400612 2962400612
|
||||
97 3229426756 3229426756 3229426756 3229426756 3229426756 3229426756 3229426756
|
||||
98 3520485254 3520485254 3520485254 3520485254 3520485254 3520485254 3520485254
|
||||
99 3837739017 3837739017 3837739017 3837739017 3837739017 3837739017 3837739017
|
||||
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
|
||||
|
167
txt/Gamble.txt
Normal file
167
txt/Gamble.txt
Normal file
@ -0,0 +1,167 @@
|
||||
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
|
36
txt/Gems.txt
36
txt/Gems.txt
@ -9,11 +9,11 @@ Flawed Saphire 5 gfb 3 cold-min 0 3 3 cold-max 0 5 5 cold-len 0 35 35 mana 0 17
|
||||
Saphire 5 gsb 3 cold-min 0 4 4 cold-max 0 7 7 cold-len 0 50 50 mana 0 24 24 0 0 0 0 0 0 res-cold 0 22 22 0 0 0 0 0 0
|
||||
Flwless Saphire 5 glb 3 cold-min 0 6 6 cold-max 0 10 10 cold-len 0 60 60 mana 0 31 31 0 0 0 0 0 0 res-cold 0 28 28 0 0 0 0 0 0
|
||||
Perfect Saphire 6 gpb 3 cold-min 0 10 10 cold-max 0 14 14 cold-len 0 75 75 mana 0 38 38 0 0 0 0 0 0 res-cold 0 40 40 0 0 0 0 0 0
|
||||
Chipped Emerald 11 gcg 3 pois-min 0 60 60 pois-max 0 60 60 pois-len 0 25 25 dex 0 3 3 0 0 0 0 0 0 res-pois 0 12 12 0 0 0 0 0 0
|
||||
Flawed Emerald 11 gfg 3 pois-min 0 120 120 pois-max 0 120 120 pois-len 0 25 25 dex 0 4 4 0 0 0 0 0 0 res-pois 0 16 16 0 0 0 0 0 0
|
||||
Emerald 11 gsg 3 pois-min 0 180 180 pois-max 0 180 180 pois-len 0 25 25 dex 0 6 6 0 0 0 0 0 0 res-pois 0 22 22 0 0 0 0 0 0
|
||||
Flawless Emerald 11 glg 3 pois-min 0 240 240 pois-max 0 240 240 pois-len 0 25 25 dex 0 8 8 0 0 0 0 0 0 res-pois 0 28 28 0 0 0 0 0 0
|
||||
Perfect Emerald 12 gpg 3 pois-min 0 300 300 pois-max 0 300 300 pois-len 0 25 25 dex 0 10 10 0 0 0 0 0 0 res-pois 0 40 40 0 0 0 0 0 0
|
||||
Chipped 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
|
||||
@ -39,12 +39,12 @@ El Rune El 18 r01 1 light 1 1 att 50 50 light 1 1 ac 15 15 light 1
|
||||
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
|
||||
Eth Rune Eth 18 r05 1 reduce-ac 25 25 regen-mana 15 15 regen-mana 15 15 0
|
||||
Ith Rune Ith 18 r06 1 dmg-max 9 9 dmg-to-mana 15 15 dmg-to-mana 15 15 0
|
||||
Tal Rune Tal 18 r07 1 dmg-pois 25 200 200 res-pois 30 30 res-pois 30 30 0
|
||||
Ral Rune Ral 18 r08 1 dmg-fire 5 30 res-fire 30 30 res-fire 30 30 0
|
||||
Ort Rune Ort 18 r09 1 dmg-ltng 1 50 res-ltng 30 30 res-ltng 30 30 0
|
||||
Thul Rune Thul 18 r10 1 dmg-cold 75 3 14 res-cold 30 30 res-cold 30 30 0
|
||||
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
|
||||
@ -56,15 +56,15 @@ Ko Rune Ko 18 r18 1 dex 10 10 dex 10 10 dex 10 10 0
|
||||
Fal Rune Fal 18 r19 1 str 10 10 str 10 10 str 10 10 0
|
||||
Lem Rune Lem 18 r20 1 gold% 75 75 gold% 50 50 gold% 50 50 0
|
||||
Pul Rune Pul 18 r21 1 att-demon 100 100 dmg-demon 75 75 ac% 30 30 ac% 30 30 0
|
||||
Um Rune Um 18 r22 1 openwounds 25 25 res-all 10 10 res-all 20 20 0
|
||||
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 3 3 res-pois-max 3 3 0
|
||||
Vex Rune Vex 18 r26 1 manasteal 7 7 res-fire-max 3 3 res-fire-max 3 3 0
|
||||
Ohm Rune Ohm 18 r27 1 dmg% 50 50 res-cold-max 3 3 res-cold-max 3 3 0
|
||||
Lo Rune Lo 18 r28 1 deadly 20 20 res-ltng-max 3 3 res-ltng-max 3 3 0
|
||||
Sur Rune Sur 18 r29 1 stupidity 20 20 mana% 5 5 mana 50 50 0
|
||||
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
|
||||
Jo Rune Jo 18 r31 1 slow 25 25 hp% 5 5 hp 50 50 0
|
||||
Cham Rune Cham 18 r32 1 freeze 16 50 0 nofreeze 1 1 nofreeze 1 1 0
|
||||
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
|
||||
|
10
txt/HireDesc.txt
Normal file
10
txt/HireDesc.txt
Normal file
@ -0,0 +1,10 @@
|
||||
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
|
182
txt/Hireling.txt
182
txt/Hireling.txt
@ -1,61 +1,121 @@
|
||||
Hireling SubType Id Class Act Difficulty Level Seller NameFirst NameLast Gold Exp/Lvl HP HP/Lvl Defense Def/Lvl Str Str/Lvl Dex Dex/Lvl AR AR/Lvl Share Dmg-Min Dmg-Max Dmg/Lvl Resist Resist/Lvl WType1 WType2 HireDesc DefaultChance Skill1 Mode1 Chance1 ChancePerLevel1 Level1 LvlPerLvl1 Skill2 Mode2 Chance2 ChancePerLevel2 Level2 LvlPerLvl2 Skill3 Mode3 Chance3 ChancePerLevel3 Level3 LvlPerLvl3 Skill4 Mode4 Chance4 ChancePerLevel4 Level4 LvlPerLvl4 Skill5 Mode5 Chance5 ChancePerLevel5 Level5 LvlPerLvl5 Skill6 Mode6 Chance6 ChancePerLevel6 Level6 LvlPerLvl6 Head Torso Weapon Shield
|
||||
Rogue Scout Fire - Normal 0 271 1 1 3 150 merc01 merc41 100 100 45 8 15 6 35 10 45 16 0 0 1 3 2 0 8 bow farw 75 Inner Sight 4 10 0 1 10 Fire Arrow 4 25 2 1 10 2 1 2 0
|
||||
Rogue Scout Fire - Normal 0 271 1 1 25 150 merc01 merc41 100 100 221 8 147 6 63 10 89 16 0 0 1 7 9 4 44 7 bow farw 75 Inner Sight 4 10 0 7 10 Fire Arrow 4 69 0 7 10 2 1 2 0
|
||||
Rogue Scout Fire - Normal 0 271 1 1 49 150 merc01 merc41 100 100 413 8 291 6 93 10 137 16 0 0 2 19 21 6 86 5 bow farw 75 Inner Sight 4 10 0 14 10 Fire Arrow 4 69 0 14 10 2 1 2 0
|
||||
Rogue Scout Ice - Normal 1 271 1 1 3 150 merc01 merc41 150 100 45 8 15 6 35 10 45 16 0 0 1 3 2 0 8 bow carw 75 Inner Sight 4 10 0 1 10 Cold Arrow 4 69 2 1 10 2 1 2 0
|
||||
Rogue Scout Ice - Normal 1 271 1 1 25 150 merc01 merc41 150 100 221 8 147 6 63 10 89 16 0 0 1 7 9 4 44 7 bow carw 75 Inner Sight 4 10 0 7 10 Cold Arrow 4 69 0 7 10 2 1 2 0
|
||||
Rogue Scout Ice - Normal 1 271 1 1 49 150 merc01 merc41 150 100 413 8 291 6 93 10 137 16 0 0 2 19 21 6 86 5 bow carw 75 Inner Sight 4 10 0 14 10 Cold Arrow 4 69 0 14 10 2 1 2 0
|
||||
Rogue Scout Fire - Nightmare 2 271 1 2 25 150 merc01 merc41 6000 110 185 8 130 6 60 10 84 16 0 0 1 6 8 4 41 7 bow farw 75 Inner Sight 4 10 0 6 10 Fire Arrow 4 69 0 6 10 2 1 2 0
|
||||
Rogue Scout Fire - Nightmare 2 271 1 2 49 150 merc01 merc41 6000 110 385 8 274 6 90 10 132 16 0 0 2 18 20 6 83 5 bow farw 75 Inner Sight 4 10 0 13 10 Fire Arrow 4 69 0 13 10 2 1 2 0
|
||||
Rogue Scout Ice - Nightmare 3 271 1 2 25 150 merc01 merc41 7500 110 185 8 130 6 60 10 84 16 0 0 1 6 8 4 41 7 bow carw 75 Inner Sight 4 10 0 6 10 Cold Arrow 4 69 0 6 10 2 1 2 0
|
||||
Rogue Scout Ice - Nightmare 3 271 1 2 49 150 merc01 merc41 7500 110 385 8 274 6 90 10 132 16 0 0 2 18 20 6 83 5 bow carw 75 Inner Sight 4 10 0 13 10 Cold Arrow 4 69 0 13 10 2 1 2 0
|
||||
Rogue Scout Fire - Hell 4 271 1 3 49 150 merc01 merc41 12500 120 369 8 257 6 87 10 127 16 0 0 2 17 19 6 80 5 bow farw 75 Inner Sight 4 10 0 12 10 Fire Arrow 4 69 0 12 10 2 1 2 0
|
||||
Rogue Scout Ice - Hell 5 271 1 3 49 150 merc01 merc41 14000 120 369 8 257 6 87 10 127 16 0 0 2 17 19 6 80 5 bow carw 75 Inner Sight 4 10 0 12 10 Cold Arrow 4 69 0 12 10 2 1 2 0
|
||||
Desert Mercenary Comb-Normal 6 338 2 1 9 198 merca201 merca221 350 105 120 10 45 9 57 14 40 12 20 4 1 7 14 4 18 8 pole spea comb 30 Jab 14 70 3 3 10 Prayer 1 10 0 3 10 2 2 2 0
|
||||
Desert Mercenary Comb-Normal 6 338 2 1 31 198 merca201 merca221 350 105 340 10 243 9 96 14 73 12 108 8 3 18 25 6 62 7 pole spea comb 30 Jab 14 136 3 10 10 Prayer 1 10 0 10 10 2 2 2 0
|
||||
Desert Mercenary Comb-Normal 6 338 2 1 55 198 merca201 merca221 350 105 580 10 459 9 138 14 109 12 300 12 4 36 43 8 104 4 pole spea comb 30 Jab 14 208 3 17 0 Prayer 1 10 0 17 0 Thorns 1 5 0 1 10 2 2 2 0
|
||||
Desert Mercenary Def-Normal 7 338 2 1 9 198 merca201 merca221 350 105 120 10 45 9 57 14 40 12 20 4 1 7 14 4 18 8 pole spea def 30 Jab 14 70 3 3 10 Defiance 1 10 0 3 10 2 2 2 0
|
||||
Desert Mercenary Def-Normal 7 338 2 1 31 198 merca201 merca221 350 105 340 10 243 9 96 14 73 12 108 8 3 18 25 6 62 7 pole spea def 30 Jab 14 136 3 10 10 Defiance 1 10 0 10 10 2 2 2 0
|
||||
Desert Mercenary Def-Normal 7 338 2 1 55 198 merca201 merca221 350 105 580 10 459 9 138 14 109 12 300 12 4 36 43 8 104 4 pole spea def 30 Jab 14 208 3 17 0 Defiance 1 10 0 17 0 Holy Freeze 1 5 0 1 10 2 2 2 0
|
||||
Desert Mercenary Off-Normal 8 338 2 1 9 198 merca201 merca221 350 105 120 10 45 9 57 14 40 12 20 4 1 7 14 4 18 8 pole spea off 30 Jab 14 70 3 3 10 Blessed Aim 1 10 0 3 10 2 2 2 0
|
||||
Desert Mercenary Off-Normal 8 338 2 1 31 198 merca201 merca221 350 105 340 10 243 9 96 14 73 12 108 8 3 18 25 6 62 7 pole spea off 30 Jab 14 136 3 10 10 Blessed Aim 1 10 0 10 10 Might 1 20 0 5 10 2 2 2 0
|
||||
Desert Mercenary Off-Normal 8 338 2 1 55 198 merca201 merca221 350 105 580 10 459 9 138 14 109 12 300 12 4 36 43 8 104 4 pole spea off 30 Jab 14 208 3 17 0 Blessed Aim 1 10 0 17 0 Might 1 20 0 7 10 2 2 2 0
|
||||
Desert Mercenary Comb-Nightmare 9 338 2 2 31 198 merca201 merca221 7900 115 302 10 201 9 92 14 69 12 98 8 3 16 23 6 59 7 pole spea comb 30 Jab 14 120 3 9 10 Prayer 1 10 0 9 10 2 2 2 0
|
||||
Desert Mercenary Comb-Nightmare 9 338 2 2 55 198 merca201 merca221 7900 115 542 10 417 9 134 14 105 12 290 12 4 34 41 8 101 4 pole spea comb 30 Jab 14 192 3 16 0 Prayer 1 10 0 16 0 2 2 2 0
|
||||
Desert Mercenary Def-Nightmare 10 338 2 2 31 198 merca201 merca221 7900 115 302 10 201 9 92 14 69 12 98 6 3 16 23 6 59 7 pole spea def 30 Jab 14 120 3 9 10 Defiance 1 10 0 9 10 2 2 2 0
|
||||
Desert Mercenary Def-Nightmare 10 338 2 2 55 198 merca201 merca221 7900 115 542 10 417 9 134 14 105 12 242 12 4 34 41 8 101 4 pole spea def 30 Jab 14 192 3 16 0 Defiance 1 10 0 16 0 2 2 2 0
|
||||
Desert Mercenary Off-Nightmare 11 338 2 2 31 198 merca201 merca221 7900 115 302 10 201 9 92 14 69 12 98 8 3 16 23 6 59 7 pole spea off 30 Jab 14 120 3 9 10 Blessed Aim 1 10 0 9 10 Might 1 20 0 4 10 2 2 2 0
|
||||
Desert Mercenary Off-Nightmare 11 338 2 2 55 198 merca201 merca221 7900 115 542 10 417 9 134 14 105 12 290 12 4 34 41 8 101 4 pole spea off 30 Jab 14 192 3 16 0 Blessed Aim 1 10 0 16 0 Might 1 20 0 6 10 2 2 2 0
|
||||
Desert Mercenary Comb-Hell 12 338 2 3 55 198 merca201 merca221 15000 120 504 10 375 9 130 14 101 12 280 12 4 32 39 8 98 4 pole spea comb 30 Jab 14 104 3 15 0 Prayer 1 10 0 15 0 2 2 2 0
|
||||
Desert Mercenary Def-Hell 13 338 2 3 55 198 merca201 merca221 15000 120 504 10 375 9 130 14 101 12 232 12 4 32 39 8 98 4 pole spea def 30 Jab 14 104 3 15 0 Defiance 1 10 0 15 0 2 2 2 0
|
||||
Desert Mercenary Off-Hell 14 338 2 3 55 198 merca201 merca221 15000 120 504 10 375 9 130 14 101 12 280 12 4 32 39 8 98 4 pole spea off 30 Jab 14 104 3 15 0 Blessed Aim 1 10 0 15 0 Might 1 20 0 5 10 2 2 2 0
|
||||
Eastern Sorceror Fire-Normal 15 359 3 1 15 252 merca222 merca241 1000 110 160 6 80 4 49 10 40 8 0 0 1 7 4 25 7 swor shie fire 10 Inferno 7 60 0 6 10 Fire Ball 7 30 0 4 10 2 2 2 1
|
||||
Eastern Sorceror Fire-Normal 15 359 3 1 37 252 merca222 merca241 1000 110 292 6 168 4 77 10 62 8 0 0 3 12 18 4 64 7 swor shie fire 10 Inferno 7 60 0 13 10 Fire Ball 7 30 0 11 10 2 2 2 1
|
||||
Eastern Sorceror Fire-Normal 15 359 3 1 61 252 merca222 merca241 1000 110 436 6 264 4 107 10 86 8 0 0 5 24 30 4 106 6 swor shie fire 10 Inferno 7 60 0 20 0 Fire Ball 7 30 0 18 10 2 2 2 1
|
||||
Eastern Sorceror Cold-Normal 16 359 3 1 15 252 merca222 merca241 1500 115 160 6 80 4 49 10 40 8 0 0 1 7 4 25 7 swor shie cold 10 Glacial Spike 7 60 0 1 5 Frozen Armor 7 1000 0 2 10 Ice Blast 7 240 0 6 10 2 2 2 1
|
||||
Eastern Sorceror Cold-Normal 16 359 3 1 37 252 merca222 merca241 1500 115 292 6 168 4 77 10 62 8 0 0 3 12 18 4 64 7 swor shie cold 10 Glacial Spike 7 60 0 5 5 Frozen Armor 7 1000 0 9 10 Ice Blast 7 240 0 13 10 2 2 2 1
|
||||
Eastern Sorceror Cold-Normal 16 359 3 1 61 252 merca222 merca241 1500 115 436 6 264 4 107 10 86 8 0 0 5 24 30 4 106 4 swor shie cold 10 Glacial Spike 7 60 0 9 0 Frozen Armor 7 1000 0 16 0 Ice Blast 7 240 0 20 0 2 2 2 1
|
||||
Eastern Sorceror Ltng-Normal 17 359 3 1 15 252 merca222 merca241 1000 110 160 6 80 4 49 10 40 8 0 0 1 7 4 25 7 swor shie ltng 10 Charged Bolt 7 60 0 4 5 Lightning 7 30 0 3 10 2 2 2 1
|
||||
Eastern Sorceror Ltng-Normal 17 359 3 1 37 252 merca222 merca241 1000 110 292 6 168 4 77 10 62 8 0 0 3 12 18 4 64 7 swor shie ltng 10 Charged Bolt 7 60 0 8 5 Lightning 7 30 0 10 10 2 2 2 1
|
||||
Eastern Sorceror Ltng-Normal 17 359 3 1 61 252 merca222 merca241 1000 110 436 6 264 4 107 10 86 8 0 0 5 24 30 4 106 4 swor shie ltng 10 Charged Bolt 7 60 0 12 0 Lightning 7 30 0 17 10 2 2 2 1
|
||||
Eastern Sorceror Fire-Nightmare 18 359 3 2 37 252 merca222 merca241 9500 115 273 6 151 4 73 10 58 8 0 0 3 10 16 4 61 7 swor shie fire 10 Inferno 7 60 0 12 10 Fire Ball 7 30 0 10 10 2 2 2 1
|
||||
Eastern Sorceror Fire-Nightmare 18 359 3 2 61 252 merca222 merca241 9500 115 417 6 244 4 103 10 82 8 0 0 5 22 28 4 103 4 swor shie fire 10 Inferno 7 60 0 19 0 Fire Ball 7 30 0 17 10 2 2 2 1
|
||||
Eastern Sorceror Cold-Nightmare 19 359 3 2 37 252 merca222 merca241 12000 120 273 6 151 4 73 10 58 8 0 0 3 10 16 4 61 7 swor shie cold 10 Glacial Spike 7 60 0 4 5 Frozen Armor 7 1000 0 8 10 Ice Blast 7 240 0 12 10 2 2 2 1
|
||||
Eastern Sorceror Cold-Nightmare 19 359 3 2 61 252 merca222 merca241 12000 120 417 6 244 4 103 10 82 8 0 0 5 22 28 4 103 4 swor shie cold 10 Glacial Spike 7 60 0 8 0 Frozen Armor 7 1000 0 15 0 Ice Blast 7 240 0 19 0 2 2 2 1
|
||||
Eastern Sorceror Ltng-Nightmare 20 359 3 2 37 252 merca222 merca241 10000 115 273 6 151 4 73 10 58 8 0 0 3 10 16 4 61 7 swor shie ltng 10 Charged Bolt 7 60 0 7 5 Lightning 7 30 0 9 10 2 2 2 1
|
||||
Eastern Sorceror Ltng-Nightmare 20 359 3 2 61 252 merca222 merca241 10000 115 417 6 244 4 103 10 82 8 0 0 5 22 28 4 103 4 swor shie ltng 10 Charged Bolt 7 60 0 11 0 Lightning 7 30 0 16 10 2 2 2 1
|
||||
Eastern Sorceror Fire-Hell 21 359 3 3 61 252 merca222 merca241 21000 120 398 6 227 4 99 10 78 8 0 0 5 20 26 4 100 4 swor shie fire 10 Inferno 7 60 0 18 0 Fire Ball 7 30 0 16 0 2 2 2 1
|
||||
Eastern Sorceror Cold-Hell 22 359 3 3 61 252 merca222 merca241 27000 125 398 6 227 4 99 10 78 8 0 0 5 20 26 4 100 4 swor shie cold 10 Glacial Spike 7 60 0 7 0 Frozen Armor 7 1000 0 15 0 Ice Blast 7 240 0 18 0 2 2 2 1
|
||||
Eastern Sorceror Ltng-Hell 23 359 3 3 61 252 merca222 merca241 21000 120 398 6 227 4 99 10 78 8 0 0 5 20 27 4 100 4 swor shie ltng 10 Charged Bolt 7 60 0 10 0 Lightning 7 30 0 15 10 2 2 2 1
|
||||
Barbarian 1hs-Normal 24 561 5 1 28 515 MercX101 MercX167 9000 110 288 12 180 7 101 15 63 10 150 6 1 16 20 6 56 7 swor 50 Bash 5 15 0 4 10 Stun 5 15 0 3 8 0 0 0 0
|
||||
Barbarian 1hs-Normal 24 561 5 1 42 515 MercX101 MercX167 9000 110 456 12 278 7 128 15 81 10 234 6 1 27 31 8 81 7 swor 50 Bash 5 50 0 9 10 Stun 5 50 0 7 8 0 0 0 0
|
||||
Barbarian 1hs-Normal 24 561 5 1 75 515 MercX101 MercX167 9000 110 852 12 509 7 190 15 123 10 432 9 1 60 64 8 139 4 swor 50 Bash 5 75 0 20 0 Stun 5 75 0 16 0 0 0 0 0
|
||||
Barbarian 1hs-Normal 25 561 5 1 28 515 MercX101 MercX167 9000 110 288 12 180 7 101 15 63 10 150 6 1 16 20 6 56 7 swor 50 Bash 5 15 0 4 10 Stun 5 15 0 3 8 0 0 0 0
|
||||
Barbarian 1hs-Normal 25 561 5 1 42 515 MercX101 MercX167 9000 110 456 12 278 7 128 15 81 10 234 6 1 27 31 8 81 7 swor 50 Bash 5 50 0 9 10 Stun 5 50 0 7 8 0 0 0 0
|
||||
Barbarian 1hs-Normal 25 561 5 1 75 515 MercX101 MercX167 9000 110 852 12 509 7 190 15 123 10 432 9 1 60 64 8 139 4 swor 50 Bash 5 75 0 20 0 Stun 5 75 0 16 0 0 0 0 0
|
||||
Barbarian 1hs-Nightmare 26 561 5 2 42 515 MercX101 MercX167 18000 115 421 12 263 7 125 15 76 10 214 6 4 25 29 8 78 7 swor 50 Bash 5 50 0 8 10 Stun 5 50 0 6 8 0 0 0 0
|
||||
Barbarian 1hs-Nightmare 26 561 5 2 75 515 MercX101 MercX167 18000 115 817 12 494 7 187 15 118 10 412 9 4 58 62 8 136 4 swor 50 Bash 5 75 0 19 0 Stun 5 75 0 15 0 0 0 0 0
|
||||
Barbarian 1hs-Nightmare 27 561 5 2 42 515 MercX101 MercX167 18000 115 421 12 263 7 125 15 76 10 214 6 4 25 29 8 78 7 swor 50 Bash 5 50 0 8 10 Stun 5 50 0 6 8 0 0 0 0
|
||||
Barbarian 1hs-Nightmare 27 561 5 2 75 515 MercX101 MercX167 18000 115 817 12 494 7 187 15 118 10 412 9 4 58 62 8 136 4 swor 50 Bash 5 75 0 19 0 Stun 5 75 0 15 0 0 0 0 0
|
||||
Barbarian 1hs-Hell 28 561 5 3 75 515 MercX101 MercX167 32000 120 788 12 479 7 184 15 113 10 392 9 6 56 60 8 133 4 swor 50 Bash 5 70 0 18 0 Stun 5 70 0 14 0 0 0 0 0
|
||||
Barbarian 1hs-Hell 29 561 5 3 75 515 MercX101 MercX167 32000 120 788 12 479 7 184 15 113 10 392 9 6 56 60 8 133 4 swor 50 Bash 5 70 0 18 0 Stun 5 70 0 14 0 0 0 0 0
|
||||
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
|
||||
|
@ -1,15 +1,15 @@
|
||||
Hit Class Code
|
||||
None
|
||||
Hand To Hand hth
|
||||
One Hand Swing vs. Small 1hss
|
||||
One Hand Swing vs. Large 1hsl
|
||||
Two Hand Swing vs. Small 2hss
|
||||
Two Hand Swing vs. Large 2hsl
|
||||
One Hand Thrust 1ht
|
||||
Two Hand Thrust 2ht
|
||||
Club club
|
||||
Staff staf
|
||||
Bow bow
|
||||
Crossbow xbow
|
||||
Claw claw
|
||||
Overlay over
|
||||
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
|
||||
|
@ -1,34 +1,34 @@
|
||||
class invLeft invRight invTop invBottom gridRows gridCols gridLeft gridRight gridTop gridBottom gridBoxWidth gridBoxHeight rArmLeft rArmRight rArmTop rArmBottom rArmWidth rArmHeight torsoLeft torsoRight torsoTop torsoBottom torsoWidth torsoHeight lArmLeft lArmRight lArmTop lArmBottom lArmWidth lArmHeight headLeft headRight headTop headBottom headWidth headHeight neckLeft neckRight neckTop neckBottom neckWidth neckHeight rHandLeft rHandRight rHandTop rHandBottom rHandWidth rHandHeight lHandLeft lHandRight lHandTop lHandBottom lHandWidth lHandHeight beltLeft beltRight beltTop beltBottom beltWidth beltHeight feetLeft feetRight feetTop feetBottom feetWidth feetHeight glovesLeft glovesRight glovesTop glovesBottom glovesWidth glovesHeight
|
||||
Amazon 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
|
||||
Sorceress 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
|
||||
Necromancer 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
|
||||
Paladin 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
|
||||
Barbarian 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
|
||||
Monster 0 321 0 442 10 10 16 305 63 352 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
Trade Page 1 0 321 0 219 10 4 20 305 41 148 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
Trade Page 2 0 321 220 442 10 4 20 305 255 368 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
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 321 220 442 3 4 118 205 139 253 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
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 321 220 442 6 8 74 244 82 313 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
Hireling -1 -1 -1 -1 0 0 -1 -1 -1 -1 29 29 20 75 47 159 55 112 133 189 77 159 56 82 251 306 47 159 55 112 135 189 8 59 54 51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
Druid 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
|
||||
Assassin 320 640 0 441 10 4 339 626 255 368 29 29 340 395 47 159 55 112 453 509 77 159 56 82 571 626 47 159 55 112 455 509 8 59 54 51 529 552 35 59 23 24 415 438 180 204 23 24 529 552 180 204 23 24 456 508 179 204 52 25 572 626 182 234 54 52 341 395 181 234 54 53
|
||||
Amazon2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
|
||||
Sorceress2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
|
||||
Necromancer2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
|
||||
Paladin2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
|
||||
Barbarian2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
|
||||
Monster2 80 401 60 502 10 10 96 385 123 412 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
Trade Page 1-2 80 401 60 279 10 4 100 385 101 208 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
Trade Page 2-2 80 401 280 502 10 4 100 385 315 428 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
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 80 401 280 502 3 4 198 285 199 313 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
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 80 401 280 502 6 8 154 324 142 373 29 29 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
Hireling2 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 29 29 100 155 107 219 55 112 213 269 137 219 56 82 331 386 107 219 55 112 215 269 68 119 54 51 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1
|
||||
Druid2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
|
||||
Assassin2 400 720 60 501 10 4 419 706 315 428 29 29 420 475 107 219 55 112 533 589 137 219 56 82 651 706 107 219 55 112 535 589 68 119 54 51 609 632 95 119 23 24 495 518 240 264 23 24 609 632 240 264 23 24 536 588 239 264 52 25 652 706 242 294 54 52 421 475 241 294 54 53
|
||||
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
|
||||
|
@ -1,7 +1,7 @@
|
||||
Function Version Uber Class Specific Unique UniqueDivisor Rare RareDivisor Set SetDivisor Magic MagicDivisor HiQuality HiQualityDivisor Normal NormalDivisor
|
||||
Ratio - (Monster Level / Ratio Divisor) 0 0 0 1000 6 200 6 125 6 30 16 12 16 4 8
|
||||
Uber 0 1 0 600 6 120 6 100 6 3 100 4 16 1 8
|
||||
Ratio - (Monster Level / Ratio Divisor) 1 0 0 1000 6 200 6 125 6 30 16 12 16 2 1
|
||||
Uber 1 1 0 1000 6 200 6 125 6 30 16 12 16 1 1
|
||||
Class Specific 1 0 1 500 6 110 6 95 6 10 30 9 24 2 1
|
||||
Class Specific Uber 1 1 1 400 6 100 6 90 6 10 30 9 24 1 1
|
||||
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
|
||||
|
@ -1,328 +1,433 @@
|
||||
Stat ID Encode Add Multiply Divide ValShift Save Bits Save Add Target Stat Percent PerLevel PerLevelShift ByTime ItemSpecific damagerelated
|
||||
STATS_STRENGTH 0 125 55 1024 7 32 -1 0 0
|
||||
STATS_ENERGY 1 100 55 1024 7 32 -1 0 0
|
||||
STATS_DEXTERITY 2 125 55 1024 7 32 -1 0 0
|
||||
STATS_VITALITY 3 100 55 1024 7 32 -1 0 0
|
||||
STATS_STATPTS 4 1024 -1 0 0
|
||||
STATS_NEWSKILLS 5 1024 -1 0 0
|
||||
STATS_HITPOINTS 6 1024 8 -1 0 0
|
||||
STATS_MAXHP 7 56 20 1024 8 8 32 -1 0 0
|
||||
STATS_MANA 8 1024 8 -1 0 0
|
||||
STATS_MAXMANA 9 81 20 1024 8 8 32 -1 0 0
|
||||
STATS_STAMINA 10 1024 8 -1 0 0
|
||||
STATS_MAXSTAMINA 11 75 20 1024 8 8 32 -1 0 0
|
||||
STATS_LEVEL 12 1024 -1 0 0
|
||||
STATS_EXPERIENCE 13 1024 -1 0 0
|
||||
STATS_GOLD 14 1024 -1 0 0
|
||||
STATS_GOLDBANK 15 1024 -1 0 0
|
||||
STATS_ITEM_ARMOR_PERCENT 16 47 20 1024 9 0 31 1 0 0
|
||||
STATS_ITEM_MAXDAMAGE_PERCENT 17 45 40 1024 9 0 22 1 0 1
|
||||
STATS_ITEM_MINDAMAGE_PERCENT 18 45 40 1024 9 0 21 1 0 1
|
||||
STATS_TOHIT 19 15 10 1024 10 -1 0 1
|
||||
STATS_TOBLOCK 20 89 204 1024 6 0 -1 0 0
|
||||
STATS_MINDAMAGE 21 122 200 1024 6 0 -1 0 1
|
||||
STATS_MAXDAMAGE 22 94 100 1024 7 0 -1 0 1
|
||||
STATS_SECONDARY_MINDAMAGE 23 76 128 1024 5 0 -1 0 1
|
||||
STATS_SECONDARY_MAXDAMAGE 24 88 128 1024 6 0 -1 0 1
|
||||
STATS_DAMAGEPERCENT 25 45 40 1024 8 0 -1 0 1
|
||||
STATS_MANARECOVERY 26 1024 8 0 -1 0 0
|
||||
STATS_MANARECOVERYBONUS 27 1024 8 0 -1 0 0
|
||||
STATS_STAMINARECOVERYBONUS 28 1024 8 0 -1 0 0
|
||||
STATS_LASTEXP 29 1024 -1 0 0
|
||||
STATS_NEXTEXP 30 1024 -1 0 0
|
||||
STATS_ARMORCLASS 31 17 10 1024 10 10 -1 0 0
|
||||
STATS_ARMORCLASS_VS_MISSILE 32 11 5 1024 8 0 -1 0 0
|
||||
STATS_ARMORCLASS_VS_HTH 33 13 7 1024 8 0 -1 0 0
|
||||
STATS_NORMAL_DAMAGE_REDUCTION 34 188 200 1024 6 0 -1 0 0
|
||||
STATS_MAGIC_DAMAGE_REDUCTION 35 397 340 1024 6 0 -1 0 0
|
||||
STATS_DAMAGERESIST 36 152 68 1024 8 0 -1 0 0
|
||||
STATS_MAGICRESIST 37 164 68 1024 8 0 -1 0 0
|
||||
STATS_MAXMAGICRESIST 38 1091 409 1024 5 0 -1 0 0
|
||||
STATS_FIRERESIST 39 43 20 1024 8 0 -1 0 0
|
||||
STATS_MAXFIRERESIST 40 584 256 1024 5 0 -1 0 0
|
||||
STATS_LIGHTRESIST 41 43 20 1024 8 0 -1 0 0
|
||||
STATS_MAXLIGHTRESIST 42 584 256 1024 5 0 -1 0 0
|
||||
STATS_COLDRESIST 43 43 20 1024 8 0 -1 0 0
|
||||
STATS_MAXCOLDRESIST 44 584 256 1024 5 0 -1 0 0
|
||||
STATS_POISONRESIST 45 43 20 1024 8 0 -1 0 0
|
||||
STATS_MAXPOISONRESIST 46 526 256 1024 5 0 -1 0 0
|
||||
STATS_DAMAGEAURA 47 1024 -1 0 0
|
||||
STATS_FIREMINDAM 48 11 10 1024 8 0 -1 0 1
|
||||
STATS_FIREMAXDAM 49 19 10 1024 8 0 -1 0 1
|
||||
STATS_LIGHTMINDAM 50 12 10 1024 6 0 -1 0 1
|
||||
STATS_LIGHTMAXDAM 51 17 10 1024 9 0 -1 0 1
|
||||
STATS_MAGICMINDAM 52 196 20 1024 6 0 -1 0 1
|
||||
STATS_MAGICMAXDAM 53 183 20 1024 7 0 -1 0 1
|
||||
STATS_COLDMINDAM 54 451 512 1024 6 0 -1 0 1
|
||||
STATS_COLDMAXDAM 55 128 340 1024 8 0 -1 0 1
|
||||
STATS_COLDLENGTH 56 77 4 1024 8 0 -1 0 1
|
||||
STATS_POISONMINDAM 57 12 28 1024 9 0 -1 0 1
|
||||
STATS_POISONMAXDAM 58 11 34 1024 9 0 -1 0 1
|
||||
STATS_POISONLENGTH 59 0 4 1024 8 0 -1 0 1
|
||||
STATS_LIFEDRAINMINDAM 60 1044 341 1024 7 0 -1 0 1
|
||||
STATS_LIFEDRAINMAXDAM 61 1024 -1 0 1
|
||||
STATS_MANADRAINMINDAM 62 1179 341 1024 7 0 -1 0 1
|
||||
STATS_MANADRAINMAXDAM 63 1024 -1 0 1
|
||||
STATS_STAMDRAINMINDAM 64 1024 -1 0 1
|
||||
STATS_STAMDRAINMAXDAM 65 1024 -1 0 1
|
||||
STATS_STUNLENGTH 66 1024 -1 0 1
|
||||
STATS_VELOCITYPERCENT 67 1024 7 30 -1 0 0
|
||||
STATS_ATTACKRATE 68 1024 7 30 -1 0 1
|
||||
STATS_OTHER_ANIMRATE 69 1024 -1 0 0
|
||||
STATS_QUANTITY 70 1024 -1 0 1
|
||||
STATS_VALUE 71 1024 8 100 -1 0 0
|
||||
STATS_DURABILITY 72 1024 8 0 -1 0 0
|
||||
STATS_MAXDURABILITY 73 9 4 1024 8 0 -1 0 0
|
||||
STATS_HPREGEN 74 451 410 1024 5 10 -1 0 0
|
||||
STATS_ITEM_MAXDURABILITY_PERCENT 75 117 10 1024 7 20 -1 0 0
|
||||
STATS_ITEM_MAXHP_PERCENT 76 32093 204 1024 6 10 -1 0 0
|
||||
STATS_ITEM_MAXMANA_PERCENT 77 56452 204 1024 6 10 -1 0 0
|
||||
STATS_ITEM_ATTACKERTAKESDAMAGE 78 112 128 1024 7 0 -1 0 0
|
||||
STATS_ITEM_GOLDBONUS 79 187 34 1024 8 20 -1 0 0
|
||||
STATS_ITEM_MAGICBONUS 80 577 102 1024 7 20 -1 0 0
|
||||
STATS_ITEM_KNOCKBACK 81 105 0 1024 7 0 -1 0 1
|
||||
STATS_ITEM_TIMEDURATION 82 1024 9 20 -1 0 0
|
||||
STATS_ITEM_ADDAMASKILLPOINTS 83 88042 2048 1024 3 0 -1 0 0
|
||||
STATS_ITEM_ADDPALSKILLPOINTS 84 88042 2048 1024 3 0 -1 0 0
|
||||
STATS_ITEM_ADDNECSKILLPOINTS 85 88042 2048 1024 3 0 -1 0 0
|
||||
STATS_ITEM_ADDSORSKILLPOINTS 86 88042 2048 1024 3 0 -1 0 0
|
||||
STATS_ITEM_ADDBARSKILLPOINTS 87 88042 2048 1024 3 0 -1 0 0
|
||||
STATS_ITEM_DOUBLEHERBDURATION 88 1024 1 0 -1 0 0
|
||||
STATS_ITEM_LIGHTRADIUS 89 15 51 1024 4 4 -1 0 0
|
||||
STATS_ITEM_LIGHTCOLOR 90 155 0 1024 5 0 -1 0 0
|
||||
STATS_ITEM_REQ_PERCENT 91 26 -34 1024 8 100 -1 0 0
|
||||
STATS_ITEM_FASTATTACKRATE 92 211 128 1024 6 20 -1 0 1
|
||||
STATS_ITEM_FASTERATTACKRATE 93 1042 156 1024 6 20 -1 0 1
|
||||
STATS_ITEM_FASTESTATTACKRATE 94 4077 184 1024 7 20 -1 0 1
|
||||
STATS_ITEM_FASTMOVEVELOCITY 95 1047 128 1024 6 20 -1 0 0
|
||||
STATS_ITEM_FASTERMOVEVELOCITY 96 4083 156 1024 6 20 -1 0 0
|
||||
STATS_ITEM_FASTESTMOVEVELOCITY 97 16562 184 1024 7 20 -1 0 0
|
||||
STATS_ITEM_FASTGETHITRATE 98 415 64 1024 6 20 -1 0 0
|
||||
STATS_ITEM_FASTERGETHITRATE 99 1065 72 1024 6 20 -1 0 0
|
||||
STATS_ITEM_FASTESTGETHITRATE 100 3084 96 1024 7 20 -1 0 0
|
||||
STATS_ITEM_FASTBLOCKRATE 101 389 64 1024 6 20 -1 0 0
|
||||
STATS_ITEM_FASTERBLOCKRATE 102 1484 72 1024 6 20 -1 0 0
|
||||
STATS_ITEM_FASTESTBLOCKRATE 103 2270 96 1024 7 20 -1 0 0
|
||||
STATS_ITEM_FASTCASTRATE 104 1215 128 1024 6 20 -1 0 0
|
||||
STATS_ITEM_FASTERCASTRATE 105 3876 156 1024 6 20 -1 0 0
|
||||
STATS_ITEM_FASTESTCASTRATE 106 5083 184 1024 7 20 -1 0 0
|
||||
STATS_ITEM_SINGLESKILL1 107 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_SINGLESKILL2 108 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_SINGLESKILL3 109 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_POISONLENGTHRESIST 110 27 10 1024 8 20 -1 0 0
|
||||
STATS_ITEM_NORMALDAMAGE 111 94 100 1024 7 20 -1 0 1
|
||||
STATS_ITEM_HOWL 112 55 10 1024 7 -1 -1 0 1
|
||||
STATS_ITEM_STUPIDITY 113 332 1024 1024 7 0 -1 0 1
|
||||
STATS_ITEM_DAMAGETOMANA 114 43 20 1024 6 0 -1 0 0
|
||||
STATS_ITEM_IGNORETARGETAC 115 1088 1024 1024 1 0 -1 0 1
|
||||
STATS_ITEM_FRACTIONALTARGETAC 116 67 20 1024 7 0 -1 0 1
|
||||
STATS_ITEM_PREVENTHEAL 117 48 50 1024 7 0 -1 0 1
|
||||
STATS_ITEM_HALFFREEZEDURATION 118 5096 988 1024 1 0 -1 0 0
|
||||
STATS_ITEM_TOHIT_PERCENT 119 981 40 1024 9 20 -1 0 1
|
||||
STATS_ITEM_DAMAGETARGETAC 120 24 -20 1024 7 128 -1 0 1
|
||||
STATS_ITEM_DEMONDAMAGE_PERCENT 121 19 12 1024 9 20 -1 0 1
|
||||
STATS_ITEM_UNDEADDAMAGE_PERCENT 122 13 12 1024 9 20 -1 0 1
|
||||
STATS_ITEM_DEMON_TOHIT 123 15 7 1024 10 128 -1 0 1
|
||||
STATS_ITEM_UNDEAD_TOHIT 124 11 7 1024 10 128 -1 0 1
|
||||
STATS_ITEM_THROWABLE 125 82 1024 1024 1 0 -1 0 0
|
||||
STATS_ITEM_FIRESKILL 126 76 1024 1024 4 0 -1 0 0
|
||||
STATS_ITEM_ALLSKILLS 127 15123 4096 1024 3 0 -1 0 0
|
||||
STATS_ITEM_ATTACKERTAKESLIGHTDAMAGE 128 4 102 1024 5 0 -1 0 0
|
||||
STATS_IRONMAIDEN_LEVEL 129 1024 -1 0 0
|
||||
STATS_LIFETAP_LEVEL 130 1024 -1 0 0
|
||||
STATS_THORNS_LEVEL 131 1024 -1 0 0
|
||||
STATS_BONEARMOR 132 1024 -1 0 0
|
||||
STATS_BONEARMORMAX 133 1024 -1 0 0
|
||||
STATS_ITEM_FREEZE 134 666 12 1024 16 0 -1 0 1
|
||||
STATS_ITEM_OPENWOUNDS 135 23 10 1024 7 0 -1 0 1
|
||||
STATS_ITEM_CRUSHINGBLOW 136 98 40 1024 7 0 -1 0 1
|
||||
STATS_ITEM_KICKDAMAGE 137 77 51 1024 7 0 -1 0 0
|
||||
STATS_ITEM_MANAAFTERKILL 138 17 102 1024 7 0 -1 0 0
|
||||
STATS_ITEM_HEALAFTERDEMONKILL 139 18 102 1024 7 0 -1 0 0
|
||||
STATS_ITEM_EXTRABLOOD 140 15 10 1024 7 0 -1 0 1
|
||||
STATS_ITEM_DEADLYSTRIKE 141 31 25 1024 7 0 -1 0 1
|
||||
STATS_ITEM_ABSORBFIRE_PERCENT 142 5486 102 1024 7 0 -1 0 0
|
||||
STATS_ITEM_ABSORBFIRE 143 1739 204 1024 7 0 -1 0 0
|
||||
STATS_ITEM_ABSORBLIGHT_PERCENT 144 5486 102 1024 7 0 -1 0 0
|
||||
STATS_ITEM_ABSORBLIGHT 145 1739 204 1024 7 0 -1 0 0
|
||||
STATS_ITEM_ABSORBMAGIC_PERCENT 146 5486 102 1024 7 0 -1 0 0
|
||||
STATS_ITEM_ABSORBMAGIC 147 1739 204 1024 7 0 -1 0 0
|
||||
STATS_ITEM_ABSORBCOLD_PERCENT 148 5486 102 1024 7 0 -1 0 0
|
||||
STATS_ITEM_ABSORBCOLD 149 1739 204 1024 7 0 -1 0 0
|
||||
STATS_ITEM_SLOW 150 101 40 1024 7 0 -1 0 1
|
||||
STATS_ITEM_BLESSEDAIM 151 1024 7 0 -1 0 0
|
||||
STATS_ITEM_DEFIANCE 152 1024 7 0 -1 0 0
|
||||
STATS_ITEM_CANNOTBEFROZEN 153 15011 2048 1024 1 -1 0 0
|
||||
STATS_ITEM_STAMINADRAINPCT 154 102 20 1024 7 20 -1 0 1
|
||||
STATS_ITEM_REANIMATE 155 1024 7 0 -1 0 1
|
||||
STATS_ITEM_PIERCE 156 1924 2048 1024 7 0 -1 0 1
|
||||
STATS_ITEM_MAGICARROW 157 511 1024 1024 7 0 -1 0 0
|
||||
STATS_ITEM_EXPLOSIVEARROW 158 492 1536 1024 7 0 -1 0 0
|
||||
STATS_ITEM_THROW_MINDAMAGE 159 76 128 1024 6 0 -1 0 1
|
||||
STATS_ITEM_THROW_MAXDAMAGE 160 88 128 1024 7 0 -1 0 1
|
||||
STATS_SKILL_HANDOFATHENA 161 1024 -1 0 0
|
||||
STATS_SKILL_STAMINAPERCENT 162 1024 -1 0 0
|
||||
STATS_SKILL_PASSIVE_STAMINAPERCENT 163 1024 -1 0 0
|
||||
STATS_SKILL_CONCENTRATION 164 1024 -1 0 0
|
||||
STATS_SKILL_ENCHANT 165 1024 -1 0 0
|
||||
STATS_SKILL_PIERCE 166 1024 -1 0 0
|
||||
STATS_SKILL_CONVICTION 167 1024 -1 0 0
|
||||
STATS_SKILL_CHILLINGARMOR 168 1024 -1 0 0
|
||||
STATS_SKILL_FRENZY 169 1024 -1 0 0
|
||||
STATS_SKILL_DECREPIFY 170 1024 -1 0 0
|
||||
STATS_SKILL_ARMOR_PERCENT 171 1024 -1 0 0
|
||||
STATS_ALIGNMENT 172 1024 -1 0 0
|
||||
STATS_TARGET0 173 1024 -1 0 0
|
||||
STATS_TARGET1 174 1024 -1 0 0
|
||||
STATS_GOLDLOST 175 1024 -1 0 0
|
||||
STATS_CONVERSION_LEVEL 176 1024 -1 0 0
|
||||
STATS_CONVERSION_MAXHP 177 1024 -1 0 0
|
||||
STATS_UNIT_DOOVERLAY 178 1024 -1 0 0
|
||||
Expansion
|
||||
STATS_ITEM_ADDDRUSKILLPOINTS 179 88042 2048 1024 3 0 -1 0 0
|
||||
STATS_ITEM_ADDASSSKILLPOINTS 180 88042 2048 1024 3 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_SINGLE4 181 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_SINGLE5 182 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_SINGLE6 183 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_SINGLE7 184 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_SINGLE8 185 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_SINGLE9 186 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_SINGLE10 187 1 181 256 1024 14 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_TAB1 188 5 11042 768 1024 10 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_TAB2 189 5 11042 768 1024 10 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_TAB3 190 5 11042 768 1024 10 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_TAB4 191 5 11042 768 1024 10 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_TAB5 192 5 11042 768 1024 10 0 -1 0 0
|
||||
STATS_ITEM_ADDSKILL_TAB6 193 5 11042 768 1024 10 0 -1 0 0
|
||||
STATS_ITEM_NUMSOCKETS 194 38 170 1024 4 0 -1 1 0
|
||||
STATS_ITEM_SKILLONATTACK1 195 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_SKILLONATTACK2 196 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_SKILLONATTACK3 197 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_SKILLONHIT1 198 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_SKILLONHIT2 199 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_SKILLONHIT3 200 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_SKILLONGETHIT1 201 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_SKILLONGETHIT2 202 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_SKILLONGETHIT3 203 2 190 256 1024 21 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL0 204 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL1 205 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL2 206 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL3 207 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL4 208 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL5 209 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL6 210 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL7 211 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL8 212 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_CHARGED_SKILL9 213 3 401 256 1024 30 0 -1 1 0
|
||||
STATS_ITEM_ARMOR_PERLEVEL 214 43 42 1024 6 0 31 1 3 1 0
|
||||
STATS_ITEM_ARMORPERCENT_PERLEVEL 215 87 100 1024 6 0 31 1 1 3 1 0
|
||||
STATS_ITEM_HP_PERLEVEL 216 92 64 1024 8 6 0 7 1 3 1 0
|
||||
STATS_ITEM_MANA_PERLEVEL 217 90 128 1024 8 6 0 9 1 3 1 0
|
||||
STATS_ITEM_MAXDAMAGE_PERLEVEL 218 54 204 1024 6 0 22 1 3 1 1
|
||||
STATS_ITEM_MAXDAMAGE_PERCENT_PERLEVEL 219 86 100 1024 6 0 22 1 1 3 1 1
|
||||
STATS_ITEM_STRENGTH_PERLEVEL 220 132 128 1024 6 0 0 1 3 1 0
|
||||
STATS_ITEM_DEXTERITY_PERLEVEL 221 132 128 1024 6 0 2 1 3 1 0
|
||||
STATS_ITEM_ENERGY_PERLEVEL 222 105 128 1024 6 0 1 1 3 1 0
|
||||
STATS_ITEM_VITALITY_PERLEVEL 223 105 128 1024 6 0 3 1 3 1 0
|
||||
STATS_ITEM_TOHIT_PERLEVEL 224 53 20 1024 6 0 19 1 1 1 1
|
||||
STATS_ITEM_TOHITPERCENT_PERLEVEL 225 10 256 1024 6 0 119 1 1 1 1
|
||||
STATS_ITEM_COLD_DAMAGEMAX_PERLEVEL 226 1058 340 1024 6 0 55 1 3 1 1
|
||||
STATS_ITEM_FIRE_DAMAGEMAX_PERLEVEL 227 49 128 1024 6 0 49 1 3 1 1
|
||||
STATS_ITEM_LTNG_DAMAGEMAX_PERLEVEL 228 49 128 1024 6 0 51 1 3 1 1
|
||||
STATS_ITEM_POIS_DAMAGEMAX_PERLEVEL 229 49 128 1024 6 0 58 1 3 1 1
|
||||
STATS_ITEM_RESIST_COLD_PERLEVEL 230 101 128 1024 6 0 43 1 3 1 0
|
||||
STATS_ITEM_RESIST_FIRE_PERLEVEL 231 101 128 1024 6 0 39 1 3 1 0
|
||||
STATS_ITEM_RESIST_LTNG_PERLEVEL 232 101 128 1024 6 0 41 1 3 1 0
|
||||
STATS_ITEM_RESIST_POIS_PERLEVEL 233 101 128 1024 6 0 45 1 3 1 0
|
||||
STATS_ITEM_ABSORB_COLD_PERLEVEL 234 207 340 1024 6 0 149 1 3 1 0
|
||||
STATS_ITEM_ABSORB_FIRE_PERLEVEL 235 207 340 1024 6 0 143 1 3 1 0
|
||||
STATS_ITEM_ABSORB_LTNG_PERLEVEL 236 207 340 1024 6 0 145 1 3 1 0
|
||||
STATS_ITEM_ABSORB_POIS_PERLEVEL 237 207 340 1024 6 0 151 1 3 1 0
|
||||
STATS_ITEM_THORNS_PERLEVEL 238 55 256 1024 6 0 78 1 3 1 0
|
||||
STATS_ITEM_FIND_GOLD_PERLEVEL 239 42 256 1024 6 0 79 1 3 1 0
|
||||
STATS_ITEM_FIND_MAGIC_PERLEVEL 240 814 1024 1024 6 0 80 1 3 1 0
|
||||
STATS_ITEM_REGENSTAMINA_PERLEVEL 241 79 256 1024 6 0 28 1 3 1 0
|
||||
STATS_ITEM_STAMINA_PERLEVEL 242 104 64 1024 6 0 11 1 3 1 0
|
||||
STATS_ITEM_DAMAGE_DEMON_PERLEVEL 243 56 10 1024 6 0 121 1 3 1 1
|
||||
STATS_ITEM_DAMAGE_UNDEAD_PERLEVEL 244 91 10 1024 6 0 122 1 3 1 1
|
||||
STATS_ITEM_TOHIT_DEMON_PERLEVEL 245 55 10 1024 6 0 123 1 1 1 1
|
||||
STATS_ITEM_TOHIT_UNDEAD_PERLEVEL 246 12 10 1024 6 0 124 1 1 1 1
|
||||
STATS_ITEM_CRUSHINGBLOW_PERLEVEL 247 213 1024 1024 6 0 136 1 3 1 1
|
||||
STATS_ITEM_OPENWOUNDS_PERLEVEL 248 181 128 1024 6 0 135 1 3 1 1
|
||||
STATS_ITEM_KICK_DAMAGE_PERLEVEL 249 104 128 1024 6 0 137 1 3 1 1
|
||||
STATS_ITEM_DEADLYSTRIKE_PERLEVEL 250 118 512 1024 6 0 141 1 3 1 1
|
||||
STATS_ITEM_FIND_GEMS_PERLEVEL 251 1024 -1 1 0
|
||||
STATS_ITEM_REPLENISH_DURABILITY 252 106 256 1024 5 0 -1 1 0
|
||||
STATS_ITEM_REPLENISH_QUANTITY 253 106 256 1024 5 0 -1 1 0
|
||||
STATS_ITEM_EXTRA_STACK 254 99 10 1024 8 0 -1 1 0
|
||||
STATS_ITEM_FIND_ITEM 255 1024 -1 1 0
|
||||
STATS_ITEM_SLASH_DAMAGE 256 1024 -1 1 1
|
||||
STATS_ITEM_SLASH_DAMAGE_PERCENT 257 1024 -1 1 1
|
||||
STATS_ITEM_CRUSH_DAMAGE 258 1024 -1 1 1
|
||||
STATS_ITEM_CRUSH_DAMAGE_PERCENT 259 1024 -1 1 1
|
||||
STATS_ITEM_THRUST_DAMAGE 260 1024 -1 1 1
|
||||
STATS_ITEM_THRUST_DAMAGE_PERCENT 261 1024 -1 1 1
|
||||
STATS_ITEM_ABSORB_SLASH 262 1024 -1 1 0
|
||||
STATS_ITEM_ABSORB_CRUSH 263 1024 -1 1 0
|
||||
STATS_ITEM_ABSORB_THRUST 264 1024 -1 1 0
|
||||
STATS_ITEM_ABSORB_SLASH_PERCENT 265 1024 -1 1 0
|
||||
STATS_ITEM_ABSORB_CRUSH_PERCENT 266 1024 -1 1 0
|
||||
STATS_ITEM_ABSORB_THRUST_PERCENT 267 1024 -1 1 0
|
||||
STATS_ITEM_ARMOR_BYTIME 268 4 0 1024 22 0 31 1 1 0
|
||||
STATS_ITEM_ARMORPERCENT_BYTIME 269 4 0 1024 22 0 31 1 1 0
|
||||
STATS_ITEM_HP_BYTIME 270 4 0 1024 22 0 7 1 1 0
|
||||
STATS_ITEM_MANA_BYTIME 271 4 0 1024 22 0 9 1 1 0
|
||||
STATS_ITEM_MAXDAMAGE_BYTIME 272 4 0 1024 22 0 22 1 1 1
|
||||
STATS_ITEM_MAXDAMAGE_PERCENT_BYTIME 273 4 0 1024 22 0 22 1 1 1
|
||||
STATS_ITEM_STRENGTH_BYTIME 274 4 0 1024 22 0 0 1 1 0
|
||||
STATS_ITEM_DEXTERITY_BYTIME 275 4 0 1024 22 0 2 1 1 0
|
||||
STATS_ITEM_ENERGY_BYTIME 276 4 0 1024 22 0 1 1 1 0
|
||||
STATS_ITEM_VITALITY_BYTIME 277 4 0 1024 22 0 3 1 1 0
|
||||
STATS_ITEM_TOHIT_BYTIME 278 4 0 1024 22 0 19 1 1 1
|
||||
STATS_ITEM_TOHITPERCENT_BYTIME 279 4 0 1024 22 0 19 1 1 1
|
||||
STATS_ITEM_COLD_DAMAGEMAX_BYTIME 280 4 0 1024 22 0 55 1 1 1
|
||||
STATS_ITEM_FIRE_DAMAGEMAX_BYTIME 281 4 0 1024 22 0 49 1 1 1
|
||||
STATS_ITEM_LTNG_DAMAGEMAX_BYTIME 282 4 0 1024 22 0 51 1 1 1
|
||||
STATS_ITEM_POIS_DAMAGEMAX_BYTIME 283 4 0 1024 22 0 58 1 1 1
|
||||
STATS_ITEM_RESIST_COLD_BYTIME 284 4 0 1024 22 0 43 1 1 0
|
||||
STATS_ITEM_RESIST_FIRE_BYTIME 285 4 0 1024 22 0 39 1 1 0
|
||||
STATS_ITEM_RESIST_LTNG_BYTIME 286 4 0 1024 22 0 41 1 1 0
|
||||
STATS_ITEM_RESIST_POIS_BYTIME 287 4 0 1024 22 0 45 1 1 0
|
||||
STATS_ITEM_ABSORB_COLD_BYTIME 288 4 0 1024 22 0 149 1 1 0
|
||||
STATS_ITEM_ABSORB_FIRE_BYTIME 289 4 0 1024 22 0 143 1 1 0
|
||||
STATS_ITEM_ABSORB_LTNG_BYTIME 290 4 0 1024 22 0 145 1 1 0
|
||||
STATS_ITEM_ABSORB_POIS_BYTIME 291 4 0 1024 22 0 151 1 1 0
|
||||
STATS_ITEM_FIND_GOLD_BYTIME 292 4 0 1024 22 0 79 1 1 0
|
||||
STATS_ITEM_FIND_MAGIC_BYTIME 293 4 0 1024 22 0 80 1 1 0
|
||||
STATS_ITEM_REGENSTAMINA_BYTIME 294 4 0 1024 22 0 28 1 1 0
|
||||
STATS_ITEM_STAMINA_BYTIME 295 4 0 1024 22 0 11 1 1 0
|
||||
STATS_ITEM_DAMAGE_DEMON_BYTIME 296 4 0 1024 22 0 121 1 1 1
|
||||
STATS_ITEM_DAMAGE_UNDEAD_BYTIME 297 4 0 1024 22 0 122 1 1 1
|
||||
STATS_ITEM_TOHIT_DEMON_BYTIME 298 4 0 1024 22 0 123 1 1 1
|
||||
STATS_ITEM_TOHIT_UNDEAD_BYTIME 299 4 0 1024 22 0 124 1 1 1
|
||||
STATS_ITEM_CRUSHINGBLOW_BYTIME 300 4 0 1024 22 0 136 1 1 1
|
||||
STATS_ITEM_OPENWOUNDS_BYTIME 301 4 0 1024 22 0 135 1 1 1
|
||||
STATS_ITEM_KICK_DAMAGE_BYTIME 302 4 0 1024 22 0 137 1 1 1
|
||||
STATS_ITEM_DEADLYSTRIKE_BYTIME 303 4 0 1024 22 0 141 1 1 1
|
||||
STATS_ITEM_FIND_GEMS_BYTIME 304 4 0 1024 -1 1 0
|
||||
STATS_ITEM_PIERCE_COLD 305 1024 -1 1 1
|
||||
STATS_ITEM_PIERCE_FIRE 306 1024 -1 1 1
|
||||
STATS_ITEM_PIERCE_LTNG 307 1024 -1 1 1
|
||||
STATS_ITEM_PIERCE_POIS 308 1024 -1 1 1
|
||||
STATS_ITEM_DAMAGE_VS_MONSTER 309 1024 -1 1 1
|
||||
STATS_ITEM_DAMAGE_PERCENT_VS_MONSTER 310 1024 -1 1 1
|
||||
STATS_ITEM_TOHIT_VS_MONSTER 311 1024 -1 1 1
|
||||
STATS_ITEM_TOHIT_PERCENT_VS_MONSTER 312 1024 -1 1 1
|
||||
STATS_ITEM_AC_VS_MONSTER 313 1024 -1 1 0
|
||||
STATS_ITEM_AC_PERCENT_VS_MONSTER 314 1024 -1 1 0
|
||||
STATS_FIRELENGTH 315 1024 -1 0 0
|
||||
STATS_BURNINGMIN 316 1024 -1 0 0
|
||||
STATS_BURNINGMAX 317 1024 -1 0 0
|
||||
STATS_PROGRESSIVE_DAMAGE 318 1024 -1 0 0
|
||||
STATS_PROGRESSIVE_STEAL 319 1024 -1 0 0
|
||||
STATS_PROGRESSIVE_OTHER 320 1024 -1 0 0
|
||||
STATS_PROGRESSIVE_FIRE 321 1024 -1 0 0
|
||||
STATS_PROGRESSIVE_COLD 322 1024 -1 0 0
|
||||
STATS_PROGRESSIVE_LIGHTNING 323 1024 -1 0 0
|
||||
STATS_ITEM_EXTRA_CHARGES 324 1024 6 0 -1 1 1 1
|
||||
STATS_PROGRESSIVE_TOHIT 323 1024 -1 0 0
|
||||
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
|
||||
|
@ -1,93 +1,118 @@
|
||||
ItemType Code Order Equiv1 Equiv2 Identify Repair Mods Body BodyLoc1 BodyLoc2 Shoots Quiver Throwable Reload ReEquip AutoStack Magic Rare Normal Charm Gem Beltable MaxSock1 MaxSock25 MaxSock40 TreasureClass Rarity StaffMods CostFormula Class VarInvGfx InvGfx1 InvGfx2 InvGfx3 InvGfx4 InvGfx5 InvGfx6 StorePage
|
||||
None 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
None 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Shield shie 0 shld 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 3 4 0 3 1 0 armo
|
||||
Armor tors 0 armo 1 1 1 1 tors tors 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 1 0 armo
|
||||
Gold gold 0 misc 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0
|
||||
Bow Quiver bowq 0 misl 0 0 0 1 rarm larm bow 0 1 0 1 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Crossbow Quiver xboq 0 misl 0 0 0 1 rarm larm xbow 0 1 0 1 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Player Body Part play 0 misc 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 3 0 0 misc
|
||||
Herb herb 0 misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Potion poti 0 misc 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Ring ring 0 misc 1 0 1 1 rrin lrin 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 0 5 invrin1 invrin2 invrin3 invrin4 invrin5 mag
|
||||
Elixir elix 0 misc 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Amulet amul 0 misc 1 0 1 1 neck neck 0 0 0 0 1 0 0 0 0 0 0 0 0 0 3 0 3 invamu1 invamu2 invamu3 mag
|
||||
Charm char 0 misc 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 0 3 invch1 invch4 invch7 mag
|
||||
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Boots boot 0 armo 1 1 1 1 feet feet 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 armo
|
||||
Gloves glov 0 armo 1 1 1 1 glov glov 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 armo
|
||||
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Book book 0 misc 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Belt belt 0 armo 1 1 1 1 belt belt 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 armo
|
||||
Gem gem 0 sock 0 0 1 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 3 0 0 misc
|
||||
Torch torc 0 misc 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Scroll scro 0 misc 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Not Used 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Scepter scep 0 rod 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 5 6 0 1 pal 0 0 weap
|
||||
Wand wand 0 rod 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 2 2 2 0 1 nec 0 0 weap
|
||||
Staff staf 0 rod 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 5 6 6 0 1 sor 0 0 weap
|
||||
Bow bow 0 miss 1 0 1 1 rarm larm bowq 0 0 0 0 0 0 0 0 0 0 3 4 5 1 3 0 0 weap
|
||||
Axe axe 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 4 5 6 0 3 0 0 weap
|
||||
Club club 0 blun 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 0 0 weap
|
||||
Sword swor 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 5 0 3 0 0 weap
|
||||
Hammer hamm 0 blun 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 0 0 weap
|
||||
Knife knif 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 2 3 3 0 3 0 0 weap
|
||||
Spear spea 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 4 0 3 0 0 weap
|
||||
Polearm pole 0 mele 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 4 0 3 0 0 weap
|
||||
Crossbow xbow 0 miss 1 1 1 1 rarm larm xboq 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 0 0 weap
|
||||
Mace mace 0 blun 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 6 0 3 0 0 weap
|
||||
Helm helm 0 armo 1 1 1 1 head head 0 0 0 0 0 0 0 0 0 0 2 2 3 0 3 1 0 armo
|
||||
Missile Potion tpot 0 thro 0 1 0 1 rarm larm 1 1 1 1 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Quest ques 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Body Part body 0 misc 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 2 0 misc
|
||||
Key key 0 misc 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Throwing Knife tkni 0 comb knif 1 1 1 1 rarm larm 1 1 1 1 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Throwing Axe taxe 0 comb axe 1 1 1 1 rarm larm 1 1 1 1 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Javelin jave 0 comb spea 1 1 1 1 rarm larm 1 1 1 1 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Weapon weap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0
|
||||
Melee Weapon mele 0 weap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0
|
||||
Missile Weapon miss 0 weap 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Thrown Weapon thro 0 weap 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Combo Weapon comb 0 mele thro 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Any Armor armo 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 3 0 0
|
||||
Any Shield shld 0 armo seco 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Miscellaneous misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Socket Filler sock 0 misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Second Hand seco 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Staves And Rods rod 0 blun 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Missile misl 0 misc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Blunt blun 0 mele 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Expansion
|
||||
Jewel jewl 0 sock 1 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 3 0 6 invjw1 invjw2 invjw3 invjw4 invjw5 invjw6 misc
|
||||
Class Specific clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0
|
||||
Amazon Item amaz 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 ama 0
|
||||
Barbarian Item barb 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 bar 0
|
||||
Necromancer Item necr 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 nec 0
|
||||
Paladin Item pala 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 pal 0
|
||||
Sorceress Item sorc 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 sor 0
|
||||
Assassin Item assn 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 ass 0
|
||||
Druid Item drui 0 clas 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 dru 0
|
||||
Hand to Hand h2h 0 mele assn 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 2 3 3 0 2 0 ass 0 weap
|
||||
Orb orb 0 weap sorc 1 1 1 1 rarm larm 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 sor 0 sor 0 mag
|
||||
Voodoo Heads head 0 shld necr 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 nec 0 nec 0 mag
|
||||
Auric Shields ashd 0 shld pala 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 4 0 1 0 pal 0 armo
|
||||
Primal Helm phlm 0 helm barb 1 1 1 1 head head 0 0 0 0 0 0 0 0 0 0 2 3 3 0 1 bar 0 bar 0 armo
|
||||
Pelt pelt 0 helm drui 1 1 1 1 head head 0 0 0 0 0 0 0 0 0 0 2 3 3 0 1 dru 0 dru 0 armo
|
||||
Cloak cloa 0 tors assn 1 1 1 1 tors tors 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 ass 0 ass 0 armo
|
||||
Rune rune 0 sock 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Circlet circ 0 helm 1 1 1 1 head head 0 0 0 0 1 0 0 0 0 0 1 1 1 0 3 1 0 armo
|
||||
Healing Potion hpot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Mana Potion mpot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Rejuv Potion rpot 0 hpot mpot 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Stamina Potion spot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Antidote Potion apot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Thawing Potion wpot 0 poti 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 3 0 0 misc
|
||||
Small Charm scha 0 char 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 0 3 invch1 invch4 invch7 mag
|
||||
Medium Charm mcha 0 char 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 0 3 invch2 invch5 invch8 mag
|
||||
Large Charm lcha 0 char 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 3 0 3 invch3 invch6 invch9 mag
|
||||
Amazon Bow abow 0 bow amaz 1 0 1 1 rarm larm bowq 0 0 0 0 0 0 0 0 0 0 3 4 5 1 1 0 ama 0 weap
|
||||
Amazon Spear aspe 0 spea amaz 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 3 4 4 0 1 0 ama 0 weap
|
||||
Amazon Javelin ajav 0 jave amaz 1 1 1 1 rarm larm 1 1 1 1 0 0 0 0 0 0 0 0 0 0 1 0 ama 0 misc
|
||||
Hand to Hand 2 h2h2 0 h2h 1 1 1 1 rarm larm 0 0 0 0 0 0 0 0 0 0 2 3 3 0 2 ass 0 ass 0 weap
|
||||
Magic Bow Quiv mboq 0 bowq 1 0 1 1 rarm larm bow 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
|
||||
Magic Xbow Quiv mxbq 0 xboq 1 0 1 1 rarm larm xbow 0 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 misc
|
||||
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
|
||||
|
22
txt/KillCounter.txt
Normal file
22
txt/KillCounter.txt
Normal file
@ -0,0 +1,22 @@
|
||||
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
|
373
txt/Levels.txt
373
txt/Levels.txt
@ -1,135 +1,238 @@
|
||||
Name Id Pal Act Layer SizeX SizeY OffsetX OffsetY Depend Rain Mud NoPer LOSDraw FloorFilter BlankScreen DrawEdges IsInside DrlgType LevelType SubType SubTheme SubWaypoint SubShrine Vis0 Vis1 Vis2 Vis3 Vis4 Vis5 Vis6 Vis7 Warp0 Warp1 Warp2 Warp3 Warp4 Warp5 Warp6 Warp7 Intensity Red Green Blue Portal Position SaveMonsters Quest WarpDist MonLvl1 MonLvl2 MonLvl3 MonDen MonUMin MonUMax MonWndr MonSpcWalk Mtot M1 M2 M3 M4 M5 M6 M7 M8 M9 M10 M11 M12 M13 M14 M15 M16 M17 M18 M19 M20 M21 M22 M23 M24 M25 S1 S2 S3 S4 S5 S6 S7 S8 S9 S10 S11 S12 S13 S14 S15 S16 S17 S18 S19 S20 S21 S22 S23 S24 S25 Utot U1 U2 U3 U4 U5 U6 U7 U8 U9 U10 U11 U12 U13 U14 U15 U16 U17 U18 U19 U20 U21 U22 U23 U24 U25 C1 C2 C3 C4 C5 CA1 CA2 CA3 CA4 CA5 CD1 CD2 CD3 CD4 CD5 Themes SoundEnv Waypoint LevelName LevelWarp EntryFile ObjGrp0 ObjGrp1 ObjGrp2 ObjGrp3 ObjGrp4 ObjGrp5 ObjGrp6 ObjGrp7 ObjPrb0 ObjPrb1 ObjPrb2 ObjPrb3 ObjPrb4 ObjPrb5 ObjPrb6 ObjPrb7 Beta
|
||||
Null 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Town 1 0 0 0 56 40 -1 -1 0 1 0 0 0 1 1 0 0 2 1 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 1 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 149 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 1 0 Rogue Encampment To The Rogue Encampment A1L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Wilderness 1 2 0 0 0 80 80 -1 -1 0 1 0 0 0 1 1 1 0 3 2 6 0 4 5 0 0 0 8 8 8 8 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 0 0 1 0 2025 1 34 67 520 0 0 1 0 3 5 19 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 5 19 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 255 Blood Moor To The Blood Moor A1L2 4 38 33 34 0 0 0 0 3 17 17 17 0 0 0 0 1
|
||||
Act 1 - Wilderness 2 3 0 0 0 80 80 1000 1000 0 1 0 0 0 1 1 1 0 3 2 6 1 4 5 0 0 0 9 9 9 9 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 1 0 1 0 2025 2 35 68 520 1 1 1 0 4 28 43 58 165 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 28 43 58 165 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 Cold Plains To The Cold Plains A1L3 4 38 33 34 0 0 0 0 3 22 22 22 0 0 0 0 1
|
||||
Act 1 - Wilderness 3 4 0 0 0 80 80 1000 1000 0 1 0 0 0 1 1 1 0 3 2 6 2 4 5 0 0 0 10 10 10 10 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 0 0 1 0 2025 4 37 70 520 1 2 1 0 5 0 6 15 53 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 206 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 6 15 53 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 Stony Field To The Stony Field A1L4 1 38 33 34 0 0 0 0 4 27 27 27 0 0 0 0 1
|
||||
Act 1 - Wilderness 4 5 0 0 0 80 80 -1 -1 0 1 0 0 0 1 1 1 0 3 2 6 3 4 5 0 0 0 10 10 10 10 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 1 0 1 0 2025 5 38 71 520 1 2 1 0 5 20 44 64 166 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 20 44 64 166 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 Dark Wood To The Dark Wood A1L5 1 38 33 34 0 0 0 0 4 30 30 30 0 0 0 0 1
|
||||
Act 1 - Wilderness 5 6 0 0 0 80 80 -1 -1 0 1 0 0 0 1 1 1 0 3 2 6 4 4 5 0 0 20 11 11 11 11 0 -1 -1 10 0 1 2 3 -1 0 0 0 0 0 0 1 0 2025 6 39 72 520 1 2 1 0 6 1 16 24 54 59 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 207 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 16 24 54 59 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 4 Black Marsh To The Black Marsh A1L6 1 38 33 34 0 0 0 0 5 32 32 32 0 0 0 0 1
|
||||
Act 1 - Wilderness 6 7 0 0 0 80 80 -1 -1 0 1 0 0 0 1 1 1 0 3 2 6 2 4 5 0 0 0 12 12 12 12 0 -1 -1 -1 0 1 2 3 -1 0 0 0 0 1 0 1 0 2025 8 41 74 520 1 2 1 0 5 45 65 167 171 383 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 45 65 167 171 383 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 255 Tamoe Highland To The Tamoe Highland A1L7 1 38 33 34 0 0 0 0 5 35 35 35 0 0 0 0 1
|
||||
Act 1 - Cave 1 8 0 0 1 200 200 1500 1000 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 2 0 0 0 0 0 0 0 4 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 1 2025 1 34 67 600 0 0 0 0 3 5 28 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 5 28 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Den of Evil To The Den of Evil A1L9 6 4 0 0 0 0 0 0 35 45 0 0 0 0 0 0 1
|
||||
Act 1 - Cave 2 9 0 0 2 200 200 1500 1300 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 3 0 0 0 13 0 0 0 4 -1 -1 -1 5 -1 -1 -1 0 255 255 255 0 0 1 0 2025 2 35 68 600 1 2 1 0 3 0 6 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 6 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Cave Level 1 To The Cave Level 1 A1L9 6 4 0 0 0 0 0 0 30 3 0 0 0 0 0 0 1
|
||||
Act 1 - Cave 3 10 0 0 3 200 200 1500 1600 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 4 5 0 0 14 0 0 0 4 4 -1 -1 5 -1 -1 -1 0 255 255 255 0 0 1 0 2025 4 37 70 600 1 2 1 0 4 12 20 44 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12 20 44 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Underground Passage Level 1 To Underground Passage Level 1 A1L10 6 4 0 0 0 0 0 0 30 3 0 0 0 0 0 0 1
|
||||
Act 1 - Cave 4 11 0 0 4 200 200 1500 1900 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 6 0 0 0 15 0 0 0 4 -1 -1 -1 5 -1 -1 -1 0 255 255 255 0 0 1 0 2025 5 38 71 600 1 2 1 0 4 12 20 24 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12 20 24 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Hole Level 1 To The Hole Level 1 A1L11 6 4 0 0 0 0 0 0 30 3 0 0 0 0 0 0 1
|
||||
Act 1 - Cave 5 12 0 0 5 200 200 1500 2200 0 0 0 0 1 1 1 0 1 1 3 -1 -1 -1 -1 7 0 0 0 16 0 0 0 4 -1 -1 -1 5 -1 -1 -1 0 255 255 255 0 0 1 0 2025 7 40 73 600 1 2 1 0 4 2 21 45 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 21 45 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Pit Level 1 To The Pit Level 1 A1L12 6 4 0 0 0 0 0 0 30 6 0 0 0 0 0 0 1
|
||||
Act 1 - Cave 2 Treasure 13 0 0 6 24 24 1500 2500 0 0 0 0 1 1 1 0 1 2 3 -1 -1 -1 -1 0 9 0 0 0 0 0 0 -1 4 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 2 35 68 600 1 2 1 0 3 0 6 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 6 160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Cave Level 2 To The Cave Level 2 A1L14 6 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
|
||||
Act 1 - Cave 3 Treasure 14 0 0 7 24 24 1500 2624 0 0 0 0 1 1 1 0 1 2 3 -1 -1 -1 -1 0 10 0 0 0 0 0 0 -1 4 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 4 37 70 600 1 2 1 0 4 12 20 44 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12 20 44 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Underground Passage Level 2 To Underground Passage Level 2 A1L15 6 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
|
||||
Act 1 - Cave 4 Treasure 15 0 0 8 24 24 1500 2748 0 0 0 0 1 1 1 0 1 2 3 -1 -1 -1 -1 0 11 0 0 0 0 0 0 -1 4 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 3800 5 38 71 600 1 2 1 0 4 12 20 24 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 12 20 24 161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Hole Level 2 To The Hole Level 2 A1L16 6 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
|
||||
Act 1 - Cave 5 Treasure 16 0 0 9 24 24 1500 2872 0 0 0 0 1 1 1 0 1 2 3 -1 -1 -1 -1 0 12 0 0 0 0 0 0 -1 4 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 7 40 73 600 1 2 1 0 4 2 21 45 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 2 21 45 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 4 255 Pit Level 2 To The Pit Level 2 A1L17 6 4 0 0 0 0 0 0 25 6 0 0 0 0 0 0 1
|
||||
Act 1 - Graveyard 17 0 0 0 40 48 -1 -1 0 1 0 0 0 1 1 1 0 3 2 -1 -1 -1 -1 18 19 0 0 0 0 0 0 6 7 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 3 36 69 520 0 0 1 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 255 Burial Grounds To The Burial Grounds A1L18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Crypt 1 A 18 0 0 10 200 200 2000 1000 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 17 0 0 0 0 0 0 0 8 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 3 36 69 1056 1 1 1 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Crypt To The Crypt A1L19 7 8 9 10 0 0 0 0 75 4 50 75 0 0 0 0 1
|
||||
Act 1 - Crypt 2 A 19 0 0 11 200 200 2000 1300 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 17 0 0 0 0 0 0 0 8 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 3 36 69 1056 1 1 1 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Mausoleum To The Mausoleum A1L20 7 8 9 10 0 0 0 0 75 4 50 75 0 0 0 0 1
|
||||
Act 1 - Tower 2 20 0 0 12 8 8 2000 1600 0 0 0 0 1 1 1 0 1 2 2 -1 -1 -1 -1 6 21 0 0 0 0 0 0 11 12 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 7 40 73 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 5 255 Forgotten Tower To The Forgotten Tower A1L21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Crypt 3 A 21 0 0 13 200 200 2500 1000 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 20 22 0 0 0 0 0 0 8 9 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 1 To The Tower Cellar Level 1 A1L22 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
|
||||
Act 1 - Crypt 3 B 22 0 0 14 200 200 2500 1300 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 21 23 0 0 0 0 0 0 8 9 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 2 To The Tower Cellar Level 2 A1L23 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
|
||||
Act 1 - Crypt 3 C 23 0 0 15 200 200 2500 1600 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 22 24 0 0 0 0 0 0 8 9 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 3 To The Tower Cellar Level 3 A1L24 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
|
||||
Act 1 - Crypt 3 D 24 0 0 16 200 200 2500 1900 0 0 0 0 1 1 1 0 1 1 4 -1 -1 -1 -1 23 25 0 0 0 0 0 0 8 9 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 4 To The Tower Cellar Level 4 A1L25 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
|
||||
Act 1 - Crypt 3 E 25 0 0 17 30 30 2500 2200 0 0 0 0 1 1 1 0 1 2 4 -1 -1 -1 -1 24 0 0 0 0 0 0 0 8 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 7 40 73 640 1 1 1 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 21 38 55 162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 5 255 Tower Cellar Level 5 To The Tower Cellar Level 5 A1L26 15 0 0 0 0 0 0 0 25 0 0 0 0 0 0 0 1
|
||||
Act 1 - Monastery 26 0 0 0 64 18 3000 1000 0 0 0 0 1 1 1 0 0 2 5 -1 -1 -1 -1 0 27 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 8 41 74 600 0 1 1 0 4 13 45 171 387 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 13 45 171 387 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 6 255 Monastery Gate To The Monastery Gate A1L27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Courtyard 1 27 0 0 0 56 40 0 -40 26 0 0 0 1 1 1 0 0 2 6 -1 -1 -1 -1 26 28 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 1 0 1 0 2025 9 42 75 600 0 1 1 0 4 25 46 60 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 25 46 60 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 5 Outer Cloister To The Outer Cloister A1L28 14 15 0 0 0 0 0 0 7 33 0 0 0 0 0 0 1
|
||||
Act 1 - Barracks 28 0 0 0 200 200 -1 -1 0 0 0 0 1 1 1 0 1 1 7 -1 -1 -1 -1 27 29 0 0 0 0 0 0 -1 14 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 9 42 75 680 1 2 1 0 5 46 57 60 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 46 57 60 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 8 255 Barracks To The Barracks A1L29 51 3 17 0 0 0 0 0 9 35 25 0 0 0 0 0 1
|
||||
Act 1 - Jail 1 29 0 0 18 200 200 3500 1000 0 0 0 0 1 1 1 0 1 1 8 -1 -1 -1 -1 28 30 0 0 0 0 0 0 13 14 -1 -1 -1 -1 -1 -1 0 255 255 255 1 0 1 0 2025 10 43 76 680 1 2 1 1 5 22 39 57 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 22 39 57 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 8 6 Jail Level 1 To The Jail Level 1 A1L30 51 15 3 0 0 0 0 0 11 50 35 0 0 0 0 0 1
|
||||
Act 1 - Jail 2 30 0 0 19 200 200 3500 1300 0 0 0 0 1 1 1 0 1 1 8 -1 -1 -1 -1 29 31 0 0 0 0 0 0 13 14 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 10 43 76 680 1 2 1 1 5 22 39 57 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 22 39 57 172 384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 8 8 255 Jail Level 2 To The Jail Level 2 A1L31 51 15 3 0 0 0 0 0 13 50 45 0 0 0 0 0 1
|
||||
Act 1 - Jail 3 31 0 0 20 200 200 3500 1600 0 0 0 0 1 1 1 0 1 1 8 -1 -1 -1 -1 30 32 0 0 0 0 0 0 13 13 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 10 43 76 680 1 2 1 1 5 22 39 57 172 388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 22 39 57 172 388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 8 255 Jail Level 3 To The Jail Level 3 A1L32 51 15 3 0 0 0 0 0 15 50 55 0 0 0 0 0 1
|
||||
Act 1 - Courtyard 2 32 0 0 0 18 20 4000 1000 0 0 0 0 1 1 1 0 0 2 6 -1 -1 -1 -1 31 33 0 0 0 0 0 0 14 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 10 43 76 720 0 1 1 0 3 22 163 388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 22 163 388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 Inner Cloister To The Inner Cloister A1L33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Cathedral 33 0 0 0 28 34 -4 -34 32 0 0 0 1 1 1 0 1 2 9 -1 -1 -1 -1 32 34 0 0 0 0 0 0 -1 15 -1 -1 -1 -1 -1 -1 0 255 255 255 1 0 1 0 2025 11 44 77 680 1 2 1 0 3 11 39 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11 39 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 0 9 255 Cathedral To The Cathedral A1L34 16 3 50 17 0 0 0 0 35 45 3 3 0 0 0 0 1
|
||||
Act 1 - Catacombs 1 34 0 0 21 200 200 4500 1000 0 0 0 0 1 1 1 0 1 1 10 -1 -1 -1 -1 33 35 0 0 0 0 0 0 16 18 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 11 44 77 680 1 2 1 0 3 11 61 141 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11 61 141 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 60 10 255 Catacombs Level 1 To The Catacombs Level 1 A1L35 16 3 14 17 0 0 0 0 40 45 15 3 0 0 0 0 1
|
||||
Act 1 - Catacombs 2 35 0 0 22 200 200 4500 1300 0 0 0 0 1 1 1 0 1 1 10 -1 -1 -1 -1 34 36 0 0 0 0 0 0 17 18 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 11 44 77 680 1 2 1 0 3 11 61 122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 11 61 122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 60 10 8 Catacombs Level 2 To The Catacombs Level 2 A1L36 16 3 14 17 0 0 0 0 45 45 17 3 0 0 0 0 1
|
||||
Act 1 - Catacombs 3 36 0 0 23 200 200 4500 1600 0 0 0 0 1 1 1 0 1 1 10 -1 -1 -1 -1 35 37 0 0 0 0 0 0 17 18 -1 -1 -1 -1 -1 -1 0 255 255 255 1 0 1 0 2025 12 45 78 680 1 2 1 0 3 7 10 135 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 7 10 135 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 60 10 255 Catacombs Level 3 To The Catacombs Level 3 A1L37 16 3 14 17 0 0 0 0 50 45 19 3 0 0 0 0 1
|
||||
Act 1 - Catacombs 4 37 0 0 24 22 31 4500 1900 0 0 0 0 1 1 1 0 1 2 10 -1 -1 -1 -1 36 0 0 0 0 0 0 0 17 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 12 45 78 680 1 2 1 0 2 7 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 7 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 0 0 0 30 30 0 0 0 0 0 0 0 0 60 10 255 Catacombs Level 4 To The Catacombs Level 4 A1L38 16 3 14 17 0 0 0 0 55 45 1 3 0 0 0 0 1
|
||||
Act 1 - Tristram 38 0 0 25 43 48 5000 1000 0 1 0 0 0 1 1 1 0 2 11 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 1 0 2025 6 39 72 520 1 2 0 0 4 1 54 59 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 1 54 59 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 255 Tristram To Tristram A1L39 44 45 0 0 0 0 0 0 0 33 1 0 0 0 0 0 1
|
||||
Act 1 - Moo Moo Farm 39 0 0 26 80 80 5000 1148 0 1 0 0 0 1 1 0 0 3 2 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 28 61 94 800 0 1 1 0 3 391 391 391 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 391 391 391 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 255 Moo Moo Farm To The Moo Moo Farm A1L40 1 38 33 34 0 0 0 0 5 35 35 35 0 0 0 0 0
|
||||
Act 2 - Town 40 1 1 27 56 56 1000 1000 0 0 0 0 0 1 1 1 0 2 12 -1 -1 -1 -1 0 0 47 47 50 0 0 0 -1 -1 19 20 24 -1 -1 -1 0 0 0 0 1 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 268 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 12 9 Lut Gholein To Lut Gholein A2L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Act 2 - Desert 1 41 1 1 27 80 80 -1 -1 0 0 0 0 0 1 1 1 0 3 16 9 0 7 8 55 55 55 55 0 0 0 0 33 34 35 36 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 14 47 80 880 1 2 1 0 5 78 83 91 110 373 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 78 83 91 110 373 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 255 Rocky Waste To The Rocky Waste A2L2 30 24 32 37 36 0 0 0 15 30 15 40 40 0 0 0 0
|
||||
Act 2 - Desert 2 42 1 1 27 80 80 -1 -1 0 0 0 0 0 1 1 1 0 3 16 9 1 7 8 56 56 56 56 0 0 0 0 33 34 35 36 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 15 48 81 880 1 2 1 0 4 79 84 111 394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 79 84 111 394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 11 Dry Hills To The Dry Hills A2L3 30 24 32 37 36 0 0 0 15 30 14 40 40 0 0 0 0
|
||||
Act 2 - Desert 3 43 1 1 27 80 80 -1 -1 0 0 0 0 0 1 1 1 0 3 16 9 2 7 8 0 0 0 0 62 0 0 0 -1 -1 -1 -1 47 -1 -1 -1 0 0 0 0 1 0 1 0 2025 16 49 82 880 1 2 1 0 5 17 68 87 92 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 17 68 87 92 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 13 Far Oasis To The Far Oasis A2L4 30 24 32 37 36 0 0 0 15 30 13 40 40 0 0 0 0
|
||||
Act 2 - Desert 4 44 1 1 27 80 80 -1 -1 0 0 0 0 0 1 1 1 0 3 16 9 3 7 8 0 0 65 0 0 0 0 0 -1 -1 50 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 3800 17 50 83 880 1 2 1 0 5 9 30 80 85 395 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 9 30 80 85 395 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 14 Lost City To The Lost City A2L5 30 24 32 37 36 0 0 0 15 30 12 40 40 0 0 0 0
|
||||
Act 2 - Desert 5 45 1 1 27 32 32 -1 -1 0 0 0 0 0 1 1 1 0 3 16 -1 -1 -1 8 0 58 0 0 0 0 0 0 -1 37 -1 -1 -1 -1 -1 -1 0 0 0 0 1 0 1 0 2025 18 51 84 880 1 2 1 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 13 255 Valley of Snakes To The Valley of Snakes A2L6 30 24 32 37 36 0 0 0 15 30 11 40 40 0 0 0 0
|
||||
Act 2 - Valley of the Kings 46 1 1 28 80 80 2500 1000 0 0 0 1 0 1 1 1 0 3 16 9 4 7 8 0 66 67 68 69 70 71 72 -1 38 39 40 41 42 43 44 0 0 0 0 1 1 1 0 3800 16 49 82 880 0 0 1 0 5 26 70 86 94 376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 26 70 86 94 376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 14 17 Canyon of the Magi To The Canyon of the Magi A2L7 30 24 32 37 36 0 0 0 15 30 10 40 40 0 0 0 0
|
||||
Act 2 - Sewer 1 A 47 1 1 29 200 200 1500 1000 0 0 0 0 1 1 1 0 1 1 13 -1 -1 -1 -1 40 40 48 0 0 0 0 0 22 21 23 -1 -1 -1 -1 -1 8 255 255 255 0 0 1 0 100 13 46 79 680 0 1 1 0 4 3 29 96 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 29 96 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 100 20 0 0 0 0 0 0 0 0 15 255 Sewers Level 1 To The Sewers Level 1 A2L8 32 26 5 0 0 0 0 0 10 10 10 0 0 0 0 0 0
|
||||
Act 2 - Sewer 1 B 48 1 1 30 200 200 1500 1300 0 0 0 0 1 1 1 0 1 1 13 -1 -1 -1 -1 47 0 49 0 0 0 0 0 22 -1 23 -1 -1 -1 -1 -1 8 255 255 255 0 0 1 0 2025 13 46 79 680 0 1 1 0 4 3 29 96 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 29 96 173 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 100 20 0 0 0 0 0 0 0 0 15 10 Sewers Level 2 To The Sewers Level 2 A2L9 32 26 5 0 0 0 0 0 12 12 12 0 0 0 0 0 0
|
||||
Act 2 - Sewer 1 C 49 1 1 31 200 200 1500 1600 0 0 0 0 1 1 1 0 1 1 13 -1 -1 -1 -1 48 0 0 0 0 0 0 0 22 -1 -1 -1 -1 -1 -1 -1 8 255 255 255 0 0 1 0 2025 14 47 80 680 0 1 1 0 4 3 83 96 385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 83 96 385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 100 20 0 0 0 0 0 0 0 0 15 255 Sewers Level 3 To The Sewers Level 3 A2L10 32 26 5 0 0 0 0 0 15 15 15 0 0 0 0 0 0
|
||||
Act 2 - Harem 50 1 1 32 16 19 2000 1000 0 0 0 0 1 1 1 0 1 2 14 -1 -1 -1 -1 40 0 51 51 0 0 0 0 25 -1 28 29 -1 -1 -1 -1 128 255 255 255 0 0 0 0 2025 0 33 66 2200 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 16 255 Harem Level 1 To The Harem Level 1 A2L11 56 0 0 0 0 0 0 0 15 0 0 0 0 0 0 0 0
|
||||
Act 2 - Corrupt Harem 1 51 1 1 33 100 100 2000 1119 0 0 0 0 1 1 1 0 1 1 14 -1 -1 -1 -1 50 50 52 52 0 0 0 0 26 27 28 29 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 13 46 79 2200 0 0 1 0 5 31 48 174 186 382 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 31 48 174 186 382 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 17 255 Harem Level 2 To The Harem Level 2 A2L12 56 55 0 0 0 0 0 0 15 33 0 0 0 0 0 0 0
|
||||
Act 2 - Basement 1 52 1 1 34 100 100 2000 1319 0 0 0 0 1 1 1 0 1 1 15 -1 -1 -1 -1 51 51 53 53 0 0 0 0 26 27 32 32 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 13 46 79 2200 0 1 1 1 5 31 48 174 186 386 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 31 48 174 186 386 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 18 15 Palace Cellar Level 1 To The Palace Cellar Level 1 A2L13 57 58 0 0 0 0 0 0 20 10 0 0 0 0 0 0 0
|
||||
Act 2 - Basement 2 53 1 1 35 100 100 2000 1519 0 0 0 0 1 1 1 0 1 1 15 -1 -1 -1 -1 52 52 54 54 0 0 0 0 30 31 32 32 -1 -1 -1 -1 0 255 255 255 1 0 1 0 2025 13 46 79 2200 0 1 1 1 5 31 48 174 186 277 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 31 48 174 186 277 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 18 255 Palace Cellar Level 2 To The Palace Cellar Level 2 A2L14 57 58 0 0 0 0 0 0 20 10 0 0 0 0 0 0 0
|
||||
Act 2 - Basement 3 54 1 1 36 100 100 2000 1719 0 0 0 0 1 1 1 0 1 1 15 -1 -1 -1 -1 53 53 0 0 0 0 0 0 30 31 -1 -1 -1 -1 -1 -1 0 255 255 255 1 1 1 0 2025 13 46 79 2200 0 1 1 1 5 31 48 174 186 390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 31 48 174 186 390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 18 255 Palace Cellar Level 3 To The Palace Cellar Level 3 A2L15 57 58 0 0 0 0 0 0 20 10 0 0 0 0 0 0 0
|
||||
Act 2 - Tomb 1 A 55 1 1 37 200 200 3000 1000 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 41 0 0 0 59 0 0 0 45 -1 -1 -1 46 -1 -1 -1 0 255 255 255 0 0 1 0 1000 12 45 78 2200 0 1 1 0 3 4 91 389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 91 389 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Stony Tomb Level 1 To The Stony Tomb Level 1 A2L16 19 29 24 0 0 0 0 0 10 20 35 45 0 0 0 0 0
|
||||
Act 2 - Tomb 2 A 56 1 1 38 200 200 3000 1300 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 42 0 0 0 57 0 0 0 45 -1 -1 -1 46 -1 -1 -1 0 255 255 255 0 0 1 0 1000 12 45 78 2200 0 1 1 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Halls of the Dead Level 1 To The Halls of the Dead Level 1 A2L17 19 29 24 0 0 0 0 0 10 20 35 45 0 0 0 0 0
|
||||
Act 2 - Tomb 2 B 57 1 1 39 200 200 3000 1600 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 56 0 0 0 60 0 0 0 45 -1 -1 -1 46 -1 -1 -1 0 255 255 255 0 0 1 0 1000 13 46 79 2200 0 1 1 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 12 Halls of the Dead Level 2 To The Halls of the Dead Level 2 A2L18 19 29 24 0 0 0 0 0 10 20 35 45 0 0 0 0 0
|
||||
Act 2 - Tomb 3 A 58 1 1 40 200 200 3000 1900 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 45 0 0 0 61 0 0 0 45 -1 -1 -1 46 -1 -1 -1 0 255 255 255 0 0 1 0 1000 14 47 80 2200 0 1 1 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Claw Viper Temple Level 1 To The Claw Viper Temple Level 1 A2L19 19 29 24 0 0 0 0 0 10 20 35 45 0 0 0 0 0
|
||||
Act 2 - Tomb 1 Treasure 59 1 1 41 200 200 3000 2200 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 55 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 12 45 78 2200 0 1 1 0 3 4 91 276 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 91 276 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Stony Tomb Level 2 To The Stony Tomb Level 2 A2L20 19 29 24 0 0 0 0 0 10 30 45 55 0 0 0 0 0
|
||||
Act 2 - Tomb 2 Treasure 60 1 1 42 200 200 3000 2500 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 57 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 13 46 79 2200 0 1 1 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 97 101 101 136 374 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Halls of the Dead Level 3 To The Halls of the Dead Level 3 A2L21 19 29 24 0 0 0 0 0 10 30 45 55 0 0 0 0 0
|
||||
Act 2 - Tomb 3 Treasure 61 1 1 43 200 200 3000 2800 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 58 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 14 47 80 2200 0 1 1 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 74 74 75 75 98 102 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 60 19 255 Claw Viper Temple Level 2 To The Claw Viper Temple Level 2 A2L22 19 29 24 0 0 0 0 0 10 30 45 55 0 0 0 0 0
|
||||
Act 2 - Lair 1 A 62 1 1 44 200 200 3500 1000 0 0 0 0 1 1 1 0 1 1 18 -1 -1 -1 -1 43 63 0 0 0 0 0 0 48 49 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 990 0 2 1 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 20 255 Maggot Lair Level 1 To The Maggot Lair Level 1 A2L23 35 29 0 0 0 0 0 0 50 35 0 0 0 0 0 0 0
|
||||
Act 2 - Lair 1 B 63 1 1 45 200 200 3500 1300 0 0 0 0 1 1 1 0 1 1 18 -1 -1 -1 -1 62 64 0 0 0 0 0 0 48 49 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 990 0 2 1 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 20 255 Maggot Lair Level 2 To The Maggot Lair Level 2 A2L24 35 29 0 0 0 0 0 0 65 35 0 0 0 0 0 0 0
|
||||
Act 2 - Lair 1 Treasure 64 1 1 46 200 200 3500 1600 0 0 0 0 1 1 1 0 1 1 18 -1 -1 -1 -1 63 0 0 0 0 0 0 0 48 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 990 0 2 1 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 68 69 88 92 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 20 255 Maggot Lair Level 3 To The Maggot Lair Level 3 A2L25 35 29 0 0 0 0 0 0 80 55 0 0 0 0 0 0 0
|
||||
Act 2 - Sewer 2 A 65 1 1 47 200 200 4000 1000 0 0 0 0 1 1 1 0 1 1 13 -1 -1 -1 -1 44 0 0 0 0 0 0 0 22 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 680 0 2 1 0 4 9 31 98 390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 9 31 98 390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 100 20 0 0 0 0 0 0 0 8 15 255 Ancient Tunnels To The Ancient Tunnels A2L26 29 0 0 0 0 0 0 0 55 0 0 0 0 0 0 0 0
|
||||
Act 2 - Tomb Tal 1 66 1 1 48 200 200 4500 1000 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
|
||||
Act 2 - Tomb Tal 2 67 1 1 49 200 200 4500 1300 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
|
||||
Act 2 - Tomb Tal 3 68 1 1 50 200 200 4500 1600 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
|
||||
Act 2 - Tomb Tal 4 69 1 1 51 200 200 4500 1900 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
|
||||
Act 2 - Tomb Tal 5 70 1 1 52 200 200 4500 2200 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
|
||||
Act 2 - Tomb Tal 6 71 1 1 53 200 200 4500 2500 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
|
||||
Act 2 - Tomb Tal 7 72 1 1 54 200 200 4500 2800 0 0 0 0 1 1 1 0 1 1 17 -1 -1 -1 -1 46 0 0 0 0 0 0 0 45 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 0 0 30 30 20 0 0 0 0 0 0 0 8 19 255 Tal Rasha's Tomb To Tal Rasha's Tomb A2L27 19 29 32 78 0 0 0 0 10 40 5 10 0 0 0 0 0
|
||||
Act 2 - Duriel's Lair 73 1 1 55 32 47 4500 3100 0 0 0 1 1 1 1 0 1 2 17 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 1 1 0 2025 17 50 83 2200 0 2 1 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 41 94 99 103 103 131 187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 159 269 283 0 30 30 20 100 0 0 0 0 0 0 0 21 255 Duriel's Lair To Duriel's Lair A2L40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Act 2 - Arcane 74 1 1 56 200 200 5000 1000 0 0 0 1 1 1 1 0 1 1 19 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 128 255 255 255 1 1 1 11 3800 14 47 80 990 0 1 1 0 3 40 56 131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 40 56 131 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22 16 Arcane Sanctuary To The Arcane Sanctuary A2L41 53 75 0 0 0 0 0 0 75 75 0 0 0 0 0 0 0
|
||||
Act 3 - Town 75 2 2 57 64 48 1000 1000 0 1 1 0 0 1 1 0 0 2 20 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23 18 Kurast Docktown To The Kurast Docktown A3L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Act 3 - Jungle 1 76 2 2 57 64 192 -1 -1 0 1 1 0 0 1 1 0 0 3 21 -1 -1 -1 -1 84 85 0 0 0 0 0 0 51 51 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 21 54 87 650 1 2 1 5 6 50 114 127 142 397 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 50 114 127 142 397 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 24 19 Spider Forest To The Spider Forest A3L2 31 43 40 52 69 0 0 0 50 15 45 35 30 0 0 0 0
|
||||
Act 3 - Jungle 2 77 2 2 57 64 192 -1 -1 0 1 1 0 0 1 1 0 0 3 21 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 21 54 87 650 1 2 1 5 6 247 248 128 8 279 118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 247 248 128 8 279 118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 24 20 Great Marsh To The Great Marsh A3L3 31 43 40 52 69 0 0 0 50 15 45 35 30 0 0 0 0
|
||||
Act 3 - Jungle 3 78 2 2 57 64 192 -1 -1 0 1 1 0 0 1 1 0 0 3 21 -1 -1 -1 -1 86 88 0 0 0 0 0 0 53 54 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 22 55 88 650 1 2 1 5 7 143 280 144 281 113 249 398 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 143 280 144 281 113 249 398 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 24 21 Flayer Jungle To The Flayer Jungle A3L4 31 43 40 52 43 69 0 0 50 15 45 35 50 25 0 0 0
|
||||
Act 3 - Kurast 1 79 2 2 57 80 64 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 22 55 88 325 1 2 1 0 4 51 81 112 235 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 51 81 112 235 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 22 Lower Kurast To Lower Kurast A3L5 31 76 40 42 43 69 0 0 33 15 35 40 40 15 0 0 0
|
||||
Act 3 - Kurast 2 80 2 2 57 80 64 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 92 92 94 95 0 0 0 0 57 57 61 61 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 22 55 88 325 1 2 1 0 4 129 90 236 238 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 129 90 236 238 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 23 Kurast Bazaar To The Kurast Bazaar A3L6 31 76 40 42 43 69 0 0 33 15 45 50 50 25 0 0 0
|
||||
Act 3 - Kurast 3 81 2 2 57 80 64 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 92 92 96 97 0 0 0 0 57 57 61 61 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 23 56 89 325 1 2 1 0 4 113 237 239 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 113 237 239 129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 24 Upper Kurast To Upper Kurast A3L7 31 76 40 42 43 69 0 0 33 15 45 50 50 25 0 0 0
|
||||
Act 3 - Kurast 4 82 2 2 57 48 16 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 0 0 98 99 0 0 0 0 -1 -1 61 61 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 24 57 90 325 1 2 1 0 3 32 52 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 32 52 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 255 Kurast Causeway To The Kurast Causeway A3L8 31 76 40 42 43 69 0 0 33 15 45 50 50 25 0 0 0
|
||||
Act 3 - Travincal 83 2 2 57 64 64 -1 -1 0 1 1 0 0 1 1 1 0 3 22 -1 -1 -1 -1 100 0 0 0 0 0 0 0 64 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 24 57 90 325 0 1 1 0 3 240 240 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 240 240 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 318 319 0 0 0 30 30 0 0 0 0 0 0 0 0 0 25 25 Travincal To Travincal A3L9 31 61 40 42 69 62 0 0 33 25 50 33 33 35 0 0 0
|
||||
Act 3 - Spider 1 84 2 2 58 200 200 1500 1000 0 0 0 0 1 1 1 0 1 1 23 -1 -1 -1 -1 0 76 0 0 0 0 0 0 -1 52 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 21 54 87 700 0 1 1 0 5 124 125 137 71 124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 124 125 137 71 124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 339 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 29 255 Spider Cave To The Spider Cave A3L10 0 2 68 62 0 0 0 0 35 35 35 35 0 0 0 0 0
|
||||
Act 3 - Spider 2 85 2 2 59 200 200 1500 1300 0 0 0 0 1 1 1 0 1 1 23 -1 -1 -1 -1 0 76 0 0 0 0 0 0 -1 52 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 21 54 87 700 0 1 1 0 5 124 125 137 71 124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 124 125 137 71 124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 339 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 29 255 Spider Cavern To The Spider Cavern A3L11 0 2 68 62 0 0 0 0 35 35 35 35 0 0 0 0 0
|
||||
Act 3 - Dungeon 1 A 86 2 2 60 200 200 2000 1000 0 0 0 0 1 1 1 0 1 1 24 -1 -1 -1 -1 87 78 0 0 0 0 0 0 56 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 21 54 87 700 0 1 1 0 5 99 215 137 118 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 99 215 137 118 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Swampy Pit Level 1 To The Swampy Pit Level 1 A3L12 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
|
||||
Act 3 - Dungeon 1 B 87 2 2 61 200 200 2000 1300 0 0 0 0 1 1 1 0 1 1 24 -1 -1 -1 -1 90 86 0 0 0 0 0 0 56 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 21 54 87 700 0 1 1 0 5 215 8 137 118 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 215 8 137 118 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Swampy Pit Level 2 To The Swampy Pit Level 2 A3L13 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
|
||||
Act 3 - Dungeon 2 A 88 2 2 62 200 200 2000 1600 0 0 0 0 1 1 1 0 1 1 24 -1 -1 -1 -1 89 78 0 0 0 0 0 0 56 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 22 55 88 700 0 1 1 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Flayer Dungeon Level 1 To The Flayer Dungeon Level 1 A3L14 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
|
||||
Act 3 - Dungeon 2 B 89 2 2 63 200 200 2000 1900 0 0 0 0 1 1 1 0 1 1 24 -1 -1 -1 -1 91 88 0 0 0 0 0 0 56 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 22 55 88 700 0 1 1 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Flayer Dungeon Level 2 To The Flayer Dungeon Level 2 A3L15 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
|
||||
Act 3 - Dungeon 1 Treasure 90 2 2 64 40 40 2000 2200 0 0 0 0 1 1 1 0 1 2 24 -1 -1 -1 -1 0 87 0 0 0 0 0 0 -1 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 21 54 87 700 0 1 1 0 4 215 216 137 118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 115 216 137 118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Swampy Pit Level 3 To The Swampy Pit Level 3 A3L16 66 67 62 64 72 0 0 0 80 80 35 35 35 0 0 0 0
|
||||
Act 3 - Dungeon 2 Treasure 91 2 2 65 40 40 2000 2340 0 0 0 0 1 1 1 0 1 2 24 -1 -1 -1 -1 0 89 0 0 0 0 0 0 -1 55 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 22 55 88 700 0 1 1 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 143 280 144 281 138 42 398 214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 27 255 Flayer Dungeon Level 3 To The Flayer Dungeon Level 3 A3L17 66 67 62 64 72 0 0 0 80 55 35 35 35 0 0 0 0
|
||||
Act 3 - Sewer 1 92 2 2 66 200 200 2500 1000 0 0 0 0 1 1 1 0 1 1 25 -1 -1 -1 -1 80 80 81 81 93 0 0 0 58 59 58 59 60 -1 -1 -1 0 255 255 255 0 0 1 0 2025 23 56 89 650 1 2 1 0 5 99 115 138 104 215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 99 115 138 104 215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 151 0 0 0 100 100 0 0 0 0 0 0 0 0 0 26 255 Sewers Level 1 To The Sewers Level 1 A3L18 64 70 62 65 0 0 0 0 50 50 35 45 45 0 0 0 0
|
||||
Act 3 - Sewer 2 93 2 2 67 18 22 2500 1300 0 0 0 0 1 1 1 0 1 2 25 -1 -1 -1 -1 92 0 0 0 0 0 0 0 58 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 24 57 90 650 1 2 1 0 5 99 104 117 249 215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 99 104 117 249 215 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 151 0 0 0 100 100 0 0 0 0 0 0 0 0 0 26 255 Sewers Level 2 To The Sewers Level 2 A3L19 64 70 62 65 0 0 0 0 50 50 35 45 45 0 0 0 0
|
||||
Act 3 - Temple 1 94 2 2 68 24 24 3000 1000 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 80 80 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 23 56 89 990 1 2 1 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Ruined Temple To The Ruined Temple A3L20 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
|
||||
Act 3 - Temple 2 95 2 2 69 24 24 3000 1124 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 80 80 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 23 56 89 990 1 2 1 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Disused Fane To The Disused Fane A3L21 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
|
||||
Act 3 - Temple 3 96 2 2 70 24 24 3000 1248 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 81 81 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 23 56 89 990 1 2 1 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 27 47 126 132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Forgotten Reliquary To The Forgotten Reliquary A3L22 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
|
||||
Act 3 - Temple 4 97 2 2 71 24 24 3000 1372 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 81 81 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 24 57 90 990 1 2 1 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Forgotten Temple To The Forgotten Temple A3L23 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
|
||||
Act 3 - Temple 5 98 2 2 72 24 24 3000 1496 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 82 82 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 24 57 90 990 1 2 1 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Ruined Fane To The Ruined Fane A3L24 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
|
||||
Act 3 - Temple 6 99 2 2 73 24 24 3000 1620 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 82 82 0 0 0 0 0 0 62 63 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 100 24 57 90 990 1 2 1 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 77 95 139 164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 151 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 28 255 Disused Reliquary To The Disused Reliquary A3L25 60 61 59 60 0 0 0 0 50 25 45 33 0 0 0 0 0
|
||||
Act 3 - Mephisto 1 100 2 2 74 200 200 3500 1000 0 0 0 0 1 1 1 0 1 1 22 -1 -1 -1 -1 101 101 83 83 0 0 0 0 67 68 65 66 -1 -1 -1 -1 0 255 255 255 0 0 1 0 3800 25 58 91 800 1 2 1 0 4 100 133 188 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 100 133 188 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 30 255 Durance of Hate Level 1 To The Durance of Hate Level 1 A3L26 60 61 59 74 0 0 0 0 50 25 45 45 0 0 0 0 0
|
||||
Act 3 - Mephisto 2 101 2 2 75 200 200 3500 1300 0 0 0 0 1 1 1 0 1 1 22 -1 -1 -1 -1 102 102 100 100 0 0 0 0 67 68 65 66 -1 -1 -1 -1 0 255 255 255 0 0 1 0 3700 25 58 91 800 1 2 1 0 4 100 133 188 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 100 133 188 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 30 26 Durance of Hate Level 2 To The Durance of Hate Level 2 A3L27 60 61 59 74 0 0 0 0 50 25 45 45 0 0 0 0 0
|
||||
Act 3 - Mephisto 3 102 2 2 76 41 29 3500 1600 0 0 0 0 1 1 1 0 1 2 22 -1 -1 -1 -1 0 0 101 101 0 0 0 0 -1 -1 65 66 -1 -1 -1 -1 0 255 255 255 0 1 1 0 3800 25 58 91 800 1 2 1 0 2 134 134 134 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 134 216 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 30 255 Durance of Hate Level 3 To The Durance of Hate Level 3 A3L28 60 61 59 74 0 0 0 0 50 25 45 45 0 0 0 0 0
|
||||
Act 4 - Town 103 3 3 77 32 24 1000 1000 0 0 0 0 0 1 1 0 0 2 26 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 140 255 255 255 0 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31 27 The Pandemonium Fortress To The Pandemonium Fortress A4L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Act 4 - Mesa 1 104 3 3 77 80 64 -1 -1 0 0 0 0 0 1 1 0 0 3 27 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 0 1 0 3900 26 59 92 800 0 1 1 0 6 82 298 304 307 310 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 82 298 304 307 310 360 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 255 Outer Steppes To The Outer Steppes A4L2 46 47 77 0 0 0 0 0 30 80 70 0 0 0 0 0 0
|
||||
Act 4 - Mesa 2 105 3 3 77 64 80 -1 -1 0 0 0 0 0 1 1 0 0 3 27 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 80 255 255 255 0 0 1 0 2025 26 59 92 800 0 1 1 0 6 120 298 304 307 310 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 120 298 304 307 310 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 255 Plains of Despair To The Plains of Despair A4L3 46 47 77 0 0 0 0 0 30 80 70 0 0 0 0 0 0
|
||||
Act 4 - Mesa 3 106 3 3 77 80 64 -1 -1 0 0 0 0 0 1 1 0 0 3 27 -1 -1 -1 -1 0 107 0 0 0 0 0 0 -1 69 -1 -1 -1 -1 -1 -1 40 255 255 255 0 0 1 0 2025 27 60 93 800 0 1 1 0 7 14 140 299 305 308 311 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 14 140 299 305 308 311 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32 28 City of the Damned To The City of the Damned A4L4 46 47 77 0 0 0 0 0 30 80 70 0 0 0 0 0 0
|
||||
Act 4 - Lava 1 107 3 3 78 200 200 -1 -1 0 0 0 0 0 1 1 0 0 1 28 -1 -1 -1 -1 106 108 0 0 0 0 0 0 70 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 0 1 0 3800 27 60 93 800 0 1 1 5 7 72 189 300 305 309 311 361 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 72 189 300 305 309 311 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33 29 River of Flame To The River of Flame A4L5 48 49 0 0 0 0 0 0 90 60 0 0 0 0 0 0 0
|
||||
Act 4 - Diablo 1 108 3 3 78 120 120 1500 1000 0 0 0 0 0 1 1 0 0 3 28 -1 -1 -1 -1 107 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 80 255 255 255 0 0 1 0 2025 28 61 94 800 0 1 1 0 3 306 312 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 306 312 362 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34 255 Chaos Sanctum To Chaos Sanctum A4L6 48 49 0 0 0 0 0 0 30 50 0 0 0 0 0 0 0
|
||||
Expansion
|
||||
Act 5 - Town 109 4 4 79 40 40 1000 1000 0 1 0 0 0 1 1 0 0 2 29 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 1 0 0 2025 0 33 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 30 Harrogath To Harrogath A5L1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Act 5 - Siege 1 110 4 4 79 240 48 760 1000 0 1 0 0 0 0 1 0 0 3 30 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 24 57 90 0 2 4 0 0 2 17 93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 17 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 37 255 Bloody Foothills To The Bloody Foothills A5L2 99 100 101 102 103 104 105 106 40 25 25 25 25 25 25 25 0
|
||||
Act 5 - Barricade 1 111 4 4 79 -1 -1 -1 -1 0 1 0 0 0 0 1 0 0 3 31 10 1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 3900 25 58 91 450 2 4 0 0 2 56 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 37 31 Rigid Highlands To The Rigid Highlands A5L3 99 100 101 102 103 104 105 106 25 25 25 25 25 25 25 25 0
|
||||
Act 5 - Barricade 2 112 4 4 79 -1 -1 -1 -1 0 1 0 0 0 0 1 0 0 3 31 10 1 -1 -1 0 0 113 0 0 0 0 0 -1 -1 71 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 26 59 92 350 2 4 0 0 2 44 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 37 32 Arreat Plateau To The Arreat Plateau A5L4 99 100 101 102 103 104 105 106 25 25 25 26 25 25 25 25 0
|
||||
Act 5 - Ice Cave 1 113 4 4 80 200 200 2000 1000 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 112 115 114 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 700 0 1 1 0 3 65 35 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 10 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 33 Crystalized Cavern Level 1 To The Crystalized Cavern Level 1 A5L7 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
|
||||
Act 5 - Ice Cave 1A 114 4 4 81 64 64 2000 1300 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 113 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 800 0 1 1 0 3 11 37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 66 95 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39 255 Cellar of Pity To The Cellar of Pity A5L8 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
|
||||
Act 5 - Ice Cave 2 115 4 4 82 200 200 2000 1464 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 113 117 116 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 700 0 1 1 0 3 95 1 66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 11 95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 34 Crystalized Cavern Level 2 To The Crystalized Cavern Level 2 A5L9 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
|
||||
Act 5 - Ice Cave 2A 116 4 4 83 32 32 2000 1764 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 115 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 600 0 1 1 0 2 10 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 35 67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40 255 Echo Chamber To The Echo Chamber A5L10 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
|
||||
Act 5 - Barricade Snow 117 4 4 84 128 80 2000 1896 0 1 0 0 0 0 1 0 0 3 31 11 1 -1 -1 115 0 118 0 0 0 0 0 72 -1 71 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 2025 27 60 93 550 2 3 0 0 2 6 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 38 36 Tundra Wastelands To The Tundra Wastelands A5L5 112 111 113 114 115 129 0 0 25 25 25 25 25 25 0 0 0
|
||||
Act 5 - Ice Cave 3 118 4 4 85 200 200 2000 2076 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 117 120 119 0 0 0 0 0 73 74 75 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 650 0 1 1 0 3 67 95 70 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 67 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 37 Glacial Caves Level 1 To The Glacier Caves Level 1 A5L11 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
|
||||
Act 5 - Ice Cave 3A 119 4 4 86 32 32 2000 2376 0 0 0 0 1 1 1 0 1 1 33 -1 -1 -1 -1 118 0 0 0 0 0 0 0 73 -1 -1 -1 -1 -1 -1 -1 30 255 255 255 0 0 1 0 2025 29 62 95 650 0 1 1 0 3 13 35 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 37 97 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 255 Glacial Caves Level 2 To The Glacier Caves Level 2 A5L12 107 108 109 123 129 110 0 0 25 25 70 25 25 25 0 0 0
|
||||
Act 5 - Mountain Top 120 4 4 87 20 28 2000 2508 0 1 0 1 0 0 1 0 0 2 31 -1 1 -1 -1 118 128 0 0 0 0 0 0 79 80 -1 -1 -1 -1 -1 -1 0 0 0 0 0 0 1 0 0 27 60 93 0 0 0 0 0 3 104 105 106 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 104 105 106 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42 255 Rocky Summit To The Rocky Summit A5L6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Act 5 - Temple Entrance 121 4 4 88 22 27 2000 2636 0 1 0 0 0 0 1 0 1 2 31 -1 -1 -1 -1 0 122 0 0 0 0 0 0 -1 76 -1 -1 -1 -1 -1 -1 0 255 255 255 0 1 1 0 2025 32 65 98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 255 Nihlathaks Temple To Nihlathaks Temple A5L13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Act 5 - Temple 1 122 4 4 89 80 80 2000 2763 0 0 0 0 0 1 1 0 1 1 32 -1 -1 -1 -1 121 123 0 0 0 0 0 0 78 77 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 3000 33 66 99 700 0 0 0 0 2 2 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 255 Halls of Anguish To The Halls of Anguish A5L14 116 117 118 124 125 129 128 0 30 30 30 30 40 25 30 0 0
|
||||
Act 5 - Temple 2 123 4 4 90 80 80 2000 2943 0 0 0 0 0 1 1 0 1 1 32 -1 -1 -1 -1 122 124 0 0 0 0 0 0 78 77 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 34 67 100 700 0 0 0 0 3 3 94 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 94 109 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 35 Halls of Death's Calling To The Halls of Death's Calling A5L15 116 117 118 124 125 129 128 0 30 30 30 30 40 25 30 0 0
|
||||
Act 5 - Temple Boss 124 4 4 91 84 84 2500 1000 0 0 0 0 0 1 1 0 1 2 32 -1 -1 -1 -1 123 0 0 0 0 0 0 0 78 -1 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 36 69 102 700 0 0 0 0 3 22 36 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 22 36 110 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 255 Halls of Vaught To The Halls of Vaught A5L17 116 117 118 124 125 129 128 0 30 30 30 30 40 25 30 0 0
|
||||
Act 5 - Hell 1 125 3 4 92 200 200 2500 1184 0 0 0 0 0 1 1 0 0 1 35 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 1 1 0 3800 39 72 105 800 0 1 1 0 2 72 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 44 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 255 Hell1 To Hell1 A5L23 48 49 0 0 0 0 0 0 90 60 0 0 0 0 0 0 0
|
||||
Act 5 - Hell 2 126 3 4 93 200 200 2500 1484 0 0 0 0 0 1 1 0 0 1 35 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 1 1 0 3800 39 72 105 800 0 1 1 0 2 71 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 45 73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 255 Hell2 To Hell2 A5L24 48 49 0 0 0 0 0 0 90 60 0 0 0 0 0 0 0
|
||||
Act 5 - Hell 3 127 3 4 94 200 200 2500 1784 0 0 0 0 0 1 1 0 0 1 35 -1 -1 -1 -1 0 0 0 0 0 0 0 0 -1 -1 -1 -1 -1 -1 -1 -1 120 255 255 255 0 1 1 0 3800 39 72 105 700 0 1 1 0 2 59 46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 46 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 255 Hell3 To Hell3 A5L25 48 49 0 0 0 0 0 0 90 60 0 0 0 0 0 0 0
|
||||
Act 5 - Baal Temple 1 128 4 4 95 200 200 2500 2084 0 0 0 0 0 1 1 0 1 1 34 -1 -1 -1 -1 120 129 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 39 72 105 700 0 0 0 0 3 4 39 112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 72 39 111 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 255 The Worldstone Keep Level 1 To The Worldstone Keep Level 1 A5L18 119 120 121 122 106 129 0 0 25 25 35 25 25 25 0 0 0
|
||||
Act 5 - Baal Temple 2 129 4 4 96 200 200 2500 2384 0 0 0 0 0 1 1 0 1 1 34 -1 -1 -1 -1 128 130 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 40 73 106 700 0 0 0 0 2 30 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 73 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 38 The Worldstone Keep Level 2 To The Worldstone Keep Level 2 A5L19 119 120 121 122 129 106 0 0 25 25 35 25 26 25 0 0 0
|
||||
Act 5 - Baal Temple 3 130 4 4 97 200 200 2500 2684 0 0 0 0 0 1 1 0 1 1 34 -1 -1 -1 -1 129 131 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 2025 42 75 108 700 0 0 0 0 3 74 60 113 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 74 40 112 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 255 The Worldstone Keep Level 3 To The Worldstone Keep Level 3 A5L20 119 120 121 122 129 106 0 0 25 25 35 25 25 25 0 0 0
|
||||
Act 5 - Throne Room 131 4 4 98 40 52 3000 1000 0 0 0 0 0 1 1 0 1 2 34 -1 -1 -1 -1 130 132 0 0 0 0 0 0 81 82 -1 -1 -1 -1 -1 -1 0 255 255 255 0 0 1 0 1000 43 76 109 700 0 0 0 0 2 74 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 74 40 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 255 Throne of Destruction To The Throne of Destruction A5L21 126 127 0 0 0 0 0 0 25 25 0 0 0 0 0 0 0
|
||||
Act 5 - World Stone 132 4 4 99 55 55 3000 1152 0 0 0 0 0 1 1 0 1 2 34 -1 -1 -1 -1 131 0 0 0 0 0 0 0 81 -1 -1 -1 -1 -1 -1 -1 40 255 255 255 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 255 The Worldstone Chamber To The Worldstone Chamber A5L22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
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
|
||||
|
210
txt/LvlMaze.txt
210
txt/LvlMaze.txt
@ -1,81 +1,131 @@
|
||||
Name Level Rooms SizeX SizeY Merge Beta
|
||||
Act 1 - Cave 1 8 1 24 24 500 1
|
||||
Act 1 - Cave 2 9 4 24 24 500 1
|
||||
Act 1 - Cave 3 10 6 24 24 500 1
|
||||
Act 1 - Cave 4 11 4 24 24 500 1
|
||||
Act 1 - Cave 5 12 4 24 24 500 1
|
||||
Act 1 - Cave 1 Treasure #REF! 1 24 24 0 1
|
||||
Act 1 - Cave 2 Treasure 13 1 24 24 0 1
|
||||
Act 1 - Cave 3 Treasure 14 1 24 24 0 1
|
||||
Act 1 - Cave 4 Treasure 15 1 24 24 0 1
|
||||
Act 1 - Cave 5 Treasure 16 1 24 24 0 1
|
||||
Act 1 - Crypt 1 A 18 12 8 8 500 1
|
||||
Act 1 - Crypt 2 A 19 12 8 8 500 1
|
||||
Act 1 - Crypt 3 A 21 6 8 8 500 1
|
||||
Act 1 - Crypt 3 B 22 6 8 8 500 1
|
||||
Act 1 - Crypt 3 C 23 6 8 8 500 1
|
||||
Act 1 - Crypt 3 D 24 6 8 8 500 1
|
||||
Act 1 - Crypt 3 E 25 6 8 8 500 1
|
||||
Act 1 - Barracks 28 10 10 14 500 1
|
||||
Act 1 - Jail 1 29 12 12 12 500 1
|
||||
Act 1 - Jail 2 30 14 12 12 500 1
|
||||
Act 1 - Jail 3 31 16 12 12 500 1
|
||||
Act 1 - Catacombs 1 34 12 12 12 500 1
|
||||
Act 1 - Catacombs 2 35 14 12 12 500 1
|
||||
Act 1 - Catacombs 3 36 16 12 12 500 1
|
||||
Act 1 - Catacombs 4 37 18 12 12 500 1
|
||||
Act 2 - Sewer 1 47 6 12 12 500 0
|
||||
Act 2 - Sewer 2 48 12 12 12 500 0
|
||||
Act 2 - Sewer 3 49 14 12 12 500 0
|
||||
Act 2 - Corrupt Harem 1 51 4 16 16 1000 0
|
||||
Act 2 - Basement 1 52 4 16 16 1000 0
|
||||
Act 2 - Basement 2 53 4 16 16 1000 0
|
||||
Act 2 - Basement 3 54 4 16 16 1000 0
|
||||
Act 2 - Tomb 1 A 55 4 16 16 500 0
|
||||
Act 2 - Tomb 2 A 56 6 16 16 500 0
|
||||
Act 2 - Tomb 2 B 57 6 16 16 500 0
|
||||
Act 2 - Tomb 3 A 58 12 16 16 500 0
|
||||
Act 2 - Tomb 1 Treasure 59 4 16 16 500 0
|
||||
Act 2 - Tomb 2 Treasure 60 6 16 16 500 0
|
||||
Act 2 - Tomb 3 Treasure 61 6 16 16 500 0
|
||||
Act 2 - Lair 1 A 62 18 10 10 500 0
|
||||
Act 2 - Lair 1 B 63 14 10 10 500 0
|
||||
Act 2 - Lair 1 Treasure 64 10 10 10 500 0
|
||||
Act 2 - Sewer 4 65 10 12 12 500 0
|
||||
Act 2 - Tomb Tal 1 66 6 16 16 500 0
|
||||
Act 2 - Tomb Tal 2 67 6 16 16 500 0
|
||||
Act 2 - Tomb Tal 3 68 6 16 16 500 0
|
||||
Act 2 - Tomb Tal 4 69 6 16 16 500 0
|
||||
Act 2 - Tomb Tal 5 70 6 16 16 500 0
|
||||
Act 2 - Tomb Tal 6 71 6 16 16 500 0
|
||||
Act 2 - Tomb Tal 7 72 6 16 16 500 0
|
||||
Act 2 - Arcane 74 61 12 12 1000 0
|
||||
Act 3 - Spider 1 84 4 16 16 500 0
|
||||
Act 3 - Spider 2 85 4 16 16 500 0
|
||||
Act 3 - Dungeon 1 A 86 4 14 14 500 0
|
||||
Act 3 - Dungeon 1 B 87 4 14 14 500 0
|
||||
Act 3 - Dungeon 2 A 88 4 14 14 500 0
|
||||
Act 3 - Dungeon 2 B 89 4 14 14 500 0
|
||||
Act 3 - Dungeon 1 Treasure 90 4 14 14 500 0
|
||||
Act 3 - Dungeon 2 Treasure 91 4 14 14 500 0
|
||||
Act 3 - Sewer 1 92 32 12 12 800 0
|
||||
Act 3 - Sewer 2 93 6 12 12 800 0
|
||||
Act 3 - Mephisto 1 100 10 12 12 500 0
|
||||
Act 3 - Mephisto 2 101 12 12 12 500 0
|
||||
Act 4 - Lava 1 107 6 24 24 500 0
|
||||
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 16 16 500 0
|
||||
Act 5 - Ice Caves 2 115 10 16 16 500 0
|
||||
Act 5 - Ice Caves 3 118 15 16 16 500 0
|
||||
Act 5 - Ice Caves 1A 114 1 64 64 500 0
|
||||
Act 5 - Ice Caves 2A 116 1 32 32 500 0
|
||||
Act 5 - Ice Caves 3A 119 1 32 32 500 0
|
||||
Act 5 - Temple 1 122 4 40 40 500 0
|
||||
Act 5 - Temple 2 123 4 40 40 500 0
|
||||
Act 5 - Hell 1 125 3 24 24 500 0
|
||||
Act 5 - Hell 2 126 3 24 24 500 0
|
||||
Act 5 - Hell 3 127 3 24 24 500 0
|
||||
Act 5 - Baal 1 128 9 16 16 500 0
|
||||
Act 5 - Baal 1 129 9 16 16 500 0
|
||||
Act 5 - Baal 1 130 9 16 16 500 0
|
||||
Act 5 - Baal 1 132 9 16 16 500 0
|
||||
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
|
||||
|
2235
txt/LvlPrest.txt
2235
txt/LvlPrest.txt
File diff suppressed because it is too large
Load Diff
@ -1,36 +1,36 @@
|
||||
Name Type File CheckAll BordType GridSize Dt1Mask Prob0 Trials0 Max0 Prob1 Trials1 Max1 Prob2 Trials2 Max2 Prob3 Trials3 Max3 Prob4 Trials4 Max4 Beta
|
||||
Border - Cliffs 0 Act1/Outdoors/BorderCliffs.ds1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Border - Middle 1 Act1/Outdoors/BorderMiddle.ds1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Border - Corner 2 Act1/Outdoors/BorderCorner.ds1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Border - Border 3 Act1/Outdoors/BorderBorder.ds1 0 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 Waypoint L 4 Act1/Outdoors/Waypoint.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
|
||||
Act 1 Waypoint S 4 Act1/Outdoors/WaySmall.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
|
||||
Healing Well 5 Act1/Outdoors/ShrineW.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
|
||||
Deer Shrine 5 Act1/Outdoors/ShrineD.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
|
||||
Forest Shrine 5 Act1/Outdoors/ShrineF.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
|
||||
Horn Shrine 5 Act1/Outdoors/ShrineH.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 1
|
||||
Stone 6 Act1/Outdoors/Stone.ds1 0 -1 1 16385 30 5 2 30 5 2 100 20 12 30 5 2 0 0 0 1
|
||||
Trees 6 Act1/Outdoors/Trees.ds1 0 -1 1 3 50 5 2 30 5 2 50 5 2 100 20 12 50 5 2 1
|
||||
Puddles 6 Act1/Outdoors/Pud.ds1 0 -1 1 262145 90 20 8 30 5 2 20 5 2 20 5 2 50 20 8 1
|
||||
Swamp Big 6 Act1/Outdoors/Swamp2.ds1 0 -1 1 4194305 0 0 0 0 0 0 0 0 0 0 0 0 90 5 2 1
|
||||
Swamp Small 6 Act1/Outdoors/Swamp.ds1 0 -1 1 4194305 50 5 2 0 0 0 0 0 0 20 5 2 90 10 6 1
|
||||
Wild Objects 6 Act1/Outdoors/Object.ds1 0 -1 1 257 20 5 2 20 5 2 20 5 2 20 5 2 20 5 2 1
|
||||
Act 2 Waypoint 7 Act2/Outdoors/Waypoint.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
|
||||
Healing Well 8 Act2/Outdoors/ShrineW.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
|
||||
Health Shrine 8 Act2/Outdoors/ShrineH.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
|
||||
Mana Shrine 8 Act2/Outdoors/ShrineM.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
|
||||
Effect Shrine 8 Act2/Outdoors/ShrineE.ds1 0 -1 1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 100 -1 1 0
|
||||
Dune 9 Act2/Outdoors/Dune.ds1 0 -1 1 4 70 10 1 10 5 1 10 5 1 10 5 1 10 5 1 0
|
||||
Rock Big 9 Act2/Outdoors/Rock2.ds1 0 -1 1 2 80 10 4 80 10 2 10 5 1 10 5 1 10 5 1 0
|
||||
Rock Small 9 Act2/Outdoors/Rock.ds1 0 -1 1 2 80 10 8 80 10 4 10 5 2 10 5 2 10 5 2 0
|
||||
Bone 9 Act2/Outdoors/Bone.ds1 0 -1 1 128 80 10 2 10 5 2 10 5 2 10 5 2 10 5 2 0
|
||||
Palm 9 Act2/Outdoors/Palm.ds1 0 -1 1 262144 10 5 2 100 10 4 100 10 4 100 10 4 90 10 4 0
|
||||
Prickly 9 Act2/Outdoors/Prickly.ds1 0 -1 1 524288 10 5 2 10 5 4 90 10 4 10 5 2 90 10 4 0
|
||||
Scrub 9 Act2/Outdoors/Scrub.ds1 0 -1 1 1048576 10 5 2 10 5 2 90 10 4 90 10 4 10 5 2 0
|
||||
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 0 -1 1 524305 25 2 1 25 2 1 25 2 1 25 2 1 25 2 1 0
|
||||
Trees and Rocks 10 Expansion/Siege/treesandrocks.ds1 0 -1 1 3671091 75 15 5 75 15 5 75 15 5 75 15 5 75 15 5 0
|
||||
Small stuff 10 Expansion/Siege/treesandrocksSmall.ds1 0 -1 1 1572865 100 20 6 100 20 6 100 20 6 100 20 6 100 20 6 0
|
||||
Dirt patches 11 Expansion/Siege/snowpatchlg_inv.ds1 0 -1 1 524305 50 2 1 50 2 1 50 2 1 50 2 1 50 2 1 0
|
||||
snowy objects 11 Expansion/Siege/treesandrocksSnow.ds1 0 -1 1 3671091 100 10 6 100 20 6 100 10 6 100 10 6 100 10 6 0
|
||||
Barricade 12 Expansion/Siege/4x3barricade_rules.ds1 0 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
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
|
||||
|
@ -1,38 +1,38 @@
|
||||
Name Id File 1 File 2 File 3 File 4 File 5 File 6 File 7 File 8 File 9 File 10 File 11 File 12 File 13 File 14 File 15 File 16 File 17 File 18 File 19 File 20 File 21 File 22 File 23 File 24 File 25 File 26 File 27 File 28 File 29 File 30 File 31 File 32 Beta Act
|
||||
None 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Act 1 - Town 1 Act1/Town/Floor.dt1 Act1/Town/Objects.dt1 Act1/Town/Fence.dt1 Act1/Outdoors/River.dt1 Act1/Outdoors/stonewall.dt1 Act1/Town/trees.dt1 0 Act1/Outdoors/Objects.dt1 Act1/Outdoors/TreeGroups.dt1 Act1/Outdoors/Bridge.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
|
||||
Act 1 - Wilderness 2 Act1/Town/Floor.dt1 Act1/Town/Trees.dt1 Act1/Outdoors/stonewall.dt1 Act1/Outdoors/Fence.dt1 Act1/Outdoors/TreeGroups.dt1 Act1/Outdoors/River.dt1 Act1/Outdoors/Bridge.dt1 Act1/Outdoors/Cairn.dt1 Act1/Outdoors/Objects.dt1 Act1/Outdoors/Cliff2.dt1 Act1/Outdoors/Cliff1.dt1 Act1/Graveyard/graveyrd.dt1 Act1/Outdoors/Corner.dt1 Act1/Outdoors/Ruin.dt1 Act1/Outdoors/Stones.dt1 Act1/Outdoors/Tower.dt1 Act1/Outdoors/Fallen.dt1 Act1/Outdoors/pond.dt1 Act1/Outdoors/puddle.dt1 Act1/Outdoors/TowerB.dt1 Act1/Caves/Cavedr.dt1 Act1/Outdoors/tome.dt1 Act1/Outdoors/Swamp.dt1 Act1/Town/Fence.dt1 Act1/Outdoors/Cottages.dt1 Act1/Town/Objects.dt1 0 0 0 0 0 0 1 1
|
||||
Act 1 - Cave 3 Act1/Caves/Cave.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
|
||||
Act 1 - Crypt 4 Act1/Crypt/Basewall.dt1 Act1/Crypt/Floor.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
|
||||
Act 1 - Monestary 5 Act1/Court/Floor.dt1 Act1/Town/Floor.dt1 Act1/Outdoors/River.dt1 Act1/Court/Archwall.dt1 Act1/Court/Outwall.dt1 Act1/Monastry/Facade.dt1 Act1/Outdoors/stonewall.dt1 Act1/Town/trees.dt1 Act1/Outdoors/TreeGroups.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Courtyard 6 Act1/Court/Floor.dt1 Act1/Court/Archwall.dt1 Act1/Court/Outwall.dt1 Act1/Barracks/floor.dt1 Act1/Court/Plants2.dt1 Act1/Court/Pboxwall.dt1 Act1/Barracks/basewall.dt1 Act1/Barracks/barset.dt1 Act1/Barracks/exitdn.dt1 Act1/Barracks/objects.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Barracks 7 Act1/Barracks/basewall.dt1 Act1/Barracks/barset.dt1 Act1/Barracks/exitdn.dt1 Act1/Barracks/floor.dt1 Act1/Court/Outwall.dt1 Act1/Barracks/Torture.dt1 Act1/Barracks/objects.dt1 Act1/Court/Floor.dt1 Act1/Barracks/stairup.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Jail 8 Act1/Barracks/basewall.dt1 Act1/Barracks/barset.dt1 Act1/Barracks/exitdn.dt1 Act1/Barracks/floor.dt1 0 Act1/Barracks/Torture.dt1 Act1/Barracks/objects.dt1 0 Act1/Barracks/stairup.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Cathedral 9 Act1/Cathedrl/Alter.dt1 Act1/Cathedrl/Coffers.dt1 Act1/Cathedrl/Stained.dt1 Act1/Barracks/floor.dt1 Act1/Cathedrl/column.dt1 Act1/Court/Outwall.dt1 Act1/Court/Floor.dt1 Act1/Cathedrl/Frescoes.dt1 Act1/Cathedrl/rugs.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Catacombs 10 Act1/Catacomb/Basewalls.dt1 Act1/Catacomb/Cathstr.dt1 Act1/Catacomb/Dwnstr.dt1 Act1/Catacomb/Upstr.dt1 Act1/Catacomb/floor.dt1 Act1/Catacomb/andariel.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 1 - Tristram 11 Act1/Town/Floor.dt1 Act1/Tristram/town.dt1 Act1/Outdoors/stonewall.dt1 Act1/Outdoors/River.dt1 Act1/Outdoors/Objects.dt1 Act1/Outdoors/TreeGroups.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
|
||||
Act 2 - Town 12 Act2/Town/Ground.dt1 Act2/Town/Walls.dt1 Act2/Town/Build.dt1 Act2/Town/Canal.dt1 Act2/Town/Curbs.dt1 Act2/Town/Gate.dt1 Act2/Town/Guard.dt1 Act2/Town/Shop.dt1 Act2/Town/Tavern.dt1 Act2/Town/Wagon.dt1 Act2/Palace/Palace.dt1 Act2/Outdoors/Palm.dt1 Act2/Outdoors/Mesa.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
|
||||
Act 2 - Sewer 13 Act2/Sewer/Walls.dt1 Act2/Sewer/Chamb.dt1 Act2/Sewer/Items.dt1 Act2/Sewer/Radament.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
|
||||
Act 2 - Harem 14 Act2/Palace/Harem.dt1 Act2/Palace/HaremFlr.dt1 Act2/Palace/HaremEnt.dt1 Act2/Palace/HaremStair.dt1 Act2/Palace/Sub-Har.dt1 Act2/Palace/Sub-HarFlr.dt1 Act2/Palace/InvisWal.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
|
||||
Act 2 - Basement 15 Act2/Palace/Cellar.dt1 Act2/Palace/CellFlr.dt1 0 0 0 0 Act2/Palace/InvisWal.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
|
||||
Act 2 - Desert 16 Act2/Town/Ground.dt1 Act2/Outdoors/Rocks.dt1 Act2/Outdoors/Dune.dt1 Act2/BigCliff/CliffRight.dt1 Act2/BigCliff/CliffLeft.dt1 Act2/BigCliff/CliffMesa.dt1 Act2/Outdoors/Head.dt1 Act2/Outdoors/Bone.dt1 Act2/Outdoors/Mesa.dt1 Act2/BigCliff/Stairs.dt1 Act2/Outdoors/SmCliff.dt1 Act2/BigCliff/TalTombR.dt1 Act2/Town/Curbs.dt1 Act2/BigCliff/TalTombL.dt1 Act2/Outdoors/Oasis.dt1 Act2/BigCliff/TombCor.dt1 Act2/Ruin/Ground.dt1 Act2/BigCliff/Corner.dt1 Act2/Outdoors/Palm.dt1 Act2/Outdoors/Prickly.dt1 Act2/Outdoors/Scrub.dt1 Act2/Maggot/Entrance.dt1 Act2/Maggot/Hole.dt1 Act2/Outdoors/Wagon.dt1 Act2/Ruin/Column.dt1 Act2/Outdoors/Village.dt1 Act2/Outdoors/TombEnt.dt1 Act2/Outdoors/Viper.dt1 Act2/Tomb/Tomb.dt1 0 0 0 0 2
|
||||
Act 2 - Tomb 17 Act2/Tomb/Tomb.dt1 Act2/Tomb/Columns.dt1 Act2/Tomb/Things.dt1 Act2/Tomb/Statuerm.dt1 Act2/Tomb/Treasure.dt1 Act2/Tomb/Stairs.dt1 Act2/Tomb/Duriel.dt1 Act2/Tomb/Tombsteps.dt1 Act2/Tomb/Secret.dt1 Act2/Tomb/Talrasha.dt1 Act2/Tomb/Serpent.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
|
||||
Act 2 - Lair 18 Act2/Maggot/Floor.dt1 Act2/Maggot/Den.dt1 Act2/Maggot/Entrance.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
|
||||
Act 2 - Arcane 19 Act2/Arcane/Sanctuary.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2
|
||||
Act 3 - Town 20 Act3/Docktown/Boat.dt1 Act3/Docktown/Bridge.dt1 Act3/Docktown/Docks.dt1 Act3/Docktown/Huts.dt1 Act3/Docktown/Market.dt1 Act3/Docktown/Pyramid.dt1 Act3/Docktown/RuinFlr.dt1 Act3/Docktown/RuinWall.dt1 Act3/Docktown/Shack.dt1 Act3/Jungle/Trees.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
|
||||
Act 3 - Jungle 21 Act3/Docktown/Bridge.dt1 Act3/Ground/DarkGrass.dt1 Act3/Ground/DarkMud.dt1 Act3/Ground/DryMud.dt1 Act3/Ground/GreenMud.dt1 Act3/Jungle/Trees.dt1 Act3/Jungle/TreeGrp.dt1 Act3/River/RivBank.dt1 Act3/DockTown/Bridge.dt1 Act3/Jungle/Ruin.dt1 Act3/Spider/SpiderEnt.dt1 Act3/Jungle/DungEnt.dt1 Act3/River/Pool.dt1 Act3/Jungle/Pygmy.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
|
||||
Act 3 - Kurast 22 Act3/Ground/DarkGrass.dt1 Act3/Ground/DarkMud.dt1 Act3/Ground/DryMud.dt1 Act3/Kurast/Floors.dt1 Act3/Kurast/Huts.dt1 Act3/Kurast/Interior.dt1 Act3/Kurast/Roofs.dt1 Act3/Kurast/Sets.dt1 Act3/Kurast/Terraces.dt1 Act3/Kurast/Walls.dt1 Act3/Jungle/Trees.dt1 Act3/Jungle/TreeGrp.dt1 Act3/Travincal/Floors.dt1 Act3/Travincal/Gate.dt1 Act3/Travincal/Terraces.dt1 Act3/Travincal/Walls.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
|
||||
Act 3 - Spider 23 Act3/Spider/Lair.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
|
||||
Act 3 - Dungeon 24 Act3/Jungle/Dungeon.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
|
||||
Act 3 - Sewer 25 Act3/Kurast/Floors.dt1 Act3/Sewer/Floors.dt1 Act3/Sewer/Walls.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3
|
||||
Act 4 - Town 26 Act4/Fort/Plaza.dt1 Act4/Fort/Interior.dt1 Act4/Fort/Exterior.dt1 Act4/Fort/ForeGate.dt1 Act4/Mesa/Floor.dt1 Act4/Mesa/Inv_Wall.dt1 Act4/Mesa/Stairs.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4
|
||||
Act 4 - Mesa 27 Act4/Mesa/Floor.dt1 Act4/Mesa/Stairs.dt1 Act4/Mesa/Arch_Walls.dt1 Act4/Mesa/Brick_Walls.dt1 Act4/Mesa/Chain_Walls.dt1 Act4/Mesa/Dist_Wall.dt1 Act4/Mesa/Inv_Wall.dt1 Act4/Mesa/Surf_Wall.dt1 Act4/Mesa/Surf_Struct.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4
|
||||
Act 4 - Lava 28 Act4/Lava/Floor.dt1 Act4/Lava/Walls.dt1 Act4/Diab/Floor.dt1 Act4/Diab/Walls.dt1 Act4/Diab/Bridge.dt1 Act4/Lava/Extwalls.dt1 Act4/Lava/Intwalls.dt1 Act4/Lava/Floornew.dt1 Act4/Lava/Rocks.dt1 Act4/Lava/Specials.dt1 Act4/Mesa/Surf_Wall.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4
|
||||
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
|
||||
Act 5 - Siege 30 Expansion/Siege/ascendors.dt1 Expansion/Siege/camp.dt1 Expansion/Siege/fence.dt1 Expansion/Siege/ground.dt1 Expansion/Siege/rockcliff.dt1 Expansion/Siege/rockclifffloor.dt1 Expansion/Siege/rocks.dt1 Expansion/Siege/shrub.dt1 Expansion/Siege/spike.dt1 Expansion/Siege/trench.dt1 Expansion/Siege/trees.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
|
||||
Act 5 - Barricade 31 Expansion/Siege/Ground.dt1 Expansion/Siege/fence.dt1 Expansion/Siege/cliff.dt1 Expansion/Siege/fortified.dt1 Expansion/Siege/snow.dt1 Expansion/Siege/trees.dt1 Expansion/Siege/special.dt1 Expansion/Siege/trench.dt1 Expansion/Siege/building.dt1 Expansion/town/waypt.dt1 Expansion/Siege/pinetree.dt1 Expansion/Siege/battle.dt1 Expansion/Siege/barricade.dt1 Expansion/Siege/rockclifffloor.dt1 Expansion/Siege/camp.dt1 Expansion/Siege/rockcliff.dt1 Expansion/Siege/ascendors.dt1 Expansion/Siege/spike.dt1 Expansion/Town/collision.dt1 Expansion/Siege/shrub.dt1 Expansion/Siege/rocks.dt1 Expansion/Wildtemple/Entrance.dt1 Expansion/MountainTop/floor.dt1 Expansion/MountainTop/Entrance.dt1 Expansion/MountainTop/Columns.dt1 Expansion/IceCave/Exterior.dt1 Expansion/IceCave/Warps.dt1 Expansion/Ruins/Walls.dt1 Expansion/Ruins/Furnish.dt1 Expansion/Siege/pens.dt1 Expansion/Siege/hellgate.dt1 0 0 5
|
||||
Act 5 - Temple 32 Expansion/wildtemple/interior.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
|
||||
Act 5 - Ice Caves 33 Expansion/icecave/interior.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
|
||||
Act 5 - Baal 34 Expansion/baallair/walls.dt1 Expansion/baallair/floor.dt1 Expansion/baallair/underwall.dt1 Expansion/baallair/underflr.dt1 Expansion/baallair/worldstone.dt1 Expansion/baallair/throne.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
|
||||
Act 5 - Lava 35 Act4/Lava/Floor.dt1 Act4/Lava/Walls.dt1 Act4/Diab/Floor.dt1 Act4/Diab/Walls.dt1 Act4/Diab/Bridge.dt1 Act4/Lava/Extwalls.dt1 Act4/Lava/Intwalls.dt1 Act4/Lava/Floornew.dt1 Act4/Lava/Rocks.dt1 Act4/Lava/Specials.dt1 Act4/Mesa/Surf_Wall.dt1 Act4/Expansion/Specials.dt1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5
|
||||
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
|
||||
|
1606
txt/MagicPrefix.txt
1606
txt/MagicPrefix.txt
File diff suppressed because it is too large
Load Diff
1398
txt/MagicSuffix.txt
1398
txt/MagicSuffix.txt
File diff suppressed because it is too large
Load Diff
3914
txt/Misc.txt
3914
txt/Misc.txt
File diff suppressed because it is too large
Load Diff
1331
txt/Missiles.txt
1331
txt/Missiles.txt
File diff suppressed because it is too large
Load Diff
@ -143,3 +143,7 @@ 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
|
||||
|
@ -109,4 +109,19 @@ 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
|
||||
107 642 1173 1732 642 1380 2038 1156 2016 4244 1156 2016 4244 1103 2948 6534 1103 2948 8712 65 86 120 65 86 120 8245 54062 81093 8245 54062 81093
|
||||
108 648 1183 1748 648 1392 2056 1167 2034 4282 1167 2034 4282 1120 2983 6620 1120 2983 8827 66 88 122 66 88 122 8349 54968 82452 8349 54968 82452
|
||||
109 654 1193 1763 654 1404 2074 1178 2052 4320 1178 2052 4320 1137 3016 6707 1137 3016 8942 67 89 124 67 89 124 8453 55874 83811 8453 55874 83811
|
||||
110 2100 2100 2100 2100 2100 2100 6532 6532 6532 6532 6532 6532 10000 10000 10000 10000 10000 10000 130 130 130 130 130 130 160000 160000 160000 160000 160000 160000
|
||||
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
|
||||
|
@ -1,17 +1,17 @@
|
||||
Name Token
|
||||
Death DT
|
||||
Neutral NU
|
||||
Walk WL
|
||||
Get Hit GH
|
||||
Attack1 A1
|
||||
Attack2 A2
|
||||
Block BL
|
||||
Cast SC
|
||||
Skill1 S1
|
||||
Skill2 S2
|
||||
Skill3 S3
|
||||
Skill4 S4
|
||||
Dead DD
|
||||
Knockback GH
|
||||
Sequence xx
|
||||
Run RN
|
||||
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
|
||||
|
@ -46,14 +46,97 @@ Act Place
|
||||
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 place_nothing
|
||||
2 place_nothing
|
||||
2 unraveler2
|
||||
2 Fangskin2
|
||||
2 greiz
|
||||
2 elzix
|
||||
2 lysander
|
||||
@ -61,8 +144,8 @@ Act Place
|
||||
2 geglash
|
||||
2 jerhyn
|
||||
2 place_unique_pack
|
||||
2 place_npc_pack
|
||||
2 place_nothing
|
||||
2 Blood Swarm
|
||||
2 Krull the Deviant
|
||||
2 summoner
|
||||
2 Radament
|
||||
2 duriel
|
||||
@ -77,7 +160,7 @@ Act Place
|
||||
2 fish
|
||||
2 place_talkingguard
|
||||
2 place_dumbguard
|
||||
2 place_maggot
|
||||
2 Garbad the Weak
|
||||
2 place_maggotegg
|
||||
2 place_nothing
|
||||
2 gargoyletrap
|
||||
@ -105,6 +188,77 @@ Act Place
|
||||
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
|
||||
@ -121,7 +275,7 @@ Act Place
|
||||
3 trap-horzmissile
|
||||
3 trap-vertmissile
|
||||
3 natalya
|
||||
3 place_mosquitonest
|
||||
3 suckernest4
|
||||
3 place_group25
|
||||
3 place_group50
|
||||
3 place_group75
|
||||
@ -144,6 +298,97 @@ Act Place
|
||||
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
|
||||
@ -172,6 +417,108 @@ Act Place
|
||||
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
|
||||
@ -223,6 +570,80 @@ Act Place
|
||||
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
|
||||
|
@ -12,3 +12,72 @@ quillrat6 thorns 15 20
|
||||
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
|
||||
|
||||
|
1356
txt/MonStats.txt
1356
txt/MonStats.txt
File diff suppressed because it is too large
Load Diff
@ -604,3 +604,8 @@ sandraider7 3 3 96 3 3 0 hth 3 lit 1 1 1 1 1 1 1
|
||||
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
|
||||
|
637
txt/MonType.txt
637
txt/MonType.txt
@ -1,577 +1,60 @@
|
||||
Name Token DT_Dir NU_Dir WL_Dir GH_Dir A1_Dir A2_Dir BL_Dir SC_Dir S1_Dir S2_Dir S3_Dir S4_Dir DD_Dir KB_Dir SQ_Dir RN_Dir
|
||||
Skeleton SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Corpse SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Bone Warrior SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Burning Dead SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Horror SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Frozen Dead ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Carcass ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ghoul ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Drowned ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Plague Bearer ZM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
bighead 1 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
bighead 2 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
bighead 3 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
bighead 4 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
bighead 5 BH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Foul Crow BK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Hawk BK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Black Vulture BK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Cloud Stalker BK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Enraged Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Demented Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Deranged Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Depraved Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Warped Fallen FA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Brute YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Crusher YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Yeti YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Wailing Beast YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Gargantuan Beast YE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Sand Raider SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Marauder SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Invader SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Infidel SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Assailant SR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Gorgon GO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Stone Stalker GO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Serpent Queen GO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Stygian Watcher GO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ghost WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Wraith WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Specter WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Apparition WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Shape WR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Vile Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Stalker CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Black Rogue CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Flesh Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dune Beast BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Rock Dweller BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Jungle Hunter BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Doom Ape BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Temple Guard BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ice Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Rock Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Night Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Moon Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Hell Clan GM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Enraged Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Demented Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Deranged Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Depraved Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Warped Shaman FS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ice Rat SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Spike Fiend SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Thorn Beast SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Razor Spine SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Jungle Urchin SI 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Sand Maggot SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Rock Worm SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Devourer SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Giant Lamprey SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Eater of Worlds SM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Tomb Viper SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Claw Viper SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Salamander SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Poison Spitter SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Serpent Magi SD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Sand Leaper SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Cave Leaper SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Fire Burst SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Tree Lurker SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Razor Pit Demon SL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Huntress PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Saber Cat PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Panthress PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Hell Cat PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Itchies SW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Balack Locusts SW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Plague Bugs SW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Hell Swarm SW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dung Soldier SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Sand Warrior SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Scarab SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Steel Weevil SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Albino Roach SC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
mummy1 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
mummy2 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
mummy3 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
mummy4 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
mummy5 MM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Hollow One GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Guardian GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Unraveler GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Horadrim Ancient GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baal Mummy GY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Damned Horde CH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Warped Horde CH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Wicked Horde CH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Unholy Horde CH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Carrion Bird VD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Undead Scavenger VD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Hell Buzzard VD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Winged Nightmare VD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Sucker MO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Feeder MO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Hook MO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Wing MO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Gloam Wisp WW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Swamp Wisp WW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Fire Spark WW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Hell Spark WW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Arach SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Sand Fisher SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Poison Spinner SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Flame Spider SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Spider Magi SP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Thorned Hulk TH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Bramble Hulk TH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Thrasher TH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Spikefist TH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ghoul Lord VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Night Lord VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Lord VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Lord VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
The Banished VA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Desert Wing BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Fiend BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Gloombat BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Diver BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Familiar BT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Rat Man FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Fetish FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Flayer FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Soul Killer FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Stygian Doll FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
deckardcain DC 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
gheed GH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
akara PS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
chicken CK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
kashya RC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
rat RT 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
rogue RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
hellmeteor K9 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8
|
||||
charsi CI 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
warriv WA 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
andariel AN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
smallbird BS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
largebird BL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
bat B9 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Vile Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Stalker CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Black Rogue CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Flesh Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Vile Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dark Stalker CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Black Rogue CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Flesh Hunter CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Skeleton SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Corpse SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Bone Warrior SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Burning Dead SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Horror SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
warriv WX 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
asthih AS 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
drognan DR 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
olfar OF 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
cow CW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Sand Maggot SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Rock Worm SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Devourer SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Giant Lamprey SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Eater of Worlds SB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Camel CM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
PinHead1 PN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
PinHead2 PN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
PinHead3 PN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
PinHead4 PN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
MaggotEgg1 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
MaggotEgg2 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
MaggotEgg3 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
MaggotEgg4 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
MaggotEgg5 SE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act2Male 2M 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act2Female 2F 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act2Child 2C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
greiz GR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
elzix EL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
geglash GE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
jerhyn JE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
lysander LY 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
guard act 2 GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act2Vendor1 M1 8 1 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
Act2Vendor2 M2 8 1 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
FoulCrowNest BN 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
BloodhawkNest BN 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
BlackVultureNest BN 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
CloudStalkerNest BN 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
meshif MS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Duriel DU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Rat Man FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Fetish FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Flayer FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Soul Killer FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Stygian Doll FK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Darkguard xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Darkknight xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Bloodguard xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Bloodknight xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Darkpaladin xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Cantor xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Demonist xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blackmagus xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Diabolist xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Hellmagus xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Maggot MA 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Mummy Sarcophagus MG 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
Radament RD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
FireBeast FM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
IceBeast IM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
SparkBeast xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
PoisonOrb PM 1 1 1 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
FlyingScimitar ST 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ZakarumZealot1 ZZ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ZakarumZealot2 ZZ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ZakarumZealot3 ZZ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ZakarumPriest1 ZP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ZakarumPriest2 ZP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ZakarumPriest3 ZP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ZakarumPriest4 ZP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Mephisto MP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Diablo DI 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
deckardcain 2D 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
deckardcain 2d 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
deckardcain 4D 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Amphibian FD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Amphibian FD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Amphibian FD 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Summoner SU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
tyrael TX 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
asheara AH 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
hratli HR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
alkor AL 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ormus OR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
izual 22 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
halbu 20 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
tentacle1 TN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
tentacle2 TN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
tentacle3 TN 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
tentaclehead1 TE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
tentaclehead2 TE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
tentaclehead3 TE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
meshif M3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
deckardcain 1D 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
forestfairy RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
bloodraven CR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Bug BG 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
Scorpion DS 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
RogueWander RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
RogueHireable RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
RogueTownShoot RG 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
GargoyleTrap GT 1 4 4 4 4 4 4 4 4 4 4 4 1 4 4 4
|
||||
CorpseMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BoneMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BurningDeadMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HorrorMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
RatManShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
FetishShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
FlayerShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
SoulKillerShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
StygianDollShaman FW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Larva LV 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
sandmaggot queen MQ 1 1 8 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
ClayGolum G1 1 8 8 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
BloodGolum G2 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
IronGolum G4 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
FireGolum G3 1 8 8 8 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
familiar FI 8 16 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
act3npc N4 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
NightMarauder BB 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
act3npc N3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
taintedsunaltar TZ 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
vilemother VM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
vilemother VM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
vilemother VM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
viledog VC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
viledog VC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
viledog VC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
fingermage FR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
fingermage FR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
fingermage FR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
regurgitator CS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
regurgitator CS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
regurgitator CS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
undeadhorror UM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
undeadhorror UM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
undeadhorror UM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
quillbear S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
spikegiant S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
thornbrute S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
razorbeast S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
gianturchin S7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
snake CO 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
parrot PR 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
fish FJ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Evil Hole EH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
trapfirebolt 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
trapchargedbolt 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
traparrow 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
trappoisonnova 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
trapchainlightning 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
xxx GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
InvisoSpawner K9 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8
|
||||
DiabloClone xx 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
suckernest DH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
suckernest DH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
suckernest DH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
suckernest DH 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
guard GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
spider LS 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
prison 67 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
prison 66 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
prison 69 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
prison 68 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Bonewall BW 4 4 1 4 1 1 1 1 4 1 1 1 4 1 1 1
|
||||
HighPriest1 HP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HighPriest1 HP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HighPriest1 HP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Turret PB 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
|
||||
Turret PB 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
|
||||
Turret PB 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
|
||||
Hydra HX 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
Hydra 21 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
Hydra HZ 8 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
Column M4 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
seven tombs illusion 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Dopplezon VK 4 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1
|
||||
Valkyrie VK 4 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1
|
||||
Act2Hireling SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act3Hireling IW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Megademon1 DM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Megademon2 DM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Megademon3 DM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
NecroSkeleton SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
NecroMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Griswold GZ 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
compelling orb 9a 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
tyrael act 4 TY 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
dark wanderer 1Z 1 8 1 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
trap nova 9A 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
mummy spirit xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
arcane column thing AE 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
desert turret 2 PB 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
|
||||
Panther Jav PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Panther Jav PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Panther Jav PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Panther Jav PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
boba fett GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
darth maul GU 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
CorpseMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BoneMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BurningDeadMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HorrorMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
CorpseMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BoneMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BurningDeadMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HorrorMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
CorpseMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BoneMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BurningDeadMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HorrorMage SK 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Moo EC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
window right VH 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
window left VJ 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
OrangePotPanther PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
GreenPotPanther PW 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Rat Man FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Fetish FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Flayer FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Soul Killer FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Stygian Doll FC 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Mephisto Spirit M6 16 16 8 8 16 8 8 8 8 8 8 8 16 8 8 8
|
||||
Smith 5P 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
trapped soul 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
trapped soul 13 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
jamella ja 8 8 8 8 8 8 8 8 1 1 8 8 8 8 8 8
|
||||
Izual Spirit 17 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
fetish special FE 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
malachai 36 8 8 8 8 8 8 8 8 1 1 8 8 8 8 8 8
|
||||
Smith 5P 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Expansion 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Spike Generator e9 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Charge Bolt Sentry lg 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Lightning Sentry lg 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Blade Creeper b8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Invis Pet k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
|
||||
Inferno Sentry e9 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Death Sentry lg 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Shadow Warrior k9 1 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1
|
||||
Shadow Apprentice k9 1 1 8 1 1 8 8 8 8 8 8 8 4 8 8 1
|
||||
Druid Hawk hk 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Druid Spirit Wolf wf 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
|
||||
Druid Fenris wf 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
|
||||
Druid Spirit of Barbs x4 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Druid Heart of Wolverine x3 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Druid Oak Sage xw 1 1 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Druid Plague Poppy k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
|
||||
Druid Cycle of Life k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
|
||||
Druid Vine Creature k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
|
||||
Druid Bear b7 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
|
||||
Eagle eg 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Wolf 40 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
|
||||
Bear TG 8 8 16 8 8 8 8 8 8 8 8 8 8 8 8 16
|
||||
Barricade Door Right AJ 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
Barricade Door Left AG 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
Prison Door 2Q 1 1 8 1 8 8 8 8 1 8 8 8 1 8 8 8
|
||||
Barricade Tower ac 1 1 8 1 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
RotWalker re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ReanimatedHorde re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ProwlingDead re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
UnholyCorpse re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
DefiledWarrior re 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Seige Beast ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
CrushBeast ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BloodBringer ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
GoreBearer ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
DeamonSteed ox 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
snowyeti1 io 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
snowyeti2 io 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
snowyeti3 io 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
snowyeti4 io 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
wolfrider1 wr 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
wolfrider2 wr 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
wolfrider3 wr 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Minion xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Slayer xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
IceBoar xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
FireBoar xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HellSpawn xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
IceSpawn xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
GreaterHellSpawn xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
GreaterIceSpawn xx 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
FanaticMinion xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BerserkSlayer xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ConsumedGireBoar xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
ConsumedIceBoar xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
FrenziedHellSpawn xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
FrenziedIceSpawn xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
InsaneHellSpawn xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
InsaneIceSpawn xy 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Succubus 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
VileTemptress 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
StygianHarlot 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BlightWing 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BloodBitch 0B 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Dominus 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
VileWitch 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
StygianFury 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
MageWing 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HellBitch 0C 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
OverSeer os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Lasher os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
OverLord os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BloodBoss os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
HellWhip os 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
MinionSpawner xa 1 1 8 8 1 8 8 8 8 8 8 8 1 8 8 8
|
||||
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Imp ip 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Catapult s 65 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Catapult e 64 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Catapult Siege 64 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Catapult w ua 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Frozen Horror f0 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Blood Lord L3 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Larzuk XR 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
Drehya XS 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
Malah XT 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
Nihlathak Town 0J 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
Qual-Kehk XV 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
Catapult Spotter S k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
|
||||
Catapult Spotter E k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
|
||||
Catapult Spotter Siege k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
|
||||
Catapult Spotter W k9 16 16 16 8 16 8 8 8 16 16 8 8 16 8 8 8
|
||||
deckardcain DC 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
tyrael act 4 TY 1 1 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
Act 5 Combatant 1 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act 5 Combatant 2 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Barricade Door Right a6 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Barricade Door Left AK 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Nihlathak Town XU 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
Drehya XS 8 8 8 8 8 8 8 8 1 8 8 8 8 8 8 8
|
||||
Generic Spawner 2T 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Death Mauler 1 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Death Mauler 2 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Death Mauler 3 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Death Mauler 4 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Death Mauler 5 m5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
pow 0a 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act 5 TownGuard 1 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act 5 TownGuard 2 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ancient Statue 1 0G 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ancient Statue 2 0H 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ancient Statue 3 0I 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ancient Barbarian 1 0D 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ancient Barbarian 2 0F 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Ancient Barbarian 3 0E 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baal Throne 41 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Baal Crab 42 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
Baal Taunt K9 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8
|
||||
Putrid Defiler1 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Putrid Defiler2 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Putrid Defiler3 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Putrid Defiler4 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Putrid Defiler5 45 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Pain Worm1 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Pain Worm2 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Pain Worm3 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Pain Worm4 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Pain Worm5 46 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Rabbit 48 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BaalHighPriest HP 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
BaalMegademon DM 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baal Crab To Stairs 42 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
Act 5 Hirable 1HS 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Act 5 Hirable 2HS 0A 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baal Tentacle1 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baal Tentacle2 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baal Tentacle3 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baal Tentacle4 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baal Tentacle5 44 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
InjuredBarbarian 1 6z 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
InjuredBarbarian 2 7j 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
InjuredBarbarian 3 7i 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Baal Crab 42 1 8 8 8 8 8 8 8 8 8 8 8 1 8 8 8
|
||||
Baals Minion1 43 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baals Minion2 43 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Baals Minion3 43 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8
|
||||
Worldstone Effect K9 1 1 8 8 1 8 8 8 1 8 8 8 1 8 8 8
|
||||
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
|
||||
|
34
txt/Npc.txt
34
txt/Npc.txt
@ -1,18 +1,18 @@
|
||||
npc buy mult sell mult rep mult questflag A questbuymult A questsellmult A questrepmult A questflag B questbuymult B questsellmult B questrepmult B questflag C questbuymult C questsellmult C questrepmult C max buy max buy (N) max buy (H)
|
||||
gheed 512 1088 128 4 1024 922 1024 5000 25000 25000
|
||||
charsi 512 960 128 4 1024 922 1024 5000 25000 25000
|
||||
akara 512 1024 128 4 1024 922 1024 5000 25000 25000
|
||||
lysander 512 1024 128 9 1024 922 1024 10000 25000 25000
|
||||
drognan 512 1024 128 9 1024 922 1024 10000 25000 25000
|
||||
elzix 512 1024 128 9 1024 922 1024 10000 25000 25000
|
||||
fara 512 1024 128 9 1024 922 1024 10000 25000 25000
|
||||
hratli 512 1024 128 17 1024 922 1024 15000 25000 25000
|
||||
alkor 512 1024 128 17 1024 922 1024 15000 25000 25000
|
||||
ormus 512 1024 128 17 1024 922 1024 15000 25000 25000
|
||||
asheara 512 1024 128 17 1024 922 1024 15000 25000 25000
|
||||
jamella 512 1024 128 41 1024 922 1024 20000 25000 25000
|
||||
halbu 512 1024 128 41 1024 922 1024 20000 25000 25000
|
||||
malah 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 25000 25000
|
||||
drehya 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 25000 25000
|
||||
larzuk 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 25000 25000
|
||||
nihlathak town 512 2048 128 41 1024 922 1024 35 1024 512 1024 25000 25000 25000
|
||||
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
|
||||
|
@ -21,7 +21,7 @@ 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 25
|
||||
StoneGamma StoneGamma 19 S3 0 1 0 1 0 1 1 1 1 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 6 0 0 0 0 0 314
|
||||
StoneDelta StoneDelta 20 S4 0 1 0 1 0 1 1 1 1 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 6 0 0 0 0 0 314
|
||||
StoneLambda StoneLambda 21 S5 0 1 0 1 0 1 1 1 1 0 3 3 0 0 0 0 1 3 1 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 3 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 6 0 0 0 0 0 314
|
||||
StoneTheta StoneTheta 22 S6 0 0 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 0 0 0 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -150 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 9 0 0 0 0 0 0 0 314
|
||||
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
|
||||
@ -73,7 +73,7 @@ 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
|
||||
Dummy forest night sound #1 71 F1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Dummy forest night sound #2 72 F2 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Dummy yeti dung 73 YD 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Trap Door Trap Door 74 TD 0 1 0 1 0 0 0 0 0 0 3 3 0 0 0 0 1 1 1 1 0 0 0 0 256 256 256 256 256 256 256 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 16 0 0 0 0 0 2 1 223
|
||||
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
|
||||
@ -120,8 +120,8 @@ 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 2
|
||||
Well Fountain 4 118 F6 0 1 1 0 0 0 0 0 0 0 3 3 0 0 0 0 10 10 10 0 0 0 0 0 128 128 128 256 256 256 256 256 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 750 128 1 3 0 0 0 0 5 0 0 1 0 100 1 0 0 0 0 0 0 22 8 16 0 0 0 0 0 309
|
||||
Waypoint waypoint portal 119 wp 0 1 0 1 0 0 0 0 0 0 5 5 0 0 0 0 1 15 8 0 0 0 0 0 200 200 200 0 0 0 0 0 0 0 1 0 0 0 0 0 0 18 19 0 0 0 0 0 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 100 100 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 64 0 0 -70 0 2 0 1 0 0 0 0 0 5 2 0 1 0 0 1 1 100 1 0 0 0 0 0 0 23 0 17 0 0 0 0 0 0
|
||||
Dummy "healthshrine, act 3, dungeun" 120 dj 0 1 0 0 0 0 0 0 0 0 3 3 0 0 0 0 1 17 1 0 0 0 0 0 0 128 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 -95 0 2 0 1 1 120 0 0 0 0 0 0 1 0 0 1 0 100 1 0 0 1 120 0 0 2 2 1 0 0 0 0 0 310
|
||||
jerhyn placeholder #1 121 ss 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 11 0 18 0 0 0 0 0 0
|
||||
jerhyn placeholder #2 122 ss 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 -70 0 2 0 1 0 0 0 0 0 0 0 0 2 0 0 1 0 100 0 0 0 0 0 0 0 11 0 19 0 0 0 0 0 0
|
||||
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
|
||||
@ -249,7 +249,7 @@ 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
|
||||
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
|
||||
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
|
||||
@ -410,9 +410,9 @@ 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
|
||||
Dummy fortress brazier #1 408 98 1 0 0 0 0 0 0 0 0 15 2 2 0 0 0 0 20 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 0 2 0 1 1 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 1 0 0 0 0 3 0 0 0 0 0 0 0
|
||||
Dummy fortress brazier #2 409 99 1 0 0 0 0 0 0 0 0 15 1 1 0 0 0 0 20 0 0 0 0 0 0 0 128 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 2 8 0 0 -60 0 2 0 1 1 0 0 0 0 0 0 0 8 0 0 0 0 100 0 0 0 1 0 0 0 0 3 0 0 0 0 0 0 0
|
||||
Expansion
|
||||
Siege Control To control siege machines 408 zq 1 1 0 0 0 0 0 0 0 15 1 1 0 0 0 0 1 5 1 0 0 0 0 0 0 256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 8 0 0 -60 0 2 0 1 18 0 0 0 0 0 0 0 16 1 0 1 0 100 0 0 0 18 0 0 0 46 0 0 0 0 0 0 0 0
|
||||
ptox Pot O Torch (level 1) 409 px 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 22 22 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
|
||||
pyox fire pit (level 1) 410 py 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 22 22 22 0 0 0 0 0 128 128 128 128 128 128 128 128 1 0 0 0 0 0 0 0 19 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 255 255 255 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 3 0 0 0 -85 0 2 0 1 0 0 0 0 0 0 0 0 16 0 0 0 0 100 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0
|
||||
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
|
||||
|
588
txt/Overlay.txt
588
txt/Overlay.txt
@ -1,295 +1,295 @@
|
||||
Overlay Filename Frames Character PreDraw 1ofN Dir Open Beta Xoffset Yoffset Height1 Height2 Height3 Height4 AnimRate LoopWaitTime Trans InitRadius Radius Red Green Blue NumDirections LocalBlood
|
||||
Null null 2 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Lightning ShockHitSm 20 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 11 11 255 255 255 1 0
|
||||
CastResistFire AuraResistFireFrontCast 11 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 193 103 1 0
|
||||
AuraResistFire AuraResistFireFront 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 193 103 1 0
|
||||
CastResistCold AuraResistColdBackCast 11 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 210 210 255 1 0
|
||||
AuraResistCold AuraResistColdBack 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 210 210 255 1 0
|
||||
CastResistLight AuraResistLightningBackCast 11 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 255 200 1 0
|
||||
AuraResistLight AuraResistLightningBack 20 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 255 200 1 0
|
||||
CastResistAll AuraResistAllCast 20 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 1 10 211 148 255 1 0
|
||||
AuraResistAllFront AuraResistAllFront 20 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 6 6 211 148 255 1 0
|
||||
AuraResistAllBack AuraResistAllBack 20 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 6 6 211 148 255 1 0
|
||||
AuraMightFront AuraMightFront 15 Paladin 0 1 0 1 1 4 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
AuraMightBack AuraMightBack 15 Paladin 1 1 0 1 1 4 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
AuraPrayerFront AuraPrayerFront 16 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
AuraPrayerBack AuraPrayerBack 16 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
AuraHolyFireFront AuraHolyFireFront 12 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
AuraHolyFireBack AuraHolyFireBack 12 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HItHolyFire AuraHolyFireHit 12 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
TargetHolyFire AuraHfireIndicate 19 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
AuraThornsFront AuraThornsFront 18 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
AuraThornsBack AuraThornsBack 18 Paladin 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HItThorns AuraThornsHit 10 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
TargetThorns AuraHfireIndicate 19 Paladin 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
AuraDefianceFront AuraDefianceFront 15 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
AuraDefianceBack AuraDefianceBack 15 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
AuraFanatic AuraFanatic 20 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Healing OverlayH 17 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Receiving AmazonHealSpell 20 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 8 255 184 199 1 0
|
||||
CastUndead HolyBoltCloud 16 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FireCast FireCast_for_Sorceress 14 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 178 64 1 0
|
||||
FireCast2 FireCast2 16 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 178 64 1 0
|
||||
IceCast1 IceCastNew01 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
|
||||
IceCast2 IceCastNew02 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
|
||||
IceCast3 IceCastNew03 15 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 81 81 255 1 0
|
||||
LightCast LightningCast 10 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 255 255 1 0
|
||||
FireExplode FireExplode 12 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 14 14 255 193 103 1 0
|
||||
IceExplode IceExplode 16 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 14 14 210 210 255 1 0
|
||||
Warmth Warmth 14 ? 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 8 255 193 103 1 0
|
||||
FrozenArmor FrozenArmor 24 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 13 200 200 255 1 0
|
||||
ShiverArmor FrozenArmor 24 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 13 200 200 255 1 0
|
||||
ChillArmor FrozenArmor 24 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 13 200 200 255 1 0
|
||||
Shivers Cast AuraResistColdCast 11 Sorceress 1 1 0 0 0 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
|
||||
FrozenArmorHit AuraResistColdCast 11 Sorceress 1 1 0 0 0 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
|
||||
ShiverArmorHit AuraResistColdCast 11 Sorceress 1 1 0 1 1 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
|
||||
ChillArmorHit AuraResistColdCast 11 Sorceress 1 1 0 0 0 0 0 14 0 -14 -60 24 0 3 1 6 81 81 255 1 0
|
||||
Teleport Teleport 18 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 5 255 255 200 1 0
|
||||
SRFireHit SRFireHit 16 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 193 103 1 0
|
||||
CastInnerSight EOZCast 29 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 255 255 1 0
|
||||
InnerSight HardenArmor 24 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 6 6 255 255 255 1 0
|
||||
CastSlowMissiles HOAcast 21 Amazon 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 255 255 1 0
|
||||
HandOfAthena HOAmissileExplode 9 Amazon 0 1 0 0 0 0 0 0 0 0 0 16 0 3 2 2 255 255 255 1 0
|
||||
CastFistOfAres FOACast 20 Amazon 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 6 255 255 255 1 0
|
||||
DurielDeadFwd DurielBloodsplatOverlayFwd 26 ? 1 1 0 0 0 0 0 0 0 0 0 8 0 5 0 0 255 255 255 1 1
|
||||
FamiliarCast FamiliarCast 21 Necro 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
DoubleDamage1 impacting01 4 all 0 3 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
|
||||
DoubleDamage2 impacting02 4 all 0 2 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
|
||||
DoubleDamage3 impacting03 4 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer 00 ShrineShimmer00 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer 01 ShrineShimmer01 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Armor ShrineArmor 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Combat ShrineCombat 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Resist Lightning ShrineResistLightning 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Resist Fire ShrineResistFire 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Resist Cold ShrineResistCold 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Resist Poison ShrineResistPoison 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Skill ShrineSkill 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Mana Regen ShrineManaRegen 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Stamina ShrineStamina 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Shrine Shimmer Experience ShrineExperience 15 all 0 1 0 1 1 0 0 14 0 -14 -60 8 0 3 0 0 255 255 255 1 0
|
||||
Curse Hit CurseHit 10 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 10 255 193 103 1 0
|
||||
Item Gleam Gleam 8 item 0 1 0 1 1 0 0 0 0 0 0 16 4000 3 0 0 255 255 255 1 0
|
||||
multi gleam multigleam 10 objects 0 1 0 0 0 0 0 0 0 0 0 10 4000 3 0 0 255 255 255 1 0
|
||||
npc hail NPCSpeechBalloon 16 npcs 0 1 0 1 1 -5 -7 -30 0 0 -50 9 7000 3 0 0 255 255 255 1 0
|
||||
test #3 Gleam 8 test 0 1 0 1 1 10 -14 0 0 0 0 11 4000 3 0 0 255 255 255 1 0
|
||||
test #4 Gleam 8 test 0 1 0 1 1 -10 -12 0 0 0 0 12 4000 3 0 0 255 255 255 1 0
|
||||
ShoutStart ShoutStart 20 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 1 6 255 255 255 1 0
|
||||
Shout Shout 20 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 1 6 255 255 255 1 0
|
||||
Taunt CurseConfuseEffect 24 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 193 103 1 0
|
||||
Zakarum Priest Die Zakarum_Priest_DeathGlow 24 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 2 2 103 193 255 1 0
|
||||
Thorned Hulk Die ThornedHulkDeathOverlay 25 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 2 2 255 193 103 1 0
|
||||
Dust BAJumpLandPuff01 8 all 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
FireHit FireHit 8 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 3 1 255 193 103 1 0
|
||||
Frog Demon Die FrogExplode 14 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Fetish Aura FetishFreakOut 16 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Raven Raise Dead Front brraisedeadfront 16 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Raven Raise Dead Back brraisedeadback 16 all 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
EnergyShield ManaShieldBall 8 Sorceress 0 1 0 0 0 0 0 0 0 0 0 8 0 5 0 0 255 255 255 1 0
|
||||
EnergyShieldHit0 ManaShieldDir00 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
|
||||
EnergyShieldHit1 ManaShieldDir02 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
|
||||
EnergyShieldHit2 ManaShieldDir04 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
|
||||
EnergyShieldHit3 ManaShieldDir06 9 Sorceress 1 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
|
||||
EnergyShieldHit4 ManaShieldDir08 9 Sorceress 1 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
|
||||
EnergyShieldHit5 ManaShieldDir10 9 Sorceress 1 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
|
||||
EnergyShieldHit6 ManaShieldDir12 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
|
||||
EnergyShieldHit7 ManaShieldDir14 9 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 3 3 255 255 255 1 0
|
||||
ChillBlood ChillBloodPuff_curse 14 all 1 1 0 0 0 0 0 14 0 -14 -60 16 0 3 3 3 81 81 255 1 0
|
||||
ThunderStormFront null 2 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 8 8 255 255 255 1 0
|
||||
ThunderStormBack ThunderstormCast_operate 19 Sorceress 1 1 0 0 0 0 0 0 0 0 0 16 0 3 8 8 255 255 255 1 0
|
||||
ThunderStormCast ThunderstormCast 10 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 8 255 255 255 1 0
|
||||
BlessedAimFront BlessedAim_front 10 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
BlessedAimBack BlessedAim_back 10 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
StaminaFront Stamina_front 16 Paladin 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
StaminaBack Stamina_back 16 Paladin 1 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
ConcentrationFront Concentration_front 10 Paladin 0 1 0 0 0 0 0 0 0 0 0 3 0 3 0 0 255 255 255 1 0
|
||||
ConcentrationBack Concentration_back 10 Paladin 1 1 0 0 0 0 0 0 0 0 0 3 0 3 0 0 255 255 255 1 0
|
||||
HolyFreeze HolyFreeze 15 Paladin 1 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
CleansingFront Cleansing_front 16 Paladin 0 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
CleansingBack Cleansing_back 16 Paladin 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
HolyShockFront HolyShock_front 14 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HolyShockBack HolyShock_back 14 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HolyShockHit ShockHitSm 20 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 11 11 255 255 255 1 0
|
||||
SanctuaryFront SanctuaryAura_Front 12 Paladin 1 1 0 0 0 0 -1 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
SanctuaryBack SanctuaryAura_Back 12 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
SanctuaryKnockBack SanctuaryKnockback 13 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
MeditationFront Meditation 13 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
MeditationBack null 2 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
FanaticismFront Fanatacism_Front 30 Paladin 0 1 0 0 0 0 -1 0 0 0 0 6 0 3 0 0 255 255 255 1 0
|
||||
FanaticismBack Fanatacism_Back 30 Paladin 1 1 0 0 0 0 0 0 0 0 0 6 0 3 0 0 255 255 255 1 0
|
||||
RedemptionFront null 2 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
RedemptionBack Redemption 12 Paladin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
ConvictionFront null 2 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
ConvictionBack Conviction 21 all 1 1 0 0 0 0 0 0 0 0 0 6 0 3 0 0 255 255 255 1 0
|
||||
Mephisto MephistoOverlay 26 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
ConversionCast AuraResistColdBackCast 11 Monster 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 10 210 210 255 1 0
|
||||
ConversionAura Conversion 10 Monster 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
Charge Charge 8 Paladin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
FingerMageSpiderExplode FingerMageSpiderXplode 6 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
FingerMageSpiderCurse FingerMageCurse 15 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
CurseAmplifyDamage CurseAmplifyDamageEffect 24 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 1 6 255 64 64 1 0
|
||||
CurseDimVision CurseDimVisionEffect 24 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 1 6 255 210 210 1 0
|
||||
CurseWeaken CurseWeakenEffect 24 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 1 6 255 210 210 1 0
|
||||
CurseIronMaiden CurseIronMaidenEffect 29 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 1 6 255 0 0 1 0
|
||||
CurseTerror CurseTerrorEffect 20 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
|
||||
CurseAttract CurseAttractHarmEffect 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 255 0 0 1 0
|
||||
CurseReverseVampire CurseReverseVampireEffect 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
|
||||
CurseConfuse CurseConfuseEffect 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 255 0 1 0
|
||||
CurseDecrpify CurseDecrepifyEffect 24 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 0 255 1 0
|
||||
CurseLowerResistance CurseLowerResistEffect 29 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 1 6 0 0 255 1 0
|
||||
HitIronMaiden AuraThornsHit 10 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
|
||||
HitReverseVampire CurseRevVampireHit 13 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
|
||||
BoneArmorCast BoneShieldEmerge 12 Necro 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
BoneArmorFront BoneShieldFront 24 Necro 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
BoneArmorBack BoneShieldBack 24 Necro 1 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
BoneArmorNull1 null 2 Necro 0 1 0 1 1 0 0 0 0 0 0 4 0 3 0 0 0 0 0 1 0
|
||||
BoneArmorNull2 null 2 Necro 0 1 0 1 1 0 0 0 0 0 0 2 0 3 0 0 0 0 0 1 0
|
||||
DiabloLightning RedShockEffectSmall 20 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
VultureDemonFeathers vdfeathers 26 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 5 2 2 255 255 255 4 0
|
||||
Bash BABash 9 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
|
||||
Stun Stun 12 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
|
||||
BattleCry BattleCry 15 all 0 1 0 0 0 0 0 14 0 -14 -60 8 0 3 0 0 0 0 0 1 0
|
||||
SRIceHit SRIceHit 16 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 103 193 255 1 0
|
||||
StealLife CurseRevVampireHit 13 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
StealMana VampiricHitMana 13 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Enchant FireEnchant 17 Sorceress 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 9 255 178 64 1 0
|
||||
BattleOrdersCast BattleOrdersStart 11 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
BattleOrders BattleOrders 20 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
DurielDeadRear DurielBloodsplatOverlayRear 26 ? 1 1 0 0 0 0 0 0 0 0 0 8 0 5 0 0 255 255 255 1 1
|
||||
TentacleBloodRipple BloodRipple 16 Monster 0 1 0 0 0 0 0 0 0 0 0 8 0 8 2 2 0 0 0 1 1
|
||||
HandOfGod HolyShockHit 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 2 2 255 255 255 1 0
|
||||
BattleCommandCast BattleCommandStart 20 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
BattleCommand BattleCommand 20 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
BerserkFront BerserkOverlay 24 Bar 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
BerserkBack null 2 Bar 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Frenzy Frenzy 25 Bar 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
FireGolemRise FireGolemOverlay 16 all 0 1 0 0 0 0 0 0 0 0 0 10 0 3 2 5 255 0 0 1 0
|
||||
ValkyrieStart ValkarieEmerge 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Valkyrie ValkarieGlow 20 all 1 1 0 0 0 5 0 0 0 0 0 8 0 3 0 0 255 255 255 1 0
|
||||
Whirlwind BAWhirlwind01 8 Bar 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
VampireSteal VampiricHitHealth 8 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
FingerMageSpiderFlames FingerMageFlames 14 Monster 0 1 0 1 1 0 0 0 0 0 0 16 0 3 2 2 255 64 64 1 0
|
||||
WarcryHit WarcryHit 16 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
DopplezonAppear DopplezonAppear 19 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 1 4 255 255 255 1 0
|
||||
HydraStart1 HydraGroundFireStart 16 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HydraStart2 HydraGroundFireStart 16 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HydraStart3 HydraGroundFireStart 16 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HydraLoop1 HydraGroundFire 20 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HydraLoop2 HydraGroundFire 20 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HydraLoop3 HydraGroundFire 20 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HydraEnd1 HydraGroundFireEnd 16 Monster 0 1 0 0 0 -6 -11 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HydraEnd2 HydraGroundFireEnd 16 Monster 0 1 0 0 0 0 -7 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
HydraEnd3 HydraGroundFireEnd 16 Monster 0 1 0 0 0 4 -15 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
LightJet LIGHTJET 13 object 0 1 0 0 0 0 0 0 0 0 0 4 0 3 0 0 255 255 255 1 0
|
||||
HoradricLight HoradricLightBeam 21 object 0 1 0 0 0 0 0 0 0 0 0 5 0 3 0 0 255 255 255 1 0
|
||||
MonFrenzy FrenzyThornhulk 25 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Willowispdeath willodeathoverlay 20 Monster 0 1 0 0 0 0 0 0 0 0 0 20 0 3 1 4 178 178 178 1 0
|
||||
MegaDemonDeath firedeath 20 Monster 0 1 0 0 0 0 0 0 0 0 0 8 0 3 2 2 255 64 64 1 0
|
||||
LightCast2 LightningCastRunesFront 10 Sorceress 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 9 255 255 255 1 0
|
||||
UndeadHorrorDeath UMFire 20 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 2 2 255 255 255 1 0
|
||||
FetishDeath1 BoneFetishDeathBones 11 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 5 0 0 255 255 255 1 0
|
||||
FetishDeath2 BoneFetishDeathCloud 10 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
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
|
||||
PsychicHammerHit Expansion\PsyHammerHit 7 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 255 255 255 1 0
|
||||
PsychicHammerCast Expansion\PsyHammerOverlay 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
FistofWillCast Expansion\PsyHammerOverlay 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
FrontKick Willodeathoverlay 20 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Druid Fire Cast 1 Expansion\Fire_Overlay_A 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Druid Fire Cast 2 Expansion\Fire_Overlay_B 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
BlastofWindCast Expansion\ColdWindOverlay 21 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Siege Beast Dust Expansion\SeigeBeast_Dust 14 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
WolfMorph expansion\druidmorph 13 all 0 1 0 0 0 0 0 0 0 0 0 20 0 3 0 0 255 255 255 1 0
|
||||
WolfUndoMorph expansion\druidmorph 13 all 0 1 0 0 0 0 0 0 0 0 0 10 0 3 0 0 255 255 255 1 0
|
||||
BearMorph expansion\druidmorph 13 all 0 1 0 0 0 0 0 0 0 0 0 20 0 3 0 0 255 255 255 1 0
|
||||
BearUndoMorph expansion\druidmorph 13 all 0 1 0 0 0 0 0 0 0 0 0 10 0 3 0 0 255 255 255 1 0
|
||||
SpawnedMinion Expansion\minionspawnover 20 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
BloodLustState BloodRipple 15 all 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
Suicide Death Overlay Expansion\Suicide_Death_Overlay 20 all 0 1 0 0 0 0 0 0 0 0 0 6 0 3 0 0 255 255 255 1 1
|
||||
Oak Sage Overlay Expansion\oak_sage_Aura 11 all 1 1 0 0 0 0 0 0 0 0 0 6 0 3 0 0 255 255 255 1 0
|
||||
Volcano Flame Expansion\volcano_Fire 29 all 0 1 0 0 1 0 0 0 0 0 0 16 0 3 0 0 255 255 255 1 0
|
||||
CycloneArmor1Front Expansion\CycloneArmorAFront 11 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
CycloneArmor1Back Expansion\CycloneArmorABack 11 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
CycloneArmor2Front Expansion\CycloneArmorBFront 11 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
CycloneArmor2Back Expansion\CycloneArmorBBack 11 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
CycloneArmor3Front Expansion\CycloneArmorCFront 11 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
CycloneArmor3Back Expansion\CycloneArmorCBack 11 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Cloaked Expansion\CloakOfShadows 16 all 0 1 0 0 0 0 0 -46 -60 -74 -120 16 0 3 1 2 255 210 210 1 0
|
||||
AssassinFistImpact Expansion\DeadlyFistHit 5 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 3 3 255 255 255 1 0
|
||||
AssassinFootImpact Expansion\DeadlyFistHit 5 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 3 3 255 255 255 1 0
|
||||
TwisterFront Expansion\TwisterFront 40 all 0 1 0 0 1 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
TwisterBack Expansion\TwisterBack 40 all 1 1 0 0 1 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
BladeShield Expansion\blade_shield 20 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
RabiesPlague Expansion\rabies 30 all 0 1 0 0 0 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
|
||||
SpawnedBirthFlames Expansion\SpawnedBirthFlames 8 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 1 3 255 0 0 1 0
|
||||
SpawnedFlames Expansion\SpawnedFlames 8 all 1 1 0 0 0 0 0 0 0 0 0 8 0 3 1 3 255 0 0 1 0
|
||||
Defense Curse expansion\succcurseoverlay1 11 all 0 1 0 0 0 0 0 14 0 -14 -60 8 0 3 1 6 255 193 103 1 0
|
||||
Blood Mana expansion\succcurseoverlay2 10 all 0 1 0 1 1 0 0 14 0 -14 -60 16 0 3 0 0 0 0 0 1 0
|
||||
Burning Expansion\On_Fire 19 all 0 1 0 1 1 0 0 0 0 0 0 16 0 3 1 6 255 64 64 1 0
|
||||
Catapult Death S Expansion\catadeathoversouth 21 all 0 1 0 0 0 0 0 14 0 -14 -60 8 0 3 1 6 255 64 64 1 0
|
||||
Catapult Death E Expansion\catadeathovereast 21 all 0 1 0 0 0 0 0 14 0 -14 -60 8 0 3 1 6 255 64 64 1 0
|
||||
Ice Cage expansion\icecage_neutral 1 Monster 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
Ice Cage Melt expansion\icecage_melt 30 Monster 0 1 0 0 0 0 0 0 0 0 0 16 0 0 0 0 0 0 0 1 0
|
||||
Succubae Death expansion\succ1deathoverlay 18 Monster 0 1 0 0 0 0 0 0 0 0 0 10 0 3 0 0 0 0 0 1 0
|
||||
Progressive Damage 1 expansion\MISSILE_A_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Damage 2 expansion\MISSILE_A_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Damage 3 expansion\MISSILE_A_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Steal 1 expansion\MISSILE_B_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Steal 2 expansion\MISSILE_B_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Steal 3 expansion\MISSILE_B_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Other 1 expansion\MISSILE_C_A 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Other 2 expansion\MISSILE_C_B 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Other 3 expansion\MISSILE_C_C 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Fire 1 expansion\MISSILE_RED_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Fire 2 expansion\MISSILE_RED_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Fire 3 expansion\MISSILE_RED_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Fire 2 Attack FireCast_for_Sorceress 14 all 0 1 0 0 0 0 0 0 0 0 0 32 0 3 0 0 0 0 0 1 0
|
||||
Progressive Fire 3 Attack FireCast2 16 all 0 1 0 0 0 0 0 0 0 0 0 32 0 3 0 0 0 0 0 1 0
|
||||
Progressive Cold 1 expansion\MISSILE_BLUE_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Cold 2 expansion\MISSILE_BLUE_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Cold 3 expansion\MISSILE_BLUE_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Cold 2 Attack IceCastNew01 15 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Cold 3 Attack IceCastNew02 15 all 0 1 0 0 0 0 0 0 0 0 0 32 0 3 0 0 0 0 0 1 0
|
||||
Progressive Lightning 1 expansion\MISSILE_WHITE_A 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Lightning 2 expansion\MISSILE_WHITE_B 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Lightning 3 expansion\MISSILE_WHITE_C 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Lightning 2 Attack expansion\skill_norotate 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Progressive Lightning 3 Attack expansion\skill_norotate 10 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Spirit of Barbs expansion\spirit_of_barbs 12 all 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Heart of Wolverine expansion\Heart_of_Wolverine 30 all 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Inpregnated expansion\painwormcurse 10 all 1 1 0 1 1 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
|
||||
Quickness expansion\quickness 9 Assasin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
VenomClaws expansion\venomclaws 10 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
DragonFlight expansion\DragonFlight 9 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul1 expansion\Maul_A_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul2 expansion\Maul_B_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul3 expansion\Maul_C_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul4 expansion\Maul_D_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul5 expansion\Maul_E_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage1 expansion\feral_rage_A_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage2 expansion\feral_rage_B_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage3 expansion\feral_rage_C_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage4 expansion\feral_rage_D_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage5 expansion\feral_rage_E_Front 16 Druid 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
ShadowWarriorAppear expansion\ShadowAppear 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
ShadowWarriorFade expansion\ShadowAppear 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Fade expansion\fade 20 Assasin 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
DireWolfCharged expansion\DireWolfCharged 16 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
DireWolfCharged expansion\poisonhit 8 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
|
||||
BaalOnThrone expansion\baalshield 11 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
|
||||
Death Sentry expansion\dethsentry01 12 all 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul1Back expansion\Maul_A_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul2Back expansion\Maul_B_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul3Back expansion\Maul_C_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul4Back expansion\Maul_D_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
Maul5Back expansion\Maul_E_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage1Back expansion\feral_rage_A_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage2Back expansion\feral_rage_B_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage3Back expansion\feral_rage_C_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage4Back expansion\feral_rage_D_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
FeralRage5Back expansion\feral_rage_E_Back 16 Druid 1 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
TigerStrikeA expansion\tiger_Strike_A 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
|
||||
TigerStrikeB expansion\tiger_Strike_B 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
|
||||
TigerStrikeC expansion\tiger_Strike_C 32 all 0 1 0 0 0 0 0 0 0 0 0 8 0 3 0 0 0 0 0 1 0
|
||||
CobraStrikeA expansion\Cobra_Strike_A 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
CobraStrikeB expansion\Cobra_Strike_B 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
CobraStrikeC expansion\Cobra_Strike_C 16 Assasin 0 1 0 0 0 0 0 0 0 0 0 16 0 3 0 0 0 0 0 1 0
|
||||
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
|
||||
|
@ -10,11 +10,11 @@ hireable 7 1 1 1 1 1 rogueicon 338 act2hireableicon 359 act3hireableicon 56
|
||||
dopplezon 8 0 1 1 1 0
|
||||
invis 9 0 1 0
|
||||
raven 10 0 1 strUI5 2 raven 0
|
||||
spiritwolf 11 1 0 1 1 1 1 strUI6 1 2 wolf 0
|
||||
fenris 12 1 0 1 1 1 1 UIFenirsui 1 2 wolf 0
|
||||
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 1 0 1 1 1 1 strUI7 1 1 bear 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
|
||||
|
@ -1,21 +1,21 @@
|
||||
Name Token
|
||||
Death DT
|
||||
Neutral NU
|
||||
Walk WL
|
||||
Run RN
|
||||
Get Hit GH
|
||||
Town Neutral TN
|
||||
Town Walk TW
|
||||
Attack1 A1
|
||||
Attack2 A2
|
||||
Block BL
|
||||
Cast SC
|
||||
Throw TH
|
||||
Kick KK
|
||||
Skill1 S1
|
||||
Skill2 S2
|
||||
Skill3 S3
|
||||
Skill4 S4
|
||||
Dead DD
|
||||
Sequence GH
|
||||
Knock back GH
|
||||
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
|
||||
|
@ -50,7 +50,7 @@ abs-mag% 1 1 item_absorbmagic_percent none 0
|
||||
abs-mag 1 1 item_absorbmagic none 0
|
||||
abs-cold% 1 1 item_absorbcold_percent none 0
|
||||
abs-cold 1 1 item_absorbcold none 0
|
||||
dur 1 1 maxdurability none 0
|
||||
dur 1 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
|
||||
@ -102,7 +102,7 @@ dmg-undead 1 1 item_undeaddamage_percent none 0
|
||||
att-demon 1 1 item_demon_tohit none 0
|
||||
att-undead 1 1 item_undead_tohit none 0
|
||||
throw 1 1 item_throwable none 0
|
||||
fireskill 1 1 21 item_elemskill none 0
|
||||
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
|
||||
@ -120,7 +120,7 @@ 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
|
||||
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
|
||||
@ -267,3 +267,163 @@ 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
|
||||
|
@ -1,47 +1,47 @@
|
||||
name version itype1 itype2 itype3 itype4 itype5 itype6 itype7 etype1 etype2 etype3 etype4 add multiply divide
|
||||
Beast 0 armo weap misc 0 0 0
|
||||
Eagle 0 armo weap misc 0 0 0
|
||||
Raven 0 armo weap misc 0 0 0
|
||||
Viper 0 armo weap misc 0 0 0
|
||||
GhoulRI 0 armo weap misc 0 0 0
|
||||
Skull 0 armo weap misc 0 0 0
|
||||
Blood 0 armo weap misc 0 0 0
|
||||
Dread 0 armo weap misc 0 0 0
|
||||
Doom 0 armo weap misc 0 0 0
|
||||
Grim 0 armo weap misc 0 0 0
|
||||
Bone 0 armo weap misc 0 0 0
|
||||
Death 0 armo weap misc 0 0 0
|
||||
Shadow 0 armo weap misc 0 0 0
|
||||
Storm 0 armo weap misc 0 0 0
|
||||
Rune 0 armo weap misc 0 0 0
|
||||
PlagueRI 0 armo weap misc 0 0 0
|
||||
Stone 0 armo weap misc 0 0 0
|
||||
Wraithra 0 armo weap misc 0 0 0
|
||||
Spirit 0 armo rod 0 0 0
|
||||
Storm 0 armo weap 0 0 0
|
||||
Demon 0 armo weap 0 0 0
|
||||
Cruel 0 armo weap 0 0 0
|
||||
Empyrion 0 rod 0 0 0
|
||||
Bramble 0 armo weap 0 0 0
|
||||
Pain 0 armo weap 0 0 0
|
||||
Loath 0 armo weap 0 0 0
|
||||
Glyph 0 armo weap 0 0 0
|
||||
Imp 0 armo weap 0 0 0
|
||||
Fiendra 0 armo weap 0 0 0
|
||||
Hailstone 0 armo weap 0 0 0
|
||||
Gale 0 armo weap 0 0 0
|
||||
Dire 0 armo weap 0 0 0
|
||||
Soul 0 armo weap 0 0 0
|
||||
Brimstone 0 armo weap 0 0 0
|
||||
Corpse 0 armo weap 0 0 0
|
||||
Carrion 0 armo weap 0 0 0
|
||||
Holocaust 0 tors helm shld swor axe 0 0 0
|
||||
Havoc 0 armo weap misc 0 0 0
|
||||
Bitter 0 armo weap misc 0 0 0
|
||||
Entropy 0 ring amul 0 0 0
|
||||
Chaos 0 ring amul 0 0 0
|
||||
Order 0 ring amul scep 0 0 0
|
||||
Rule 0 rod 0 0 0
|
||||
Warp 0 0 0 0
|
||||
Rift 0 0 0 0
|
||||
Corruption 0 ring amul 0 0 0
|
||||
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
|
||||
|
@ -1,156 +1,156 @@
|
||||
name version itype1 itype2 itype3 itype4 itype5 itype6 itype7 etype1 etype2 etype3 etype4 add multiply divide
|
||||
bite 0 swor knif spea pole axe h2h 0 0 0
|
||||
scratch 0 swor knif spea pole h2h 0 0 0
|
||||
scalpel 0 swor knif 0 0 0
|
||||
fang 0 swor knif spea pole 0 0 0
|
||||
gutter 0 swor knif spea pole 0 0 0
|
||||
thirst 0 swor knif spea pole axe h2h 0 0 0
|
||||
razor 0 swor knif axe h2h 0 0 0
|
||||
scythe 0 swor axe pole 0 0 0
|
||||
edge 0 swor knif axe 0 0 0
|
||||
saw 0 swor 0 0 0
|
||||
splitter 0 axe mace club hamm 0 0 0
|
||||
cleaver 0 swor axe 0 0 0
|
||||
sever 0 swor axe 0 0 0
|
||||
sunder 0 axe 0 0 0
|
||||
rend 0 axe 0 0 0
|
||||
mangler 0 axe mace club hamm 0 0 0
|
||||
slayer 0 axe 0 0 0
|
||||
reaver 0 axe 0 0 0
|
||||
spawn 0 axe hamm 0 0 0
|
||||
gnash 0 axe club hamm 0 0 0
|
||||
star 0 mace hamm scep wand 0 0 0
|
||||
blow 0 mace club hamm scep 0 0 0
|
||||
smasher 0 mace club hamm scep 0 0 0
|
||||
Bane 0 mace scep wand 0 0 0
|
||||
crusher 0 mace club hamm scep 0 0 0
|
||||
breaker 0 mace club hamm scep 0 0 0
|
||||
grinder 0 mace club hamm scep 0 0 0
|
||||
crack 0 mace club hamm scep wand 0 0 0
|
||||
mallet 0 hamm club 0 0 0
|
||||
knell 0 mace club scep wand 0 0 0
|
||||
lance 0 spea pole 0 0 0
|
||||
spike 0 swor knif spea pole 0 0 0
|
||||
impaler 0 swor knif spea pole 0 0 0
|
||||
skewer 0 swor knif spea 0 0 0
|
||||
prod 0 spea pole 0 0 0
|
||||
scourge 0 spea pole 0 0 0
|
||||
wand 0 wand 0 0 0
|
||||
wrack 0 spea pole 0 0 0
|
||||
barb 0 swor knif axe spea pole h2h 0 0 0
|
||||
needle 0 swor knif spea miss 0 0 0
|
||||
dart 0 spea miss 0 0 0
|
||||
bolt 0 miss jave 0 0 0
|
||||
quarrel 0 miss 0 0 0
|
||||
fletch 0 miss 0 0 0
|
||||
flight 0 miss jave 0 0 0
|
||||
nock 0 miss 0 0 0
|
||||
horn 0 helm miss knif 0 0 0
|
||||
stinger 0 swor knif spea miss 0 0 0
|
||||
quill 0 knif miss 0 0 0
|
||||
goad 0 spea pole staf 0 0 0
|
||||
branch 0 spea staf bow 0 0 0
|
||||
spire 0 staf 0 0 0
|
||||
song 0 weap 0 0 0
|
||||
call 0 rod 0 0 0
|
||||
cry 0 rod 0 0 0
|
||||
spell 0 rod 0 0 0
|
||||
chant 0 rod 0 0 0
|
||||
weaver 0 rod 0 0 0
|
||||
gnarl 0 club wand staf 0 0 0
|
||||
visage 0 helm 0 0 0
|
||||
crest 0 helm 0 0 0
|
||||
circlet 0 helm 0 0 0
|
||||
veil 0 helm 0 0 0
|
||||
hood 0 helm 0 0 0
|
||||
mask 0 helm 0 0 0
|
||||
brow 0 helm 0 0 0
|
||||
casque 0 helm 0 0 0
|
||||
visor 0 helm 0 0 0
|
||||
cowl 0 helm 0 0 0
|
||||
hide 0 tors 0 0 0
|
||||
Pelt 0 tors 0 0 0
|
||||
carapace 0 tors 0 0 0
|
||||
coat 0 tors 0 0 0
|
||||
wrap 0 tors 0 0 0
|
||||
suit 0 tors 0 0 0
|
||||
cloak 0 tors 0 0 0
|
||||
shroud 0 tors 0 0 0
|
||||
jack 0 tors 0 0 0
|
||||
mantle 0 tors 0 0 0
|
||||
guard 0 shld 0 0 0
|
||||
badge 0 shld 0 0 0
|
||||
rock 0 shld 0 0 0
|
||||
aegis 0 shld 0 0 0
|
||||
ward 0 shld 0 0 0
|
||||
tower 0 shld 0 0 0
|
||||
shield 0 shld 0 0 0
|
||||
wing 0 shld amul 0 0 0
|
||||
mark 0 shld amul 0 0 0
|
||||
emblem 0 shld amul 0 0 0
|
||||
hand 0 glov 0 0 0
|
||||
fist 0 glov h2h 0 0 0
|
||||
claw 0 glov h2h 0 0 0
|
||||
clutches 0 glov 0 0 0
|
||||
grip 0 glov ring 0 0 0
|
||||
grasp 0 glov ring 0 0 0
|
||||
hold 0 glov ring 0 0 0
|
||||
touch 0 glov ring 0 0 0
|
||||
finger 0 glov ring 0 0 0
|
||||
knuckle 0 glov 0 0 0
|
||||
shank 0 boot 0 0 0
|
||||
spur 0 boot 0 0 0
|
||||
tread 0 boot 0 0 0
|
||||
stalker 0 boot 0 0 0
|
||||
greave 0 boot 0 0 0
|
||||
blazer 0 boot 0 0 0
|
||||
nails 0 boot spea pole 0 0 0
|
||||
trample 0 boot 0 0 0
|
||||
Brogues 0 boot 0 0 0
|
||||
track 0 boot 0 0 0
|
||||
slippers 0 boot 0 0 0
|
||||
clasp 0 belt amul 1 1 1
|
||||
buckle 0 belt 1 1 1
|
||||
harness 0 belt 1 1 1
|
||||
lock 0 belt 1 1 1
|
||||
fringe 0 belt 1 1 1
|
||||
winding 0 belt 1 1 1
|
||||
chain 0 belt 1 1 1
|
||||
strap 0 belt 1 1 1
|
||||
lash 0 belt 1 1 1
|
||||
cord 0 belt 1 1 1
|
||||
knot 0 ring 0 0 0
|
||||
circle 0 ring 0 0 0
|
||||
loop 0 ring 0 0 0
|
||||
eye 0 misc 0 0 0
|
||||
turn 0 ring 0 0 0
|
||||
spiral 0 ring 0 0 0
|
||||
coil 0 ring 0 0 0
|
||||
gyre 0 ring orb jewl 0 0 0
|
||||
band 0 ring 0 0 0
|
||||
whorl 0 ring orb jewl 0 0 0
|
||||
talisman 0 amul jewl 0 0 0
|
||||
heart 0 amul orb jewl 0 0 0
|
||||
noose 0 amul 0 0 0
|
||||
necklace 0 amul 0 0 0
|
||||
collar 0 amul 0 0 0
|
||||
beads 0 amul 0 0 0
|
||||
torc 0 amul 0 0 0
|
||||
gorget 0 amul 0 0 0
|
||||
scarab 0 amul jewl 0 0 0
|
||||
wood 0 spea pole wand staf 0 0 0
|
||||
brand 0 blun 0 0 0
|
||||
bludgeon 0 blun 0 0 0
|
||||
cudgel 0 club wand 0 0 0
|
||||
loom 0 miss 0 0 0
|
||||
harp 0 miss 0 0 0
|
||||
master 0 ring 0 0 0
|
||||
barRI 0 blun spea pole 0 0 0
|
||||
hew 0 swor knif axe 0 0 0
|
||||
crook 0 staf 0 0 0
|
||||
mar 0 swor knif mace club hamm spea 0 0 0
|
||||
shell 0 tors helm shld 0 0 0
|
||||
stake 0 spea pole 0 0 0
|
||||
picket 0 spea pole 0 0 0
|
||||
pale 0 spea pole 0 0 0
|
||||
flange 0 tors mace hamm scep 0 0 0
|
||||
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
|
||||
|
340
txt/Runes.txt
340
txt/Runes.txt
@ -1,170 +1,170 @@
|
||||
Name Rune Name complete server itype1 itype2 itype3 itype4 itype5 itype6 etype1 etype2 etype3 Rune1 Rune2 Rune3 Rune4 Rune5 Rune6 T1Code1 T1Param1 T1Min1 T1Max1 T1Code2 T1Param2 T1Min2 T1Max2 T1Code3 T1Param3 T1Min3 T1Max3 T1Code4 T1Param4 T1Min4 T1Max4 T1Code5 T1Param5 T1Min5 T1Max5 T1Code6 T1Param6 T1Min6 T1Max6
|
||||
Runeword1 Ancient's Pledge 1 1 shld r08 r09 r07 res-cold 30 30 res-all 13 13 ac% 50 50 dmg-to-mana 10 10
|
||||
Runeword2 Armageddon 1 1 axe club pole hamm r11 r31 r32 r12 r11 r06 dmg% 185 185 att 300 300 swing2 20 20 lifesteal 3 3
|
||||
Runeword3 Authority 1 1 helm r33 r25 r22 ac% 100 100 res-all 5 5 allskills 1 1 str 20 20
|
||||
Runeword4 The Beast 1 1 axe club hamm r33 r03 r22 r23 r17 dmg% 200 200 crush 25 25 openwounds 25 25 dmg-undead 50 50 dmg-demon 50 50
|
||||
Runeword5 Beauty 1 1 helm r01 r08 r05 light 2 2 mag% 50 50 balance2 20 20
|
||||
Runeword6 Black 1 1 club hamm mace r16 r12 r02 dmg-undead 25 25 att-undead 50 50 manasteal 7 7 dmg% 133 133 lifesteal 7 7
|
||||
Runeword7 Blood 1 1 spea axe swor r31 r30 r01 r22 dmg% 175 175 openwounds 75 75 deadly 25 25 lifesteal 13 13 str 13 13
|
||||
Runeword8 Bone 1 1 spea wand r17 r02 att-undead 200 200 dmg-undead 75 75 dmg% 180 180 manasteal 9 9 skilltab 7 4 4
|
||||
Runeword9 Bramble 1 1 tors r05 r08 ac% 47 47 res-fire 3 3 res-ltng 33 33 move1 10 10
|
||||
Runeword10 Brand 1 1 scep swor r01 r15 r08 r06 light 1 1 dmg-fire 10 30 dmg% 100 100 res-cold 35 35
|
||||
Runeword11 Breath of the Dying 1 1 weap r31 r07 r24 r28 r09 r20 dmg% 100 100 dmg-cold 9 15 mana-kill 5 5
|
||||
Runeword12 Broken Promise 1 1 weap r07 r27 r14 pois-max 200 200 dmg-cold 6 11 att 250 250 dmg% 25 25
|
||||
Runeword13 Call to Arms 1 1 weap r10 r06 r10 r23 dmg% 77 77 ac 200 200 dex 15 15 thorns 21 21 att 200 200
|
||||
Runeword14 Bound by Duty 1 1 tors r03 r11 r01 r09 ac% 70 70 balance3 30 30 skilltab 11 2 2 hp 30 30
|
||||
Runeword15 Chance 1 1 weap r28 r08 mag% 50 50 gold% 100 100 stupidity 1 1 dmg% 42 42
|
||||
Runeword16 Chaos 1 1 tors r29 r09 r02 r13 ac% 80 80 res-fire 30 30 str 15 15 gethit-skill 38 50 7
|
||||
Runeword17 Crescent Moon 1 1 axe swor pole r02 r15 r22 dmg% 100 100 manasteal 7 7 swing3 30 30 att% 20 20
|
||||
Runeword18 Darkness 1 1 mele r07 r11 r25 r04 r10 dmg% 120 120 lifesteal 3 3 stupidity 1 1
|
||||
Runeword19 Daylight 1 1 mele r11 r03 r31 dmg% 120 120 light 3 3 manasteal 3 3 dmg-fire 33 99
|
||||
Runeword20 Death 1 1 weap r14 r20 r04 r07 r05 deadly 33 33 dmg% 133 133 noheal 1 1 dmg-pois 25 200 200 lifesteal 5 5
|
||||
Runeword21 Deception 1 1 knif r18 r14 r05 dmg-pois 100 52 52 manasteal 10 10 ignore-ac 1 1 dmg% 199 199 slow 50 50
|
||||
Runeword22 Delirium 1 1 helm r20 r09 r16 ac% 77 77 res-cold 44 44 res-fire 55 55 res-pois 66 66 res-ltng 3 3 regen -3 -3
|
||||
Runeword23 Desire 1 helm r28 r09 r06 res-pois 0 25 25
|
||||
Runeword24 Despair 1 mele r21 r32 r17 r21 r09 res-pois 0 25 25
|
||||
Runeword25 Destruction 1 axe club hamm r05 r08 r25 r11 res-pois 0 25 25
|
||||
Runeword26 Doomsayer 1 axe club hamm r13 r30 r21 r06 r05 r10 res-pois 0 25 25
|
||||
Runeword27 Dragon 1 mele r22 r04 r17 r05 r28 res-pois 0 25 25
|
||||
Runeword28 Dread 1 mele r20 r01 r18 r15 res-pois 0 25 25
|
||||
Runeword29 Dream 1 helm r08 r05 res-pois 0 25 25
|
||||
Runeword30 Duress 1 tors r13 r22 r10 res-pois 0 25 25
|
||||
Runeword31 Edge 1 axe swor knif r30 r09 res-pois 0 25 25
|
||||
Runeword32 Destiny's Daughter 1 helm r04 r26 r01 res-pois 0 25 25
|
||||
Runeword33 Enigma 1 tors r32 r30 r06 res-pois 0 25 25
|
||||
Runeword34 Enlightenment 1 helm r10 r02 res-pois 0 25 25
|
||||
Runeword35 Envy 1 helm r18 r03 res-pois 0 25 25
|
||||
Runeword36 Eternity 1 mele r21 r01 r07 r20 r30 res-pois 0 25 25
|
||||
Runeword37 Exile's Path 1 shld r07 r04 r03 r10 res-pois 0 25 25
|
||||
Runeword38 Faith 1 shld r19 r32 r22 r08 res-pois 0 25 25
|
||||
Runeword39 Famine 1 axe club r02 r26 r02 r03 r20 res-pois 0 25 25
|
||||
Runeword40 Flickering Flame 1 swor r21 r05 r07 res-pois 0 25 25
|
||||
Runeword41 Fortitude 1 club hamm mace scep r13 r05 r03 res-pois 0 25 25
|
||||
Runeword42 Fortune's Favor 1 knif r05 r11 r29 r15 r26 res-pois 0 25 25
|
||||
Runeword43 Amity 1 shld r13 r07 res-pois 0 25 25
|
||||
Runeword44 Fury 1 mele r31 r17 r24 res-pois 0 25 25
|
||||
Runeword45 Gloom 1 axe r25 r06 r13 res-pois 0 25 25
|
||||
Runeword46 Glory 1 mele r23 r19 r07 r02 res-pois 0 25 25
|
||||
Runeword47 Widowmaker 1 miss r17 r24 r02 r02 res-pois 0 25 25
|
||||
Runeword48 Hand of Justice 1 mace scep r18 r02 r33 r29 r22 r16 res-pois 0 25 25
|
||||
Runeword49 Harmony 1 tors r12 r33 r15 res-pois 0 25 25
|
||||
Runeword50 Hatred 1 mele r08 r10 r21 r16 r07 res-pois 0 25 25
|
||||
Runeword51 Heart of the Oak 1 staf club r01 r04 r05 r15 res-pois 0 25 25
|
||||
Runeword52 Heaven's Will 1 scep r23 r15 r18 r13 r11 r18 res-pois 0 25 25
|
||||
Runeword53 Holy Tears 1 scep r24 r08 r07 r25 res-pois 0 25 25
|
||||
Runeword54 Holy Thunder 1 scep r07 r01 r02 r05 res-pois 0 25 25
|
||||
Runeword55 Honor 1 mele r06 r09 r12 r08 r08 res-pois 0 25 25
|
||||
Runeword56 Dweomer 1 staf r04 r07 r03 r08 res-pois 0 25 25
|
||||
Runeword57 Humility 1 helm r06 r13 r01 res-pois 0 25 25
|
||||
Runeword58 Hunger 1 swor knif axe spea r08 r15 res-pois 0 25 25
|
||||
Runeword59 Ice 1 swor knif axe spea r07 r15 r16 r04 res-pois 0 25 25
|
||||
Runeword60 Infinity 1 staf r01 r01 r12 r07 res-pois 0 25 25
|
||||
Runeword61 Innocence 1 scep r06 r22 res-pois 0 25 25
|
||||
Runeword62 Insight 1 helm r01 r04 r19 res-pois 0 25 25
|
||||
Runeword63 Jealousy 1 weap r15 r16 r09 r20 res-pois 0 25 25
|
||||
Runeword64 Judgment 1 mele r20 r09 r07 r01 r11 res-pois 0 25 25
|
||||
Runeword65 King's Grace 1 swor scep r04 r02 r05 res-pois 0 25 25
|
||||
Runeword66 Kingslayer 1 swor axe r23 r09 r25 res-pois 0 25 25
|
||||
Runeword67 Knight's Vigil 1 mele r08 r04 r05 r17 r01 res-pois 0 25 25
|
||||
Runeword68 Thirst for Knowledge 1 helm r09 r20 res-pois 0 25 25
|
||||
Runeword69 Last Wish 1 shld r12 r10 r08 r06 res-pois 0 25 25
|
||||
Runeword70 Law 1 shld r22 r08 r19 r01 res-pois 0 25 25
|
||||
Runeword71 Lawbringer 1 mele r22 r20 r30 res-pois 0 25 25
|
||||
Runeword72 Leaf 1 staf r02 r06 res-pois 0 25 25
|
||||
Runeword73 Lightning 1 mele r16 r15 r12 r01 res-pois 0 25 25
|
||||
Runeword74 Lionheart 1 tors r09 r17 r16 res-pois 0 25 25
|
||||
Runeword75 Lore 1 helm r11 r10 res-pois 0 25 25
|
||||
Runeword76 The Lovers 1 shld r25 r19 r25 r29 res-pois 0 25 25
|
||||
Runeword77 Loyalty 1 shld r04 r08 r22 res-pois 0 25 25
|
||||
Runeword78 Lust 1 mele r12 r01 r09 r01 r28 r02 res-pois 0 25 25
|
||||
Runeword79 Madness 1 helm r25 r27 res-pois 0 25 25
|
||||
Runeword80 Malice 1 mele r03 r01 r04 res-pois 0 25 25
|
||||
Runeword81 Melody 1 miss r10 r16 r05 res-pois 0 25 25
|
||||
Runeword82 Memory 1 staf r31 r09 r04 r01 res-pois 0 25 25
|
||||
Runeword83 Mist 1 mele r11 r08 res-pois 0 25 25
|
||||
Runeword84 Morning Dew 1 shld r01 r26 r03 res-pois 0 25 25
|
||||
Runeword85 Mystery 1 staf r12 r05 r20 res-pois 0 25 25
|
||||
Runeword86 Myth 1 staf r27 r33 r15 r06 res-pois 0 25 25
|
||||
Runeword87 Nadir 1 helm r01 r03 res-pois 0 25 25
|
||||
Runeword88 Nature's Kingdom 1 club r22 r05 r22 r08 res-pois 0 25 25
|
||||
Runeword89 Nightfall 1 mele r08 r06 r25 r11 res-pois 0 25 25
|
||||
Runeword90 Oath 1 scep r16 r01 r04 r09 res-pois 0 25 25
|
||||
Runeword91 Obedience 1 tors r16 r17 res-pois 0 25 25
|
||||
Runeword92 Oblivion 1 axe hamm mace r31 r33 r01 r16 r15 r29 res-pois 0 25 25
|
||||
Runeword93 Obsession 1 mele r01 r12 r06 r07 res-pois 0 25 25
|
||||
Runeword94 Passion 1 mele r23 r03 r16 res-pois 0 25 25
|
||||
Runeword95 Patience 1 helm r11 r12 res-pois 0 25 25
|
||||
Runeword96 Pattern 1 weap r07 r09 r07 r03 r02 res-pois 0 25 25
|
||||
Runeword97 Peace 1 shld r22 r06 r02 r20 res-pois 0 25 25
|
||||
Runeword98 Winter 1 mele r01 r06 r01 r09 r05 r01 res-pois 0 25 25
|
||||
Runeword99 Penitence 1 mele r10 r15 r06 res-pois 0 25 25
|
||||
Runeword100 Peril 1 weap r19 r03 res-pois 0 25 25
|
||||
Runeword101 Pestilence 1 weap r03 r18 r03 r12 res-pois 0 25 25
|
||||
Runeword102 Phoenix 1 mele r11 r29 r09 r15 res-pois 0 25 25
|
||||
Runeword103 Piety 1 scep r01 r30 r05 res-pois 0 25 25
|
||||
Runeword104 Pillar of Faith 1 scep r21 r20 r06 r07 r06 res-pois 0 25 25
|
||||
Runeword105 Plague 1 knif swor spea r21 r13 res-pois 0 25 25
|
||||
Runeword106 Praise 1 scep mace r26 r05 res-pois 0 25 25
|
||||
Runeword107 Prayer 1 scep r12 r05 r13 r03 res-pois 0 25 25
|
||||
Runeword108 Pride 1 mele r14 r19 r05 res-pois 0 25 25
|
||||
Runeword109 Principle 1 mele r33 r04 r23 res-pois 0 25 25
|
||||
Runeword110 Prowess in Battle 1 weap r13 r08 res-pois 0 25 25
|
||||
Runeword111 Prudence 1 tors r23 r03 res-pois 0 25 25
|
||||
Runeword112 Punishment 1 mele r02 r04 r08 r23 res-pois 0 25 25
|
||||
Runeword113 Purity 1 mele r03 r11 r27 r09 r18 res-pois 0 25 25
|
||||
Runeword114 Question 1 staf r12 r01 r06 res-pois 0 25 25
|
||||
Runeword115 Radiance 1 helm r05 r03 r07 res-pois 0 25 25
|
||||
Runeword116 Rain 1 club r32 r06 res-pois 0 25 25
|
||||
Runeword117 Reason 1 helm r11 r26 r20 res-pois 0 25 25
|
||||
Runeword118 Red 1 weap r13 r09 r16 res-pois 0 25 25
|
||||
Runeword119 Rhyme 1 shld r09 r12 res-pois 0 25 25
|
||||
Runeword120 Rift 1 axe r02 r03 r09 r02 r18 r06 res-pois 0 25 25
|
||||
Runeword121 Sanctuary 1 shld r18 r03 r08 r10 res-pois 0 25 25
|
||||
Runeword122 Serendipity 1 club mace scep r06 r19 res-pois 0 25 25
|
||||
Runeword123 Shadow 1 h2h r28 r06 r08 r10 res-pois 0 25 25
|
||||
Runeword124 Shadow of Doubt 1 helm r07 r11 res-pois 0 25 25
|
||||
Runeword125 Silence 1 weap r17 r09 r19 r20 r16 r20 res-pois 0 25 25
|
||||
Runeword126 Siren's Song 1 mele r28 r10 r07 r20 res-pois 0 25 25
|
||||
Runeword127 Smoke 1 tors r15 r03 res-pois 0 25 25
|
||||
Runeword128 Sorrow 1 mele r03 r04 r13 r25 r04 res-pois 0 25 25
|
||||
Runeword129 Spirit 1 weap r23 r01 r01 r30 r13 res-pois 0 25 25
|
||||
Runeword130 Splendor 1 shld r05 r17 res-pois 0 25 25
|
||||
Runeword131 Starlight 1 staf swor r20 r04 r03 res-pois 0 25 25
|
||||
Runeword132 Stealth 1 scep r05 r01 res-pois 0 25 25
|
||||
Runeword133 Steel 1 swor axe mace r04 r03 res-pois 0 25 25
|
||||
Runeword134 Still Water 1 mele r01 r10 res-pois 0 25 25
|
||||
Runeword135 Sting 1 swor knif r04 r11 r17 res-pois 0 25 25
|
||||
Runeword136 Stone 1 mace hamm club r08 r10 r01 res-pois 0 25 25
|
||||
Runeword137 Storm 1 axe hamm r01 r03 r15 r04 r03 res-pois 0 25 25
|
||||
Runeword138 Strength 1 mele r09 r07 res-pois 0 25 25
|
||||
Runeword139 Tempest 1 weap r05 r02 r08 r24 res-pois 0 25 25
|
||||
Runeword140 Temptation 1 helm r01 r18 res-pois 0 25 25
|
||||
Runeword141 Terror 1 weap r24 r06 r19 r01 res-pois 0 25 25
|
||||
Runeword142 Thirst 1 mele r02 r09 res-pois 0 25 25
|
||||
Runeword143 Thought 1 helm r13 r16 res-pois 0 25 25
|
||||
Runeword144 Thunder 1 hamm mace axe r15 r24 res-pois 0 25 25
|
||||
Runeword145 Time 1 staf r29 r25 r30 r04 r31 r18 res-pois 0 25 25
|
||||
Runeword146 Tradition 1 scep r01 r09 r04 r08 res-pois 0 25 25
|
||||
Runeword147 Treachery 1 mele r29 r18 r26 res-pois 0 25 25
|
||||
Runeword148 Trust 1 helm r11 r02 r32 res-pois 0 25 25
|
||||
Runeword149 Truth 1 swor r19 r22 r27 r26 r04 r17 res-pois 0 25 25
|
||||
Runeword150 Unbending Will 1 tors r09 r32 r07 r07 res-pois 0 25 25
|
||||
Runeword151 Valor 1 mele r04 r01 r28 res-pois 0 25 25
|
||||
Runeword152 Vengeance 1 weap r06 r11 r01 res-pois 0 25 25
|
||||
Runeword153 Venom 1 weap r09 r12 r23 res-pois 0 25 25
|
||||
Runeword154 Victory 1 mele r07 r04 r02 r01 res-pois 0 25 25
|
||||
Runeword155 Voice 1 helm r03 r06 res-pois 0 25 25
|
||||
Runeword156 Void 1 mele r11 r01 r31 r08 r21 res-pois 0 25 25
|
||||
Runeword157 War 1 weap r25 r11 r04 r03 r04 res-pois 0 25 25
|
||||
Runeword158 Water 1 mele r05 r27 r33 r16 res-pois 0 25 25
|
||||
Runeword159 Wealth 1 tors r07 r21 r01 res-pois 0 25 25
|
||||
Runeword160 Whisper 1 mele r14 r03 r01 res-pois 0 25 25
|
||||
Runeword161 White 1 wand r17 r06 r02 res-pois 0 25 25
|
||||
Runeword162 Wind 1 mele r29 r01 res-pois 0 25 25
|
||||
Runeword163 Wings of Hope 1 mele r10 r03 r17 r03 r08 res-pois 0 25 25
|
||||
Runeword164 Wisdom 1 staf r08 r31 r08 r18 r01 res-pois 0 25 25
|
||||
Runeword165 Woe 1 mele r03 r04 r06 r09 r14 res-pois 0 25 25
|
||||
Runeword166 Wonder 1 wand r04 r12 r24 res-pois 0 25 25
|
||||
Runeword167 Wrath 1 mele r08 r05 r28 r15 r01 res-pois 0 25 25
|
||||
Runeword168 Youth 1 tors r08 r15 r03 r17 r21 res-pois 0 25 25
|
||||
Runeword169 Zephyr 1 miss r07 r06 res-pois 0 25 25
|
||||
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
|
||||
|
457
txt/SetItems.txt
457
txt/SetItems.txt
@ -1,34 +1,423 @@
|
||||
Name version level NumItems transform transformcolor Item1 Item1 Suffix Item1 Rarity Item1 Add Item1 Lvlreq Item1 cost mult Item1 cost add I1Code1 I1Param1 I1Min1 I1Max1 I1Code2 I1Param2 I1Min2 I1Max2 I1CodeA I1ParamA I1MinA I1MaxA I1CodeB I1ParamB I1MinB I1MaxB I1CodeC I1ParamC I1MinC I1MaxC I1CodeD I1ParamD I1MinD I1MaxD I1CodeE I1ParamE I1MinE I1MaxE Item2 Item2 Suffix Item2 Rarity Item2 Add Item2 LvlReq Item2 cost mult Item2 cost add I2Code1 I2Param1 I2Min1 I2Max1 I2Code2 I2Param2 I2Min2 I2Max2 I2CodeA I2ParamA I2MinA I2MaxA I2CodeB I2ParamB I2MinB I2MaxB I2CodeC I2ParamC I2MinC I2MaxC I2CodeD I2ParamD I2MinD I2MaxD I2CodeE I2ParamE I2MinE I2MaxE Item3 Item3 Suffix Item3 Rarity Item3 Add Item3 Lvlreq Item3 cost mult Item3 cost add I3Code1 I3Param1 I3Min1 I3Max1 I3Code2 I3Param2 I3Min2 I3Max2 I3CodeA I3ParamA I3MinA I3MaxA I3CodeB I3ParamB I3MinB I3MaxB I3CodeC I3ParamC I3MinC I3MaxC I3CodeD I3ParamD I3MinD I3MaxD I3CodeE I3ParamE I3MinE I3MaxE Item4 Item4 Suffix Item4 Rarity Item4 Add Item4 Lvlreq Item4 cost mult Item4 cost add I4Code1 I4Param1 I4Min1 I4Max1 I4Code2 I4Param2 I4Min2 I4Max2 I4CodeA I4ParamA I4MinA I4MaxA I4CodeB I4ParamB I4MinB I4MaxB I4CodeC I4ParamC I4MinC I4MaxC I4CodeD I4ParamD I4MinD I4MaxD I4CodeE I4ParamE I4MinE I4MaxE Item5 Item5 Suffix Item5 Rarity Item5 Add Item5 Lvlreq Item5 cost mult Item5 cost add I5Code1 I5Param1 I5Min1 I5Max1 I5Code2 I5Param2 I5Min2 I5Max2 I5CodeA I5ParamA I5MinA I5MaxA I5CodeB I5ParamB I5MinB I5MaxB I5CodeC I5ParamC I5MinC I5MaxC I5CodeD I5ParamD I5MinD I5MaxD I5CodeE I5ParamE I5MinE I5MaxE Item6 Item6 Suffix Item6 Rarity Item6 Add Item6 Lvlreq Item6 cost add I6Code1 I6Param1 I6Min1 I6Max1 I6Code2 I6Param2 I6Min2 I6Max2 I6CodeA I6ParamA I6MinA I6MaxA I6CodeB I6ParamB I6MinB I6MaxB I6CodeC I6ParamC I6MinC I6MaxC I6CodeD I6ParamD I6MinD I6MaxD I6CodeE I6ParamE I6MinE I6MaxE PCode2 PParam2 PMin2 PMax2 PCode3 PParam3 PMin3 PMax3 PCode4 PParam4 PMin4 PMax4 PCode5 PParam5 PMin5 PMax5 FCode1 FParam1 FMin1 FMax1 FCode2 FParam2 FMin2 FMax2 FCode3 FParam3 FMin3 FMax3 FCode4 FParam4 FMin4 FMax4 FCode5 FParam5 FMin5 FMax5 FCode6 FParam6 FMin6 FMax6
|
||||
Civerb's Vestments 0 13 3 1 13 lrg Civerb's Ward 7 1 9 5 2500 ac 0 15 15 block 0 15 15 mana 0 21 22 res-pois 0 25 26 amu Civerb's Icon 7 2 9 5 2500 regen-mana 0 40 40 regen 0 4 4 res-cold 0 25 25 ac 0 25 25 gsc Civerb's Cudgel 7 0 9 5 2500 att 0 75 75 dmg-max 0 17 23 dmg/lvl 8 res-fire 0 15 15 str 0 15 15 dmg-undead 0 200 200 res-ltng 0 25 25
|
||||
Hsarus' Defense 0 4 3 1 8 mbt Hsarus' Iron Heel 7 2 3 5 2500 res-fire 0 25 25 move2 0 20 20 att/lvl 20 buc Hsarus' Iron Fist 7 2 3 5 2500 red-dmg 0 2 2 str 0 10 10 ac/lvl 20 mbl Hsarus' Iron Stay 7 2 3 5 2500 res-cold 0 20 20 hp 0 20 20 ac/lvl 20 thorns 5 5 dmg-max 0 5 5 nofreeze 0 1 1 res-ltng 0 25 25
|
||||
Cleglaw's Brace 0 6 3 1 7 lsd Cleglaw's Tooth 7 2 4 5 2500 att% 0 30 30 deadly 0 50 50 dmg/lvl 10 sml Cleglaw's Claw 7 2 4 5 2500 ac 0 17 17 res-pois-len 0 75 75 res-all 0 15 15 mgl Cleglaw's Pincers 7 2 4 5 2500 knock 0 1 1 slow 0 25 25 att/lvl 20 ac 50 50 ac 0 50 50 manasteal 0 6 6 crush 0 35 35 swing2 20 20
|
||||
Iratha's Finery 0 21 4 1 2 amu Iratha's Collar 7 2 15 5 2500 res-pois 0 30 30 res-pois-len 0 75 75 res-all 15 15 tgl Iratha's Cuff 7 2 15 5 2500 res-cold 0 30 30 half-freeze 0 1 1 swing2 0 20 20 crn Iratha's Coil 7 2 15 5 2500 res-fire 0 30 30 res-ltng 0 30 30 ac/lvl 16 tbl Iratha's Cord 7 2 15 5 2500 ac 0 25 25 dmg-min 0 5 5 dex 10 10 ac 50 50 move2 20 20 res-all 0 20 20 res-fire-max 0 10 10 res-cold-max 0 10 10 res-ltng-max 0 10 10 res-pois-max 0 10 10 dex 0 15 15
|
||||
Isenhart's Armory 0 11 4 1 15 bsd Isenhart's Lightbrand 7 2 8 5 2500 dmg-min 0 10 10 swing2 0 20 20 att/lvl 10 gts Isenhart's Parry 7 2 8 5 2500 ac 0 40 40 light-thorns 0 4 4 res-all 0 8 8 brs Isenhart's Case 7 2 8 5 2500 ac 0 40 40 red-mag 0 2 2 ac/lvl 16 fhl Isenhart's Horns 7 2 8 5 2500 dex 0 6 6 red-dmg 0 2 2 res-all 8 8 str 10 10 dex 10 10 lifesteal 0 5 5 res-all 0 10 10 att% 0 35 35 block 30 30 move2 20 20
|
||||
Vidala's Rig 0 19 4 1 4 lbb Vidala's Barb 7 2 14 5 2500 ltng-min 0 1 1 ltng-max 0 20 20 att/lvl 16 tbt Vidala's Fetlock 7 2 14 5 2500 stam 0 150 150 move3 0 30 30 res-all 0 8 8 lea Vidala's Ambush 7 2 14 5 2500 ac 0 50 50 dex 0 11 11 res-fire 24 24 ac/lvl 20 amu Vidala's Snare 7 2 14 5 2500 hp 0 15 15 res-cold 0 20 20 mag% 50 50 att 75 75 dex 15 15 dmg-cold 50 15 20 freeze 32 25 25 pierce 0 50 50 str 10 10
|
||||
Milabrega's Regalia 0 23 4 1 5 kit Milabrega's Orb 7 2 17 5 2500 mag% 0 20 20 ac 0 25 25 hp 50 50 ac% 50 50 wsp Milabrega's Rod 7 0 17 5 2500 pal 0 1 1 dmg% 0 50 50 light 0 2 2 crn Milabrega's Diadem 7 2 17 5 2500 hp 0 15 15 mana 0 15 15 res-cold 40 40 aar Milabrega's Robe 7 2 17 5 2500 thorns 0 3 3 red-dmg 0 2 2 ac% 100 100 att 75 75 att 125 125 lifesteal 0 8 8 pal 0 2 2 manasteal 0 10 10 res-pois 0 15 15
|
||||
Cathan's Traps 0 15 5 1 11 bst Cathan's Rule 7 2 11 5 2500 fireskill 0 1 1 fire-max 0 10 10 mana 50 50 res-all 10 10 chn Cathan's Mesh 7 2 11 5 2500 ac 0 15 15 ease 0 -50 -50 thorns 0 5 5 res-fire 30 30 msk Cathan's Visage 7 2 11 5 2500 mana 0 20 20 res-cold 0 25 25 ac/lvl 16 amu Cathan's Sigil 7 2 11 5 2500 balance1 0 10 10 light-thorns 0 5 5 att 50 50 mag% 25 25 rin Cathan's Seal 7 2 11 5 2500 lifesteal 0 6 6 red-dmg 0 2 2 str 10 10 dmg-fire 15 20 res-ltng 25 25 att 0 60 60 red-mag 0 3 3 res-all 0 25 25 cast1 0 10 10 mana 0 20 20
|
||||
Tancred's Battlegear 0 27 5 1 16 mpi Tancred's Crowbill 7 2 20 5 2500 att 0 75 75 dmg% 0 80 80 mana 20 20 swing2 20 20 ful Tancred's Spine 7 2 20 5 2500 hp 0 40 40 str 0 15 15 ac/lvl 16 lbt Tancred's Hobnails 7 2 20 5 2500 regen-stam 0 25 25 dex 0 10 10 move3 30 30 str 10 10 amu Tancred's Weird 7 2 20 5 2500 red-dmg 0 2 2 red-mag 0 1 1 mag% 78 78 att 60 60 bhm Tancred's Skull 7 2 20 5 2500 dmg% 0 10 10 att 0 40 40 res-all 10 10 dmg-ltng 15 15 lifesteal 5 5 gold% 0 75 75 res-all 0 10 10 slow 0 35 35 manasteal 0 5 5
|
||||
Sigon's Complete Steel 0 9 6 1 0 ghm Sigon's Visor 7 2 6 5 2500 mana 0 30 30 ac 0 25 25 att/lvl 16 gth Sigon's Shelter 7 2 6 5 2500 ac% 0 25 25 res-ltng 0 30 30 thorns 0 20 20 hgl Sigon's Gage 7 2 6 5 2500 str 0 10 10 att 0 20 20 swing3 30 30 hbt Sigon's Sabot 7 2 6 5 2500 move2 0 20 20 res-cold 0 40 40 att 50 50 mag% 50 50 hbl Sigon's Wrap 7 2 6 5 2500 res-fire 0 20 20 hp 0 20 20 ac/lvl 16 tow Sigon's Guard 7 2 6 60000 allskills 0 1 1 block 0 20 20 lifesteal 10 10 ac 100 100 res-fire 0 12 12 thorns 0 12 12 red-dmg 0 7 7 fire-max 0 24 24 mana 20 20
|
||||
Infernal Tools 0 7 3 1 13 cap Infernal Cranium 7 2 5 5 2500 res-all 0 10 10 dmg-to-mana 0 20 20 ac/lvl 16 gwn Infernal Torch 7 2 5 5 2500 dmg-min 0 8 8 nec 0 1 1 att/lvl 20 tbl Infernal Sign 7 2 5 5 2500 ac 0 25 25 hp 0 20 20 res-pois 25 25 half-freeze 1 1 dmg-pois 80 25 25 mana 10 10 att% 0 20 20 nec 0 1 1 openwounds 0 20 20 manasteal 6 6
|
||||
Berserker's Garb 0 5 3 1 8 hlm Berserker's Headgear 7 2 3 5 2500 ac 0 15 15 res-fire 0 25 25 att/lvl 16 spl Berserker's Hauberk 7 2 3 5 2500 red-mag 0 2 2 bar 0 1 1 ac/lvl 24 2ax Berserker's Hatchet 7 2 3 5 2500 att% 0 30 30 manasteal 0 5 5 dmg% 50 50 hp 50 50 res-pois-len 0 75 75 pois-min 0 16 16 pois-max 0 32 32 pois-len 0 75 75 ac 75 75
|
||||
Death's Disguise 0 8 3 1 7 lgl Death's Hand 7 2 6 5 2500 res-pois 0 50 50 res-pois-len 0 75 75 swing3 30 30 lbl Death's Guard 7 2 6 5 2500 ac 0 20 20 nofreeze 0 1 1 res-all 0 15 15 wsd Death's Touch 7 2 6 5 2500 dmg% 0 25 25 lifesteal 0 4 4 dmg-cold 75 25 75 lifesteal 8 8 att% 0 40 40 dmg-min 0 10 10 res-all 0 25 25
|
||||
Angelical Raiment 0 17 4 1 1 sbr Angelic Sickle 7 2 12 5 2500 att 0 75 75 dmg-undead 0 250 250 dmg% 75 75 swing3 30 30 rng Angelic Mantle 7 2 12 5 2500 red-dmg 0 3 3 ac% 0 40 40 ac 0 150 150 res-fire 50 50 rin Angelic Halo 3 2 12 5 2500 regen 0 6 6 hp 0 20 20 att/lvl 24 mag% 50 50 amu Angelic Wings 7 2 12 5 2500 light 0 3 3 dmg-to-mana 0 20 20 hp 75 75 allskills 1 1 dex 10 10 mana 50 50 res-all 0 25 25 half-freeze 0 1 1 mag% 0 40 40 regen-mana 8 8
|
||||
Arctic Gear 0 3 4 1 15 swb Arctic Horn 7 2 2 5 2500 att% 0 20 20 dmg% 0 50 50 att/lvl 16 dmg-cold 75 20 30 qui Arctic Furs 7 2 2 5 2500 ac% 0 275 325 res-all 0 10 10 ac/lvl 24 res-cold 15 15 vbl Arctic Binding 7 2 2 5 2500 res-cold 0 40 40 ac 0 30 30 mag% 40 40 res-cold 10 10 tgl Arctic Mitts 7 2 3 5 2500 hp 0 20 20 swing1 0 10 10 att 50 50 dex 10 10 str 5 5 hp 50 50 cold-min 0 6 6 cold-max 0 14 14 cold-len 0 100 100 nofreeze 0 1 1
|
||||
Arcanna's Tricks 0 20 4 1 4 amu Arcanna's Sign 1 2 15 5 2500 mana 0 15 15 regen-mana 0 20 20 mag% 50 50 res-fire 20 20 wst Arcanna's Deathwand 7 2 15 5 2500 sor 0 1 1 deadly 0 25 25 mana 0 50 50 regen-mana 5 5 skp Arcanna's Head 7 2 15 5 2500 regen 0 4 4 thorns 0 2 2 ac/lvl 24 res-ltng 15 15 ltp Arcanna's Flesh 7 2 15 5 2500 light 0 2 2 red-dmg 0 3 3 ac 100 100 enr 10 10 mana 25 25 hp 50 50 cast3 0 20 20 manasteal 0 5 5 mana 0 25 25
|
||||
Expansion
|
||||
Natalya's Odium 100 22 4 1 3 xh9 Natalya's Totem 7 0 59 5 5000 ac 0 135 135 dex 0 25 25 str 0 10 10 res-all 0 10 10 red-mag 0 3 3 7qr Natalya's Mark 7 0 79 5 5000 swing3 0 40 40 dmg% 0 200 200 ignore-ac 0 1 1 dmg-cold 100 50 50 dmg-fire 0 12 17 dmg-undead 200 200 dmg-demon 200 200 ucl Natalya's Shadow 7 0 73 5 5000 ac 0 150 150 hp/lvl 8 skilltab 19 2 2 res-pois-len 75 75 res-pois 25 25 xmb Natalya's Soul 7 0 25 5 5000 ac 0 75 75 move3 0 40 40 regen-stam/lvl 2 dur 50 50 res-cold 15 15 res-ltng 15 15 red-mag 0 15 15 ac 0 200 200 res-pois 20 20 res-all 50 50 allskills 3 3 ac 150 150 lifesteal 16 16 manasteal 16 16
|
||||
Aldur's Watchtower 100 29 4 1 19 dr8 Aldur's Stony Gaze 7 0 36 5 5000 ac 90 90 regen-mana 17 17 light 0 5 5 balance3 24 24 res-cold 25 25 uul Aldur's Deception 7 0 76 5 5000 ac 300 300 skilltab 16 1 1 str 20 20 dex 15 15 res-ltng 0 30 30 ease -50 -50 skilltab 17 1 1 9mt Aldur's Gauntlet 7 0 42 5 5000 dmg% 200 200 dmg-ltng 50 75 lifesteal 10 10 swing3 30 30 dmg-demon 200 200 manasteal 5 5 xtb Aldur's Advance 7 0 45 5 5000 indestruct 1 1 regen-stam 0 32 32 hp 50 50 dmg-to-mana 10 10 move3 40 40 stam 180 180 att 100 100 mag% 50 50 lifesteal 10 10 res-all 50 50 allskills 3 3 ac 150 150 manasteal 10 10 mana 150 150
|
||||
Immortal King 100 37 6 1 2 ba5 Immortal King's Will 7 47 5 5000 ac 125 125 gold% 37 37 skilltab 14 2 2 light 4 4 mag% 25 40 uar Immortal King's Soul Cage 7 76 5 5000 ac 400 400 gethit-skill 52 5 5 skilltab 12 2 2 res-pois 50 50 zhb Immortal King's Detail 7 0 29 5 5000 ac 36 36 res-fire 28 28 res-ltng 31 31 str 25 25 xhg Immortal King's Forge 7 30 5 5000 ac 65 65 str 20 20 dex 20 20 gethit-skill 38 12 4 xhb Immortal King's Pillar 7 31 5 5000 ac 75 75 move3 40 40 att 110 110 hp 44 44 7m7 Immortal King's Stone Crusher 7 76 75000 indestruct 1 1 swing3 40 40 dmg-demon 200 200 dmg-undead 200 200 crush 35 40 dmg% 200 200 att 50 50 att 75 75 att 125 125 att 200 200 res-all 50 50 allskills 3 3 hp 150 150 red-mag 10 10
|
||||
Tal Rasha's Wrappings 100 26 5 1 18 zmb Tal Rasha's Fire-Spun Cloth 7 53 5 5000 ease -20 -20 mana 30 30 dex 20 20 dmg-to-mana 37 37 mag% 10 15 amu Tal Rasha's Adjudication 1 67 5 5000 res-ltng 33 33 sor 2 2 hp 50 50 dmg-ltng 3 32 mana 42 42 oba Tal Rasha's Lidless Eye 7 65 5 5000 hp 57 57 mana 77 77 enr 10 10 cast3 20 20 skill 65 1 1 skill 61 2 2 skill 63 1 1 uth Tal Rasha's Howling Wind 7 71 5 5000 ease -60 -60 red-mag 15 15 mag% 88 88 res-cold 40 40 res-fire 40 40 res-ltng 40 40 ac 400 400 xsk Tal Rasha's Horadric Crest 7 66 5 5000 mana 30 30 hp 60 60 ac 45 45 res-all 15 15 lifesteal 10 10 manasteal 10 10 regen 10 10 mag% 65 65 balance3 24 24 res-all 50 50 allskills 3 3 ac 150 150 hp 150 150 ac-miss 50 50
|
||||
Griswold's Legacy 100 44 4 1 16 urn Griswold's Valor 7 69 5 5000 ac% 50 75 abs-cold/lvl 2 2 sock 2 ease -40 -40 mag% 20 30 res-all 5 5 xar Griswold's Heart 7 45 5 5000 ac 500 500 skilltab 11 2 2 sock 3 str 20 20 ease -40 -40 7ws Griswolds's Redemption 7 53 5 5000 dmg% 175 175 swing3 40 40 dmg-undead 200 200 ease -20 -20 sock 3 paf Griswold's Honor 7 68 5 5000 ac 108 108 sock 3 block3 65 65 str 20 20 dex 30 30 res-all 50 50 allskills 3 3 att 200 200 hp 150 150
|
||||
Trang-Oul's Avatar 100 32 5 1 14 uh9 Trang-Oul's Guise 7 65 5 5000 ac 80 100 balance3 24 24 thorns 20 20 mana 150 150 regen 5 5 xul Trang-Oul's Scales 7 49 5 5000 ease -40 -40 ac-miss 100 100 res-pois 40 40 skilltab 8 2 2 move3 40 40 ac% 150 150 ne9 Trang-Oul's Wing 7 54 5 5000 ac 125 125 str 25 25 dex 15 15 res-fire 38 45 block 30 30 res-pois 40 40 skilltab 7 2 2 xmg Trang-Oul's Claws 7 45 5 5000 ac 30 30 cast3 20 20 res-cold 30 30 skilltab 6 2 2 utc Trang-Oul's Girth 7 47 5 5000 ac 75 100 stam 30 30 regen 5 5 hp 66 66 nofreeze 1 1 ease -40 -40 mana 25 50 regen-mana 15 15 regen-mana 15 15 regen-mana 15 15 res-all 50 50 allskills 3 3 mana 100 100 ac 200 200 regen 5 5 regen-mana 15 15
|
||||
M'avina's Battle Hymn 100 21 5 1 0 ci3 M'avina's True Sight 7 59 5 5000 ac 150 150 regen 10 10 swing2 30 30 mana 25 25 uld M'avina's Embrace 7 70 5 5000 gethit-skill 55 10 3 ease -30 -30 red-mag 5 12 skilltab 1 2 2 ac/lvl 32 ac 350 350 xtg M'avina's Icy Clutch 7 32 5 5000 ac 45 50 dmg-cold 150 6 18 half-freeze 1 1 gold% 56 56 str 10 10 dex 15 15 zvb M'avina's Tenet 7 45 5 5000 ac 50 50 move3 40 40 manasteal 10 15 light 5 5 amc M'avina's Caster 7 70 5 5000 dmg% 188 188 swing3 40 40 gethit-skill 48 10 3 att 50 50 str 20 20 dex 30 30 res-all 50 50 allskills 3 3 ac 100 100 att 100 100 mag% 100 100
|
||||
The Disciple 100 39 5 1 4 amu Telling of Beads 1 30 5 5000 res-pois 35 50 allskills 1 1 res-cold 18 18 thorns 8 10 ulg Laying of Hands 7 63 5 5000 ac 25 25 swing2 20 20 abs-fire% 50 50 dmg-demon 350 350 hit-skill 101 10 3 xlb Rite of Passage 7 29 5 5000 ac 25 25 move3 30 30 half-freeze 1 1 stam 15 25 uui Spiritual Custodian 7 43 5 5000 ac 305 415 res-fire 24 24 gethit-skill 48 25 3 dmg-pois 50 125 175 umc Credendum 7 65 5 5000 ac 50 50 str 10 10 dex 10 10 res-all 15 15 ac 150 150 dmg-pois 75 75 75 str 10 10 dex 10 10 res-all 50 50 allskills 2 2 mana 100 100
|
||||
Heaven's Brethren 100 55 4 0 7ma Dangoon's Teaching 7 68 5 5000 dmg/lvl 12 swing3 40 40 hit-skill 44 10 3 dmg-fire 20 30 uts Heaven's Taebaek 7 81 5 5000 ac 50 50 mana 0 100 100 res-ltng 30 30 thorns 30 30 indestruct 1 1 block 25 25 block3 30 30 xrs Haemosu's Adament 7 44 5 5000 ac 500 500 ac-miss 35 35 hp 75 75 ac-hth 40 40 ease -20 -20 uhm Ondal's Almighty 7 69 5 5000 ac 50 50 ease -40 -40 hit-skill 72 10 3 str 10 10 dex 15 15 balance3 24 24 regen-stam 50 50 regen 20 20 dmg-fire 30 30 res-all 50 50 allskills 2 2 nofreeze 1 1 light 5 5
|
||||
Orphan's Call 100 41 4 1 1 xhm Guillaume's Face 7 34 5 5000 ac% 120 120 balance3 30 30 crush 35 35 deadly 15 15 str 15 15 ztb Wilhelm's Pride 7 42 5 5000 ac% 75 75 manasteal 5 5 res-cold 10 10 lifesteal 5 5 xvg Magnus' Skin 7 37 5 5000 ac% 50 50 res-fire 15 15 swing2 20 20 light 3 3 att 100 100 xml Wihtstan's Guard 7 29 5 5000 ac% 175 175 block3 40 40 block 55 55 half-freeze 1 1 light 5 5 hp 35 35 thorns 5 5 ac 100 100 hp 50 50 dex 10 10 str 20 20 ac 100 100 res-all 15 15 mag% 0 80 80
|
||||
Hwanin's Majesty 100 28 4 1 xrn Hwanin's Splendor 7 45 5 5000 regen 20 20 red-mag 10 10 res-cold 37 37 ac% 100 100 xcl Hwanin's Refuge 7 30 5 5000 ac 200 200 res-pois 27 27 hp 100 100 gethit-skill 42 10 3 mbl Hwanin's Seal 7 0 35 5 5000 dmg-ltng 3 33 noheal 1 1 ac/lvl 12 dmg-to-mana 12 12 9vo Hwanin's Justice 7 28 5 5000 att 330 330 indestruct 1 1 hit-skill 45 10 3 swing3 40 40 dmg% 200 200 dmg-ltng 5 25 ac 100 100 ac 200 200 allskills 2 2 lifesteal 20 20 move3 30 30 res-all 30 30
|
||||
Sazabi's Grand Tribute 100 34 3 1 5 7ls Sazabi's Cobalt Redeemer 7 73 5 5000 dmg% 150 150 dmg-cold 50 25 35 swing3 40 40 dmg-demon 318 318 indestruct 1 1 dex 15 15 str 5 5 upl Sazabi's Ghost Liberator 7 67 5 5000 ac 400 400 balance3 30 30 str 25 25 att-demon 300 300 hp 50 75 xhl Sazabi's Mental Sheath 7 43 5 5000 ac 100 100 allskills 1 1 res-fire 15 20 res-ltng 15 20 move3 40 40 res-all 30 30 lifesteal 15 15 hp% 27 27
|
||||
Bul-Kathos' Children 100 50 2 1 11 7gd Bul-Kathos' Sacred Charge 7 61 5 5000 crush 35 35 res-all 20 20 swing2 20 20 knock 1 1 dmg% 200 200 7wd Bul-Kathos' Tribal Guardian 7 54 5 5000 res-fire 50 50 dmg-pois 50 255 255 swing2 20 20 str 20 20 dmg% 200 200 dmg-fire 20 20 allskills 2 2 att 200 200 ac 25 25 dmg-undead 200 200 dmg-demon 200 200
|
||||
Cow King's Leathers 100 20 3 0 xap Cow King's Horns 7 25 5 5000 ac 75 75 half-freeze 1 1 dmg-to-mana 35 35 thorns 10 10 stu Cow King's Hide 7 18 5 5000 res-all 18 18 ac% 60 60 hp 30 30 gethit-skill 53 18 5 vbt Cow King's Hoofs 7 13 5 5000 ac 25 35 move3 30 30 mag% 25 25 dex 20 20 dmg-fire 25 35 res-pois 25 25 stam 100 100 str 20 20 gold% 100 100 mag% 100 100 gethit-skill 42 25 5 swing3 30 30
|
||||
Naj's Ancient Set 100 43 3 0 6cs Naj's Puzzler 7 0 78 5 5000 enr 0 35 35 dmg% 0 150 150 swing3 30 30 cast3 0 30 30 dmg-ltng 6 45 mana 70 70 allskills 1 1 ult Naj's Light Plate 7 0 71 5 5000 ease -60 -60 hp 65 65 res-all 25 25 dmg-to-mana 45 45 allskills 1 1 ac 300 300 ci0 Naj's Circlet 7 28 5 5000 ac 75 75 dmg-fire 25 35 Light 5 5 str 15 15 gethit-skill 53 12 5 ac 175 175 allskills 1 1 regen 10 10 dex 15 15 res-all 50 50 str 20 20 mana 100 100
|
||||
McAuley's Folly 100 20 4 1 17 cap McAuley's Paragon 3 0 25 5 5000 mag% 35 35 thorns 8 8 ac/lvl 8 vbt McAuley's Riprap 7 0 20 5 5000 move3 40 40 att 100 100 str 5 5 dex 10 10 vgl McAuley's Taboo 7 28 5 5000 ac 20 25 swing2 20 20 hp 40 40 dmg-pois 75 30 36 bwn McAuley's Superstition 7 25 5 5000 dmg% 2 75 75 mana 25 25 manasteal 8 8 cast3 20 20 dmg-cold 50 25 75 ac 50 50 att 75 75 allskills 1 1 mag% 50 50 mana 50 50 lifesteal 4 4
|
||||
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
|
||||
|
69
txt/Sets.txt
69
txt/Sets.txt
@ -15,7 +15,7 @@ Death's Disguise Death's Disguise 0 8 lifesteal 8 8
|
||||
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
|
||||
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
|
||||
@ -32,3 +32,70 @@ Bul-Kathos' Children Bul-Kathos' Children 100 50
|
||||
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
|
||||
|
@ -14,7 +14,7 @@ Booster Resist Poison Boost "+75% to resist poison, and poison duration = 0" 11
|
||||
Booster Skill Boost +2 to all skill levels 12 2 0 2400 5 2 blah blah 4 1
|
||||
Booster Recharge Boost +400% mana recharge rate 13 400 0 2400 5 2 blah blah 4 1
|
||||
Booster Stamina Boost Unlimited stamina 14 200 0 4800 5 3 blah blah 4 1
|
||||
Booster Experience Boost 50% more experience per kill 15 0 0 3600 0 3 blah blah 4 1
|
||||
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
|
||||
|
@ -9,27 +9,27 @@ magic arrow 1 1 2 1 0 0 skillname6 skillsd6 skillld6 skillan6 StrSkill3 5
|
||||
fire arrow 1 1 3 1 0 2 skillname7 skillsd7 skillxld7 skillan7 StrSkill3 5 1 1 11 10 9 8 66 Convphy2magalt 3+(lvl-1)*2 40 Sksyn skillname7 2 63 skillname16 Firedplev par8 0
|
||||
inner sight 2 1 1 2 0 4 skillname8 skillsd8 skillld8 skillan8 StrSkill3 1 19 StrSkill18 ln56 5 StrSkill25 -edmn 12 StrSkill20 ln34 0
|
||||
critical strike 2 1 3 2 0 6 skillname9 skillsd9 skillld9 skillan9 StrSkill3 7 StrSkill24 dm12 0
|
||||
jab 3 1 1 3 0 8 skillname10 skillsd10 skillld10 skillan10 StrSkill3 7 ln34 1 1 2 StrSkill4 StrSkill23 ln34 2 StrSkill22 StrSkill23 toht 25 StrSkill61 0
|
||||
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)" 73 WeapDamsk 3 4 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 1 1 3 StrSkill65 StrSkill23 par6-dm34 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 ln12 0
|
||||
lightning bolt 3 3 3 3 0 28 skillname20 skillsd20 skillld20 skillan20 StrSkill3 21 1 11 10 9 8 66 Convphy2magalt 100 73 WeapDamsk 3 4 40 Sksyn skillname20 2 63 skillname14 Ltngdplev par8 63 skillname24 Ltngdplev par8 63 skillname34 Ltngdplev par8 63 skillname35 Ltngdplev par8 0
|
||||
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 1 2 StrSkill4 StrSkill23 ln34 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 1 1 2 StrSkill4 StrSkill23 ln12 3 StrSkill86 StrSkill87 "min(lvl+par3,par4)" 73 WeapDamsk 3 4 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 1 1 2 StrSkill4 StrSkill23 ln34 2 StrSkill30 StrSkill23 toht 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
|
||||
@ -37,7 +37,7 @@ lightning strike 3 6 2 3 0 56 skillname34 skillsd34 skillld34 skillan34 StrSkill
|
||||
lightning fury 3 6 3 3 0 58 skillname35 skillsd35 skillld35 skillan35 StrSkill3 22 1 10 3 StrSkill72 StrSkill27 ln12 40 Sksyn skillname35 2 63 skillname14 Ltngdplev par8 63 skillname20 Ltngdplev par8 63 skillname24 Ltngdplev par8 63 skillname34 Ltngdplev par8 0
|
||||
fire bolt 1 1 2 1 0 0 skillname36 skillsd36 skillld36 skillan36 StrSkill3 5 11 10 9 8 1 40 Sksyn skillname36 2 63 skillname47 Firedplev par8 63 skillname56 Firedplev par8 0
|
||||
warmth 1 1 3 1 0 2 skillname37 skillsd37 skillld37 skillan37 StrSkill3 7 StrSkill23 ln12 0
|
||||
charged bolt 2 1 2 2 0 4 skillname38 skillsd38 skillld38 skillan38 StrSkill3 5 1 7 StrSkill27 "min(24,ln12)" 10 40 Sksyn skillname38 2 63 skillname49 Ltngdplev par8 0
|
||||
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
|
||||
@ -45,31 +45,31 @@ static field 2 2 1 2 0 12 skillname42 skillsd42 skillxld42 skillan42 StrSkill3
|
||||
telekinesis 2 2 3 2 0 14 skillname43 skillsd43 skillld43 skillan43 StrSkill3 5 1 10 0
|
||||
frost nova 3 2 1 3 0 16 skillname44 skillsd44 skillld44 skillan44 StrSkill3 5 1 11 10 40 Sksyn skillname44 2 63 skillname59 Colddplev par8 63 skillname64 Colddplev par8 0
|
||||
ice blast 3 2 2 3 0 18 skillname45 skillsd45 skillld45 skillan45 StrSkill3 5 1 12 StrSkill62 edln 10 40 Sksyn skillname45 2 63 skillname39 Colddplev par8 63 skillname55 FrezLenplev par7 63 skillname59 Colddplev par8 63 skillname64 Colddplev par8 0
|
||||
blaze 1 3 1 1 0 20 skillname46 skillsd46 skillld46 skillan46 StrSkill3 9 blaze 1 27 23 StrSkill82 0
|
||||
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 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 0
|
||||
enchant 1 4 3 1 0 32 skillname52 skillsd52 skillld52 skillan52 StrSkill3 1 2 StrSkill30 StrSkill23 toht 10 12 StrSkill20 ln12 40 Sksyn skillname52 2 63 skillname37 Firedplev par8 0
|
||||
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 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 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:(2+lvl/3) 13 (lvl < 4) ? 0 : (par2 * (lvl - 3)) skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par1) 5 StrSkill21 5+(lvl+skill('Skeleton Mastery'.lvl))*par5 5 StrSkill22 5+(lvl+skill('Skeleton Mastery'.lvl))*par4 2 StrSkill4 StrSkill23 ((lvl < 4) ? 0 : ((lvl-3)*par3)) 34 40 Sksyn skillname70 2 18 skillname69 18 skillname89 0
|
||||
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
|
||||
@ -79,7 +79,7 @@ iron maiden 1 3 2 1 0 20 skillname76 skillsd76 skillld76 skillan76 StrSkill3
|
||||
terror 1 3 3 1 0 22 skillname77 skillsd77 skillld77 skillan77 StrSkill3 1 12 StrSkill20 ln34 19 StrSkill18 ln12 0
|
||||
bone wall 2 3 3 2 0 24 skillname78 skillsd78 skillld78 skillan78 StrSkill3 1 12 StrSkill20 par2 13 (par1 * (lvl-1)) + ((skill('Bone Armor'.blvl)+skill('Bone Prison'.blvl))*par8) 40 Sksyn skillname78 2 63 skillname68 Hpplev par8 63 skillname88 Hpplev par8 0
|
||||
golem mastery 3 3 1 3 0 26 skillname79 skillsd79 skillld79 skillan79 StrSkill3 2 StrSkill89 StrSkill23 dm34 4 StrSkill30 ln56 2 StrSkill42 StrSkill23 lvl*par1 0
|
||||
raise skeletal mage 3 3 3 3 0 28 skillname80 skillsd80 skillld80 skillan80 StrSkill3 1 36 StrSkill43a StrSkill44a (lvl < 4) ?lvl:(2+lvl/3) 5 StrSkill21 (lvl+skill('Skeleton Mastery'.lvl))*par5 13 skill('Skeleton Mastery'.lvl) * skill('Skeleton Mastery'.par1) 40 Sksyn skillname80 2 18 skillname69 18 skillname89 0
|
||||
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
|
||||
@ -124,7 +124,7 @@ fist of the heavens 1 6 2 1 0 50 skillname121 skillsd121 skillld121 skillan121 S
|
||||
fanaticism 2 6 1 2 0 52 skillname122 skillxsd122 skillxld122 skillan122 StrSkill3 1 2 StrSkill22 StrSkill23 toht 2 StrSkill106 StrSkill23 dm34 2 FanYDam StrSkill23 ln56 2 PartDam StrSkill23 ln56/2 19 StrSkill18 ln12 0
|
||||
conviction 2 6 3 2 0 56 skillname123 skillxsd123 skillld123 skillan123 StrSkill3 3 StrSkill90 StrSkill23 "-min(ln34,150)" 2 StrSkill21 StrSkill23 -dm56 19 StrSkill18 ln12 0
|
||||
redemption 3 6 2 3 0 54 skillname124 skillsd124 skillxld124 skillan124 StrSkill3 3 StrSkill107 StrSkill108 ln56 3 StrSkill109 StrSkill23 dm34 19 StrSkill18 ln12 0
|
||||
salvation 3 6 3 3 0 58 skillname125 skillsd125 skillld125 skillan125 StrSkill3 2 StrSkill54 StrSkill23 dm34 19 StrSkill18 ln12 0
|
||||
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
|
||||
@ -144,13 +144,13 @@ increased stamina 2 3 1 2 0 30 skillname141 skillsd141 skillld141 skillan141 Str
|
||||
find item 3 3 3 3 0 32 skillname142 skillsd142 skillld142 skillan142 StrSkill3 1 7 StrSkill24 dm12 0
|
||||
leap attack 1 4 1 1 0 34 skillname143 skillsd143 skillld143 skillan143 StrSkill3 7 clc1 2 1 2 StrSkill22 StrSkill23 toht 2 StrSkill4 StrSkill23 clc1 40 Sksyn skillname143 2 63 skillname132 Damplev par8 0
|
||||
concentrate 1 4 2 1 0 36 skillname144 skillsd144 skillld144 skillan144 StrSkill3 7 clc1 1 1 2 StrSkill4 StrSkill23 clc1 2 StrSkill22 StrSkill23 toht 2 StrSkill31 StrSkill23 ln34 2 StrSkill39 StrSkill23 clc4 40 Sksyn skillname144 2 63 skillname126 Damplev par8 63 skillname149 Damplev par7 63 skillname152 Magdplev 1 0
|
||||
iron skin 2 4 3 2 0 38 skillname145 skillsd145 skillld145 skillan145 StrSkill3 6 StrSkill23 ln12 0
|
||||
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 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
|
||||
@ -166,7 +166,7 @@ shape shifting 2 1 2 2 0 52 Skillname225 Skillsd225 Skillld225 Skillan225 StrSki
|
||||
firestorm 3 1 1 3 0 32 Skillname226 Skillsd226 Skillld226 Skillan226 StrSkill3 9 27 1 40 Sksyn Skillname226 2 63 Skillname230 Firedplev par8 63 Skillname235 Firedplev par8 0
|
||||
oak sage 1 2 1 1 0 16 Skillname227 Skillsd227 Skillld227 Skillan227 StrSkill3 1 19 StrSkill18 ln78 2 StrSkill42 StrSkill23 ln12 13 (lvl-1)*par1 0
|
||||
summon spirit wolf 1 2 2 1 0 6 Skillname228 Skillsd228 Skillld228 Skillan228 StrSkill3 2 StrSkill21 StrSkill23 ln56 2 StrSkill22 StrSkill23 ln12 5 ESkillWolves "min(lvl,par3)" 9 skill('Summon Grizzly'.ln12) 13 (skill('summon fenris'.lvl) > 0) ? skill('summon fenris'.ln12) : 0 1 40 Sksyn Skillname228 2 25 Skillname238 25 Skillname248 0
|
||||
wearbear 2 2 3 2 0 22 Skillname229 Skillsd229 Skillld229 Skillan229 StrSkill3 2 StrSkill21 StrSkill23 ln34 2 StrSkill4 StrSkill23 ln12 12 StrSkill20 1000+skill('shape shifting'.ln12) 2 StrSkill42 StrSkill23 par5 + skill('Shape Shifting'.ln34) 1 40 Sksyn Skillname229 2 18 Skillname225 0
|
||||
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
|
||||
@ -195,27 +195,27 @@ psychic hammer 2 1 3 2 0 22 Skillname254 Skillsd254 Skillld254 Skillan254 StrSki
|
||||
tiger strike 3 1 2 3 0 40 Skillname255 Skillsd255 Skillld255 Skillan255 StrSkill3 5 1 1 2 StrSkill22 StrSkill23 toht 2 Eskillpowerup3 Eskillpuddgmper 3*ln12 2 Eskillpowerup2 Eskillpuddgmper 2*ln12 2 Eskillpowerup1 Eskillpuddgmper ln12 0
|
||||
dragon talon 3 1 3 3 0 42 Skillname256 Skillsd256 Skillld256 Skillan256 StrSkill3 15 5 1 2 StrSkill22 StrSkill23 toht 2 Eskillkickdamage StrSkill23 ln12 36 EskillKickSing EskillKickPlur lvl/6+1 0
|
||||
shock field 1 2 1 1 0 2 Skillname257 Skillsd257 Skillld257 Skillan257 StrSkill3 5 shock field on ground 1 38 StrSkill7 StrSkill34 edmn edmx 23 StrSkill20 5 ESkillSpikes par1+lvl/par2+skill('Fire Trauma'.blvl)/3 40 Sksyn Skillname257 2 71 Skillname252 Missplev3 3 63 Skillname262 Ltngdplev par8 63 Skillname272 Ltngdplev par8 63 Skillname277 Ltngdplev par8 0
|
||||
blade sentinel 1 2 3 1 0 4 Skillname258 Skillsd258 Skillld258 Skillan258 StrSkill3 5 72 WeapDamsk 3 8 9 12 StrSkill20 ln12 1 0
|
||||
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)/4 40 Sksyn Skillname262 2 71 Skillname257 Boltplev3 3 71 Skillname272 Shotplev3 4 63 Skillname252 Ltngdplev par8 63 Skillname272 Ltngdplev par8 63 Skillname277 Ltngdplev par8 0
|
||||
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 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 40 Sksyn Skillname272 2 63 Skillname257 Ltngdplev par8 63 Skillname262 Ltngdplev par8 63 Skillname277 Ltngdplev par8 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 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
|
||||
|
680
txt/Skills.txt
680
txt/Skills.txt
@ -1,321 +1,359 @@
|
||||
skill Id charclass ClassReq Monster Enhanceable AttackRank itemclass1 itemclass2 itemclass3 itemclass4 itemclass5 itemclass6 anim monanim seqnum isaura Durability Shiver UseAttackRate LineOfSight TargetableOnly SearchEnemyXY SearchMonsterNear SelectDead SearchOpenXY TargetPet TargetAlly ItemEffect range AttackNoMana reqlevel reqstr reqdex reqint reqvit reqskill1 reqskill2 reqskill3 State1 State2 State3 Delay SkillPage SkillRow SkillColumn IconCel leftskl manashift mana lvlmana Interrupt InTown Periodic Finishing Passive Param1 Param1 Description Param2 Param2 Description Param3 Param3 Description Param4 Param4 Description Param5 Param5 Description Param6 Param6 Description effect leveleffect InGame Done Open Beta What's left? - code What's Left - art ToHit LevToHit HitShift SrcDam MinDam MaxDam LevDam1 LevDam2 LevDam3 EType EMin EMax ELev1 ELev2 ELev3 ELen ELevLen1 ELevLen2 ELevLen3 caster state cost mult cost add
|
||||
Attack 0 0 0 0 0 xxx xxx xxx xxx xxx xxx attack attack 0 0 0 1 1 0 1 1 0 0 0 0 0 0 both 1 1 0 0 0 0 0 1 2 0 0 0 0 2 0 8 0 0 1 0 0 1 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Normal attacking na 1 1 1 1 nothing ? 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Kick 1 0 0 0 0 xxx xxx xxx xxx xxx xxx kick seq 0 0 0 1 0 0 1 1 0 0 0 0 0 0 h2h 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "hit knocks monster back 1 square, does 1 damage" na 1 1 1 1 nothing ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Throw 2 0 0 0 0 1js 1ss 1jt 1st 1ht 1hs throw seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 0 0 0 6 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? throw a weapon na 1 1 1 1 Done? ? 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Unsummon 3 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 1 0 0 0 0 1 0 0 range 0 1 0 0 0 0 0 1 2 0 0 0 0 4 0 8 0 0 1 1 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? releases a summoned creature from your control na 1 0 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Left Hand Throw 4 0 0 0 0 1js 1ss 1jt 1st xxx xxx sk4 seq 0 0 1 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 0 0 0 12 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? throw a weapon with left hand (otherwise identical) na 1 0 1 1 stuff ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Left Hand Swing 5 0 0 0 0 1js 1ss 1jt 1st ht2 xxx sk3 sk3 0 0 1 1 1 0 1 1 0 0 0 0 0 0 both 0 1 0 0 0 0 0 0 0 0 0 0 0 10 0 8 0 0 1 0 0 0 0 66 percent damage 0 ? 0 ? 0 ? 0 ? 0 ? "swing with left hand, 75% speed (faster), 66% damage" na 1 0 1 1 stuff ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Magic Arrow 6 ama 0 0 1 0 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 1 1 2 0 0 5 12 -1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Creates an arrow from mana +1 damage 1 1 0 1 *Check ? 0 0 7 8 0 0 2 2 2 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Fire Arrow 7 ama 0 0 1 0 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 1 1 3 2 0 6 12 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? +2-5 fire damage +2 fire damage 1 1 0 1 *Check ? 0 0 8 8 0 0 0 0 0 fire 1 4 2 2 2 0 0 0 0 256 1000
|
||||
Inner Sight 8 ama 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 2 1 1 4 1 7 10 0 1 0 0 0 0 40 min% monster ac 80 max% monster ac 200 duration 100 duration per level 20 radius of effect 0 radius per level all monsters in radius get small light source. And highlit monsters have -20 AC/level extar duration and more AC loss 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Critical Strike 9 ama 0 0 1 4 1ht 2ht bow xbw xxx xxx none seq 0 0 0 0 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 2 1 3 6 1 8 0 0 1 0 0 0 1 5 min % to do double damage 80 max % to do double damage 0 ? 0 ? 0 ? 0 ? Passive 10% chance to do double damage on a hit more of a chance 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Jab 10 ama 1 0 1 3 1ht 2ht xxx xxx xxx xxx seq seq 1 0 1 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 3 1 1 8 0 6 8 1 1 0 0 0 0 0 ? 0 ? -15 Percent damage base 3 Percent damage per level 0 ? 0 ? "does 4 hits, each at 66% regular damage" more damage as per dave 1 1 0 1 *Check ? 10 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Cold Arrow 11 ama 0 0 1 4 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 0 0 0 0 1 2 1 10 0 6 12 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? extra 5 frames slow and +1 cold dam 1 1 0 1 *Check new blue shift 0 0 8 4 0 0 0 0 0 cold 3 3 2 2 2 100 30 30 30 384 3000
|
||||
Multiple Shot 12 ama 0 0 1 7 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 Magic Arrow 0 0 0 0 1 2 2 12 0 7 8 2 1 0 0 0 0 2 number of arrows to fire 1 additional arrows per level 1 Acivation frame of arrows. 0 ? 0 ? 0 ? Fires a spread of arrows towards the target. extra arrows/level 1 1 0 1 *Check ? 0 0 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Dodge 13 ama 1 0 1 0 xxx xxx xxx xxx xxx xxx sk1 seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 h2h 0 6 0 0 0 0 0 0 0 0 2 2 2 14 1 8 0 0 1 0 0 0 1 10 min % dodge 65 max % dodge 0 ? 0 ? 0 ? 0 ? PASSIVE chance that amazon jumps aside and takes no HTH dam. Only if not moving more of a chance 1 1 0 1 *Check New animation 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Power Strike 14 ama 0 0 1 4 1ht 2ht xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 Jab 0 0 0 0 3 2 2 16 0 6 8 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? does 1-8 lightning damage +4 lightning damage 1 1 0 1 *Check ? 10 5 8 8 0 0 0 0 0 ltng 1 16 6 8 10 0 0 0 0 384 3000
|
||||
Poison Javelin 15 ama 0 0 1 2 1ht xxx xxx xxx xxx xxx throw seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 0 0 0 0 3 2 3 18 0 6 16 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "half normal damage, poison damage, trails poison gas" "+half damage, +1 poison damage" 1 1 0 1 *Check ? 0 0 0 0 0 0 0 0 0 pois 32 48 16 16 16 75 0 0 0 384 3000
|
||||
Exploding Arrow 16 ama 0 0 1 5 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Fire Arrow Multiple Shot 0 0 0 0 1 3 3 20 0 7 10 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? explodes for 8-16 fire damage 5 square radius +2 fire damage 1 1 0 1 *Check new arrow? 0 0 8 8 0 0 0 0 0 fire 2 4 5 5 5 0 0 0 0 512 8000
|
||||
Slow Missiles 17 ama 1 0 1 8 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Inner Sight 0 0 0 0 2 3 1 22 1 7 10 0 1 0 0 0 0 33 % velocity for missiles 0 % velocity per level 300 duration 150 duration per level 20 radius of effect 0 radius per level Highlights enemies like eye of zeus. Effected target's missiles fly at 1/3 speed more duration 1 1 0 1 *Check missile hit overlay 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Avoid 18 ama 0 0 1 0 xxx xxx xxx xxx xxx xxx sk1 seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 h2h 0 12 0 0 0 0 Dodge 0 0 0 0 2 3 2 24 1 8 0 0 1 0 0 0 1 15 min % avoid 75 max % avoid 0 ? 0 ? 0 ? 0 ? PASSIVE like dodge but for missiles and magic missiles more of a chance 1 1 0 1 *Check New animation 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Impale 19 ama 1 0 1 6 1ht 2ht xxx xxx xxx xxx seq seq 8 0 1 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Jab 0 0 0 0 3 3 1 26 0 8 3 0 1 0 0 0 0 300 Percent damage 5 % damage per level 0 % chance durability loss delta min 30 % chance durability loss delta max 1 % durability lost 50 % max chance durability loss "300% Damange, durability loss" attack bonus 1 1 0 1 *Check sequencing 25 7 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Lightning Bolt 20 ama 0 0 1 6 1ht xxx xxx xxx xxx xxx throw seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Poison Javelin 0 0 0 0 3 3 3 28 0 6 24 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? thrown javelin (-type) becomes lightning bolt (GFX and add lightning hit) +8 lightning damage 1 1 0 1 *Check ? 0 0 8 8 0 0 0 0 0 ltng 1 40 8 8 8 0 0 0 0 512 8000
|
||||
Ice Arrow 21 ama 0 0 1 6 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Cold Arrow 0 0 0 0 1 4 1 30 0 6 16 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "1/2 damage, freezes target for 10 frames" extra 2 frames freeze 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 cold 6 10 4 4 4 50 5 5 5 640 16000
|
||||
Guided Arrow 22 ama 0 0 1 4 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Cold Arrow Multiple Shot 0 0 0 0 1 4 2 32 0 6 32 -1 1 0 0 0 0 15 Search range 0 ? 0 Damage percent 5 damage % per level 0 ? 0 ? "200% speed, arrow ALWAYS hits target, or seeks a target" "-10% speed, +5% damage" 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Penetrate 23 ama 0 0 1 1 1ht 2ht bow xbw xxx xxx none seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Critical Strike 0 0 0 0 2 4 3 34 1 8 0 0 1 0 0 0 1 35 add % to hit with missiles base 10 add % to hit with missiles/level 0 ? 0 ? 0 ? 0 ? PASSIVE additional chance to hit with missiles (penetrate the armor) more of a chance 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Charged Strike 24 ama 0 0 1 5 1ht 2ht xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Power Strike Lightning Bolt 0 0 0 0 3 4 2 36 0 6 16 1 1 0 0 0 0 3 Bolts to send out 0 Additional bolts per level 0 ? 0 ? 0 ? 0 ? "adds 6-10 lightning damage, releases 3 charged bolts (1-4)" "+2lightning damage,+1charged bolt" 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 ltng 1 30 10 12 14 0 0 0 0 640 16000
|
||||
Plague Javelin 25 ama 0 0 1 3 1ht xxx xxx xxx xxx xxx throw seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Lightning Bolt 0 0 0 100 3 4 3 38 0 8 7 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "trails poison gas, hit always poisons, poison cloud radius 3" "+half damage, +1 poison damage" 1 1 0 0 *Check improve poison clouds 0 0 3 0 0 0 0 0 0 pois 10 16 3 5 8 75 0 0 0 640 16000
|
||||
Strafe 26 ama 1 0 1 0 bow xbw xxx xxx xxx xxx attack seq 0 0 0 0 1 0 0 0 0 0 0 0 0 0 range 0 24 0 0 0 0 Guided Arrow 0 0 0 0 1 5 2 40 0 8 11 0 1 0 0 0 0 5 Damage increase 5 Damage increase per level 4 Base Shots to take (+1 per level) 10 Max shots to take 25 Radius 50 % frame rollback fires an arrow at every target on screen +10% damage 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Immolation Arrow 27 ama 0 0 1 6 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 24 0 0 0 0 Exploding Arrow 0 0 0 0 1 5 3 42 0 8 6 1 1 0 0 0 0 2 Fire disc radius 3 Radial Damage Radius 0 ? 0 ? 0 ? 0 ? explodes for 8-16 fire damagebig radius of firewall-type action +2 fire damage 1 1 0 0 *Check ? 0 0 8 4 0 0 0 0 0 fire 4 10 6 6 6 0 0 0 0 768 32000
|
||||
Dopplezon 28 ama 0 0 1 4 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Slow Missiles 0 0 0 0 2 5 1 44 1 6 76 -3 1 0 0 0 0 250 duration of decoy 125 duration per level 50 percent hitpoints of caster 0 ? 0 ? 0 ? creates an identical copy of the amazon that draws fire more duration 1 1 0 0 *Check Overlays 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Evade 29 ama 0 0 1 0 xxx xxx xxx xxx xxx xxx sk1 seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 h2h 0 24 0 0 0 0 Avoid 0 0 0 0 2 5 2 46 1 8 0 0 1 0 0 0 1 10 min % evade 65 max % evade 0 ? 0 ? 0 ? 0 ? PASSIVE like dodge but when walking or running more of a chance 1 1 0 0 *Check New animation 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Fend 30 ama 1 0 1 0 1ht 2ht xxx xxx xxx xxx attack seq 9 0 1 0 0 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Impale 0 0 0 0 3 5 1 48 0 8 5 0 0 0 0 0 0 1 additional target/level 60 % frame rollback 70 % damage percent 10 damage % per level 0 ? 0 ? "attacks all adjacent targets, +20% to hit" "+10% damage, +5% to hit" 1 1 0 0 *Check seqencing 40 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Freezing Arrow 31 ama 0 0 1 7 bow xbw xxx xxx xxx xxx attack seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 30 0 0 0 0 Ice Arrow 0 0 0 0 1 6 1 50 0 8 9 1 1 0 0 0 0 5 Radius of impact 0 ? 0 ? 0 ? 0 ? 0 ? freezes target +5 secs time frame 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 cold 6 10 6 6 6 50 0 0 0 896 64000
|
||||
Valkyrie 32 ama 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Dopplezon Evade 0 0 0 0 2 6 1 52 1 8 25 4 1 0 0 0 0 20 % hitpoints more per level 20 % damage increase per level 5 % AC increase per level 5 % To hit increase per level 25 Magic Item level 3 Magic Item level per level oooh scary valkyrie beast. Comes to fight for amazon none 1 1 0 0 *Check palletized Amazon 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Pierce 33 ama 0 0 1 0 bow xbw xxx xxx xxx xxx none seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 range 0 30 0 0 0 0 Penetrate 0 0 0 0 2 6 3 54 1 8 0 0 1 1 0 0 1 10 min % chance 100 max % chance 4 max possible piercings 0 ? 0 ? 0 ? PASSIVE chance that a missile does damage/effect AND continues thru target more of a chance 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Lightning Strike 34 ama 0 0 1 8 1ht 2ht xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 30 0 0 0 0 Charged Strike 0 0 0 0 3 6 2 56 0 8 9 0 1 0 0 0 0 10 radius of jump to next target 0 ? 2 Target hits 1 Target hits per level 0 ? 0 ? "does 10-20 lightning damage, sends out chainlightning effect" +2 lightning damage 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 ltng 5 25 10 10 10 0 0 0 0 896 64000
|
||||
Lightning Fury 35 ama 0 0 1 8 1ht xxx xxx xxx xxx xxx throw seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 range 0 30 0 0 0 0 Plague Javelin 0 0 0 0 3 6 3 58 0 7 20 1 1 0 0 0 0 2 lightning spells from target 1 extra spells/level 15 Target search radius 0 ? 0 ? 0 ? Like Lightning Bolt but with 2+level lightnings going from target to nearest targets +10% damage 1 1 0 0 *Check ? 0 0 8 8 0 0 0 0 0 ltng 1 40 10 13 16 0 0 0 0 896 64000
|
||||
Fire Bolt 36 sor 0 0 1 2 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 1 1 2 0 0 7 5 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? missile does 3-6 damage +1 damage 1 1 0 1 *Check ? 0 0 7 0 0 0 0 0 0 fire 6 12 3 5 7 0 0 0 0 256 1000
|
||||
Warmth 37 sor 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 1 1 3 2 1 8 0 0 1 1 0 0 1 30 increase in mana recovery 12 additional increase/level 0 ? 0 ? 0 ? 0 ? PASSIVE increases mana recovery rate by 50% +25% recovery 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 fire 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Charged Bolt 38 sor 0 0 1 1 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 2 1 2 4 0 5 24 4 1 0 0 0 0 3 Bolts to send out 1 Additional bolts per level 0 ? 0 ? 0 ? 0 ? 3 charged bolts fly randomly 2-4 damage each +1 bolt 1 1 0 1 *Check ? 0 0 7 0 0 0 0 0 0 ltng 4 8 1 1 2 0 0 0 0 256 1000
|
||||
Ice Bolt 39 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 3 1 2 6 0 8 3 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? does 3 points cold damage. Target is 1/2 speed for 30 frames "+1 damage, +5 frames" 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 cold 3 5 1 2 3 150 35 35 35 256 1000
|
||||
Frozen Armor 40 sor 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 3 1 3 8 1 8 7 0 1 1 0 0 0 30 % AC base 5 % AC per level 3000 Duration 300 Duration per level 30 Freeze Frames 3 Freeze Frames per level Changed ac bonus to %. Took out dur/level. Added frames per level. "+2 ac, + 2 seconds" 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 STATE_FROZENARMOR 256 1000
|
||||
Inferno 41 sor 1 0 1 7 xxx xxx xxx xxx xxx xxx seq seq 6 0 0 0 0 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 0 0 0 0 1 2 1 10 0 4 9 1 1 0 0 0 0 20 base ranged (doubled) 3 level range (doubled) 6 Min Mana to start casting 0 ? 0 ? 0 ? Hold Sorc in 1 frame of anim. Eminate missiles from closer to sorc "+1 range, +1 second dur" 1 1 0 1 *Check ? 0 0 2 0 0 0 0 0 0 fire 32 64 24 26 28 0 0 0 0 384 3000
|
||||
Static Field 42 sor 0 0 1 10 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 0 0 0 0 2 2 1 12 1 8 9 0 1 0 0 0 0 5 Base radius of effect. 1 Level radius bonus. 1 Minimum Damage. 25 Percent Damage. 0 ? 0 ? everything in 10 square radius takes 30% (current) damage +2 range 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Telekinesis 43 sor 0 0 1 10 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 3 14 1 8 7 0 1 1 0 0 0 25 On-screen cast range. 35 Chance to knockback/stun. 0 ? 0 ? 0 ? 0 ? "triggers doors, levers, etc. and grabs items from afar, knockback on monsters" na 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 ltng 1 2 1 1 1 0 0 0 0 384 3000
|
||||
Frost Nova 44 sor 0 0 1 6 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 0 0 0 0 3 2 1 16 1 8 9 1 1 0 0 0 0 9 radius of freeze 3 additional radius/level 0 ? 0 ? 0 ? 0 ? Cold nova speeds +10% 1 1 0 1 *Check OverlayC and palette shift 0 0 8 0 0 0 0 0 0 cold 2 4 2 3 4 200 25 25 25 384 3000
|
||||
Ice Blast 45 sor 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 Ice Bolt 0 0 0 0 3 2 2 18 0 7 12 1 1 0 0 0 0 75 Duration of freeze 5 additional duration/level 0 ? 0 ? 0 ? 0 ? "1) removed splash damage. 2) make it total freeze, not slow down" pause for +1 frame 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 cold 10 10 7 7 7 0 0 0 0 384 3000
|
||||
Blaze 46 sor 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Inferno 0 0 0 0 1 3 1 20 1 7 22 1 1 0 0 0 0 50 Min Frames 500 Max Frames 0 ? 0 ? 0 ? 0 ? "trails fire behind caster,ala Tron game. Each sprite lasts 2 sec. 1pt dam/fram" "+1 sec dur, +10% damage" 1 1 0 1 *Check ? 0 0 4 0 0 0 0 0 0 fire 4 8 2 3 4 0 0 0 0 512 8000
|
||||
Fire Ball 47 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Fire Bolt 0 0 0 0 1 3 2 22 0 7 10 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? like fire bolt with area damage. 10-24 damage +15% damage 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 fire 6 14 7 7 7 0 0 0 0 512 8000
|
||||
Nova 48 sor 0 0 1 2 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Static Field 0 0 0 0 2 3 1 24 1 8 15 1 1 0 0 0 0 12 number of missiles 4 additional missiles per level 0 ? 0 ? 0 ? 0 ? "if you don't know what nova does, you're fired" more missiles 1 1 0 1 *Check "OverlayL, nova missile" 0 0 8 0 0 0 0 0 0 ltng 1 20 7 7 7 0 0 0 0 512 8000
|
||||
Lightning 49 sor 0 0 1 6 xxx xxx xxx xxx xxx xxx seq seq 12 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Charged Bolt 0 0 0 0 2 3 2 26 0 7 16 1 1 0 0 0 0 10 minimum damage 20 max damage 4 increase in dam/level (min & max) 0 ? 0 ? 0 ? "(procedural?) bolt of lightning shot at and through target, length of 1 screen" more damage 1 1 0 1 *Check "overlayL, procedual bolt" 0 0 8 0 0 0 0 0 0 ltng 1 40 8 8 8 0 0 0 0 512 8000
|
||||
Shiver Armor 50 sor 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Ice Blast Frozen Armor 0 0 0 0 3 3 3 28 1 8 11 0 1 1 0 0 0 45 % AC base 6 % AC per level 3000 Duration 300 duration per level 0 ? 0 ? target slows down and is damaged "more duration, more damage" 1 1 0 1 *Check "overlayC, overlayV palette shifted" 0 0 8 0 0 0 0 0 0 cold 6 8 2 3 4 100 0 0 0 512 8000
|
||||
Fire Wall 51 sor 0 0 1 4 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 0 4 0 0 0 0 1 0 0 1 none 0 18 0 0 0 0 Blaze 0 0 0 35 1 4 1 30 1 8 22 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? creates wall of fire more duration/length 1 1 0 0 *Check ? 0 0 4 0 0 0 0 0 0 fire 14 20 6 7 9 0 0 0 0 640 16000
|
||||
Enchant 52 sor 0 0 1 4 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 1 1 1 none 0 18 0 0 0 0 Warmth Fire Ball 0 0 0 0 1 4 3 32 1 8 25 2 1 1 0 0 0 3600 duration 600 duration per level 0 ? 0 ? 0 ? 0 ? "turns target's sword into flaming weapon, with slightly slower attack" more damage 1 1 0 0 *Check "overlayF, weapon ovelay component" 0 0 8 0 0 0 0 0 0 fire 8 10 2 4 6 0 0 0 0 640 16000
|
||||
Chain Lightning 53 sor 0 0 1 2 xxx xxx xxx xxx xxx xxx seq cast 12 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Lightning 0 0 0 0 2 4 2 34 0 8 9 1 1 0 0 0 0 8 radius of jump to next target 0 ? 26 bolts (5ths) 1 bolts per level (5ths) 0 ? 0 ? "like lightning but if there is a (previously unhit) target within 6 squares, jumps to it" "more damage, more radius" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 ltng 1 40 11 13 15 0 0 0 0 640 16000
|
||||
Teleport 54 sor 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Telekinesis 0 0 0 0 2 4 3 36 1 8 24 -1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? teleports to target square. (good for testing too) na 1 1 0 0 *Check done 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Glacial Spike 55 sor 0 0 1 7 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Ice Blast 0 0 0 0 3 4 2 38 0 7 20 1 1 0 0 0 0 4 radius 0 radius per level 50 freeze frames 3 freeze frames per level 0 ? 0 ? "like ice Blast, but bigger radius and does damage to specific target" more damage 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 cold 16 24 7 7 7 0 0 0 0 640 16000
|
||||
Meteor 56 sor 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 1 0 0 1 none 0 24 0 0 0 0 Fire Ball Fire Wall 0 0 0 50 1 5 2 40 1 7 34 1 1 0 0 0 0 6 radius of explosion 0 radius per level 30 Frames of fire 15 Frames of fire per level 0 ? 0 ? "giant meteor comes from sky and hits target square 60 frames after cast, immol arrow type" "more damage, more radius" 1 1 0 0 *Check "lightsource target, meteor missile, immolation explosion" 0 0 8 0 0 0 0 0 0 fire 80 100 24 40 80 0 0 0 0 768 32000
|
||||
Thunder Storm 57 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Nova Chain Lightning 0 0 0 0 2 5 1 42 1 8 19 0 1 0 0 0 0 800 duration 200 additional duration/level 25 minimum repeat time 100 repeat time factor 0 min % repeat time 100 max % repeat time "after 60 frames and every 60 thereafter, lightning bolt from sky hits random unfriendly target in radius" "longer duration, bigger radius" 1 1 0 0 *Check "proc lightning from sky, thunder sounds" 0 0 8 0 0 0 0 0 0 ltng 1 100 10 10 11 0 0 0 0 768 32000
|
||||
Energy Shield 58 sor 0 0 1 4 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Teleport Chain Lightning 0 0 0 0 2 5 3 44 1 8 5 0 1 1 0 0 0 3600 duration 1200 additional duration/level 5 min % absorbtion 75 max % absorbtion 8 Mana Damage mult in Fourths 0 ? all non-physical damage (and a percent of physical) is applied to mana for duration of shield "longer duration, more physical" 1 1 0 0 *Check done 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Blizzard 59 sor 0 0 1 7 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 1 0 0 1 none 0 24 0 0 0 0 Frost Nova Glacial Spike 0 0 0 45 3 5 1 46 1 8 23 1 1 0 0 0 0 7 radius 0 ? 4 Missile delay 0 Change duration in Missiles.xls 0 ? 0 ? random spot in target area is hit by an ice shard from the sky every 2 frames longer duration 1 1 0 0 *Check "overlayC, darken act and wind noise" 0 0 8 0 0 0 0 0 0 cold 30 50 12 25 40 50 0 0 0 768 32000
|
||||
Chilling Armor 60 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 24 0 0 0 0 Shiver Armor 0 0 0 0 3 5 3 48 1 8 17 0 1 1 0 0 0 45 % AC Bonus 5 % AC bonus per level 3600 duration 150 duration per level 0 ? 0 ? "AC bonus, fires ice bolt at source of missile attacks except poison and firewall" longer duration 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 cold 4 6 1 2 3 100 0 0 0 768 32000
|
||||
Fire Mastery 61 sor 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 0 0 0 0 1 6 2 50 1 8 0 0 1 0 0 0 1 30 % Damage bonus 7 % Damage bonus per level 0 ? 0 ? 0 ? 0 ? PASSIVE adds 10% damage/level to fire spells(tab) ? 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 fire 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Hydra 62 sor 0 0 1 7 xxx xxx xxx xxx xxx xxx cast sk1 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Enchant 0 0 0 50 1 6 3 52 1 7 40 1 1 0 0 0 0 250 duration 0 additional duration/level 0 ? 0 ? 0 ? 0 ? "like guardian in D1, multi-headed beastie fires 75% firebolts (x3 damage), 25% fireballs" longer duration 1 1 0 0 *Check "overlayF, explosion creates: Hydra" 0 0 8 0 0 0 0 0 0 fire 12 17 5 7 9 0 0 0 0 896 64000
|
||||
Lightning Mastery 63 sor 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 0 0 0 0 2 6 2 54 1 8 0 0 1 0 0 0 1 50 % Damage bonus 12 % Damage bonus per level 0 ? 0 ? 0 ? 0 ? PASSIVE reduces mana cost of cold spells by 10% (of current) ? 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Frozen Orb 64 sor 0 0 1 8 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Blizzard 0 0 0 25 3 6 1 56 0 7 50 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? a slow moving pulsating orb that fires icebolts and explodes in a frost nova more damage 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 cold 35 40 6 10 14 200 25 25 25 896 64000
|
||||
Cold Mastery 65 sor 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 0 0 0 0 3 6 2 58 1 8 0 0 1 0 0 0 1 10 min % resist chance 100 max % resist chance 0 ? 0 ? 0 ? 0 ? PASSIVE reduces target's chance to resist by 5%/level ? 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Amplify Damage 66 nec 0 0 1 10 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 1 1 2 0 1 8 4 0 1 0 0 0 0 3 radius 1 radius per level 200 duration 75 additional duration/level 100 % additional damage taken 0 ? CURSE double damage taken by affected creature longer duration 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Teeth 67 nec 0 0 1 1 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 2 1 2 2 0 7 6 1 1 0 0 0 0 2 number of missiles 1 additional missiles/level 0 ? 0 ? 0 ? 0 ? shoots out randomly directed missiles (generally forward) like quill rat more missiles 1 1 0 1 *Check ? 0 0 7 0 0 0 0 0 0 mag 4 8 2 2 2 0 0 0 0 256 1000
|
||||
Bone Armor 68 nec 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 2 1 3 4 1 8 11 1 1 1 0 0 0 20 damage absorbed 10 additional absorbed/level 0 ? 0 ? 0 ? 0 ? "creates 2 damage absorbing bone orbiters, each sucking up the first 6 points that come in" extra orbiter 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Skeleton Mastery 69 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 Raise Skeleton 0 0 0 0 3 1 1 6 1 8 0 0 1 0 0 0 1 7 additional hit points/level 2 additional damage per level 0 ? 0 ? 0 ? 0 ? PASSIVE boosts summoned necroskeletons and necromages (also add component look tabe) oh so much 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Raise Skeleton 70 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 1 1 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 3 1 3 8 1 8 6 1 1 0 0 0 0 5 % chance of shield 0 ? 0 ? 0 ? 0 ? 0 ? Brings undead corpse back (CAST 1 per skill level) more castable 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Dim Vision 71 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 0 0 0 0 1 2 1 10 1 8 9 0 1 0 0 0 0 4 radius 1 radius per level 175 duration 50 additional duration/level 0 ? 0 ? "CURSE lower affected creature's vision radius to 5 + (monlevel - charlevel), minimum 3" longer duration 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Weaken 72 nec 0 0 1 9 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 Amplify Damage 0 0 0 0 1 2 3 12 1 8 4 0 1 0 0 0 0 9 radius 1 radius per level 350 duration 60 additional duration/level 33 % damage target can do 0 ? CURSE target does 1/2 physical damage longer duration 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Poison Dagger 73 nec 0 0 1 4 xxx xxx xxx xxx xxx xxx attack seq 0 0 0 1 0 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 0 0 0 0 2 2 1 14 0 6 12 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? added bonus to hit params ------> better poison 1 1 0 1 *Check ? 15 10 1 8 0 0 0 0 0 pois 18 40 10 15 20 50 0 0 0 384 3000
|
||||
Corpse Explosion 74 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 1 1 0 0 0 1 none 0 6 0 0 0 0 Teeth 0 0 0 0 2 2 2 16 1 8 15 1 1 0 0 0 0 60 % of base monster HP min damage 100 % of base monster HP max damage 8 radius (half squares) 1 additional radius/level (half squares) 0 ? 0 ? targeted corpse explodes doing damage to all in radius and destroying remains bigger radius 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Clay Golem 75 nec 0 0 1 5 xxx xxx xxx xxx xxx xxx cast sk1 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 3 2 2 18 1 8 15 3 1 0 0 0 0 35 % HP bonus per level 35 % Damage bonus per level 0 ? 0 ? 0 ? 0 ? summons a golem to fight for caster (like hirable) better golem 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Iron Maiden 76 nec 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Amplify Damage 0 0 0 0 1 3 2 20 1 8 5 0 1 0 0 0 0 7 radius 0 radius per level 300 duration 60 additional duration/level 200 % damage returned to accursed 25 % additional returned/level CURSE creature takes 1/4 the damage it deals out (like reverse thorns) h2h and missiles "longer duration, more damage" 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Terror 77 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Weaken 0 0 0 0 1 3 3 22 1 8 7 0 1 0 0 0 0 4 radius 0 radius per level 200 duration 25 additional duration/level 24 Distance to run 2 Distance per level CURSE target runs away in fear longer duration 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Bone Wall 78 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 12 0 0 0 0 Bone Armor 0 0 0 0 2 3 3 24 1 8 17 0 1 0 0 0 0 25 % additional HP per level 1200 MAX duration 8 Max Monsters per wall 0 "Level, max monsters per wall" 0 ? 0 ? "creates bone wall (like fire wall), that is completely destroyed when any segment takes full damage" greater length and more HP 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Golem Mastery 79 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Clay Golem 0 0 0 0 3 3 1 26 1 8 0 0 1 0 0 0 1 20 % HP bonus per level 0 ? 0 min velocity increase 40 max velocity increase 0 ? 0 ? Enhances golem's speed and hitpoints more 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Raise Skeletal Mage 80 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 1 1 0 0 0 0 none 0 12 0 0 0 0 Raise Skeleton 0 0 0 0 3 3 3 28 1 8 8 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? <---I took out the HP and AC params. Make sure they cast a higher level spell per level more castable 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Confuse 81 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Dim Vision 0 0 0 0 1 4 1 30 1 8 13 0 1 0 0 0 0 6 radius 1 radius per level 250 duration 50 additional duration/level 0 ? 0 ? CURSE monster chooses random target (friendly or not) longer duration 1 0 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Life Tap 82 nec 0 0 1 4 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Iron Maiden 0 0 0 0 1 4 2 32 1 8 9 0 1 0 0 0 0 4 radius 1 radius per level 400 duration 60 additional duration/level 50 % damage healed 0 % additional heal/level CURSE target returns to attacker 10% damage it takes (heals attacker) "longer duration, more returned" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Poison Explosion 83 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 1 1 0 0 0 1 none 0 18 0 0 0 0 Poison Dagger Corpse Explosion 0 0 0 0 2 4 1 34 1 8 8 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Corpse Explosion with poison +1 range 1 1 0 0 *Check ? 0 0 4 0 0 0 0 0 0 pois 8 16 2 4 6 50 0 0 0 640 16000
|
||||
Bone Spear 84 nec 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Corpse Explosion 0 0 0 0 2 4 2 36 0 6 28 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Fire bone missile more damage 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 mag 16 24 8 8 8 0 0 0 0 640 16000
|
||||
BloodGolem 85 nec 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Clay Golem 0 0 0 0 3 4 2 38 1 8 25 4 1 0 0 0 0 75 min % life stolen 150 max % life stolen 30 % stolen life xfer to caster 35 %additional golem damage per level 10 % damage on golem xfered to caster 25 % caster healing xfered to golem "summons a golem from target corpse, it steals 5% life from targets" better golem 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Attract 86 nec 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 0 0 0 0 1 none 0 24 0 0 0 0 Confuse 0 0 0 0 1 5 1 40 1 8 17 0 1 0 0 0 0 9 radius 0 radius per level 300 duration 90 additional duration/level 0 ? 0 ? CURSE single target (not area) becomes all monster's (within radius) target of choice "longer duration, bigger radius" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Decrepify 87 nec 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 24 0 0 0 0 Terror 0 0 0 0 1 5 3 42 1 8 11 0 1 0 0 0 0 6 radius 0 radius per level 100 duration 15 additional duration/level -50 "% slowed, -dam, -dam resist" 0 ? CURSE movement is slowed 50% and no run longer duration 1 1 0 0 Mon in state can't run. ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Bone Prison 88 nec 0 0 1 10 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 0 0 0 0 1 none 0 24 0 0 0 0 Bone Wall Bone Spear 0 0 0 0 2 5 3 44 1 8 27 -1 1 0 0 0 0 25 % additional HP per level 1200 MAX duration 0 ? 0 ? 0 ? 0 ? creates bone wall in radius around target "more HP, less mana" 1 1 0 0 *Check art 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Summon Resist 89 nec 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Golem Mastery 0 0 0 0 3 5 1 46 1 8 44 -3 1 0 0 0 1 20 min % resist 75 max % resist 0 ? 0 ? 0 ? 0 ? "Summoned monsters resist cold, lightning, fire and poison" more resistance 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
IronGolem 90 nec 0 0 1 5 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 0 0 0 0 0 none 0 24 0 0 0 0 BloodGolem 0 0 0 0 3 5 2 48 1 8 35 0 1 0 0 0 0 150 % thorns damage back (level 2) 15 % thorns damage back per level 20 % damage bounced back vs player 2 % additional bounce back/level vs player 0 ? 0 ? "summons a golem from a target item, acts as if it has that item equipped" better golem 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Lower Resist 91 nec 0 0 1 8 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Life Tap Decrepify 0 0 0 0 1 6 2 50 1 8 22 0 1 0 0 0 0 7 radius 1 radius per level 500 duration 50 additional duration/level 25 min % resist lower 70 max % resist lower CURSE lowers target resistances "longer duration, more reduction" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Poison Nova 92 nec 0 0 1 3 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Poison Explosion 0 0 0 0 2 6 1 52 1 8 20 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Nova with poison like nova? 1 1 0 0 *Check ? 0 0 4 0 0 0 0 0 0 pois 14 25 4 5 8 50 0 0 0 896 64000
|
||||
Bone Spirit 93 nec 0 0 1 7 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 30 0 0 0 0 Bone Spear 0 0 0 0 2 6 2 54 0 7 24 1 1 0 0 0 0 15 Search range 0 ? 0 ? 0 ? 0 ? 0 ? Fire a homing bone missile more damage 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 mag 20 30 16 17 18 0 0 0 0 896 64000
|
||||
FireGolem 94 nec 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 IronGolem 0 0 0 0 3 6 2 56 1 8 50 10 1 0 0 0 0 25 min % fire absorbtion 100 max % fire absorbtion 0 % damage increase 25 % damage increase per level 8 Holy Fire Aura level 1 Plus Holy Fire Aura level "summons a golem that takes negative fire damage (is healed), has fire hit" better golem 1 0 0 0 AI ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Revive 95 nec 0 0 1 6 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 1 0 0 0 0 none 0 30 0 0 0 0 Raise Skeletal Mage IronGolem 0 0 0 0 3 6 3 58 1 8 45 0 1 0 0 0 0 200 additional hp percent 0 ? 4500 Duration 0 additional duration/level 20 Velocity bonus for revived 0 ? "revives target corpse as the monster it was (w/grey palette and undead), to fight for caster" "less mana, additional HP" 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Sacrifice 96 pal 0 0 1 7 !bw xxx xxx xxx xxx xxx attack seq 2 0 1 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 1 1 1 0 0 8 0 0 1 0 0 0 0 180 Percent damage 12 percent damage per level 8 percent damage to self 0 ? 0 ? 0 ? <----- Make sure it works for any melee attack +20% damage 1 1 0 1 *Check seq 20 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Smite 97 pal 0 0 1 9 *sd xxx xxx xxx xxx xxx sk1 seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 1 1 3 2 0 8 2 0 0 0 0 0 0 15 Stun Length 5 additional frames/level 15 Percent bonus damage 15 percent damage per level 0 ? 0 ? "Attack with shield (dmg from items.xls), knock back, stuns for 12 frames" adds 1 damage and 3 frame stun 1 1 0 1 *Check seq 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Might 98 pal 0 0 1 9 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 1 4 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 40 % additional damage 10 % additional damage/level 0 ? 0 ? aura adds 10% damage - PARTY - also add a flat +1 min/max damage additional radius/effect 1 1 0 1 *Check overlayH 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Prayer 99 pal 0 0 1 7 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 3 1 1 6 1 4 16 3 1 1 1 0 0 11 radius 2 additional radius per level 2 hp regen every 2 seconds 1 additional hp regen/level 0 ? 0 ? "aura regens HP - PARTY changed to constant rate, not %" additional radius/effect 1 1 0 1 *Check "overlayH, overlayR" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Resist Fire 100 pal 0 0 1 8 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 3 1 3 8 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 35 min % resist 150 max % resist 0 ? 0 ? aura - PARTY (maybe we should make a curve that approaches 90%) additional radius/effect 1 1 0 1 *Check "overlayA, auraR" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Holy Bolt 101 pal 0 0 1 7 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 1 1 1 none 0 6 0 0 0 0 0 0 0 0 1 2 2 10 0 6 16 1 1 0 0 0 0 1 min hitpoints healed 2 hitpoints healed per level 6 max hitpoints healed 2 hitpoints healed per level 0 ? 0 ? bolt hits undead only for 4-8 damage +2 damage 1 1 0 1 *Check "overlayU, Holy Boly missile" 0 0 8 0 0 0 0 0 0 mag 8 16 6 6 6 0 0 0 0 384 3000
|
||||
Holy Fire 102 pal 0 0 1 0 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 Might 0 0 0 0 2 2 2 12 1 8 0 0 1 1 1 0 0 6 radius 1 additional radius per level 0 ? 0 ? 0 ? 0 ? aura - every 2 second a pulse of fire hits against enemies in range additional radius/effect 1 1 0 1 *Check overlayH 0 0 6 0 0 0 0 0 0 fire 4 12 3 4 5 0 0 0 0 384 3000
|
||||
Thorns 103 pal 0 0 1 9 *sd xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 3 14 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 250 % damage bounced back 40 % additional bounce back/level 30 % damage bounced back vs player 5 % additional bounce back/level vs player aura physical damage by monsters is reflected back - PARTY additional radius/effect 1 1 0 1 *Check none 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Defiance 104 pal 0 0 1 4 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 3 2 2 16 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 70 % additional AC 10 % additional AC/level 0 ? 0 ? aura boosts AC - PARTY additional radius/effect 1 1 0 1 *Check "overlayA, auraD" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Resist Cold 105 pal 0 0 1 6 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 3 2 3 18 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 35 min % resist 150 max % resist 0 ? 0 ? aura - PARTY (maybe we should make a curve that approaches 90%) additional radius/effect 1 1 0 1 *Check "overlayH, overlayR" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Zeal 106 pal 0 0 1 2 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 0 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Sacrifice 0 0 0 0 1 3 1 20 0 8 2 0 1 0 0 0 0 0 ? 100 % frame rollback 0 % damage percent 0 damage % per level 2 Targets 5 Max targets each level allows the paladin to hit 1 extra adjacent monster (in the same amount of time) 1 extra target and + to hit 1 1 0 1 *Check overlayF 10 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Charge 107 pal 1 0 1 2 !bw xxx xxx xxx xxx xxx seq seq 4 0 1 1 0 0 1 1 0 0 0 0 0 0 none 1 12 0 0 0 0 Smite 0 0 0 0 1 3 3 22 0 8 9 0 0 0 0 0 0 150 percent increase in velocity 0 ? 100 plus % damage 25 plus % dam per level 0 ? 0 ? charge to target Rhino-demon style (become missile) / do STR/10 damage +20% damage 1 1 0 1 *Check seq 50 15 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Blessed Aim 108 pal 0 0 1 6 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Might 0 0 0 0 2 3 1 24 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 75 % attack# bonus 15 % additional attack# bonus 0 ? 0 ? aura adds 10% to attack number - PARTY +10% attack number 1 1 0 1 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Cleansing 109 pal 0 0 1 3 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Prayer 0 0 0 0 3 3 1 38 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 30 min % reduction 90 max % reduction 0 ? 0 ? aura - poison and curse durations are reduced - PARTY further reduced 1 1 0 1 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Resist Lightning 110 pal 0 0 1 6 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 0 0 0 0 3 3 3 28 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 35 min % resist 150 max % resist 0 ? 0 ? aura - PARTY additional radius/effect 1 1 0 1 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Vengeance 111 pal 0 0 1 3 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Zeal 0 0 0 0 1 4 1 40 0 6 16 1 1 0 0 0 0 70 percent damage 6 percent damage per level 0 ? 0 ? 0 ? 0 ? "adds 25% fire, 25% lightning and 25% cold damage to attack, +25 to hit" +5% more 1 1 0 0 *Check "overlayF, seq, multiple damage overlays" 20 10 8 8 0 0 0 0 0 cold 0 0 0 0 0 30 15 15 15 640 16000
|
||||
Blessed Hammer 112 pal 0 0 1 2 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Holy Bolt 0 0 0 0 1 4 2 32 0 6 20 1 1 0 0 0 0 4 Concentration influence in 8ths 0 ? 0 ? 0 ? 0 ? 0 ? "spiraling (unaimed) missile doesn't hit friendlies, double damage vs. undead" +4 damage 1 1 0 0 *Check "overlayU, hammer missile" 0 0 8 0 0 0 0 0 0 mag 12 16 8 8 8 0 0 0 0 640 16000
|
||||
Concentration 113 pal 0 0 1 6 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Blessed Aim 0 0 0 0 2 4 1 34 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 60 % additional damage 15 $ additional damage/level 20 percent chance that attack will not be interrupted 0 ? aura gives 20% chance that an interrupting hit (hard hit) does not interrupt - PARTY +7% chance 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Holy Freeze 114 pal 0 0 1 8 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Holy Fire 0 0 0 0 2 4 2 36 1 8 0 0 1 1 1 0 0 6 radius 1 additional radius per level 25 min% slowing 60 max% slowing 0 ? 0 ? aura - monsters in radius are slowed (25%) and blued bigger radius and more slowed 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Vigor 115 pal 0 0 1 1 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Cleansing Defiance 0 0 0 0 3 4 2 26 1 8 0 0 1 1 1 0 0 15 radius 3 additional radius per level 50 % faster stamina recovery and max stamina 25 % additional stamina recovery and max stamina 7 min % speed increase 50 max % speed increase aura boosts stamina recovery - PARTY faster recovery 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Conversion 116 pal 0 0 1 0 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Vengeance 0 0 0 0 1 5 1 30 0 8 4 0 1 0 0 0 0 400 duration of conversion (frames) 0 additional frames/level 0 min % chance convert 50 max % chance convert 0 ? 0 ? "chance to convert target to fight for paladin, (Scale chance by monster level?)" +25 frames effect 1 1 0 0 *Check "overlayF, target monster pal white" 0 0 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Holy Shield 117 pal 0 0 1 3 *sd xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Charge Blessed Hammer 0 0 0 0 1 5 3 42 1 8 35 0 1 1 0 0 0 750 duration of shield 250 duration/level 25 AC bonus 15 AC bonus per level 5 min % ToBlock Add 25 max % ToBlockAdd "creates shield (equiped) AC=12,absorbs 5 damage form every attack up to 200" "AC+2, absorbs +1" 1 1 0 0 *Check "overlayF, Holy Shield component" 0 0 8 0 3 6 2 3 4 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Holy Shock 118 pal 0 0 1 4 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Holy Freeze 0 0 0 0 2 5 2 44 1 8 0 0 1 1 1 0 0 11 radius 0 additional radius per level 20 max light damage added 7 max light damage per level 0 ? 0 ? aura fires a charged bolt at every enemy that enters radius "additional bolt, bigger radius" 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 ltng 1 10 3 4 5 0 0 0 0 768 32000
|
||||
Sanctuary 119 pal 0 0 1 0 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Thorns Holy Freeze 0 0 0 0 2 5 3 46 1 8 1 0 1 1 1 0 0 5 radius 1 additional radius per level 150 % damage to undead 30 % damage per level 0 ? 0 ? undead cannot pass into radius. This aura drains mana (slowly) ! additional radius 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 mag 8 16 4 4 4 0 0 0 0 768 32000
|
||||
Meditation 120 pal 0 0 1 7 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Cleansing 0 0 0 0 3 5 1 48 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 300 % boost to mana recovery 25 % additional boost/level 0 ? 0 ? aura boosts mana recovery - PARTY "+5% boost, bigger radius" 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Fist of the Heavens 121 pal 0 0 1 7 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 4 0 0 1 0 0 0 0 1 none 0 30 0 0 0 0 Blessed Hammer Conversion 0 0 0 100 1 6 2 50 0 8 25 0 1 0 0 0 0 6 holy bolts to release 1 holy bolts per level 0 ? 0 ? 0 ? 0 ? target undead (not unique) is bannished 20%+ 5*(paladin level-monster level) +10% chance 1 1 0 0 *Check "overlayU, Hand of God" 0 0 8 0 0 0 0 0 0 ltng 150 200 10 12 14 0 0 0 0 896 64000
|
||||
Fanaticism 122 pal 0 0 1 8 xxx xxx xxx xxx xxx xxx aura sk1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Concentration 0 0 0 0 2 6 1 52 1 8 0 0 1 1 1 0 0 11 radius 0 additional radius per level 10 min% boost 40 max% boost 50 % damage boost 17 % damage bonus per level aura boosts attack speed - PARTY faster yet even 1 1 0 0 *Check 40 5 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Conviction 123 pal 1 0 1 6 !bw xxx xxx xxx xxx xxx aura seq 5 1 1 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Sanctuary 0 0 0 0 2 6 3 56 1 8 0 0 1 1 1 0 0 20 radius 0 additional radius per level 30 % resist reduction 5 % resist reduction per level 40 min % AC reduction 100 max % AC reduction reduce AC and Resistance of enemies in radius min 0 resist 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Redemption 124 pal 0 0 1 0 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Vigor 0 0 0 0 3 6 2 54 1 8 0 0 1 1 1 0 0 11 radius 0 additional radius per level 10 min % chance redeem 100 max % chance redeem 25 HP and mana gained 5 HP and mana gained/level "aura check every 2 secs for each dead body, destroy it, give mana and hp to paladin" "bigger chance, more gain" 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Salvation 125 pal 0 0 1 8 xxx xxx xxx xxx xxx xxx aura seq 0 1 0 1 0 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 0 0 0 0 3 6 3 58 1 8 0 0 1 1 1 0 0 11 radius 2 additional radius per level 50 min % resist 120 max % resist 0 ? 0 ? aura - PARTY additional radius/effect 1 1 0 0 *Check 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Bash 126 bar 0 0 1 7 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 1 1 2 0 0 8 2 0 1 0 0 0 0 50 Damage % base 5 Damage % per level 1 Min Damage 1 Min Damager per level 0 ? 0 ? <----- Make sure it works for any melee attack (including 2 weapons) + (skilllevel*5)% damage 1 1 1 1 *Check ? 20 5 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Sword Mastery 127 bar 0 0 1 0 1hs 2hs xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 1 2 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +2% to hit/level 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Axe Mastery 128 bar 0 0 1 0 1hs 2hs xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 2 4 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +3% max damage/level 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Mace Mastery 129 bar 0 0 1 0 1hs 2hs xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 3 6 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +3% min damage/level 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Howl 130 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 3 1 1 8 1 8 4 0 1 0 0 0 0 2 Velocity/level increase 1 Plev+Slev+n 24 Distance to retreat 5 Distance per level 75 Time to retreat 25 Time per level all monsters in radius retreat if charlevel+skilllevel > targetlevel "bigger radius, bigger retreat" 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Find Potion 131 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 1 1 0 0 0 0 h2h 0 1 0 0 0 0 0 0 0 0 3 1 3 10 1 8 2 0 1 0 0 0 0 0 min chance to find heart 100 max chance to find heart 30 Chance of finding a mana potion 10 Chance of finding rejuv 0 ? 0 ? target a corpse for 5%+3%/skilllevel chance to get heart. Destroys corpse better chance 1 1 1 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 3000
|
||||
Leap 132 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx seq seq 13 0 1 0 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 1 2 1 12 0 8 2 0 1 0 0 0 0 4 min distance 30 max distance 4 Knockback range 1 knockback range per level 0 ? 0 ? jump as far as possible (within max distance) towards target square longer range 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Double Swing 133 bar 0 0 1 5 1js 1ss 1jt 1st xxx xxx seq seq 11 0 1 1 1 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 Bash 0 0 0 0 1 2 3 14 0 8 2 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? swing 2 weapons in 1 seq move -4% speed (faster) 1 1 0 1 *Check ? 15 5 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Pole Arm Mastery 134 bar 0 0 1 0 stf xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 1 16 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. -2% speed/level 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Throwing Mastery 135 bar 0 0 1 0 1hs 1ht 1hs xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 2 18 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +1 missile velocity/level 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Spear Mastery 136 bar 0 0 1 0 1ht 2ht xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 2 2 3 20 1 8 0 0 1 0 1 0 2 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? PASSIVE skill adds (50% FORMULA)% damage and to hit. +.25 range/level 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Taunt 137 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast sk1 0 0 0 1 1 0 0 0 1 0 0 0 0 0 none 0 6 0 0 0 0 Howl 0 0 0 0 3 2 1 22 1 8 3 0 1 0 0 0 0 -5 % to hit for target -2 % to hit/level -5 % damage for target -2 % damage/level 0 ? 0 ? closest monster will fight until dead at -5% to hit and -5% damage if charlevel+skilllevel > targetlevel -2% to hit and damage for target 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Shout 138 bar 0 0 1 8 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 Howl 0 0 0 0 3 2 2 24 1 8 6 0 1 0 0 0 0 100 % AC bonus for friendlies 10 % AC bonus per level 400 duration 50 duration/level 0 ? 0 ? AC bonus to you and party members. +20 duration 1 1 0 1 Test in multiplayer ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Stun 139 bar 0 0 1 0 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Bash 0 0 0 0 1 3 2 26 0 8 2 0 1 0 0 0 0 30 Frames the target is stunned 5 additional frames/level 0 ? 0 ? 0 ? 0 ? "Target is stunned for 4 frames, even on miss" +2 frames 1 1 0 1 *Check ? 15 5 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Double Throw 140 bar 0 0 1 5 1js 1ss 1jt 1st xxx xxx seq seq 15 0 1 1 1 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Double Swing 0 0 0 0 1 3 3 28 0 8 1 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? Throw primary and secondary weapons in one move. Seq coming… -5% speed 1 1 0 1 *Check ? 20 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Increased Stamina 141 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 0 0 0 0 2 3 1 30 1 8 0 0 1 0 1 0 1 30 % stamina increase 15 % stamina increase per level 0 ? 0 ? 0 ? 0 ? PASSIVE 20%/level bonus to stamina 20% more 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Find Item 142 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 1 1 0 0 0 0 h2h 0 12 0 0 0 0 Find Potion 0 0 0 0 3 3 3 32 1 8 7 0 1 0 0 0 0 5 min chance to find heart 60 max chance to find heart 30 % chance high quality 5 % chance magic item 0 ? 0 ? target a corpse for 10%+5%/skilllevel chance to get item. Destroys corpse better chance 1 1 0 1 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Leap Attack 143 bar 0 0 1 6 !bw xxx xxx xxx xxx xxx seq seq 14 0 1 0 0 0 1 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Leap 0 0 0 0 1 4 1 34 0 8 9 0 1 0 0 0 0 4 min distance 30 max distance 100 Min % damage bonus 30 % damage bonus 4 Knockback range 2 knockback range per level Leap to target monster (who is frozen in place!) and give it a quick Bash more damage/range 1 1 0 0 *Check ? 50 15 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Concentrate 144 bar 0 0 1 0 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Stun 0 0 0 0 1 4 2 36 0 8 2 0 0 0 0 0 0 70 Damage % base 5 Damage % per level 100 % AC bonus 10 % AC bonus per level 0 ? 0 ? "Attack is uninteruptible (take damage, but don't interupt)" AC/attack bonus while executing 1 1 0 0 *Check ? 60 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Iron Skin 145 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 0 0 0 0 2 4 3 38 1 8 0 0 1 0 1 0 1 30 % AC bonus 10 % AC bonus per level 0 ? 0 ? 0 ? 0 ? PASSIVE 15% AC bonus +10%/level 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Battle Cry 146 bar 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Taunt 0 0 0 0 3 4 1 40 1 8 5 0 1 0 0 0 0 300 duration 60 duration/level -50 % AC bonus -2 % AC bonus per level -25 $ damage bonus -1 % damage bonus per level all monsters in radius have AC=0 and do -25% damage for duration bigger radius/longer duration 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Frenzy 147 bar 0 0 1 3 1js 1ss 1jt 1st xxx xxx seq seq 11 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Double Throw 0 0 0 0 1 5 3 42 0 8 3 0 0 0 0 0 0 90 Damage % base 5 Damage % per level 20 min % run speed increase 200 max % run speed increase 0 min % attack speed increase 50 max % attack speed increase "If Frenzy attack hits. Barbarian is 33% faster (attack and velocity) for 2 seconds, cumulative as long as you keep hitting" "longer duration, hit bonus" 1 1 0 0 *Check ? 100 7 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Increased Speed 148 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Increased Stamina 0 0 0 0 2 5 1 44 1 8 0 0 1 0 1 0 1 7 min % speed increase 50 max % speed increase 0 ? 0 ? 0 ? 0 ? adds to walk and run velocity more adds 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Battle Orders 149 bar 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Shout 0 0 0 0 3 5 2 46 1 8 7 0 1 0 0 0 0 750 duration 150 duration/level 35 Base % increase 3 Increase per level 0 ? 0 ? "Every party member within radius, always hits and for 2X damage (h2h and missiles) for duration" bigger radius/duration 1 1 0 0 *Check ? 50 10 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Grim Ward 150 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 1 1 0 0 0 0 h2h 0 24 0 0 0 0 Find Item 0 0 0 0 3 5 3 48 1 8 4 0 1 0 0 0 0 3 radius 1 radius/level 1000 duration 0 duration/level 10 Distance to run 60 Monster scare duration "Target a corpse and turn it into a ""grim ward"", all monsters with radius turned scaredy cat for duration" bigger radius/duration 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Whirlwind 151 bar 0 0 1 3 !bw xxx xxx xxx xxx xxx seq seq 10 0 1 0 0 0 1 0 0 0 0 0 0 0 none 1 30 0 0 0 0 Leap Attack Concentrate 0 0 0 0 1 6 1 50 0 7 50 1 0 0 0 0 0 -50 Damage percent per attack 8 Damage percent per level 1 Attacks per tick 0 ? 0 ? 0 ? "Barbarian rotates in attack mode (hold contact frame) while travelling to target location, hitting all in path. Uninteruptable and always gets to target, like ""charge""" faster veloctiy/bonus to hit 1 1 0 0 *Check ? 0 5 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Berserk 152 bar 0 0 1 4 !bw xxx xxx xxx xxx xxx attack seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 30 0 0 0 0 Concentrate 0 0 0 0 1 6 2 52 0 8 4 0 1 0 0 0 0 150 Damage % base 15 Damage % per level 25 min vulnerable duration 75 max vulerable duration 0 damage resist bonus 0 ? "(2X mastery curve) hit and damage bonus. Damage is ""Magic-type"". Barbarian has AC=0 and is takes 50% extra damage for duration." less duration 1 1 0 0 *Check ? 100 15 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Natural Resistance 153 bar 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Iron Skin 0 0 0 0 2 6 3 54 1 8 0 0 1 0 1 0 1 0 min % resistance bonus 80 max % resistance bonus 0 ? 0 ? 0 ? 0 ? PASSIVE (1/2 mastery curve) bonus to all resistances curve 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
War Cry 154 bar 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Battle Cry Battle Orders 0 0 0 0 3 6 1 56 1 8 10 1 1 0 0 0 0 25 stun length 5 stun length per level 0 ? 0 ? 0 ? 0 ? all monsters in radius take 20 damage and are stunned for duration more damage/bigger radius 1 1 0 0 *Check ? 0 0 8 0 20 30 6 7 8 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Battle Command 155 bar 0 0 1 9 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Battle Orders 0 0 0 0 3 6 2 58 1 8 11 0 1 0 0 0 0 300 duration 100 duration/level 0 ? 0 ? 0 ? 0 ? add 1 skill level to all party members skills (+10% hit/damage for pets) bigger radius/duration 1 1 0 0 *Check ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Fire Hit 156 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 1 base damage 5 extra per level 50 duration 50 duration/level 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
UnHolyBolt 157 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
SkeletonRaise 158 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 1 1 1 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MaggotEgg 159 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
ShamanFire 160 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MagottUp 161 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MagottDown 162 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MagottLay 163 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
AndrialSpray 164 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Jump 165 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Swarm Move 166 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Nest 167 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Quick Strike 168 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 1 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
VampireFireball 169 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
VampireFirewall 170 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
VampireMeteor 171 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 5 radius of explosion 1 radius/level 30 Frames of fire 15 Frames of fire per level 0 ? 0 ? "giant meteor comes from sky and hits target square 60 frames after cast, immol arrow type" "more damage, more radius" 1 0 0 0 *Check "lightsource target, meteor missile, immolation explosion" 0 0 8 0 0 0 0 0 0 fire 5 10 5 5 5 0 0 0 0 0
|
||||
GargoyleTrap 172 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 18 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
SpiderLay 173 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 30 Slow Duration/Level 75 Duration/Level 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
VampireHeal 174 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
VampireRaise 175 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 1 1 1 1 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Submerge 176 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
FetishAura 177 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 10 Base stat mod 50 Duration/Level 5 Stat Mod/Level 10 Base Range ( + 2/Lvl ) 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
FetishInferno 178 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
ZakarumHeal 179 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 15 ? 30 ? 5 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Emerge 180 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Resurrect 181 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 1 1 1 1 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Bestow 182 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 1 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MissileSkill1 183 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MonTeleport 184 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PrimeLightning 185 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PrimeBolt 186 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PrimeBlaze 187 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 60 duration/level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PrimeFirewall 188 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PrimeSpike 189 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 4 radius 0 radius per level 25 freeze frames 10 freeze frames per level 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PrimeIceNova 190 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PrimePoisonball 191 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PrimePoisonNova 192 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
DiabLight 193 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
DiabCold 194 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 200 Frames 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 mag 1 8 5 5 5 0 0 0 0 0
|
||||
DiabFire 195 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
FingerMageSpider 196 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 30 base frames 10 frames per level 24 unshifted damage per frame 0 ? 0 ? 0 ? "A spider comes out, tracks you, hits you, curses you for xx frames" ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
DiabWall 197 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
DiabRun 198 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 22 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 17 33 9 9 9 0 0 0 0 0 0 0 0 0 0
|
||||
DiabPrison 199 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
PoisonBallTrap 200 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 10 20 10 10 10 0 0 0 0 0 0 0 0 0 0
|
||||
AndyPoisonBolt 201 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
HireableMissile 202 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
DesertTurret 203 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 26 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
ArcaneTower 204 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 27 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MonBlizzard 205 1 1 1 3 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Mosquito 206 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 34 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 2 4 2 2 2 2 4 3 3 3 200 0 0 0 0
|
||||
CursedBallTrapRight 207 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 10 20 5 5 5 0 0 0 0 0 0 0 0 0 0
|
||||
CursedBallTrapLeft 208 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 10 20 5 5 5 0 0 0 0 0 0 0 0 0 0
|
||||
MonFrozenArmor 209 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 30 % AC base 5 % AC per level 3600 Duration 300 Duration per level 30 Freeze Frames 3 Freeze Frames per level ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 STATE_FROZENARMOR 0
|
||||
MonBoneArmor 210 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 20 damage absorbed 10 additional absorbed/level 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MonBoneSpirit 211 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 15 Search range 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MonCurseCast 212 1 1 1 5 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 1 1 2 0 1 8 0 0 1 0 0 0 0 3 radius 1 radius per level 300 duration 60 additional duration/level 100 % additional damage taken 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
HellMeteor 213 1 1 1 4 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
RegurgitatorEat 214 1 1 1 2 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 0 0 0 0 0 1 1 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "Regurgitator eats a corpse, causing blood to fly, and enabling his missile attack" ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
MonFrenzy 215 1 1 1 3 xxx xxx xxx xxx xxx xxx seq a2 0 0 0 1 1 0 1 1 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 200 duration 25 duration/level 30 min % speed increase 110 max % speed increase 0 ? 0 ? ? ? 1 1 0 0 ? ? 10 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
QueenDeath 216 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 41 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Scroll of Identify 217 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 0 0 0 14 0 8 0 0 0 1 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? na 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Book of Identify 218 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 0 0 0 14 0 8 0 0 0 1 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? na 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Scroll of Townportal 219 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 0 0 0 18 0 8 0 0 0 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? na 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Book of Townportal 220 0 0 0 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 0 0 0 18 0 8 0 0 0 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? na 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Expansion 0 0 ? 0 ? 0 0 0
|
||||
Raven 221 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 1 1 2 0 1 8 6 0 1 0 0 0 0 -2 monster level = your level + this + SkillLevel 5 Max ravens 0 ? 0 ? 12 Attacks 1 Attacks per level summon ravens to peck out the eyes of your foes ? 1 0 0 1 ? ? 100 15 8 0 2 4 1 1 1 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Plague Poppy 222 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 0 1 1 3 2 1 8 8 0 1 0 0 0 0 3 Number of vines 1 vines per level 20 % more hitpoints per level 0 ? 0 ? 0 ? a type of vine that spreads disease to enemies it contacts ? 1 0 0 1 ? ? 0 0 0 0 0 0 0 0 0 pois 12 16 7 12 15 100 0 0 0 256 1000
|
||||
Dire Wolf 223 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 22 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 1 2 25 2 1 1 20 1 8 15 0 0 1 0 0 0 25 % stamina increase 25 % hitpoints increase 10 % min speed increase 80 % max speed increase 0 ? 0 ? turns player into a dire wolf ? 1 0 0 1 ? ? 50 15 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Shape Shifting 224 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 Dire Wolf 0 0 0 0 2 1 2 52 0 8 0 0 1 0 0 0 1 1000 Base duration of all forms 500 Bonus duration per level 20 % base hitpoint bonus 5 % hitpoints per level 0 ? 0 ? helps shape-changing abilities ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Firestorm 225 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 15 3 1 1 32 0 8 4 0 1 0 0 0 0 3 Number of missiles 0 Number of missiles per level 0 ? 0 ? 0 ? 0 ? charged bolt like fire missiles ? 1 0 0 1 ? ? 0 0 2 0 0 0 0 0 0 fire 3 6 3 4 5 0 0 0 0 256 1000
|
||||
Oak Sage 226 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 1 2 0 1 2 1 16 1 8 15 1 1 0 0 0 0 30 % hitpoints more per level 5 % hitpoint bonus per level 250 duration of aura 0 ? 0 ? 0 ? spirit pet that increases the hitpoints of you and your pets ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Summon Spirit Wolf 227 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 Raven 0 1 2 0 1 2 2 6 1 8 15 0 1 0 0 0 0 50 % feral add to attack 15 % feral attack per level 5 max wolves 7 defense points per level 50 % defense bonus 15 % defense bonus per level summon a wolf to fight for you ? 1 0 0 1 ? ? 75 12 8 0 2 5 1 2 4 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Mammoth Bear 228 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 22 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 1 2 25 2 2 3 22 1 8 15 0 1 1 0 0 0 50 % Base bonus damage 7 % bonus damage per level 25 % increase armorclass 5 % armor class per level 100 % Base bonus hitpoints 0 % base hitpoints per level turns player into a mammoth bear ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Molten Boulder 229 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 1 none 0 6 0 0 0 0 Firestorm 0 0 0 50 3 2 1 34 0 7 20 1 1 0 0 0 0 7 Explosion Radius 0 ? 0 ? 0 ? 0 ? 0 ? huge boulder that trails fire and knocks back enemies ? 1 0 0 1 ? ? 0 0 2 0 0 0 0 0 0 fire 10 14 7 9 11 0 0 0 0 384 3000
|
||||
Arctic Blast 230 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx seq seq 18 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 0 0 0 0 3 2 3 36 0 4 6 1 1 0 0 0 0 35 base ranged (doubled) 2 level range (doubled) 4 Min Mana to start casting 0 ? 0 ? 0 ? "inferno, only cold" ? 1 0 0 1 ? ? 0 0 2 0 0 0 0 0 0 cold 21 40 16 17 18 100 15 10 10 384 3000
|
||||
Cycle of Life 231 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Plague Poppy 0 1 2 0 1 3 3 8 1 8 10 0 1 0 0 0 0 10 Radius 0 Life steal moved --> 20 % more hitpoints per level 0 ? 3 min % life steal 12 max % life steal a type of vine that eats corpses and gives you health ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Feral Rage 232 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx a1 seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Dire Wolf 1 0 0 0 2 3 1 54 0 8 3 0 1 0 0 0 0 500 duration 2 % life steal per hit 10 Min Speed boost 70 Max Speed boost 50 % damage increase 5 % damage increase per level "as a werewolf, work up a rage which increases speed and life stealing" ? 1 0 0 1 ? ? 20 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Maul 233 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx a1 seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Mammoth Bear 2 0 0 0 2 3 3 56 0 8 3 0 1 0 0 0 0 2 Levels per charge 3 Min charge 25 damage per charge 500 duration 25 min stun duration 150 max stun duration "as a werebear, work up a rage which increases damage and stun length" ? 1 0 0 1 ? ? 20 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Eruption 234 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 1 0 0 1 none 0 12 0 0 0 0 Molten Boulder 0 0 0 50 3 3 1 38 1 8 15 0 1 0 0 0 0 7 radius 6 Missile delay 0 Change duration in Missiles.xls 0 ? 0 ? 0 ? fiery cracks in the ground over an area ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 fire 15 25 6 12 16 0 0 0 0 512 8000
|
||||
Cyclone Armor 235 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Arctic Blast 0 0 0 0 3 3 3 40 1 8 5 1 1 1 0 0 0 40 damage absorbed 12 additional absorbed/level 0 ? 0 ? 0 ? 0 ? wind shield deflects missiles ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Heart of Wolverine 236 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Oak Sage 0 1 2 0 1 4 1 10 1 8 20 1 1 0 0 0 0 20 bonus hitpoints per level 3 Bonus Level 25 % attack rating bonus 7 % attack rating bonus per lvl 20 % damage increase 7 % damage increase per level spirit pet that adds to attack rating of party within a radius ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Summon Fenris 237 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Oak Sage Summon Spirit Wolf 0 1 2 0 1 4 2 12 1 8 20 0 1 0 0 0 0 50 % feral hitpoints 25 % feral hitpoints per level 3 max fenri 500 rage duration 100 % damage with rage 4 defense points per level summon a wolf to fight for you ? 1 0 0 1 ? ? 150 8 8 0 7 12 2 3 6 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Rabies 238 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx sk3 sk3 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Feral Rage 1 0 0 0 2 4 1 24 0 8 10 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "as a dire wolf, bite causes disease" ? 1 0 0 1 ? ? 50 7 3 0 0 0 0 0 0 pois 6 14 4 5 6 100 0 0 0 640 16000
|
||||
Fire Claws 239 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx a2 seq 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Feral Rage Maul 1 2 0 0 2 4 2 26 0 8 4 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "as a bear, inflicts a fiery mauling attack" ? 1 0 0 1 ? ? 50 15 8 8 0 0 0 0 0 fire 15 20 6 12 20 0 0 0 0 640 16000
|
||||
Twister 240 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 1 none 0 18 0 0 0 0 Cyclone Armor 0 0 0 0 3 4 2 42 0 8 7 0 1 0 0 0 0 3 Number of twisters 10 Frames the target is stunned 0 ? 0 ? 0 ? 0 ? "wtwisters that wander aimlessly, enemies are carried along with it." ? 1 0 0 1 ? ? 0 0 7 0 12 16 4 7 9 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Vines 241 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Cycle of Life 0 1 2 0 1 5 3 14 1 8 14 1 1 0 0 0 0 3 Number of vines 1 vines per level 20 % more hitpoints per level 0 Mana steal moved --> 1 min % mana steal 8 max % mana steal vine entity spreads parts of itself underneath enemies to slow them ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Hunger 242 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx sk3 sk3 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Fire Claws 1 2 0 0 2 5 2 58 0 8 3 0 1 0 0 0 0 50 min % life steal 200 max % life steal 50 min % mana steal 200 max % mana steal -75 % damage penalty 0 ? life/mana stealing bite attack ? 1 0 0 1 ? ? 50 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Shock Wave 243 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 24 0 0 0 0 Maul 2 0 0 0 2 5 3 28 0 8 7 0 1 0 0 0 0 40 stun length 15 stun length per level 0 ? 0 ? 0 ? 0 ? "as a mammoth bear, slams ground to create a nova-like shockwave" ? 1 0 0 1 ? ? 0 0 8 0 10 20 3 5 7 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Volcano 244 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 1 0 0 1 none 0 24 0 0 0 0 Eruption 0 0 0 100 3 5 1 44 1 8 25 0 1 0 0 0 0 12 debris range 2 delay between debris 0 ? 0 ? 0 ? 0 ? ground opens up and boulders spew ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 fire 15 20 4 8 12 0 0 0 0 768 32000
|
||||
Tornado 245 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 1 none 0 24 0 0 0 0 Twister 0 0 0 0 3 5 2 46 0 8 10 0 1 0 0 0 0 15 Frame delay between damage 3 Radius of damage 0 ? 0 ? 0 ? 0 ? a big twister that travels in a straighter line ? 1 0 0 1 ? ? 0 0 8 0 25 35 8 14 20 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Spirit of Barbs 246 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Heart of Wolverine 0 1 2 0 1 6 1 4 1 8 25 1 1 0 0 0 0 20 % hitpoints more per level 0 Bonus Level 50 % thorns damage back 10 % thorns damage back per level 3 % damage bounced back vs player 1 % additional bounce back/level vs player spirit pet that adds to damage done by party within radius ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Summon Grizzly 247 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Summon Fenris 0 1 2 0 1 6 2 18 1 8 40 0 1 0 0 0 0 25 % feral add to damage 10 % feral damage per level 0 ? 0 ? 0 ? 0 ? summons a bear to fight for you. ? 1 0 0 1 ? ? 300 0 8 0 30 60 10 15 20 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Fury 248 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 h2h 0 30 0 0 0 0 Rabies 1 0 0 0 2 6 1 30 0 8 4 0 1 0 0 0 0 0 ? 100 % frame rollback 100 % damage percent 17 damage % per level 2 Targets 5 Max targets "as a dire wolf, attacks multiple times on one or adjacent targets" ? 1 0 0 1 ? ? 50 7 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Armageddon 249 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Volcano Hurricane 0 0 0 150 3 6 1 50 1 8 35 0 1 0 0 0 0 250 base duration 0 duration per level 8 radius to drop meteors 6 frame delay between rocks 0 ? 0 ? "combination of volcano, eruption and hurricane" ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 fire 25 75 15 20 25 0 0 0 0 896 64000
|
||||
Hurricane 250 dru 0 0 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Tornado 0 0 0 150 3 6 2 48 1 8 30 0 1 0 0 0 0 250 base duration 0 duration per level 8 radius 15 frames per hit search 0 ? 0 ? massive windstorm that damages all enemies on screen over time ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 cold 25 50 7 10 12 50 0 0 0 896 64000
|
||||
Fire Trauma 251 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 1 1 2 0 0 5 24 1 1 0 0 0 0 0 Range in missile spreadsheet 0 ? 0 ? 0 ? 0 ? 0 ? Throws several fire spikes on the ground ? 1 0 0 1 ? "exploding, sound" 0 0 7 0 0 0 0 0 0 fire 6 8 4 8 10 0 0 0 0 256 1000
|
||||
Claw Mastery 252 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 1 0 0 0 0 0 0 0 0 2 1 2 20 0 8 0 0 1 0 0 0 1 30 Attack rating bonus percent 10 Percent attack rating per level 35 % damage percent 4 damage % per level 0 ? 0 ? passive skill increases attack rating by percent ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Psychic Hammer 253 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 4 1 0 1 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 2 1 3 22 1 6 16 1 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? knock back and injure target with psychic power ? 1 0 0 1 ? "target overlay, player overlay, sound" 0 0 7 0 4 10 2 3 4 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Tiger Strike 254 ass 0 0 1 0 !bw xxx xxx xxx xxx xxx attack a2 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 3 1 2 40 0 8 1 0 1 0 0 0 0 100 % Damage bonus 20 % damage per level 225 duration of all progressive skills 50 tohit bonus for each charge-up 0 ? 0 ? raises HTH damage ? 1 0 0 1 ? player anim 40 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Dragon Talon 255 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx kick a1 19 0 0 1 0 0 1 1 0 0 0 0 0 0 h2h 1 1 0 0 0 0 0 0 0 0 3 1 3 42 0 8 6 0 1 0 0 1 0 0 Percent damage 7 percent damage per level 0 ? 0 ? 0 ? 0 ? kick with knockback ? 1 0 0 1 ? target overlay 40 12 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256 1000
|
||||
Shock Field 256 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 Fire Trauma 0 0 0 0 1 2 1 2 0 8 6 0 1 0 0 0 0 6 Number of missiles 4 Levels per missile 0 ? 0 ? 0 ? 0 ? creates an electric field that remains for a period of time ? 1 0 0 1 ? missile graphic 0 0 7 0 0 0 0 0 0 ltng 10 12 2 5 7 0 0 0 0 384 3000
|
||||
Blade Sentinel 257 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 6 0 0 0 0 0 0 0 50 1 2 3 4 0 8 7 0 1 0 0 0 0 100 duration 0 duration per level 5 Total number assassin traps 3 Total number pet traps 0 ? 0 ? A mechanical device that roams. Proximity detonates it to do explosive damage. ? 1 0 0 1 ? "missile graphic, explosion" 0 0 8 0 6 10 3 4 5 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Quickness 258 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 6 0 0 0 0 Claw Mastery 0 0 0 0 2 2 1 36 1 8 10 0 1 1 0 0 0 15 % min increased walk speed 70 % max increased walk speed 15 min % increased attack speed 60 max % increased attack speed 3000 duration 300 duration per level raises attack speed for a ll physical attacks ? 1 0 0 1 ? cast overlay 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Fists of Fire 259 ass 0 0 1 0 hth ht1 ht2 xxx xxx xxx seq seq 16 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 0 0 0 0 3 2 1 44 0 8 2 0 1 0 0 0 0 3 Radius of explosion 4 Radius of firewall fragments 0 ? 0 ? 0 ? 0 ? 2 handed attack for HTH ? 1 0 0 1 ? player anim 50 10 8 8 0 0 0 0 0 fire 6 10 5 9 16 0 0 0 0 384 3000
|
||||
Dragon Claw 260 ass 0 0 1 0 ht2 xxx xxx xxx xxx xxx seq seq 16 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 6 0 0 0 0 Dragon Talon 0 0 0 0 3 2 3 46 0 8 2 0 1 0 0 1 0 50 % Damage bonus 5 % damage per level 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 1 ? player anim 50 10 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384 3000
|
||||
Charged Bolt Sentry 261 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Shock Field 0 0 0 0 1 3 1 6 1 8 13 0 1 0 0 0 0 5 Shots fired 0 ? 5 Bolts to send out 0 Bolts to send out per level 0 ? 0 ? a trap that emits charged bolts at passing enemies ? 1 0 0 1 ? "generator, missile" 0 0 7 0 0 0 0 0 0 ltng 2 14 3 4 6 0 0 0 0 512 8000
|
||||
Wake of Fire Sentry 262 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Fire Trauma 0 0 0 0 1 3 2 8 1 8 13 0 1 0 0 0 0 5 Shots fired 0 ? 0 ? 0 ? 0 ? 0 ? a trap that sprays fire spikes over a wide area over time ? 1 0 0 1 ? "generator, sound" 0 0 8 0 0 0 0 0 0 fire 5 10 2 3 4 0 0 0 0 512 8000
|
||||
Weapon Block 263 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 range 0 12 0 0 0 0 Claw Mastery 0 0 0 0 2 3 2 26 1 8 0 0 1 0 0 0 1 20 min % dodge 65 max % dodge 0 ? 0 ? 0 ? 0 ? gives a chance to stun on all attacks ? 1 0 0 1 ? "cloud, sound" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Cloak of Shadows 264 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 12 0 0 0 0 Psychic Hammer 0 0 0 0 2 3 3 24 1 8 13 0 1 0 0 0 0 30 min radius of effect 30 max radius of effect 200 duration 0 Duration per level 15 Defense decrease min 60 Defense decrease max Enemies blinded and more succeptable to damage ? 1 0 0 1 ? player overlay 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Cobra Strike 265 ass 0 0 1 0 !bw xxx xxx xxx xxx xxx attack a2 0 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 12 0 0 0 0 Tiger Strike 0 0 0 0 3 3 2 50 0 8 2 0 1 0 0 0 0 40 Base percent life steal 5 Percent life steal per level 0 ? 0 ? 0 ? 0 ? Hit the target HTH to leech some of it's life into yours ? 1 0 0 1 ? target cursor 60 15 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 512 8000
|
||||
Blade Fury 266 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx seq cast 23 0 0 0 0 0 0 0 0 0 0 0 0 0 range 0 18 0 0 0 0 Blade Sentinel Wake of Fire Sentry 0 0 0 0 1 4 3 10 0 3 4 1 1 0 0 0 0 0 "Don't Use, missile range mod" 0 "Don't Use, missile range mod" 3 Min Mana to start casting 3 Frame delay between blades 0 ? 0 ? a spinning blade device that goes before the player ? 1 0 0 1 ? "genarator, missile" 0 0 8 0 8 10 3 5 8 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Fade 267 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Quickness 0 0 0 0 2 4 1 30 1 8 10 0 1 1 0 0 0 10 min Elemental resistance 75 max elemental resist 40 min curse length reduction 90 max curse length reduction 3000 duration 300 Duration per level raises all resistance for a time ? 1 0 0 1 ? missile 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Shadow Warrior 268 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 4 0 0 0 0 0 0 0 0 none 0 18 0 0 0 0 Cloak of Shadows Weapon Block 0 0 0 0 2 4 2 38 1 8 27 2 1 0 0 0 0 12 Pluse % HP per level 15 Plus % To Hit per level 12 Plus % AC per level 0 ? 0 ? 2 item quality per level creates a powerful shadow warrior to fight with you ? 1 0 0 1 ? "cloud, sound" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Claws of Thunder 269 ass 0 0 1 0 hth ht1 ht2 xxx xxx xxx seq seq 16 0 0 1 1 0 0 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Fists of Fire 0 0 0 0 3 4 1 58 0 8 4 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? summon the spirit of the tiger ? 1 0 0 1 ? target overlay 80 15 8 8 0 0 0 0 0 ltng 1 80 10 20 30 0 0 0 0 640 16000
|
||||
Dragon Tail 270 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx kick a1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 h2h 1 18 0 0 0 0 Dragon Claw 0 0 0 0 3 4 3 48 0 8 10 0 1 0 0 1 0 50 Percent area damage min 10 percent area damage per level 6 Radius -40 Attack rate penalty 0 ? 0 ? summersaults to a random nearby empty location ? 1 0 0 1 ? player anim 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640 16000
|
||||
Lightning Sentry 271 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 24 0 0 0 0 Charged Bolt Sentry 0 0 0 0 1 5 1 12 1 8 20 0 1 0 0 0 0 10 Shots fired 0 ? 0 ? 0 ? 0 ? 0 ? a trap that shoots lightning at passing enemies ? 1 0 0 1 ? "generator, missile" 0 0 8 0 0 0 0 0 0 ltng 10 20 5 7 10 0 0 0 0 768 32000
|
||||
Inferno Sentry 272 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 24 0 0 0 0 Wake of Fire Sentry 0 0 0 0 1 5 2 14 1 8 20 0 1 0 0 0 0 10 Shots fired 0 ? 0 ? 0 ? 0 ? 0 ? sprays inferno at passing targets ? 1 0 0 1 ? missile 0 0 4 0 0 0 0 0 0 fire 20 50 18 22 28 0 0 0 0 768 32000
|
||||
Mind Blast 273 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 1 0 0 0 0 0 0 range 0 24 0 0 0 0 Cloak of Shadows 0 0 0 0 2 5 3 34 1 8 15 0 1 0 0 0 0 50 length of stun 5 additional lengh of stun 150 conversion length min 100 conversion length random range 15 chance for conversion 40 max chance for conversion instant blast at the taret spot. The longer it is charged up the more powerful the blast. ? 1 0 0 1 ? "target explosion, player overlay" 0 0 8 0 10 20 2 5 8 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Blades of Ice 274 ass 0 0 1 0 hth ht1 ht2 xxx xxx xxx seq seq 16 0 0 1 1 0 1 1 0 0 0 0 0 0 h2h 1 24 0 0 0 0 Claws of Thunder 0 0 0 0 3 5 1 52 0 8 3 0 1 0 0 0 0 5 Second level radius 6 Third level radius 0 ? 0 ? 0 ? 0 ? Chance of blocking with a HTH armed left hand ? 1 0 0 1 ? player anim 70 10 8 8 0 0 0 0 0 cold 15 35 8 10 20 100 10 10 10 768 32000
|
||||
Dragon Flight 275 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx seq seq 21 0 0 1 0 0 0 0 1 0 0 0 0 0 range 1 24 0 0 0 0 Dragon Tail 0 0 0 50 3 5 3 54 0 8 15 0 1 0 0 0 0 100 % Damage bonus 25 % damage per level 0 ? 0 ? 0 ? 0 ? summersaults through the air and lands to do kick damage ? 1 0 0 1 ? sequence 100 20 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 768 32000
|
||||
Death Sentry 276 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 4 0 0 0 0 0 0 0 0 range 0 30 0 0 0 0 Lightning Sentry 0 0 0 0 1 6 1 16 1 8 20 0 1 0 0 0 0 5 Shots fired 0 ? 0 ? 0 ? 0 ? 0 ? zaps corpses with a corpse explode ? 1 0 0 1 ? "missile, missile fire clouds" 0 0 8 0 0 0 0 0 0 ltng 20 30 4 5 8 0 0 0 0 896 64000
|
||||
Blade Shield 277 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Blade Fury 0 0 0 0 1 6 3 18 1 8 27 2 1 1 0 0 0 500 duration 100 duration per level 25 frame delay between attacks 5 radius to attack in 0 ? 0 ? an armor of blades that slice at enemies that get too close. ? 1 0 0 1 ? ? 0 0 8 0 1 30 5 6 7 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Venom 278 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Fade 0 0 0 0 2 6 1 28 1 8 12 0 1 1 0 0 0 3000 duration 100 duration per level 0 ? 0 ? 0 ? 0 ? unknown ? 1 0 0 1 ? player overlay 0 0 4 0 0 0 0 0 0 pois 12 25 4 6 8 50 0 0 0 896 64000
|
||||
Shadow Master 279 ass 0 0 1 0 xxx xxx xxx xxx xxx xxx cast cast 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 30 0 0 0 0 Shadow Warrior 0 0 0 0 2 6 2 32 1 8 40 0 1 0 0 0 0 15 Pluse % HP per level 15 Plus % To Hit per level 5 Min % resist all 80 Max % resist all 0 ? 3 item quality per level ? ? 1 0 0 1 ? "cloud, sound" 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Royal Strike 280 ass 0 0 1 0 !bw xxx xxx xxx xxx xxx attack a2 0 0 0 1 1 0 0 1 0 0 0 0 0 0 h2h 1 30 0 0 0 0 Cobra Strike Blades of Ice 0 0 0 0 3 6 2 56 0 8 4 0 1 0 0 0 0 8 radius of jump to next target 6 radius of meteor explosion 30 Frames of fire 15 Frames of fire per level 16 chaos ice bolts 0 ? Hit the target HTH to leech some of it's life into yours ? 1 0 0 1 ? target cursor 70 15 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 896 64000
|
||||
Wake Of Destruction Sentry 281 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 6 Number of missiles 2 Number of missiles per level 0 ? 2 Min Range 0 ? 0 ? Monster created by Drop Spike Generator uses this skill "more spikes, lasts longer" 1 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Imp Inferno 282 1 1 1 0 xxx xxx xxx xxx xxx xxx seq cast 6 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 30 base ranged (doubled) 3 level range (doubled) 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 4 0 0 0 0 0 0 fire 12 25 10 10 10 0 0 0 0 0
|
||||
Imp Fireball 283 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? "fires fireballs and it will explode, okay…I don’t really care" ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Baal Taunt 284 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 45 Delay in poison clouds 3 Delay in lightning 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Baal Corpse Explode 285 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk3 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 1 % of base monster HP min damage 1 % of base monster HP max damage 6 radius (half squares) for damage 1 additional radius/level (half squares) for damage 40 Radius of search for corpses 0 ? targeted corpse explodes doing damage to all in radius and destroying remains bigger radius 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Baal Monster Spawn 286 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk3 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Catapult Charged Ball 287 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 4 Charged bolts per level 0 ? 0 ? 0 ? 0 ? 0 ? Launches a lightning ball that creates charged bolts More bolts 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Catapult Spike Ball 288 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 20 Spikes to launch 5 Spikes per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Suck Blood 289 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 25 Percent life to boss 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 1 3 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Cry Help 290 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 0 0 0 0 0 100 Time for minions to attack target 20 Time per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Healing Vortex 291 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 10 20 5 5 5 0 0 0 0 0 0 0 0 0 0
|
||||
Teleport 2 292 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Self-resurrect 293 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Vine Attack 294 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 4 Vines launched 1 vines per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Overseer Whip 295 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 65 Chance Bloodlust 250 Bloodlust duration 80 Velocity change 80 Speed change 50 Armor change 100 Damage change ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Barbs Aura 296 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 1 0 0 30 Radius 0 radius per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Wolverine Aura 297 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 1 0 0 30 Radius 0 radius per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Oak Sage Aura 298 1 1 1 0 xxx xxx xxx xxx xxx xxx seq a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 1 0 0 30 Radius 0 radius per level 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Imp Fire Missile 299 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Impregnate 300 1 1 1 0 xxx xxx xxx xxx xxx xxx sk1 sk1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Siege Beast Stomp 301 0 0 0 0 xxx xxx xxx xxx xxx xxx a2 a2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 8 screen shake magnitude 5 screen shake bulid 20 screen shake duration 15 screen shake fade 25 radius of effect 0 ? Siege beast stomps and hurts stuff no levels 1 0 0 0 ? ? 0 0 8 0 20 60 10 10 10 0 0 0 0 0 0 0 0 0 0
|
||||
MinionSpawner 302 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
CatapultBlizzard 303 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
CatapultPlague 304 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
CatapultMeteor 305 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 5 radius of explosion 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 1 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
BoltSentry 306 1 1 1 0 xxx xxx xxx xxx xxx xxx cast seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 Refer to skill Charged Bolt Sentry 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
CorpseCycler 307 1 1 1 0 xxx xxx xxx xxx xxx xxx seq sk1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
DeathMaul 308 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 1 0 1 ? ? 0 0 8 0 10 20 4 4 4 0 0 0 0 0 0 0 0 0 0
|
||||
Defense Curse 309 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 3 radius 1 radius per level 200 duration 75 additional duration/level -50 % defense change -5 %defense per level ? ? 1 1 0 1 ? ? 0 0 8 0 10 20 4 4 4 0 0 0 0 0 0 0 0 0 0
|
||||
Blood Mana 310 1 1 1 0 xxx xxx xxx xxx xxx xxx cast sk2 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 3 radius 1 radius per level 200 duration 75 additional duration/level 40 Max hitpoints to remove curse 0 ? ? ? 1 1 0 1 ? ? 0 0 8 0 10 20 4 4 4 0 0 0 0 0 0 0 0 0 0
|
||||
inferno sentry 311 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 40 range times two 0 0 0 0 0 0 0 0 0 ? ? ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
death sentry 312 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 1 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 40 % of base monster HP min damage 80 % of base monster HP max damage 10 radius (half squares) 1 additional radius/level (half squares) 0 0 0 ? ? ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
sentry lightning 313 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 10 minimum damage 20 max damage 4 increase in dam/level (min & max) 0 ? 0 ? 0 ? ? ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
fenris rage 314 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 1 0 0 0 0 0 1 0 0 0 1 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 1 0 0 1 ? ? 0 0 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Baal Tentacle 315 1 1 1 0 xxx xxx xxx xxx xxx xxx sk2 sk2 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Baal Nova 316 1 1 1 0 xxx xxx xxx xxx xxx xxx sk3 sk3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 fire 50 75 16 16 16 0 0 0 0 0
|
||||
Baal Inferno 317 1 1 1 0 xxx xxx xxx xxx xxx xxx seq seq 0 0 0 1 0 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 75 base ranged (doubled) 5 level range (doubled) 1 Bolts to send out 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 mag 64 96 64 64 64 0 0 0 0 0
|
||||
Baal Cold Missiles 318 1 1 1 0 xxx xxx xxx xxx xxx xxx a1 a1 0 0 0 1 1 0 0 0 0 0 0 0 0 0 none 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 0 1 0 0 0 0 0 ? 0 ? 0 ? 0 ? 0 ? 0 ? ? ? 0 0 0 0 ? ? 0 0 8 0 0 0 0 0 0 cold 20 40 6 8 11 200 50 50 50 STATE_NONE 0
|
||||
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
|
||||
|
@ -1,51 +1,51 @@
|
||||
Handle Index Song Day Ambience Night Ambience Day Event Night Event Event Delay Indoors Material 1 Material 2 EAX Environ EAX Env Size EAX Env Diff EAX Room Vol EAX Room HF EAX Decay Time EAX Decay HF EAX Reflect EAX Reflect Delay EAX Reverb EAX Rev Delay EAX Room Roll EAX Air Absorb
|
||||
ESOUNDENVIRON_NONE 0 0 0 0 0 0 250 0 0 0 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
|
||||
ESOUNDENVIRON_TOWN_1 1 4672 70 71 0 0 250 0 1 5 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
|
||||
ESOUNDENVIRON_WILDERNESS 2 4678 70 71 192 197 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_TRISTRAM 3 4676 70 71 192 197 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_CAVE 4 4656 54 54 87 87 200 1 1 0 5 11600 1000 -1000 -300 2700 640 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_CRYPT 5 4657 55 55 95 95 500 1 2 0 5 11600 1000 -1240 -300 1700 640 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_MONASTERY 6 4666 63 63 157 157 250 0 1 3 7 19600 1000 -1650 -500 3300 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_COURTYARD 7 4666 63 63 157 157 250 0 1 3 7 19600 1000 -1650 -500 3300 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_BARRACKS 8 4666 52 52 82 82 800 1 1 0 6 21600 1000 -1540 -476 2600 590 -789 20 -289 30 0 -5000
|
||||
ESOUNDENVIRON_CATHEDRAL 9 4666 53 53 77 77 500 1 2 0 7 19600 1000 -1240 -500 4750 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_CATACOMBS 10 4666 52 52 82 82 800 1 2 0 5 11600 1000 -1600 -300 2310 640 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_ANDARIEL_LAIR 11 4666 52 52 82 82 250 1 2 0 6 11600 1000 -1540 -476 2600 590 -789 20 -289 30 0 -5000
|
||||
ESOUNDENVIRON_TOWN_2 12 4673 56 57 172 177 250 0 3 4 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
|
||||
ESOUNDENVIRON_DESERT 13 4658 56 57 100 100 250 0 4 3 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
|
||||
ESOUNDENVIRON_VALLEY_OF_KINGS 14 4677 56 57 100 100 250 0 4 3 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
|
||||
ESOUNDENVIRON_SEWERS 15 4669 65 65 87 87 150 1 2 0 13 13500 1000 -1650 -237 1400 790 -1214 13 395 20 0 -5000
|
||||
ESOUNDENVIRON_HAREM 16 4660 58 58 110 110 750 1 2 0 9 36200 1000 -1700 -698 4000 330 -1166 20 16 30 0 -5000
|
||||
ESOUNDENVIRON_CORRUPT_HAREM 17 4660 58 58 110 110 750 1 2 0 9 36200 1000 -1700 -698 4000 330 -1166 20 16 30 0 -5000
|
||||
ESOUNDENVIRON_BASEMENT 18 4660 52 52 110 110 750 1 2 0 10 50300 1000 -1592 -1000 3300 230 -602 20 198 30 0 -5000
|
||||
ESOUNDENVIRON_TOMBS 19 4671 54 54 138 138 500 1 2 4 9 36200 1000 -1356 -698 3400 330 -1166 20 16 56 0 -5000
|
||||
ESOUNDENVIRON_MAGGOT_LAIR 20 4664 67 67 77 77 500 1 1 0 13 13500 1000 -1500 -237 1800 790 -1214 13 395 20 0 -5000
|
||||
ESOUNDENVIRON_DURIEL_LAIR 21 4671 67 67 77 77 500 1 2 0 13 13500 1000 -1500 -237 2000 790 -1214 13 395 20 0 -5000
|
||||
ESOUNDENVIRON_ARCANE 22 4668 62 62 0 0 250 0 2 0 7 19600 1000 -2091 -500 4000 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_TOWN_3 23 4674 68 69 182 187 500 0 1 0 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_JUNGLE 24 4661 59 60 118 123 300 0 1 0 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_KURAST 25 4662 68 60 128 133 325 0 1 0 17 100000 270 -2175 -2500 1800 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_KURAST_SEWER 26 4663 54 54 95 95 500 1 2 0 5 11600 1000 -1200 -300 2700 640 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_DUNGEON 27 4670 65 65 138 138 250 1 2 0 5 11600 1000 -1240 -300 1700 640 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_TEMPLE 28 4663 53 53 162 162 250 0 2 0 9 36200 1000 -1700 -698 4100 1167 -1166 20 16 30 0 -5000
|
||||
ESOUNDENVIRON_SPIDER_LAIR 29 4670 54 54 72 72 250 1 1 0 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_MEPHISTO_LAIR 30 4663 52 52 162 162 250 1 2 0 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_TOWN_4 31 4675 62 62 0 0 500 0 1 0 5 11600 1000 -1600 -300 2310 640 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_MESA 32 4665 62 62 82 82 300 0 1 0 12 1800 1000 -2300 -300 4700 590 -1217 7 441 11 0 -5000
|
||||
ESOUNDENVIRON_LAVA 33 4665 61 61 143 143 300 0 1 0 12 1800 1000 -2300 -300 4700 590 -1217 7 441 11 0 -5000
|
||||
ESOUNDENVIRON_DIABLO_LAIR 34 4659 61 61 143 143 300 0 1 0 12 1800 1000 -2100 -300 4700 590 -1217 7 441 11 0 -5000
|
||||
ESOUNDENVIRON_GUILD 35 4678 70 71 0 0 250 0 1 5 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
|
||||
ESOUNDENVIRON_XTOWN 36 4683 70 71 0 0 250 0 1 3 0 0 0 -10000 -10000 0 0 0 0 0 0 0 0
|
||||
ESOUNDENVIRON_BARRICADE 37 4681 70 71 72 77 250 0 1 5 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_BARRICADESNOW 38 4681 70 71 72 77 250 0 1 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_ICECAVE1 39 4680 54 54 87 138 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_ICECAVE2 40 4680 54 54 138 87 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_ICECAVE3 41 4680 54 54 87 138 250 1 2 5 5 11600 1000 -1600 -300 2310 330 -711 12 83 17 0 -5000
|
||||
ESOUNDENVIRON_MOUNTAINTOP 42 4681 63 63 72 77 250 0 3 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_XTEMPLEENTRANCE 43 4681 63 63 77 72 500 0 1 6 17 100000 270 -2100 -2500 1490 210 -2780 226 -1434 100 0 -5000
|
||||
ESOUNDENVIRON_XTEMPLE 44 4682 52 52 162 162 250 1 1 2 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_XTEMPLEBOSS 45 4682 52 52 72 72 250 1 1 2 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_XHELL 46 4665 62 62 143 143 300 1 1 0 12 1800 1000 -2300 -300 4700 590 -1217 7 441 11 0 -5000
|
||||
ESOUNDENVIRON_BAALTEMPLE 47 4679 52 52 82 82 250 1 2 5 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_BAALTHRONE 48 4679 52 52 82 82 250 1 2 5 7 19600 1000 -1400 -500 4750 700 -1230 20 -2 29 0 -5000
|
||||
ESOUNDENVIRON_WORLDSTONE 49 4679 53 53 82 82 250 1 2 0 7 19600 1000 -1240 -500 4750 700 -1230 20 -2 29 0 -5000
|
||||
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
|
||||
|
9399
txt/Sounds.txt
9399
txt/Sounds.txt
File diff suppressed because it is too large
Load Diff
351
txt/States.txt
351
txt/States.txt
@ -1,161 +1,190 @@
|
||||
state
|
||||
STATE_NONE
|
||||
STATE_FREEZE
|
||||
STATE_POISON
|
||||
STATE_RESISTFIRE
|
||||
STATE_RESISTCOLD
|
||||
STATE_RESISTLIGHT
|
||||
STATE_RESISTMAGIC
|
||||
STATE_PLAYERBODY
|
||||
STATE_RESISTALL
|
||||
STATE_AMPLIFYDAMAGE
|
||||
STATE_FROZENARMOR
|
||||
STATE_COLD
|
||||
STATE_INFERNO
|
||||
STATE_BLAZE
|
||||
STATE_BONEARMOR
|
||||
STATE_CONCENTRATE
|
||||
STATE_ENCHANT
|
||||
STATE_INNERSIGHT
|
||||
STATE_SKILL_MOVE
|
||||
STATE_WEAKEN
|
||||
STATE_CHILLINGARMOR
|
||||
STATE_STUNNED
|
||||
STATE_SPIDERLAY
|
||||
STATE_DIMVISION
|
||||
STATE_SLOWED
|
||||
STATE_FETISHAURA
|
||||
STATE_SHOUT
|
||||
STATE_TAUNT
|
||||
STATE_CONVICTION
|
||||
STATE_CONVICTED
|
||||
STATE_ENERGYSHIELD
|
||||
STATE_VENOMCLAWS
|
||||
STATE_BATTLEORDERS
|
||||
STATE_MIGHT
|
||||
STATE_PRAYER
|
||||
STATE_HOLYFIRE
|
||||
STATE_THORNS
|
||||
STATE_DEFIANCE
|
||||
STATE_THUNDERSTORM
|
||||
STATE_LIGHTNINGBOLT
|
||||
STATE_BLESSEDAIM
|
||||
STATE_STAMINA
|
||||
STATE_CONCENTRATION
|
||||
STATE_HOLYWIND
|
||||
STATE_HOLYWINDCOLD
|
||||
STATE_CLEANSING
|
||||
STATE_HOLYSHOCK
|
||||
STATE_SANCTUARY
|
||||
STATE_MEDITATION
|
||||
STATE_FANATICISM
|
||||
STATE_REDEMPTION
|
||||
STATE_BATTLECOMMAND
|
||||
STATE_PREVENTHEAL
|
||||
STATE_CONVERSION
|
||||
STATE_UNINTERRUPTABLE
|
||||
STATE_IRONMAIDEN
|
||||
STATE_TERROR
|
||||
STATE_ATTRACT
|
||||
STATE_LIFETAP
|
||||
STATE_CONFUSE
|
||||
STATE_DECREPIFY
|
||||
STATE_LOWERRESIST
|
||||
STATE_OPENWOUNDS
|
||||
STATE_DOPPLEZON
|
||||
STATE_CRITICALSTRIKE
|
||||
STATE_DODGE
|
||||
STATE_AVOID
|
||||
STATE_PENETRATE
|
||||
STATE_EVADE
|
||||
STATE_PIERCE
|
||||
STATE_WARMTH
|
||||
STATE_FIREMASTERY
|
||||
STATE_LIGHTNINGMASTERY
|
||||
STATE_COLDMASTERY
|
||||
STATE_SWORDMASTERY
|
||||
STATE_AXEMASTERY
|
||||
STATE_MACEMASTERY
|
||||
STATE_POLEARMMASTERY
|
||||
STATE_THROWINGMASTERY
|
||||
STATE_SPEARMASTERY
|
||||
STATE_INCREASEDSTAMINA
|
||||
STATE_IRONSKIN
|
||||
STATE_INCREASEDSPEED
|
||||
STATE_NATURALRESISTANCE
|
||||
STATE_FINGERMAGECURSE
|
||||
STATE_NOMANAREGEN
|
||||
STATE_JUSTHIT
|
||||
STATE_SLOWMISSILES
|
||||
STATE_SHIVERARMOR
|
||||
STATE_BATTLECRY
|
||||
STATE_BLUE
|
||||
STATE_RED
|
||||
STATE_DEATH_DELAY
|
||||
STATE_VALKYRIE
|
||||
STATE_FRENZY
|
||||
STATE_BERSERK
|
||||
STATE_REVIVE
|
||||
STATE_ITEMFULLSET
|
||||
STATE_SOURCEUNIT
|
||||
STATE_REDEEMED
|
||||
STATE_HEALTHPOT
|
||||
STATE_HOLYSHIELD
|
||||
STATE_JUST_PORTALED
|
||||
STATE_MONFRENZY
|
||||
STATE_CORPSE_NODRAW
|
||||
STATE_ALIGNMENT
|
||||
STATE_MANAPOT
|
||||
STATE_SHATTER
|
||||
STATE_SYNC_WARPED
|
||||
STATE_CONVERSION_SAVE
|
||||
STATE_PREGNANT
|
||||
STATE_111
|
||||
STATE_RABIES
|
||||
STATE_DEFENSE_CURSE
|
||||
STATE_BLOOD_MANA
|
||||
STATE_BURNING
|
||||
STATE_DRAGONFLIGHT
|
||||
STATE_MAUL
|
||||
STATE_CORPSE_NOSELECT
|
||||
STATE_SHADOWWARRIOR
|
||||
STATE_FERALRAGE
|
||||
STATE_SKILLDELAY
|
||||
STATE_PROGRESSIVE_DAMAGE
|
||||
STATE_PROGRESSIVE_STEAL
|
||||
STATE_PROGRESSIVE_OTHER
|
||||
STATE_PROGRESSIVE_FIRE
|
||||
STATE_PROGRESSIVE_COLD
|
||||
STATE_PROGRESSIVE_LIGHTNING
|
||||
STATE_SHRINE_ARMOR
|
||||
STATE_SHRINE_COMBAT
|
||||
STATE_SHRINE_RESIST_LIGHTNING
|
||||
STATE_SHRINE_RESIST_FIRE
|
||||
STATE_SHRINE_RESIST_COLD
|
||||
STATE_SHRINE_RESIST_POISON
|
||||
STATE_SHRINE_SKILL
|
||||
STATE_SHRINE_MANA_REGEN
|
||||
STATE_SHRINE_STAMINA
|
||||
STATE_SHRINE_EXPERIENCE
|
||||
STATE_FENRIS_RAGE
|
||||
STATE_WOLF
|
||||
STATE_BEAR
|
||||
STATE_BLOODLUST
|
||||
STATE_CHANGECLASS
|
||||
STATE_ATTACHED
|
||||
STATE_HURRICANE
|
||||
STATE_ARMAGEDDON
|
||||
STATE_INVIS
|
||||
STATE_BARBS
|
||||
STATE_WOLVERINE
|
||||
STATE_OAKSAGE
|
||||
STATE_VINE_BEAST
|
||||
STATE_CYCLONEARMOR
|
||||
STATE_CLAWMASTERY
|
||||
STATE_CLOAK_OF_SHADOWS
|
||||
STATE_RECYCLED
|
||||
STATE_WEAPONBLOCK
|
||||
STATE_CLOAKED
|
||||
STATE_QUICKNESS
|
||||
STATE_BLADESHIELD
|
||||
STATE_FADE
|
||||
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
|
||||
|
@ -1,68 +1,157 @@
|
||||
Name Class Mod1 Mod2 Mod3 MinGrp MaxGrp EClass AutoPos Stacks
|
||||
Bishibosh 58 8 9 0 2 2 0 1 0
|
||||
Bonebreak 0 5 8 0 5 5 0 1 0
|
||||
Coldcrow 160 18 0 0 4 4 0 1 0
|
||||
Rakanishu 20 17 6 0 8 8 0 0 0
|
||||
Treehead WoodFist 24 5 6 0 2 2 0 1 0
|
||||
Griswold 365 7 0 0 0 0 0 1 0
|
||||
The Countess 45 9 0 0 6 6 0 1 0
|
||||
Pitspawn Fouldog 11 7 18 0 4 4 0 1 0
|
||||
Flamespike the Crawler 66 9 7 0 6 6 0 1 0
|
||||
Boneash 276 8 5 18 0 0 0 1 0
|
||||
Radament 229 6 0 0 3 3 0 1 0
|
||||
Bloodwitch the Wild 83 5 7 0 5 5 0 1 0
|
||||
Fangskin 75 17 6 0 4 4 0 1 0
|
||||
Beetleburst 92 8 0 0 3 3 0 1 0
|
||||
Leatherarm 97 5 18 0 5 5 0 1 0
|
||||
Coldworm the Burrower 284 18 8 0 0 0 0 0 0
|
||||
Fire Eye 31 9 6 0 3 3 0 1 0
|
||||
Dark Elder 9 6 8 0 4 4 0 1 0
|
||||
The Summoner 250 5 6 0 0 0 0 1 0
|
||||
Ancient Kaa the Soulless 103 25 5 17 3 3 0 1 0
|
||||
The Smith 402 5 0 0 0 0 0 1 0
|
||||
Web Mage the Burning 125 5 7 0 5 5 0 1 0
|
||||
Witch Doctor Endugu 281 8 9 0 6 6 0 1 0
|
||||
Stormtree 129 6 17 0 4 4 0 1 0
|
||||
Sarina the Battlemaid 47 6 27 0 9 9 0 1 0
|
||||
Icehawk Riftwing 138 18 26 0 7 7 0 1 0
|
||||
Ismail Vilehand 345 6 7 0 2 2 0 1 0
|
||||
Geleb Flamefinger 346 5 9 0 2 2 0 1 0
|
||||
Bremm Sparkfist 347 30 18 0 2 2 0 1 0
|
||||
Toorc Icefist 345 18 28 0 0 0 0 1 0
|
||||
Wyand Voidfinger 346 25 26 0 0 0 0 1 0
|
||||
Maffer Dragonhand 347 5 6 0 0 0 0 1 0
|
||||
Winged Death 362 5 7 0 7 7 0 1 0
|
||||
The Tormentor 120 8 9 0 5 5 0 1 0
|
||||
Taintbreeder 299 6 0 0 6 6 0 1 0
|
||||
Riftwraith the Cannibal 308 18 26 0 8 8 0 1 0
|
||||
Infector of Souls 362 6 27 0 9 9 0 1 0
|
||||
Lord De Seis 312 5 30 24 5 5 0 1 0
|
||||
Grand Vizier of Chaos 306 5 9 0 9 9 0 1 0
|
||||
The Cow King 391 8 17 0 6 6 0 1 0
|
||||
Corpsefire 5 27 0 0 5 5 0 1 0
|
||||
The Feature Creep 409 27 30 0 0 0 0 1 0
|
||||
Expansion
|
||||
Siege Boss 43 5 0 0 0 0 1 0 1
|
||||
Ancient Barbarian 1 104 0 0 0 0 0 1 0 1
|
||||
Ancient Barbarian 2 105 0 0 0 0 0 1 0 1
|
||||
Ancient Barbarian 3 106 0 0 0 0 0 1 0 1
|
||||
Axe Dweller 72 8 9 0 2 2 1 0 0
|
||||
Bonesaw Breaker 1 5 8 0 5 5 1 0 0
|
||||
Dac Farren 58 18 0 0 4 4 1 0 0
|
||||
Megaflow Rectifier 17 1 6 0 8 8 1 0 0
|
||||
Eyeback Unleashed 93 5 6 0 2 2 1 0 0
|
||||
Threash Socket 7 7 0 0 0 0 1 0 0
|
||||
Pindleskin 4 9 0 0 6 6 1 0 0
|
||||
Snapchip Shatter 65 7 18 0 4 4 1 0 0
|
||||
Anodized Elite 36 9 7 0 6 6 1 0 0
|
||||
Vinvear Molech 39 8 5 18 0 0 1 0 0
|
||||
Sharp Tooth Sayer 45 6 0 0 3 3 1 0 0
|
||||
Magma Torquer 60 5 7 0 5 5 1 0 0
|
||||
Blaze Ripper 97 17 6 0 4 4 1 0 0
|
||||
Frozenstein 13 18 25 0 5 6 1 0 0
|
||||
Nihlathak 90 0 0 0 0 0 1 0 1
|
||||
Baal Subject 1 62 9 0 0 5 5 0 0 1
|
||||
Baal Subject 2 105 23 0 0 3 3 0 0 1
|
||||
Baal Subject 3 121 17 0 0 5 5 1 0 1
|
||||
Baal Subject 4 122 6 0 0 8 8 1 0 1
|
||||
Baal Subject 5 135 27 0 0 5 5 1 0 1
|
||||
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
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,26 +1,26 @@
|
||||
Name MonType1 MonType2 MonType3 MonType4 MonType5 MonType6 MonType7 MonType8 MonType9 MonType10 MonType11 MonType12 MonType13 MonType14 MonType15 MonType16 MonType17 MonType18 MonType19 MonType20 MonType21 MonType22 MonType23 MonType24 MonType25 MonType26 MonType27 MonType28 MonType29 MonType30 MonType31 MonType32 MonType33 MonType34 MonType35 MonType36
|
||||
the Hammer 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0
|
||||
the Axe 1 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0
|
||||
the Sharp 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 0
|
||||
the Jagged 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 1 1 1 0
|
||||
the Flayer 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 1 0 0
|
||||
the Slasher 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 0 1 1 0 1 0 0 1 0 0 0 1 0 0 0 1 1 0 1 0 0
|
||||
the Impaler 1 0 1 0 1 0 1 0 0 1 1 1 1 1 1 1 1 1 0 1 0 0 1 0 0 0 1 1 1 0 1 1 1 1 1 0
|
||||
the Hunter 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 1 1 0 0 1 1 1 1 1 1
|
||||
the Slayer 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 0 0 1 1 0 0 1 1 1 1 1 1
|
||||
the Mauler 1 1 1 0 1 1 0 0 0 1 1 1 0 0 1 0 1 1 0 1 1 0 1 0 0 0 1 1 0 0 1 1 0 1 0 1
|
||||
the Destroyer 1 1 1 0 1 1 1 1 0 1 1 1 0 1 1 1 1 1 0 1 1 0 1 0 0 0 1 1 0 0 1 1 1 1 1 1
|
||||
theQuick 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 1 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1
|
||||
the Witch 0 0 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 1 0 0
|
||||
the Mad 0 0 0 0 1 0 1 1 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 1 0 1 1 0 0
|
||||
the Wraith 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 0 0 0
|
||||
the Shade 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0
|
||||
the Dead 1 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 1 1 1 0
|
||||
the Unholy 1 1 1 0 1 0 1 1 1 1 0 0 1 0 0 0 0 1 0 1 1 1 0 0 0 1 1 0 1 0 1 0 1 1 1 0
|
||||
the Howler 1 1 1 0 1 1 0 0 1 0 1 1 1 0 0 0 1 1 0 1 1 1 1 0 0 1 1 1 1 0 1 1 0 0 1 1
|
||||
the Grim 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
the Dark 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
the Tainted 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
the Unclean 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
the Hungry 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
the Cold 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
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
|
||||
|
1845
txt/UniqueItems.txt
1845
txt/UniqueItems.txt
File diff suppressed because it is too large
Load Diff
@ -1,54 +1,54 @@
|
||||
Name MonType1 MonType2 MonType3 MonType4 MonType5 MonType6 MonType7 MonType8 MonType9 MonType10 MonType11 MonType12 MonType13 MonType14 MonType15 MonType16 MonType17 MonType18 MonType19 MonType20 MonType21 MonType22 MonType23 MonType24 MonType25 MonType26 MonType27 MonType28 MonType29 MonType30 MonType31 MonType32 MonType33 MonType34 MonType35 MonType36
|
||||
GloomUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Gray 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
DireUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Black 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
ShadowUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Haze 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Wind 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
StormUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Warp 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Night 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Moon 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Star 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Pit 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Fire 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Cold 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Seethe 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
SharpUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
AshUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Blade 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
SteelUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
StoneUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Rust 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Mold 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||
Blight 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 1 0 0 0 0 1 1 0 0
|
||||
Plague 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 0 0 0 0 0 0 0 1 1 0 0
|
||||
Rot 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 1 1 0 0
|
||||
Ooze 0 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 1 0 0 0 1 0 1 1 0 0
|
||||
Puke 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
Snot 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
Bile 0 1 1 0 1 1 0 0 0 1 0 0 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 0
|
||||
BloodUM 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
|
||||
Pulse 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
|
||||
Gut 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
|
||||
Gore 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
|
||||
FleshUM 0 1 1 0 1 1 0 0 0 1 1 1 1 0 1 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 0 1
|
||||
BoneUM 1 1 1 0 1 1 0 0 0 1 1 1 1 0 0 1 0 1 0 1 1 1 1 0 0 0 0 0 0 0 1 1 1 1 1 1
|
||||
SpineUM 1 1 0 0 1 1 1 1 0 1 1 1 1 1 0 1 1 1 0 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 1 1
|
||||
Mind 1 1 0 0 1 1 1 1 0 1 0 0 1 0 0 1 0 1 0 0 1 1 1 0 0 0 1 0 1 0 1 1 1 1 1 0
|
||||
SpiritUM 1 1 0 0 1 1 1 1 1 1 0 0 1 0 0 1 0 1 0 0 1 1 1 0 0 0 1 0 1 0 1 1 1 1 1 0
|
||||
SoulUM 1 1 1 0 1 1 1 1 1 1 0 0 1 0 0 1 0 1 0 0 1 1 1 0 0 0 1 0 1 0 1 1 1 1 1 0
|
||||
Wrath 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 1 0 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 1 1
|
||||
GriefUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Foul 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Vile 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
Sin 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
ChaosUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
DreadUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
DoomUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
BaneUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
DeathUM 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
ViperUM 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Dragon 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
Devil 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
||||
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
|
||||
|
@ -1,70 +1,70 @@
|
||||
Name MonType1 MonType2 MonType3 MonType4 MonType5 MonType6 MonType7 MonType8 MonType9 MonType10 MonType11 MonType12 MonType13 MonType14 MonType15 MonType16 MonType17 MonType18 MonType19 MonType20 MonType21 MonType22 MonType23 MonType24 MonType25 MonType26 MonType27 MonType28 MonType29 MonType30 MonType31 MonType32 MonType33 MonType34 MonType35 MonType36
|
||||
touchUM 0 0 0 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0
|
||||
spellUM 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0
|
||||
feast 1 1 1 0 1 1 0 0 0 1 1 0 1 0 1 0 0 1 1 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 1 1
|
||||
wound 1 1 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 0 0 0 0 1 0 0 1 1 1 1 1 1
|
||||
grin 1 0 1 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0
|
||||
maim 1 1 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 0 0 0 0 1 0 0 1 1 1 1 1 1
|
||||
hack 1 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 0 0 1 0 1 1 1 0
|
||||
biteUM 0 0 1 0 1 1 0 1 1 1 1 0 1 0 1 1 0 1 1 1 0 0 1 0 0 1 1 1 1 0 1 1 1 1 0 1
|
||||
rendUM 0 0 1 0 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0 1 0 0 1 0 0 0 1 1 0 0 1 1 1 1 0 1
|
||||
burn 1 1 1 0 1 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 1 1 1 0 0 1 0 0 0 0 1 0 1 1 1 0
|
||||
rip 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1
|
||||
kill 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 1 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1
|
||||
callUM 0 0 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 0 1 0 1 1 1 0 0 0 1 0 0 1 1 0 0
|
||||
vex 0 0 0 1 0 0 0 1 1 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 0 0
|
||||
jade 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0
|
||||
web 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
||||
shieldUM 1 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 1 0
|
||||
KillerUM 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1
|
||||
RazorUM 0 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 1 0 1 1 1 0 0 1 0 1 1 1 1 1 0 1
|
||||
drinker 0 0 0 1 0 0 1 1 1 1 0 1 0 0 0 1 1 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0 1 1 0 0
|
||||
shifter 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0 1 1 0 0
|
||||
crawler 0 0 0 0 0 0 0 0 1 1 0 0 0 1 1 0 0 1 0 1 0 0 0 0 0 1 1 0 1 0 0 0 1 1 0 0
|
||||
dancer 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0 1 1 0 0
|
||||
bender 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 1 0 1 1 0 0 0 0 1 1 1 0 0 1 1 0 0 1 1 0 0
|
||||
weaverUM 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 1 1 0 0
|
||||
eater 1 1 1 0 1 1 0 1 0 1 1 0 1 0 1 1 0 1 1 1 1 1 1 0 0 0 1 1 1 0 1 1 1 1 0 1
|
||||
widow 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0
|
||||
maggot 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0
|
||||
spawn 0 0 1 0 1 1 0 1 1 0 1 0 1 0 1 1 0 0 0 1 0 0 1 0 0 1 1 1 0 0 1 1 0 0 0 1
|
||||
wight 0 1 1 0 1 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 1 0 0 0 1
|
||||
GrumbleUM 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
GrowlerUM 0 0 0 0 1 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0
|
||||
SnarlUM 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
wolf 0 0 1 0 1 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0
|
||||
crow 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 1 1 0 0
|
||||
hawk 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 1 0 1 1 0 0
|
||||
cloud 0 0 0 1 0 0 0 0 1 1 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1 1 0 0 0 1 0 0 1 1 0 0
|
||||
BangUM 1 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0
|
||||
head 1 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1
|
||||
skullUM 1 1 1 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 0 1 1
|
||||
browUM 1 1 1 0 0 1 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 1 1
|
||||
eyeUM 1 1 1 0 1 1 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 1 1 0 1 1 0 0 1 1
|
||||
maw 0 1 1 0 1 1 0 1 0 0 1 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 1 1 0 1 1 0 0 0 1
|
||||
tongue 0 1 1 0 1 1 0 1 0 0 1 0 1 0 0 1 0 0 1 0 1 1 1 0 1 0 0 1 1 0 1 1 0 0 0 1
|
||||
fangUM 0 0 1 0 1 1 1 1 0 1 1 1 1 0 0 1 1 1 0 0 0 0 1 0 0 0 0 1 1 0 1 1 1 1 0 1
|
||||
hornUM 0 0 1 0 1 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0
|
||||
thorn 0 0 1 0 1 0 1 1 0 1 0 1 1 1 0 1 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 1 1 0 0
|
||||
clawUM 0 0 1 1 1 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 1 1 1 0 0 0 1 1 1 0 1 1 0 0
|
||||
fistUM 1 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 1 0 1 0 1 1 1 0
|
||||
heartUM 0 1 0 0 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 1 1 1 0 0 0 0 0 1 0 1 0 1 1 0 0
|
||||
shankUM 0 0 0 0 1 0 1 0 0 0 0 1 1 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
skinUM 0 1 0 0 1 0 0 1 0 0 0 0 1 1 0 1 0 0 1 0 1 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0
|
||||
wingUM 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 1 1 0 0 0 0 0 0
|
||||
pox 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
fester 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
blister 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
pus 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
SlimeUM 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1
|
||||
drool 0 1 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 1
|
||||
froth 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 1
|
||||
sludge 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
venom 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
poison 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0
|
||||
break 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
shard 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
flame 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
maul 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1
|
||||
thirstUM 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0
|
||||
lust 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 0 1 1 0 0
|
||||
Name
|
||||
touchUM
|
||||
spellUM
|
||||
feast
|
||||
wound
|
||||
grin
|
||||
maim
|
||||
hack
|
||||
biteUM
|
||||
rendUM
|
||||
burn
|
||||
rip
|
||||
kill
|
||||
callUM
|
||||
vex
|
||||
jade
|
||||
web
|
||||
shieldUM
|
||||
KillerUM
|
||||
RazorUM
|
||||
drinker
|
||||
shifter
|
||||
crawler
|
||||
dancer
|
||||
bender
|
||||
weaverUM
|
||||
eater
|
||||
widow
|
||||
maggot
|
||||
spawn
|
||||
wight
|
||||
GrumbleUM
|
||||
GrowlerUM
|
||||
SnarlUM
|
||||
wolf
|
||||
crow
|
||||
hawk
|
||||
cloud
|
||||
BangUM
|
||||
head
|
||||
skullUM
|
||||
browUM
|
||||
eyeUM
|
||||
maw
|
||||
tongue
|
||||
fangUM
|
||||
hornUM
|
||||
thorn
|
||||
clawUM
|
||||
fistUM
|
||||
heartUM
|
||||
shankUM
|
||||
skinUM
|
||||
wingUM
|
||||
pox
|
||||
fester
|
||||
blister
|
||||
pus
|
||||
SlimeUM
|
||||
drool
|
||||
froth
|
||||
sludge
|
||||
venom
|
||||
poison
|
||||
break
|
||||
shard
|
||||
flame
|
||||
maul
|
||||
thirstUM
|
||||
lust
|
||||
|
@ -1,17 +1,17 @@
|
||||
Name Namco MonType1 MonType2 MonType3 MonType4 MonType5 MonType6 MonType7 MonType8 MonType9 MonType10 MonType11 MonType12 MonType13 MonType14 MonType15 MonType16 MonType17 MonType18 MonType19 MonType20 MonType21 MonType22 MonType23 MonType24 MonType25 MonType26 MonType27 MonType28 MonType29 MonType30 MonType31 MonType32 MonType33 MonType34 MonType35 MonType36
|
||||
unused Judge 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Magistrate 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Count 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Earl 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Baron 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Duke 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Lord 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Overlord 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Warlord 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Chief 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Prince 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused King 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Mistress 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0
|
||||
unused Countess 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0
|
||||
unused Duchess 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0
|
||||
unused Lady 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0
|
||||
Name Namco
|
||||
unused Judge
|
||||
unused Magistrate
|
||||
unused Count
|
||||
unused Earl
|
||||
unused Baron
|
||||
unused Duke
|
||||
unused Lord
|
||||
unused Overlord
|
||||
unused Warlord
|
||||
unused Chief
|
||||
unused Prince
|
||||
unused King
|
||||
unused Mistress
|
||||
unused Countess
|
||||
unused Duchess
|
||||
unused Lady
|
||||
|
@ -1,16 +1,16 @@
|
||||
Weapon Class Code
|
||||
None
|
||||
Hand To Hand hth
|
||||
Bow bow
|
||||
1 Hand Swing 1hs
|
||||
1 Hand Thrust 1ht
|
||||
Staff stf
|
||||
2 Hand Swing 2hs
|
||||
2 Hand Thrust 2ht
|
||||
Crossbow xbw
|
||||
Left Jab Right Swing 1js
|
||||
Left Jab Right Thrust 1jt
|
||||
Left Swing Right Swing 1ss
|
||||
Left Swing Right Thrust 1st
|
||||
One Hand-to-Hand ht1
|
||||
Two Hand-to-Hand ht2
|
||||
Weapon Class Code *EOL
|
||||
None 0
|
||||
Hand To Hand hth 0
|
||||
Bow bow 0
|
||||
1 Hand Swing 1hs 0
|
||||
1 Hand Thrust 1ht 0
|
||||
Staff stf 0
|
||||
2 Hand Swing 2hs 0
|
||||
2 Hand Thrust 2ht 0
|
||||
Crossbow xbw 0
|
||||
Left Jab Right Swing 1js 0
|
||||
Left Jab Right Thrust 1jt 0
|
||||
Left Swing Right Swing 1ss 0
|
||||
Left Swing Right Thrust 1st 0
|
||||
One Hand-to-Hand ht1 0
|
||||
Two Hand-to-Hand ht2 0
|
||||
|
616
txt/Weapons.txt
616
txt/Weapons.txt
@ -1,308 +1,308 @@
|
||||
name type code alternateGfx version compactsave rarity spawnable mindam maxdam 1or2handed 2handed 2handmindam 2handmaxdam minmisdam maxmisdam rangeadder speed StrBonus DexBonus reqstr reqdex durability nodurability level levelreq cost gamble cost magic lvl auto prefix OpenBetaGfx normcode ubercode ultracode wclass 2handedwclass component hit class invwidth invheight stackable minstack maxstack spawnstack flippyfile invfile uniqueinvfile setinvfile hasinv gemsockets gemapplytype special useable sound unique transparent transtbl quivered lightradius belt quest missiletype durwarning qntwarning gemoffset bitfield1 CharsiMin CharsiMax CharsiMagicMin CharsiMagicMax CharsiMagicLvl GheedMin GheedMax GheedMagicMin GheedMagicMax GheedMagicLvl AkaraMin AkaraMax AkaraMagicMin AkaraMagicMax AkaraMagicLvl FaraMin FaraMax FaraMagicMin FaraMagicMax FaraMagicLvl LysanderMin LysanderMax LysanderMagicMin LysanderMagicMax LysanderMagicLvl DrognanMin DrognanMax DrognanMagicMin DrognanMagicMax DrognanMagicLvl HraltiMin HraltiMax HraltiMagicMin HraltiMagicMax HratliMagicLvl AlkorMin AlkorMax AlkorMagicMin AlkorMagicMax AlkorMagicLvl OrmusMin OrmusMax OrmusMagicMin OrmusMagicMax OrmusMagicLvl ElzixMin ElzixMax ElzixMagicMin ElzixMagicMax ElzixMagicLvl AshearaMin AshearaMax AshearaMagicMin AshearaMagicMax AshearaMagicLvl CainMin CainMax CainMagicMin CainMagicMax CainMagicLvl HalbuMin HalbuMax HalbuMagicMin HalbuMagicMax HalbuMagicLvl JamellaMin JamellaMax JamellaMagicMin JamellaMagicMax JamellaMagicLvl LarzukMin LarzukMax LarzukMagicMin LarzukMagicMax LarzukMagicLvl DrehyaMin DrehyaMax DrehyaMagicMin DrehyaMagicMax DrehyaMagicLvl MalahMin MalahMax MalahMagicMin MalahMagicMax MalahMagicLvl Source Art Game Art Transform InvTrans SkipName NightmareUpgrade HellUpgrade Nameable PermStoreItem
|
||||
Hand Axe axe hax hax 0 1 1 3 6 100 28 3 0 170 4510 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 2 0 0 27 0 0 5 0 0 0 0 35 7 0 0 3 0 1 0 1 1 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 axe 2ax 1 0
|
||||
Axe axe axe axe 0 1 1 4 11 1 10 100 32 24 7 0 403 8821 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 2ax mpi 1 0
|
||||
Double Axe axe 2ax axe 0 1 1 5 13 1 10 100 43 24 13 0 873 20349 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 1 1 30 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 mpi wax 1 0
|
||||
Military Pick axe mpi axe 0 2 1 7 11 1 -10 100 49 33 26 19 0 1421 38999 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 wax xxx 1 0
|
||||
War Axe axe wax hax 0 2 1 10 18 2 100 67 26 25 0 2123 68075 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 3 20 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Large Axe axe lax lax 0 1 1 1 6 13 1 -10 100 35 30 6 0 354 7624 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 btx gax 1 0
|
||||
Broad Axe axe bax lax 0 1 1 1 10 18 1 100 48 35 12 0 806 18172 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 gax gix 1 0
|
||||
Battle Axe axe btx btx 0 1 1 1 12 32 1 10 100 54 40 17 0 1262 32454 lax btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx invbtxu invbtxu 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 gix xxx 1 0
|
||||
Great Axe axe gax btx 0 2 1 1 9 30 2 -10 100 63 39 50 23 0 1916 58068 lax gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Giant Axe axe gix gix 0 4 1 1 22 45 3 10 100 70 50 27 0 2410 81070 lax gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 20 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 2 2 20 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Wand wand wnd wnd 0 2 1 2 4 100 15 2 0 205 3910 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd invwndu invwndu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 4 6 7 9 1 0 0 0 0 255 0 0 0 0 255 0 0 1 2 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 ywn bwn 1 0
|
||||
Yew Wand wand ywn ywn 0 3 1 2 8 10 100 15 12 0 745 17440 wnd ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 3 5 5 9 1 0 0 0 0 255 0 0 0 0 255 2 3 2 3 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 bwn gwn 1 0
|
||||
Bone Wand wand bwn bwn 0 4 1 3 7 -20 100 15 18 0 1296 34828 wnd bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 3 1 3 1 0 0 0 0 255 0 0 0 0 255 3 5 5 7 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 3 4 2 3 20 0 0 0 0 255 0 0 0 0 255 3 4 2 3 20 1 2 0 xxx xxx 1 0
|
||||
Grim Wand wand gwn bwn 0 5 1 5 11 100 15 26 0 2098 70048 wnd gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 0 0 0 0 0 255 0 0 0 0 255 1 2 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 3 1 2 20 0 0 0 0 255 0 0 0 0 255 1 3 1 2 20 1 2 0 xxx xxx 1 0
|
||||
Club club clb clb 0 1 1 1 6 -10 100 24 1 0 32 3032 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 mac mst 1 0
|
||||
Scepter scep scp mac 0 1 1 6 11 100 25 50 3 0 350 5050 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 2 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 2 4 2 4 1 0 0 0 0 255 0 0 0 0 255 2 3 3 5 1 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 2 2 0 gsc wsp 1 0
|
||||
Grand Scepter scep gsc mac 0 3 1 8 18 1 10 100 37 60 15 0 1109 26635 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 3 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 3 1 3 1 0 0 0 0 255 0 0 0 0 255 3 5 3 5 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 2 1 1 20 0 0 0 0 255 0 0 0 0 255 2 3 1 2 20 2 2 0 xxx wsp 1 0
|
||||
War Scepter scep wsp whm 0 4 1 10 17 1 -10 100 55 70 21 0 2323 61783 mac wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 5 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 3 1 3 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 1 2 1 2 20 0 0 0 0 255 0 0 0 0 255 1 2 1 1 20 2 2 0 xxx xxx 1 0
|
||||
Spiked Club club spc clb 0 1 1 5 8 1 100 36 4 0 225 5400 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 1 0 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 mac mst 1 0
|
||||
Mace mace mac mac 0 1 1 3 10 100 27 60 8 0 463 10204 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 1 0 1 1 1 1 1 1 20 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 mst mau 1 0
|
||||
Morning Star mace mst mac 0 1 1 7 16 1 10 100 36 72 13 0 844 19972 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx fla 1 0
|
||||
Flail mace fla fla 0 1 1 1 24 2 -10 100 41 35 30 19 0 1412 38828 mac fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx gma 1 0
|
||||
War Hammer hamm whm whm 0 4 1 19 29 20 110 53 55 25 0 2081 67025 mac whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 4 0 0 29 0 0 5 0 0 0 0 178 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 mau gma 1 0
|
||||
Maul hamm mau mau 0 1 1 1 30 43 1 10 110 69 60 21 0 1670 48070 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau invmauu invmauu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx mau 1 0
|
||||
Great Maul hamm gma mau 0 1 1 1 38 58 2 20 110 99 60 32 0 3215 121380 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma invgma invgma 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Short Sword swor ssd ssd 0 1 1 2 7 100 24 1 0 72 3072 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 0 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 scm wsd 1 0
|
||||
Scimitar swor scm scm 0 1 1 2 6 -20 100 21 22 5 0 274 6370 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 sbr lsd 1 0
|
||||
Saber swor sbr scm 0 1 1 3 8 -10 100 25 25 32 8 0 466 10228 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr inv9sbu inv9sbu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 flc bsd 1 0
|
||||
Falchion swor flc flc 0 2 1 9 17 20 100 33 32 11 0 683 15513 scm flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc invflcu invflcu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 bsd wsd 1 0
|
||||
Crystal Sword swor crs crs 0 4 1 5 15 1 100 43 20 11 0 2127 31397 ssd crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs invcrsu invcrsu 1 6 0 0 29 0 0 5 0 5 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 1 8 0 xxx xxx 1 0
|
||||
Broad Sword swor bsd bsd 0 1 1 7 14 100 48 32 15 0 1029 25435 ssd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd invbsdu invbsdu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 lsd wsd 1 0
|
||||
Long Sword swor lsd lsd 0 1 1 3 19 1 -10 100 55 39 44 20 0 1520 42900 ssd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd invlsdu invlsdu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 2 20 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 wsd wsd 1 0
|
||||
War Sword swor wsd flc 0 1 1 8 20 1 100 71 45 44 27 0 1997 69919 ssd wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 3 20 0 0 0 0 255 1 1 1 3 20 0 0 0 0 255 0 0 1 2 20 1 2 0 xxx xxx 1 0
|
||||
Two-Handed Sword swor 2hs clm 0 1 1 2 9 1 1 8 17 2 100 35 27 44 10 0 644 13940 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 3 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 clm gis 1 0
|
||||
Claymore swor clm clm 0 2 1 5 12 1 1 13 30 2 10 100 47 50 17 0 1262 32454 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 gis bsw 1 0
|
||||
Giant Sword swor gis gsd 0 2 1 3 16 1 1 9 28 2 100 56 34 50 21 0 1459 43639 clm gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 bsw flb 1 0
|
||||
Bastard Sword swor bsw clm 0 1 1 7 19 1 1 20 28 1 10 100 62 40 24 0 1971 61804 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Flamberge swor flb clm 0 3 1 9 15 1 1 13 26 2 -10 100 70 49 50 27 0 2400 80800 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Great Sword swor gsd gsd 0 4 1 12 20 1 1 25 42 2 10 100 100 60 50 33 0 3451 132883 clm gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 3 20 0 0 0 0 255 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Dagger knif dgr dgr 0 1 1 1 4 -20 50 50 16 3 0 60 4180 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 kri bld 1 0
|
||||
Dirk knif dir dir 0 1 1 3 9 50 50 25 20 9 0 532 11788 dgr dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 kri bld 1 0
|
||||
Kriss knif kri dir 0 3 1 2 11 -20 50 50 45 24 17 0 1227 31859 dgr kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 3 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 2 20 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 1 2 0 xxx xxx 1 0
|
||||
Blade knif bld dgr 0 3 1 4 15 -10 50 50 35 51 24 23 0 1764 54572 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld 1 2 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 2 20 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 1 2 0 xxx xxx 1 0
|
||||
Throwing Knife tkni tkf dgr 0 1 1 2 3 4 9 50 50 21 4 2 0 6 3512 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 75 75 flptkn invtkn 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 1 2 0 0 255 1 2 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 2 2 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 1 2 0 bkf bkf 1 0
|
||||
Throwing Axe taxe tax hax 0 1 1 4 7 8 12 10 50 50 40 6 7 0 11 6077 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 32 32 flptax invtax 0 primarily thrown 0 27 0 0 5 0 0 0 0 35 7 5 0 3 1 1 0 0 255 1 2 0 0 20 0 0 0 0 255 1 1 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 2 2 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 2 2 0 bal bal 1 0
|
||||
Balanced Knife tkni bkf dgr 0 1 1 1 8 6 11 -20 50 50 51 8 13 0 15 9195 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 60 60 flpbkf invbkf 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 0 1 2 3 0 0 1 1 2 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 1 2 0 xxx xxx 1 0
|
||||
Balanced Axe taxe bal hax 0 2 1 5 10 12 15 -10 50 50 57 10 16 0 35 11060 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 24 24 flpbal invbal 0 primarily thrown 0 29 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 0 1 2 3 0 0 1 1 2 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 2 2 0 xxx xxx 1 0
|
||||
Javelin jave jav jav 0 1 1 1 5 6 14 2 -10 50 50 2 1 0 12 3012 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 60 60 flpjav invjav 0 primarily thrown 0 14 0 0 5 0 0 0 0 1 7 2 0 3 2 3 0 0 255 1 2 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 1 2 0 0 1 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 5 8 0 glv glv 1 0
|
||||
Pilum jave pil pil 0 1 1 4 9 7 20 2 50 50 45 3 10 0 18 7680 jav pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 50 50 flppil invpil 0 primarily thrown 0 14 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 1 1 0 0 20 0 0 0 0 255 1 1 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 1 2 0 0 1 1 1 0 0 255 1 1 0 0 255 1 1 1 2 20 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 5 8 0 tsp tsp 1 0
|
||||
Short Spear jave ssp jav 0 1 1 2 13 10 22 2 10 50 50 40 40 4 15 0 24 10360 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 40 40 flpssp invssp 0 primarily thrown 0 14 0 0 5 0 0 0 0 1 7 2 0 3 0 0 0 0 255 0 0 1 2 30 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 1 2 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 5 8 0 tsp tsp 1 0
|
||||
Glaive jave glv glv 0 1 1 5 17 16 22 2 20 50 50 52 35 5 23 0 36 14828 jav glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 15 40 40 flpglv invglv 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 2 2 30 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 1 2 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 1 2 0 xxx xxx 1 0
|
||||
Throwing Spear jave tsp pil 0 1 1 5 15 12 30 2 -10 50 50 65 6 29 0 48 18392 jav tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 0 primarily thrown 0 14 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 1 1 0 0 255 0 0 0 0 255 0 0 1 1 20 1 1 1 1 20 1 2 0 xxx xxx 1 0
|
||||
Spear spea spr spr 0 1 1 1 3 15 3 -10 100 20 30 5 0 300 6500 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 3 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 spt pik 1 0
|
||||
Trident spea tri tri 0 1 1 1 9 15 3 100 38 24 35 9 0 683 13147 spr tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 4 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 spt pik 1 0
|
||||
Brandistock spea brn brn 0 1 1 1 7 17 4 -20 100 40 50 28 16 0 1162 29092 spr brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn 1 5 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx pik 1 0
|
||||
Spetum spea spt tri 0 1 1 1 15 23 4 100 54 35 28 20 0 1672 45940 spr spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Pike spea pik pik 0 1 1 1 14 63 4 20 100 60 45 25 24 0 2023 63052 spr pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 30 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 255 0 1 0 0 255 1 1 1 2 20 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Bardiche pole bar hal 0 1 1 1 1 27 2 10 100 40 50 5 0 302 6510 hal bar 9b7 7b7 stf stf 5 2hsl 2 4 flpbar invbar 1 3 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 1 1 1 1 1 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 hal wsc 1 0
|
||||
Voulge pole vou hal 0 1 1 1 6 21 2 100 50 50 11 0 611 14721 hal vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 4 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 hal wsc 1 0
|
||||
Scythe pole scy scy 0 4 1 1 8 20 1 -10 100 41 41 65 15 0 848 22720 hal scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy invscyu invscyu 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 20 0 0 0 0 255 0 0 0 1 255 0 0 1 1 20 0 0 0 0 255 0 0 0 1 1 0 0 0 0 255 1 1 1 1 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 hal wsc 1 0
|
||||
Poleaxe pole pax hal 0 1 1 1 18 39 3 10 100 62 65 21 0 1701 48721 hal pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Halberd pole hal pax 0 3 1 1 12 45 4 100 75 47 55 29 0 2706 95474 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
War Scythe pole wsc scy 0 3 1 1 15 36 4 -10 100 80 80 55 34 0 3388 134692 hal wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 2 20 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Short Staff staf sst bst 0 1 1 1 1 5 1 -10 100 20 1 0 168 3168 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 2 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 5 9 5 9 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 cst bst 1 0
|
||||
Long Staff staf lst sst 0 1 1 1 2 8 1 100 30 8 0 463 10204 bst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 3 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 2 3 1 2 1 0 0 0 0 255 0 0 0 0 255 1 2 0 2 1 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 cst wst 1 0
|
||||
Gnarled Staff staf cst cst 0 2 1 1 4 12 1 10 100 35 12 0 766 17692 bst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 3 5 5 9 1 0 0 0 0 255 0 0 0 0 255 2 3 2 5 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx wst 1 0
|
||||
Battle Staff staf bst sst 0 2 1 1 6 13 1 100 40 17 0 1223 31791 bst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 3 1 3 1 0 0 0 0 255 0 0 0 0 255 2 3 2 5 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 3 1 3 20 0 0 0 0 255 0 0 0 0 255 2 3 1 4 20 5 8 0 xxx xxx 1 0
|
||||
War Staff staf wst lst 0 3 1 1 12 28 1 20 100 50 24 0 1985 62140 bst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst 1 6 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 1 2 20 0 0 0 0 255 0 0 0 0 255 1 3 1 4 20 5 8 0 xxx xxx 1 0
|
||||
Short Bow bow sbw sbw 0 1 1 1 1 4 5 100 15 20 1 1 0 100 3100 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 3 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 1 1 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 hbw cbw 1 0
|
||||
Hunter's Bow bow hbw sbw 0 1 1 1 2 6 -10 100 28 32 1 5 0 350 6750 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 1 1 1 1 1 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 lbw sbb 1 0
|
||||
Long Bow bow lbw lbw 0 1 1 1 3 10 100 22 19 28 1 8 0 490 10420 sbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 cbw lbb 1 0
|
||||
Composite Bow bow cbw lbw 0 2 1 1 4 8 -10 100 25 35 36 1 12 0 727 17224 sbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 0 255 0 1 0 0 255 0 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 sbb swb 1 0
|
||||
Short Battle Bow bow sbb sbb 0 2 1 1 5 11 100 30 40 40 1 18 0 1045 30310 sbw sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb invsbbu invsbbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 lbb lwb 1 0
|
||||
Long Battle Bow bow lbb lbb 0 2 1 1 3 18 10 100 40 50 44 1 23 0 1545 49535 sbw lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 swb lwb 1 0
|
||||
Short War Bow bow swb sbb 0 3 1 1 6 14 100 35 55 48 1 27 0 2500 83500 sbw swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 1 0 1 1 0 0 0 0 255 1 1 1 1 20 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 5 8 0 lwb xxx 1 0
|
||||
Long War Bow bow lwb lbb 0 3 1 1 3 23 10 100 50 65 55 1 31 0 3575 128825 sbw lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 1 1 1 2 20 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Light Crossbow xbow lxb lxb 0 1 1 1 6 9 -10 100 21 27 30 1 6 0 803 10318 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb invlxbu invlxbu 1 3 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 mxb rxb 1 0
|
||||
Crossbow xbow mxb lxb 0 1 1 1 9 16 100 40 33 40 1 15 0 2345 45175 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb invmxbu invmxbu 1 4 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 1 1 1 0 1 1 1 1 0 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 hxb hxb 1 0
|
||||
Heavy Crossbow xbow hxb hxb 0 2 1 1 14 26 10 100 60 40 50 1 24 0 4096 112804 lxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 6 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 0 1 1 0 1 0 1 1 0 0 0 0 255 1 1 1 1 20 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Repeating Crossbow xbow rxb hxb 0 3 1 1 6 12 -40 100 40 50 40 1 33 0 2739 109387 lxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 5 0 fires 5 shots before reload 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 1 1 20 0 1 1 2 20 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Rancid Gas Potion tpot gps gpl 0 2 1 0 1 2 1 32 24 200 0 gpl gps 1ht 1ht 5 hth 1 1 1 3 25 6 flpgpl invgpl 0 0 22 0 0 5 0 1 0 0 49 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
|
||||
Oil Potion tpot ops opl 0 2 1 0 1 2 1 28 20 150 0 opl ops 1ht 1ht 5 hth 1 1 1 3 25 6 flpopl invopl 0 0 22 0 0 5 0 1 0 0 46 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
|
||||
Choking Gas Potion tpot gpm gps 0 3 1 0 1 2 1 20 16 120 0 gps gpm 1ht 1ht 5 hth 1 1 1 3 25 6 flpgps invgpm 0 0 22 0 0 5 0 1 0 0 48 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
|
||||
Exploding Potion tpot opm opl 0 3 1 0 1 2 1 16 12 80 0 opl opm 1ht 1ht 5 hth 1 1 1 3 25 6 flpops invopm 0 0 22 0 0 5 0 1 0 0 45 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
|
||||
Strangling Gas Potion tpot gpl gps 0 4 1 0 1 2 1 8 6 40 0 gps gpl 1ht 1ht 5 hth 1 1 1 3 25 6 flpgps invgps 0 0 22 0 0 5 0 1 0 0 47 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
|
||||
Fulminating Potion tpot opl ops 0 4 1 0 1 2 1 4 0 24 0 ops opl 1ht 1ht 5 hth 1 1 1 3 25 6 flpops invops 0 0 22 0 0 5 0 1 0 0 44 7 3 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 xxx xxx 0 1
|
||||
decoy dagger knif d33 dgr 0 99 1 2 -20 100 15 20 10 0 0 666 0 dgr d33 1ht 1ht 5 1ht 1 2 flpd33 invd33 0 0 27 1 0 5 0 0 0 18 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0
|
||||
Gidbinn knif g33 dgr 0 99 3 7 -20 100 15 25 30 0 0 666 0 dgr g33 1ht 1ht 5 1ht 1 2 flpg33 invg33 0 0 27 1 0 5 0 0 0 18 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 0 0
|
||||
Wirt's Leg club leg clb 0 1 2 8 -10 100 66 0 0 20 0 clb leg 1hs 1hs 5 1hsl 1 3 flpleg invleg 1 3 0 0 28 0 0 5 0 0 0 1 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Horadric Malus hamm hdm whm 0 0 6 15 20 100 15 15 55 0 0 600 0 whm hdm 1hs 1hs 5 1hsl 1 2 flphmr invhmr 0 0 29 1 0 5 0 0 0 4 0 7 0 0 0 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 0 0
|
||||
Hellforge Hammer hamm hfh whm 0 0 6 15 100 55 0 0 600 0 whm hfh 1hs 1hs 5 1hsl 2 3 flphmr invhfh 1 5 0 0 29 1 0 5 0 0 0 25 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 1 xxx xxx 0 0
|
||||
Horadric Staff staf hst bst 0 2 1 12 20 2 100 30 50 0 0 1223 0 bst hst stf stf 5 staf 1 4 flphst invhst 0 magically charged 0 28 1 0 5 0 0 0 10 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 1 xxx xxx 0 0
|
||||
Staff of the Kings staf msf bst 0 2 1 10 15 2 100 25 45 0 0 1223 0 bst msf stf stf 5 staf 1 3 flpmsf invmsf 0 magically charged 0 28 1 0 5 0 0 0 10 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 1 xxx xxx 0 0
|
||||
Hatchet axe 9ha hax 0 1 1 10 21 100 25 25 28 31 19 810 43110 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 2 0 0 27 0 0 5 0 0 0 0 35 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Cleaver axe 9ax axe 0 1 1 10 33 1 10 100 68 24 34 22 1509 70806 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Twin Axe axe 92a axe 0 1 1 13 38 1 10 100 85 24 39 25 2919 135841 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Crowbill axe 9mp axe 0 2 1 14 34 1 -10 100 94 70 26 43 25 4563 220209 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Naga axe 9wa hax 0 2 1 16 45 2 100 121 26 48 25 6669 346612 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Military Axe axe 9la lax 0 1 1 1 14 34 1 -10 100 73 30 34 22 1362 65808 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Bearded Axe axe 9ba lax 0 1 1 1 21 49 1 100 92 35 38 25 2718 124784 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Tabar axe 9bt btx 0 1 1 1 24 77 1 10 100 101 40 42 25 4086 195112 btx btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx inv9btu inv9btu 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Gothic Axe axe 9ga btx 0 2 1 1 18 70 2 -10 100 115 79 50 46 25 6048 303708 btx gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Ancient Axe axe 9gi gix 0 4 1 1 43 85 3 10 100 125 50 51 25 7530 412030 gix gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix inv9giu inv9giu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Burnt Wand wand 9wn wnd 0 2 1 8 18 100 25 15 31 19 915 46365 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Petrified Wand wand 9yw ywn 0 3 1 8 24 10 100 25 15 38 25 2535 117830 ywn ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Tomb Wand wand 9bw bwn 0 4 1 10 22 -20 100 25 15 43 25 4188 204084 bwn bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Grave Wand wand 9gw bwn 0 5 1 13 29 100 25 15 49 25 6594 350106 bwn gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn inv9gwu inv9gwu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Cudgel club 9cl clb 0 1 1 6 21 -10 100 25 24 30 18 396 29380 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Rune Scepter scep 9sc mac 0 1 1 13 24 100 58 50 31 19 1350 59850 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 2 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Holy Water Sprinkler scep 9qs mac 0 3 1 14 36 1 10 100 76 60 40 25 3627 167580 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 3 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Divine Scepter scep 9ws whm 0 4 1 16 38 1 -10 100 103 70 45 25 7269 352105 whm wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 5 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Barbed Club club 9sp clb 0 1 1 13 25 1 100 30 36 32 20 975 49700 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Flanged Mace mace 9ma mac 0 1 1 15 23 100 61 60 35 23 1689 79115 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Jagged Star mace 9mt mac 0 1 1 20 31 1 10 100 74 72 39 25 2832 132448 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Knout mace 9fl fla 0 1 1 13 35 2 -10 100 82 73 30 43 25 4536 219048 fla fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Battle Hammer hamm 9wh whm 0 4 1 35 58 20 110 100 55 48 25 6543 340564 whm whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 4 0 0 29 0 0 5 0 0 0 0 178 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
War Club hamm 9m9 mau 0 1 1 1 53 78 1 10 110 124 60 45 25 5310 263950 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Martel de Fer hamm 9gm mau 0 1 1 1 61 99 2 20 110 169 60 53 25 9945 556085 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma inv9gmu inv9gmu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Gladius swor 9ss ssd 0 1 1 8 22 100 25 24 30 18 516 32980 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Cutlass swor 9sm scm 0 1 1 8 21 -30 100 25 52 22 43 25 1122 72246 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Shamshir swor 9sb scm 0 1 1 10 24 -10 100 58 58 32 35 23 1698 79430 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr invsbru invsbru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Tulwar swor 9fc flc 0 2 1 16 35 20 100 70 42 32 37 25 2349 107913 flc flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Dimensional Blade swor 9cr crs 0 4 1 13 35 1 100 85 60 20 37 25 6681 268197 crs crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs inv9cru inv9cru 1 6 0 0 29 0 0 5 0 5 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 8 0 xxx xxx 1 0
|
||||
Battle Sword swor 9bs bsd 0 1 1 16 34 100 92 43 32 40 25 3387 157980 bsd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Rune Sword swor 9ls lsd 0 1 1 10 42 1 -10 100 103 79 44 44 25 4860 238340 lsd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd inv9lsu inv9lsu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Ancient Sword swor 9wd flc 0 1 1 18 43 1 100 127 88 44 49 25 6291 335259 flc wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Espadon swor 92h clm 0 1 1 8 26 1 1 18 40 2 100 73 61 44 37 25 2232 103584 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 3 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Dacian Falx swor 9cm clm 0 2 1 13 30 1 1 26 61 2 10 100 91 20 50 42 25 4086 195112 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Tusk Sword swor 9gs gsd 0 2 1 10 37 1 1 19 58 2 100 104 71 50 45 25 4677 235465 gsd gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Gothic Sword swor 9b9 clm 0 1 1 14 40 1 1 39 60 1 10 100 113 20 40 48 25 6213 324724 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Zweihander swor 9fb clm 0 3 1 19 35 1 1 29 54 2 -10 100 125 94 50 49 25 7500 394500 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb inv9fbu inv9fbu 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Executioner Sword swor 9gd gsd 0 4 1 24 40 1 1 47 80 2 10 100 170 110 50 54 25 10653 604762 gsd gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Poignard knif 9dg dgr 0 1 1 6 18 -20 50 50 25 16 31 19 480 32880 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Rondel knif 9di dir 0 1 1 10 26 50 50 25 58 20 36 24 1896 88756 dir dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Cinquedeas knif 9kr dir 0 3 1 15 31 -20 50 50 25 88 24 42 25 3981 190702 dir kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 3 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Stilleto knif 9bl dgr 0 3 1 19 36 -10 50 50 47 97 24 46 25 5592 282732 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld inv9blu inv9blu 1 2 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Battle Dart tkni 9tk dgr 0 1 1 8 16 11 24 50 50 25 52 6 31 19 80 20480 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 75 75 flptkn invtkn 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Francisca taxe 9ta hax 0 1 1 11 22 18 33 10 50 50 25 80 15 34 22 90 22560 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 32 32 flptax invtax 0 primarily thrown 0 27 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
War Dart tkni 9bk dgr 0 1 1 6 24 14 27 -20 50 50 25 97 20 39 25 100 25900 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 60 60 flpbkf invbkf 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Hurlbat taxe 9b8 hax 0 2 1 13 27 24 34 -10 50 50 25 106 16 41 25 110 27510 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 24 24 flpbal invbal 0 primarily thrown 0 29 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
War Javelin jave 9ja jav 0 1 1 6 19 14 32 2 -10 50 50 25 25 10 30 18 120 21100 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 60 60 flpjav invjav 0 primarily thrown 0 14 0 0 5 0 0 0 0 1 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Great Pilum jave 9pi pil 0 1 1 11 26 16 42 2 50 50 25 88 12 37 25 125 25625 pil pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 50 50 flppil invpil 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Simbilan jave 9s9 jav 0 1 1 8 32 27 50 2 10 50 50 80 80 14 40 25 135 27900 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 40 40 flpssp invssp 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Spiculum jave 9gl glv 0 1 1 13 38 32 60 2 20 50 50 98 73 16 46 25 145 32170 glv glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 8 20 20 flpglv invglv 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Harpoon jave 9ts pil 0 1 1 13 35 18 54 2 -10 50 50 25 118 18 51 25 150 35650 pil tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
War Spear spea 9sr spr 0 1 1 1 10 37 3 -10 100 25 25 30 33 21 1200 58600 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 3 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Fuscina spea 9tr tri 0 1 1 1 19 37 3 100 77 25 35 36 24 2349 105064 tri tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 4 0 2 square reach 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
War Fork spea 9br brn 0 1 1 1 16 40 4 -20 100 80 95 28 41 25 3786 178226 brn brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn inv9bru inv9bru 1 5 0 2 square reach 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Yari spea 9st tri 0 1 1 1 29 59 4 100 101 28 44 25 5316 258404 tri spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 6 0 2 square reach 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Lance spea 9p9 pik 0 1 1 1 27 114 4 20 100 110 88 25 47 25 6369 325343 pik pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 6 0 3 square reach 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Lochaber Axe pole 9b7 hal 0 1 1 1 6 58 2 10 100 80 50 33 21 1206 58798 hal bar 9b7 7b7 stf stf 5 2hsl 2 4 flpbar invbar 1 3 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Bill pole 9vo hal 0 1 1 1 14 53 2 100 95 50 37 25 2133 99921 pax vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 4 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Battle Scythe pole 9s8 scy 0 4 1 1 18 45 1 -10 100 82 82 65 40 25 2844 136260 scy scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy inv9s8u inv9s8u 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Partizan pole 9pa hal 0 1 1 1 34 75 3 10 100 113 67 65 35 23 5403 209105 pax pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Bec-de-Corbin pole 9h9 pax 0 3 1 1 13 85 4 100 133 91 55 51 25 8418 457318 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Grim Scythe pole 9wc scy 0 3 1 1 30 70 4 -10 100 140 140 55 55 25 10464 605520 scy wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Jo Staff staf 8ss bst 0 1 1 1 6 21 1 -10 100 25 20 30 18 804 41620 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 2 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Quarterstaff staf 8ls sst 0 1 1 1 8 26 1 100 25 30 35 23 1689 79115 sst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 3 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Cedar Staff staf 8cs cst 0 2 1 1 11 32 1 10 100 25 35 38 25 2598 120224 cst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Gothic Staff staf 8bs sst 0 2 1 1 14 34 1 100 25 40 42 25 3969 190198 sst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Rune Staff staf 8ws lst 0 3 1 1 24 58 1 20 100 25 50 47 25 6255 319985 lst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst inv8wsu inv8wsu 1 6 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Edge Bow bow 8sb sbw 0 1 1 1 6 19 5 100 25 43 20 1 30 18 600 35500 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 3 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Razor Bow bow 8hb sbw 0 1 1 1 8 22 -10 100 25 62 32 1 33 21 1350 63550 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Cedar Bow bow 8lb lbw 0 1 1 1 10 29 100 53 49 28 1 35 23 1770 81950 lbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw inv8lbu inv8lbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Double Bow bow 8cb lbw 0 2 1 1 11 26 -10 100 58 73 36 1 39 25 2481 118759 lbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Short Siege Bow bow 8s8 sbb 0 2 1 1 13 30 100 65 80 40 1 43 25 3435 171705 sbb sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb inv8s8u inv8s8u 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Long Siege Bow bow 8l8 lbb 0 2 1 1 10 42 10 100 80 95 44 1 46 25 4935 252510 lbb lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Rune Bow bow 8sw sbb 0 3 1 1 14 35 100 73 103 48 1 49 25 7800 409200 sbb swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Gothic Bow bow 8lw lbb 0 3 1 1 10 50 10 100 95 118 55 1 52 25 11025 601800 lbb lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Arbalest xbow 8lx lxb 0 1 1 1 14 27 -10 100 52 61 30 1 34 22 2709 111606 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb inv8lxu inv8lxu 1 3 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Siege Crossbow xbow 8mx lxb 0 1 1 1 20 42 100 80 70 40 1 40 25 7335 315900 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb inv8mxu inv8mxu 1 4 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Balista xbow 8hx hxb 0 2 1 1 33 55 10 100 110 80 50 1 47 25 12588 617636 hxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 6 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Chu-Ko-Nu xbow 8rx hxb 0 3 1 1 14 32 -60 100 80 95 40 1 54 25 8517 489418 hxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 5 0 fires 5 shots before reload 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
KhalimFlail mace qf1 fla 0 1 1 15 -10 100 41 35 30 0 0 1412 0 fla fla 1hs 1hs 5 1hsl 2 3 flpfla invqf1 1 3 0 0 29 1 0 5 0 0 0 17 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 1 xxx xxx 0 0
|
||||
SuperKhalimFlail mace qf2 fla 0 1 1 15 -10 100 30 0 0 1412 0 fla fla 1hs 1hs 5 1hsl 2 3 flpfla invqf2 1 3 0 0 29 1 0 5 0 0 0 17 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 1 xxx xxx 0 0
|
||||
Expansion 0
|
||||
Katar h2h ktr ktr 100 2 1 4 7 -10 50 50 20 20 24 1 0 72 3072 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 2 0 1 1 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 wrb btl 1 0
|
||||
Wrist Blade h2h wrb ktr 100 2 1 5 9 50 50 35 35 28 9 0 220 8980 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 1 1 0 1 1 0 0 1 1 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 axf skr 1 0
|
||||
Hatchet Hands h2h axf axf 100 3 1 2 15 10 50 50 40 40 32 12 0 466 14092 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 ces clw 1 0
|
||||
Cestus h2h ces axf 100 3 1 7 15 50 50 45 45 36 15 0 514 17710 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 clw btl 1 0
|
||||
Claws h2h clw clw 100 4 1 8 15 -10 50 50 50 50 26 18 0 683 23794 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 1 1 1 20 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 btl xxx 1 0
|
||||
Blade Talons h2h btl clw 100 4 1 10 14 -20 50 50 55 55 30 21 0 847 30787 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 0 0 0 0 255 0 0 0 0 255 0 1 0 0 255 0 0 0 0 255 1 1 1 1 20 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Scissors Katar h2h skr skr 100 5 1 9 17 -10 50 50 60 60 34 24 0 1029 39196 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 1 0 1 20 1 1 1 1 20 1 1 1 1 20 0 0 1 1 20 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Quhab h2h 9ar ktr 100 2 1 11 24 50 50 65 65 24 26 18 2334 75475 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Wrist Spike h2h 9wb ktr 100 2 1 13 27 -10 50 50 73 73 28 32 24 4203 151820 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Fascia h2h 9xf axf 100 3 1 8 37 10 50 50 80 80 32 34 26 4203 162402 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Hand Scythe h2h2 9cs axf 100 3 1 16 37 -10 50 50 88 88 36 36 28 2964 128070 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Greater Claws h2h2 9lw clw 100 4 1 18 37 -20 50 50 95 95 26 39 31 5061 216598 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Greater Talons h2h2 9tw clw 100 4 1 21 35 -30 50 50 103 103 30 41 33 9291 401483 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Scissors Quhab h2h2 9qr skr 100 5 1 19 40 50 50 110 110 34 43 35 14223 635589 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Suwayyah h2h2 7ar ktr 100 2 1 17 40 50 50 120 120 24 54 54 16205 909790 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Wrist Sword h2h2 7wb ktr 100 2 1 19 44 -10 50 50 123 117 28 59 59 16996 1031483 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
War Fist h2h2 7xf axf 100 3 1 13 56 10 50 50 126 122 32 61 61 15784 987682 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Battle Cestus h2h2 7cs axf 100 3 1 23 56 -10 50 50 113 129 36 62 62 15537 999800 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Feral Claws h2h2 7lw clw 100 4 1 25 56 -20 50 50 115 134 26 64 64 16035 1058673 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Runic Talons h2h2 7tw clw 100 4 1 29 54 -30 50 50 105 140 30 66 66 17396 1175806 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Scissors Suwayyah h2h2 7qr skr 100 5 1 27 59 50 50 130 123 34 67 67 18002 1246759 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Tomahawk axe 7ha hax 100 1 1 18 47 100 87 95 28 58 58 14033 849047 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 2 0 0 27 0 0 5 0 0 0 0 35 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Small Crescent axe 7ax axe 100 1 1 22 57 1 10 100 95 83 24 61 61 15781 987500 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Ettin Axe axe 72a axe 100 1 1 19 60 1 10 100 121 69 24 64 64 13496 901743 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
War Spike axe 7mp axe 100 2 1 13 46 1 -10 100 144 55 26 67 67 16108 1119388 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Berserker Axe axe 7wa hax 100 2 1 3 64 2 100 149 26 71 71 15957 1170947 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 6 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Feral Axe axe 7la lax 100 1 1 1 10 88 2 -15 100 165 45 30 61 61 17430 1087265 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Silver Edged Axe axe 7ba lax 100 1 1 1 39 87 2 100 130 87 35 64 64 18956 1237956 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Decapitator axe 7bt btx 100 1 1 1 40 107 2 10 100 175 40 67 67 16377 1124820 btx btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx invbtxu invbtxu 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Champion Axe axe 7ga btx 100 2 1 1 26 82 2 -10 100 143 65 50 70 70 19245 1374777 btx gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Glorious Axe axe 7gi gix 100 4 1 1 16 132 2 10 100 155 73 50 73 73 18431 1389195 gix gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Polished Wand wand 7wn wnd 100 2 1 18 33 100 35 61 15 58 58 9412 579874 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ghost Wand wand 7yw ywn 100 3 1 20 42 10 100 25 75 15 64 64 8786 592161 ywn ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Lich Wand wand 7bw bwn 100 4 1 9 31 -20 100 33 67 15 67 67 9208 655363 bwn bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Unearthed Wand wand 7gw bwn 100 5 1 22 28 100 42 56 15 72 72 7687 589917 bwn gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn 0 magically charged 0 30 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Truncheon club 7cl clb 100 1 1 14 45 -10 100 57 65 29 58 58 1488 116810 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Mighty Scepter scep 7sc mac 100 1 1 24 47 100 158 76 50 58 58 20199 1208216 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 2 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Seraph Rod scep 7qs mac 100 3 1 27 51 1 10 100 123 105 60 65 65 23501 1562565 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 3 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Caduceus scep 7ws whm 100 4 1 19 40 1 -10 100 117 117 70 69 69 22870 1609187 whm wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 5 0 magically charged 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Tyrant Club club 7sp clb 100 1 1 13 52 1 100 103 52 45 59 59 6793 432787 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 2 0 0 28 0 0 5 0 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Reinforced Mace mace 7ma mac 100 1 1 22 43 100 112 62 60 61 61 14765 937481 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac inv7mas 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Devil Star mace 7mt mac 100 1 1 28 52 1 10 100 97 85 72 64 64 15674 1041679 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Scourge mace 7fl fla 100 1 1 3 57 2 -10 100 88 122 65 67 67 19532 1349652 fla fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 5 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Legendary Mallet hamm 7wh whm 100 4 1 46 53 20 110 145 65 71 71 14388 1059548 whm whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 4 0 0 29 0 0 5 0 0 0 0 178 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Ogre Maul hamm 7m7 mau 100 1 1 1 66 91 1 10 110 176 60 69 69 12156 872600 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Thunder Maul hamm 7gm mau 100 1 1 1 9 172 2 20 110 218 60 75 75 17821 1371994 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Falcata swor 7ss ssd 100 1 1 22 42 100 95 143 24 58 58 15680 932850 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Ataghan swor 7sm scm 100 1 1 8 38 -20 100 102 137 22 67 67 16103 1119051 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Elegant Blade swor 7sb scm 100 1 1 12 40 -10 100 105 134 32 61 61 22785 1428706 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr invsbru invsbru 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Hydra Edge swor 7fc flc 100 2 1 24 63 20 100 112 119 32 63 63 18479 1193432 flc flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Phase Blade swor 7cr crs 100 4 1 24 27 1 -30 100 106 145 0 1 63 63 25680 1645295 crs crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs invcrsu invcrsu 1 6 0 0 29 0 0 5 0 5 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 8 0 xxx xxx 1 0
|
||||
Conquest Sword swor 7bs bsd 100 1 1 18 47 100 130 88 32 65 65 19044 1272860 bsd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Cryptic Sword swor 7ls lsd 100 1 1 5 54 1 -10 100 125 110 44 68 68 14306 1009308 lsd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd invlsdu invlsdu 1 4 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Mythical Sword swor 7wd flc 100 1 1 13 52 1 100 157 40 44 72 72 20187 1486792 flc wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Legend Sword swor 72h clm 100 1 1 20 38 1 1 40 66 2 -15 100 127 130 44 63 63 23789 1526634 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 3 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Highland Blade swor 7cm clm 100 2 1 23 47 1 1 47 78 2 -5 100 134 125 50 67 67 14391 992751 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Balrog Blade swor 7gs gsd 100 2 1 12 58 1 1 31 94 2 100 142 119 50 69 69 16331 1159631 gsd gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Champion Sword swor 7b7 clm 100 1 1 7 51 1 1 21 84 2 -10 100 156 107 40 71 71 19939 1453669 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 4 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Colossal Sword swor 7fb clm 100 3 1 18 64 1 1 46 98 2 10 100 170 91 50 72 72 24800 1817775 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb 1 5 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Colossus Blade swor 7gd gsd 100 4 1 16 54 1 1 17 107 2 5 100 188 65 50 76 76 22259 1720804 gsd gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 6 0 0 16 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Bone Knife knif 7dg dgr 100 1 1 11 36 -20 50 50 65 75 16 58 58 12429 755614 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Mithral Point knif 7di dir 100 1 1 23 43 50 50 50 98 20 62 62 17988 1148756 dir dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 1 0 0 27 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Fanged Knife knif 7kr dir 100 3 1 4 49 -20 50 50 54 86 24 67 67 13729 948728 dir kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 3 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Legend Spike knif 7bl dgr 100 3 1 11 48 -10 50 50 76 67 24 70 70 16076 1154532 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld 1 2 0 0 29 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Flying Knife tkni 7tk dgr 100 1 1 22 32 16 76 50 50 50 104 6 58 58 215 44148 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 75 75 flptkn invtkn 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Flying Axe taxe 7ta hax 100 1 1 17 49 25 85 10 50 50 50 129 15 61 61 230 46665 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 32 32 flptax invtax 0 primarily thrown 0 27 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 2 0 xxx xxx 1 0
|
||||
Winged Knife tkni 7bk dgr 100 1 1 5 33 3 67 -20 50 50 50 136 20 64 64 248 50559 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 60 60 flpbkf invbkf 0 primarily thrown 0 27 0 0 5 0 0 0 0 36 7 4 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Winged Axe taxe 7b8 hax 100 2 1 3 40 7 68 -10 50 50 50 142 16 66 66 251 51878 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 24 24 flpbal invbal 0 primarily thrown 0 29 0 0 5 0 0 0 0 35 7 5 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Hyperion Javelin jave 7ja jav 100 1 1 19 26 27 50 2 -10 50 50 100 124 10 58 58 211 43382 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 60 60 flpjav invjav 0 primarily thrown 0 14 0 0 5 0 0 0 0 1 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Stygian Pilum jave 7pi pil 100 1 1 14 42 21 72 2 50 50 128 125 12 63 63 220 47680 pil pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 50 50 flppil invpil 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Balrog Spear jave 7s7 jav 100 1 1 12 50 20 82 2 10 50 50 133 116 14 65 65 232 50080 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 40 40 flpssp invssp 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ghost Glaive jave 7gl glv 100 1 1 19 64 50 75 2 20 50 50 55 156 16 70 70 241 53999 glv glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 8 20 20 flpglv invglv 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Winged Harpoon jave 7ts pil 100 1 1 21 29 18 67 2 -10 50 50 75 145 18 73 73 199 53701 pil tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 0 primarily thrown 0 14 0 0 5 0 0 0 0 37 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Hyperion Spear spea 7sr spr 100 1 1 1 54 62 3 -10 100 155 120 30 60 60 15900 982400 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 3 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Stygian Pike spea 7tr tri 100 1 1 1 37 89 3 100 168 97 35 62 62 17347 1109014 tri tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 4 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Mancatcher spea 7br brn 100 1 1 1 26 80 4 -20 100 143 134 28 66 66 14658 999138 brn brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn 1 5 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ghost Spear spea 7st tri 100 1 1 1 40 85 4 100 122 163 28 68 68 17248 1209364 tri spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
War Pike spea 7p7 pik 100 1 1 1 54 106 4 20 100 165 105 25 70 70 16070 1166542 pik pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ogre Axe pole 7o7 hal 100 1 1 1 33 113 2 10 100 195 75 50 60 60 9871 622167 hal bar 9b7 7b7 stf stf 5 2hsl 2 4 flpbar invbar 1 3 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Colossus Voulge pole 7vo hal 100 1 1 1 7 119 2 100 210 55 50 63 63 12822 838455 pax vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 4 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Thresher pole 7s8 scy 100 4 1 1 16 91 1 -10 100 152 118 65 65 65 11086 755590 scy scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy invscyu invscyu 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Cryptic Axe pole 7pa hal 100 1 1 1 59 98 3 10 100 165 103 65 61 61 16509 1044301 pax pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 5 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Great Poleaxe pole 7h7 pax 100 3 1 1 19 107 4 100 179 99 55 73 73 21554 1617955 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Giant Thresher pole 7wc scy 100 3 1 1 20 97 4 -10 100 188 88 55 76 76 17692 1389640 scy wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 6 0 2 square reach 0 40 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 2 2 0 xxx xxx 1 0
|
||||
Walking Stick staf 6ss bst 100 1 1 1 45 52 1 -10 100 50 35 20 58 58 8154 500105 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 2 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Stalagmite staf 6ls sst 100 1 1 1 44 61 1 100 50 42 30 61 61 5367 361853 sst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 3 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Elder Staff staf 6cs cst 100 2 1 1 56 68 1 10 100 50 37 35 64 64 9048 608798 cst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Shillelah staf 6bs sst 100 2 1 1 23 83 1 100 50 48 40 67 67 7986 566819 sst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 4 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Archon Staff staf 6ws lst 100 3 1 1 66 77 1 20 100 50 32 50 70 70 10001 740195 lst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst 1 6 0 magically charged 0 28 0 0 5 0 0 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Spider Bow bow 6sb sbw 100 1 1 1 21 49 5 100 67 188 20 1 58 58 21091 1243982 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 3 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Blade Bow bow 6hb sbw 100 1 1 1 14 43 -10 100 76 181 32 1 60 60 21350 1308037 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Shadow Bow bow 6lb lbw 100 1 1 1 13 58 100 82 195 28 1 61 61 25610 1601737 lbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Great Bow bow 6cb lbw 100 2 1 1 3 54 -10 100 89 165 36 1 64 64 17743 1174612 lbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 4 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Diamond Bow bow 6s7 sbb 100 2 1 1 33 38 100 77 172 40 1 67 67 24605 1690811 sbb sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb invsbbu invsbbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Crusader Bow bow 6l7 lbb 100 2 1 1 15 63 10 100 116 134 44 1 70 70 18105 1295547 lbb lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ward Bow bow 6sw sbb 100 3 1 1 18 53 100 107 143 48 1 72 72 15042 1117638 sbb swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Hydra Bow bow 6lw lbb 100 3 1 1 10 68 10 100 134 161 55 1 74 74 19375 1473250 lbb lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Pellet Bow xbow 6lx lxb 100 1 1 1 14 73 -10 100 82 155 30 1 61 61 19512 1213226 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb invlxbu invlxbu 1 3 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Gorgon Crossbow xbow 6mx lxb 100 1 1 1 15 87 100 116 103 40 1 65 65 22305 1484825 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb invmxbu invmxbu 1 4 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Colossus Crossbow xbow 6hx hxb 100 2 1 1 28 91 10 100 152 77 50 1 70 70 26065 1868691 hxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 6 0 reload lag between shots 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Demon Crossbow xbow 6rx hxb 100 3 1 1 23 30 -60 100 121 98 40 1 76 76 25851 1992000 hxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 5 0 fires 5 shots before reload 0 8 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Eagle Orb orb ob1 ob1 100 2 1 2 5 -10 100 20 1 0 168 3168 5 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Sacred Globe orb ob2 ob1 100 3 1 3 8 -10 100 30 8 0 463 10204 5 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Smoked Sphere orb ob3 ob3 100 3 1 4 10 100 35 12 9 766 17692 5 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Clasped Orb orb ob4 ob4 100 4 1 5 12 100 40 17 13 1223 31791 5 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Dragon Stone orb ob5 ob4 100 5 1 8 18 10 100 50 24 18 1985 62140 5 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Stag Bow abow am1 am1 100 3 1 1 7 13 100 35 55 48 1 18 14 2500 56500 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 20 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Reflex Bow abow am2 am2 100 3 1 1 5 22 10 100 50 65 55 1 24 18 3575 100300 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Maiden Spear aspe am3 am3 100 3 1 1 18 20 4 100 54 35 28 18 10 1672 41596 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Maiden Pike aspe am4 pik 100 3 1 1 23 55 4 10 100 60 45 25 24 18 2023 63052 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Maiden Javelin ajav am5 pil 100 3 1 6 14 5 24 2 -10 100 65 6 24 18 48 15652 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 0 primarily thrown 0 28 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Glowing Orb orb ob6 ob1 100 2 1 8 21 -10 100 20 20 20 26 18 804 36078 5 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Crystalline Globe orb ob7 ob1 100 3 1 10 26 -10 100 20 20 30 31 23 1689 70359 5 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Cloudy Sphere orb ob8 ob3 100 3 1 11 29 100 20 20 35 34 26 2598 107832 5 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Sparkling Ball orb ob9 ob4 100 4 1 13 32 100 20 20 40 38 30 3969 171204 5 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Swirling Crystal orb oba ob4 100 5 1 18 42 10 100 20 20 50 43 35 6255 292965 5 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ashwood Bow abow am6 am1 100 3 1 1 16 40 100 73 103 48 1 39 31 7800 322050 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ceremonial Bow abow am7 am2 100 3 1 1 13 50 10 100 95 118 55 1 43 35 11025 498075 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ceremonial Spear aspe am8 am3 100 3 1 1 34 45 4 100 101 73 28 39 31 5316 226416 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ceremonial Pike aspe am9 pik 100 3 1 1 42 101 4 20 100 110 88 25 43 35 6369 297867 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Ceremonial Javelin ajav ama pil 100 3 1 14 35 12 43 2 -10 100 118 6 43 35 444 43092 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 0 primarily thrown 0 28 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
Heavenly Stone orb obb ob1 100 2 1 18 46 -10 100 44 44 20 54 54 21051 1172988 5 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Eldritch Orb orb obc ob1 100 3 1 20 54 -10 100 44 44 30 58 58 19367 1159752 5 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Demon Heart orb obd ob3 100 3 1 23 59 100 44 44 35 61 61 22094 1369437 5 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Vortex Orb orb obe ob4 100 4 1 25 64 100 44 44 40 63 63 25207 1630074 5 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Dimensional Shard orb obf ob4 100 5 1 33 79 10 100 44 44 50 67 67 20065 1385496 5 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 4 0 0 42 0 0 5 0 1 0 0 0 7 0 0 5 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Matriarchal Bow abow amb am1 100 3 1 1 18 58 100 107 187 48 1 64 64 23700 1548275 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 5 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Grand Matron Bow abow amc am2 100 3 1 1 14 70 10 100 134 161 55 1 67 67 33375 2280593 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 6 0 0 5 0 0 5 1 0 0 0 0 7 0 0 1 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Matriarchal Spear aspe amd am3 100 3 1 1 45 87 4 100 141 145 28 64 64 16248 1072278 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 6 0 2 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
Matriarchal Pike aspe ame pik 100 3 1 1 61 116 4 20 100 152 125 25 67 67 19407 1341245 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 6 0 3 square reach 0 28 0 0 5 0 0 0 0 0 7 0 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 5 8 0 xxx xxx 1 0
|
||||
MatriarchalJavelin ajav amf pil 100 3 1 13 44 24 63 2 -10 100 107 161 6 67 67 302 56434 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 0 primarily thrown 0 28 0 0 5 0 0 0 0 371 7 2 0 3 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 0 0 0 0 255 1 2 0 xxx xxx 1 0
|
||||
name type type2 code alternateGfx namestr version compactsave rarity spawnable mindam maxdam 1or2handed 2handed 2handmindam 2handmaxdam minmisdam maxmisdam rangeadder speed StrBonus DexBonus reqstr reqdex durability nodurability level levelreq cost gamble cost magic lvl auto prefix OpenBetaGfx normcode ubercode ultracode wclass 2handedwclass component hit class invwidth invheight stackable minstack maxstack spawnstack flippyfile invfile uniqueinvfile setinvfile hasinv gemsockets gemapplytype special useable dropsound dropsfxframe usesound unique transparent transtbl quivered lightradius belt quest questdiffcheck missiletype durwarning qntwarning gemoffset bitfield1 CharsiMin CharsiMax CharsiMagicMin CharsiMagicMax CharsiMagicLvl GheedMin GheedMax GheedMagicMin GheedMagicMax GheedMagicLvl AkaraMin AkaraMax AkaraMagicMin AkaraMagicMax AkaraMagicLvl FaraMin FaraMax FaraMagicMin FaraMagicMax FaraMagicLvl LysanderMin LysanderMax LysanderMagicMin LysanderMagicMax LysanderMagicLvl DrognanMin DrognanMax DrognanMagicMin DrognanMagicMax DrognanMagicLvl HraltiMin HraltiMax HraltiMagicMin HraltiMagicMax 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 DrehyaMin DrehyaMax DrehyaMagicMin DrehyaMagicMax DrehyaMagicLvl MalahMin MalahMax MalahMagicMin MalahMagicMax MalahMagicLvl Source Art Game Art Transform InvTrans SkipName NightmareUpgrade HellUpgrade Nameable PermStoreItem
|
||||
Hand Axe axe hax hax hax 0 3 1 3 6 100 14 3 0 0 0 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 4 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 35 7 0 0 3 2 2 0 axe 2ax 1 0
|
||||
Axe axe axe axe axe 0 4 1 4 11 1 10 100 32 12 7 0 0 0 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 2ax mpi 1 0
|
||||
Double Axe axe 2ax axe 2ax 0 4 1 5 13 1 10 100 43 12 13 0 0 0 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 mpi wax 1 0
|
||||
Military Pick axe mpi axe mpi 0 4 1 7 11 1 -10 100 49 33 13 19 0 0 0 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 wax xxx 1 0
|
||||
War Axe axe wax hax wax 0 4 1 10 18 2 100 67 13 25 0 0 0 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Large Axe axe lax lax lax 0 4 1 1 6 13 1 -10 100 35 15 6 0 0 0 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 btx gax 1 0
|
||||
Broad Axe axe bax lax bax 0 4 1 1 10 18 1 100 48 18 12 0 0 0 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 gax gix 1 0
|
||||
Battle Axe axe btx btx btx 0 4 1 1 12 32 1 10 100 54 20 17 0 0 0 lax btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx invbtxu invbtxu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 5 2 0 gix xxx 1 0
|
||||
Great Axe axe gax btx gax 0 4 1 1 9 30 2 -10 100 63 39 25 23 0 0 0 lax gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Giant Axe axe gix gix gix 0 4 1 1 22 45 3 10 100 70 25 27 0 0 0 lax gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Wand wand wnd wnd wnd 0 1 1 2 4 100 8 2 0 0 0 1 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd invwndu invwndu 1 3 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 5 8 0 ywn bwn 1 0
|
||||
Yew Wand wand ywn ywn ywn 0 1 1 2 8 10 100 8 12 0 0 0 1 wnd ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 1 3 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 5 8 0 bwn gwn 1 0
|
||||
Bone Wand wand bwn bwn bwn 0 1 1 3 7 -20 100 8 18 0 0 0 1 wnd bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 1 2 0 xxx xxx 1 0
|
||||
Grim Wand wand gwn bwn gwn 0 1 1 5 11 100 8 26 0 0 0 1 wnd gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 1 2 0 xxx xxx 1 0
|
||||
Club club clb clb clb 0 1 1 1 6 -10 100 12 1 0 0 0 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 4 0 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 1 5 2 0 mac mst 1 0
|
||||
Scepter scep scp mac scp 0 2 1 6 11 100 25 25 3 0 0 0 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 4 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 gsc wsp 1 0
|
||||
Grand Scepter scep gsc mac gsc 0 4 1 8 18 1 10 100 37 30 15 0 0 0 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 5 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx wsp 1 0
|
||||
War Scepter scep wsp whm wsp 0 4 1 10 17 1 -10 100 55 35 21 0 0 0 mac wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 7 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Spiked Club club spc clb spc 0 3 1 5 8 1 100 18 4 0 0 0 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 4 0 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 1 2 2 0 mac mst 1 0
|
||||
Mace mace mac mac mac 0 4 1 3 10 100 27 30 8 0 0 0 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 mst mau 1 0
|
||||
Morning Star mace mst mac mst 0 4 1 7 16 1 10 100 36 36 13 0 0 0 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx fla 1 0
|
||||
Flail mace fla fla fla 0 4 1 1 24 2 -10 100 41 35 15 19 0 0 0 mac fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx gma 1 0
|
||||
War Hammer hamm whm whm whm 0 4 1 19 29 20 110 53 28 25 0 0 0 mac whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 178 7 0 0 3 2 2 0 mau gma 1 0
|
||||
Maul hamm mau mau mau 0 4 1 1 30 43 1 10 110 69 30 21 0 0 0 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau invmauu invmauu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx mau 1 0
|
||||
Great Maul hamm gma mau gma 0 3 1 1 38 58 2 20 110 99 30 32 0 0 0 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma invgma invgma 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Short Sword swor ssd ssd ssd 0 3 1 2 7 100 12 1 0 0 0 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 scm wsd 1 0
|
||||
Scimitar swor scm scm scm 0 3 1 2 6 -20 100 21 11 5 0 0 0 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 sbr lsd 1 0
|
||||
Saber swor sbr scm sbr 0 3 1 3 8 -10 100 25 25 16 8 0 0 0 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr inv9sbu inv9sbu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 flc bsd 1 0
|
||||
Falchion swor flc flc flc 0 4 1 9 17 20 100 33 16 11 0 0 0 scm flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc invflcu invflcu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 bsd wsd 1 0
|
||||
Crystal Sword swor crs crs crs 0 2 1 5 15 1 100 43 10 11 0 0 0 ssd crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs invcrsu invcrsu 1 7 0 0 item_sword 12 item_sword 0 0 5 0 5 0 0 7 0 0 1 1 8 0 xxx xxx 1 0
|
||||
Broad Sword swor bsd bsd bsd 0 4 1 7 14 100 48 16 15 0 0 0 ssd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd invbsdu invbsdu 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 lsd wsd 1 0
|
||||
Long Sword swor lsd lsd lsd 0 4 1 3 19 1 -10 100 55 39 22 20 0 0 0 ssd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd invlsdu invlsdu 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 wsd wsd 1 0
|
||||
War Sword swor wsd flc wsd 0 4 1 8 20 1 100 71 45 22 27 0 0 0 ssd wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Two-Handed Sword swor 2hs clm 2hs 0 4 1 2 9 1 1 8 17 2 100 35 27 22 10 0 0 0 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 5 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 clm gis 1 0
|
||||
Claymore swor clm clm clm 0 4 1 5 12 1 1 13 30 2 10 100 47 25 17 0 0 0 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 gis bsw 1 0
|
||||
Giant Sword swor gis gsd gis 0 4 1 3 16 1 1 9 28 2 100 56 34 25 21 0 0 0 clm gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 bsw flb 1 0
|
||||
Bastard Sword swor bsw clm bsw 0 4 1 7 19 1 1 20 28 1 10 100 62 20 24 0 0 0 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Flamberge swor flb clm flb 0 4 1 9 15 1 1 13 26 2 -10 100 70 49 25 27 0 0 0 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Great Sword swor gsd gsd gsd 0 4 1 12 20 1 1 25 42 2 10 100 100 60 25 33 0 0 0 clm gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Dagger knif dgr dgr dgr 0 2 1 1 4 -20 75 75 8 3 0 0 0 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 3 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 kri bld 1 0
|
||||
Dirk knif dir dir dir 0 2 1 3 9 75 75 25 10 9 0 0 0 dgr dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 3 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 kri bld 1 0
|
||||
Kriss knif kri dir kri 0 2 1 2 11 -20 75 75 45 12 17 0 0 0 dgr kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 5 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Blade knif bld dgr bld 0 3 1 4 15 -10 75 75 35 51 12 23 0 0 0 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld 1 4 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Throwing Knife tkni tkf dgr tkf 0 2 1 2 3 4 9 75 75 21 9 2 0 0 0 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 160 75 flptkn invtkn 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 36 7 4 0 3 1 2 0 bkf bkf 1 0
|
||||
Throwing Axe taxe tax hax tax 0 2 1 4 7 8 12 10 75 75 40 12 7 0 0 0 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 130 32 flptax invtax 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 35 7 5 0 3 2 2 0 bal bal 1 0
|
||||
Balanced Knife tkni bkf dgr bkf 0 2 1 1 8 6 11 -20 75 75 51 12 13 0 0 0 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 160 60 flpbkf invbkf 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 36 7 4 0 3 1 2 0 xxx xxx 1 0
|
||||
Balanced Axe taxe bal hax bal 0 2 1 5 10 12 15 -10 75 75 57 15 16 0 0 0 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 130 24 flpbal invbal 1 4 0 primarily thrown 0 item_sword 12 item_sword 0 0 5 0 0 0 35 7 5 0 3 2 2 0 xxx xxx 1 0
|
||||
Javelin jave jav jav jav 0 4 1 1 5 6 14 15 2 -10 75 75 12 1 0 0 0 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 60 60 flpjav invjav 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 1 7 2 0 3 5 8 0 glv glv 1 0
|
||||
Pilum jave pil pil pil 0 4 1 4 9 7 20 15 2 75 75 45 9 10 0 0 0 jav pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 50 50 flppil invpil 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 371 7 2 0 3 5 8 0 tsp tsp 1 0
|
||||
Short Spear jave ssp jav ssp 0 4 1 2 13 10 22 15 2 10 75 75 40 40 9 15 0 0 0 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 40 40 flpssp invssp 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 1 7 2 0 3 5 8 0 tsp tsp 1 0
|
||||
Glaive jave glv glv glv 0 4 1 5 17 16 22 15 2 20 75 75 52 35 12 23 0 0 0 jav glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 15 40 40 flpglv invglv 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
Throwing Spear jave tsp pil tsp 0 4 1 5 15 12 30 15 2 -10 75 75 65 12 29 0 0 0 jav tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 371 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
Spear spea spr spr spr 0 4 1 1 3 15 15 3 -10 100 20 15 5 0 0 0 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 5 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 spt pik 1 0
|
||||
Trident spea tri tri tri 0 4 1 1 9 15 15 3 100 38 24 18 9 0 0 0 spr tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 6 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 spt pik 1 0
|
||||
Brandistock spea brn brn brn 0 4 1 1 7 17 15 4 -20 100 40 50 14 16 0 0 0 spr brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn 1 7 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx pik 1 0
|
||||
Spetum spea spt tri spt 0 4 1 1 15 23 15 4 100 54 35 14 20 0 0 0 spr spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 7 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Pike spea pik pik pik 0 4 1 1 14 63 15 4 20 100 60 45 13 24 0 0 0 spr pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 7 0 3 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Bardiche pole bar hal bar 0 4 1 1 1 27 2 10 100 40 25 5 0 0 0 hal bar 9b7 7o7 stf stf 5 2hsl 2 4 flpbar invbar 1 5 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 hal wsc 1 0
|
||||
Voulge pole vou hal vou 0 4 1 1 6 21 2 100 50 25 11 0 0 0 hal vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 6 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 hal wsc 1 0
|
||||
Scythe pole scy scy scy 0 4 1 1 8 20 1 -10 100 41 41 33 15 0 0 0 hal scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy invscyu invscyu 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 hal wsc 1 0
|
||||
Poleaxe pole pax hal pax 0 4 1 1 18 39 3 10 100 62 33 21 0 0 0 hal pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Halberd pole hal pax hal 0 4 1 1 12 45 4 100 75 47 28 29 0 0 0 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
War Scythe pole wsc scy wsc 0 3 1 1 15 36 4 -10 100 80 80 28 34 0 0 0 hal wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Short Staff staf sst bst sst 0 2 1 1 1 5 1 -10 100 10 1 0 0 0 1 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 4 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 cst bst 1 0
|
||||
Long Staff staf lst sst lst 0 2 1 1 2 8 1 100 15 8 0 0 0 1 bst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 5 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 cst wst 1 0
|
||||
Gnarled Staff staf cst cst cst 0 2 1 1 4 12 1 10 100 18 12 0 0 0 1 bst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 6 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx wst 1 0
|
||||
Battle Staff staf bst sst bst 0 2 1 1 6 13 1 100 20 17 0 0 0 1 bst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 6 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
War Staff staf wst lst wst 0 2 1 1 12 28 1 20 100 25 24 0 0 0 1 bst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst 1 7 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Short Bow bow sbw sbw sbw 0 2 1 1 1 4 13 5 100 15 10 1 1 0 0 0 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 5 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 hbw cbw 1 0
|
||||
Hunter's Bow bow hbw sbw hbw 0 2 1 1 2 6 13 -10 100 28 16 1 5 0 0 0 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 6 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 lbw sbb 1 0
|
||||
Long Bow bow lbw lbw lbw 0 2 1 1 3 10 13 100 22 19 14 1 8 0 0 0 sbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 cbw lbb 1 0
|
||||
Composite Bow bow cbw lbw cbw 0 2 1 1 4 8 13 -10 100 25 35 18 1 12 0 0 0 sbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 6 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 sbb swb 1 0
|
||||
Short Battle Bow bow sbb sbb sbb 0 2 1 1 5 11 13 100 30 40 20 1 18 0 0 0 sbw sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb invsbbu invsbbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 lbb lwb 1 0
|
||||
Long Battle Bow bow lbb lbb lbb 0 2 1 1 3 18 13 10 100 40 50 22 1 23 0 0 0 sbw lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 swb lwb 1 0
|
||||
Short War Bow bow swb sbb swb 0 2 1 1 6 14 13 100 35 55 24 1 27 0 0 0 sbw swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 lwb xxx 1 0
|
||||
Long War Bow bow lwb lbb lwb 0 2 1 1 3 23 13 10 100 50 65 28 1 31 0 0 0 sbw lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Light Crossbow xbow lxb lxb lxb 0 2 1 1 6 9 -10 100 21 27 15 1 6 0 0 0 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb invlxbu invlxbu 1 5 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 mxb rxb 1 0
|
||||
Crossbow xbow mxb lxb mxb 0 2 1 1 9 16 100 40 33 20 1 15 0 0 0 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb invmxbu invmxbu 1 6 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 hxb hxb 1 0
|
||||
Heavy Crossbow xbow hxb hxb hxb 0 2 1 1 14 26 10 100 60 40 25 1 24 0 0 0 lxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 7 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Repeating Crossbow xbow rxb hxb rxb 0 2 1 1 6 12 -40 100 40 50 20 1 33 0 0 0 lxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 7 0 fires 5 shots before reload 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Rancid Gas Potion tpot gps gpl gps 0 1 0 1 1 1 1 0 0 0 gpl gps 1ht 1ht 5 hth 1 1 1 1 6 4 flpgpl invgpl 1 0 0 item_potion 14 item_potion 0 0 5 0 1 0 49 7 3 0 0 0 0 0 xxx xxx 0 1
|
||||
Oil Potion tpot ops opl ops 0 1 0 1 1 1 1 0 0 0 opl ops 1ht 1ht 5 hth 1 1 1 1 6 4 flpopl invopl 1 0 0 item_potion 14 item_potion 0 0 5 0 1 0 46 7 3 0 0 0 0 0 xxx xxx 0 1
|
||||
Choking Gas Potion tpot gpm gps gpm 0 1 0 1 1 1 1 0 0 0 gps gpm 1ht 1ht 5 hth 1 1 1 1 6 4 flpgps invgpm 1 0 0 item_potion 14 item_potion 0 0 5 0 1 0 48 7 3 0 0 0 0 0 xxx xxx 0 1
|
||||
Exploding Potion tpot opm opl opm 0 1 0 1 1 1 1 0 0 0 opl opm 1ht 1ht 5 hth 1 1 1 1 6 4 flpops invopm 1 0 0 item_potion 14 item_potion 0 0 5 0 1 0 45 7 3 0 0 0 0 0 xxx xxx 0 1
|
||||
Strangling Gas Potion tpot gpl gps gpl 0 1 0 1 1 1 1 0 0 0 gps gpl 1ht 1ht 5 hth 1 1 1 1 6 4 flpgps invgps 1 0 0 item_potion 14 item_potion 0 0 5 0 1 0 47 7 3 0 0 0 0 0 xxx xxx 0 1
|
||||
Fulminating Potion tpot opl ops opl 0 1 0 1 1 1 1 0 0 0 ops opl 1ht 1ht 5 hth 1 1 1 1 6 4 flpops invops 1 0 0 item_potion 14 item_potion 0 0 5 0 1 0 44 7 3 0 0 0 0 0 xxx xxx 0 1
|
||||
decoy dagger knif d33 dgr d33 0 1 2 -20 100 15 20 5 0 0 0 0 dgr d33 1ht 1ht 5 1ht 1 2 flpd33 invd33 1 0 0 item_smallmetalweapon 12 item_smallmetalweapon 1 0 5 0 0 0 18 1 0 7 0 0 3 1 2 0 xxx xxx 0 0
|
||||
Gidbinn knif g33 dgr g33 0 3 7 -20 100 15 25 15 0 0 0 0 dgr g33 1ht 1ht 5 1ht 1 2 flpg33 invg33 1 0 0 item_smallmetalweapon 12 item_smallmetalweapon 1 0 5 0 0 0 18 1 0 7 0 0 3 1 2 0 xxx xxx 0 0
|
||||
Wirt's Leg club leg clb leg 0 2 8 -10 100 33 0 0 0 0 clb leg 1hs 1hs 5 1hsl 1 3 flpleg invleg 1 5 0 0 item_staff 12 item_staff 0 0 5 0 0 0 1 1 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Horadric Malus hamm hdm whm hdm 0 6 15 20 100 15 15 28 0 0 0 0 whm hdm 1hs 1hs 5 1hsl 1 2 flphmr invhmr 1 0 0 item_sword 12 item_sword 1 0 5 0 0 0 4 1 0 7 0 0 0 2 2 0 xxx xxx 0 0
|
||||
Hellforge Hammer hamm hfh whm hfh 0 6 15 100 28 0 0 0 0 whm hfh 1hs 1hs 5 1hsl 2 3 flphmr invhfh 1 7 0 0 item_sword 12 item_sword 1 0 5 0 0 0 25 1 0 7 0 0 1 2 2 1 xxx xxx 0 0
|
||||
Horadric Staff staf hst bst hst 0 1 12 20 2 100 30 25 0 0 0 0 bst hst stf stf 5 staf 1 4 flphst invhst 1 0 magically charged 0 item_staff 12 item_staff 1 0 5 0 0 0 10 1 0 7 0 0 5 5 8 1 xxx xxx 0 0
|
||||
Staff of the Kings staf msf bst msf 0 1 10 15 2 100 25 23 0 0 0 0 bst msf stf stf 5 staf 1 3 flpmsf invmsf 1 0 magically charged 0 item_staff 12 item_staff 1 0 5 0 0 0 10 1 0 7 0 0 5 5 8 1 xxx xxx 0 0
|
||||
Hatchet axe 9ha hax 9ha 0 3 1 10 21 100 25 25 14 31 19 0 0 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 4 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 35 7 0 0 3 5 2 0 xxx xxx 1 0
|
||||
Cleaver axe 9ax axe 9ax 0 4 1 10 33 1 10 100 68 12 34 22 0 0 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 5 2 0 xxx xxx 1 0
|
||||
Twin Axe axe 92a axe 92a 0 4 1 13 38 1 10 100 85 12 39 25 0 0 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 5 2 0 xxx xxx 1 0
|
||||
Crowbill axe 9mp axe 9mp 0 4 1 14 34 1 -10 100 94 70 13 43 25 0 0 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Naga axe 9wa hax 9wa 0 4 1 16 45 2 100 121 13 48 25 0 0 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Military Axe axe 9la lax 9la 0 4 1 1 14 34 1 -10 100 73 15 34 22 0 0 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Bearded Axe axe 9ba lax 9ba 0 4 1 1 21 49 1 100 92 18 38 25 0 0 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Tabar axe 9bt btx 9bt 0 4 1 1 24 77 1 10 100 101 20 42 25 0 0 btx btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx inv9btu inv9btu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 5 2 0 xxx xxx 1 0
|
||||
Gothic Axe axe 9ga btx 9ga 0 4 1 1 18 70 2 -10 100 115 79 25 46 25 0 0 btx gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Ancient Axe axe 9gi gix 9gi 0 4 1 1 43 85 3 10 100 125 25 51 25 0 0 gix gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix inv9giu inv9giu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Burnt Wand wand 9wn wnd 9wn 0 1 1 8 18 100 25 8 31 19 0 0 1 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd 1 3 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Petrified Wand wand 9yw ywn 9yw 0 1 1 8 24 10 100 25 8 38 25 0 0 1 ywn ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Tomb Wand wand 9bw bwn 9bw 0 1 1 10 22 -20 100 25 8 43 25 0 0 1 bwn bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 1 2 0 xxx xxx 1 0
|
||||
Grave Wand wand 9gw bwn 9gw 0 1 1 13 29 100 25 8 49 25 0 0 1 bwn gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn inv9gwu inv9gwu 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 1 2 0 xxx xxx 1 0
|
||||
Cudgel club 9cl clb 9cl 0 1 1 6 21 -10 100 25 12 30 18 0 0 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 4 0 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 1 5 2 0 xxx xxx 1 0
|
||||
Rune Scepter scep 9sc mac 9sc 0 2 1 13 24 100 58 25 31 19 0 0 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 4 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Holy Water Sprinkler scep 9qs mac 9qs 0 4 1 14 36 1 10 100 76 30 40 25 0 0 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 5 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Divine Scepter scep 9ws whm 9ws 0 4 1 16 38 1 -10 100 103 35 45 25 0 0 whm wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 7 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Barbed Club club 9sp clb 9sp 0 3 1 13 25 1 100 30 18 32 20 0 0 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 5 0 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 1 2 2 0 xxx xxx 1 0
|
||||
Flanged Mace mace 9ma mac 9ma 0 4 1 15 23 100 61 30 35 23 0 0 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Jagged Star mace 9mt mac 9mt 0 4 1 20 31 1 10 100 74 36 39 25 0 0 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Knout mace 9fl fla 9fl 0 4 1 13 35 2 -10 100 82 73 15 43 25 0 0 fla fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Battle Hammer hamm 9wh whm 9wh 0 4 1 35 58 20 110 100 28 48 25 0 0 whm whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 178 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
War Club hamm 9m9 mau 9m9 0 4 1 1 53 78 1 10 110 124 30 45 25 0 0 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Martel de Fer hamm 9gm mau 9gm 0 3 1 1 61 99 2 20 110 169 30 53 25 0 0 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma inv9gmu inv9gmu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Gladius swor 9ss ssd 9ss 0 3 1 8 22 100 25 12 30 18 0 0 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Cutlass swor 9sm scm 9sm 0 3 1 8 21 -30 100 25 52 11 43 25 0 0 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Shamshir swor 9sb scm 9sb 0 3 1 10 24 -10 100 58 58 16 35 23 0 0 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr invsbru invsbru 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Tulwar swor 9fc flc 9fc 0 4 1 16 35 20 100 70 42 16 37 25 0 0 flc flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Dimensional Blade swor 9cr crs 9cr 0 2 1 13 35 1 100 85 60 10 37 25 0 0 crs crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs inv9cru inv9cru 1 7 0 0 item_sword 12 item_sword 0 0 5 0 5 0 0 7 0 0 1 1 8 0 xxx xxx 1 0
|
||||
Battle Sword swor 9bs bsd 9bs 0 4 1 16 34 100 92 43 16 40 25 0 0 bsd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Rune Sword swor 9ls lsd 9ls 0 4 1 10 42 1 -10 100 103 79 22 44 25 0 0 lsd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd inv9lsu inv9lsu 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Ancient Sword swor 9wd flc 9wd 0 4 1 18 43 1 100 127 88 22 49 25 0 0 flc wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Espadon swor 92h clm 92h 0 4 1 8 26 1 1 18 40 2 100 73 61 22 37 25 0 0 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 5 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Dacian Falx swor 9cm clm 9cm 0 4 1 13 30 1 1 26 61 2 10 100 91 20 25 42 25 0 0 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Tusk Sword swor 9gs gsd 9gs 0 4 1 10 37 1 1 19 58 2 100 104 71 25 45 25 0 0 gsd gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Gothic Sword swor 9b9 clm 9b9 0 4 1 14 40 1 1 39 60 1 10 100 113 20 20 48 25 0 0 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Zweihander swor 9fb clm 9fb 0 4 1 19 35 1 1 29 54 2 -10 100 125 94 25 49 25 0 0 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb inv9fbu inv9fbu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Executioner Sword swor 9gd gsd 9gd 0 4 1 24 40 1 1 47 80 2 10 100 170 110 25 54 25 0 0 gsd gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Poignard knif 9dg dgr 9dg 0 2 1 6 18 -20 75 75 25 8 31 19 0 0 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 3 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Rondel knif 9di dir 9di 0 2 1 10 26 75 75 25 58 10 36 24 0 0 dir dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 3 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Cinquedeas knif 9kr dir 9kr 0 2 1 15 31 -20 75 75 25 88 12 42 25 0 0 dir kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 5 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Stilleto knif 9bl dgr 9bl 0 3 1 19 36 -10 75 75 47 97 12 46 25 0 0 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld inv9blu inv9blu 1 4 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Battle Dart tkni 9tk dgr 9tk 0 2 1 8 16 11 24 15 75 75 25 52 5 31 19 0 0 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 160 75 flptkn invtkn 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 36 7 4 0 3 1 2 0 xxx xxx 1 0
|
||||
Francisca taxe 9ta hax 9ta 0 2 1 11 22 18 33 15 10 75 75 25 80 9 34 22 0 0 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 130 32 flptax invtax 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 35 7 5 0 3 5 2 0 xxx xxx 1 0
|
||||
War Dart tkni 9bk dgr 9bk 0 2 1 6 24 14 27 15 -20 75 75 25 97 12 39 25 0 0 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 160 60 flpbkf invbkf 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 36 7 4 0 3 1 2 0 xxx xxx 1 0
|
||||
Hurlbat taxe 9b8 hax 9b8 0 2 1 13 27 24 34 15 -10 75 75 25 106 9 41 25 0 0 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 130 24 flpbal invbal 1 4 0 primarily thrown 0 item_sword 12 item_sword 0 0 5 0 0 0 35 7 5 0 3 2 2 0 xxx xxx 1 0
|
||||
War Javelin jave 9ja jav 9ja 0 4 1 6 19 14 32 15 2 -10 75 75 25 25 10 30 18 0 0 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 60 60 flpjav invjav 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 1 7 2 0 3 5 8 0 xxx xxx 1 0
|
||||
Great Pilum jave 9pi pil 9pi 0 4 1 11 26 16 42 15 2 75 75 25 88 11 37 25 0 0 pil pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 50 50 flppil invpil 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 5 8 0 xxx xxx 1 0
|
||||
Simbilan jave 9s9 jav 9s9 0 4 1 8 32 27 50 15 2 10 75 75 80 80 11 40 25 0 0 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 40 40 flpssp invssp 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 5 8 0 xxx xxx 1 0
|
||||
Spiculum jave 9gl glv 9gl 0 4 1 13 38 32 60 15 2 20 75 75 98 73 12 46 25 0 0 glv glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 8 20 20 flpglv invglv 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
Harpoon jave 9ts pil 9ts 0 4 1 13 35 18 54 15 2 -10 75 75 25 118 14 51 25 0 0 pil tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
War Spear spea 9sr spr 9sr 0 4 1 1 10 37 3 -10 100 25 25 15 33 21 0 0 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 5 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Fuscina spea 9tr tri 9tr 0 4 1 1 19 37 3 100 77 25 18 36 24 0 0 tri tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 6 0 2 square reach 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
War Fork spea 9br brn 9br 0 4 1 1 16 40 4 -20 100 80 95 14 41 25 0 0 brn brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn inv9bru inv9bru 1 7 0 2 square reach 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Yari spea 9st tri 9st 0 4 1 1 29 59 4 100 101 14 44 25 0 0 tri spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 7 0 2 square reach 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Lance spea 9p9 pik 9p9 0 4 1 1 27 114 4 20 100 110 88 13 47 25 0 0 pik pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 7 0 3 square reach 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Lochaber Axe pole 9b7 hal 9b7 0 4 1 1 6 58 2 10 100 80 25 33 21 0 0 hal bar 9b7 7o7 stf stf 5 2hsl 2 4 flpbar invbar 1 5 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Bill pole 9vo hal 9vo 0 4 1 1 14 53 2 100 95 25 37 25 0 0 pax vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 6 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Battle Scythe pole 9s8 scy 9s8 0 4 1 1 18 45 1 -10 100 82 82 33 40 25 0 0 scy scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy inv9s8u inv9s8u 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Partizan pole 9pa hal 9pa 0 4 1 1 34 75 3 10 100 113 67 33 35 23 0 0 pax pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Bec-de-Corbin pole 9h9 pax 9h9 0 4 1 1 13 85 4 100 133 91 28 51 25 0 0 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Grim Scythe pole 9wc scy 9wc 0 3 1 1 30 70 4 -10 100 140 140 28 55 25 0 0 scy wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Jo Staff staf 8ss bst 8ss 0 2 1 1 6 21 1 -10 100 25 10 30 18 0 0 1 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 4 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Quarterstaff staf 8ls sst 8ls 0 2 1 1 8 26 1 100 25 15 35 23 0 0 1 sst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 5 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Cedar Staff staf 8cs cst 8cs 0 2 1 1 11 32 1 10 100 25 18 38 25 0 0 1 cst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 6 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Gothic Staff staf 8bs sst 8bs 0 2 1 1 14 34 1 100 25 20 42 25 0 0 1 sst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 6 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Rune Staff staf 8ws lst 8ws 0 2 1 1 24 58 1 20 100 25 25 47 25 0 0 1 lst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst inv8wsu inv8wsu 1 7 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Edge Bow bow 8sb sbw 8sb 0 2 1 1 6 19 13 5 100 25 43 10 1 30 18 0 0 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 5 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Razor Bow bow 8hb sbw 8hb 0 2 1 1 8 22 13 -10 100 25 62 16 1 33 21 0 0 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 6 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Cedar Bow bow 8lb lbw 8lb 0 2 1 1 10 29 13 100 53 49 14 1 35 23 0 0 lbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw inv8lbu inv8lbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Double Bow bow 8cb lbw 8cb 0 2 1 1 11 26 13 -10 100 58 73 18 1 39 25 0 0 lbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 6 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Short Siege Bow bow 8s8 sbb 8s8 0 2 1 1 13 30 13 100 65 80 20 1 43 25 0 0 sbb sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb inv8s8u inv8s8u 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Long Siege Bow bow 8l8 lbb 8l8 0 2 1 1 10 42 13 10 100 80 95 22 1 46 25 0 0 lbb lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Rune Bow bow 8sw sbb 8sw 0 2 1 1 14 35 13 100 73 103 24 1 49 25 0 0 sbb swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Gothic Bow bow 8lw lbb 8lw 0 2 1 1 10 50 13 10 100 95 118 28 1 52 25 0 0 lbb lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Arbalest xbow 8lx lxb 8lx 0 2 1 1 14 27 -10 100 52 61 15 1 34 22 0 0 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb inv8lxu inv8lxu 1 5 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Siege Crossbow xbow 8mx lxb 8mx 0 2 1 1 20 42 100 80 70 20 1 40 25 0 0 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb inv8mxu inv8mxu 1 6 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Balista xbow 8hx hxb 8hx 0 2 1 1 33 55 10 100 110 80 25 1 47 25 0 0 hxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 7 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Chu-Ko-Nu xbow 8rx hxb 8rx 0 2 1 1 14 32 -60 100 80 95 20 1 54 25 0 0 hxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 7 0 fires 5 shots before reload 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
KhalimFlail mace qf1 fla qf1 0 1 15 -10 100 41 35 15 0 0 0 0 fla qf1 1hs 1hs 5 1hsl 2 3 flpfla invqf1 1 5 0 0 item_sword 12 item_sword 1 0 5 0 0 0 17 1 0 7 0 0 1 2 2 1 xxx xxx 0 0
|
||||
SuperKhalimFlail mace qf2 fla qf2 0 1 15 -10 100 15 0 0 0 0 fla qf2 1hs 1hs 5 1hsl 2 3 flpfla invqf2 1 5 0 0 item_sword 12 item_sword 1 0 5 0 0 0 17 1 0 7 0 0 1 2 2 1 xxx xxx 0 0
|
||||
Expansion
|
||||
Katar h2h ktr ktr ktr 100 2 1 4 7 14 1 -10 75 75 20 20 24 1 0 0 0 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 wrb btl 1 0
|
||||
Wrist Blade h2h wrb ktr wrb 100 2 1 5 9 14 1 75 75 33 33 26 9 0 0 0 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 axf skr 1 0
|
||||
Hatchet Hands h2h axf axf axf 100 2 1 2 15 14 1 10 75 75 37 37 28 12 0 0 0 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 ces clw 1 0
|
||||
Cestus h2h ces axf ces 100 2 1 7 15 14 1 75 75 42 42 36 15 0 0 0 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 clw btl 1 0
|
||||
Claws h2h clw clw clw 100 2 1 8 15 14 1 -10 75 75 46 46 32 18 0 0 0 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 btl xxx 1 0
|
||||
Blade Talons h2h btl clw btl 100 2 1 10 14 14 1 -20 75 75 50 50 35 21 0 0 0 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Scissors Katar h2h skr skr skr 100 2 1 9 17 14 1 -10 75 75 55 55 34 24 0 0 0 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Quhab h2h 9ar ktr 9ar 100 2 1 11 24 14 1 75 75 57 57 24 28 21 0 0 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Wrist Spike h2h 9wb ktr 9wb 100 2 1 13 27 14 1 -10 75 75 66 66 28 32 24 0 0 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Fascia h2h 9xf axf 9xf 100 2 1 8 37 14 1 10 75 75 69 69 32 36 27 0 0 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Hand Scythe h2h2 9cs axf 9cs 100 2 1 16 37 14 1 -10 75 75 73 73 36 41 30 0 0 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Greater Claws h2h2 9lw clw 9lw 100 2 1 18 37 14 1 -20 75 75 76 76 26 45 33 0 0 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Greater Talons h2h2 9tw clw 9tw 100 2 1 21 35 14 1 -30 75 75 79 79 35 50 37 0 0 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Scissors Quhab h2h2 9qr skr 9qr 100 2 1 19 40 14 1 75 75 82 82 34 54 40 0 0 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Suwayyah h2h2 7ar ktr 7ar 100 2 1 39 52 14 1 75 75 99 99 24 59 44 0 0 ktr ktr 9ar 7ar ht1 ht1 5 1hsl 1 3 flpktr invktr 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Wrist Sword h2h2 7wb ktr 7wb 100 2 1 34 45 14 1 -10 75 75 105 105 28 62 46 0 0 ktr wrb 9wb 7wb ht1 ht1 5 1hsl 1 3 flpktr invktr 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
War Fist h2h2 7xf axf 7xf 100 2 1 44 53 14 1 10 75 75 108 108 32 68 51 0 0 axf axf 9xf 7xf ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Battle Cestus h2h2 7cs axf 7cs 100 2 1 36 42 14 1 -10 75 75 110 110 36 73 54 0 0 axf ces 9cs 7cs ht1 ht1 5 1hsl 1 3 flpaxf invaxf invaxfu invaxfu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Feral Claws h2h2 7lw clw 7lw 100 2 1 22 53 14 1 -20 75 75 113 113 26 78 58 0 0 clw clw 9lw 7lw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Runic Talons h2h2 7tw clw 7tw 100 2 1 24 44 14 1 -30 75 75 115 115 35 81 60 0 0 clw btl 9tw 7tw ht1 ht1 5 1hsl 1 3 flpclw invclw 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Scissors Suwayyah h2h2 7qr skr 7qr 100 2 1 40 51 14 1 75 75 118 118 34 85 64 0 0 skr skr 9qr 7qr ht1 ht1 5 1hsl 1 3 flpskr invskr invskru invskru 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Tomahawk axe 7ha hax 7ha 100 3 1 33 58 14 100 125 67 14 54 40 0 0 hax hax 9ha 7ha 1hs 1hs 5 1hsl 1 3 flphax invhax invhaxu invhaxu 1 4 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 35 7 0 0 3 5 2 0 xxx xxx 1 0
|
||||
Small Crescent axe 7ax axe 7ax 100 4 1 38 60 14 1 10 100 115 83 12 61 45 0 0 axe axe 9ax 7ax 1hs 1hs 5 1hsl 2 3 flpaxe invaxe invaxeu invaxeu 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 5 2 0 xxx xxx 1 0
|
||||
Ettin Axe axe 72a axe 72a 100 4 1 33 66 14 1 10 100 145 45 12 70 52 0 0 axe 2ax 92a 72a 1hs 1hs 5 1hsl 2 3 flp2ax inv2ax 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 5 2 0 xxx xxx 1 0
|
||||
War Spike axe 7mp axe 7mp 100 4 1 30 48 14 1 -10 100 133 54 13 79 59 0 0 axe mpi 9mp 7mp 1hs 1hs 5 1hsl 2 3 flpmpi invmpi invmpiu invmpiu 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Berserker Axe axe 7wa hax 7wa 100 4 1 24 71 14 2 100 138 59 13 85 64 0 0 hax wax 9wa 7wa 1hs 1hs 5 1hsl 2 3 flpwax invwax 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Feral Axe axe 7la lax 7la 100 4 1 1 25 123 17 2 -15 100 196 15 57 42 0 0 lax lax 9la 7la stf stf 5 2hsl 2 3 flplax invlax 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Silver Edged Axe axe 7ba lax 7ba 100 4 1 1 62 110 17 2 100 166 65 18 65 48 0 0 lax bax 9ba 7ba stf stf 5 2hsl 2 3 flpbrx invbrx 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Decapitator axe 7bt btx 7bt 100 4 1 1 49 137 17 2 10 100 189 33 20 73 54 0 0 btx btx 9bt 7bt stf stf 5 2hsl 2 3 flpbtx invbtx invbtxu invbtxu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 5 2 0 xxx xxx 1 0
|
||||
Champion Axe axe 7ga btx 7ga 100 4 1 1 59 94 17 2 -10 100 167 59 25 82 61 0 0 btx gax 9ga 7ga stf stf 5 2hsl 2 4 flpgax invgax invgaxu invgaxu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Glorious Axe axe 7gi gix 7gi 100 4 1 1 60 124 17 3 10 100 164 55 25 85 66 0 0 gix gix 9gi 7gi stf stf 5 2hsl 2 3 flpgix invgix 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Polished Wand wand 7wn wnd 7wn 100 1 1 18 33 14 100 25 11 55 41 0 0 wnd wnd 9wn 7wn 1hs 1hs 5 1hss 1 2 flpwnd invwnd 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Ghost Wand wand 7yw ywn 7yw 100 1 1 20 40 14 10 100 25 7 65 48 0 0 ywn ywn 9yw 7yw 1hs 1hs 5 1hss 1 2 flpywn invywn 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Lich Wand wand 7bw bwn 7bw 100 1 1 10 31 14 -20 100 25 9 75 56 0 0 bwn bwn 9bw 7bw 1hs 1hs 5 1hss 1 2 flpbwn invbwn invbwnu invbwnu 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 1 2 0 xxx xxx 1 0
|
||||
Unearthed Wand wand 7gw bwn 7gw 100 1 1 22 28 14 100 25 9 86 64 0 0 bwn gwn 9gw 7gw 1hs 1hs 5 1hss 1 2 flpgwn invgwn 1 4 0 magically charged 0 item_wand 12 item_wand 0 0 5 0 0 0 0 7 0 0 5 1 2 0 xxx xxx 1 0
|
||||
Truncheon club 7cl clb 7cl 100 1 1 35 43 14 -10 100 88 43 28 52 39 0 0 clb clb 9cl 7cl 1hs 1hs 5 club 1 3 flpclb invclb invclbu invclbu 1 4 0 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 1 5 2 0 xxx xxx 1 0
|
||||
Mighty Scepter scep 7sc mac 7sc 100 2 1 40 52 14 100 125 65 25 62 46 0 0 mac scp 9sc 7sc 1hs 1hs 5 club 1 3 flpscp invscp 1 4 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Seraph Rod scep 7qs mac 7qs 100 4 1 45 54 14 1 10 100 108 69 30 76 57 0 0 mac gsc 9qs 7qs 1hs 1hs 5 club 1 3 flpgsc invgsc 1 5 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Caduceus scep 7ws whm 7ws 100 4 1 37 43 14 1 -10 100 97 70 35 85 66 0 0 whm wsp 9ws 7ws 1hs 1hs 5 club 2 3 flpwsp invwsp 1 7 0 magically charged 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Tyrant Club club 7sp clb 7sp 100 3 1 32 58 14 1 100 133 33 57 42 0 0 clb spc 9sp 7sp 1hs 1hs 5 1hsl 1 3 flpspc invspc invspcu invspcu 1 5 0 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 1 2 2 0 xxx xxx 1 0
|
||||
Reinforced Mace mace 7ma mac 7ma 100 4 1 41 49 14 100 145 46 30 63 47 0 0 mac mac 9ma 7ma 1hs 1hs 5 1hsl 1 3 flpmac invmac inv7mas 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Devil Star mace 7mt mac 7mt 100 4 1 43 53 14 1 10 100 153 44 36 70 52 0 0 mac mst 9mt 7mt 1hs 1hs 5 1hsl 1 3 flpmst invmst invmstu invmstu 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Scourge mace 7fl fla 7fl 100 4 1 3 80 14 2 -10 100 125 77 33 76 57 0 0 fla fla 9fl 7fl 1hs 1hs 5 1hsl 2 3 flpfla invfla 1 7 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Legendary Mallet hamm 7wh whm 7wh 100 4 1 50 61 14 1 20 110 189 33 82 61 0 0 whm whm 9wh 7wh 1hs 1hs 5 1hsl 2 3 flpwhm invwhm 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 178 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Ogre Maul hamm 7m7 mau 7m7 100 4 1 1 77 106 17 1 10 110 225 30 69 51 0 0 mau mau 9m9 7m7 stf stf 5 2hsl 2 4 flpmau invmau 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Thunder Maul hamm 7gm mau 7gm 100 3 1 1 33 180 17 2 20 110 253 30 85 65 0 0 mau gma 9gm 7gm stf stf 5 2hsl 2 3 flpgma invgma 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Falcata swor 7ss ssd 7ss 100 3 1 31 59 14 100 150 88 12 56 42 0 0 ssd ssd 9ss 7ss 1hs 1hs 5 1hsl 1 3 flpssd invssd 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Ataghan swor 7sm scm 7sm 100 3 1 26 46 14 -20 100 138 95 11 61 45 0 0 scm scm 9sm 7sm 1hs 1hs 5 1hsl 1 3 flpscm invscm invscmu invscmu 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Elegant Blade swor 7sb scm 7sb 100 3 1 33 45 14 -10 100 109 122 16 63 47 0 0 scm sbr 9sb 7sb 1hs 1hs 5 1hsl 1 3 flpsbr invsbr invsbru invsbru 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Hydra Edge swor 7fc flc 7fc 100 4 1 28 68 14 10 100 142 105 16 69 51 0 0 flc flc 9fc 7fc 1hs 1hs 5 1hsl 1 3 flpflc invflc 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Phase Blade swor 7cr crs 7cr 100 2 1 31 35 14 1 -30 100 25 136 0 1 73 54 0 0 crs crs 9cr 7cr 1hs 1hs 5 1hsl 2 3 flpcrs invcrs invcrsu invcrsu 1 7 0 0 item_sword 12 item_sword 0 0 5 0 5 0 0 7 0 0 1 1 8 0 xxx xxx 1 0
|
||||
Conquest Sword swor 7bs bsd 7bs 100 4 1 37 53 14 100 142 112 16 78 58 0 0 bsd bsd 9bs 7bs 1hs 1hs 5 1hsl 2 3 flpbsd invbsd 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Cryptic Sword swor 7ls lsd 7ls 100 4 1 5 77 14 1 -10 100 99 109 22 82 61 0 0 lsd lsd 9ls 7ls 1hs 1hs 5 1hsl 2 3 flplsd invlsd invlsdu invlsdu 1 6 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Mythical Sword swor 7wd flc 7wd 100 4 1 40 50 14 1 100 147 124 22 85 66 0 0 flc wsd 9wd 7wd 1hs 1hs 5 1hsl 1 3 flpwsd invwsd 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Legend Sword swor 72h clm 72h 100 4 1 22 56 1 1 50 94 17 2 -15 100 175 100 22 59 44 0 0 clm 2hs 92h 72h 1hs 2hs 5 2hss 1 4 flp2hs inv2hs inv2hsu inv2hsu 1 5 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Highland Blade swor 7cm clm 7cm 100 4 1 22 62 1 1 67 96 17 2 -5 100 171 104 25 66 49 0 0 clm clm 9cm 7cm 1hs 2hs 5 2hss 1 4 flpclm invclm 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Balrog Blade swor 7gs gsd 7gs 100 4 1 15 75 1 1 55 118 17 2 100 185 87 25 71 53 0 0 gsd gis 9gs 7gs 1hs 2hs 5 2hss 1 4 flpgis invgis invgisu invgisu 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Champion Sword swor 7b7 clm 7b7 100 4 1 24 54 1 1 71 83 17 2 -10 100 163 103 20 77 57 0 0 clm bsw 9b9 7b7 1hs 2hs 5 2hss 1 4 flpbsw invbsw invbswu invbswu 1 6 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Colossal Sword swor 7fb clm 7fb 100 4 1 26 70 1 1 61 121 17 2 10 100 182 95 25 80 60 0 0 clm flb 9fb 7fb 1hs 2hs 5 2hss 2 4 flpflb invflb 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Colossus Blade swor 7gd gsd 7gd 100 4 1 25 65 1 1 58 115 17 2 5 100 189 110 25 85 63 0 0 gsd gsd 9gd 7gd 1hs 2hs 5 2hss 2 4 flpgsd invgsd invgsdu invgsdu 1 7 0 0 item_largemetalweapon 12 item_largemetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Bone Knife knif 7dg dgr 7dg 100 2 1 23 49 14 -20 75 75 38 75 13 58 43 0 0 dgr dgr 9dg 7dg 1ht 1ht 5 1ht 1 2 flpdgr invdgr 1 3 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Mithral Point knif 7di dir 7di 100 2 1 37 53 14 75 75 55 98 28 70 52 0 0 dir dir 9di 7di 1ht 1ht 5 1ht 1 2 flpdir invdir 1 3 0 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Fanged Knife knif 7kr dir 7kr 100 2 1 15 57 14 -20 75 75 42 86 18 83 62 0 0 dir kri 9kr 7kr 1ht 1ht 5 1ht 1 3 flpkrs invkrs invkrsu invkrsu 1 5 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Legend Spike knif 7bl dgr 7bl 100 3 1 31 47 14 -10 75 75 65 67 24 85 66 0 0 dgr bld 9bl 7bl 1ht 1ht 5 1ht 1 3 flpbld invbld 1 4 0 0 item_sword 12 item_sword 0 0 5 0 0 0 0 7 0 0 3 1 2 0 xxx xxx 1 0
|
||||
Flying Knife tkni 7tk dgr 7tk 100 2 1 23 54 23 54 15 75 75 48 141 12 64 48 0 0 dgr tkf 9tk 7tk 1ht 1ht 5 1ht 1 2 1 40 200 75 flptkn invtkn 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 36 7 4 0 3 1 2 0 xxx xxx 1 0
|
||||
Flying Axe taxe 7ta hax 7ta 100 2 1 17 65 15 66 15 10 75 75 88 108 16 56 42 0 0 hax tax 9ta 7ta 1hs 1hs 5 1hsl 1 2 1 16 180 32 flptax invtax 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 35 7 5 0 3 5 2 0 xxx xxx 1 0
|
||||
Winged Knife tkni 7bk dgr 7bk 100 2 1 27 35 23 39 15 -20 75 75 45 142 10 77 57 0 0 dgr bkf 9bk 7bk 1ht 1ht 5 1ht 1 2 1 30 200 60 flpbkf invbkf invtk3 1 4 0 primarily thrown 0 item_smallmetalweapon 12 item_smallmetalweapon 0 0 5 0 0 0 36 7 4 0 3 1 2 0 xxx xxx 1 0
|
||||
Winged Axe taxe 7b8 hax 7b8 100 2 1 11 56 7 60 15 -10 75 75 96 122 16 80 60 0 0 hax bal 9b8 7b8 1hs 1hs 5 1hsl 2 3 1 16 180 24 flpbal invbal 1 4 0 primarily thrown 0 item_sword 12 item_sword 0 0 5 0 0 0 35 7 5 0 3 2 2 0 xxx xxx 1 0
|
||||
Hyperion Javelin jave 7ja jav 7ja 100 4 1 21 57 28 55 14 2 -10 75 75 98 123 10 54 40 0 0 jav jav 9ja 7ja 1ht 1ht 5 1ht 1 3 1 30 100 60 flpjav invjav 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 1 7 2 0 3 5 8 0 xxx xxx 1 0
|
||||
Stygian Pilum jave 7pi pil 7pi 100 4 1 14 64 21 75 14 2 75 75 118 112 12 62 46 0 0 pil pil 9pi 7pi 1ht 1ht 5 1ht 1 3 1 25 90 50 flppil invpil 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 5 8 0 xxx xxx 1 0
|
||||
Balrog Spear jave 7s7 jav 7s7 100 4 1 33 63 40 62 14 2 10 75 75 127 95 14 71 53 0 0 jav ssp 9s9 7s7 1ht 1ht 5 1ht 1 3 1 20 80 40 flpssp invssp 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 5 8 0 xxx xxx 1 0
|
||||
Ghost Glaive jave 7gl glv 7gl 100 4 1 19 60 30 85 14 2 20 75 75 89 137 16 79 59 0 0 glv glv 9gl 7gl 1ht 1ht 5 1ht 1 4 1 8 75 20 flpglv invglv 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
Winged Harpoon jave 7ts pil 7ts 100 4 1 27 35 11 77 14 2 -10 75 75 76 145 18 85 65 0 0 pil tsp 9ts 7ts 1ht 1ht 5 1ht 1 4 1 32 80 80 flptsp invtsp 1 4 0 primarily thrown 0 item_javelins 12 item_javelins 0 0 5 0 0 0 37 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
Hyperion Spear spea 7sr spr 7sr 100 4 1 1 35 119 17 3 -10 100 155 120 15 58 43 0 0 spr spr 9sr 7sr 2ht 2ht 5 2ht 2 4 flpspr invspr 1 5 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Stygian Pike spea 7tr tri 7tr 100 4 1 1 29 144 17 3 100 168 97 18 66 49 0 0 tri tri 9tr 7tr 2ht 2ht 5 2ht 2 4 flptri invtri invtriu invtriu 1 6 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Mancatcher spea 7br brn 7br 100 4 1 1 42 92 17 4 -20 100 132 134 14 74 55 0 0 brn brn 9br 7br 2ht 2ht 5 2ht 2 4 flpbrn invbrn 1 7 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Ghost Spear spea 7st tri 7st 100 4 1 1 18 155 17 4 100 122 163 14 83 62 0 0 tri spt 9st 7st 2ht 2ht 5 2ht 2 4 flpspt invspt 1 7 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
War Pike spea 7p7 pik 7p7 100 4 1 1 33 178 17 4 20 100 165 106 13 85 66 0 0 pik pik 9p9 7p7 2ht 2ht 5 2ht 2 4 flppik invpik 1 7 0 3 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Ogre Axe pole 7o7 hal 7o7 100 4 1 1 28 145 17 2 100 195 75 25 60 45 0 0 hal bar 9b7 7o7 stf stf 5 2hsl 2 4 flpbar invbar 1 5 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Colossus Voulge pole 7vo hal 7vo 100 4 1 1 17 165 17 2 10 100 210 55 25 64 48 0 0 pax vou 9vo 7vo stf stf 5 2hsl 2 4 flpvou invvou 1 6 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Thresher pole 7s8 scy 7s8 100 4 1 1 12 141 17 1 -10 100 152 118 33 71 53 0 0 scy scy 9s8 7s8 stf stf 5 2hsl 2 4 flpscy invscy invscyu invscyu 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Cryptic Axe pole 7pa hal 7pa 100 4 1 1 33 150 17 3 10 100 165 103 33 79 59 0 0 pax pax 9pa 7pa stf stf 5 2hsl 2 4 flppax invpax 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Great Poleaxe pole 7h7 pax 7h7 100 4 1 1 46 127 17 4 100 179 99 28 84 63 0 0 hal hal 9h9 7h7 stf stf 5 2hsl 2 4 flphal invhal 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Giant Thresher pole 7wc scy 7wc 100 3 1 1 40 114 17 4 -10 100 188 140 28 85 66 0 0 scy wsc 9wc 7wc stf stf 5 2hsl 2 4 flpwsc invwsc 1 7 0 2 square reach 0 item_woodweaponlarge 12 item_woodweaponlarge 0 0 5 0 0 0 0 7 0 0 3 2 2 0 xxx xxx 1 0
|
||||
Walking Stick staf 6ss bst 6ss 100 2 1 1 69 85 17 1 -10 100 25 10 58 43 0 0 1 bst sst 8ss 6ss stf stf 5 club 1 3 flpsst invsst 1 4 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Stalagmite staf 6ls sst 6ls 100 2 1 1 75 107 17 1 10 100 63 35 15 66 49 0 0 1 sst lst 8ls 6ls stf stf 5 staf 1 4 flplst invlst 1 5 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Elder Staff staf 6cs cst 6cs 100 2 1 1 80 93 17 1 100 44 37 18 74 55 0 0 1 cst cst 8cs 6cs stf stf 5 staf 1 4 flpcst invcst invcstu invcstu 1 6 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Shillelah staf 6bs sst 6bs 100 2 1 1 65 108 17 1 100 52 27 20 83 62 0 0 1 sst bst 8bs 6bs stf stf 5 staf 1 4 flpbst invbst 1 6 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Archon Staff staf 6ws lst 6ws 100 2 1 1 83 99 17 1 10 100 34 13 85 66 0 0 1 lst wst 8ws 6ws stf stf 5 staf 2 4 flpwst invwst 1 7 0 magically charged 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Spider Bow bow 6sb sbw 6sb 100 2 1 1 23 50 13 5 100 64 143 10 1 55 41 0 0 sbw sbw 8sb 6sb bow bow 6 bow 2 3 flpsbw invsbw 1 5 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Blade Bow bow 6hb sbw 6hb 100 2 1 1 21 41 13 -10 100 76 119 16 1 60 45 0 0 sbw hbw 8hb 6hb bow bow 6 bow 2 3 flphbw invhbw 1 6 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Shadow Bow bow 6lb lbw 6lb 100 2 1 1 15 59 13 100 52 188 14 1 63 47 0 0 lbw lbw 8lb 6lb bow bow 6 bow 2 4 flplbw invlbw 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Great Bow bow 6cb lbw 6cb 100 2 1 1 12 52 13 -10 100 121 107 18 1 68 51 0 0 lbw cbw 8cb 6cb bow bow 6 bow 2 3 flpcbw invcbw invcbwu invcbwu 1 6 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Diamond Bow bow 6s7 sbb 6s7 100 2 1 1 33 40 13 100 89 132 20 1 72 54 0 0 sbb sbb 8s8 6s7 bow bow 6 bow 2 3 flpsbb invsbb invsbbu invsbbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Crusader Bow bow 6l7 lbb 6l7 100 2 1 1 15 63 13 10 100 97 121 22 1 77 57 0 0 lbb lbb 8l8 6l7 bow bow 6 bow 2 4 flplbb invlbb 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Ward Bow bow 6sw sbb 6sw 100 2 1 1 20 53 13 100 72 146 24 1 80 60 0 0 sbb swb 8sw 6sw bow bow 6 bow 2 3 flpswb invswb invswbu invswbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Hydra Bow bow 6lw lbb 6lw 100 2 1 1 10 68 13 10 100 134 167 28 1 85 63 0 0 lbb lwb 8lw 6lw bow bow 6 bow 2 4 flplwb invlwb 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Pellet Bow xbow 6lx lxb 6lx 100 2 1 1 28 73 19 -10 100 83 155 15 1 57 42 0 0 lxb lxb 8lx 6lx xbw xbw 5 xbow 2 3 flplxb invlxb invlxbu invlxbu 1 5 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Gorgon Crossbow xbow 6mx lxb 6mx 100 2 1 1 25 87 19 100 117 105 20 1 67 50 0 0 lxb mxb 8mx 6mx xbw xbw 5 xbow 2 3 flpmxb invmxb invmxbu invmxbu 1 6 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Colossus Crossbow xbow 6hx hxb 6hx 100 2 1 1 32 91 19 10 100 163 77 25 1 75 56 0 0 hxb hxb 8hx 6hx xbw xbw 5 xbow 2 4 flphxb invhxb invhxbu invhxbu 1 7 0 reload lag between shots 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Demon Crossbow xbow 6rx hxb 6rx 100 2 1 1 26 40 19 -60 100 141 98 20 1 84 63 0 0 hxb rxb 8rx 6rx xbw xbw 5 xbow 2 3 flprxb invrxb invrxbu invrxbu 1 7 0 fires 5 shots before reload 0 item_crossbow 12 item_crossbow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Eagle Orb orb ob1 ob1 ob1 100 2 1 2 5 14 -10 100 10 1 0 0 0 1 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Sacred Globe orb ob2 ob1 ob2 100 3 1 3 8 14 -10 100 15 8 0 0 0 1 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Smoked Sphere orb ob3 ob3 ob3 100 3 1 4 10 14 100 18 12 8 0 0 1 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Clasped Orb orb ob4 ob4 ob4 100 4 1 5 12 14 100 20 17 13 0 0 1 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Dragon Stone orb ob5 ob4 ob5 100 5 1 8 18 14 10 100 25 24 18 0 0 1 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Stag Bow abow am1 am1 am1 100 3 1 1 7 12 13 100 30 45 24 1 18 14 0 0 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Reflex Bow abow am2 am2 am2 100 3 1 1 9 19 13 10 100 35 60 28 1 27 20 0 0 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Maiden Spear aspe am3 am3 am3 100 3 1 1 18 24 15 4 80 50 54 40 14 18 14 0 0 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 7 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Maiden Pike aspe am4 pik am4 100 3 1 1 23 55 15 4 10 80 50 63 52 13 27 20 0 0 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 7 0 3 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Maiden Javelin ajav am5 pil am5 100 3 1 8 14 6 22 15 2 -10 80 50 33 47 15 23 17 0 0 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 1 4 0 primarily thrown 0 item_staff 12 item_staff 0 0 5 0 0 0 371 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
Glowing Orb orb ob6 ob1 ob6 100 2 1 8 21 14 -10 100 10 32 24 0 0 1 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Crystalline Globe orb ob7 ob1 ob7 100 3 1 10 26 14 -10 100 15 37 27 0 0 1 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Cloudy Sphere orb ob8 ob3 ob8 100 3 1 11 29 14 100 18 41 30 0 0 1 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Sparkling Ball orb ob9 ob4 ob9 100 4 1 13 32 14 100 20 46 34 0 0 1 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Swirling Crystal orb oba ob4 oba 100 5 1 18 42 14 10 100 25 50 37 0 0 1 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Ashwood Bow abow am6 am1 am6 100 3 1 1 16 29 13 100 56 77 24 1 39 29 0 0 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Ceremonial Bow abow am7 am2 am7 100 3 1 1 19 41 13 10 100 73 110 28 1 47 35 0 0 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Ceremonial Spear aspe am8 am3 am8 100 3 1 1 34 51 15 4 80 50 101 80 14 43 32 0 0 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 7 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Ceremonial Pike aspe am9 pik am9 100 3 1 1 42 101 15 4 20 80 50 115 98 13 51 38 0 0 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 7 0 3 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Ceremonial Javelin ajav ama pil ama 100 3 1 18 35 18 54 15 2 -10 80 50 25 109 15 35 26 0 0 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 1 4 0 primarily thrown 0 item_staff 12 item_staff 0 0 5 0 0 0 371 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
Heavenly Stone orb obb ob1 obb 100 2 1 21 46 14 -10 100 10 59 44 0 0 1 303 bst ob1 ob6 obb 1hs 1hs 5 1hss 1 2 flpob1 invob1 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Eldritch Orb orb obc ob1 obc 100 3 1 18 50 14 -10 100 15 67 50 0 0 1 303 bst ob2 ob7 obc 1hs 1hs 5 1hss 1 2 flpob1 invob2 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Demon Heart orb obd ob3 obd 100 3 1 23 55 14 100 18 75 56 0 0 1 303 bst ob3 ob8 obd 1hs 1hs 5 1hss 1 2 flpob3 invob3 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Vortex Orb orb obe ob4 obe 100 4 1 12 66 14 100 20 84 63 0 0 1 303 bst ob4 ob9 obe 1hs 1hs 5 1hss 1 2 flpob4 invob4 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Dimensional Shard orb obf ob4 obf 100 5 1 30 53 14 10 100 25 85 66 0 0 1 303 bst ob5 oba obf 1hs 1hs 5 1hss 1 3 flpob5 invob5 1 6 0 0 item_orb 12 item_orb 0 0 5 0 1 0 0 7 0 0 5 5 8 0 xxx xxx 1 0
|
||||
Matriarchal Bow abow amb am1 amb 100 3 1 1 20 47 13 -10 100 87 187 24 1 53 39 0 0 300 sbw am1 am6 amb bow bow 6 bow 2 4 flpam1 invam1 invswbu invswbu 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Grand Matron Bow abow amc am2 amc 100 3 1 1 14 72 13 10 100 108 152 28 1 78 58 0 0 300 sbw am2 am7 amc bow bow 6 bow 2 4 flpam2 invam2 1 7 0 0 item_bow 12 item_bow 0 0 5 1 0 0 0 7 0 0 1 5 8 0 xxx xxx 1 0
|
||||
Matriarchal Spear aspe amd am3 amd 100 3 1 1 65 95 15 4 80 50 114 142 14 61 45 0 0 302 spr am3 am8 amd 2ht 2ht 5 2ht 2 4 flpam3 invam3 1 7 0 2 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
Matriarchal Pike aspe ame pik ame 100 3 1 1 37 153 15 4 20 80 50 132 149 13 81 60 0 0 302 spr am4 am9 ame 2ht 2ht 5 2ht 2 4 flppik invam4 1 7 0 3 square reach 0 item_staff 12 item_staff 0 0 5 0 0 0 0 7 0 0 3 5 8 0 xxx xxx 1 0
|
||||
MatriarchalJavelin ajav amf pil amf 100 3 1 30 54 35 66 15 2 -10 80 50 107 151 20 65 48 0 0 302 jav am5 ama amf 1ht 1ht 5 1ht 1 3 1 32 80 80 flpam5 invam5 1 4 0 primarily thrown 0 item_staff 12 item_staff 0 0 5 0 0 0 371 7 2 0 3 1 2 0 xxx xxx 1 0
|
||||
|
@ -1,37 +0,0 @@
|
||||
Name version spawnable rare level maxlevel levelreq class classlevelreq frequency group mod1code mod1param mod1min mod1max mod2code mod2param mod2min mod2max mod3code mod3param mod3min mod3max transform transformcolor itype1 itype2 itype3 itype4 itype5 itype6 itype7 etype1 etype2 etype3 divide multiply add
|
||||
Fletcher's 100 1 1 1 15 3 300 skilltab 0 1 1 armo weap 0 0 0
|
||||
Bowyer's 100 1 1 40 30 2 300 skilltab 0 2 2 armo weap 0 0 0
|
||||
Archer's 100 1 60 45 1 300 skilltab 0 3 3 armo weap 0 0 0
|
||||
Acrobat's 100 1 1 1 15 3 301 skilltab 1 1 1 armo weap 0 0 0
|
||||
Gymnast's 100 1 1 40 30 2 301 skilltab 1 2 2 armo weap 0 0 0
|
||||
Athlete's 100 1 60 45 1 301 skilltab 1 3 3 armo weap 0 0 0
|
||||
Harpoonist's 100 1 1 1 15 3 302 skilltab 2 1 1 armo weap 0 0 0
|
||||
Spearmaiden's 100 1 1 40 30 2 302 skilltab 2 2 2 armo weap 0 0 0
|
||||
Lancer's 100 1 60 45 1 302 skilltab 2 3 3 armo weap 0 0 0
|
||||
of the Jackal 100 1 1 1 3 6 303 hp 1 5 armo weap 0 0 0
|
||||
of the Fox 100 1 1 11 8 5 303 hp 6 10 armo weap 0 0 0
|
||||
of the Wolf 100 1 1 27 20 4 303 hp 11 20 armo weap 0 0 0
|
||||
of the Tiger 100 1 1 43 35 3 303 hp 21 30 armo weap 0 0 0
|
||||
of the Mammoth 100 1 1 59 51 2 303 hp 31 40 armo weap 0 0 0
|
||||
of the Colossus 100 1 75 67 1 303 hp 41 60 armo weap 0 0 0
|
||||
Lizard's 100 1 1 3 2 4 303 mana 1 5 armo weap 0 0 0
|
||||
Snake's 100 1 1 12 9 3 303 mana 5 10 armo weap 0 0 0
|
||||
Serpent's 100 1 1 23 16 2 303 mana 11 20 armo weap 0 0 0
|
||||
Drake's 100 1 1 34 26 2 303 mana 21 30 1 cblu armo weap 0 0 0
|
||||
Dragon's 100 1 1 45 37 1 303 mana 31 40 1 cblu armo weap 0 0 0
|
||||
Wyrm's 100 1 1 56 48 1 303 mana 41 60 1 cblu armo weap 0 0 0
|
||||
Great Wyrm's 100 1 67 59 1 303 mana 61 80 1 cblu armo weap 0 0 0
|
||||
Shimmering 100 1 1 1 3 8 304 res-all 5 10 armo weap 0 0 0
|
||||
Rainbow 100 1 1 18 13 7 304 res-all 8 15 armo weap 0 0 0
|
||||
Scintillating 100 1 1 28 21 6 304 res-all 16 30 armo weap 0 0 0
|
||||
Prismatic 100 1 1 39 31 5 304 res-all 25 35 armo weap 0 0 0
|
||||
Chromatic 100 1 50 42 4 304 res-all 35 45 armo weap 0 0 0
|
||||
Sharp 100 1 1 10 5 3 304 att 15 30 dmg% 10 20 armo weap 0 0 0
|
||||
Fine 100 1 1 18 13 3 304 att 31 60 dmg% 21 30 armo weap 0 0 0
|
||||
Warrior's 100 1 1 30 23 2 304 att 61 80 dmg% 31 40 armo weap 0 0 0
|
||||
Soldier's 100 1 1 42 34 2 304 att 81 100 dmg% 41 50 armo weap 0 0 0
|
||||
Knight's 100 1 1 50 42 2 304 att 101 121 dmg% 51 65 1 dgld armo weap 0 0 0
|
||||
of Blight 100 1 1 1 3 3 305 pois-min 8 8 pois-max 24 24 pois-len 75 75 armo weap 0 0 0
|
||||
of Venom 100 1 1 15 11 2 305 pois-min 16 16 pois-max 48 48 pois-len 75 75 armo weap 0 0 0
|
||||
of Pestilence 100 1 1 25 18 2 305 pois-min 32 32 pois-max 72 72 pois-len 100 100 armo weap 0 0 0
|
||||
of Anthrax 100 1 33 25 2 305 pois-min 64 64 pois-max 128 128 pois-len 100 100 armo weap 0 0 0
|
@ -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 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439 343 372 378 407 374 403 378 407 405 434 378 407 436 465 378 407
|
||||
sash 8 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439
|
||||
default 4 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471
|
||||
girdle 16 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439 343 372 378 407 374 403 378 407 405 434 378 407 436 465 378 407 343 372 346 375 374 403 346 375 405 434 346 375 436 465 346 375
|
||||
light belt 8 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439
|
||||
heavy belt 12 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439 343 372 378 407 374 403 378 407 405 434 378 407 436 465 378 407
|
||||
uber belt 16 29 29 343 372 442 471 374 403 442 471 405 434 442 471 436 465 442 471 343 372 410 439 374 403 410 439 405 434 410 439 436 465 410 439 343 372 378 407 374 403 378 407 405 434 378 407 436 465 378 407 343 372 346 375 374 403 346 375 405 434 346 375 436 465 346 375
|
||||
Expansion
|
||||
belt2 12 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559 423 452 498 527 454 483 498 527 485 514 498 527 516 545 498 527
|
||||
sash2 8 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559
|
||||
default2 4 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591
|
||||
girdle2 16 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559 423 452 498 527 454 483 498 527 485 514 498 527 516 545 498 527 423 452 466 495 454 483 466 495 485 514 466 495 516 545 466 495
|
||||
light belt2 8 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559
|
||||
heavy belt2 12 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559 423 452 498 527 454 483 498 527 485 514 498 527 516 545 498 527
|
||||
uber belt 16 29 29 423 452 562 591 454 483 562 591 485 514 562 591 516 545 562 591 423 452 530 559 454 483 530 559 485 514 530 559 516 545 530 559 423 452 498 527 454 483 498 527 485 514 498 527 516 545 498 527 423 452 466 495 454 483 466 495 485 514 466 495 516 545 466 495
|
@ -1,12 +0,0 @@
|
||||
Body Location Code
|
||||
None
|
||||
Head head
|
||||
Neck neck
|
||||
Torso tors
|
||||
Right Arm rarm
|
||||
Left Arm larm
|
||||
Right Ring rrin
|
||||
Left Ring lrin
|
||||
Belt belt
|
||||
Feet feet
|
||||
Gloves glov
|
@ -1,16 +0,0 @@
|
||||
cube item class Code
|
||||
None
|
||||
Health Potion hpt
|
||||
Mana Potion mpt
|
||||
Item itm
|
||||
Axe axe
|
||||
Sword swr
|
||||
Spear spr
|
||||
Gem gem
|
||||
Staff stf
|
||||
Belt blt
|
||||
Dagger dag
|
||||
Weapon wep
|
||||
Armor arm
|
||||
Ring rin
|
||||
Amulet amu
|
127
txt/gamble.txt
127
txt/gamble.txt
@ -1,127 +0,0 @@
|
||||
name code
|
||||
amulet amu
|
||||
ring rin
|
||||
Hand Axe hax
|
||||
Axe axe
|
||||
Double Axe 2ax
|
||||
Military Pick mpi
|
||||
War Axe wax
|
||||
Large Axe lax
|
||||
Broad Axe bax
|
||||
Battle Axe btx
|
||||
Great Axe gax
|
||||
Giant Axe gix
|
||||
Club clb
|
||||
Spiked Club spc
|
||||
Mace mac
|
||||
Morning Star mst
|
||||
Flail fla
|
||||
War Hammer whm
|
||||
Maul mau
|
||||
Great Maul gma
|
||||
Short Sword ssd
|
||||
Scimitar scm
|
||||
Saber sbr
|
||||
Falchion flc
|
||||
Crystal Sword crs
|
||||
Broad Sword bsd
|
||||
Long Sword lsd
|
||||
War Sword wsd
|
||||
Two-Handed Sword 2hs
|
||||
Claymore clm
|
||||
Giant Sword gis
|
||||
Bastard Sword bsw
|
||||
Flamberge flb
|
||||
Great Sword gsd
|
||||
Dagger dgr
|
||||
Dirk dir
|
||||
Kriss kri
|
||||
Blade bld
|
||||
Spear spr
|
||||
Trident tri
|
||||
Brandistock brn
|
||||
Spetum spt
|
||||
Pike pik
|
||||
Bardiche bar
|
||||
Voulge vou
|
||||
Scythe scy
|
||||
Poleaxe pax
|
||||
Halberd hal
|
||||
War Scythe wsc
|
||||
Short Bow sbw
|
||||
Hunter's Bow hbw
|
||||
Long Bow lbw
|
||||
Composite Bow cbw
|
||||
Short Battle Bow sbb
|
||||
Long Battle Bow lbb
|
||||
Short War Bow swb
|
||||
Long War Bow lwb
|
||||
Light Crossbow lxb
|
||||
Crossbow mxb
|
||||
Heavy Crossbow hxb
|
||||
Repeating Crossbow rxb
|
||||
Cap/hat cap
|
||||
Skull Cap skp
|
||||
Helm hlm
|
||||
Full Helm fhl
|
||||
Great Helm ghm
|
||||
Crown crn
|
||||
Mask msk
|
||||
Quilted Armor qui
|
||||
Leather Armor lea
|
||||
Hard Leather Armor hla
|
||||
Studded Leather stu
|
||||
Ring Mail rng
|
||||
Scale Mail scl
|
||||
Chain Mail chn
|
||||
Breast Plate brs
|
||||
Splint Mail spl
|
||||
Plate Mail plt
|
||||
Field Plate fld
|
||||
Gothic Plate gth
|
||||
Full Plate Mail ful
|
||||
Ancient Armor aar
|
||||
Light Plate ltp
|
||||
Buckler buc
|
||||
Small Shield sml
|
||||
Large Shield lrg
|
||||
Kite Shield kit
|
||||
Tower Shield tow
|
||||
Gothic Shield gts
|
||||
Gloves(L) lgl
|
||||
Heavy Gloves vgl
|
||||
Bracers(M) mgl
|
||||
Light Gauntlets tgl
|
||||
Gaunlets(H) hgl
|
||||
Leather Boots lbt
|
||||
Heavy Boots vbt
|
||||
Chain Boots mbt
|
||||
Light Plate Boots tbt
|
||||
Plate Boots hbt
|
||||
Sash(L) lbl
|
||||
Light Belt vbl
|
||||
Belt(M) mbl
|
||||
Heavy Belt tbl
|
||||
Girdle(H) hbl
|
||||
Bone Helm bhm
|
||||
Bone Shield bsh
|
||||
Spiked Shield spk
|
||||
Expansion
|
||||
Throwing Knife tkf
|
||||
Throwing Axe tax
|
||||
Balanced Knife bkf
|
||||
Balanced Axe bal
|
||||
Javelin jav
|
||||
Pilum pil
|
||||
Short Spear ssp
|
||||
Glaive glv
|
||||
Throwing Spear tsp
|
||||
Katar ktr
|
||||
Wrist Blade wrb
|
||||
Axe Fist axf
|
||||
Cestus ces
|
||||
Claws clw
|
||||
Blade Talons btl
|
||||
Scissors Katar skr
|
||||
Circlet ci0
|
||||
Coronet ci1
|
@ -1,10 +0,0 @@
|
||||
Hireling Description Code
|
||||
None
|
||||
Fire Arrow farw
|
||||
Cold Arrow carw
|
||||
Combat comb
|
||||
Defensive Auras def
|
||||
Offensive Auras off
|
||||
Fire Spells fire
|
||||
Cold Spells cold
|
||||
Lightning Spells ltng
|
Loading…
Reference in New Issue
Block a user