You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4439 lines
128 KiB
4439 lines
128 KiB
local MDT = MDT
|
|
local L = MDT.L
|
|
local dungeonIndex = 16
|
|
MDT.mapInfo[dungeonIndex] = {
|
|
viewportPositionOverrides =
|
|
{
|
|
[1] = {
|
|
zoomScale = 1.5999999046326;
|
|
horizontalPan = 159.53385728911;
|
|
verticalPan = 112.92774143478;
|
|
};
|
|
};
|
|
};
|
|
|
|
MDT.scaleMultiplier[dungeonIndex] = 0.6
|
|
|
|
MDT.dungeonTotalCount[dungeonIndex] = {normal=261,teeming=313,teemingEnabled=true}
|
|
|
|
local selectorGroup
|
|
local AceGUI = LibStub("AceGUI-3.0")
|
|
local db
|
|
local function fixFreeholdShowHide(widget,frame,isFrame)
|
|
frame = frame or MDT.main_frame
|
|
local originalShow,originalHide = frame.Show,frame.Hide
|
|
if not isFrame then
|
|
widget = widget.frame
|
|
end
|
|
function frame:Show(...)
|
|
if db.currentDungeonIdx == 16 then
|
|
widget:Show()
|
|
end
|
|
return originalShow(self, ...);
|
|
end
|
|
function frame:Hide(...)
|
|
widget:Hide()
|
|
return originalHide(self, ...);
|
|
end
|
|
end
|
|
|
|
function MDT:ToggleFreeholdSelector(show)
|
|
db = MDT:GetDB()
|
|
if not selectorGroup then
|
|
selectorGroup = AceGUI:Create("SimpleGroup")
|
|
selectorGroup.frame:SetFrameStrata("HIGH")
|
|
selectorGroup.frame:SetFrameLevel(50)
|
|
if not selectorGroup.frame.SetBackdrop then
|
|
Mixin(selectorGroup.frame, BackdropTemplateMixin)
|
|
end
|
|
selectorGroup.frame:SetBackdropColor(unpack(MDT.BackdropColor))
|
|
fixFreeholdShowHide(selectorGroup)
|
|
selectorGroup:SetLayout("Flow")
|
|
selectorGroup.frame.bg = selectorGroup.frame:CreateTexture(nil, "BACKGROUND")
|
|
selectorGroup.frame.bg:SetAllPoints(selectorGroup.frame)
|
|
selectorGroup.frame.bg:SetColorTexture(unpack(MDT.BackdropColor))
|
|
selectorGroup:SetWidth(120)
|
|
selectorGroup:SetHeight(90)
|
|
selectorGroup.frame:SetPoint("TOPRIGHT", MDT.main_frame,"TOPRIGHT",0,0)
|
|
|
|
end
|
|
MDT:UpdateFreeholdSelector(MDT:GetCurrentPreset().week)
|
|
if show then
|
|
selectorGroup.frame:Show()
|
|
MDT:DungeonEnemies_UpdateFreeholdCrew(MDT:GetCurrentPreset().freeholdCrew)
|
|
MDT:ReloadPullButtons()
|
|
MDT:UpdateProgressbar()
|
|
else
|
|
selectorGroup.frame:Hide()
|
|
MDT:DungeonEnemies_UpdateFreeholdCrew()
|
|
end
|
|
end
|
|
|
|
function MDT:UpdateFreeholdSelector(week)
|
|
if not selectorGroup then return end
|
|
week = week%3
|
|
if week == 0 then week = 3 end
|
|
selectorGroup:ReleaseChildren()
|
|
MDT:GetCurrentPreset().freeholdCrew = (MDT:GetCurrentPreset().freeholdCrew and week) or nil
|
|
local label = AceGUI:Create("Label")
|
|
label:SetText(" Join Crew:")
|
|
selectorGroup:AddChild(label)
|
|
local check = AceGUI:Create("CheckBox")
|
|
check:SetLabel((week==2 and "Blacktooth") or (week==1 and "Cutwater") or (week==3 and "Bilge Rats"))
|
|
selectorGroup:AddChild(check)
|
|
check:SetCallback("OnValueChanged",function(widget,callbackName,value)
|
|
MDT:GetCurrentPreset().freeholdCrew = (value and week) or nil
|
|
if MDT.liveSessionActive and MDT:GetCurrentPreset().uid == MDT.livePresetUID then
|
|
MDT:LiveSession_SendFreeholdSelector(value,week)
|
|
end
|
|
MDT:DungeonEnemies_UpdateFreeholdCrew(MDT:GetCurrentPreset().freeholdCrew)
|
|
MDT:ReloadPullButtons()
|
|
MDT:UpdateProgressbar()
|
|
end)
|
|
check:SetValue(MDT:GetCurrentPreset().freeholdCrew)
|
|
MDT:DungeonEnemies_UpdateFreeholdCrew(MDT:GetCurrentPreset().freeholdCrew)
|
|
end
|
|
|
|
MDT.mapPOIs[dungeonIndex] = {
|
|
[1] = {
|
|
[1] = {
|
|
["y"] = -200.49488376925;
|
|
["x"] = 591.8001100269;
|
|
["template"] = "DeathReleasePinTemplate";
|
|
["graveyardDescription"] = "";
|
|
["type"] = "graveyard";
|
|
};
|
|
[2] = {
|
|
["y"] = -348.54647419431;
|
|
["x"] = 372.07463735;
|
|
["template"] = "DeathReleasePinTemplate";
|
|
["graveyardDescription"] = L["freeholdGraveyardDescription2"];
|
|
["type"] = "graveyard";
|
|
};
|
|
[3] = {
|
|
["y"] = -343.53532845441;
|
|
["x"] = 576.72706599388;
|
|
["template"] = "DeathReleasePinTemplate";
|
|
["graveyardDescription"] = L["freeholdGraveyardDescription1"];
|
|
["type"] = "graveyard";
|
|
};
|
|
[4] = {
|
|
["y"] = -360.14964210345;
|
|
["x"] = 292.04610954455;
|
|
["template"] = "MapLinkPinTemplate";
|
|
["weeks"] = {
|
|
[5] = true;
|
|
[2] = true;
|
|
[8] = true;
|
|
[11] = true;
|
|
};
|
|
["text"] = L["freeholdBeguilingPatrolNote"];
|
|
["type"] = "generalNote";
|
|
["season"] = 3;
|
|
};
|
|
[5] = {
|
|
["npcId"] = 161244;
|
|
["type"] = "nyalothaSpire";
|
|
["index"] = 1;
|
|
["scale"] = 0.7;
|
|
["y"] = -216.18611247057;
|
|
["x"] = 542.83067431935;
|
|
["tooltipText"] = L["Defiled Spire of Ny'alotha"];
|
|
["weeks"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[10] = true;
|
|
};
|
|
["template"] = "VignettePinTemplate";
|
|
};
|
|
[6] = {
|
|
["npcId"] = 161243;
|
|
["type"] = "nyalothaSpire";
|
|
["index"] = 2;
|
|
["scale"] = 0.7;
|
|
["y"] = -399.99192050787;
|
|
["x"] = 426.32933852779;
|
|
["tooltipText"] = L["Entropic Spire of Ny'alotha"];
|
|
["weeks"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
[3] = true;
|
|
[4] = true;
|
|
[5] = true;
|
|
[6] = true;
|
|
[7] = true;
|
|
[8] = true;
|
|
[9] = true;
|
|
[10] = true;
|
|
[11] = true;
|
|
[12] = true;
|
|
};
|
|
["template"] = "VignettePinTemplate";
|
|
};
|
|
[7] = {
|
|
["npcId"] = 161124;
|
|
["type"] = "nyalothaSpire";
|
|
["index"] = 3;
|
|
["scale"] = 0.7;
|
|
["y"] = -321.73972084523;
|
|
["x"] = 264.17738562146;
|
|
["tooltipText"] = L["Brutal Spire of Ny'alotha"];
|
|
["weeks"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[10] = true;
|
|
[9] = true;
|
|
[6] = true;
|
|
};
|
|
["template"] = "VignettePinTemplate";
|
|
};
|
|
[8] = {
|
|
["npcId"] = 161241;
|
|
["type"] = "nyalothaSpire";
|
|
["index"] = 4;
|
|
["scale"] = 0.7;
|
|
["y"] = -192.18697377317;
|
|
["x"] = 362.86539259214;
|
|
["tooltipText"] = L["Cursed Spire of Ny'alotha"];
|
|
["weeks"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
[3] = true;
|
|
[4] = true;
|
|
[5] = true;
|
|
[6] = true;
|
|
[7] = true;
|
|
[8] = true;
|
|
[9] = true;
|
|
[10] = true;
|
|
[11] = true;
|
|
[12] = true;
|
|
};
|
|
["template"] = "VignettePinTemplate";
|
|
};
|
|
[9] = {
|
|
["npcId"] = 161124;
|
|
["type"] = "nyalothaSpire";
|
|
["index"] = 5;
|
|
["scale"] = 0.7;
|
|
["y"] = -217.98968560487;
|
|
["x"] = 542.69650118108;
|
|
["tooltipText"] = L["Brutal Spire of Ny'alotha"];
|
|
["weeks"] = {
|
|
[11] = true;
|
|
[7] = true;
|
|
[8] = true;
|
|
[3] = true;
|
|
[12] = true;
|
|
[4] = true;
|
|
};
|
|
["template"] = "VignettePinTemplate";
|
|
};
|
|
[10] = {
|
|
["npcId"] = 161244;
|
|
["type"] = "nyalothaSpire";
|
|
["index"] = 6;
|
|
["scale"] = 0.7;
|
|
["y"] = -322.99946041137;
|
|
["x"] = 263.92862992815;
|
|
["tooltipText"] = L["Defiled Spire of Ny'alotha"];
|
|
["weeks"] = {
|
|
[11] = true;
|
|
[7] = true;
|
|
[8] = true;
|
|
[3] = true;
|
|
[12] = true;
|
|
[4] = true;
|
|
};
|
|
["template"] = "VignettePinTemplate";
|
|
};
|
|
};
|
|
};
|
|
|
|
MDT.dungeonEnemies[dungeonIndex] = {
|
|
[1] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 581.30424951742;
|
|
["infested"] = {};
|
|
["g"] = 1;
|
|
["y"] = -218.20907864623;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 604.18640290331;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["g"] = 5;
|
|
["y"] = -280.82105834615;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 620.16114925439;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["g"] = 7;
|
|
["y"] = -294.14932601393;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 601.33233622766;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["g"] = 8;
|
|
["y"] = -317.90736630668;
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 607.18948489272;
|
|
["infested"] = {};
|
|
["g"] = 8;
|
|
["y"] = -319.33598213933;
|
|
};
|
|
[6] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 550.13625665189;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["g"] = 9;
|
|
["y"] = -271.65450774438;
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 525.02858089389;
|
|
["infested"] = {};
|
|
["g"] = 14;
|
|
["y"] = -325.85163004308;
|
|
};
|
|
[8] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 555.78923168149;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["g"] = 16;
|
|
["y"] = -316.99475126787;
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 553.4367362721;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 20;
|
|
["y"] = -357.11577737522;
|
|
};
|
|
[10] = {
|
|
["y"] = -349.57479282356;
|
|
["x"] = 560.64984764785;
|
|
["g"] = 20;
|
|
["sublevel"] = 1;
|
|
};
|
|
[11] = {
|
|
["y"] = -313.55766795587;
|
|
["x"] = 539.61713085603;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -313.55766795587;
|
|
["x"] = 539.61713085603;
|
|
};
|
|
[2] = {
|
|
["y"] = -297.88199032609;
|
|
["x"] = 533.40090066634;
|
|
};
|
|
[3] = {
|
|
["y"] = -284.36846912865;
|
|
["x"] = 530.69818482811;
|
|
};
|
|
[4] = {
|
|
["y"] = -297.88199032609;
|
|
["x"] = 533.40090066634;
|
|
};
|
|
[5] = {
|
|
["y"] = -313.55766795587;
|
|
["x"] = 539.61713085603;
|
|
};
|
|
[6] = {
|
|
["y"] = -326.26039064007;
|
|
["x"] = 540.96845397891;
|
|
};
|
|
[7] = {
|
|
["y"] = -345.44954782509;
|
|
["x"] = 551.50902023078;
|
|
};
|
|
[8] = {
|
|
["y"] = -326.26039064007;
|
|
["x"] = 540.96845397891;
|
|
};
|
|
};
|
|
["g"] = 21;
|
|
["sublevel"] = 1;
|
|
};
|
|
[12] = {
|
|
["y"] = -192.36645718052;
|
|
["x"] = 316.11979809251;
|
|
["g"] = 64;
|
|
["sublevel"] = 1;
|
|
};
|
|
[13] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 312.48054510155;
|
|
["infested"] = {};
|
|
["g"] = 64;
|
|
["y"] = -187.57681227386;
|
|
};
|
|
};
|
|
["reaping"] = 148894;
|
|
["id"] = 129602;
|
|
["spells"] = {
|
|
[274860] = {};
|
|
[277242] = {};
|
|
[209859] = {};
|
|
[257426] = {};
|
|
[277564] = {};
|
|
};
|
|
["scale"] = 1.2;
|
|
["health"] = 1229592;
|
|
["count"] = 6;
|
|
["displayId"] = 81224;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 121;
|
|
["name"] = "Irontide Enforcer";
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
};
|
|
[2] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -223.4300274816;
|
|
["x"] = 581.50181759256;
|
|
["g"] = 1;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 576.66309865434;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 1;
|
|
["y"] = -220.52680442486;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 600.07649778772;
|
|
["infested"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
};
|
|
["g"] = 4;
|
|
["y"] = -261.55965681488;
|
|
};
|
|
[4] = {
|
|
["y"] = -318.33597514723;
|
|
["x"] = 611.04660479748;
|
|
["g"] = 8;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 597.47520657594;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 8;
|
|
["y"] = -314.62168973697;
|
|
};
|
|
[6] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 557.20720744203;
|
|
["infested"] = {};
|
|
["g"] = 20;
|
|
["y"] = -353.6731653106;
|
|
};
|
|
[7] = {
|
|
["y"] = -358.09938283234;
|
|
["x"] = 548.1908358106;
|
|
["g"] = 20;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["y"] = -344.65676553796;
|
|
["x"] = 562.45312197414;
|
|
["g"] = 20;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 344.7599440744;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 63;
|
|
["y"] = -176.36155345305;
|
|
};
|
|
[10] = {
|
|
["y"] = -196.75002336221;
|
|
["x"] = 319.81840615478;
|
|
["g"] = 64;
|
|
["sublevel"] = 1;
|
|
};
|
|
[11] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 309.95540429154;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 64;
|
|
["y"] = -183.05139594603;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 128551;
|
|
["spells"] = {
|
|
[257476] = {};
|
|
[277242] = {};
|
|
[209859] = {};
|
|
[132951] = {};
|
|
[277564] = {};
|
|
[257478] = {};
|
|
};
|
|
["scale"] = 1;
|
|
["health"] = 768495;
|
|
["count"] = 4;
|
|
["displayId"] = 30221;
|
|
["creatureType"] = "Beast";
|
|
["level"] = 120;
|
|
["name"] = "Irontide Mastiff";
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Disorient"] = true;
|
|
["Sap"] = true;
|
|
["Stun"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[3] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 588.65484190154;
|
|
["infested"] = {};
|
|
["g"] = 2;
|
|
["y"] = -238.78070801174;
|
|
};
|
|
[2] = {
|
|
["y"] = -254.02737939683;
|
|
["x"] = 599.36844553568;
|
|
["g"] = 4;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 597.36603508842;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 5;
|
|
["y"] = -285.78709088423;
|
|
};
|
|
[4] = {
|
|
["y"] = -286.94485788147;
|
|
["x"] = 593.21552800938;
|
|
["g"] = 5;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 619.2334876822;
|
|
["infested"] = {};
|
|
["g"] = 7;
|
|
["y"] = -279.83856882483;
|
|
};
|
|
[6] = {
|
|
["y"] = -272.53054043255;
|
|
["x"] = 554.42436064203;
|
|
["g"] = 9;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 550.8884626247;
|
|
["infested"] = {};
|
|
["g"] = 9;
|
|
["y"] = -266.07816174063;
|
|
};
|
|
[8] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 559.77976564586;
|
|
["infested"] = {};
|
|
["g"] = 11;
|
|
["y"] = -300.05438691243;
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 556.79975140368;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 11;
|
|
["y"] = -303.71066445212;
|
|
};
|
|
[10] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 526.73214471648;
|
|
["infested"] = {};
|
|
["g"] = 12;
|
|
["y"] = -274.65566223717;
|
|
};
|
|
[11] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 524.05884893471;
|
|
["infested"] = {};
|
|
["g"] = 13;
|
|
["y"] = -312.666079778;
|
|
};
|
|
[12] = {
|
|
["y"] = -317.92258515668;
|
|
["x"] = 560.63458495939;
|
|
["g"] = 16;
|
|
["sublevel"] = 1;
|
|
};
|
|
[13] = {
|
|
["y"] = -285.51281918287;
|
|
["x"] = 579.23010552039;
|
|
["g"] = 18;
|
|
["sublevel"] = 1;
|
|
};
|
|
[14] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 398.38251277098;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -436.63910850897;
|
|
["x"] = 398.38251277098;
|
|
};
|
|
[2] = {
|
|
["y"] = -436.19210304506;
|
|
["x"] = 385.1521350923;
|
|
};
|
|
[3] = {
|
|
["y"] = -430.69211492035;
|
|
["x"] = 382.40211957228;
|
|
};
|
|
[4] = {
|
|
["y"] = -436.19210304506;
|
|
["x"] = 385.1521350923;
|
|
};
|
|
[5] = {
|
|
["y"] = -436.63910850897;
|
|
["x"] = 398.38251277098;
|
|
};
|
|
[6] = {
|
|
["y"] = -434.4421117003;
|
|
["x"] = 418.15214967123;
|
|
};
|
|
};
|
|
["upstairs"] = true;
|
|
["infested"] = {};
|
|
["y"] = -436.63910850897;
|
|
};
|
|
[15] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 427.07102168601;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -408.93419098045;
|
|
["x"] = 427.07102168601;
|
|
};
|
|
[2] = {
|
|
["y"] = -408.86471208232;
|
|
["x"] = 417.64418470973;
|
|
};
|
|
[3] = {
|
|
["y"] = -418.20897096026;
|
|
["x"] = 407.80813013853;
|
|
};
|
|
[4] = {
|
|
["y"] = -408.86471208232;
|
|
["x"] = 417.64418470973;
|
|
};
|
|
[5] = {
|
|
["y"] = -408.93419098045;
|
|
["x"] = 427.07102168601;
|
|
};
|
|
[6] = {
|
|
["y"] = -406.07781822831;
|
|
["x"] = 433.54582268221;
|
|
};
|
|
};
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["y"] = -408.93419098045;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[258673] = {};
|
|
[277242] = {};
|
|
[268440] = {};
|
|
[277564] = {};
|
|
[258672] = {};
|
|
[209859] = {};
|
|
};
|
|
["id"] = 126918;
|
|
["name"] = "Irontide Crackshot";
|
|
["health"] = 691646;
|
|
["displayId"] = 81254;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["count"] = 4;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Mind Control"] = true;
|
|
["Sap"] = true;
|
|
["Silence"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[4] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 585.54966037025;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 2;
|
|
["y"] = -242.68192202712;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 562.73267958816;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 3;
|
|
["y"] = -253.13665336806;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 559.61847130863;
|
|
["infested"] = {};
|
|
["g"] = 3;
|
|
["y"] = -250.02736876485;
|
|
};
|
|
[4] = {
|
|
["y"] = -261.5273725097;
|
|
["x"] = 606.61847821718;
|
|
["g"] = 4;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["y"] = -257.9514065402;
|
|
["x"] = 602.5507214912;
|
|
["g"] = 4;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -283.6849123803;
|
|
["x"] = 601.00210963562;
|
|
["g"] = 5;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 622.58796835444;
|
|
["infested"] = {};
|
|
["g"] = 7;
|
|
["y"] = -290.13103848144;
|
|
};
|
|
[8] = {
|
|
["y"] = -297.12838683341;
|
|
["x"] = 562.74913108477;
|
|
["g"] = 11;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 565.9136750961;
|
|
["infested"] = {};
|
|
["g"] = 11;
|
|
["y"] = -294.59674619203;
|
|
};
|
|
[10] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 525.78848760998;
|
|
["infested"] = {};
|
|
["g"] = 12;
|
|
["y"] = -279.43331351388;
|
|
};
|
|
[11] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 525.33974317856;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 12;
|
|
["y"] = -283.01008776162;
|
|
};
|
|
[12] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 527.30621143788;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 13;
|
|
["y"] = -315.81871469401;
|
|
};
|
|
[13] = {
|
|
["y"] = -302.65328824365;
|
|
["x"] = 610.39756181372;
|
|
["g"] = 17;
|
|
["sublevel"] = 1;
|
|
};
|
|
[14] = {
|
|
["y"] = -303.02134561571;
|
|
["x"] = 605.79892992417;
|
|
["infested"] = {
|
|
[1] = true;
|
|
[3] = true;
|
|
};
|
|
["g"] = 17;
|
|
["sublevel"] = 1;
|
|
};
|
|
[15] = {
|
|
["y"] = -289.80389024593;
|
|
["x"] = 579.35159776985;
|
|
["g"] = 18;
|
|
["sublevel"] = 1;
|
|
};
|
|
[16] = {
|
|
["y"] = -317.75932407748;
|
|
["x"] = 543.35132907592;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 21;
|
|
["sublevel"] = 1;
|
|
};
|
|
[17] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 541.50922228882;
|
|
["g"] = 21;
|
|
["y"] = -322.36458539847;
|
|
};
|
|
[18] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 547.35174798458;
|
|
["g"] = 22;
|
|
["y"] = -292.75251983388;
|
|
};
|
|
[19] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 543.40850929022;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -290.39756402535;
|
|
["x"] = 543.40850929022;
|
|
};
|
|
[2] = {
|
|
["y"] = -278.66679590745;
|
|
["x"] = 542.6392848175;
|
|
};
|
|
[3] = {
|
|
["y"] = -267.89755425398;
|
|
["x"] = 543.21621555146;
|
|
};
|
|
[4] = {
|
|
["y"] = -258.6667863048;
|
|
["x"] = 548.21619938299;
|
|
};
|
|
[5] = {
|
|
["y"] = -264.24371737619;
|
|
["x"] = 556.10083688434;
|
|
};
|
|
[6] = {
|
|
["y"] = -268.08987275159;
|
|
["x"] = 560.90851047121;
|
|
};
|
|
[7] = {
|
|
["y"] = -280.01294286119;
|
|
["x"] = 560.90851047121;
|
|
};
|
|
[8] = {
|
|
["y"] = -288.08988235424;
|
|
["x"] = 559.17775128111;
|
|
};
|
|
[9] = {
|
|
["y"] = -295.39756436277;
|
|
["x"] = 555.13928566106;
|
|
};
|
|
[10] = {
|
|
["y"] = -294.24371114779;
|
|
["x"] = 548.21619938299;
|
|
};
|
|
};
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 22;
|
|
["y"] = -290.39756402535;
|
|
};
|
|
[20] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 348.10205698293;
|
|
["upstairs"] = true;
|
|
["g"] = 32;
|
|
["y"] = -418.80017217098;
|
|
};
|
|
[21] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 343.67582539059;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 32;
|
|
["y"] = -420.93132670847;
|
|
};
|
|
[22] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 592.75895945239;
|
|
["infested"] = {};
|
|
["g"] = 2;
|
|
["y"] = -234.54238790785;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 126928;
|
|
["spells"] = {
|
|
[277564] = {};
|
|
[257437] = {};
|
|
[209859] = {};
|
|
[277242] = {};
|
|
[257436] = {};
|
|
};
|
|
["scale"] = 1;
|
|
["health"] = 768495;
|
|
["count"] = 4;
|
|
["displayId"] = 81253;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Irontide Corsair";
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Sap"] = true;
|
|
["Silence"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[5] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -250.77740026265;
|
|
["x"] = 566.86843961712;
|
|
["g"] = 3;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -286.00298805084;
|
|
["x"] = 622.41722392579;
|
|
["g"] = 7;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 558.36188436792;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 9;
|
|
["y"] = -273.04145606772;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 521.66759939464;
|
|
["infested"] = {};
|
|
["g"] = 13;
|
|
["y"] = -308.27591848894;
|
|
};
|
|
[5] = {
|
|
["y"] = -302.57211597578;
|
|
["x"] = 521.6144083869;
|
|
["g"] = 13;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 557.02635238175;
|
|
["infested"] = {};
|
|
["g"] = 16;
|
|
["y"] = -326.78856080126;
|
|
};
|
|
[7] = {
|
|
["y"] = -322.66484872977;
|
|
["x"] = 558.36654951403;
|
|
["g"] = 16;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["y"] = -298.3660424142;
|
|
["x"] = 608.20736915104;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -298.3660424142;
|
|
["x"] = 608.20736915104;
|
|
};
|
|
[2] = {
|
|
["y"] = -273.19018623014;
|
|
["x"] = 601.7618445952;
|
|
};
|
|
[3] = {
|
|
["y"] = -276.02599315234;
|
|
["x"] = 597.58272362668;
|
|
};
|
|
[4] = {
|
|
["y"] = -282.59316036975;
|
|
["x"] = 581.0155594982;
|
|
};
|
|
[5] = {
|
|
["y"] = -267.96631384322;
|
|
["x"] = 587.88124450661;
|
|
};
|
|
[6] = {
|
|
["y"] = -261.39912740999;
|
|
["x"] = 594.14989393302;
|
|
};
|
|
[7] = {
|
|
["y"] = -270.35436649738;
|
|
["x"] = 606.09019563549;
|
|
};
|
|
[8] = {
|
|
["y"] = -290.95137028042;
|
|
["x"] = 615.04542191234;
|
|
};
|
|
[9] = {
|
|
["y"] = -305.13048175474;
|
|
["x"] = 615.04542191234;
|
|
};
|
|
[10] = {
|
|
["y"] = -313.48867244959;
|
|
["x"] = 605.49317286404;
|
|
};
|
|
};
|
|
["infested"] = {};
|
|
["g"] = 17;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 579.4660130192;
|
|
["infested"] = {};
|
|
["g"] = 18;
|
|
["y"] = -294.46685997874;
|
|
};
|
|
[10] = {
|
|
["y"] = -298.90792437747;
|
|
["x"] = 579.4660130192;
|
|
["g"] = 18;
|
|
["sublevel"] = 1;
|
|
};
|
|
[11] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 538.08815876028;
|
|
["infested"] = {};
|
|
["g"] = 21;
|
|
["y"] = -319.07510818626;
|
|
};
|
|
[12] = {
|
|
["y"] = -294.94763917898;
|
|
["x"] = 543.44931010424;
|
|
["g"] = 22;
|
|
["sublevel"] = 1;
|
|
};
|
|
[13] = {
|
|
["y"] = -317.1931213991;
|
|
["x"] = 593.04662607793;
|
|
["infested"] = {};
|
|
["teeming"] = true;
|
|
["g"] = 8;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148893;
|
|
["id"] = 129788;
|
|
["spells"] = {
|
|
[258323] = {};
|
|
[277242] = {};
|
|
[209859] = {};
|
|
[258321] = {};
|
|
[277564] = {};
|
|
[257397] = {};
|
|
};
|
|
["scale"] = 1;
|
|
["health"] = 614795;
|
|
["count"] = 4;
|
|
["displayId"] = 81255;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Irontide Bonesaw";
|
|
["characteristics"] = {
|
|
["Polymorph"] = true;
|
|
["Taunt"] = true;
|
|
["Sap"] = true;
|
|
["Stun"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[6] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -284.19397073792;
|
|
["x"] = 618.1045892353;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -291.09990053226;
|
|
["x"] = 626.77360877668;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["y"] = -288.82464537504;
|
|
["x"] = 618.69694197096;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["y"] = -278.00640151973;
|
|
["x"] = 545.52881544343;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["y"] = -275.53299975819;
|
|
["x"] = 547.42250343186;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -327.09783433993;
|
|
["x"] = 560.84078206604;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["y"] = -322.25247663777;
|
|
["x"] = 561.97479978871;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 367.7844356909;
|
|
["upstairs"] = true;
|
|
["g"] = 66;
|
|
["y"] = -396.17955458796;
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 370.5298191388;
|
|
["upstairs"] = true;
|
|
["g"] = 69;
|
|
["y"] = -396.41062741958;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 129598;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[277564] = {};
|
|
};
|
|
["scale"] = 0.6;
|
|
["name"] = "Freehold Pack Mule";
|
|
["count"] = 0;
|
|
["health"] = 153699;
|
|
["displayId"] = 88571;
|
|
["creatureType"] = "Beast";
|
|
["level"] = 120;
|
|
["neutral"] = true;
|
|
["characteristics"] = {
|
|
["Stun"] = true;
|
|
["Root"] = true;
|
|
};
|
|
};
|
|
[7] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -330.73817112427;
|
|
["x"] = 575.37965681591;
|
|
["g"] = 19;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["id"] = 126832;
|
|
["spells"] = {
|
|
[277564] = {};
|
|
};
|
|
["isBoss"] = true;
|
|
["encounterID"] = 2095;
|
|
["instanceID"] = 1001;
|
|
["count"] = 0;
|
|
["health"] = 5379459;
|
|
["displayId"] = 80382;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 122;
|
|
["name"] = "Skycap'n Kragg";
|
|
["scale"] = 1;
|
|
};
|
|
[8] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 427.96338096744;
|
|
["y"] = -391.77930993249;
|
|
["g"] = 23;
|
|
["infested"] = {};
|
|
};
|
|
[2] = {
|
|
["y"] = -400.5989497842;
|
|
["x"] = 441.44698636877;
|
|
["g"] = 25;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 433.45493363816;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 27;
|
|
["y"] = -415.01802570409;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 415.86618894122;
|
|
["y"] = -426.31845966812;
|
|
["g"] = 28;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 401.4286623737;
|
|
["infested"] = {};
|
|
["g"] = 29;
|
|
["y"] = -426.85229781158;
|
|
};
|
|
[6] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 391.64222537453;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 30;
|
|
["y"] = -412.55852664629;
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 379.75050510268;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
};
|
|
["g"] = 31;
|
|
["y"] = -395.66604335926;
|
|
};
|
|
[8] = {
|
|
["y"] = -410.44087203575;
|
|
["x"] = 387.64223354956;
|
|
["teeming"] = true;
|
|
["g"] = 30;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[277564] = {};
|
|
[274400] = {};
|
|
[277242] = {};
|
|
[209859] = {};
|
|
};
|
|
["id"] = 129559;
|
|
["name"] = "Cutwater Duelist";
|
|
["health"] = 768495;
|
|
["displayId"] = 80339;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["count"] = 4;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Sap"] = true;
|
|
["Stun"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[9] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -389.52899410757;
|
|
["x"] = 423.95089136037;
|
|
["g"] = 23;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 439.8408443899;
|
|
["y"] = -404.97670441317;
|
|
["g"] = 25;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 413.15189213078;
|
|
["y"] = -421.74702628331;
|
|
["g"] = 28;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 385.17164323575;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["g"] = 30;
|
|
["y"] = -413.97028460597;
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 407.15541870807;
|
|
["upstairs"] = true;
|
|
["y"] = -413.02468717144;
|
|
["g"] = 36;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[6] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 343.61269115135;
|
|
["infested"] = {};
|
|
["g"] = 61;
|
|
["y"] = -206.63347059747;
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 348.24830300797;
|
|
["y"] = -179.15223860385;
|
|
["g"] = 63;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[8] = {
|
|
["y"] = -416.32322631945;
|
|
["x"] = 389.17164515844;
|
|
["teeming"] = true;
|
|
["g"] = 30;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148893;
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[258779] = {};
|
|
[277242] = {};
|
|
[209859] = {};
|
|
[132951] = {};
|
|
[258777] = {};
|
|
[277564] = {};
|
|
};
|
|
["id"] = 127111;
|
|
["name"] = "Irontide Oarsman";
|
|
["health"] = 1229592;
|
|
["displayId"] = 81279;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["count"] = 6;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Stun"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[10] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 423.8482270145;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 23;
|
|
["y"] = -393.51147578162;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 432.72321672263;
|
|
["infested"] = {};
|
|
["g"] = 27;
|
|
["y"] = -419.77411761848;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 397.4751809314;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 29;
|
|
["y"] = -430.80576927357;
|
|
};
|
|
[4] = {
|
|
["y"] = -406.67617741146;
|
|
["x"] = 385.75988623742;
|
|
["g"] = 30;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 350.71518826563;
|
|
["upstairs"] = true;
|
|
["g"] = 33;
|
|
["y"] = -441.95542540812;
|
|
};
|
|
[6] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 308.12486124605;
|
|
["upstairs"] = true;
|
|
["y"] = -392.93836700041;
|
|
["g"] = 39;
|
|
["infested"] = {};
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 333.83223376313;
|
|
["upstairs"] = true;
|
|
["g"] = 40;
|
|
["y"] = -408.22734060584;
|
|
};
|
|
[8] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 333.48929221358;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 40;
|
|
["y"] = -400.65530192996;
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 372.0622278959;
|
|
["infested"] = {};
|
|
["g"] = 42;
|
|
["y"] = -374.99362441396;
|
|
};
|
|
[10] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 261.8112140627;
|
|
["y"] = -344.40986833828;
|
|
["g"] = 55;
|
|
["infested"] = {};
|
|
};
|
|
[11] = {
|
|
["y"] = -399.01772664306;
|
|
["x"] = 417.17919468928;
|
|
["blacktoothEvent"] = true;
|
|
["g"] = 72;
|
|
["sublevel"] = 1;
|
|
};
|
|
[12] = {
|
|
["y"] = -405.66834286789;
|
|
["x"] = 420.39193175612;
|
|
["blacktoothEvent"] = true;
|
|
["g"] = 72;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 129548;
|
|
["spells"] = {
|
|
[277564] = {};
|
|
[209859] = {};
|
|
[257747] = {};
|
|
[277242] = {};
|
|
};
|
|
["scale"] = 1;
|
|
["count"] = 4;
|
|
["health"] = 768495;
|
|
["displayId"] = 80389;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Blacktooth Brute";
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Disorient"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[11] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -404.0924587256;
|
|
["x"] = 401.84512319017;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -402.35383442213;
|
|
["x"] = 420.86786753369;
|
|
};
|
|
[2] = {
|
|
["y"] = -403.30635849927;
|
|
["x"] = 408.6890842739;
|
|
};
|
|
[3] = {
|
|
["y"] = -405.2843780455;
|
|
["x"] = 402.86490775006;
|
|
};
|
|
[4] = {
|
|
["y"] = -416.21912332401;
|
|
["x"] = 398.33041148939;
|
|
};
|
|
[5] = {
|
|
["y"] = -422.19473819736;
|
|
["x"] = 406.9889465177;
|
|
};
|
|
[6] = {
|
|
["y"] = -421.32832694082;
|
|
["x"] = 418.2495073647;
|
|
};
|
|
[7] = {
|
|
["y"] = -413.19646566235;
|
|
["x"] = 424.73303316923;
|
|
};
|
|
[8] = {
|
|
["y"] = -404.40525510319;
|
|
["x"] = 429.89786041239;
|
|
};
|
|
[9] = {
|
|
["y"] = -397.48218197542;
|
|
["x"] = 431.21654954182;
|
|
};
|
|
[10] = {
|
|
["y"] = -397.26239888186;
|
|
["x"] = 425.83192977316;
|
|
};
|
|
};
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 24;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -383.65549462703;
|
|
["x"] = 390.71212701568;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -383.65549462703;
|
|
["x"] = 390.71212701568;
|
|
};
|
|
[2] = {
|
|
["y"] = -367.89712183073;
|
|
["x"] = 383.22821899715;
|
|
};
|
|
[3] = {
|
|
["y"] = -383.65549462703;
|
|
["x"] = 390.71212701568;
|
|
};
|
|
[4] = {
|
|
["y"] = -399.1040015385;
|
|
["x"] = 396.15924674565;
|
|
};
|
|
};
|
|
["sublevel"] = 1;
|
|
["g"] = 26;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[277564] = {};
|
|
[209859] = {};
|
|
[274383] = {};
|
|
[277242] = {};
|
|
};
|
|
["id"] = 130404;
|
|
["name"] = "Vermin Trapper";
|
|
["health"] = 1229592;
|
|
["displayId"] = 87975;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["count"] = 4;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Disorient"] = true;
|
|
["Stun"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Root"] = true;
|
|
};
|
|
};
|
|
[12] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -403.97051113992;
|
|
["x"] = 405.74757153767;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 24;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 404.89390180289;
|
|
["g"] = 24;
|
|
["y"] = -401.77538656124;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 402.82073527704;
|
|
["g"] = 24;
|
|
["y"] = -400.31197366451;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 399.89390948357;
|
|
["g"] = 24;
|
|
["y"] = -400.43391601661;
|
|
};
|
|
[5] = {
|
|
["y"] = -384.94612254807;
|
|
["x"] = 387.21098898925;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 26;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -381.89733346819;
|
|
["x"] = 393.91830507738;
|
|
["g"] = 26;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["y"] = -381.40953265833;
|
|
["x"] = 387.57683174628;
|
|
["infested"] = {};
|
|
["g"] = 26;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["y"] = -379.82416694234;
|
|
["x"] = 391.72317003155;
|
|
["infested"] = {};
|
|
["g"] = 26;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["scale"] = 0.6;
|
|
["spells"] = {
|
|
[257476] = {};
|
|
[277564] = {};
|
|
[209859] = {};
|
|
[274555] = {};
|
|
[277242] = {};
|
|
};
|
|
["id"] = 130024;
|
|
["name"] = "Soggy Shiprat";
|
|
["health"] = 76850;
|
|
["displayId"] = 81400;
|
|
["creatureType"] = "Beast";
|
|
["level"] = 120;
|
|
["count"] = 1;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Stun"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Root"] = true;
|
|
};
|
|
};
|
|
[13] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 436.03002212755;
|
|
["y"] = -403.53418131343;
|
|
["g"] = 25;
|
|
["infested"] = {};
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 429.0646844808;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 27;
|
|
["y"] = -416.84729705859;
|
|
};
|
|
[3] = {
|
|
["y"] = -430.1081054711;
|
|
["x"] = 401.66124358869;
|
|
["g"] = 29;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["y"] = -406.67617741146;
|
|
["x"] = 390.70105676732;
|
|
["g"] = 30;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 381.82600881022;
|
|
["upstairs"] = true;
|
|
["g"] = 31;
|
|
["y"] = -399.00560380624;
|
|
};
|
|
[6] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 331.11793695269;
|
|
["upstairs"] = true;
|
|
["g"] = 40;
|
|
["y"] = -404.65592647466;
|
|
};
|
|
[7] = {
|
|
["y"] = -404.37020843956;
|
|
["x"] = 337.11795438225;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -404.37020843956;
|
|
["x"] = 337.11795438225;
|
|
};
|
|
[2] = {
|
|
["y"] = -403.91070866502;
|
|
["x"] = 348.49148529343;
|
|
};
|
|
[3] = {
|
|
["y"] = -399.22321401722;
|
|
["x"] = 353.64776293362;
|
|
};
|
|
[4] = {
|
|
["y"] = -403.91070866502;
|
|
["x"] = 348.49148529343;
|
|
};
|
|
[5] = {
|
|
["y"] = -404.37020843956;
|
|
["x"] = 337.11795438225;
|
|
};
|
|
[6] = {
|
|
["y"] = -398.44196714442;
|
|
["x"] = 327.71024337527;
|
|
};
|
|
[7] = {
|
|
["y"] = -397.66071356611;
|
|
["x"] = 315.67900934774;
|
|
};
|
|
[8] = {
|
|
["y"] = -398.44196714442;
|
|
["x"] = 327.71024337527;
|
|
};
|
|
};
|
|
["upstairs"] = true;
|
|
["sublevel"] = 1;
|
|
["g"] = 40;
|
|
["infested"] = {};
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[257774] = {};
|
|
[257775] = {};
|
|
[277564] = {};
|
|
[209859] = {};
|
|
};
|
|
["id"] = 129550;
|
|
["name"] = "Bilge Rat Padfoot";
|
|
["health"] = 768495;
|
|
["displayId"] = 87973;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["count"] = 4;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Disorient"] = true;
|
|
["Stun"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[14] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 363.29861878332;
|
|
["upstairs"] = true;
|
|
["g"] = 34;
|
|
["y"] = -441.25753441285;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 357.21301553033;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 38;
|
|
["y"] = -395.75098366607;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 318.20332812203;
|
|
["infested"] = {};
|
|
["g"] = 45;
|
|
["y"] = -371.54779768028;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 317.73905295297;
|
|
["infested"] = {
|
|
[1] = true;
|
|
[3] = true;
|
|
};
|
|
["g"] = 45;
|
|
["y"] = -375.3940306223;
|
|
};
|
|
[5] = {
|
|
["y"] = -378.15437752722;
|
|
["x"] = 299.52134444273;
|
|
["g"] = 46;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -379.5452543256;
|
|
["x"] = 267.40221729937;
|
|
["g"] = 47;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 334.47771009328;
|
|
["y"] = -350.92690700733;
|
|
["g"] = 49;
|
|
["infested"] = {};
|
|
};
|
|
[8] = {
|
|
["y"] = -366.35547245704;
|
|
["x"] = 335.33486419859;
|
|
["g"] = 49;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["y"] = -355.48943052005;
|
|
["x"] = 285.86859470875;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -351.34048832854;
|
|
["x"] = 287.88987353557;
|
|
};
|
|
[2] = {
|
|
["y"] = -345.11706437257;
|
|
["x"] = 289.21075544493;
|
|
};
|
|
[3] = {
|
|
["y"] = -329.02332380774;
|
|
["x"] = 288.11699104756;
|
|
};
|
|
[4] = {
|
|
["y"] = -345.11706437257;
|
|
["x"] = 289.21075544493;
|
|
};
|
|
[5] = {
|
|
["y"] = -351.34048832854;
|
|
["x"] = 287.88987353557;
|
|
};
|
|
[6] = {
|
|
["y"] = -371.15093454023;
|
|
["x"] = 282.33489618274;
|
|
};
|
|
[7] = {
|
|
["y"] = -386.25009769854;
|
|
["x"] = 289.80497711643;
|
|
};
|
|
[8] = {
|
|
["y"] = -371.15093454023;
|
|
["x"] = 282.33489618274;
|
|
};
|
|
};
|
|
["g"] = 53;
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 278.58694476597;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 57;
|
|
["y"] = -324.24994915898;
|
|
};
|
|
[11] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 278.98600277822;
|
|
["upstairs"] = true;
|
|
["infested"] = {};
|
|
["g"] = 57;
|
|
["y"] = -329.55858285652;
|
|
};
|
|
[12] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 299.24865155987;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 58;
|
|
["y"] = -333.5535978722;
|
|
};
|
|
[13] = {
|
|
["y"] = -402.0981673499;
|
|
["x"] = 414.42737794132;
|
|
["blacktoothEvent"] = true;
|
|
["g"] = 72;
|
|
["sublevel"] = 1;
|
|
};
|
|
[14] = {
|
|
["y"] = -405.75034021182;
|
|
["x"] = 416.25346623816;
|
|
["blacktoothEvent"] = true;
|
|
["g"] = 72;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 129529;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[257739] = {};
|
|
[209859] = {};
|
|
[257741] = {};
|
|
[277564] = {};
|
|
};
|
|
["scale"] = 1;
|
|
["health"] = 922194;
|
|
["count"] = 4;
|
|
["displayId"] = 80380;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Blacktooth Scrapper";
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[15] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 409.81157801481;
|
|
["upstairs"] = true;
|
|
["infested"] = {};
|
|
["g"] = 36;
|
|
["y"] = -409.47715302758;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 348.03577726071;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 61;
|
|
["y"] = -210.47962597286;
|
|
};
|
|
[3] = {
|
|
["y"] = -189.54961353475;
|
|
["x"] = 329.66034869884;
|
|
["g"] = 62;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 335.04496952557;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 62;
|
|
["y"] = -185.31883767005;
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 359.25607129825;
|
|
["infested"] = {};
|
|
["g"] = 63;
|
|
["y"] = -182.79566621356;
|
|
};
|
|
[6] = {
|
|
["y"] = -179.07474602562;
|
|
["x"] = 353.20953856669;
|
|
["g"] = 63;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 130011;
|
|
["spells"] = {
|
|
[257870] = {};
|
|
[257871] = {};
|
|
[209859] = {};
|
|
[132951] = {};
|
|
[277242] = {};
|
|
[277564] = {};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Disorient"] = true;
|
|
["Sap"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
["health"] = 768495;
|
|
["count"] = 4;
|
|
["displayId"] = 79069;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Irontide Buccaneer";
|
|
["scale"] = 1;
|
|
};
|
|
[16] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 352.64160053781;
|
|
["upstairs"] = true;
|
|
["g"] = 38;
|
|
["y"] = -395.3224250057;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 356.12039857609;
|
|
["upstairs"] = true;
|
|
["y"] = -391.88071102513;
|
|
["g"] = 38;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[3] = {
|
|
["y"] = -359.49358953592;
|
|
["x"] = 387.06225796645;
|
|
["infested"] = {};
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["y"] = -370.58390090933;
|
|
["x"] = 322.67575030236;
|
|
["g"] = 45;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["y"] = -379.57124066837;
|
|
["x"] = 317.86562602171;
|
|
["g"] = 45;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -378.28771461564;
|
|
["x"] = 273.88681465123;
|
|
["g"] = 47;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 334.62059321691;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 49;
|
|
["y"] = -361.92691026962;
|
|
};
|
|
[8] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 324.58673976491;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 51;
|
|
["y"] = -340.75871286759;
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 303.32694337274;
|
|
["y"] = -351.03294785363;
|
|
["g"] = 56;
|
|
["infested"] = {};
|
|
};
|
|
[10] = {
|
|
["y"] = -363.36131507245;
|
|
["x"] = 286.34836048441;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 53;
|
|
["sublevel"] = 1;
|
|
};
|
|
[11] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 273.51232807191;
|
|
["upstairs"] = true;
|
|
["infested"] = {};
|
|
["g"] = 57;
|
|
["y"] = -323.50367069466;
|
|
};
|
|
[12] = {
|
|
["y"] = -332.25328423952;
|
|
["x"] = 328.21441256104;
|
|
["teeming"] = true;
|
|
["g"] = 51;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 129527;
|
|
["spells"] = {
|
|
[257756] = {};
|
|
[257757] = {};
|
|
[277242] = {};
|
|
[209859] = {};
|
|
[277564] = {};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Disorient"] = true;
|
|
["Sap"] = true;
|
|
["Imprison"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
["health"] = 768495;
|
|
["count"] = 4;
|
|
["displayId"] = 81424;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Bilge Rat Buccaneer";
|
|
["scale"] = 1;
|
|
};
|
|
[17] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 311.97508609272;
|
|
["upstairs"] = true;
|
|
["g"] = 39;
|
|
["y"] = -397.3702146717;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 307.68937687378;
|
|
["upstairs"] = true;
|
|
["infested"] = {};
|
|
["g"] = 39;
|
|
["y"] = -400.9416410644;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 366.17780604811;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 42;
|
|
["y"] = -375.23498029718;
|
|
};
|
|
[4] = {
|
|
["y"] = -371.03385132999;
|
|
["x"] = 345.27318616201;
|
|
["g"] = 44;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["y"] = -374.91444837842;
|
|
["x"] = 342.13885482046;
|
|
["g"] = 44;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -382.57745538363;
|
|
["x"] = 297.40598126923;
|
|
["g"] = 46;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["y"] = -374.06336406279;
|
|
["x"] = 294.41708673335;
|
|
["g"] = 46;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 268.62008024026;
|
|
["infested"] = {};
|
|
["g"] = 47;
|
|
["y"] = -383.67991471428;
|
|
};
|
|
[9] = {
|
|
["y"] = -358.37241690708;
|
|
["x"] = 288.67131673611;
|
|
["infested"] = {};
|
|
["g"] = 53;
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 273.51232807191;
|
|
["upstairs"] = true;
|
|
["g"] = 57;
|
|
["y"] = -329.17532937599;
|
|
};
|
|
[11] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 294.2486424358;
|
|
["upstairs"] = true;
|
|
["g"] = 58;
|
|
["y"] = -329.58807507283;
|
|
};
|
|
[12] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 294.76587585058;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 58;
|
|
["y"] = -333.55360031194;
|
|
};
|
|
};
|
|
["reaping"] = 148893;
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[257784] = {};
|
|
[277242] = {};
|
|
[209859] = {};
|
|
[281420] = {};
|
|
[277564] = {};
|
|
};
|
|
["id"] = 129600;
|
|
["name"] = "Bilge Rat Brinescale";
|
|
["count"] = 3;
|
|
["displayId"] = 80475;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["health"] = 491836;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Disorient"] = true;
|
|
["Sap"] = true;
|
|
["Imprison"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[18] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 304.54651527221;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 39;
|
|
["y"] = -396.94162535752;
|
|
};
|
|
[2] = {
|
|
["y"] = -380.43683254409;
|
|
["x"] = 340.79557911019;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -380.43683254409;
|
|
["x"] = 340.79557911019;
|
|
};
|
|
[2] = {
|
|
["y"] = -376.25773689924;
|
|
["x"] = 324.82543661657;
|
|
};
|
|
[3] = {
|
|
["y"] = -380.43683254409;
|
|
["x"] = 340.79557911019;
|
|
};
|
|
[4] = {
|
|
["y"] = -362.97415223144;
|
|
["x"] = 354.52691167262;
|
|
};
|
|
};
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["g"] = 44;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["y"] = -378.54098360649;
|
|
["x"] = 292.62604404009;
|
|
["g"] = 46;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 267.10371872419;
|
|
["y"] = -375.96316253381;
|
|
["g"] = 47;
|
|
["infested"] = {};
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 320.63070067245;
|
|
["infested"] = {};
|
|
["g"] = 51;
|
|
["y"] = -337.13233898354;
|
|
};
|
|
[6] = {
|
|
["y"] = -346.0329473885;
|
|
["x"] = 300.04123949134;
|
|
["g"] = 56;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 308.61265345302;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["g"] = 56;
|
|
["y"] = -350.46152404495;
|
|
};
|
|
[8] = {
|
|
["y"] = -359.19001555574;
|
|
["x"] = 285.17885388006;
|
|
["sublevel"] = 1;
|
|
["g"] = 53;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
};
|
|
[9] = {
|
|
["y"] = -398.86243447031;
|
|
["x"] = 421.80884675384;
|
|
["blacktoothEvent"] = true;
|
|
["g"] = 72;
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["y"] = -332.57840453241;
|
|
["x"] = 325.28287529806;
|
|
["g"] = 51;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 129547;
|
|
["spells"] = {
|
|
[266950] = {};
|
|
[277242] = {};
|
|
[257732] = {};
|
|
[277564] = {};
|
|
[209859] = {};
|
|
};
|
|
["scale"] = 1;
|
|
["count"] = 4;
|
|
["name"] = "Blacktooth Knuckleduster";
|
|
["displayId"] = 81207;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["health"] = 845345;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Sap"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[19] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 369.63235042592;
|
|
["y"] = -370.14405061668;
|
|
["g"] = 42;
|
|
["infested"] = {};
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 348.70601609998;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 44;
|
|
["y"] = -374.76519267493;
|
|
};
|
|
[3] = {
|
|
["y"] = -378.49654042515;
|
|
["x"] = 345.12393045852;
|
|
["g"] = 44;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 321.14477793541;
|
|
["y"] = -377.52153190744;
|
|
["g"] = 45;
|
|
["infested"] = {};
|
|
};
|
|
[5] = {
|
|
["y"] = -373.73130792376;
|
|
["x"] = 298.75211997001;
|
|
["g"] = 46;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -383.35758681642;
|
|
["x"] = 272.60863543903;
|
|
["g"] = 47;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["y"] = -374.75446263186;
|
|
["x"] = 270.60869993214;
|
|
["g"] = 47;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 265.09272006431;
|
|
["y"] = -338.83704787493;
|
|
["g"] = 55;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[9] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 278.8854561517;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 57;
|
|
["y"] = -334.84696243622;
|
|
};
|
|
[10] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 299.24865155987;
|
|
["upstairs"] = true;
|
|
["g"] = 58;
|
|
["y"] = -328.72602187459;
|
|
};
|
|
[11] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 299.12672657478;
|
|
["upstairs"] = true;
|
|
["infested"] = {};
|
|
["g"] = 58;
|
|
["y"] = -325.01736614394;
|
|
};
|
|
[12] = {
|
|
["y"] = -369.49490590883;
|
|
["x"] = 365.14799923092;
|
|
["teeming"] = true;
|
|
["g"] = 42;
|
|
["sublevel"] = 1;
|
|
};
|
|
[13] = {
|
|
["y"] = -369.80740331685;
|
|
["x"] = 374.21051123508;
|
|
["teeming"] = true;
|
|
["g"] = 42;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 129599;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[272402] = {};
|
|
[209859] = {};
|
|
[205276] = {};
|
|
[277564] = {};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Sap"] = true;
|
|
["Stun"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
["count"] = 3;
|
|
["name"] = "Cutwater Knife Juggler";
|
|
["displayId"] = 80335;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["health"] = 691646;
|
|
["scale"] = 1;
|
|
};
|
|
[20] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -333.8100385074;
|
|
["x"] = 359.55574062333;
|
|
["g"] = 43;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["health"] = 6762756;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["spells"] = {
|
|
[256979] = {};
|
|
[258352] = {};
|
|
[258381] = {};
|
|
[257821] = {};
|
|
[272905] = {};
|
|
[272902] = {};
|
|
};
|
|
["isBoss"] = true;
|
|
["encounterID"] = 2093;
|
|
["instanceID"] = 1001;
|
|
["count"] = 0;
|
|
["name"] = "Captain Eudora";
|
|
["displayId"] = 80346;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 122;
|
|
["id"] = 126848;
|
|
["scale"] = 1;
|
|
};
|
|
[21] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -333.81004320864;
|
|
["x"] = 371.64872438521;
|
|
["g"] = 43;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["health"] = 6762756;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["spells"] = {
|
|
[272884] = {};
|
|
[258338] = {};
|
|
[257821] = {};
|
|
[256594] = {};
|
|
[256589] = {};
|
|
};
|
|
["isBoss"] = true;
|
|
["encounterID"] = 2093;
|
|
["instanceID"] = 1001;
|
|
["count"] = 0;
|
|
["name"] = "Captain Raoul";
|
|
["displayId"] = 81060;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 122;
|
|
["id"] = 126847;
|
|
["scale"] = 1;
|
|
};
|
|
[22] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -334.39406436921;
|
|
["x"] = 384.21188228675;
|
|
["g"] = 43;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["health"] = 6762756;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["spells"] = {
|
|
[267522] = {};
|
|
[267533] = {};
|
|
[267523] = {};
|
|
[281329] = {};
|
|
[257821] = {};
|
|
[272374] = {};
|
|
};
|
|
["isBoss"] = true;
|
|
["encounterID"] = 2093;
|
|
["instanceID"] = 1001;
|
|
["count"] = 0;
|
|
["name"] = "Captain Jolly";
|
|
["displayId"] = 80532;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 122;
|
|
["id"] = 126845;
|
|
["scale"] = 1;
|
|
};
|
|
[23] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 293.07381111868;
|
|
["infested"] = {};
|
|
["g"] = 46;
|
|
["y"] = -383.01859674491;
|
|
};
|
|
[2] = {
|
|
["y"] = -354.6411923359;
|
|
["x"] = 332.47772021515;
|
|
["g"] = 49;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 334.33487518181;
|
|
["infested"] = {};
|
|
["g"] = 49;
|
|
["y"] = -358.06975971105;
|
|
};
|
|
[4] = {
|
|
["y"] = -332.75510566533;
|
|
["x"] = 320.62785439778;
|
|
["g"] = 51;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 320.08125237049;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 51;
|
|
["y"] = -341.63783109392;
|
|
};
|
|
[6] = {
|
|
["y"] = -345.46152586901;
|
|
["x"] = 305.18409833939;
|
|
["g"] = 56;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["y"] = -351.46153716781;
|
|
["x"] = 300.18408177117;
|
|
["g"] = 56;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["y"] = -362.03865517872;
|
|
["x"] = 281.59289372436;
|
|
["g"] = 53;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["y"] = -355.75095567493;
|
|
["x"] = 282.10418699639;
|
|
["g"] = 53;
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 273.21381668619;
|
|
["upstairs"] = true;
|
|
["g"] = 57;
|
|
["y"] = -334.5484510505;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[272412] = {};
|
|
[209859] = {};
|
|
[277242] = {};
|
|
[272413] = {};
|
|
[277564] = {};
|
|
};
|
|
["id"] = 129601;
|
|
["name"] = "Cutwater Harpooner";
|
|
["health"] = 768495;
|
|
["displayId"] = 80343;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["count"] = 4;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Polymorph"] = true;
|
|
["Root"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[24] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -393.11478902913;
|
|
["x"] = 254.27578455822;
|
|
["infested"] = {};
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -360.8307755636;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["x"] = 267.78112006396;
|
|
["g"] = 80;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 321.21716564031;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -359.98608439708;
|
|
["x"] = 321.21716564031;
|
|
};
|
|
[2] = {
|
|
["y"] = -334.16791966086;
|
|
["x"] = 329.21716232548;
|
|
};
|
|
[3] = {
|
|
["y"] = -359.98608439708;
|
|
["x"] = 321.21716564031;
|
|
};
|
|
[4] = {
|
|
["y"] = -356.16791444647;
|
|
["x"] = 299.03535026551;
|
|
};
|
|
};
|
|
["y"] = -359.98608439708;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[4] = {
|
|
["y"] = -327.44045484293;
|
|
["x"] = 253.48113073175;
|
|
["sublevel"] = 1;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[5] = {
|
|
["y"] = -365.82089742123;
|
|
["x"] = 267.66607255606;
|
|
["teeming"] = true;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148894;
|
|
["scale"] = 1.4;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[276061] = {};
|
|
[209859] = {};
|
|
[258181] = {};
|
|
[277564] = {};
|
|
[258199] = {};
|
|
};
|
|
["id"] = 130400;
|
|
["name"] = "Irontide Crusher";
|
|
["health"] = 1536990;
|
|
["displayId"] = 68059;
|
|
["creatureType"] = "Giant";
|
|
["level"] = 121;
|
|
["count"] = 6;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
};
|
|
[25] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -361.77744763557;
|
|
["x"] = 245.69808511605;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148894;
|
|
["id"] = 129699;
|
|
["spells"] = {
|
|
[257904] = {};
|
|
};
|
|
["scale"] = 1.5;
|
|
["health"] = 3073980;
|
|
["count"] = 4;
|
|
["displayId"] = 80792;
|
|
["creatureType"] = "Beast";
|
|
["level"] = 121;
|
|
["name"] = "Ludwig Von Tortollan";
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
};
|
|
[26] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -362.02744563276;
|
|
["x"] = 224.69808169065;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["health"] = 5533158;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["spells"] = {
|
|
[256405] = {};
|
|
[256546] = {};
|
|
[256358] = {};
|
|
[132951] = {};
|
|
[256706] = {};
|
|
[256363] = {};
|
|
};
|
|
["isBoss"] = true;
|
|
["encounterID"] = 2094;
|
|
["instanceID"] = 1001;
|
|
["count"] = 0;
|
|
["name"] = "Trothak";
|
|
["displayId"] = 55657;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 122;
|
|
["id"] = 126969;
|
|
["scale"] = 1;
|
|
};
|
|
[27] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 330.82048838571;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["g"] = 60;
|
|
["y"] = -226.55082875808;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 339.76653577595;
|
|
["infested"] = {
|
|
[2] = true;
|
|
};
|
|
["g"] = 61;
|
|
["y"] = -210.0949972306;
|
|
};
|
|
[3] = {
|
|
["y"] = -197.68005864604;
|
|
["x"] = 315.01297198444;
|
|
["g"] = 64;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["y"] = -186.53721467679;
|
|
["x"] = 306.72725932014;
|
|
["g"] = 64;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148893;
|
|
["id"] = 126919;
|
|
["spells"] = {
|
|
[257736] = {};
|
|
[257737] = {};
|
|
[209859] = {};
|
|
[277242] = {};
|
|
[259092] = {};
|
|
[277564] = {};
|
|
};
|
|
["scale"] = 1;
|
|
["health"] = 614795;
|
|
["count"] = 4;
|
|
["displayId"] = 79077;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Irontide Stormcaller";
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Disorient"] = true;
|
|
["Sap"] = true;
|
|
["Fear"] = true;
|
|
["Stun"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Imprison"] = true;
|
|
};
|
|
};
|
|
[28] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 335.38569207796;
|
|
["infested"] = {};
|
|
["g"] = 60;
|
|
["y"] = -226.55082875808;
|
|
};
|
|
[2] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 343.77415219959;
|
|
["infested"] = {};
|
|
["g"] = 61;
|
|
["y"] = -213.47315303961;
|
|
};
|
|
[3] = {
|
|
["y"] = -180.70264486523;
|
|
["x"] = 356.46535620652;
|
|
["g"] = 63;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 130012;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[257899] = {};
|
|
[209859] = {};
|
|
[132951] = {};
|
|
[205276] = {};
|
|
[277564] = {};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Disorient"] = true;
|
|
["Sap"] = true;
|
|
["Silence"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
["health"] = 768495;
|
|
["count"] = 4;
|
|
["displayId"] = 81507;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Irontide Ravager";
|
|
["scale"] = 1;
|
|
};
|
|
[29] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -190.17959731949;
|
|
["x"] = 333.81155073167;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -188.97268280079;
|
|
["x"] = 333.12190009083;
|
|
};
|
|
[2] = {
|
|
["y"] = -202.79123618084;
|
|
["x"] = 333.8870398445;
|
|
};
|
|
[3] = {
|
|
["y"] = -188.97268280079;
|
|
["x"] = 333.12190009083;
|
|
};
|
|
[4] = {
|
|
["y"] = -181.69974815482;
|
|
["x"] = 326.51537691284;
|
|
};
|
|
[5] = {
|
|
["y"] = -184.32269135027;
|
|
["x"] = 318.81045577323;
|
|
};
|
|
[6] = {
|
|
["y"] = -181.69974815482;
|
|
["x"] = 326.51537691284;
|
|
};
|
|
};
|
|
["sublevel"] = 1;
|
|
["g"] = 62;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
};
|
|
["reaping"] = 148894;
|
|
["id"] = 127106;
|
|
["spells"] = {
|
|
[257908] = {};
|
|
[209859] = {};
|
|
[132951] = {};
|
|
[277564] = {};
|
|
};
|
|
["scale"] = 1.2;
|
|
["health"] = 1229592;
|
|
["count"] = 6;
|
|
["displayId"] = 81286;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 121;
|
|
["name"] = "Irontide Officer";
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Root"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[30] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -205.12285598889;
|
|
["x"] = 294.82907727659;
|
|
["g"] = 65;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["health"] = 7684950;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["spells"] = {
|
|
[257308] = {};
|
|
[257316] = {};
|
|
[257402] = {};
|
|
[257305] = {};
|
|
[257278] = {};
|
|
[132951] = {};
|
|
[257458] = {};
|
|
};
|
|
["isBoss"] = true;
|
|
["encounterID"] = 2095;
|
|
["instanceID"] = 1001;
|
|
["count"] = 0;
|
|
["name"] = "Harlan Sweete";
|
|
["displayId"] = 80841;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 122;
|
|
["id"] = 126983;
|
|
["scale"] = 1;
|
|
};
|
|
[31] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -408.30408532473;
|
|
["x"] = 446.86213684253;
|
|
["infested"] = {};
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -408.32205343838;
|
|
["x"] = 450.41356063263;
|
|
["sublevel"] = 1;
|
|
["infested"] = {};
|
|
};
|
|
[3] = {
|
|
["y"] = -413.52147163522;
|
|
["x"] = 449.47082999777;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 374.79326397897;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
["y"] = -404.91542632925;
|
|
};
|
|
[5] = {
|
|
["y"] = -354.30550063995;
|
|
["x"] = 388.35701675341;
|
|
["sublevel"] = 1;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 129526;
|
|
["spells"] = {
|
|
[277564] = {};
|
|
[277242] = {};
|
|
[274507] = {};
|
|
};
|
|
["scale"] = 0.6;
|
|
["name"] = "Bilge Rat Swabby";
|
|
["count"] = 4;
|
|
["health"] = 768494;
|
|
["displayId"] = 80322;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["neutral"] = true;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Root"] = true;
|
|
["Polymorph"] = true;
|
|
["Disorient"] = true;
|
|
["Sap"] = true;
|
|
["Stun"] = true;
|
|
["Slow"] = true;
|
|
["Silence"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[32] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -443.70737899842;
|
|
["x"] = 431.4327036397;
|
|
["infested"] = {};
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -440.91666390668;
|
|
["x"] = 426.78153843432;
|
|
["infested"] = {};
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["y"] = -439.98643884986;
|
|
["x"] = 437.01411386254;
|
|
["sublevel"] = 1;
|
|
["infested"] = {
|
|
[3] = true;
|
|
};
|
|
};
|
|
[8] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 409.90550033856;
|
|
["patrol"] = {
|
|
[1] = {
|
|
["y"] = -400.42291306931;
|
|
["x"] = 409.90550033856;
|
|
};
|
|
[2] = {
|
|
["y"] = -401.21913589891;
|
|
["x"] = 416.37918799437;
|
|
};
|
|
[3] = {
|
|
["y"] = -409.38986488378;
|
|
["x"] = 421.50113313294;
|
|
};
|
|
[4] = {
|
|
["y"] = -415.73132251415;
|
|
["x"] = 422.72065085833;
|
|
};
|
|
[5] = {
|
|
["y"] = -420.97522570555;
|
|
["x"] = 419.79380413055;
|
|
};
|
|
[6] = {
|
|
["y"] = -422.19473819736;
|
|
["x"] = 406.9889465177;
|
|
};
|
|
[7] = {
|
|
["y"] = -416.21912332401;
|
|
["x"] = 398.33041148939;
|
|
};
|
|
[8] = {
|
|
["y"] = -404.99962096;
|
|
["x"] = 397.59869457387;
|
|
};
|
|
[9] = {
|
|
["y"] = -400.48742945054;
|
|
["x"] = 403.0864981702;
|
|
};
|
|
};
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["y"] = -400.42291306931;
|
|
};
|
|
[13] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 417.33293235944;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["y"] = -410.55586394165;
|
|
};
|
|
[9] = {
|
|
["y"] = -375.39600941973;
|
|
["x"] = 425.73693709783;
|
|
["infested"] = {};
|
|
["sublevel"] = 1;
|
|
};
|
|
[23] = {
|
|
["y"] = -384.66372890629;
|
|
["x"] = 424.31276866414;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 127119;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[277564] = {};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Sap"] = true;
|
|
["Silence"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
["neutral"] = true;
|
|
["count"] = 0;
|
|
["health"] = 153699;
|
|
["displayId"] = 78623;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["name"] = "Freehold Deckhand";
|
|
["scale"] = 0.6;
|
|
};
|
|
[33] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -440.56507628456;
|
|
["x"] = 418.67307060213;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -426.38716532254;
|
|
["x"] = 397.0100783833;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["y"] = -428.45950434897;
|
|
["x"] = 392.88085329862;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["y"] = -391.39382621995;
|
|
["x"] = 415.14236186031;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["y"] = -387.75538730739;
|
|
["x"] = 432.06899148287;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 357.48824782226;
|
|
["upstairs"] = true;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["y"] = -441.96021114246;
|
|
};
|
|
[7] = {
|
|
["y"] = -345.05410767656;
|
|
["x"] = 346.36813066386;
|
|
["g"] = 70;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["y"] = -342.45803773105;
|
|
["x"] = 349.33256563328;
|
|
["g"] = 70;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["y"] = -392.83762504572;
|
|
["x"] = 248.30630305316;
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["y"] = -396.91925070855;
|
|
["x"] = 244.22470366503;
|
|
["sublevel"] = 1;
|
|
};
|
|
[11] = {
|
|
["y"] = -390.60274385876;
|
|
["x"] = 258.48416560637;
|
|
["sublevel"] = 1;
|
|
};
|
|
[12] = {
|
|
["y"] = -393.78455979609;
|
|
["x"] = 265.41597698255;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 130522;
|
|
["spells"] = {
|
|
[277564] = {};
|
|
[277242] = {};
|
|
[1604] = {};
|
|
};
|
|
["neutral"] = true;
|
|
["count"] = 2;
|
|
["name"] = "Freehold Shipmate";
|
|
["health"] = 249761;
|
|
["displayId"] = 80087;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["scale"] = 0.6;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Disorient"] = true;
|
|
["Sap"] = true;
|
|
["Silence"] = true;
|
|
["Root"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
[34] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -382.04446190413;
|
|
["x"] = 425.81058882877;
|
|
["infested"] = {};
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -385.75685278606;
|
|
["x"] = 421.48066262642;
|
|
["infested"] = {};
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 127124;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[277564] = {};
|
|
};
|
|
["scale"] = 0.6;
|
|
["count"] = 0;
|
|
["health"] = 115274;
|
|
["name"] = "Freehold Barhand";
|
|
["displayId"] = 79066;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["neutral"] = true;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Root"] = true;
|
|
};
|
|
};
|
|
[35] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -403.58138534747;
|
|
["x"] = 423.43540478732;
|
|
["blacktoothEvent"] = 0;
|
|
["g"] = 72;
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["scale"] = 1;
|
|
["count"] = 0;
|
|
["name"] = "Blacktooth Knuckleduster";
|
|
["displayId"] = 81207;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["id"] = 129547000;
|
|
["health"] = 845343;
|
|
};
|
|
[36] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -220.70211531603;
|
|
["x"] = 333.26151520657;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["scale"] = 0.6;
|
|
["count"] = 0;
|
|
["name"] = "Shiprat";
|
|
["displayId"] = 4959;
|
|
["creatureType"] = "Critter";
|
|
["level"] = 1;
|
|
["id"] = 126497;
|
|
["health"] = 6;
|
|
};
|
|
[37] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -291.95015323478;
|
|
["x"] = 582.30250293643;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["g"] = 18;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -419.54571042367;
|
|
["x"] = 428.06202083489;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["g"] = 27;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["y"] = -374.02781760134;
|
|
["x"] = 275.87748554166;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
["g"] = 47;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["y"] = -183.85655552339;
|
|
["x"] = 351.23732496739;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["g"] = 63;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["y"] = -416.37733330228;
|
|
["x"] = 342.93664889702;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["g"] = 32;
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -247.68046809193;
|
|
["x"] = 563.54157633499;
|
|
["week"] = {
|
|
[5] = true;
|
|
[2] = true;
|
|
[8] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 3;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["y"] = -314.16004790875;
|
|
["x"] = 605.44800647203;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 8;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["y"] = -387.75422453959;
|
|
["x"] = 426.81291888979;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 23;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["y"] = -410.70050327641;
|
|
["x"] = 448.75870249507;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["y"] = -360.24915170617;
|
|
["x"] = 338.37577949106;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 49;
|
|
["sublevel"] = 1;
|
|
};
|
|
[11] = {
|
|
["y"] = -213.74565817939;
|
|
["x"] = 339.07172016809;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 61;
|
|
["sublevel"] = 1;
|
|
};
|
|
[12] = {
|
|
["y"] = -187.22855340355;
|
|
["x"] = 316.94527487871;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 64;
|
|
["sublevel"] = 1;
|
|
};
|
|
[13] = {
|
|
["y"] = -390.56685023284;
|
|
["x"] = 282.11715470633;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 53;
|
|
["sublevel"] = 1;
|
|
};
|
|
[14] = {
|
|
["y"] = -250.02011579983;
|
|
["x"] = 595.98043301204;
|
|
["sublevel"] = 1;
|
|
["g"] = 4;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[15] = {
|
|
["y"] = -268.00825204892;
|
|
["x"] = 556.68938922037;
|
|
["sublevel"] = 1;
|
|
["g"] = 9;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[16] = {
|
|
["y"] = -416.63493784565;
|
|
["x"] = 424.16357177479;
|
|
["sublevel"] = 1;
|
|
["g"] = 27;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[17] = {
|
|
["y"] = -418.2574930252;
|
|
["x"] = 387.35054932879;
|
|
["sublevel"] = 1;
|
|
["g"] = 30;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[18] = {
|
|
["y"] = -374.35139133781;
|
|
["x"] = 377.40686690757;
|
|
["sublevel"] = 1;
|
|
["g"] = 42;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[19] = {
|
|
["y"] = -336.74570419942;
|
|
["x"] = 327.0287708105;
|
|
["sublevel"] = 1;
|
|
["g"] = 51;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[20] = {
|
|
["y"] = -326.90253473373;
|
|
["x"] = 282.26142749583;
|
|
["sublevel"] = 1;
|
|
["g"] = 57;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
};
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[302417] = {};
|
|
[302418] = {};
|
|
[302415] = {};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["id"] = 155434;
|
|
["name"] = "Emissary of the Tides";
|
|
["ignoreFortified"] = true;
|
|
["count"] = 4;
|
|
["displayId"] = 39391;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["health"] = 614795;
|
|
["iconTexture"] = 132315;
|
|
};
|
|
[38] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -242.01084170409;
|
|
["x"] = 574.23008755425;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
["g"] = 73;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -356.8953407165;
|
|
["x"] = 561.81069777028;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["g"] = 74;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["y"] = -378.55485900182;
|
|
["x"] = 428.66798409562;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
["g"] = 75;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["y"] = -397.42265713305;
|
|
["x"] = 445.68436570913;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["g"] = 76;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["y"] = -363.95071595557;
|
|
["x"] = 385.20545584839;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
[6] = {
|
|
["y"] = -339.95792564529;
|
|
["x"] = 332.82265837518;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
["g"] = 78;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["y"] = -352.78085178461;
|
|
["x"] = 291.73770449832;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
["g"] = 79;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["y"] = -211.966193448;
|
|
["x"] = 334.43564030022;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["g"] = 61;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["y"] = -403.84727588351;
|
|
["x"] = 388.47377027915;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 30;
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["y"] = -378.54662964872;
|
|
["x"] = 263.06736970156;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 47;
|
|
["sublevel"] = 1;
|
|
};
|
|
[11] = {
|
|
["y"] = -183.57331530092;
|
|
["x"] = 351.96821182746;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 63;
|
|
["sublevel"] = 1;
|
|
};
|
|
[12] = {
|
|
["y"] = -286.41747205571;
|
|
["x"] = 616.16375668691;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 7;
|
|
["sublevel"] = 1;
|
|
};
|
|
[13] = {
|
|
["y"] = -291.20408540459;
|
|
["x"] = 584.22521877266;
|
|
["sublevel"] = 1;
|
|
["g"] = 18;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[14] = {
|
|
["y"] = -365.87804201991;
|
|
["x"] = 273.50423791883;
|
|
["sublevel"] = 1;
|
|
["g"] = 80;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[302419] = {};
|
|
[302420] = {};
|
|
[302421] = {};
|
|
[302415] = {};
|
|
};
|
|
["stealthDetect"] = true;
|
|
["id"] = 155433;
|
|
["name"] = "Void-Touched Emissary";
|
|
["ignoreFortified"] = true;
|
|
["count"] = 4;
|
|
["displayId"] = 39391;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 122;
|
|
["health"] = 999042;
|
|
["iconTexture"] = 132886;
|
|
};
|
|
[39] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -258.24102373746;
|
|
["x"] = 597.18729485725;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
["g"] = 4;
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -402.32295149245;
|
|
["x"] = 419.08191392655;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
["g"] = 72;
|
|
["sublevel"] = 1;
|
|
};
|
|
[3] = {
|
|
["y"] = -345.97198015544;
|
|
["x"] = 349.99263948952;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
["g"] = 77;
|
|
["sublevel"] = 1;
|
|
};
|
|
[4] = {
|
|
["y"] = -329.24954901654;
|
|
["x"] = 281.66695459247;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[7] = true;
|
|
[4] = true;
|
|
};
|
|
["g"] = 57;
|
|
["sublevel"] = 1;
|
|
};
|
|
[5] = {
|
|
["y"] = -279.40176356912;
|
|
["x"] = 529.50479141079;
|
|
["sublevel"] = 1;
|
|
["g"] = 12;
|
|
["week"] = {
|
|
[1] = true;
|
|
[10] = true;
|
|
[4] = true;
|
|
[7] = true;
|
|
};
|
|
};
|
|
[6] = {
|
|
["y"] = -291.06588162301;
|
|
["x"] = 583.78124469935;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 18;
|
|
["sublevel"] = 1;
|
|
};
|
|
[7] = {
|
|
["y"] = -373.28672288567;
|
|
["x"] = 376.19365471646;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 42;
|
|
["sublevel"] = 1;
|
|
};
|
|
[8] = {
|
|
["y"] = -346.04459277918;
|
|
["x"] = 308.71664328533;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 56;
|
|
["sublevel"] = 1;
|
|
};
|
|
[9] = {
|
|
["y"] = -399.31900060793;
|
|
["x"] = 377.95753476687;
|
|
["week"] = {
|
|
[8] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[11] = true;
|
|
};
|
|
["g"] = 31;
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["y"] = -234.59158596522;
|
|
["x"] = 584.415568733;
|
|
["sublevel"] = 1;
|
|
["g"] = 2;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[11] = {
|
|
["y"] = -314.00732889402;
|
|
["x"] = 605.30034623964;
|
|
["sublevel"] = 1;
|
|
["g"] = 8;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[12] = {
|
|
["y"] = -323.10909725706;
|
|
["x"] = 553.06874413736;
|
|
["sublevel"] = 1;
|
|
["g"] = 16;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[13] = {
|
|
["y"] = -395.44957718268;
|
|
["x"] = 428.09024552171;
|
|
["sublevel"] = 1;
|
|
["g"] = 23;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[14] = {
|
|
["y"] = -383.44885098466;
|
|
["x"] = 337.41245133228;
|
|
["sublevel"] = 1;
|
|
["g"] = 44;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[15] = {
|
|
["y"] = -380.94270305081;
|
|
["x"] = 263.1461363294;
|
|
["sublevel"] = 1;
|
|
["g"] = 47;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
[16] = {
|
|
["y"] = -184.36561827901;
|
|
["x"] = 349.20262223984;
|
|
["sublevel"] = 1;
|
|
["g"] = 63;
|
|
["week"] = {
|
|
[3] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[12] = true;
|
|
};
|
|
};
|
|
};
|
|
["scale"] = 1;
|
|
["spells"] = {
|
|
[303632] = {};
|
|
[302415] = {};
|
|
[290027] = {};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["id"] = 155432;
|
|
["name"] = "Enchanted Emissary";
|
|
["ignoreFortified"] = true;
|
|
["count"] = 0;
|
|
["displayId"] = 39391;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 121;
|
|
["health"] = 15369884;
|
|
["iconTexture"] = 135735;
|
|
};
|
|
[40] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -396.61272320204;
|
|
["x"] = 432.73180582462;
|
|
["week"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
[3] = true;
|
|
[4] = true;
|
|
[5] = true;
|
|
[6] = true;
|
|
[7] = true;
|
|
[8] = true;
|
|
[9] = true;
|
|
[10] = true;
|
|
[11] = true;
|
|
[12] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["scale"] = 1.4;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["spells"] = {
|
|
[314483] = {};
|
|
[314477] = {};
|
|
[314397] = {};
|
|
[314531] = {};
|
|
};
|
|
["stealthDetect"] = true;
|
|
["count"] = 4;
|
|
["level"] = 122;
|
|
["teemingCount"] = 6;
|
|
["health"] = 2151786;
|
|
["displayId"] = 90742;
|
|
["creatureType"] = "Aberration";
|
|
["corrupted"] = true;
|
|
["name"] = "Samh'rek, Beckoner of Chaos";
|
|
["id"] = 161243;
|
|
};
|
|
[41] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -329.32092477844;
|
|
["x"] = 265.23690933375;
|
|
["week"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[10] = true;
|
|
[9] = true;
|
|
[6] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -227.22658610567;
|
|
["x"] = 544.36282996575;
|
|
["week"] = {
|
|
[11] = true;
|
|
[7] = true;
|
|
[8] = true;
|
|
[3] = true;
|
|
[12] = true;
|
|
[4] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["id"] = 161124;
|
|
["spells"] = {
|
|
[314308] = {};
|
|
[314387] = {};
|
|
[314397] = {};
|
|
[314309] = {};
|
|
};
|
|
["stealthDetect"] = true;
|
|
["scale"] = 1.4;
|
|
["corrupted"] = true;
|
|
["teemingCount"] = 6;
|
|
["count"] = 4;
|
|
["displayId"] = 89415;
|
|
["creatureType"] = "Aberration";
|
|
["level"] = 122;
|
|
["health"] = 2151786;
|
|
["name"] = "Urg'roth, Breaker of Heroes";
|
|
};
|
|
[42] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -194.25966992696;
|
|
["x"] = 355.48569921046;
|
|
["week"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
[3] = true;
|
|
[4] = true;
|
|
[5] = true;
|
|
[6] = true;
|
|
[7] = true;
|
|
[8] = true;
|
|
[9] = true;
|
|
[10] = true;
|
|
[11] = true;
|
|
[12] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["name"] = "Voidweaver Mal'thir";
|
|
["scale"] = 1.4;
|
|
["spells"] = {
|
|
[314463] = {};
|
|
[314411] = {};
|
|
[314467] = {};
|
|
[314406] = {};
|
|
[314397] = {};
|
|
};
|
|
["stealthDetect"] = true;
|
|
["count"] = 4;
|
|
["corrupted"] = true;
|
|
["teemingCount"] = 6;
|
|
["health"] = 2151786;
|
|
["displayId"] = 91910;
|
|
["creatureType"] = "Beast";
|
|
["level"] = 122;
|
|
["id"] = 161241;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
};
|
|
[43] = {
|
|
["clones"] = {
|
|
[1] = {
|
|
["y"] = -225.72526778273;
|
|
["x"] = 544.39496214207;
|
|
["week"] = {
|
|
[1] = true;
|
|
[2] = true;
|
|
[5] = true;
|
|
[6] = true;
|
|
[9] = true;
|
|
[10] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
[2] = {
|
|
["y"] = -330.62030234688;
|
|
["x"] = 264.54964167183;
|
|
["week"] = {
|
|
[11] = true;
|
|
[7] = true;
|
|
[8] = true;
|
|
[3] = true;
|
|
[12] = true;
|
|
[4] = true;
|
|
};
|
|
["sublevel"] = 1;
|
|
};
|
|
};
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
};
|
|
["id"] = 161244;
|
|
["spells"] = {
|
|
[314566] = {};
|
|
[314397] = {};
|
|
[314565] = {};
|
|
[314592] = {};
|
|
};
|
|
["stealthDetect"] = true;
|
|
["scale"] = 1.4;
|
|
["level"] = 122;
|
|
["teemingCount"] = 6;
|
|
["name"] = "Blood of the Corruptor";
|
|
["displayId"] = 92229;
|
|
["creatureType"] = "Aberration";
|
|
["corrupted"] = true;
|
|
["count"] = 4;
|
|
["health"] = 2151786;
|
|
};
|
|
[44] = {
|
|
["clones"] = {
|
|
[5] = {
|
|
["y"] = -431.35423955244;
|
|
["x"] = 389.72296240274;
|
|
["sublevel"] = 1;
|
|
};
|
|
[10] = {
|
|
["y"] = -444.682195676;
|
|
["x"] = 359.73697530238;
|
|
["sublevel"] = 1;
|
|
["upstairs"] = true;
|
|
};
|
|
[7] = {
|
|
["y"] = -421.58180185169;
|
|
["x"] = 384.48718115197;
|
|
["sublevel"] = 1;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
};
|
|
[14] = {
|
|
["y"] = -339.97945761309;
|
|
["x"] = 344.57703227835;
|
|
["g"] = 70;
|
|
["sublevel"] = 1;
|
|
};
|
|
[22] = {
|
|
["y"] = -432.78722978124;
|
|
["x"] = 369.90063436546;
|
|
["sublevel"] = 1;
|
|
["upstairs"] = true;
|
|
};
|
|
[15] = {
|
|
["sublevel"] = 1;
|
|
["x"] = 350.61233522429;
|
|
["y"] = -339.74923835879;
|
|
["g"] = 70;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
};
|
|
[21] = {
|
|
["y"] = -386.78688288329;
|
|
["x"] = 266.48977407349;
|
|
["sublevel"] = 1;
|
|
};
|
|
[16] = {
|
|
["y"] = -344.6063341927;
|
|
["x"] = 343.23381235593;
|
|
["g"] = 70;
|
|
["sublevel"] = 1;
|
|
};
|
|
[17] = {
|
|
["y"] = -393.04170939424;
|
|
["x"] = 245.04100602619;
|
|
["sublevel"] = 1;
|
|
};
|
|
[18] = {
|
|
["y"] = -397.58700738667;
|
|
["x"] = 247.76755448611;
|
|
["sublevel"] = 1;
|
|
};
|
|
[19] = {
|
|
["y"] = -389.92092650624;
|
|
["x"] = 262.34779401948;
|
|
["sublevel"] = 1;
|
|
};
|
|
[20] = {
|
|
["y"] = -396.0520724445;
|
|
["x"] = 262.90768116939;
|
|
["sublevel"] = 1;
|
|
};
|
|
[11] = {
|
|
["y"] = -438.79178982585;
|
|
["x"] = 358.77807038385;
|
|
["sublevel"] = 1;
|
|
["upstairs"] = true;
|
|
};
|
|
[6] = {
|
|
["y"] = -428.72266004137;
|
|
["x"] = 389.72296240274;
|
|
["sublevel"] = 1;
|
|
};
|
|
[12] = {
|
|
["y"] = -420.13504628936;
|
|
["x"] = 373.56751166519;
|
|
["sublevel"] = 1;
|
|
["upstairs"] = true;
|
|
};
|
|
[4] = {
|
|
["y"] = -431.35423955244;
|
|
["x"] = 392.48611128988;
|
|
["sublevel"] = 1;
|
|
["infested"] = {
|
|
[1] = true;
|
|
};
|
|
};
|
|
};
|
|
["reaping"] = 148716;
|
|
["id"] = 130521;
|
|
["spells"] = {
|
|
[277242] = {};
|
|
[277564] = {};
|
|
};
|
|
["scale"] = 0.6;
|
|
["name"] = "Freehold Deckhand";
|
|
["health"] = 18449;
|
|
["count"] = 1;
|
|
["displayId"] = 78623;
|
|
["creatureType"] = "Humanoid";
|
|
["level"] = 120;
|
|
["neutral"] = true;
|
|
["characteristics"] = {
|
|
["Taunt"] = true;
|
|
["Incapacitate"] = true;
|
|
["Sap"] = true;
|
|
["Root"] = true;
|
|
["Silence"] = true;
|
|
["Slow"] = true;
|
|
["Stun"] = true;
|
|
["Fear"] = true;
|
|
};
|
|
};
|
|
};
|
|
|