diff --git a/AtlasLoot/AtlasLayout/instances.en.lua b/AtlasLoot/AtlasLayout/instances.en.lua
index ab6c0e4..c4d9782 100644
--- a/AtlasLoot/AtlasLayout/instances.en.lua
+++ b/AtlasLoot/AtlasLayout/instances.en.lua
@@ -1818,7 +1818,7 @@ AtlasLootNewBossButtons = {
"NAXHeiganderUnclean";
"NAXLoatheb";
"NAXSapphiron";
- "NAXKelThuzard";
+ "NAXKelThuzad";
"";
"T1T2T3SET";
};
@@ -3645,7 +3645,7 @@ AtlasLootBossButtons = {
"NAXHeiganderUnclean";
"NAXLoatheb";
"NAXSapphiron";
- "NAXKelThuzard";
+ "NAXKelThuzad";
"";
"T1T2T3SET";
};
diff --git a/AtlasLoot/Core/AtlasLoot.lua b/AtlasLoot/Core/AtlasLoot.lua
index 199edbc..4c6e081 100644
--- a/AtlasLoot/Core/AtlasLoot.lua
+++ b/AtlasLoot/Core/AtlasLoot.lua
@@ -821,21 +821,21 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
--Decide whether to show the Heroic mode toggle
--Checks if a heroic version of the loot table is available.
NormalID, HeroicID, Normal25ID, Heroic25ID = AtlasLoot_GetLoottableHeroic(AtlasLootItemsFrame.refreshOri[1])
-
+
if AtlasLoot.db.profile.Bigraid and Normal25ID and NormalID then
- AtlasLoot10Man25ManSwitch:SetText(AL["Show 10 Man Loot"])
+ AtlasLoot10Man25ManSwitch:SetText(AL["Show Normal Loot"])
AtlasLoot10Man25ManSwitch.lootpage = NormalID
AtlasLoot10Man25ManSwitch:Show()
elseif AtlasLoot.db.profile.BigraidHeroic and Heroic25ID and HeroicID then
- AtlasLoot10Man25ManSwitch:SetText(AL["Show 10 Man Loot"])
+ AtlasLoot10Man25ManSwitch:SetText(AL["Show Normal Loot"])
AtlasLoot10Man25ManSwitch.lootpage = HeroicID
AtlasLoot10Man25ManSwitch:Show()
elseif AtlasLoot.db.profile.HeroicMode and HeroicID and Heroic25ID then
- AtlasLoot10Man25ManSwitch:SetText(AL["Show 25 Man Loot"]);
+ AtlasLoot10Man25ManSwitch:SetText(AL["Show Heroic/Ascended Loot"]);
AtlasLoot10Man25ManSwitch.lootpage = Heroic25ID
AtlasLoot10Man25ManSwitch:Show();
elseif not AtlasLoot.db.profile.Bigraid and NormalID and Normal25ID then
- AtlasLoot10Man25ManSwitch:SetText(AL["Show 25 Man Loot"]);
+ AtlasLoot10Man25ManSwitch:SetText(AL["Show Heroic/Ascended Loot"]);
AtlasLoot10Man25ManSwitch.lootpage = Normal25ID;
AtlasLoot10Man25ManSwitch:Show();
end
@@ -845,6 +845,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLootItemsFrame_Heroic:SetChecked(false)
AtlasLootItemsFrame_Heroic:Enable()
elseif AtlasLoot.db.profile.BigraidHeroic and Heroic25ID then
+ AtlasLoot10Man25ManSwitch:SetText(AL["Show Normal Loot"])
AtlasLootItemsFrame_Heroic:Show()
AtlasLootItemsFrame_Heroic:SetChecked(true)
if Normal25ID then
@@ -1001,12 +1002,12 @@ function AtlasLoot_GenerateAtlasMenu(dataID, pFrame)
BigraidCheck=string.sub(dataID, string.len(dataID)-4, string.len(dataID));
BigraiddataID=dataID.."25Man";
if BigraidCheck=="25Man" then
- AtlasLoot10Man25ManSwitch:SetText(AL["Show 10 Man Loot"]);
+ AtlasLoot10Man25ManSwitch:SetText(AL["Show Normal Loot"]);
AtlasLoot10Man25ManSwitch.lootpage = string.sub(dataID, 1, string.len(dataID)-5);
AtlasLoot10Man25ManSwitch:Show();
else
if dataSource[BigraiddataID] then
- AtlasLoot10Man25ManSwitch:SetText(AL["Show 25 Man Loot"]);
+ AtlasLoot10Man25ManSwitch:SetText(AL["Show Heroic/Ascended Loot"]);
AtlasLoot10Man25ManSwitch.lootpage = BigraiddataID;
AtlasLoot10Man25ManSwitch:Show();
end
diff --git a/AtlasLoot/Core/AtlasLoot.xml b/AtlasLoot/Core/AtlasLoot.xml
index 93c93ce..3c6d35f 100644
--- a/AtlasLoot/Core/AtlasLoot.xml
+++ b/AtlasLoot/Core/AtlasLoot.xml
@@ -599,7 +599,7 @@
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
- getglobal(this:GetName().."Text"):SetText(AL["Heroic Mode"]);
+ getglobal(this:GetName().."Text"):SetText(AL["Ascended Mode"]);
AtlasLoot_HeroicModeToggle();
diff --git a/AtlasLoot/Core/TextParsing.lua b/AtlasLoot/Core/TextParsing.lua
index 6ed0de0..0b61279 100644
--- a/AtlasLoot/Core/TextParsing.lua
+++ b/AtlasLoot/Core/TextParsing.lua
@@ -174,7 +174,7 @@ function AtlasLoot_FixText(text)
-- Misc
text = gsub(text, "#j1#", AL["Normal Mode"]);
text = gsub(text, "#j2#", AL["Raid"]);
- text = gsub(text, "#j3#", AL["Heroic Mode"]);
+ text = gsub(text, "#j3#", AL["Ascended Mode"]);
text = gsub(text, "#j5#", AL["Dungeon Set 2 Summonable"]);
text = gsub(text, "#j6#", AL["Dungeon Set 1"]);
text = gsub(text, "#j7#", AL["Dungeon Set 2"]);
diff --git a/AtlasLoot/DefaultFrame/DewDropDown.lua b/AtlasLoot/DefaultFrame/DewDropDown.lua
index 60f630a..95b8ceb 100644
--- a/AtlasLoot/DefaultFrame/DewDropDown.lua
+++ b/AtlasLoot/DefaultFrame/DewDropDown.lua
@@ -432,7 +432,7 @@ AtlasLoot_DewDropDown_SubTables = {
{ "", "NAXHeiganderUnclean" },
{ "", "NAXLoatheb" },
{ "", "NAXSapphiron" },
- { "", "NAXKelThuzard" },
+ { "", "NAXKelThuzad" },
{ "", "NAXTrash" },
},
diff --git a/AtlasLoot/Locales/constants.en.lua b/AtlasLoot/Locales/constants.en.lua
index 3be1ab9..0ddb7b3 100644
--- a/AtlasLoot/Locales/constants.en.lua
+++ b/AtlasLoot/Locales/constants.en.lua
@@ -38,8 +38,8 @@ if AL then
AL["Misc"] = true;
AL["Miscellaneous"] = true;
AL["Rewards"] = true;
- AL["Show 10 Man Loot"] = true;
- AL["Show 25 Man Loot"] = true;
+ AL["Show Normal Loot"] = true;
+ AL["Show Heroic/Ascended Loot"] = true;
AL["Factions - Original WoW"] = true;
AL["Factions - Burning Crusade"] = true;
AL["Factions - Wrath of the Lich King"] = true;
@@ -406,7 +406,7 @@ if AL then
-- Labels for loot table sections
AL["Additional Heroic Loot"] = true;
- AL["Heroic Mode"] = true;
+ AL["Ascended Mode"] = true;
AL["Normal Mode"] = true;
AL["Raid"] = true;
AL["Hard Mode"] = true;
diff --git a/AtlasLoot/TableRegister/loottables.en.lua b/AtlasLoot/TableRegister/loottables.en.lua
index 1c0964c..af96ade 100644
--- a/AtlasLoot/TableRegister/loottables.en.lua
+++ b/AtlasLoot/TableRegister/loottables.en.lua
@@ -472,14 +472,22 @@ end
AtlasLoot_TableNames["CFRSerpentLurker"] = { BabbleBoss["The Lurker Below"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["CFRSerpentVashj"] = { BabbleBoss["Lady Vashj"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["CFRSerpentTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Serpentshrine Cavern"]..")", "AtlasLootBurningCrusade" };
- -- CFR: Serpentshrine Cavern HEROIC
- AtlasLoot_TableNames["CFRSerpentHydrossHEROIC"] = { BabbleBoss["Hydross the Unstable"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["CFRSerpentKarathressHEROIC"] = { BabbleBoss["Fathom-Lord Karathress"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["CFRSerpentMorogrimHEROIC"] = { BabbleBoss["Morogrim Tidewalker"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["CFRSerpentLeotherasHEROIC"] = { BabbleBoss["Leotheras the Blind"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["CFRSerpentLurkerHEROIC"] = { BabbleBoss["The Lurker Below"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["CFRSerpentVashjHEROIC"] = { BabbleBoss["Lady Vashj"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["CFRSerpentTrashHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Serpentshrine Cavern"]..")", "AtlasLootBurningCrusade" };
+ -- CFR: Serpentshrine Cavern HEROIC FLEX
+ AtlasLoot_TableNames["CFRSerpentHydross25Man"] = { BabbleBoss["Hydross the Unstable"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentKarathress25Man"] = { BabbleBoss["Fathom-Lord Karathress"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentMorogrim25Man"] = { BabbleBoss["Morogrim Tidewalker"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentLeotheras25Man"] = { BabbleBoss["Leotheras the Blind"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentLurker25Man"] = { BabbleBoss["The Lurker Below"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentVashj25Man"] = { BabbleBoss["Lady Vashj"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Serpentshrine Cavern"]..")", "AtlasLootBurningCrusade" };
+ -- CFR: Serpentshrine Cavern ASCENDED
+ AtlasLoot_TableNames["CFRSerpentHydross25ManHEROIC"] = { BabbleBoss["Hydross the Unstable"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentKarathress25ManHEROIC"] = { BabbleBoss["Fathom-Lord Karathress"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentMorogrim25ManHEROIC"] = { BabbleBoss["Morogrim Tidewalker"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentLeotheras25ManHEROIC"] = { BabbleBoss["Leotheras the Blind"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentLurker25ManHEROIC"] = { BabbleBoss["The Lurker Below"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentVashj25ManHEROIC"] = { BabbleBoss["Lady Vashj"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["CFRSerpentTrash25ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Serpentshrine Cavern"]..")", "AtlasLootBurningCrusade" };
-- CFR: Slave Pens
AtlasLoot_TableNames["CFRSlaveMennu"] = { BabbleBoss["Mennu the Betrayer"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["CFRSlaveRokmar"] = { BabbleBoss["Rokmar the Crackler"], "AtlasLootBurningCrusade" };
@@ -522,17 +530,22 @@ end
-- Gruul's Lair
AtlasLoot_TableNames["GruulsLairHighKingMaulgar"] = { BabbleBoss["High King Maulgar"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["GruulGruul"] = { BabbleBoss["Gruul the Dragonkiller"], "AtlasLootBurningCrusade" };
- -- Gruul's Lair HEROIC
- AtlasLoot_TableNames["GruulsLairHighKingMaulgarHEROIC"] = { BabbleBoss["High King Maulgar"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["GruulGruulHEROIC"] = { BabbleBoss["Gruul the Dragonkiller"], "AtlasLootBurningCrusade" };
+ -- Gruul's Lair HEROIC FLEX
+ AtlasLoot_TableNames["GruulsLairHighKingMaulgar25Man"] = { BabbleBoss["High King Maulgar"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["GruulGruul25Man"] = { BabbleBoss["Gruul the Dragonkiller"], "AtlasLootBurningCrusade" };
+ -- Gruul's Lair ASCENDED
+ AtlasLoot_TableNames["GruulsLairHighKingMaulgar25ManHEROIC"] = { BabbleBoss["High King Maulgar"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["GruulGruul25ManHEROIC"] = { BabbleBoss["Gruul the Dragonkiller"], "AtlasLootBurningCrusade" };
-- HC: Blood Furnace
AtlasLoot_TableNames["HCFurnaceMaker"] = { BabbleBoss["The Maker"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["HCFurnaceBroggok"] = { BabbleBoss["Broggok"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["HCFurnaceBreaker"] = { BabbleBoss["Keli'dan the Breaker"], "AtlasLootBurningCrusade" };
-- HC: Magtheridon's Lair
AtlasLoot_TableNames["HCMagtheridon"] = { BabbleBoss["Magtheridon"], "AtlasLootBurningCrusade" };
- -- HC: Magtheridon's Lair HEROIC
- AtlasLoot_TableNames["HCMagtheridonHEROIC"] = { BabbleBoss["Magtheridon"], "AtlasLootBurningCrusade" };
+ -- HC: Magtheridon's Lair HEROIC FLEX
+ AtlasLoot_TableNames["HCMagtheridon25Man"] = { BabbleBoss["Magtheridon"], "AtlasLootBurningCrusade" };
+ -- HC: Magtheridon's Lair ASCENDED
+ AtlasLoot_TableNames["HCMagtheridon25ManHEROIC"] = { BabbleBoss["Magtheridon"], "AtlasLootBurningCrusade" };
-- HC: Ramparts
AtlasLoot_TableNames["HCRampWatchkeeper"] = { BabbleBoss["Watchkeeper Gargolmar"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["HCRampOmor"] = { BabbleBoss["Omor the Unscarred"], "AtlasLootBurningCrusade" };
@@ -548,6 +561,7 @@ end
AtlasLoot_TableNames["KaraCharredBoneFragment"] = { "Charred Bone Fragment ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["KaraNamed"] = { "Servant's Quarter Animal Bosses", "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["KaraAttumen"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraAttumen25Man"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["KaraMoroes"] = { BabbleBoss["Moroes"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["KaraKeannaLog"] = { "Keanna's Log ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["KaraMaiden"] = { BabbleBoss["Maiden of Virtue"], "AtlasLootBurningCrusade" };
@@ -560,23 +574,41 @@ end
AtlasLoot_TableNames["KaraChess"] = { BabbleBoss["Chess Event"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["KaraPrince"] = { BabbleBoss["Prince Malchezaar"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["KaraTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Karazhan"]..")", "AtlasLootBurningCrusade" };
- -- Karazhan HEROIC
- AtlasLoot_TableNames["KaraCharredBoneFragmentHEROIC"] = { "Charred Bone Fragment ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraNamedHEROIC"] = { "Servant's Quarter Animal Bosses", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraAttumenHEROIC"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraMoroesHEROIC"] = { BabbleBoss["Moroes"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraKeannaLogHEROIC"] = { "Keanna's Log ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraMaidenHEROIC"] = { BabbleBoss["Maiden of Virtue"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraOperaEventHEROIC"] = { "Opera Event", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraCuratorHEROIC"] = { BabbleBoss["The Curator"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraIllhoofHEROIC"] = { BabbleBoss["Terestian Illhoof"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraAranHEROIC"] = { BabbleBoss["Shade of Aran"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraNetherspiteHEROIC"] = { BabbleBoss["Netherspite"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraNightbaneHEROIC"] = { BabbleBoss["Nightbane"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraChessHEROIC"] = { BabbleBoss["Chess Event"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraPrinceHEROIC"] = { BabbleBoss["Prince Malchezaar"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["KaraTrashHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Karazhan"]..")", "AtlasLootBurningCrusade" };
- -- Sunwell Isle: Magister's Terrace
+ -- Karazhan HEROIC FLEX
+ AtlasLoot_TableNames["KaraCharredBoneFragment25Man"] = { "Charred Bone Fragment ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraNamed25Man"] = { "Servant's Quarter Animal Bosses", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraAttumen25Man"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraAttumen25Man"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraMoroes25Man"] = { BabbleBoss["Moroes"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraKeannaLog25Man"] = { "Keanna's Log ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraMaiden25Man"] = { BabbleBoss["Maiden of Virtue"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraOperaEvent25Man"] = { "Opera Event", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraCurator25Man"] = { BabbleBoss["The Curator"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraIllhoof25Man"] = { BabbleBoss["Terestian Illhoof"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraAran25Man"] = { BabbleBoss["Shade of Aran"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraNetherspite25Man"] = { BabbleBoss["Netherspite"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraNightbane25Man"] = { BabbleBoss["Nightbane"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraChess25Man"] = { BabbleBoss["Chess Event"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraPrince25Man"] = { BabbleBoss["Prince Malchezaar"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Karazhan"]..")", "AtlasLootBurningCrusade" };
+ -- Karazhan ASCENDED
+ AtlasLoot_TableNames["KaraCharredBoneFragment25ManHEROIC"] = { "Charred Bone Fragment ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraNamed25ManHEROIC"] = { "Servant's Quarter Animal Bosses", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraAttumen25ManHEROIC"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraAttumen25ManHEROIC"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraMoroes25ManHEROIC"] = { BabbleBoss["Moroes"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraKeannaLog25ManHEROIC"] = { "Keanna's Log ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraMaiden25ManHEROIC"] = { BabbleBoss["Maiden of Virtue"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraOperaEvent25ManHEROIC"] = { "Opera Event", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraCurator25ManHEROIC"] = { BabbleBoss["The Curator"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraIllhoof25ManHEROIC"] = { BabbleBoss["Terestian Illhoof"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraAran25ManHEROIC"] = { BabbleBoss["Shade of Aran"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraNetherspite25ManHEROIC"] = { BabbleBoss["Netherspite"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraNightbane25ManHEROIC"] = { BabbleBoss["Nightbane"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraChess25ManHEROIC"] = { BabbleBoss["Chess Event"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraPrince25ManHEROIC"] = { BabbleBoss["Prince Malchezaar"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["KaraTrash25ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Karazhan"]..")", "AtlasLootBurningCrusade" };
+ -- Sunwell Isle: Magister's Terrace
AtlasLoot_TableNames["SMTFireheart"] = { BabbleBoss["Selin Fireheart"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["SMTVexallus"] = { BabbleBoss["Vexallus"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["SMTDelrissa"] = { BabbleBoss["Priestess Delrissa"], "AtlasLootBurningCrusade" };
@@ -621,13 +653,20 @@ end
AtlasLoot_TableNames["TKEyeKaelthas"] = { BabbleBoss["Kael'thas Sunstrider"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["TKEyeLegendaries"] = { "Legendary Items for Kael'thas Fight", "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["TKEyeTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["The Eye"]..")", "AtlasLootExpansionItems" };
- -- TK: The Eye HEROIC
- AtlasLoot_TableNames["TKEyeAlarHEROIC"] = { BabbleBoss["Al'ar"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["TKEyeVoidReaverHEROIC"] = { BabbleBoss["Void Reaver"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["TKEyeSolarianHEROIC"] = { BabbleBoss["High Astromancer Solarian"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["TKEyeKaelthasHEROIC"] = { BabbleBoss["Kael'thas Sunstrider"], "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["TKEyeLegendariesHEROIC"] = { "Legendary Items for Kael'thas Fight", "AtlasLootBurningCrusade" };
- AtlasLoot_TableNames["TKEyeTrashHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["The Eye"]..")", "AtlasLootExpansionItems" };
+ -- TK: The Eye HEROIC FLEX
+ AtlasLoot_TableNames["TKEyeAlar25Man"] = { BabbleBoss["Al'ar"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeVoidReaver25Man"] = { BabbleBoss["Void Reaver"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeSolarian25Man"] = { BabbleBoss["High Astromancer Solarian"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeKaelthas25Man"] = { BabbleBoss["Kael'thas Sunstrider"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeLegendaries25Man"] = { "Legendary Items for Kael'thas Fight", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["The Eye"]..")", "AtlasLootExpansionItems" };
+ -- TK: The Eye ASCENDED
+ AtlasLoot_TableNames["TKEyeAlar25ManHEROIC"] = { BabbleBoss["Al'ar"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeVoidReaver25ManHEROIC"] = { BabbleBoss["Void Reaver"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeSolarian25ManHEROIC"] = { BabbleBoss["High Astromancer Solarian"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeKaelthas25ManHEROIC"] = { BabbleBoss["Kael'thas Sunstrider"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeLegendaries25ManHEROIC"] = { "Legendary Items for Kael'thas Fight", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["TKEyeTrash25ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["The Eye"]..")", "AtlasLootExpansionItems" };
-- TK: The Mechanar
AtlasLoot_TableNames["TKMechCacheoftheLegion"] = { AL["Cache of the Legion"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["TKMechCapacitus"] = { BabbleBoss["Mechano-Lord Capacitus"], "AtlasLootBurningCrusade" };
@@ -735,17 +774,28 @@ end
AtlasLoot_TableNames["BWLNefarian1"] = { BabbleBoss["Nefarian"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["BWLNefarian2"] = { BabbleBoss["Nefarian"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["BWLTrashMobs"] = { AL["Trash Mobs"].." ("..BabbleZone["Blackwing Lair"]..")", "AtlasLootOriginalWoW" };
- -- Blackwing Lair HEROIC
- AtlasLoot_TableNames["BWLRazorgoreHEROIC"] = { BabbleBoss["Razorgore the Untamed"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLVaelastraszHEROIC"] = { BabbleBoss["Vaelastrasz the Corrupt"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLLashlayerHEROIC"] = { BabbleBoss["Broodlord Lashlayer"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLFiremawHEROIC"] = { BabbleBoss["Firemaw"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLEbonrocHEROIC"] = { BabbleBoss["Ebonroc"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLFlamegorHEROIC"] = { BabbleBoss["Flamegor"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLChromaggusHEROIC"] = { BabbleBoss["Chromaggus"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLNefarian1HEROIC"] = { BabbleBoss["Nefarian"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLNefarian2HEROIC"] = { BabbleBoss["Nefarian"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["BWLTrashMobsHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Blackwing Lair"]..")", "AtlasLootOriginalWoW" };
+ -- Blackwing Lair HEROIC FLEX
+ AtlasLoot_TableNames["BWLRazorgore25Man"] = { BabbleBoss["Razorgore the Untamed"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLVaelastrasz25Man"] = { BabbleBoss["Vaelastrasz the Corrupt"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLLashlayer25Man"] = { BabbleBoss["Broodlord Lashlayer"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLFiremaw25Man"] = { BabbleBoss["Firemaw"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLEbonroc25Man"] = { BabbleBoss["Ebonroc"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLFlamegor25Man"] = { BabbleBoss["Flamegor"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLChromaggus25Man"] = { BabbleBoss["Chromaggus"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLNefarian125Man"] = { BabbleBoss["Nefarian"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLNefarian225Man"] = { BabbleBoss["Nefarian"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLTrashMobs25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Blackwing Lair"]..")", "AtlasLootOriginalWoW" };
+ -- Blackwing Lair ASCENDED
+ AtlasLoot_TableNames["BWLRazorgore25ManHEROIC"] = { BabbleBoss["Razorgore the Untamed"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLVaelastrasz25ManHEROIC"] = { BabbleBoss["Vaelastrasz the Corrupt"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLLashlayer25ManHEROIC"] = { BabbleBoss["Broodlord Lashlayer"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLFiremaw25ManHEROIC"] = { BabbleBoss["Firemaw"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLEbonroc25ManHEROIC"] = { BabbleBoss["Ebonroc"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLFlamegor25ManHEROIC"] = { BabbleBoss["Flamegor"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLChromaggus25ManHEROIC"] = { BabbleBoss["Chromaggus"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLNefarian125ManHEROIC"] = { BabbleBoss["Nefarian"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLNefarian225ManHEROIC"] = { BabbleBoss["Nefarian"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["BWLTrashMobs25ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Blackwing Lair"]..")", "AtlasLootOriginalWoW" };
-- The Deadmines
AtlasLoot_TableNames["TheDeadminesEntrance"] = { BabbleZone["The Deadmines"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["TheDeadmines1"] = { BabbleZone["The Deadmines"], "AtlasLootOriginalWoW" };
@@ -799,19 +849,32 @@ end
AtlasLoot_TableNames["MCRagnaros"] = { BabbleBoss["Ragnaros"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["MCRANDOMBOSSDROPPS"] = { "Random Boss Drops", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["MCTrashMobs"] = { AL["Trash Mobs"].." ("..BabbleZone["Molten Core"]..")", "AtlasLootOriginalWoW" };
- -- Molten Core HEROIC
- AtlasLoot_TableNames["MCLucifronHEROIC"] = { BabbleBoss["Lucifron"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCMagmadarHEROIC"] = { BabbleBoss["Magmadar"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCGehennasHEROIC"] = { BabbleBoss["Gehennas"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCGarrHEROIC"] = { BabbleBoss["Garr"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCShazzrahHEROIC"] = { BabbleBoss["Shazzrah"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCGeddonHEROIC"] = { BabbleBoss["Baron Geddon"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCGolemaggHEROIC"] = { BabbleBoss["Golemagg the Incinerator"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCSulfuronHEROIC"] = { BabbleBoss["Sulfuron Harbinger"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCMajordomoHEROIC"] = { BabbleBoss["Majordomo Executus"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCRagnarosHEROIC"] = { BabbleBoss["Ragnaros"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCRANDOMBOSSDROPPSHEROIC"] = { "Random Boss Drops", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["MCTrashMobsHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Molten Core"]..")", "AtlasLootOriginalWoW" };
+ -- Molten Core HEROIC FLEX
+ AtlasLoot_TableNames["MCLucifron25Man"] = { BabbleBoss["Lucifron"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCMagmadar25Man"] = { BabbleBoss["Magmadar"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCGehennas25Man"] = { BabbleBoss["Gehennas"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCGarr25Man"] = { BabbleBoss["Garr"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCShazzrah25Man"] = { BabbleBoss["Shazzrah"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCGeddon25Man"] = { BabbleBoss["Baron Geddon"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCGolemagg25Man"] = { BabbleBoss["Golemagg the Incinerator"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCSulfuron25Man"] = { BabbleBoss["Sulfuron Harbinger"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCMajordomo25Man"] = { BabbleBoss["Majordomo Executus"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCRagnaros25Man"] = { BabbleBoss["Ragnaros"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCRANDOMBOSSDROPPS25Man"] = { "Random Boss Drops", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCTrashMobs25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Molten Core"]..")", "AtlasLootOriginalWoW" };
+ -- Molten Core ASCENDED
+ AtlasLoot_TableNames["MCLucifron25ManHEROIC"] = { BabbleBoss["Lucifron"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCMagmadar25ManHEROIC"] = { BabbleBoss["Magmadar"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCGehennas25ManHEROIC"] = { BabbleBoss["Gehennas"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCGarr25ManHEROIC"] = { BabbleBoss["Garr"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCShazzrah25ManHEROIC"] = { BabbleBoss["Shazzrah"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCGeddon25ManHEROIC"] = { BabbleBoss["Baron Geddon"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCGolemagg25ManHEROIC"] = { BabbleBoss["Golemagg the Incinerator"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCSulfuron25ManHEROIC"] = { BabbleBoss["Sulfuron Harbinger"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCMajordomo25ManHEROIC"] = { BabbleBoss["Majordomo Executus"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCRagnaros25ManHEROIC"] = { BabbleBoss["Ragnaros"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCRANDOMBOSSDROPPS25ManHEROIC"] = { "Random Boss Drops", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["MCTrashMobs25ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Molten Core"]..")", "AtlasLootOriginalWoW" };
-- Ragefire Chasm
AtlasLoot_TableNames["RagefireChasm"] = { BabbleZone["Ragefire Chasm"], "AtlasLootOriginalWoW" };
-- Razorfen Downs
@@ -830,16 +893,26 @@ end
AtlasLoot_TableNames["AQ20Trash"] = { AL["Trash Mobs"].." (AQ20)", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["AQ20ClassBooks"] = { "AQ Class Books", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["AQEnchants"] = { "AQ Enchants", "AtlasLootOriginalWoW" };
- -- The Ruins of Ahn'Qiraj HEROIC
- AtlasLoot_TableNames["AQ20KurinnaxxHEROIC"] = { BabbleBoss["Kurinnaxx"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ20RajaxxHEROIC"] = { BabbleBoss["General Rajaxx"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ20MoamHEROIC"] = { BabbleBoss["Moam"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ20BuruHEROIC"] = { BabbleBoss["Buru the Gorger"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ20AyamissHEROIC"] = { BabbleBoss["Ayamiss the Hunter"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ20OssirianHEROIC"] = { BabbleBoss["Ossirian the Unscarred"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ20TrashHEROIC"] = { AL["Trash Mobs"].." (AQ20)", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ20ClassBooksHEROIC"] = { "AQ Class Books", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQEnchantsHEROIC"] = { "AQ Enchants", "AtlasLootOriginalWoW" };
+ -- The Ruins of Ahn'Qiraj HEROIC FLEX
+ AtlasLoot_TableNames["AQ20Kurinnaxx25Man"] = { BabbleBoss["Kurinnaxx"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Rajaxx25Man"] = { BabbleBoss["General Rajaxx"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Moam25Man"] = { BabbleBoss["Moam"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Buru25Man"] = { BabbleBoss["Buru the Gorger"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Ayamiss25Man"] = { BabbleBoss["Ayamiss the Hunter"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Ossirian25Man"] = { BabbleBoss["Ossirian the Unscarred"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Trash25Man"] = { AL["Trash Mobs"].." (AQ20)", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20ClassBooks25Man"] = { "AQ Class Books", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQEnchants25Man"] = { "AQ Enchants", "AtlasLootOriginalWoW" };
+ -- The Ruins of Ahn'Qiraj ASCENDED
+ AtlasLoot_TableNames["AQ20Kurinnaxx25ManHEROIC"] = { BabbleBoss["Kurinnaxx"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Rajaxx25ManHEROIC"] = { BabbleBoss["General Rajaxx"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Moam25ManHEROIC"] = { BabbleBoss["Moam"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Buru25ManHEROIC"] = { BabbleBoss["Buru the Gorger"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Ayamiss25ManHEROIC"] = { BabbleBoss["Ayamiss the Hunter"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Ossirian25ManHEROIC"] = { BabbleBoss["Ossirian the Unscarred"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Trash25ManHEROIC"] = { AL["Trash Mobs"].." (AQ20)", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20ClassBooks25ManHEROIC"] = { "AQ Class Books", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQEnchants25ManHEROIC"] = { "AQ Enchants", "AtlasLootOriginalWoW" };
-- Scarlet Monestery
AtlasLoot_TableNames["SMHerod"] = { BabbleZone["Scarlet Monastery"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["SMCathedral"] = { BabbleZone["Cathedral"], "AtlasLootOriginalWoW" };
@@ -921,19 +994,32 @@ end
AtlasLoot_TableNames["AQ40Trash1"] = { AL["Trash Mobs"].." (AQ40)", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["AQ40Trash2"] = { AL["Trash Mobs"].." (AQ40)", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["AQOpening"] = { "AQ Opening Quest Line", "AtlasLootOriginalWoW" };
- -- Temple of Ahn'Qiraj HEROIC
- AtlasLoot_TableNames["AQ40SkeramHEROIC"] = { BabbleBoss["The Prophet Skeram"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40VemHEROIC"] = { BabbleBoss["The Bug Family"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40SarturaHEROIC"] = { BabbleBoss["Battleguard Sartura"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40FankrissHEROIC"] = { BabbleBoss["Fankriss the Unyielding"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40ViscidusHEROIC"] = { BabbleBoss["Viscidus"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40HuhuranHEROIC"] = { BabbleBoss["Princess Huhuran"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40EmperorsHEROIC"] = { BabbleBoss["The Twin Emperors"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40OuroHEROIC"] = { BabbleBoss["Ouro"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40CThunHEROIC"] = { BabbleBoss["C'Thun"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40Trash1HEROIC"] = { AL["Trash Mobs"].." (AQ40)", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40Trash2HEROIC"] = { AL["Trash Mobs"].." (AQ40)", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQOpeningHEROIC"] = { "AQ Opening Quest Line", "AtlasLootOriginalWoW" };
+ -- Temple of Ahn'Qiraj HEROIC FLEX
+ AtlasLoot_TableNames["AQ40Skeram25Man"] = { BabbleBoss["The Prophet Skeram"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Vem25Man"] = { BabbleBoss["The Bug Family"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Sartura25Man"] = { BabbleBoss["Battleguard Sartura"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Fankriss25Man"] = { BabbleBoss["Fankriss the Unyielding"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Viscidus25Man"] = { BabbleBoss["Viscidus"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Huhuran25Man"] = { BabbleBoss["Princess Huhuran"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Emperors25Man"] = { BabbleBoss["The Twin Emperors"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Ouro25Man"] = { BabbleBoss["Ouro"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40CThun25Man"] = { BabbleBoss["C'Thun"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Trash125Man"] = { AL["Trash Mobs"].." (AQ40)", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Trash225Man"] = { AL["Trash Mobs"].." (AQ40)", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQOpening25Man"] = { "AQ Opening Quest Line", "AtlasLootOriginalWoW" };
+ -- Temple of Ahn'Qiraj ASCENDED
+ AtlasLoot_TableNames["AQ40Skeram25ManHEROIC"] = { BabbleBoss["The Prophet Skeram"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Vem25ManHEROIC"] = { BabbleBoss["The Bug Family"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Sartura25ManHEROIC"] = { BabbleBoss["Battleguard Sartura"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Fankriss25ManHEROIC"] = { BabbleBoss["Fankriss the Unyielding"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Viscidus25ManHEROIC"] = { BabbleBoss["Viscidus"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Huhuran25ManHEROIC"] = { BabbleBoss["Princess Huhuran"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Emperors25ManHEROIC"] = { BabbleBoss["The Twin Emperors"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Ouro25ManHEROIC"] = { BabbleBoss["Ouro"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40CThun25ManHEROIC"] = { BabbleBoss["C'Thun"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Trash125ManHEROIC"] = { AL["Trash Mobs"].." (AQ40)", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Trash225ManHEROIC"] = { AL["Trash Mobs"].." (AQ40)", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQOpening25ManHEROIC"] = { "AQ Opening Quest Line", "AtlasLootOriginalWoW" };
-- Uldaman
AtlasLoot_TableNames["UldMagreganDeepshadow"] = { AL["Magregan Deepshadow"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["UldTabletofRyuneh"] = { "Tablet of Ryun'eh", "AtlasLootOriginalWoW" };
@@ -984,22 +1070,38 @@ end
AtlasLoot_TableNames["ZGTrash1"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Gurub"]..")", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["ZGTrash2"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Gurub"]..")", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["ZGEnchants"] = { "ZG Enchants", "AtlasLootOriginalWoW" };
- -- Zul'Gurub HEROIC
- AtlasLoot_TableNames["ZGJeklikHEROIC"] = { BabbleBoss["High Priestess Jeklik"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGVenoxisHEROIC"] = { BabbleBoss["High Priest Venoxis"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGMarliHEROIC"] = { BabbleBoss["High Priestess Mar'li"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGMandokirHEROIC"] = { BabbleBoss["Bloodlord Mandokir"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGEdgeofMadnessHEROIC"] = { BabbleZone["Zul'Gurub"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGGahzrankaHEROIC"] = { BabbleBoss["Gahz'ranka"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGThekalHEROIC"] = { BabbleBoss["High Priest Thekal"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGArlokkHEROIC"] = { BabbleBoss["High Priestess Arlokk"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGJindoHEROIC"] = { BabbleBoss["Jin'do the Hexxer"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGHakkarHEROIC"] = { BabbleBoss["Hakkar"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGMuddyChurningWatersHEROIC"] = { "Muddy Churning Waters", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGSharedHEROIC"] = { "Shared ZG Priest Drops", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGTrash1HEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Gurub"]..")", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGTrash2HEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Gurub"]..")", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGEnchantsHEROIC"] = { "ZG Enchants", "AtlasLootOriginalWoW" };
+ -- Zul'Gurub HEROIC FLEX
+ AtlasLoot_TableNames["ZGJeklik25Man"] = { BabbleBoss["High Priestess Jeklik"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGVenoxis25Man"] = { BabbleBoss["High Priest Venoxis"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGMarli25Man"] = { BabbleBoss["High Priestess Mar'li"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGMandokir25Man"] = { BabbleBoss["Bloodlord Mandokir"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGEdgeofMadness25Man"] = { BabbleZone["Zul'Gurub"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGGahzranka25Man"] = { BabbleBoss["Gahz'ranka"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGThekal25Man"] = { BabbleBoss["High Priest Thekal"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGArlokk25Man"] = { BabbleBoss["High Priestess Arlokk"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGJindo25Man"] = { BabbleBoss["Jin'do the Hexxer"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGHakkar25Man"] = { BabbleBoss["Hakkar"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGMuddyChurningWaters25Man"] = { "Muddy Churning Waters", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGShared25Man"] = { "Shared ZG Priest Drops", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGTrash125Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Gurub"]..")", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGTrash225Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Gurub"]..")", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGEnchants25Man"] = { "ZG Enchants", "AtlasLootOriginalWoW" };
+ -- Zul'Gurub ASCENDED
+ AtlasLoot_TableNames["ZGJeklik25ManHEROIC"] = { BabbleBoss["High Priestess Jeklik"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGVenoxis25ManHEROIC"] = { BabbleBoss["High Priest Venoxis"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGMarli25ManHEROIC"] = { BabbleBoss["High Priestess Mar'li"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGMandokir25ManHEROIC"] = { BabbleBoss["Bloodlord Mandokir"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGEdgeofMadness25ManHEROIC"] = { BabbleZone["Zul'Gurub"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGGahzranka25ManHEROIC"] = { BabbleBoss["Gahz'ranka"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGThekal25ManHEROIC"] = { BabbleBoss["High Priest Thekal"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGArlokk25ManHEROIC"] = { BabbleBoss["High Priestess Arlokk"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGJindo25ManHEROIC"] = { BabbleBoss["Jin'do the Hexxer"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGHakkar25ManHEROIC"] = { BabbleBoss["Hakkar"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGMuddyChurningWaters25ManHEROIC"] = { "Muddy Churning Waters", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGShared25ManHEROIC"] = { "Shared ZG Priest Drops", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGTrash125ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Gurub"]..")", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGTrash225ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Gurub"]..")", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGEnchants25ManHEROIC"] = { "ZG Enchants", "AtlasLootOriginalWoW" };
-- Naxxramas level 60
AtlasLoot_TableNames["NAXPatchwerk"] = { BabbleBoss["Patchwerk"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["NAXGrobbulus"] = { BabbleBoss["Grobbulus"], "AtlasLootOriginalWoW" };
@@ -1015,29 +1117,48 @@ end
AtlasLoot_TableNames["NAXHeiganderUnclean"] = { BabbleBoss["Heigan the Unclean"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["NAXLoatheb"] = { BabbleBoss["Loatheb"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["NAXSapphiron"] = { BabbleBoss["Sapphiron"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXKelThuzard"] = { BabbleBoss["Kel'Thuzad"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXKelThuzad"] = { BabbleBoss["Kel'Thuzad"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["NAXTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Naxxramas"]..")", "AtlasLootOriginalWoW" };
- -- Naxxramas level 60 HEROIC
- AtlasLoot_TableNames["NAXPatchwerkHEROIC"] = { BabbleBoss["Patchwerk"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXGrobbulusHEROIC"] = { BabbleBoss["Grobbulus"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXGluthHEROIC"] = { BabbleBoss["Gluth"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXThaddiusHEROIC"] = { BabbleBoss["Thaddius"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXAnubRekhanHEROIC"] = { BabbleBoss["Anub'Rekhan"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXGrandWidowFearlinaHEROIC"] = { BabbleBoss["Grand Widow Faerlina"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXMaexxnaHEROIC"] = { BabbleBoss["Maexxna"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXInstructorRAuviousHEROIC"] = { BabbleBoss["Instructor Razuvious"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXGothicderHarvesterHEROIC"] = { BabbleBoss["Gothik the Harvester"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXTheFourHorsemenHEROIC"] = { BabbleBoss["The Four Horsemen"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXNothderPlaguebringerHEROIC"] = { BabbleBoss["Noth the Plaguebringer"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXHeiganderUncleanHEROIC"] = { BabbleBoss["Heigan the Unclean"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXLoathebHEROIC"] = { BabbleBoss["Loatheb"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXSapphironHEROIC"] = { BabbleBoss["Sapphiron"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXKelThuzardHEROIC"] = { BabbleBoss["Kel'Thuzad"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["NAXTrashHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Naxxramas"]..")", "AtlasLootOriginalWoW" };
+ -- Naxxramas level 60 Heroic FLEX
+ AtlasLoot_TableNames["NAXPatchwerk25Man"] = { BabbleBoss["Patchwerk"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXGrobbulus25Man"] = { BabbleBoss["Grobbulus"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXGluth25Man"] = { BabbleBoss["Gluth"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXThaddius25Man"] = { BabbleBoss["Thaddius"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXAnubRekhan25Man"] = { BabbleBoss["Anub'Rekhan"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXGrandWidowFearlina25Man"] = { BabbleBoss["Grand Widow Faerlina"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXMaexxna25Man"] = { BabbleBoss["Maexxna"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXInstructorRAuvious25Man"] = { BabbleBoss["Instructor Razuvious"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXGothicderHarvester25Man"] = { BabbleBoss["Gothik the Harvester"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXTheFourHorsemen25Man"] = { BabbleBoss["The Four Horsemen"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXNothderPlaguebringer25Man"] = { BabbleBoss["Noth the Plaguebringer"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXHeiganderUnclean25Man"] = { BabbleBoss["Heigan the Unclean"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXLoatheb25Man"] = { BabbleBoss["Loatheb"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXSapphiron25Man"] = { BabbleBoss["Sapphiron"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXKelThuzad25Man"] = { BabbleBoss["Kel'Thuzad"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Naxxramas"]..")", "AtlasLootOriginalWoW" };
+ -- Naxxramas level 60 ASCENDED
+ AtlasLoot_TableNames["NAXPatchwerk25ManHEROIC"] = { BabbleBoss["Patchwerk"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXGrobbulus25ManHEROIC"] = { BabbleBoss["Grobbulus"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXGluth25ManHEROIC"] = { BabbleBoss["Gluth"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXThaddius25ManHEROIC"] = { BabbleBoss["Thaddius"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXAnubRekhan25ManHEROIC"] = { BabbleBoss["Anub'Rekhan"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXGrandWidowFearlina25ManHEROIC"] = { BabbleBoss["Grand Widow Faerlina"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXMaexxna25ManHEROIC"] = { BabbleBoss["Maexxna"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXInstructorRAuvious25ManHEROIC"] = { BabbleBoss["Instructor Razuvious"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXGothicderHarvester25ManHEROIC"] = { BabbleBoss["Gothik the Harvester"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXTheFourHorsemen25ManHEROIC"] = { BabbleBoss["The Four Horsemen"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXNothderPlaguebringer25ManHEROIC"] = { BabbleBoss["Noth the Plaguebringer"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXHeiganderUnclean25ManHEROIC"] = { BabbleBoss["Heigan the Unclean"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXLoatheb25ManHEROIC"] = { BabbleBoss["Loatheb"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXSapphiron25ManHEROIC"] = { BabbleBoss["Sapphiron"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXKelThuzad25ManHEROIC"] = { BabbleBoss["Kel'Thuzad"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["NAXTrash25ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Naxxramas"]..")", "AtlasLootOriginalWoW" };
--Onyxia60
AtlasLoot_TableNames["Onyxia60"] = { BabbleBoss["Onyxia"], "AtlasLootOriginalWoW" };
- --Onyxia60 HEROIC
- AtlasLoot_TableNames["Onyxia60HEROIC"] = { BabbleBoss["Onyxia"], "AtlasLootOriginalWoW" };
+ --Onyxia60 HEROIC FLEX
+ AtlasLoot_TableNames["Onyxia6025Man"] = { BabbleBoss["Onyxia"], "AtlasLootOriginalWoW" };
+ --Onyxia60 ASCENDED
+ AtlasLoot_TableNames["Onyxia6025ManHEROIC"] = { BabbleBoss["Onyxia"], "AtlasLootOriginalWoW" };
------------
--- Sets ---
@@ -1203,10 +1324,14 @@ end
AtlasLoot_TableNames["ZGSets1"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["ZGSets2"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["ZGSets3"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
- -- ZG Sets HEROIC
- AtlasLoot_TableNames["ZGSets1HEROIC"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGSets2HEROIC"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["ZGSets3HEROIC"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
+ -- ZG Sets HEROIC FLEX
+ AtlasLoot_TableNames["ZGSets125Man"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGSets225Man"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGSets325Man"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
+ -- ZG Sets ASCENDED
+ AtlasLoot_TableNames["ZGSets125ManHEROIC"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGSets225ManHEROIC"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["ZGSets325ManHEROIC"] = { AL["ZG Class Sets"], "AtlasLootOriginalWoW" };
-- AQ20 Sets
AtlasLoot_TableNames["AQ20Sets1"] = { AL["AQ20 Class Sets"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["AQ20Sets2"] = { AL["AQ20 Class Sets"], "AtlasLootOriginalWoW" };
@@ -1214,13 +1339,20 @@ end
AtlasLoot_TableNames["AQ40Sets1"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["AQ40Sets2"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["AQ40Sets3"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
- -- AQ20 Sets HEROIC
- AtlasLoot_TableNames["AQ20Sets1HEROIC"] = { AL["AQ20 Class Sets"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ20Sets2HEROIC"] = { AL["AQ20 Class Sets"], "AtlasLootOriginalWoW" };
- -- AQ40 Sets HEROIC
- AtlasLoot_TableNames["AQ40Sets1HEROIC"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40Sets2HEROIC"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["AQ40Sets3HEROIC"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
+ -- AQ20 Sets HEROIC FLEX
+ AtlasLoot_TableNames["AQ20Sets125Man"] = { AL["AQ20 Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Sets225Man"] = { AL["AQ20 Class Sets"], "AtlasLootOriginalWoW" };
+ -- AQ20 Sets ASCENDED
+ AtlasLoot_TableNames["AQ20Sets125ManHEROIC"] = { AL["AQ20 Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ20Sets225ManHEROIC"] = { AL["AQ20 Class Sets"], "AtlasLootOriginalWoW" };
+ -- AQ40 Sets HEROIC FLEX
+ AtlasLoot_TableNames["AQ40Sets125Man"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Sets225Man"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Sets325Man"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
+ -- AQ40 Sets ASCENDED
+ AtlasLoot_TableNames["AQ40Sets125ManHEROIC"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Sets225ManHEROIC"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["AQ40Sets325ManHEROIC"] = { AL["AQ40 Class Sets"], "AtlasLootOriginalWoW" };
-- Dungeon Set 1/2
AtlasLoot_TableNames["T0Druid"] = { "Druid", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["T0Hunter"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "AtlasLootOriginalWoW" };
@@ -1247,17 +1379,28 @@ end
AtlasLoot_TableNames["T1T2Warlock"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["T1T2Warrior"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["T1T2DPSWarrior"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
+ -- T1/T2 Sets HEROIC FLEX
+ AtlasLoot_TableNames["T1T2Druid25Man"] = { "Druid", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Hunter25Man"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Mage25Man"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Paladin25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Priest25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Rogue25Man"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Shaman25Man"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Warlock25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Warrior25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2DPSWarrior25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
-- T1/T2 Sets HEROIC
- AtlasLoot_TableNames["T1T2DruidHEROIC"] = { "Druid", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2HunterHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2MageHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2PaladinHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2PriestHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2RogueHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2ShamanHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2WarlockHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2WarriorHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T1T2DPSWarriorHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Druid25ManHEROIC"] = { "Druid", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Hunter25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Mage25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Paladin25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Priest25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Rogue25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Shaman25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Warlock25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2Warrior25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T1T2DPSWarrior25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
-- T3 Sets
AtlasLoot_TableNames["T3Druid"] = { "Druid", "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["T3Hunter"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "AtlasLootOriginalWoW" };
@@ -1269,17 +1412,28 @@ end
AtlasLoot_TableNames["T3Warlock"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["T3Warrior"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
AtlasLoot_TableNames["T3DPSWarrior"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
+ -- T3 Sets HEROIC FLEX
+ AtlasLoot_TableNames["T3Druid25Man"] = { "Druid", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Hunter25Man"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Mage25Man"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Paladin25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Priest25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Rogue25Man"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Shaman25Man"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Warlock25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Warrior25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3DPSWarrior25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
-- T3 Sets HEROIC
- AtlasLoot_TableNames["T3DruidHEROIC"] = { "Druid", "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3HunterHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3MageHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3PaladinHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3PriestHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3RogueHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3ShamanHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3WarlockHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3WarriorHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
- AtlasLoot_TableNames["T3DPSWarriorHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Druid25ManHEROIC"] = { "Druid", "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Hunter25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Mage25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Paladin25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Priest25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Rogue25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Shaman25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Warlock25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3Warrior25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
+ AtlasLoot_TableNames["T3DPSWarrior25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"], "AtlasLootOriginalWoW" };
-- T4 Sets
AtlasLoot_TableNames["T4DruidBalance"] = { "Druid".." - T4 "..AL["Balance"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["T4DruidFeral"] = { "Druid".." - T4 "..AL["Feral"], "AtlasLootBurningCrusade" };
@@ -1298,6 +1452,42 @@ end
AtlasLoot_TableNames["T4Warlock"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - T4 ", "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["T4WarriorFury"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T4 "..AL["Fury"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["T4WarriorProtection"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T4 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ -- T4 Sets HEROIC FLEX
+ AtlasLoot_TableNames["T4DruidBalance25Man"] = { "Druid".." - T4 "..AL["Balance"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4DruidFeral25Man"] = { "Druid".." - T4 "..AL["Feral"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4DruidRestoration25Man"] = { "Druid".." - T4 "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Hunter25Man"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"].." - T4 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Mage25Man"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"].." - T4 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinHoly25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinProtection25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinRetribution25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Retribution"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PriestHoly25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T4 "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PriestShadow25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T4 "..AL["Shadow"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Rogue25Man"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"].." - T4 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanElemental25Man"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Elemental"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanEnhancement25Man"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Enhancement"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanRestoration25Man"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Warlock25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - T4 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4WarriorFury25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T4 "..AL["Fury"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4WarriorProtection25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T4 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ -- T4 Sets ASCENDED
+ AtlasLoot_TableNames["T4DruidBalance25ManHEROIC"] = { "Druid".." - T4 "..AL["Balance"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4DruidFeral25ManHEROIC"] = { "Druid".." - T4 "..AL["Feral"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4DruidRestoration25ManHEROIC"] = { "Druid".." - T4 "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Hunter25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"].." - T4 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Mage25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"].." - T4 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinHoly25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinProtection25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PaladinRetribution25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T4 "..AL["Retribution"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PriestHoly25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T4 "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4PriestShadow25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T4 "..AL["Shadow"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Rogue25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"].." - T4 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanElemental25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Elemental"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanEnhancement25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Enhancement"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4ShamanRestoration25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T4 "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4Warlock25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - T4 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4WarriorFury25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T4 "..AL["Fury"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T4WarriorProtection25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T4 "..AL["Protection"], "AtlasLootBurningCrusade" };
-- T5 Sets
AtlasLoot_TableNames["T5DruidBalance"] = { "Druid".." - T5 "..AL["Balance"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["T5DruidFeral"] = { "Druid".." - T5 "..AL["Feral"], "AtlasLootBurningCrusade" };
@@ -1316,6 +1506,42 @@ end
AtlasLoot_TableNames["T5Warlock"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - T5 ", "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["T5WarriorFury"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T5 "..AL["Fury"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["T5WarriorProtection"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T5 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ -- T5 Sets HEROIC FLEX
+ AtlasLoot_TableNames["T5DruidBalance25Man"] = { "Druid".." - T5 "..AL["Balance"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5DruidFeral25Man"] = { "Druid".." - T5 "..AL["Feral"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5DruidRestoration25Man"] = { "Druid".." - T5 "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Hunter25Man"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"].." - T5 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Mage25Man"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"].." - T5 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinHoly25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinProtection25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinRetribution25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Retribution"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PriestHoly25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T5 "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PriestShadow25Man"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T5 "..AL["Shadow"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Rogue25Man"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"].." - T5 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanElemental25Man"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Elemental"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanEnhancement25Man"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Enhancement"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanRestoration25Man"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Warlock25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - T5 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5WarriorFury25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T5 "..AL["Fury"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5WarriorProtection25Man"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T5 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ -- T5 Sets ASCENDED
+ AtlasLoot_TableNames["T5DruidBalance25ManHEROIC"] = { "Druid".." - T5 "..AL["Balance"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5DruidFeral25ManHEROIC"] = { "Druid".." - T5 "..AL["Feral"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5DruidRestoration25ManHEROIC"] = { "Druid".." - T5 "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Hunter25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["HUNTER"].." - T5 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Mage25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["MAGE"].." - T5 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinHoly25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinProtection25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Protection"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PaladinRetribution25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PALADIN"].." - T5 "..AL["Retribution"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PriestHoly25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T5 "..AL["Holy"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5PriestShadow25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["PRIEST"].." - T5 "..AL["Shadow"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Rogue25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["ROGUE"].." - T5 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanElemental25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Elemental"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanEnhancement25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Enhancement"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5ShamanRestoration25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["SHAMAN"].." - T5 "..AL["Restoration"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5Warlock25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARLOCK"].." - T5 ", "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5WarriorFury25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T5 "..AL["Fury"], "AtlasLootBurningCrusade" };
+ AtlasLoot_TableNames["T5WarriorProtection25ManHEROIC"] = { LOCALIZED_CLASS_NAMES_MALE["WARRIOR"].." - T5 "..AL["Protection"], "AtlasLootBurningCrusade" };
-- T6 Sets
AtlasLoot_TableNames["T6DruidBalance"] = { "Druid".." - T6 "..AL["Balance"], "AtlasLootBurningCrusade" };
AtlasLoot_TableNames["T6DruidFeral"] = { "Druid".." - T6 "..AL["Feral"], "AtlasLootBurningCrusade" };
diff --git a/AtlasLoot_BurningCrusade/burningcrusade.lua b/AtlasLoot_BurningCrusade/burningcrusade.lua
index c70f84b..e66e5b6 100644
--- a/AtlasLoot_BurningCrusade/burningcrusade.lua
+++ b/AtlasLoot_BurningCrusade/burningcrusade.lua
@@ -1631,11 +1631,151 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 27, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
};
- ------------------------------------------------------
- --- Coilfang Reservoir: Serpentshrine Cavern HEROIC---
- ------------------------------------------------------
- AtlasLoot_Data["CFRSerpentHydrossHEROIC"] = {
+ ------------------------------------------------------
+ --- Coilfang Reservoir: Serpentshrine Cavern HEROIC FLEX---
+ ------------------------------------------------------
+
+ AtlasLoot_Data["CFRSerpentHydross25Man"] = {
+ { 1, 330056, "", "=q4=Robe of Hateful Echoes", "=ds=#s5#, #a1#", "", "18%"};
+ { 2, 332516, "", "=q4=Wraps of Purification", "=ds=#s8#, #a1#", "", "18%"};
+ { 3, 330050, "", "=q4=Boots of the Shifting Nightmare", "=ds=#s12#, #a1#", "", "17%"};
+ { 4, 330055, "", "=q4=Shoulderpads of the Stranger", "=ds=#s3#, #a2#", "", "16%"};
+ { 5, 330047, "", "=q4=Blackfathom Warbands", "=ds=#s8#, #a3#", "", "19%"};
+ { 6, 330054, "", "=q4=Ranger-General's Chestguard", "=ds=#s5#, #a3#", "", "18%"};
+ { 7, 330048, "", "=q4=Brighthelm of Justice", "=ds=#s1#, #a4#", "", "21%"};
+ { 8, 330053, "", "=q4=Pauldrons of the Wardancer", "=ds=#s3#, #a4#", "", "16%"};
+ { 16, 330052, "", "=q4=Ring of Lethality", "=ds=#s13#", "", "20%"};
+ { 17, 333055, "", "=q4=Band of Vile Aggression", "=ds=#s13#", "", "14%"};
+ { 18, 330664, "", "=q4=Living Root of the Wildheart", "=ds=#s14#, =q1=#m1# =ds=#c1#", "", "18%"};
+ { 19, 330629, "", "=q4=Scarab of Displacement", "=ds=#s14#", "", "21%"};
+ { 20, 330049, "", "=q4=Fathomstone", "=ds=#s15#", "", "19%"};
+ { 21, 330051, "", "=q4=Idol of the Crescent Goddess", "=ds=#s16#, #w14#", "", "11%"};
+ { 23, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Next = "CFRSerpentLurker25Man";
+ };
+
+ AtlasLoot_Data["CFRSerpentLurker25Man"] = {
+ { 1, 330064, "", "=q4=Cord of Screaming Terrors", "=ds=#s10#, #a1#", "", "17%"};
+ { 2, 330067, "", "=q4=Velvet Boots of the Guardian", "=ds=#s12#, #a1#", "", "17%"};
+ { 3, 330062, "", "=q4=Grove-Bands of Remulos", "=ds=#s8#, #a2#", "", "21%"};
+ { 4, 330060, "", "=q4=Boots of Effortless Striking", "=ds=#s12#, #a2#", "", "21%"};
+ { 5, 330066, "", "=q4=Tempest-Strider Boots", "=ds=#s12#, #a3#", "", "21%"};
+ { 6, 330065, "", "=q4=Glowing Breastplate of Truth", "=ds=#s5#, #a4#", "", "20%"};
+ { 7, 330057, "", "=q4=Bracers of Eradication", "=ds=#s8#, #a4#", "", "19%"};
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 16, 330059, "", "=q4=Choker of Animalistic Fury", "=ds=#s2#", "", "21%"};
+ { 17, 330061, "", "=q4=Ancestral Ring of Conquest", "=ds=#s13#", "", "20%"};
+ { 18, 333054, "", "=q4=The Seal of Danzalar", "=ds=#s13#", "", "14%"};
+ { 19, 330665, "", "=q4=Earring of Soulful Meditation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "18%"};
+ { 20, 330063, "", "=q4=Libram of Absolute Truth", "=ds=#s16#, #w16#", "", "17%"};
+ { 21, 330058, "", "=q4=Mallet of the Tides", "=ds=#h1#, #w6#", "", "20%"};
+ Prev = "CFRSerpentHydross25Man";
+ Next = "CFRSerpentLeotheras25Man";
+ };
+
+ AtlasLoot_Data["CFRSerpentLeotheras25Man"] = {
+ { 1, 330092, "", "=q4=Orca-Hide Boots", "=ds=#s12#, #a2#", "", "13%"};
+ { 2, 330097, "", "=q4=Coral-Barbed Shoulderpads", "=ds=#s3#, #a3#", "", "15%"};
+ { 3, 330091, "", "=q4=True-Aim Stalker Bands", "=ds=#s8#, #a3#", "", "17%"};
+ { 4, 330096, "", "=q4=Girdle of the Invulnerable", "=ds=#s10#, #a4#", "", "14%"};
+ { 5, 330627, "", "=q4=Tsunami Talisman", "=ds=#s14#", "", "15%"};
+ { 6, 330095, "", "=q4=Fang of the Leviathan", "=ds=#h3#, #w10#", "", "14%"};
+ { 16, 330239, "", "=q4=Gloves of the Vanquished Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "63%"};
+ { 17, 330240, "", "=q4=Gloves of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "67%"};
+ { 18, 330241, "", "=q4=Gloves of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "65%"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Prev = "CFRSerpentLurker25Man";
+ Next = "CFRSerpentKarathress25Man";
+ };
+
+ AtlasLoot_Data["CFRSerpentKarathress25Man"] = {
+ { 1, 330100, "", "=q4=Soul-Strider Boots", "=ds=#s12#, #a1#", "", "15%"};
+ { 2, 330101, "", "=q4=Bloodsea Brigand's Vest", "=ds=#s5#, #a2#", "", "15%"};
+ { 3, 330099, "", "=q4=Frayed Tether of the Drowned", "=ds=#s2#", "", "15%"};
+ { 4, 330663, "", "=q4=Fathom-Brooch of the Tidewalker", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "15%"};
+ { 5, 330626, "", "=q4=Sextant of Unstable Currents", "=ds=#s14#", "", "14%"};
+ { 6, 330090, "", "=q4=World Breaker", "=ds=#h2#, #w6#", "", "15%"};
+ { 16, 330245, "", "=q4=Leggings of the Vanquished Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "62%"};
+ { 17, 330246, "", "=q4=Leggings of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "61%"};
+ { 18, 330247, "", "=q4=Leggings of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "62%"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Prev = "CFRSerpentLeotheras25Man";
+ Next = "CFRSerpentMorogrim25Man";
+ };
+
+ AtlasLoot_Data["CFRSerpentMorogrim25Man"] = {
+ { 1, 330098, "", "=q4=Razor-Scale Battlecloak", "=ds=#s4#", "", "22%"};
+ { 2, 330079, "", "=q4=Illidari Shoulderpads", "=ds=#s3#, #a1#", "", "15%"};
+ { 3, 330075, "", "=q4=Gnarled Chestpiece of the Ancients", "=ds=#s5#, #a2#", "", "19%"};
+ { 4, 330085, "", "=q4=Mantle of the Tireless Tracker", "=ds=#s3#, #a3#", "", "20%"};
+ { 5, 330068, "", "=q4=Girdle of the Tidal Call", "=ds=#s10#, #a3#", "", "17%"};
+ { 6, 330084, "", "=q4=Pauldrons of the Argent Sentinel", "=ds=#s3#, #a4#", "", "21%"};
+ { 7, 330081, "", "=q4=Warboots of Obliteration", "=ds=#s12#, #a4#", "", "21%"};
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 16, 330008, "", "=q4=Pendant of the Lost Ages", "=ds=#s2#", "", "18%"};
+ { 17, 330083, "", "=q4=Ring of Sundered Souls", "=ds=#s13#", "", "21%"};
+ { 18, 333058, "", "=q4=Band of the Vigilant", "=ds=#s13#", "", "19%"};
+ { 19, 330720, "", "=q4=Serpent-Coil Braid", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "20%"};
+ { 20, 330082, "", "=q4=Talon of Azshara", "=ds=#h1#, #w10#", "", "20%"};
+ { 21, 330080, "", "=q4=Luminescent Rod of the Naaru", "=ds=#w12#", "", "15%"};
+ Prev = "CFRSerpentKarathress25Man";
+ Next = "CFRSerpentVashj25Man";
+ };
+
+ AtlasLoot_Data["CFRSerpentVashj25Man"] = {
+ { 1, 330107, "", "=q4=Vestments of the Sea-Witch", "=ds=#s5#, #a1#", "", "13%"};
+ { 2, 330111, "", "=q4=Runetotem's Mantle", "=ds=#s3#, #a2#", "", "14%"};
+ { 3, 330106, "", "=q4=Belt of One-Hundred Deaths", "=ds=#s10#, #a2#", "", "12%"};
+ { 4, 330104, "", "=q4=Cobra-Lash Boots", "=ds=#s12#, #a3#", "", "13%"};
+ { 5, 330102, "", "=q4=Krakken-Heart Breastplate", "=ds=#s5#, #a4#", "", "15%"};
+ { 6, 330112, "", "=q4=Glorious Gauntlets of Crestfall", "=ds=#s9#, #a4#", "", "14%"};
+ { 7, 330109, "", "=q4=Ring of Endless Coils", "=ds=#s13#", "", "13%"};
+ { 8, 330110, "", "=q4=Coral Band of the Revived", "=ds=#s13#", "", "16%"};
+ { 9, 330621, "", "=q4=Prism of Inner Calm", "=ds=#s14#", "", "13%"};
+ { 10, 330103, "", "=q4=Fang of Vashj", "=ds=#h1#, #w4#", "", "14%"};
+ { 11, 330108, "", "=q4=Lightfathom Scepter", "=ds=#h3#, #w6#", "", "14%"};
+ { 12, 330105, "", "=q4=Serpent Spine Longbow", "=ds=#w2#", "", "13%"};
+ { 16, 330242, "", "=q4=Helm of the Vanquished Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "61%"};
+ { 17, 330243, "", "=q4=Helm of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "62%"};
+ { 18, 330244, "", "=q4=Helm of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "63%"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 22, 29906, "", "=q1=Vashj's Vial Remnant", "=ds=#m3#", "", "35%"};
+ Prev = "CFRSerpentMorogrim25Man";
+ };
+
+ AtlasLoot_Data["CFRSerpentTrash25Man"] = {
+ { 1, 330027, "", "=q4=Boots of Courage Unending", "=ds=#s12#, #a4#", "", "3%"};
+ { 2, 330022, "", "=q4=Pendant of the Perilous", "=ds=#s2#", "", "3%"};
+ { 3, 330620, "", "=q4=Spyglass of the Hidden Fleet", "=ds=#s14#", "", "4%"};
+ { 4, 330023, "", "=q4=Totem of the Maelstrom", "=ds=#s16#, #w15#", "", "3%"};
+ { 5, 330021, "", "=q4=Wildfury Greatstaff", "=ds=#w9#", "", "3%"};
+ { 6, 330025, "", "=q4=Serpentshrine Shuriken", "=ds=#w11#", "", "3%"};
+ { 8, 30324, "", "=q4=Plans: Red Havoc Boots", "=ds=#p2# (375)", "", "1%"};
+ { 9, 30322, "", "=q4=Plans: Red Belt of Battle", "=ds=#p2# (375)", "", "2%"};
+ { 10, 30323, "", "=q4=Plans: Boots of the Protector", "=ds=#p2# (375)", "", "2%"};
+ { 11, 30321, "", "=q4=Plans: Belt of the Guardian", "=ds=#p2# (375)", "", "2%"};
+ { 12, 30280, "", "=q4=Pattern: Belt of Blasting", "=ds=#p8# (375)", "", "1%"};
+ { 13, 30282, "", "=q4=Pattern: Boots of Blasting", "=ds=#p8# (375)", "", "1%"};
+ { 14, 30283, "", "=q4=Pattern: Boots of the Long Road", "=ds=#p8# (375)", "", "2%"};
+ { 15, 30281, "", "=q4=Pattern: Belt of the Long Road", "=ds=#p8# (375)", "", "1%"};
+ { 16, 30308, "", "=q4=Pattern: Hurricane Boots", "=ds=#p7# (375)", "", "1%"};
+ { 17, 30304, "", "=q4=Pattern: Monsoon Belt", "=ds=#p7# (375)", "", "1%"};
+ { 18, 30305, "", "=q4=Pattern: Boots of Natural Grace", "=ds=#p7# (375)", "", "2%"};
+ { 19, 30307, "", "=q4=Pattern: Boots of the Crimson Hawk", "=ds=#p7# (375)", "", "1%"};
+ { 20, 30306, "", "=q4=Pattern: Boots of Utter Darkness", "=ds=#p7# (375)", "", "2%"};
+ { 21, 30301, "", "=q4=Pattern: Belt of Natural Power", "=ds=#p7# (375)", "", "1%"};
+ { 22, 30303, "", "=q4=Pattern: Belt of the Black Eagle", "=ds=#p7# (375)", "", "1%"};
+ { 23, 30302, "", "=q4=Pattern: Belt of Deep Shadow", "=ds=#p7# (375)", "", "1%"};
+ { 25, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%"};
+ { 27, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
+ };
+
+ ------------------------------------------------------
+ --- Coilfang Reservoir: Serpentshrine Cavern ASCENDED ---
+ ------------------------------------------------------
+
+ AtlasLoot_Data["CFRSerpentHydross25ManHEROIC"] = {
{ 1, 230056, "", "=q4=Robe of Hateful Echoes", "=ds=#s5#, #a1#", "", "18%"};
{ 2, 232516, "", "=q4=Wraps of Purification", "=ds=#s8#, #a1#", "", "18%"};
{ 3, 230050, "", "=q4=Boots of the Shifting Nightmare", "=ds=#s12#, #a1#", "", "17%"};
@@ -1651,10 +1791,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 20, 230049, "", "=q4=Fathomstone", "=ds=#s15#", "", "19%"};
{ 21, 230051, "", "=q4=Idol of the Crescent Goddess", "=ds=#s16#, #w14#", "", "11%"};
{ 23, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Next = "CFRSerpentLurkerHEROIC";
+ Next = "CFRSerpentLurker25ManHEROIC";
};
- AtlasLoot_Data["CFRSerpentLurkerHEROIC"] = {
+ AtlasLoot_Data["CFRSerpentLurker25ManHEROIC"] = {
{ 1, 230064, "", "=q4=Cord of Screaming Terrors", "=ds=#s10#, #a1#", "", "17%"};
{ 2, 230067, "", "=q4=Velvet Boots of the Guardian", "=ds=#s12#, #a1#", "", "17%"};
{ 3, 230062, "", "=q4=Grove-Bands of Remulos", "=ds=#s8#, #a2#", "", "21%"};
@@ -1669,11 +1809,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 230665, "", "=q4=Earring of Soulful Meditation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "18%"};
{ 20, 230063, "", "=q4=Libram of Absolute Truth", "=ds=#s16#, #w16#", "", "17%"};
{ 21, 230058, "", "=q4=Mallet of the Tides", "=ds=#h1#, #w6#", "", "20%"};
- Prev = "CFRSerpentHydrossHEROIC";
- Next = "CFRSerpentLeotherasHEROIC";
+ Prev = "CFRSerpentHydross25ManHEROIC";
+ Next = "CFRSerpentLeotheras25ManHEROIC";
};
- AtlasLoot_Data["CFRSerpentLeotherasHEROIC"] = {
+ AtlasLoot_Data["CFRSerpentLeotheras25ManHEROIC"] = {
{ 1, 230092, "", "=q4=Orca-Hide Boots", "=ds=#s12#, #a2#", "", "13%"};
{ 2, 230097, "", "=q4=Coral-Barbed Shoulderpads", "=ds=#s3#, #a3#", "", "15%"};
{ 3, 230091, "", "=q4=True-Aim Stalker Bands", "=ds=#s8#, #a3#", "", "17%"};
@@ -1684,11 +1824,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 230240, "", "=q4=Gloves of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "67%"};
{ 18, 230241, "", "=q4=Gloves of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "65%"};
{ 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Prev = "CFRSerpentLurkerHEROIC";
- Next = "CFRSerpentKarathressHEROIC";
+ Prev = "CFRSerpentLurker25ManHEROIC";
+ Next = "CFRSerpentKarathress25ManHEROIC";
};
- AtlasLoot_Data["CFRSerpentKarathressHEROIC"] = {
+ AtlasLoot_Data["CFRSerpentKarathress25ManHEROIC"] = {
{ 1, 230100, "", "=q4=Soul-Strider Boots", "=ds=#s12#, #a1#", "", "15%"};
{ 2, 230101, "", "=q4=Bloodsea Brigand's Vest", "=ds=#s5#, #a2#", "", "15%"};
{ 3, 230099, "", "=q4=Frayed Tether of the Drowned", "=ds=#s2#", "", "15%"};
@@ -1699,11 +1839,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 230246, "", "=q4=Leggings of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "61%"};
{ 18, 230247, "", "=q4=Leggings of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "62%"};
{ 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Prev = "CFRSerpentLeotherasHEROIC";
- Next = "CFRSerpentMorogrimHEROIC";
+ Prev = "CFRSerpentLeotheras25ManHEROIC";
+ Next = "CFRSerpentMorogrim25ManHEROIC";
};
- AtlasLoot_Data["CFRSerpentMorogrimHEROIC"] = {
+ AtlasLoot_Data["CFRSerpentMorogrim25ManHEROIC"] = {
{ 1, 230098, "", "=q4=Razor-Scale Battlecloak", "=ds=#s4#", "", "22%"};
{ 2, 230079, "", "=q4=Illidari Shoulderpads", "=ds=#s3#, #a1#", "", "15%"};
{ 3, 230075, "", "=q4=Gnarled Chestpiece of the Ancients", "=ds=#s5#, #a2#", "", "19%"};
@@ -1718,11 +1858,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 230720, "", "=q4=Serpent-Coil Braid", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "20%"};
{ 20, 230082, "", "=q4=Talon of Azshara", "=ds=#h1#, #w10#", "", "20%"};
{ 21, 230080, "", "=q4=Luminescent Rod of the Naaru", "=ds=#w12#", "", "15%"};
- Prev = "CFRSerpentKarathressHEROIC";
- Next = "CFRSerpentVashjHEROIC";
+ Prev = "CFRSerpentKarathress25ManHEROIC";
+ Next = "CFRSerpentVashj25ManHEROIC";
};
- AtlasLoot_Data["CFRSerpentVashjHEROIC"] = {
+ AtlasLoot_Data["CFRSerpentVashj25ManHEROIC"] = {
{ 1, 230107, "", "=q4=Vestments of the Sea-Witch", "=ds=#s5#, #a1#", "", "13%"};
{ 2, 230111, "", "=q4=Runetotem's Mantle", "=ds=#s3#, #a2#", "", "14%"};
{ 3, 230106, "", "=q4=Belt of One-Hundred Deaths", "=ds=#s10#, #a2#", "", "12%"};
@@ -1740,10 +1880,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 230244, "", "=q4=Helm of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "63%"};
{ 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 22, 29906, "", "=q1=Vashj's Vial Remnant", "=ds=#m3#", "", "35%"};
- Prev = "CFRSerpentMorogrimHEROIC";
+ Prev = "CFRSerpentMorogrim25ManHEROIC";
};
- AtlasLoot_Data["CFRSerpentTrashHEROIC"] = {
+ AtlasLoot_Data["CFRSerpentTrash25ManHEROIC"] = {
{ 1, 230027, "", "=q4=Boots of Courage Unending", "=ds=#s12#, #a4#", "", "3%"};
{ 2, 230022, "", "=q4=Pendant of the Perilous", "=ds=#s2#", "", "3%"};
{ 3, 230620, "", "=q4=Spyglass of the Hidden Fleet", "=ds=#s14#", "", "4%"};
@@ -1769,6 +1909,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 25, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%"};
{ 27, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
};
+
--------------------
--- Gruul's Lair ---
--------------------
@@ -1810,10 +1951,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
};
--------------------------
- --- Gruul's Lair HEROIC---
+ --- Gruul's Lair HEROIC FLEX---
--------------------------
- AtlasLoot_Data["GruulsLairHighKingMaulgarHEROIC"] = {
+ AtlasLoot_Data["GruulsLairHighKingMaulgar25Man"] = {
{ 1, 228797, "", "=q4=Brute Cloak of the Ogre-Magi", "#s4#", "", "8.39%"};
{ 2, 228799, "", "=q4=Belt of Divine Inspiration", "#s10#, #a1#", "", "9.98%"};
{ 3, 228796, "", "=q4=Malefic Mask of the Shadows", "=ds=#s1#, #a2#", "", "12.93%"};
@@ -1824,10 +1965,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 229764, "", "=q4=Pauldrons of the Fallen Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "34.69%"};
{ 18, 229762, "", "=q4=Pauldrons of the Fallen Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "25.62%"};
{ 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Next = "GruulGruulHEROIC";
+ Next = "GruulGruul25Man";
};
- AtlasLoot_Data["GruulGruulHEROIC"] = {
+ AtlasLoot_Data["GruulGruul25Man"] = {
{ 1, 228804, "", "=q4=Collar of Cho'gall", "=ds=#s1#, #a1#", "", "14.96%"};
{ 2, 228803, "", "=q4=Cowl of Nature's Breath", "=ds=#s1#, #a2#", "", "14.21%"};
{ 3, 228828, "", "=q4=Gronn-Stitched Girdle", "=ds=#s10#, #a2#", "", "11.22%"};
@@ -1846,7 +1987,47 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 23, 228794, "", "=q4=Axe of the Gronn Lords", "=ds=#h2#, #w1#", "", "6.73%"};
{ 24, 228825, "", "=q4=Aldori Legacy Defender", "=ds=#w8#", "", "2.99%"};
{ 25, 228826, "", "=q4=Shuriken of Negation", "=ds=#w11#", "", "16.21%"};
- Prev = "GruulsLairHighKingMaulgarHEROIC";
+ Prev = "GruulsLairHighKingMaulgar25Man";
+ };
+
+ --------------------------
+ --- Gruul's Lair ASCENDED---
+ --------------------------
+
+ AtlasLoot_Data["GruulsLairHighKingMaulgar25ManHEROIC"] = {
+ { 1, 228797, "", "=q4=Brute Cloak of the Ogre-Magi", "#s4#", "", "8.39%"};
+ { 2, 228799, "", "=q4=Belt of Divine Inspiration", "#s10#, #a1#", "", "9.98%"};
+ { 3, 228796, "", "=q4=Malefic Mask of the Shadows", "=ds=#s1#, #a2#", "", "12.93%"};
+ { 4, 228801, "", "=q4=Maulgar's Warhelm", "=ds=#s1#, #a3#", "", "21.32%"};
+ { 5, 228795, "", "=q4=Bladespire Warbands", "=ds=#s8#, #a4#", "", "12.02%"};
+ { 6, 228800, "", "=q4=Hammer of the Naaru", "=ds=#h2#, #w6#", "", "15.87%"};
+ { 16, 229763, "", "=q4=Pauldrons of the Fallen Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "22.68%"};
+ { 17, 229764, "", "=q4=Pauldrons of the Fallen Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "34.69%"};
+ { 18, 229762, "", "=q4=Pauldrons of the Fallen Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "25.62%"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Next = "GruulGruul25ManHEROIC";
+ };
+
+ AtlasLoot_Data["GruulGruul25ManHEROIC"] = {
+ { 1, 228804, "", "=q4=Collar of Cho'gall", "=ds=#s1#, #a1#", "", "14.96%"};
+ { 2, 228803, "", "=q4=Cowl of Nature's Breath", "=ds=#s1#, #a2#", "", "14.21%"};
+ { 3, 228828, "", "=q4=Gronn-Stitched Girdle", "=ds=#s10#, #a2#", "", "11.22%"};
+ { 4, 228827, "", "=q4=Gauntlets of the Dragonslayer", "=ds=#s9#, #a3#", "", "7.48%"};
+ { 5, 228810, "", "=q4=Windshear Boots", "=ds=#s12#, #a3#", "", "10.22%"};
+ { 6, 228824, "", "=q4=Gauntlets of Martial Perfection", "=ds=#s9#, #a4#", "", "12.22%"};
+ { 7, 228822, "", "=q4=Teeth of Gruul", "=ds=#s2#", "", "11.47%"};
+ { 8, 228823, "", "=q4=Eye of Gruul", "=ds=#s14#", "", "6.73%"};
+ { 9, 228830, "", "=q4=Dragonspine Trophy", "=ds=#s14#", "", "11.72%"};
+ { 11, 31750, "", "=q1=Earthen Signet", "=ds=#m3#", "", "100%"};
+ { 16, 229766, "", "=q4=Leggings of the Fallen Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "23.69%"};
+ { 17, 229767, "", "=q4=Leggings of the Fallen Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "17.46%"};
+ { 18, 229765, "", "=q4=Leggings of the Fallen Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "30.17%"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 22, 228802, "", "=q4=Bloodmaw Magus-Blade", "=ds=#h3#, #w10#", "", "9.23%"};
+ { 23, 228794, "", "=q4=Axe of the Gronn Lords", "=ds=#h2#, #w1#", "", "6.73%"};
+ { 24, 228825, "", "=q4=Aldori Legacy Defender", "=ds=#w8#", "", "2.99%"};
+ { 25, 228826, "", "=q4=Shuriken of Negation", "=ds=#w11#", "", "16.21%"};
+ Prev = "GruulsLairHighKingMaulgar25ManHEROIC";
};
-------------------------------------------
@@ -2140,10 +2321,40 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
};
---------------------------------------------------
- --- Hellfire Citadel: Magtheridon's Lair HEROIC ---
+ --- Hellfire Citadel: Magtheridon's Lair HEROIC FLEX ---
---------------------------------------------------
- AtlasLoot_Data["HCMagtheridonHEROIC"] = {
+ AtlasLoot_Data["HCMagtheridon25Man"] = {
+ { 1, 228777, "", "=q4=Cloak of the Pit Stalker", "=ds=#s4#"};
+ { 2, 228780, "", "=q4=Soul-Eater's Handwraps", "=ds=#s9#, #a1#"};
+ { 3, 228776, "", "=q4=Liar's Tongue Gloves", "=ds=#s9#, #a2#"};
+ { 4, 228778, "", "=q4=Terror Pit Girdle", "=ds=#s10#, #a3#"};
+ { 5, 228775, "", "=q4=Thundering Greathelm", "=ds=#s1#, #a4#"};
+ { 6, 228779, "", "=q4=Girdle of the Endless Pit", "=ds=#s10#, #a4#"};
+ { 7, 228789, "", "=q4=Eye of Magtheridon", "=ds=#s14#"};
+ { 8, 228781, "", "=q4=Karaborian Talisman", "=ds=#s15#"};
+ { 10, 228774, "", "=q4=Glaive of the Pit", "=ds=#w7#"};
+ { 11, 228782, "", "=q4=Crystalheart Pulse-Staff", "=ds=#w9#"};
+ { 12, 229458, "", "=q4=Aegis of the Vindicator", "=ds=#w8#"};
+ { 13, 228783, "", "=q4=Eredar Wand of Obliteration", "=ds=#w12#"};
+ { 15, 34846, "", "=q2=Black Sack of Gems", "=ds=#e1#"};
+ { 16, 229754, "", "=q4=Chestguard of the Fallen Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#"};
+ { 17, 229753, "", "=q4=Chestguard of the Fallen Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#"};
+ { 18, 229755, "", "=q4=Chestguard of the Fallen Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 22, 6032385, "", "=q4=Magtheridon's Head", "=ds=#m2#", "", "100%"};
+ { 23, 228791, "", "=q4=Ring of the Recalcitrant", "=q1=#m4#: =ds=#s13#"};
+ { 24, 228790, "", "=q4=Naaru Lightwarden's Band", "=q1=#m4#: =ds=#s13#"};
+ { 25, 228793, "", "=q4=Band of Crimson Fury", "=q1=#m4#: =ds=#s13#"};
+ { 26, 228792, "", "=q4=A'dal's Signet of Defense", "=q1=#m4#: =ds=#s13#"};
+ { 28, 34845, "", "=q4=Pit Lord's Satchel", "=ds=#e1# #m15#"};
+ { 30, 428775, "", "=q4=Magtheridon's Glaive", "=ds=#w7#"};
+ };
+ ---------------------------------------------------
+ --- Hellfire Citadel: Magtheridon's Lair ASCENDED ---
+ ---------------------------------------------------
+
+ AtlasLoot_Data["HCMagtheridon25ManHEROIC"] = {
{ 1, 228777, "", "=q4=Cloak of the Pit Stalker", "=ds=#s4#"};
{ 2, 228780, "", "=q4=Soul-Eater's Handwraps", "=ds=#s9#, #a1#"};
{ 3, 228776, "", "=q4=Liar's Tongue Gloves", "=ds=#s9#, #a2#"};
@@ -2434,16 +2645,280 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 22545, "", "=q2=Formula: Enchant Boots - Surefooted", "=ds=#p4# (370)", "", "0.66%"};
};
+ ----------------------------
+ --- Karazhan HEROIC FLEX ---
+ ----------------------------
+ AtlasLoot_Data["KaraCharredBoneFragment25Man"] = {
+ { 1, 24152, "INV_Misc_Bone_10", "=q1=Charred Bone Fragment", "=ds=#m3#"};
+ };
+
+ AtlasLoot_Data["KaraNamed25Man"] = {
+ { 1, 0, "Ability_Hunter_Pet_Spider", "=q6="..BabbleBoss["Hyakiss the Lurker"], "=q5="..AL["Spider"]};
+ { 2, 330675, "", "=q4=Lurker's Cord", "=ds=#s10#, #a1# =q2=#m16#", "", "32.81%"};
+ { 3, 330676, "", "=q4=Lurker's Grasp", "=ds=#s10#, #a2# =q2=#m16#", "", "9.38%"};
+ { 4, 330677, "", "=q4=Lurker's Belt", "=ds=#s10#, #a3# =q2=#m16#", "", "23.44%"};
+ { 5, 330678, "", "=q4=Lurker's Girdle", "=ds=#s10#, #a4# =q2=#m16#", "", "15.62%"};
+ { 7, 0, "Ability_Hunter_Pet_Hyena", "=q6="..BabbleBoss["Rokad the Ravager"], "=q5="..AL["Darkhound"]};
+ { 8, 330684, "", "=q4=Ravager's Cuffs", "=ds=#s8#, #a1# =q2=#m16#", "", "27.78%"};
+ { 9, 330685, "", "=q4=Ravager's Wrist-Wraps", "=ds=#s8#, #a2# =q2=#m16#", "", "11.11%"};
+ { 10, 330686, "", "=q4=Ravager's Bands", "=ds=#s8#, #a3# =q2=#m16#", "", "23.33%"};
+ { 11, 330687, "", "=q4=Ravager's Bracers", "=ds=#s8#, #a4# =q2=#m16#", "", "8.89%"};
+ { 16, 0, "Ability_Hunter_Pet_Bat", "=q6="..BabbleBoss["Shadikith the Glider"], "=q5="..AL["Bat"]};
+ { 17, 330680, "", "=q4=Glider's Foot-Wraps", "=ds=#s12#, #a1# =q2=#m16#", "", "9.68%"};
+ { 18, 330681, "", "=q4=Glider's Boots", "=ds=#s12#, #a2# =q2=#m16#", "", "22.58%"};
+ { 19, 330682, "", "=q4=Glider's Sabatons", "=ds=#s12#, #a3# =q2=#m16#", "", "9.68%"};
+ { 20, 330683, "", "=q4=Glider's Greaves", "=ds=#s12#, #a4# =q2=#m16#", "", "8.60%"};
+ };
+
+ AtlasLoot_Data["KaraAttumen25Man"] = {
+ { 1, 328477, "", "=q4=Harbinger Bands", "=ds=#s8#, #a1#", "", "14.68%"};
+ { 2, 328507, "", "=q4=Handwraps of Flowing Thought", "=ds=#s9#, #a1#", "", "12.44%"};
+ { 3, 328508, "", "=q4=Gloves of Saintly Blessings", "=ds=#s9#, #a1#", "", "11.69%"};
+ { 4, 328453, "", "=q4=Bracers of the White Stag", "=ds=#s8#, #a2#", "", "12.19%"};
+ { 5, 328506, "", "=q4=Gloves of Dexterous Manipulation", "=ds=#s9#, #a2#", "", "14.68%"};
+ { 6, 328503, "", "=q4=Whirlwind Bracers", "=ds=#s8#, #a3#", "", "9.20%"};
+ { 7, 328454, "", "=q4=Stalker's War Bands", "=ds=#s8#, #a3#", "", "16.17%"};
+ { 8, 328502, "", "=q4=Vambraces of Courage", "=ds=#s8#, #a4#", "", "10.70%"};
+ { 9, 328505, "", "=q4=Gauntlets of Renewed Hope", "=ds=#s9#, #a4#", "", "10.95%"};
+ { 16, 328509, "", "=q4=Worgen Claw Necklace", "=ds=#s2#", "", "17.16%"};
+ { 17, 328510, "", "=q4=Spectral Band of Innervation", "=ds=#s13#", "", "10.70%"};
+ { 18, 328504, "", "=q4=Steelhawk Crossbow", "=ds=#w3#", "", "12.44%"};
+ { 19, 30480, "", "=q4=Fiery Warhorse's Reins", "=ds=#e12#", "", "0.25%"};
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 23, 23809, "", "=q3=Schematic: Stabilized Eternium Scope", "=ds=#p5# (375)", "", "1.00%"};
+ Next = "KaraMoroes25Man";
+ };
+
+ AtlasLoot_Data["KaraMoroes25Man"] = {
+ { 1, 328529, "", "=q4=Royal Cloak of Arathi Kings", "=ds=#s4#", "", "15.91%"};
+ { 2, 328570, "", "=q4=Shadow-Cloak of Dalaran", "=ds=#s4#", "", "12.18%"};
+ { 3, 328565, "", "=q4=Nethershard Girdle", "=ds=#s10#, #a1#", "", "14.08%"};
+ { 4, 328545, "", "=q4=Edgewalker Longboots", "=ds=#s12#, #a2#", "", "11.07%"};
+ { 5, 328567, "", "=q4=Belt of Gale Force", "=ds=#s10#, #a3#", "", "12.05%"};
+ { 6, 328566, "", "=q4=Crimson Girdle of the Indomitable", "=ds=#s10#, #a4#", "", "10.81%"};
+ { 7, 328569, "", "=q4=Boots of Valiance", "=ds=#s12#, #a4#", "", "11.33%"};
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 16, 328530, "", "=q4=Brooch of Unquenchable Fury", "=ds=#s2#", "", "12.25%"};
+ { 17, 328528, "", "=q4=Moroes' Lucky Pocket Watch", "=ds=#s14#", "", "12.05%"};
+ { 18, 328525, "", "=q4=Signet of Unshakable Faith", "=ds=#s15#", "", "14.54%"};
+ { 19, 328568, "", "=q4=Idol of the Avian Heart", "=ds=#s16#, #w14#", "", "14.08%"};
+ { 20, 328524, "", "=q4=Emerald Ripper", "=ds=#h1#, #w4#", "", "12.90%"};
+ { 22, 22559, "", "=q3=Formula: Enchant Weapon - Mongoose", "=ds=#p4# (375)", "", "1.05%"};
+ Prev = "KaraAttumen25Man";
+ Next = "KaraMaiden25Man";
+ };
+
+ AtlasLoot_Data["KaraKeannaLog25Man"] = {
+ { 1, 24492, "", "=q1=Keanna's Log", "=ds=#m3#"};
+ };
+
+ AtlasLoot_Data["KaraMaiden25Man"] = {
+ { 1, 328511, "", "=q4=Bands of Indwelling", "=ds=#s8#, #a1#", "", "12.46%"};
+ { 2, 328515, "", "=q4=Bands of Nefarious Deeds", "=ds=#s8#, #a1#", "", "13.87%"};
+ { 3, 328517, "", "=q4=Boots of Foretelling", "=ds=#s12#, #a1#", "", "16.96%"};
+ { 4, 328514, "", "=q4=Bracers of Maliciousness", "=ds=#s8#, #a2#", "", "15.90%"};
+ { 5, 328521, "", "=q4=Mitts of the Treemender", "=ds=#s9#, #a2#", "", "13.16%"};
+ { 6, 328520, "", "=q4=Gloves of Centering", "=ds=#s9#, #a3#", "", "13.16%"};
+ { 7, 328519, "", "=q4=Gloves of Quickening", "=ds=#s9#, #a3#", "", "14.22%"};
+ { 8, 328512, "", "=q4=Bracers of Justice", "=ds=#s8#, #a4#", "", "15%"};
+ { 9, 328518, "", "=q4=Iron Gauntlets of the Maiden", "=ds=#s9#, #a4#", "", "12.63%"};
+ { 16, 328516, "", "=q4=Barbed Choker of Discipline", "=ds=#s2#", "", "11.48%"};
+ { 17, 328523, "", "=q4=Totem of Healing Rains", "=ds=#s16#, #w15#", "", "14.58%"};
+ { 18, 328522, "", "=q4=Shard of the Virtuous", "=ds=#h3#, #w6#", "", "10.69%"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Prev = "KaraMoroes25Man";
+ Next = "KaraOperaEvent25Man";
+ };
+
+ AtlasLoot_Data["KaraOperaEvent25Man"] = {
+ { 1, 0, "INV_Box_01", "=q6="..AL["Shared Drops"], ""};
+ { 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 3, 328594, "", "=q4=Trial-FireTrousers", "=ds=#s11#, #a1#", "", "15.96%"};
+ { 4, 328591, "", "=q4=Earthsoul Leggings", "=ds=#s11#, #a2#", "", "12.45%"};
+ { 5, 328589, "", "=q4=Beastmaw Pauldrons", "=ds=#s3#, #a3#", "", "12.54%"};
+ { 6, 328593, "", "=q4=Eternium Greathelm", "=ds=#s1#, #a4#", "", "11.53%"};
+ { 7, 328590, "", "=q4=Ribbon of Sacrifice", "=ds=#s14#", "", "18.41%"};
+ { 8, 328592, "", "=q4=Libram of Souls Redeemed", "=ds=#s16#, #w16#", "", "8.38%"};
+ { 10, 0, "INV_Box_01", "=q6="..BabbleBoss["The Crone"], "=q5="..AL["Wizard of Oz"]};
+ { 11, 328586, "", "=q4=Wicked Witch's Hat", "=ds=#s1#, #a1#", "", "20.12%"};
+ { 12, 328585, "", "=q4=Ruby Slippers", "=ds=#s12#, #a1#", "", "25.39%"};
+ { 13, 328587, "", "=q4=Legacy", "=ds=#h2#, #w1#", "", "20.43%"};
+ { 14, 328588, "", "=q4=Blue Diamond Witchwand", "=ds=#w12#", "", "17.96%"};
+ { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Romulo & Julianne"], "=q5="..AL["Romulo & Julianne"]};
+ { 17, 328578, "", "=q4=Masquerade Gown", "=ds=#s5#, #a1#", "", "22.73%"};
+ { 18, 328579, "", "=q4=Romulo's Poison Vial", "=ds=#s14#", "", "29.54%"};
+ { 19, 328572, "", "=q4=Blade of the Unrequited", "=ds=#h1#, #w4#", "", "13.52%"};
+ { 20, 328573, "", "=q4=Despair", "=ds=#h2#, #w10#", "", "30.07%"};
+ { 24, 0, "INV_Box_01", "=q6="..BabbleBoss["The Big Bad Wolf"], "=q5="..AL["Red Riding Hood"]};
+ { 25, 328582, "", "=q4=Red Riding Hood's Cloak", "=ds=#s4#", "", "12.85%"};
+ { 26, 328583, "", "=q4=Big Bad Wolf's Head", "=ds=#s1#, #a3#", "", "16.37%"};
+ { 27, 328584, "", "=q4=Big Bad Wolf's Paw", "=ds=#h3#, #w13#", "", "16.12%"};
+ { 28, 328581, "", "=q4=Wolfslayer Sniper Rifle", "=ds=#w5#", "", "22.42%"};
+ Prev = "KaraMaiden25Man";
+ Next = "KaraNightbane25Man";
+ };
+
+ AtlasLoot_Data["KaraNightbane25Man"] = {
+ { 1, 328602, "", "=q4=Robe of the Elder Scribes", "=ds=#s5#, #a1#", "", "17.38%"};
+ { 2, 328600, "", "=q4=Stonebough Jerkin", "=ds=#s5#, #a2#", "", "13.33%"};
+ { 3, 328601, "", "=q4=Chestguard of the Conniver", "=ds=#s5#, #a2#", "", "10.24%"};
+ { 4, 328599, "", "=q4=Scaled Breastplate of Carnage", "=ds=#s5#, #a3#", "", "11.67%"};
+ { 5, 328610, "", "=q4=Ferocious Swift-Kickers", "=ds=#s12#, #a3#", "", "15.71%"};
+ { 6, 328597, "", "=q4=Panzar'Thar Breastplate", "=ds=#s5#, #a4#", "", "10.00%"};
+ { 7, 328608, "", "=q4=Ironstriders of Urgency", "=ds=#s12#, #a4#", "", "9.05%"};
+ { 9, 31751, "", "=q1=Blazing Signet", "=ds=#m3#", "", "100%"};
+ { 10, 24139, "", "=q1=Faint Arcane Essence", "=ds=#m3#", "", "100%"};
+ { 16, 328609, "", "=q4=Emberspur Talisman", "=ds=#s2#", "", "13.33%"};
+ { 17, 328603, "", "=q4=Talisman of Nightbane", "=ds=#s15#", "", "12.62%"};
+ { 18, 328604, "", "=q4=Nightstaff of the Everliving", "=ds=#w9#", "", "16.67%"};
+ { 19, 328611, "", "=q4=Dragonheart Flameshield", "=ds=#w8#", "", "13.57%"};
+ { 20, 328606, "", "=q4=Shield of Impenetrable Darkness", "=ds=#w8#", "", "12.14%"};
+ { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Prev = "KaraOperaEvent25Man";
+ Next = "KaraCurator25Man";
+ };
+
+ AtlasLoot_Data["KaraCurator25Man"] = {
+ { 1, 328612, "", "=q4=Pauldrons of the Solace-Giver", "=ds=#s3#, #a1#", "", "15.19%"};
+ { 2, 328647, "", "=q4=Forest Wind Shoulderpads", "=ds=#s3#, #a2#", "", "10.56%"};
+ { 3, 328631, "", "=q4=Dragon-Quake Shoulderguards", "=ds=#s3#, #a3#", "", "13.47%"};
+ { 4, 328621, "", "=q4=Wrynn Dynasty Greaves", "=ds=#s11#, #a4#", "", "11.85%"};
+ { 5, 328649, "", "=q4=Garona's Signet Ring", "=ds=#s13#", "", "12.07%"};
+ { 6, 328633, "", "=q4=Staff of Infinite Mysteries", "=ds=#w9#", "", "12.28%"};
+ { 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 16, 329757, "", "=q4=Gloves of the Fallen Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "29.42%"};
+ { 17, 329758, "", "=q4=Gloves of the Fallen Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "23.60%"};
+ { 18, 329756, "", "=q4=Gloves of the Fallen Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "21.66%"};
+ Prev = "KaraNightbane25Man";
+ Next = "KaraIllhoof25Man";
+ };
+
+ AtlasLoot_Data["KaraIllhoof25Man"] = {
+ { 1, 328660, "", "=q4=Gilded Thorium Cloak", "=ds=#s4#", "", "14.63%"};
+ { 2, 328653, "", "=q4=Shadowvine Cloak of Infusion", "=ds=#s4#", "", "10.45%"};
+ { 3, 328652, "", "=q4=Cincture of Will", "=ds=#s10#, #a1#", "", "10.75%"};
+ { 4, 328654, "", "=q4=Malefic Girdle", "=ds=#s10#, #a1#", "", "11.04%"};
+ { 5, 328655, "", "=q4=Cord of Nature's Sustenance", "=ds=#s10#, #a2#", "", "14.93%"};
+ { 6, 328656, "", "=q4=Girdle of the Prowler", "=ds=#s10#, #a3#", "", "17.91%"};
+ { 7, 328662, "", "=q4=Breastplate of the Lightbinder", "=ds=#s5#, #a4#", "", "17.31%"};
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 16, 328661, "", "=q4=Mender's Heart-Ring", "=ds=#s13#", "", "11.64%"};
+ { 17, 328785, "", "=q4=The Lightning Capacitor", "=ds=#s14#", "", "10.75%"};
+ { 18, 328657, "", "=q4=Fool's Bane", "=ds=#h1#, #w6#", "", "14.63%"};
+ { 19, 328658, "", "=q4=Terestian's Stranglestaff", "=ds=#w9#", "", "7.46%"};
+ { 20, 328659, "", "=q4=Xavian Stiletto", "=ds=#w11#", "", "13.43%"};
+ { 22, 22561, "", "=q3=Formula: Enchant Weapon - Soulfrost", "=ds=#p4# (375)", "", "0.30%"};
+ Prev = "KaraCurator25Man";
+ Next = "KaraAran25Man";
+ };
+
+ AtlasLoot_Data["KaraAran25Man"] = {
+ { 1, 328672, "", "=q4=Drape of the Dark Reavers", "=ds=#s4#", "", "11.70%"};
+ { 2, 328726, "", "=q4=Mantle of the Mind Flayer", "=ds=#s3#, #a1#", "", "16.03%"};
+ { 3, 328670, "", "=q4=Boots of the Infernal Coven", "=ds=#s12#, #a1#", "", "9.29%"};
+ { 4, 328663, "", "=q4=Boots of the Incorrupt", "=ds=#s12#, #a1#", "", "12.72%"};
+ { 5, 328669, "", "=q4=Rapscallion Boots", "=ds=#s12#, #a2#", "", "11.32%"};
+ { 6, 328671, "", "=q4=Steelspine Faceguard", "=ds=#s1#, #a3#", "", "12.21%"};
+ { 7, 328666, "", "=q4=Pauldrons of the Justice-Seeker", "=ds=#s3#, #a4#", "", "11.58%"};
+ { 9, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 11, 23933, "", "=q1=Medivh's Journal", "=ds=#m3#", "", "100%"};
+ { 16, 328674, "", "=q4=Saberclaw Talisman", "=ds=#s2#", "", "11.20%"};
+ { 17, 328675, "", "=q4=Shermanar Great-Ring", "=ds=#s13#", "", "10.43%"};
+ { 18, 328727, "", "=q4=Pendant of the Violet Eye", "=ds=#s14#", "", "15.39%"};
+ { 19, 328728, "", "=q4=Aran's Soothing Sapphire", "=ds=#s15#", "", "12.72%"};
+ { 20, 328673, "", "=q4=Tirisfal Wand of Ascendancy", "=ds=#w12#", "", "7.25%"};
+ { 22, 22560, "", "=q3=Formula: Enchant Weapon - Sunfire", "=ds=#p4# (375)", "", "0.76%"};
+ Prev = "KaraIllhoof25Man";
+ Next = "KaraNetherspite25Man";
+ };
+
+ AtlasLoot_Data["KaraNetherspite25Man"] = {
+ { 1, 328744, "", "=q4=Uni-Mind Headdress", "=ds=#s1#, #a1#", "", "12.91%"};
+ { 2, 328742, "", "=q4=Pantaloons of Repentence", "=ds=#s11#, #a1#", "", "10.99%"};
+ { 3, 328732, "", "=q4=Cowl of Defiance", "=ds=#s1#, #a2#", "", "17.31%"};
+ { 4, 328741, "", "=q4=Skulker's Greaves", "=ds=#s11#, #a2#", "", "15.38%"};
+ { 5, 328735, "", "=q4=Earthblood Chestguard", "=ds=#s5#, #a3#", "", "15.93%"};
+ { 6, 328740, "", "=q4=Rip-Flayer Leggings", "=ds=#s11#, #a3#", "", "10.16%"};
+ { 7, 328743, "", "=q4=Mantle of Abrahmis", "=ds=#s3#, #a4#", "", "9.34%"};
+ { 8, 328733, "", "=q4=Girdle of Truth", "=ds=#s10#, #a4#", "", "10.44%"};
+ { 16, 328731, "", "=q4=Shining Chain of the Afterworld", "=ds=#s2#", "", "15.11%"};
+ { 17, 328730, "", "=q4=Mithril Band of the Unscarred", "=ds=#s13#", "", "10.99%"};
+ { 18, 328734, "", "=q4=Jewel of Infinite Possibilities", "=ds=#s15#", "", "11.64%"};
+ { 19, 328729, "", "=q4=Spiteblade", "=ds=#h1#, #w10#", "", "6.32%"};
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Prev = "KaraAran25Man";
+ Next = "KaraChess25Man";
+ };
+
+ AtlasLoot_Data["KaraChess25Man"] = {
+ { 1, 328756, "", "=q4=Headdress of the High Potentate", "=ds=#s1#, #a1#", "", "17.98%"};
+ { 2, 328755, "", "=q4=Bladed Shoulderpads of the Merciless", "=ds=#s3#, #a2#", "", "13.55%"};
+ { 3, 328750, "", "=q4=Girdle of Treachery", "=ds=#s10#, #a2#", "", "15.02%"};
+ { 4, 328752, "", "=q4=Forestlord Striders", "=ds=#s12#, #a2#", "", "14.04%"};
+ { 5, 328751, "", "=q4=Heart-Flame Leggings", "=ds=#s11#, #a3#", "", "12.56%"};
+ { 6, 328746, "", "=q4=Fiend Slayer Boots", "=ds=#s12#, #a3#", "", "16.26%"};
+ { 7, 328748, "", "=q4=Legplates of the Innocent", "=ds=#s11#, #a4#", "", "13.79%"};
+ { 8, 328747, "", "=q4=Battlescar Boots", "=ds=#s12#, #a4#", "", "13.79%"};
+ { 16, 328745, "", "=q4=Mithril Chain of Heroism", "=ds=#s2#", "", "12.81%"};
+ { 17, 328753, "", "=q4=Ring of Recurrence", "=ds=#s13#", "", "12.56%"};
+ { 18, 328749, "", "=q4=King's Defender", "=ds=#h1#, #w10#", "", "12.07%"};
+ { 19, 328754, "", "=q4=Triptych Shield of the Ancients", "=ds=#w8#", "", "13.30%"};
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Prev = "KaraNetherspite25Man";
+ Next = "KaraPrince25Man";
+ };
+
+ AtlasLoot_Data["KaraPrince25Man"] = {
+ { 1, 328765, "", "=q4=Stainless Cloak of the Pure Hearted", "=ds=#s4#", "", "10.37%"};
+ { 2, 328766, "", "=q4=Ruby Drape of the Mysticant", "=ds=#s4#", "", "12.50%"};
+ { 3, 328764, "", "=q4=Farstrider Wildercloak", "=ds=#s4#", "", "15.96%"};
+ { 4, 328762, "", "=q4=Adornment of Stolen Souls", "=ds=#s2#", "", "9.57%"};
+ { 5, 328763, "", "=q4=Jade Ring of the Everliving", "=ds=#s13#", "", "11.84%"};
+ { 6, 328757, "", "=q4=Ring of a Thousand Marks", "=ds=#s13#", "", "12.90%"};
+ { 8, 328770, "", "=q4=Nathrezim Mindblade", "=ds=#h3#, #w4#", "", "10.64%"};
+ { 9, 328768, "", "=q4=Malchazeen", "=ds=#h1#, #w4#", "", "9.84%"};
+ { 10, 328767, "", "=q4=The Decapitator", "=ds=#h1#, #w1#", "", "15.43%"};
+ { 11, 328773, "", "=q4=Gorehowl", "=ds=#h2#, #w1#", "", "12.63%"};
+ { 12, 328771, "", "=q4=Light's Justice", "=ds=#h3#, #w6#", "", "11.17%"};
+ { 13, 328772, "", "=q4=Sunfury Bow of the Phoenix", "=ds=#w2#", "", "9.97%"};
+ { 16, 329760, "", "=q4=Helm of the Fallen Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "23.01%"};
+ { 17, 329761, "", "=q4=Helm of the Fallen Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "26.73%"};
+ { 18, 329759, "", "=q4=Helm of the Fallen Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "20.48%"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 28, 499438, "", "=q4=Smoldering Emberwyrm", "=ds=#e12#", "" };
+ Prev = "KaraChess25Man";
+ };
+
+ AtlasLoot_Data["KaraTrash25Man"] = {
+ { 1, 330642, "", "=q4=Drape of the Righteous", "=ds=#s4#", "", "0.22%"};
+ { 2, 330668, "", "=q4=Grasp of the Dead", "=ds=#s9#, #a1#", "", "0.17%"};
+ { 3, 330673, "", "=q4=Inferno Waist Cord", "=ds=#s10#, #a1#", "", "0.21%"};
+ { 4, 330644, "", "=q4=Grips of the Deftness", "=ds=#s9#, #a2#", "", "0.23%"};
+ { 5, 330674, "", "=q4=Zierhut's Lost Treads", "=ds=#s12#, #a2#", "", "0.17%"};
+ { 6, 330643, "", "=q4=Belt of the Tracker", "=ds=#s10#, #a3#", "", "0.19%"};
+ { 7, 330641, "", "=q4=Boots of Elusion", "=ds=#s12#, #a4#", "", "0.13%"};
+ { 9, 23857, "", "=q1=Legacy of the Mountain King", "=ds="};
+ { 10, 23864, "", "=q1=Torment of the Worgen", "=ds="};
+ { 11, 23862, "", "=q1=Redemption of the Fallen", "=ds="};
+ { 12, 23865, "", "=q1=Wrath of the Titans", "=ds="};
+ { 14, 21882, "", "=q1=Soul Essence", "=ds=#e8#"};
+ { 16, 330666, "", "=q4=Ritssyn's Lost Pendant", "=ds=#s2#", "", "0.18%"};
+ { 17, 330667, "", "=q4=Ring of Unrelenting Storms", "=ds=#s13#", "", "0.17%"};
+ { 19, 21903, "", "=q4=Pattern: Soulcloth Shoulders", "=ds=#p8# (375)", "", "0.74%"};
+ { 20, 21904, "", "=q4=Pattern: Soulcloth Vest", "=ds=#p8# (375)", "", "1.07%"};
+ { 21, 22545, "", "=q2=Formula: Enchant Boots - Surefooted", "=ds=#p4# (370)", "", "0.66%"};
+ };
+
----------------------
--- Karazhan HEROIC---
----------------------
- AtlasLoot_Data["KaraCharredBoneFragmentHEROIC"] = {
+ AtlasLoot_Data["KaraCharredBoneFragment25ManHEROIC"] = {
{ 1, 24152, "INV_Misc_Bone_10", "=q1=Charred Bone Fragment", "=ds=#m3#"};
};
- AtlasLoot_Data["KaraNamedHEROIC"] = {
+ AtlasLoot_Data["KaraNamed25ManHEROIC"] = {
{ 1, 0, "Ability_Hunter_Pet_Spider", "=q6="..BabbleBoss["Hyakiss the Lurker"], "=q5="..AL["Spider"]};
{ 2, 230675, "", "=q4=Lurker's Cord", "=ds=#s10#, #a1# =q2=#m16#", "", "32.81%"};
{ 3, 230676, "", "=q4=Lurker's Grasp", "=ds=#s10#, #a2# =q2=#m16#", "", "9.38%"};
@@ -2461,7 +2936,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 20, 230683, "", "=q4=Glider's Greaves", "=ds=#s12#, #a4# =q2=#m16#", "", "8.60%"};
};
- AtlasLoot_Data["KaraAttumenHEROIC"] = {
+ AtlasLoot_Data["KaraAttumen25ManHEROIC"] = {
{ 1, 228477, "", "=q4=Harbinger Bands", "=ds=#s8#, #a1#", "", "14.68%"};
{ 2, 228507, "", "=q4=Handwraps of Flowing Thought", "=ds=#s9#, #a1#", "", "12.44%"};
{ 3, 228508, "", "=q4=Gloves of Saintly Blessings", "=ds=#s9#, #a1#", "", "11.69%"};
@@ -2477,10 +2952,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 30480, "", "=q4=Fiery Warhorse's Reins", "=ds=#e12#", "", "0.25%"};
{ 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 23, 23809, "", "=q3=Schematic: Stabilized Eternium Scope", "=ds=#p5# (375)", "", "1.00%"};
- Next = "KaraMoroesHEROIC";
+ Next = "KaraMoroes25ManHEROIC";
};
- AtlasLoot_Data["KaraMoroesHEROIC"] = {
+ AtlasLoot_Data["KaraMoroes25ManHEROIC"] = {
{ 1, 228529, "", "=q4=Royal Cloak of Arathi Kings", "=ds=#s4#", "", "15.91%"};
{ 2, 228570, "", "=q4=Shadow-Cloak of Dalaran", "=ds=#s4#", "", "12.18%"};
{ 3, 228565, "", "=q4=Nethershard Girdle", "=ds=#s10#, #a1#", "", "14.08%"};
@@ -2495,15 +2970,15 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 228568, "", "=q4=Idol of the Avian Heart", "=ds=#s16#, #w14#", "", "14.08%"};
{ 20, 228524, "", "=q4=Emerald Ripper", "=ds=#h1#, #w4#", "", "12.90%"};
{ 22, 22559, "", "=q3=Formula: Enchant Weapon - Mongoose", "=ds=#p4# (375)", "", "1.05%"};
- Prev = "KaraAttumenHEROIC";
- Next = "KaraMaidenHEROIC";
+ Prev = "KaraAttumen25ManHEROIC";
+ Next = "KaraMaiden25ManHEROIC";
};
- AtlasLoot_Data["KaraKeannaLogHEROIC"] = {
+ AtlasLoot_Data["KaraKeannaLog25ManHEROIC"] = {
{ 1, 24492, "", "=q1=Keanna's Log", "=ds=#m3#"};
};
- AtlasLoot_Data["KaraMaidenHEROIC"] = {
+ AtlasLoot_Data["KaraMaiden25ManHEROIC"] = {
{ 1, 228511, "", "=q4=Bands of Indwelling", "=ds=#s8#, #a1#", "", "12.46%"};
{ 2, 228515, "", "=q4=Bands of Nefarious Deeds", "=ds=#s8#, #a1#", "", "13.87%"};
{ 3, 228517, "", "=q4=Boots of Foretelling", "=ds=#s12#, #a1#", "", "16.96%"};
@@ -2517,11 +2992,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 228523, "", "=q4=Totem of Healing Rains", "=ds=#s16#, #w15#", "", "14.58%"};
{ 18, 228522, "", "=q4=Shard of the Virtuous", "=ds=#h3#, #w6#", "", "10.69%"};
{ 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Prev = "KaraMoroesHEROIC";
- Next = "KaraOperaEventHEROIC";
+ Prev = "KaraMoroes25ManHEROIC";
+ Next = "KaraOperaEvent25ManHEROIC";
};
- AtlasLoot_Data["KaraOperaEventHEROIC"] = {
+ AtlasLoot_Data["KaraOperaEvent25ManHEROIC"] = {
{ 1, 0, "INV_Box_01", "=q6="..AL["Shared Drops"], ""};
{ 2, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 3, 228594, "", "=q4=Trial-FireTrousers", "=ds=#s11#, #a1#", "", "15.96%"};
@@ -2545,11 +3020,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 26, 228583, "", "=q4=Big Bad Wolf's Head", "=ds=#s1#, #a3#", "", "16.37%"};
{ 27, 228584, "", "=q4=Big Bad Wolf's Paw", "=ds=#h3#, #w13#", "", "16.12%"};
{ 28, 228581, "", "=q4=Wolfslayer Sniper Rifle", "=ds=#w5#", "", "22.42%"};
- Prev = "KaraMaidenHEROIC";
- Next = "KaraNightbaneHEROIC";
+ Prev = "KaraMaiden25ManHEROIC";
+ Next = "KaraNightbane25ManHEROIC";
};
- AtlasLoot_Data["KaraNightbaneHEROIC"] = {
+ AtlasLoot_Data["KaraNightbane25ManHEROIC"] = {
{ 1, 228602, "", "=q4=Robe of the Elder Scribes", "=ds=#s5#, #a1#", "", "17.38%"};
{ 2, 228600, "", "=q4=Stonebough Jerkin", "=ds=#s5#, #a2#", "", "13.33%"};
{ 3, 228601, "", "=q4=Chestguard of the Conniver", "=ds=#s5#, #a2#", "", "10.24%"};
@@ -2565,11 +3040,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 228611, "", "=q4=Dragonheart Flameshield", "=ds=#w8#", "", "13.57%"};
{ 20, 228606, "", "=q4=Shield of Impenetrable Darkness", "=ds=#w8#", "", "12.14%"};
{ 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Prev = "KaraOperaEventHEROIC";
- Next = "KaraCuratorHEROIC";
+ Prev = "KaraOperaEvent25ManHEROIC";
+ Next = "KaraCurator25ManHEROIC";
};
- AtlasLoot_Data["KaraCuratorHEROIC"] = {
+ AtlasLoot_Data["KaraCurator25ManHEROIC"] = {
{ 1, 228612, "", "=q4=Pauldrons of the Solace-Giver", "=ds=#s3#, #a1#", "", "15.19%"};
{ 2, 228647, "", "=q4=Forest Wind Shoulderpads", "=ds=#s3#, #a2#", "", "10.56%"};
{ 3, 228631, "", "=q4=Dragon-Quake Shoulderguards", "=ds=#s3#, #a3#", "", "13.47%"};
@@ -2580,11 +3055,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 229757, "", "=q4=Gloves of the Fallen Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "29.42%"};
{ 17, 229758, "", "=q4=Gloves of the Fallen Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "23.60%"};
{ 18, 229756, "", "=q4=Gloves of the Fallen Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "21.66%"};
- Prev = "KaraNightbaneHEROIC";
- Next = "KaraIllhoofHEROIC";
+ Prev = "KaraNightbane25ManHEROIC";
+ Next = "KaraIllhoof25ManHEROIC";
};
- AtlasLoot_Data["KaraIllhoofHEROIC"] = {
+ AtlasLoot_Data["KaraIllhoof25ManHEROIC"] = {
{ 1, 228660, "", "=q4=Gilded Thorium Cloak", "=ds=#s4#", "", "14.63%"};
{ 2, 228653, "", "=q4=Shadowvine Cloak of Infusion", "=ds=#s4#", "", "10.45%"};
{ 3, 228652, "", "=q4=Cincture of Will", "=ds=#s10#, #a1#", "", "10.75%"};
@@ -2599,11 +3074,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 228658, "", "=q4=Terestian's Stranglestaff", "=ds=#w9#", "", "7.46%"};
{ 20, 228659, "", "=q4=Xavian Stiletto", "=ds=#w11#", "", "13.43%"};
{ 22, 22561, "", "=q3=Formula: Enchant Weapon - Soulfrost", "=ds=#p4# (375)", "", "0.30%"};
- Prev = "KaraCuratorHEROIC";
- Next = "KaraAranHEROIC";
+ Prev = "KaraCurator25ManHEROIC";
+ Next = "KaraAran25ManHEROIC";
};
- AtlasLoot_Data["KaraAranHEROIC"] = {
+ AtlasLoot_Data["KaraAran25ManHEROIC"] = {
{ 1, 228672, "", "=q4=Drape of the Dark Reavers", "=ds=#s4#", "", "11.70%"};
{ 2, 228726, "", "=q4=Mantle of the Mind Flayer", "=ds=#s3#, #a1#", "", "16.03%"};
{ 3, 228670, "", "=q4=Boots of the Infernal Coven", "=ds=#s12#, #a1#", "", "9.29%"};
@@ -2619,11 +3094,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 228728, "", "=q4=Aran's Soothing Sapphire", "=ds=#s15#", "", "12.72%"};
{ 20, 228673, "", "=q4=Tirisfal Wand of Ascendancy", "=ds=#w12#", "", "7.25%"};
{ 22, 22560, "", "=q3=Formula: Enchant Weapon - Sunfire", "=ds=#p4# (375)", "", "0.76%"};
- Prev = "KaraIllhoofHEROIC";
- Next = "KaraNetherspiteHEROIC";
+ Prev = "KaraIllhoof25ManHEROIC";
+ Next = "KaraNetherspite25ManHEROIC";
};
- AtlasLoot_Data["KaraNetherspiteHEROIC"] = {
+ AtlasLoot_Data["KaraNetherspite25ManHEROIC"] = {
{ 1, 228744, "", "=q4=Uni-Mind Headdress", "=ds=#s1#, #a1#", "", "12.91%"};
{ 2, 228742, "", "=q4=Pantaloons of Repentence", "=ds=#s11#, #a1#", "", "10.99%"};
{ 3, 228732, "", "=q4=Cowl of Defiance", "=ds=#s1#, #a2#", "", "17.31%"};
@@ -2637,11 +3112,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 228734, "", "=q4=Jewel of Infinite Possibilities", "=ds=#s15#", "", "11.64%"};
{ 19, 228729, "", "=q4=Spiteblade", "=ds=#h1#, #w10#", "", "6.32%"};
{ 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Prev = "KaraAranHEROIC";
- Next = "KaraChessHEROIC";
+ Prev = "KaraAran25ManHEROIC";
+ Next = "KaraChess25ManHEROIC";
};
- AtlasLoot_Data["KaraChessHEROIC"] = {
+ AtlasLoot_Data["KaraChess25ManHEROIC"] = {
{ 1, 228756, "", "=q4=Headdress of the High Potentate", "=ds=#s1#, #a1#", "", "17.98%"};
{ 2, 228755, "", "=q4=Bladed Shoulderpads of the Merciless", "=ds=#s3#, #a2#", "", "13.55%"};
{ 3, 228750, "", "=q4=Girdle of Treachery", "=ds=#s10#, #a2#", "", "15.02%"};
@@ -2655,11 +3130,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 228749, "", "=q4=King's Defender", "=ds=#h1#, #w10#", "", "12.07%"};
{ 19, 228754, "", "=q4=Triptych Shield of the Ancients", "=ds=#w8#", "", "13.30%"};
{ 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Prev = "KaraNetherspiteHEROIC";
- Next = "KaraPrinceHEROIC";
+ Prev = "KaraNetherspite25ManHEROIC";
+ Next = "KaraPrince25ManHEROIC";
};
- AtlasLoot_Data["KaraPrinceHEROIC"] = {
+ AtlasLoot_Data["KaraPrince25ManHEROIC"] = {
{ 1, 228765, "", "=q4=Stainless Cloak of the Pure Hearted", "=ds=#s4#", "", "10.37%"};
{ 2, 228766, "", "=q4=Ruby Drape of the Mysticant", "=ds=#s4#", "", "12.50%"};
{ 3, 228764, "", "=q4=Farstrider Wildercloak", "=ds=#s4#", "", "15.96%"};
@@ -2677,10 +3152,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 229759, "", "=q4=Helm of the Fallen Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "20.48%"};
{ 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 28, 499438, "", "=q4=Smoldering Emberwyrm", "=ds=#e12#", "" };
- Prev = "KaraChessHEROIC";
+ Prev = "KaraChess25ManHEROIC";
};
- AtlasLoot_Data["KaraTrashHEROIC"] = {
+ AtlasLoot_Data["KaraTrash25ManHEROIC"] = {
{ 1, 230642, "", "=q4=Drape of the Righteous", "=ds=#s4#", "", "0.22%"};
{ 2, 230668, "", "=q4=Grasp of the Dead", "=ds=#s9#, #a1#", "", "0.17%"};
{ 3, 230673, "", "=q4=Inferno Waist Cord", "=ds=#s10#, #a1#", "", "0.21%"};
@@ -2699,6 +3174,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 20, 21904, "", "=q4=Pattern: Soulcloth Vest", "=ds=#p8# (375)", "", "1.07%"};
{ 21, 22545, "", "=q2=Formula: Enchant Boots - Surefooted", "=ds=#p4# (370)", "", "0.66%"};
};
+
----------------------------------------
--- Sunwell Isle: Magister's Terrace ---
----------------------------------------
@@ -3610,11 +4086,134 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 8, 30319, "", "=q5=Nether Spike", "=ds=#w17#"};
};
- -----------------------------------
- --- Tempest Keep: The Eye HEROIC---
- -----------------------------------
+ -----------------------------------
+ --- Tempest Keep: The Eye HEROIC FLEX---
+ -----------------------------------
- AtlasLoot_Data["TKEyeAlarHEROIC"] = {
+ AtlasLoot_Data["TKEyeAlar25Man"] = {
+ { 1, 329925, "", "=q4=Phoenix-Wing Cloak", "=ds=#s4#", "", "23%"};
+ { 2, 329918, "", "=q4=Mindstorm Wristbands", "=ds=#s8#, #a1#", "", "22%"};
+ { 3, 329947, "", "=q4=Gloves of the Searing Grip", "=ds=#s9#, #a2#", "", "23%"};
+ { 4, 329921, "", "=q4=Fire Crest Breastplate", "=ds=#s5#, #a3#", "", "20%"};
+ { 5, 329922, "", "=q4=Band of Al'Ar", "=ds=#s13#", "", "21%"};
+ { 6, 329920, "", "=q4=Phoenix-Ring of Rebirth", "=ds=#s13#", "", "21%"};
+ { 7, 330448, "", "=q4=Talon of Al'ar", "=ds=#s14#, =q1=#m1# =ds=#c2#", "", "22%"};
+ { 8, 330447, "", "=q4=Tome of Fiery Redemption", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "21%"};
+ { 9, 329923, "", "=q4=Talisman of the Sun King", "=ds=#s15#", "", "23%"};
+ { 16, 332944, "", "=q4=Talon of the Phoenix", "=ds=#h3#, #w13#", "", "12%"};
+ { 17, 329948, "", "=q4=Claw of the Phoenix", "=ds=#h4#, #w13#", "", "10%"};
+ { 18, 329924, "", "=q4=Netherbane", "=ds=#h1#, #w1#", "", "21%"};
+ { 19, 329949, "", "=q4=Arcanite Steam-Pistol", "=ds=#w5#", "", "22%"};
+ { 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Next = "TKEyeVoidReaver25Man";
+ };
+
+ AtlasLoot_Data["TKEyeVoidReaver25Man"] = {
+ { 1, 329986, "", "=q4=Cowl of the Grand Engineer", "=ds=#s1#, #a1#", "", "13%"};
+ { 2, 329984, "", "=q4=Girdle of Zaetar", "=ds=#s10#, #a2#", "", "13%"};
+ { 3, 329985, "", "=q4=Void Reaver Greaves", "=ds=#s11#, #a3#", "", "14%"};
+ { 4, 329983, "", "=q4=Fel-Steel Warhelm", "=ds=#s1#, #a4#", "", "12%"};
+ { 5, 332515, "", "=q4=Wristgaurds of Determination", "=ds=#s8#, #a4#", "", "13%"};
+ { 6, 330619, "", "=q4=Fel Reaver's Piston", "=ds=#s14#", "", "13%"};
+ { 7, 330450, "", "=q4=Warp-Spring Coil", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "12%"};
+ { 16, 330248, "", "=q4=Pauldrons of the Vanquished Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "61%"};
+ { 17, 330249, "", "=q4=Pauldrons of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "62%"};
+ { 18, 330250, "", "=q4=Pauldrons of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "61%"};
+ { 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Prev = "TKEyeAlar25Man";
+ Next = "TKEyeSolarian25Man";
+ };
+
+ AtlasLoot_Data["TKEyeSolarian25Man"] = {
+ { 1, 329977, "", "=q4=Star-Soul Breeches", "=ds=#s11#, #a1#", "", "19%"};
+ { 2, 329972, "", "=q4=Trousers of the Astromancer", "=ds=#s11#, #a1#", "", "19%"};
+ { 3, 329966, "", "=q4=Vambraces of Ending", "=ds=#s8#, #a2#", "", "23%"};
+ { 4, 329976, "", "=q4=Worldstorm Gauntlets", "=ds=#s9#, #a3#", "", "18%"};
+ { 5, 329951, "", "=q4=Star-Strider Boots", "=ds=#s12#, #a3#", "", "23%"};
+ { 6, 329965, "", "=q4=Girdle of the Righteous Path", "=ds=#s10#, #a4#", "", "21%"};
+ { 7, 329950, "", "=q4=Greaves of the Bloodwarder", "=ds=#s11#, #a4#", "", "19%"};
+ { 8, 332267, "", "=q4=Boots of the Resilient", "=ds=#s12#, #a4#", "", "17%"};
+ { 16, 330446, "", "=q4=Solarian's Sapphire", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "21%"};
+ { 17, 330449, "", "=q4=Void Star Talisman", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "22%"};
+ { 18, 329962, "", "=q4=Heartrazor", "=ds=#h1#, #w4#", "", "23%"};
+ { 19, 329981, "", "=q4=Etherium Life-Staff", "=ds=#w9#", "", "21%"};
+ { 20, 329982, "", "=q4=Wand of the Forgotten Star", "=ds=#w12#", "", "18%"};
+ { 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ Prev = "TKEyeVoidReaver25Man";
+ Next = "TKEyeKaelthas25Man";
+ };
+
+ AtlasLoot_Data["TKEyeKaelthas25Man"] = {
+ { 1, 329992, "", "=q4=Royal Cloak of the Sunstriders", "=ds=#s4#", "", "14%"};
+ { 2, 329989, "", "=q4=Sunshower Light Cloak", "=ds=#s4#", "", "12%"};
+ { 3, 329994, "", "=q4=Thalassian Wildercloak", "=ds=#s4#", "", "14%"};
+ { 4, 329990, "", "=q4=Crown of the Sun", "=ds=#s1#, #a1#", "", "14%"};
+ { 5, 329987, "", "=q4=Gauntlets of the Sun-King", "=ds=#s9#, #a1#", "", "14%"};
+ { 6, 329995, "", "=q4=Leggings of Murderous Intent", "=ds=#s11#, #a2#", "", "15%"};
+ { 7, 329991, "", "=q4=Sunhawk Leggings", "=ds=#s11#, #a3#", "", "13%"};
+ { 8, 329998, "", "=q4=Royal Gauntlets of Silvermoon", "=ds=#s9#, #a4#", "", "12%"};
+ { 9, 329997, "", "=q4=Band of the Ranger-General", "=ds=#s13#", "", "14%"};
+ { 10, 329993, "", "=q4=Twinblade of the Phoenix", "=ds=#h2#, #w10#", "", "12%"};
+ { 11, 329996, "", "=q4=Rod of the Sun King", "=ds=#h1#, #w6#", "", "15%"};
+ { 12, 329988, "", "=q4=The Nexus Key", "=ds=#w9#", "", "14%"};
+ { 14, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
+ { 16, 330236, "", "=q4=Chestguard of the Vanquished Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "69%"};
+ { 17, 330237, "", "=q4=Chestguard of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "68%"};
+ { 18, 330238, "", "=q4=Chestguard of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "66%"};
+ { 20, 32458, "", "=q4=Ashes of Al'ar", "=ds=#e12#", "", "2%"};
+ { 22, 332405, "", "=q4=Verdant Sphere", "=ds=#m2#", "", "100%"};
+ { 23, 330018, "", "=q4=Lord Sanguinar's Claim", "=q1=#m4#: =ds=#s2#"};
+ { 24, 330017, "", "=q4=Telonicus's Pendant of Mayhem", "=q1=#m4#: =ds=#s2#"};
+ { 25, 330007, "", "=q4=The Darkener's Grasp", "=q1=#m4#: =ds=#s2#"};
+ { 26, 330015, "", "=q4=The Sun King's Talisman", "=q1=#m4#: =ds=#s2#"};
+ { 28, 29905, "", "=q1=Kael's Vial Remnant", "=ds=#m3#", "", "37%"};
+ Prev = "TKEyeSolarian25Man";
+ };
+
+ AtlasLoot_Data["TKEyeTrash25Man"] = {
+ { 1, 330024, "", "=q4=Mantle of the Elven Kings", "=ds=#s3#, #a1#", "", "3%"};
+ { 2, 330020, "", "=q4=Fire-Cord of the Magus", "=ds=#s10#, #a1#", "", "2%"};
+ { 3, 330029, "", "=q4=Bark-Gloves of Ancient Wisdom", "=ds=#s9#, #a2#", "", "2%"};
+ { 4, 330026, "", "=q4=Bands of the Celestial Archer", "=ds=#s8#, #a3#", "", "2%"};
+ { 5, 330030, "", "=q4=Girdle of Fallen Stars", "=ds=#s10#, #a3#", "", "2%"};
+ { 6, 330028, "", "=q4=Seventh Ring of the Tirisfalen", "=ds=#s13#", "", "2%"};
+ { 8, 30324, "", "=q4=Plans: Red Havoc Boots", "=ds=#p2# (375)", "", "1%"};
+ { 9, 30322, "", "=q4=Plans: Red Belt of Battle", "=ds=#p2# (375)", "", "2%"};
+ { 10, 30323, "", "=q4=Plans: Boots of the Protector", "=ds=#p2# (375)", "", "2%"};
+ { 11, 30321, "", "=q4=Plans: Belt of the Guardian", "=ds=#p2# (375)", "", "2%"};
+ { 12, 30280, "", "=q4=Pattern: Belt of Blasting", "=ds=#p8# (375)", "", "1%"};
+ { 13, 30282, "", "=q4=Pattern: Boots of Blasting", "=ds=#p8# (375)", "", "1%"};
+ { 14, 30283, "", "=q4=Pattern: Boots of the Long Road", "=ds=#p8# (375)", "", "2%"};
+ { 15, 30281, "", "=q4=Pattern: Belt of the Long Road", "=ds=#p8# (375)", "", "1%"};
+ { 16, 30308, "", "=q4=Pattern: Hurricane Boots", "=ds=#p7# (375)", "", "1%"};
+ { 17, 30304, "", "=q4=Pattern: Monsoon Belt", "=ds=#p7# (375)", "", "1%"};
+ { 18, 30305, "", "=q4=Pattern: Boots of Natural Grace", "=ds=#p7# (375)", "", "2%"};
+ { 19, 30307, "", "=q4=Pattern: Boots of the Crimson Hawk", "=ds=#p7# (375)", "", "1%"};
+ { 20, 30306, "", "=q4=Pattern: Boots of Utter Darkness", "=ds=#p7# (375)", "", "2%"};
+ { 21, 30301, "", "=q4=Pattern: Belt of Natural Power", "=ds=#p7# (375)", "", "1%"};
+ { 22, 30303, "", "=q4=Pattern: Belt of the Black Eagle", "=ds=#p7# (375)", "", "1%"};
+ { 23, 30302, "", "=q4=Pattern: Belt of Deep Shadow", "=ds=#p7# (375)", "", "1%"};
+ { 25, 30183, "", "=q4=Nether Vortex", "=ds=#e8#", "", "75%"};
+ { 27, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
+ };
+
+ AtlasLoot_Data["TKEyeLegendaries25Man"] = {
+ { 1, 330312, "", "=q5=Infinity Blade", "=ds=#h1#, #w4#"};
+ { 2, 330311, "", "=q5=Warp Slicer", "=ds=#h1#, #w10#"};
+ { 3, 330317, "", "=q5=Cosmic Infuser", "=ds=#h3#, #w6#"};
+ { 4, 330316, "", "=q5=Devastation", "=ds=#h2#, #w1#"};
+ { 5, 330313, "", "=q5=Staff of Disintegration", "=ds=#w9#"};
+ { 6, 330314, "", "=q5=Phaseshift Bulwark", "=ds=#w8#"};
+ { 7, 330318, "", "=q5=Netherstrand Longbow", "=ds=#w2#, =q1=#m1# =ds=#c2#"};
+ { 8, 330319, "", "=q5=Nether Spike", "=ds=#w17#"};
+ };
+
+
+ -----------------------------------
+ --- Tempest Keep: The Eye ASCENDED---
+ -----------------------------------
+
+ AtlasLoot_Data["TKEyeAlar25ManHEROIC"] = {
{ 1, 229925, "", "=q4=Phoenix-Wing Cloak", "=ds=#s4#", "", "23%"};
{ 2, 229918, "", "=q4=Mindstorm Wristbands", "=ds=#s8#, #a1#", "", "22%"};
{ 3, 229947, "", "=q4=Gloves of the Searing Grip", "=ds=#s9#, #a2#", "", "23%"};
@@ -3629,10 +4228,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 229924, "", "=q4=Netherbane", "=ds=#h1#, #w1#", "", "21%"};
{ 19, 229949, "", "=q4=Arcanite Steam-Pistol", "=ds=#w5#", "", "22%"};
{ 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Next = "TKEyeVoidReaverHEROIC";
+ Next = "TKEyeVoidReaver25ManHEROIC";
};
- AtlasLoot_Data["TKEyeVoidReaverHEROIC"] = {
+ AtlasLoot_Data["TKEyeVoidReaver25ManHEROIC"] = {
{ 1, 229986, "", "=q4=Cowl of the Grand Engineer", "=ds=#s1#, #a1#", "", "13%"};
{ 2, 229984, "", "=q4=Girdle of Zaetar", "=ds=#s10#, #a2#", "", "13%"};
{ 3, 229985, "", "=q4=Void Reaver Greaves", "=ds=#s11#, #a3#", "", "14%"};
@@ -3644,11 +4243,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 230249, "", "=q4=Pauldrons of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "62%"};
{ 18, 230250, "", "=q4=Pauldrons of the Vanquished Hero", "=q1=#m1# =ds=#c2#, #c3#, #c8#", "", "61%"};
{ 20, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Prev = "TKEyeAlarHEROIC";
- Next = "TKEyeSolarianHEROIC";
+ Prev = "TKEyeAlar25ManHEROIC";
+ Next = "TKEyeSolarian25ManHEROIC";
};
- AtlasLoot_Data["TKEyeSolarianHEROIC"] = {
+ AtlasLoot_Data["TKEyeSolarian25ManHEROIC"] = {
{ 1, 229977, "", "=q4=Star-Soul Breeches", "=ds=#s11#, #a1#", "", "19%"};
{ 2, 229972, "", "=q4=Trousers of the Astromancer", "=ds=#s11#, #a1#", "", "19%"};
{ 3, 229966, "", "=q4=Vambraces of Ending", "=ds=#s8#, #a2#", "", "23%"};
@@ -3663,11 +4262,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 229981, "", "=q4=Etherium Life-Staff", "=ds=#w9#", "", "21%"};
{ 20, 229982, "", "=q4=Wand of the Forgotten Star", "=ds=#w12#", "", "18%"};
{ 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
- Prev = "TKEyeVoidReaverHEROIC";
- Next = "TKEyeKaelthasHEROIC";
+ Prev = "TKEyeVoidReaver25ManHEROIC";
+ Next = "TKEyeKaelthas25ManHEROIC";
};
- AtlasLoot_Data["TKEyeKaelthasHEROIC"] = {
+ AtlasLoot_Data["TKEyeKaelthas25ManHEROIC"] = {
{ 1, 229992, "", "=q4=Royal Cloak of the Sunstriders", "=ds=#s4#", "", "14%"};
{ 2, 229989, "", "=q4=Sunshower Light Cloak", "=ds=#s4#", "", "12%"};
{ 3, 229994, "", "=q4=Thalassian Wildercloak", "=ds=#s4#", "", "14%"};
@@ -3691,10 +4290,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 25, 230007, "", "=q4=The Darkener's Grasp", "=q1=#m4#: =ds=#s2#"};
{ 26, 230015, "", "=q4=The Sun King's Talisman", "=q1=#m4#: =ds=#s2#"};
{ 28, 29905, "", "=q1=Kael's Vial Remnant", "=ds=#m3#", "", "37%"};
- Prev = "TKEyeSolarianHEROIC";
+ Prev = "TKEyeSolarian25ManHEROIC";
};
- AtlasLoot_Data["TKEyeTrashHEROIC"] = {
+ AtlasLoot_Data["TKEyeTrash25ManHEROIC"] = {
{ 1, 230024, "", "=q4=Mantle of the Elven Kings", "=ds=#s3#, #a1#", "", "3%"};
{ 2, 230020, "", "=q4=Fire-Cord of the Magus", "=ds=#s10#, #a1#", "", "2%"};
{ 3, 230029, "", "=q4=Bark-Gloves of Ancient Wisdom", "=ds=#s9#, #a2#", "", "2%"};
@@ -3721,7 +4320,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 27, 32897, "", "=q2=Mark of the Illidari", "=ds=#m20#", "", "27%"};
};
- AtlasLoot_Data["TKEyeLegendariesHEROIC"] = {
+ AtlasLoot_Data["TKEyeLegendaries25ManHEROIC"] = {
{ 1, 230312, "", "=q5=Infinity Blade", "=ds=#h1#, #w4#"};
{ 2, 230311, "", "=q5=Warp Slicer", "=ds=#h1#, #w10#"};
{ 3, 230317, "", "=q5=Cosmic Infuser", "=ds=#h3#, #w6#"};
@@ -3731,6 +4330,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 230318, "", "=q5=Netherstrand Longbow", "=ds=#w2#, =q1=#m1# =ds=#c2#"};
{ 8, 230319, "", "=q5=Nether Spike", "=ds=#w17#"};
};
+
----------------
--- Zul'Aman ---
----------------
@@ -6320,9 +6920,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
Back = "DS3SET";
};
- --------------
- --- Tier 4 ---
- --------------
+ --------------
+ --- Tier 4 ---
+ --------------
AtlasLoot_Data["T4DruidFeral"] = {
{ 1, 0, "Ability_Druid_Maul", "=q6=#t4s1_1#", "=ec1=#m21# - Fallen Defender"};
@@ -6331,12 +6931,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29096, "", "=q4=Breastplate of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29097, "", "=q4=Gauntlets of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29099, "", "=q4=Greaves of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Ability_Druid_Maul", "=q6=#t4s1_1#", "=ec1=#m21# - Fallen Defender"};
- { 17, 229098, "", "=q4=Stag-Helm of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229100, "", "=q4=Mantle of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229096, "", "=q4=Breastplate of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229097, "", "=q4=Gauntlets of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229099, "", "=q4=Greaves of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5DruidFeral";
};
@@ -6348,12 +6942,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29087, "", "=q4=Chestguard of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29090, "", "=q4=Handguards of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29088, "", "=q4=Legguards of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#t4s1_2#", "=ec1=#m21# - Fallen Defender"};
- { 17, 229086, "", "=q4=Crown of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229089, "", "=q4=Shoulderguards of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229087, "", "=q4=Chestguard of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229090, "", "=q4=Handguards of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229088, "", "=q4=Legguards of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5DruidRestoration";
};
@@ -6365,12 +6953,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29091, "", "=q4=Chestpiece of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29092, "", "=q4=Gloves of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29094, "", "=q4=Britches of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t4s1_3#", "=ec1=#m21# - Fallen Defender"};
- { 17, 229093, "", "=q4=Antlers of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229095, "", "=q4=Pauldrons of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229091, "", "=q4=Chestpiece of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229092, "", "=q4=Gloves of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229094, "", "=q4=Britches of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5DruidBalance";
};
@@ -6382,12 +6964,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29082, "", "=q4=Demon Stalker Harness", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29085, "", "=q4=Demon Stalker Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29083, "", "=q4=Demon Stalker Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t4s2#", "=ec1=#m21# - Fallen Hero"};
- { 17, 229081, "", "=q4=Demon Stalker Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229084, "", "=q4=Demon Stalker Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229082, "", "=q4=Demon Stalker Harness", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229085, "", "=q4=Demon Stalker Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229083, "", "=q4=Demon Stalker Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5Hunter";
};
@@ -6399,12 +6975,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29077, "", "=q4=Vestments of the Aldor", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29080, "", "=q4=Gloves of the Aldor", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29078, "", "=q4=Legwraps of the Aldor", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#t4s3#", "=ec1=#m21# - Fallen Hero"};
- { 17, 229076, "", "=q4=Collar of the Aldor", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229079, "", "=q4=Pauldrons of the Aldor", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229077, "", "=q4=Vestments of the Aldor", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229080, "", "=q4=Gloves of the Aldor", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229078, "", "=q4=Legwraps of the Aldor", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5Mage";
};
@@ -6416,12 +6986,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29066, "", "=q4=Justicar Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29067, "", "=q4=Justicar Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29069, "", "=q4=Justicar Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t4s4_1#", "=ec1=#m21# - Fallen Champion"};
- { 17, 229068, "", "=q4=Justicar Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229070, "", "=q4=Justicar Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229066, "", "=q4=Justicar Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229067, "", "=q4=Justicar Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229069, "", "=q4=Justicar Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5PaladinProtection";
};
@@ -6433,12 +6997,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29071, "", "=q4=Justicar Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29072, "", "=q4=Justicar Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29074, "", "=q4=Justicar Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t4s4_2#", "=ec1=#m21# - Fallen Champion"};
- { 17, 229073, "", "=q4=Justicar Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229075, "", "=q4=Justicar Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229071, "", "=q4=Justicar Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229072, "", "=q4=Justicar Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229074, "", "=q4=Justicar Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5PaladinRetribution";
};
@@ -6450,12 +7008,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29062, "", "=q4=Justicar Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29065, "", "=q4=Justicar Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29063, "", "=q4=Justicar Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t4s4_3#", "=ec1=#m21# - Fallen Champion"};
- { 17, 229061, "", "=q4=Justicar Diadem", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229064, "", "=q4=Justicar Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229062, "", "=q4=Justicar Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229065, "", "=q4=Justicar Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229063, "", "=q4=Justicar Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5PaladinHoly";
};
@@ -6467,12 +7019,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29050, "", "=q4=Robes of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29055, "", "=q4=Handwraps of the Incarnate", "The Curator ("..BabbleZone["Karazhan"]..")"};
{ 6, 29053, "", "=q4=Trousers of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t4s5_1#", "=ec1=#m21# - Fallen Defender"};
- { 17, 229049, "", "=q4=Light-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229054, "", "=q4=Light-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229050, "", "=q4=Robes of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229055, "", "=q4=Handwraps of the Incarnate", "The Curator ("..BabbleZone["Karazhan"]..")"};
- { 21, 229053, "", "=q4=Trousers of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5PriestHoly";
};
@@ -6484,12 +7030,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29056, "", "=q4=Shroud of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29057, "", "=q4=Gloves of the Incarnate", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29059, "", "=q4=Leggings of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t4s5_2#", "=ec1=#m21# - Fallen Defender"};
- { 17, 229058, "", "=q4=Soul-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229060, "", "=q4=Soul-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229056, "", "=q4=Shroud of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229057, "", "=q4=Gloves of the Incarnate", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229059, "", "=q4=Leggings of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5PriestShadow";
};
@@ -6501,12 +7041,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29045, "", "=q4=Netherblade Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29048, "", "=q4=Netherblade Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29046, "", "=q4=Netherblade Breeches", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Ability_BackStab", "=q6=#t4s6#", "=ec1=#m21# - Fallen Champion"};
- { 17, 229044, "", "=q4=Netherblade Facemask", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229047, "", "=q4=Netherblade Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229045, "", "=q4=Netherblade Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229048, "", "=q4=Netherblade Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229046, "", "=q4=Netherblade Breeches", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5Rogue";
};
@@ -6518,12 +7052,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29038, "", "=q4=Cyclone Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29039, "", "=q4=Cyclone Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29042, "", "=q4=Cyclone War-Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t4s7_1#", "=ec1=#m21# - Fallen Champion"};
- { 17, 229040, "", "=q4=Cyclone Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229043, "", "=q4=Cyclone Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229038, "", "=q4=Cyclone Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229039, "", "=q4=Cyclone Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229042, "", "=q4=Cyclone War-Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5ShamanEnhancement";
};
@@ -6535,12 +7063,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29029, "", "=q4=Cyclone Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29032, "", "=q4=Cyclone Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29030, "", "=q4=Cyclone Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t4s7_2#", "=ec1=#m21# - Fallen Champion"};
- { 17, 229028, "", "=q4=Cyclone Headdress", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229031, "", "=q4=Cyclone Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229029, "", "=q4=Cyclone Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229032, "", "=q4=Cyclone Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229030, "", "=q4=Cyclone Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5ShamanRestoration";
};
@@ -6552,12 +7074,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29033, "", "=q4=Cyclone Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29034, "", "=q4=Cyclone Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29036, "", "=q4=Cyclone Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Nature_Lightning", "=q6=#t4s7_3#", "=ec1=#m21# - Fallen Champion"};
- { 17, 229035, "", "=q4=Cyclone Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229037, "", "=q4=Cyclone Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229033, "", "=q4=Cyclone Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229034, "", "=q4=Cyclone Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229036, "", "=q4=Cyclone Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5ShamanElemental";
};
@@ -6569,12 +7085,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 28964, "", "=q4=Voidheart Robe", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 28968, "", "=q4=Voidheart Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 28966, "", "=q4=Voidheart Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t4s8#", "=ec1=#m21# - Fallen Hero"};
- { 17, 228963, "", "=q4=Voidheart Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 228967, "", "=q4=Voidheart Mantle", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 228964, "", "=q4=Voidheart Robe", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 228968, "", "=q4=Voidheart Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 228966, "", "=q4=Voidheart Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5Warlock";
};
@@ -6592,18 +7102,6 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 11, 14985, "", "=q4=Warbringer Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
{ 12, 14989, "", "=q4=Warbringer Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 13, 14987, "", "=q4=Warbringer Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "INV_Shield_05", "=q6=#t4s9_1#", "=ec1=#m21# - Fallen Defender"};
- { 17, 229011, "", "=q4=Warbringer Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229016, "", "=q4=Warbringer Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229012, "", "=q4=Warbringer Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229017, "", "=q4=Warbringer Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229015, "", "=q4=Warbringer Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 23, 0, "INV_Shield_05", "=q6=#t4s9_1#", "=ec1=#m21# - Fallen Defender"};
- { 24, 214984, "", "=q4=Warbringer Helmet", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 25, 214988, "", "=q4=Warbringer Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
- { 26, 214985, "", "=q4=Warbringer Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
- { 27, 214989, "", "=q4=Warbringer Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 28, 214987, "", "=q4=Warbringer Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5WarriorProtection";
};
@@ -6615,337 +7113,1049 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 29019, "", "=q4=Warbringer Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
{ 5, 29020, "", "=q4=Warbringer Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
{ 6, 29022, "", "=q4=Warbringer Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t4s9_2#", "=ec1=#m21# - Fallen Defender"};
- { 17, 229021, "", "=q4=Warbringer Battle-Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
- { 18, 229023, "", "=q4=Warbringer Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
- { 19, 229019, "", "=q4=Warbringer Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
- { 20, 229020, "", "=q4=Warbringer Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
- { 21, 229022, "", "=q4=Warbringer Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
Back = "T4SET";
Next = "T5WarriorFury";
};
- --------------
- --- Tier 5 ---
- --------------
+ --------------
+ --- Tier 4 FLEX HEROIC ---
+ --------------
-AtlasLoot_Data["T5DruidFeral"] = {
- { 1, 0, "Ability_Druid_Maul", "=q6=#t5s1_1#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30230, "", "=q4=Nordrassil Feral-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30222, "", "=q4=Nordrassil Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30223, "", "=q4=Nordrassil Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30229, "", "=q4=Nordrassil Feral-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Ability_Druid_Maul", "=q6=#t5s1_1#", "=ec1=#m22# - Vanquished Defender"};
- { 17, 230228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230230, "", "=q4=Nordrassil Feral-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230222, "", "=q4=Nordrassil Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230223, "", "=q4=Nordrassil Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230229, "", "=q4=Nordrassil Feral-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4DruidFeral";
- Next = "T6DruidFeral";
-};
+ AtlasLoot_Data["T4DruidFeral25Man"] = {
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t4s1_1#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 329098, "", "=q4=Stag-Helm of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329100, "", "=q4=Mantle of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329096, "", "=q4=Breastplate of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329097, "", "=q4=Gauntlets of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329099, "", "=q4=Greaves of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5DruidFeral25Man";
+ };
-AtlasLoot_Data["T5DruidRestoration"] = {
- { 1, 0, "Spell_Nature_Regeneration", "=q6=#t5s1_2#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30221, "", "=q4=Nordrassil Life-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30216, "", "=q4=Nordrassil Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30217, "", "=q4=Nordrassil Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30220, "", "=q4=Nordrassil Life-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Nature_Regeneration", "=q6=#t5s1_2#", "=ec1=#m22# - Vanquished Defender"};
- { 17, 230219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230221, "", "=q4=Nordrassil Life-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230216, "", "=q4=Nordrassil Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230217, "", "=q4=Nordrassil Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230220, "", "=q4=Nordrassil Life-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4DruidRestoration";
- Next = "T6DruidRestoration";
-};
+ AtlasLoot_Data["T4DruidRestoration25Man"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t4s1_2#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 329086, "", "=q4=Crown of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329089, "", "=q4=Shoulderguards of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329087, "", "=q4=Chestguard of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329090, "", "=q4=Handguards of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329088, "", "=q4=Legguards of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5DruidRestoration25Man";
+ };
-AtlasLoot_Data["T5DruidBalance"] = {
- { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t5s1_3#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30235, "", "=q4=Nordrassil Wrath-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30231, "", "=q4=Nordrassil Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30232, "", "=q4=Nordrassil Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30234, "", "=q4=Nordrassil Wrath-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Nature_InsectSwarm", "=q6=#t5s1_3#", "=ec1=#m22# - Vanquished Defender"};
- { 17, 230233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230235, "", "=q4=Nordrassil Wrath-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230231, "", "=q4=Nordrassil Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230232, "", "=q4=Nordrassil Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230234, "", "=q4=Nordrassil Wrath-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4DruidBalance";
- Next = "T6DruidBalance";
-};
+ AtlasLoot_Data["T4DruidBalance25Man"] = {
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t4s1_3#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 329093, "", "=q4=Antlers of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329095, "", "=q4=Pauldrons of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329091, "", "=q4=Chestpiece of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329092, "", "=q4=Gloves of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329094, "", "=q4=Britches of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5DruidBalance25Man";
+ };
-AtlasLoot_Data["T5Hunter"] = {
- { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t5s2#", "=ec1=#m22# - Vanquished Hero"};
- { 2, 30141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30143, "", "=q4=Rift Stalker Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30139, "", "=q4=Rift Stalker Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30140, "", "=q4=Rift Stalker Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30142, "", "=q4=Rift Stalker Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t5s2#", "=ec1=#m22# - Vanquished Hero"};
- { 17, 230141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230143, "", "=q4=Rift Stalker Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230139, "", "=q4=Rift Stalker Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230140, "", "=q4=Rift Stalker Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230142, "", "=q4=Rift Stalker Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4Hunter";
- Next = "T6Hunter";
-};
+ AtlasLoot_Data["T4Hunter25Man"] = {
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t4s2#", "=ec1=#m21# - Fallen Hero"};
+ { 2, 329081, "", "=q4=Demon Stalker Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329084, "", "=q4=Demon Stalker Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329082, "", "=q4=Demon Stalker Harness", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329085, "", "=q4=Demon Stalker Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329083, "", "=q4=Demon Stalker Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5Hunter25Man";
+ };
-AtlasLoot_Data["T5Mage"] = {
- { 1, 0, "Spell_Frost_IceStorm", "=q6=#t5s3#", "=ec1=#m22# - Vanquished Hero"};
- { 2, 30206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30210, "", "=q4=Mantle of Tirisfal", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30196, "", "=q4=Robes of Tirisfal", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30205, "", "=q4=Gloves of Tirisfal", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30207, "", "=q4=Leggings of Tirisfal", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Frost_IceStorm", "=q6=#t5s3#", "=ec1=#m22# - Vanquished Hero"};
- { 17, 230206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230210, "", "=q4=Mantle of Tirisfal", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230196, "", "=q4=Robes of Tirisfal", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230205, "", "=q4=Gloves of Tirisfal", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230207, "", "=q4=Leggings of Tirisfal", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4Mage";
- Next = "T6Mage";
-};
+ AtlasLoot_Data["T4Mage25Man"] = {
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t4s3#", "=ec1=#m21# - Fallen Hero"};
+ { 2, 329076, "", "=q4=Collar of the Aldor", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329079, "", "=q4=Pauldrons of the Aldor", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329077, "", "=q4=Vestments of the Aldor", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329080, "", "=q4=Gloves of the Aldor", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329078, "", "=q4=Legwraps of the Aldor", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5Mage25Man";
+ };
-AtlasLoot_Data["T5PaladinProtection"] = {
- { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t5s4_1#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30127, "", "=q4=Crystalforge Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30123, "", "=q4=Crystalforge Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30124, "", "=q4=Crystalforge Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30126, "", "=q4=Crystalforge Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t5s4_1#", "=ec1=#m22# - Vanquished Champion"};
- { 17, 230125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230127, "", "=q4=Crystalforge Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230123, "", "=q4=Crystalforge Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230124, "", "=q4=Crystalforge Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230126, "", "=q4=Crystalforge Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PaladinProtection";
- Next = "T6PaladinProtection";
-};
+ AtlasLoot_Data["T4PaladinProtection25Man"] = {
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t4s4_1#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 329068, "", "=q4=Justicar Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329070, "", "=q4=Justicar Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329066, "", "=q4=Justicar Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329067, "", "=q4=Justicar Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329069, "", "=q4=Justicar Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5PaladinProtection25Man";
+ };
-AtlasLoot_Data["T5PaladinRetribution"] = {
- { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t5s4_2#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30133, "", "=q4=Crystalforge Shoulderbraces", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30129, "", "=q4=Crystalforge Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30130, "", "=q4=Crystalforge Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30132, "", "=q4=Crystalforge Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Holy_AuraOfLight", "=q6=#t5s4_2#", "=ec1=#m22# - Vanquished Champion"};
- { 17, 230131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230133, "", "=q4=Crystalforge Shoulderbraces", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230129, "", "=q4=Crystalforge Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230130, "", "=q4=Crystalforge Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230132, "", "=q4=Crystalforge Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PaladinRetribution";
- Next = "T6PaladinRetribution";
-};
+ AtlasLoot_Data["T4PaladinRetribution25Man"] = {
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t4s4_2#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 329073, "", "=q4=Justicar Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329075, "", "=q4=Justicar Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329071, "", "=q4=Justicar Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329072, "", "=q4=Justicar Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329074, "", "=q4=Justicar Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5PaladinRetribution25Man";
+ };
-AtlasLoot_Data["T5PaladinHoly"] = {
- { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t5s4_3#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30138, "", "=q4=Crystalforge Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30134, "", "=q4=Crystalforge Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30135, "", "=q4=Crystalforge Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30137, "", "=q4=Crystalforge Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Holy_HolyBolt", "=q6=#t5s4_3#", "=ec1=#m22# - Vanquished Champion"};
- { 17, 230136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230138, "", "=q4=Crystalforge Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230134, "", "=q4=Crystalforge Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230135, "", "=q4=Crystalforge Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230137, "", "=q4=Crystalforge Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PaladinHoly";
- Next = "T6PaladinHoly";
-};
+ AtlasLoot_Data["T4PaladinHoly25Man"] = {
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t4s4_3#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 329061, "", "=q4=Justicar Diadem", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329064, "", "=q4=Justicar Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329062, "", "=q4=Justicar Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329065, "", "=q4=Justicar Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329063, "", "=q4=Justicar Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5PaladinHoly25Man";
+ };
-AtlasLoot_Data["T5PriestHoly"] = {
- { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t5s5_1#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30154, "", "=q4=Mantle of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30150, "", "=q4=Vestments of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30151, "", "=q4=Gloves of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30153, "", "=q4=Breeches of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t5s5_1#", "=ec1=#m22# - Vanquished Defender"};
- { 17, 230152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230154, "", "=q4=Mantle of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230150, "", "=q4=Vestments of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230151, "", "=q4=Gloves of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230153, "", "=q4=Breeches of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PriestHoly";
- Next = "T6PriestHoly";
-};
+ AtlasLoot_Data["T4PriestHoly25Man"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t4s5_1#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 329049, "", "=q4=Light-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329054, "", "=q4=Light-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329050, "", "=q4=Robes of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329055, "", "=q4=Handwraps of the Incarnate", "The Curator ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329053, "", "=q4=Trousers of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5PriestHoly25Man";
+ };
-AtlasLoot_Data["T5PriestShadow"] = {
- { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t5s5_2#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30163, "", "=q4=Wings of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30159, "", "=q4=Shroud of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30160, "", "=q4=Handguards of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30162, "", "=q4=Leggings of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Shadow_AntiShadow", "=q6=#t5s5_2#", "=ec1=#m22# - Vanquished Defender"};
- { 17, 230161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230163, "", "=q4=Wings of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230159, "", "=q4=Shroud of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230160, "", "=q4=Handguards of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230162, "", "=q4=Leggings of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4PriestShadow";
- Next = "T6PriestShadow";
-};
+ AtlasLoot_Data["T4PriestShadow25Man"] = {
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t4s5_2#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 329058, "", "=q4=Soul-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329060, "", "=q4=Soul-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329056, "", "=q4=Shroud of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329057, "", "=q4=Gloves of the Incarnate", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329059, "", "=q4=Leggings of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5PriestShadow25Man";
+ };
-AtlasLoot_Data["T5Rogue"] = {
- { 1, 0, "Ability_BackStab", "=q6=#t5s6#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30149, "", "=q4=Deathmantle Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30144, "", "=q4=Deathmantle Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30145, "", "=q4=Deathmantle Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30148, "", "=q4=Deathmantle Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Ability_BackStab", "=q6=#t5s6#", "=ec1=#m22# - Vanquished Champion"};
- { 17, 230146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230149, "", "=q4=Deathmantle Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230144, "", "=q4=Deathmantle Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230145, "", "=q4=Deathmantle Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230148, "", "=q4=Deathmantle Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4Rogue";
- Next = "T6Rogue";
-};
+ AtlasLoot_Data["T4Rogue25Man"] = {
+ { 1, 0, "Ability_BackStab", "=q6=#t4s6#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 329044, "", "=q4=Netherblade Facemask", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329047, "", "=q4=Netherblade Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329045, "", "=q4=Netherblade Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329048, "", "=q4=Netherblade Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329046, "", "=q4=Netherblade Breeches", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5Rogue25Man";
+ };
-AtlasLoot_Data["T5ShamanEnhancement"] = {
- { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t5s7_1#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30194, "", "=q4=Cataclysm Shoulderplates", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30185, "", "=q4=Cataclysm Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30189, "", "=q4=Cataclysm Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30192, "", "=q4=Cataclysm Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t5s7_1#", "=ec1=#m22# - Vanquished Champion"};
- { 17, 230190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230194, "", "=q4=Cataclysm Shoulderplates", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230185, "", "=q4=Cataclysm Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230189, "", "=q4=Cataclysm Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230192, "", "=q4=Cataclysm Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4ShamanEnhancement";
- Next = "T6ShamanEnhancement";
-};
+ AtlasLoot_Data["T4ShamanEnhancement25Man"] = {
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t4s7_1#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 329040, "", "=q4=Cyclone Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329043, "", "=q4=Cyclone Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329038, "", "=q4=Cyclone Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329039, "", "=q4=Cyclone Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329042, "", "=q4=Cyclone War-Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5ShamanEnhancement25Man";
+ };
-AtlasLoot_Data["T5ShamanRestoration"] = {
- { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t5s7_2#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30168, "", "=q4=Cataclysm Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30164, "", "=q4=Cataclysm Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30165, "", "=q4=Cataclysm Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30167, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t5s7_2#", "=ec1=#m22# - Vanquished Champion"};
- { 17, 230166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230168, "", "=q4=Cataclysm Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230164, "", "=q4=Cataclysm Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230165, "", "=q4=Cataclysm Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230167, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4ShamanRestoration";
- Next = "T6ShamanRestoration";
-};
+ AtlasLoot_Data["T4ShamanRestoration25Man"] = {
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t4s7_2#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 329028, "", "=q4=Cyclone Headdress", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329031, "", "=q4=Cyclone Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329029, "", "=q4=Cyclone Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329032, "", "=q4=Cyclone Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329030, "", "=q4=Cyclone Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5ShamanRestoration25Man";
+ };
-AtlasLoot_Data["T5ShamanElemental"] = {
- { 1, 0, "Spell_Nature_Lightning", "=q6=#t5s7_3#", "=ec1=#m22# - Vanquished Champion"};
- { 2, 30171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30173, "", "=q4=Cataclysm Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30169, "", "=q4=Cataclysm Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30170, "", "=q4=Cataclysm Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30172, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Nature_Lightning", "=q6=#t5s7_3#", "=ec1=#m22# - Vanquished Champion"};
- { 17, 230171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230173, "", "=q4=Cataclysm Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230169, "", "=q4=Cataclysm Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230170, "", "=q4=Cataclysm Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230172, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4ShamanElemental";
- Next = "T6ShamanElemental";
-};
+ AtlasLoot_Data["T4ShamanElemental25Man"] = {
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t4s7_3#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 329035, "", "=q4=Cyclone Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329037, "", "=q4=Cyclone Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329033, "", "=q4=Cyclone Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329034, "", "=q4=Cyclone Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329036, "", "=q4=Cyclone Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5ShamanElemental25Man";
+ };
-AtlasLoot_Data["T5Warlock"] = {
- { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t5s8#", "=ec1=#m22# - Vanquished Hero"};
- { 2, 30212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30215, "", "=q4=Mantle of the Corruptor", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30214, "", "=q4=Robe of the Corruptor", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30211, "", "=q4=Gloves of the Corruptor", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30213, "", "=q4=Leggings of the Corruptor", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t5s8#", "=ec1=#m22# - Vanquished Hero"};
- { 17, 230212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230215, "", "=q4=Mantle of the Corruptor", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230214, "", "=q4=Robe of the Corruptor", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230211, "", "=q4=Gloves of the Corruptor", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230213, "", "=q4=Leggings of the Corruptor", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4Warlock";
- Next = "T6Warlock";
-};
+ AtlasLoot_Data["T4Warlock25Man"] = {
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t4s8#", "=ec1=#m21# - Fallen Hero"};
+ { 2, 328963, "", "=q4=Voidheart Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 328967, "", "=q4=Voidheart Mantle", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 328964, "", "=q4=Voidheart Robe", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 328968, "", "=q4=Voidheart Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 328966, "", "=q4=Voidheart Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5Warlock25Man";
+ };
-AtlasLoot_Data["T5WarriorProtection"] = {
- { 1, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30117, "", "=q4=Destroyer Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30113, "", "=q4=Destroyer Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30114, "", "=q4=Destroyer Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30116, "", "=q4=Destroyer Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 8, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
- { 9, 14992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 10, 14994, "", "=q4=Destroyer Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 11, 14990, "", "=q4=Destroyer Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 12, 14991, "", "=q4=Destroyer Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 13, 14993, "", "=q4=Destroyer Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
- { 17, 230115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230117, "", "=q4=Destroyer Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230113, "", "=q4=Destroyer Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230114, "", "=q4=Destroyer Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230116, "", "=q4=Destroyer Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 23, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
- { 24, 214992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 25, 214994, "", "=q4=Destroyer Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 26, 214990, "", "=q4=Destroyer Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 27, 214991, "", "=q4=Destroyer Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 28, 214993, "", "=q4=Destroyer Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4WarriorProtection";
- Next = "T6WarriorProtection";
-};
+ AtlasLoot_Data["T4WarriorProtection25Man"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#t4s9_1#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 329011, "", "=q4=Warbringer Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329016, "", "=q4=Warbringer Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329012, "", "=q4=Warbringer Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329017, "", "=q4=Warbringer Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329015, "", "=q4=Warbringer Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ { 8, 0, "INV_Shield_05", "=q6=#t4s9_1#", "=ec1=#m21# - Fallen Defender"};
+ { 9, 314984, "", "=q4=Warbringer Helmet", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 10, 314988, "", "=q4=Warbringer Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 11, 314985, "", "=q4=Warbringer Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
+ { 12, 314989, "", "=q4=Warbringer Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 13, 314987, "", "=q4=Warbringer Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5WarriorProtection25Man";
+ };
-AtlasLoot_Data["T5WarriorFury"] = {
- { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t5s9_2#", "=ec1=#m22# - Vanquished Defender"};
- { 2, 30120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 3, 30122, "", "=q4=Destroyer Shoulderblades", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 4, 30118, "", "=q4=Destroyer Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 5, 30119, "", "=q4=Destroyer Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 6, 30121, "", "=q4=Destroyer Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t5s9_2#", "=ec1=#m22# - Vanquished Defender"};
- { 17, 230120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 18, 230122, "", "=q4=Destroyer Shoulderblades", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
- { 19, 230118, "", "=q4=Destroyer Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
- { 20, 230119, "", "=q4=Destroyer Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- { 21, 230121, "", "=q4=Destroyer Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
- Back = "T5SET";
- Prev = "T4WarriorFury";
- Next = "T6WarriorFury";
-};
+ AtlasLoot_Data["T4WarriorFury25Man"] = {
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t4s9_2#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 329021, "", "=q4=Warbringer Battle-Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 329023, "", "=q4=Warbringer Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 329019, "", "=q4=Warbringer Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 329020, "", "=q4=Warbringer Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 329022, "", "=q4=Warbringer Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET25Man";
+ Next = "T5WarriorFury25Man";
+ };
+
+ -----------------------
+ --- Tier 4 ASCENDED ---
+ -----------------------
+
+ AtlasLoot_Data["T4DruidFeral25ManHEROIC"] = {
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t4s1_1#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 229098, "", "=q4=Stag-Helm of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229100, "", "=q4=Mantle of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229096, "", "=q4=Breastplate of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229097, "", "=q4=Gauntlets of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229099, "", "=q4=Greaves of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5DruidFeral25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4DruidRestoration25ManHEROIC"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t4s1_2#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 229086, "", "=q4=Crown of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229089, "", "=q4=Shoulderguards of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229087, "", "=q4=Chestguard of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229090, "", "=q4=Handguards of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229088, "", "=q4=Legguards of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5DruidRestoration25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4DruidBalance25ManHEROIC"] = {
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t4s1_3#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 229093, "", "=q4=Antlers of Malorne", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229095, "", "=q4=Pauldrons of Malorne", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229091, "", "=q4=Chestpiece of Malorne", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229092, "", "=q4=Gloves of Malorne", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229094, "", "=q4=Britches of Malorne", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5DruidBalance25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4Hunter25ManHEROIC"] = {
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t4s2#", "=ec1=#m21# - Fallen Hero"};
+ { 2, 229081, "", "=q4=Demon Stalker Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229084, "", "=q4=Demon Stalker Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229082, "", "=q4=Demon Stalker Harness", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229085, "", "=q4=Demon Stalker Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229083, "", "=q4=Demon Stalker Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5Hunter25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4Mage25ManHEROIC"] = {
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t4s3#", "=ec1=#m21# - Fallen Hero"};
+ { 2, 229076, "", "=q4=Collar of the Aldor", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229079, "", "=q4=Pauldrons of the Aldor", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229077, "", "=q4=Vestments of the Aldor", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229080, "", "=q4=Gloves of the Aldor", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229078, "", "=q4=Legwraps of the Aldor", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5Mage25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4PaladinProtection25ManHEROIC"] = {
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t4s4_1#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 229068, "", "=q4=Justicar Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229070, "", "=q4=Justicar Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229066, "", "=q4=Justicar Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229067, "", "=q4=Justicar Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229069, "", "=q4=Justicar Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5PaladinProtection25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4PaladinRetribution25ManHEROIC"] = {
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t4s4_2#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 229073, "", "=q4=Justicar Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229075, "", "=q4=Justicar Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229071, "", "=q4=Justicar Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229072, "", "=q4=Justicar Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229074, "", "=q4=Justicar Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5PaladinRetribution25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4PaladinHoly25ManHEROIC"] = {
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t4s4_3#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 229061, "", "=q4=Justicar Diadem", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229064, "", "=q4=Justicar Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229062, "", "=q4=Justicar Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229065, "", "=q4=Justicar Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229063, "", "=q4=Justicar Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5PaladinHoly25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4PriestHoly25ManHEROIC"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t4s5_1#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 229049, "", "=q4=Light-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229054, "", "=q4=Light-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229050, "", "=q4=Robes of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229055, "", "=q4=Handwraps of the Incarnate", "The Curator ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229053, "", "=q4=Trousers of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5PriestHoly25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4PriestShadow25ManHEROIC"] = {
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t4s5_2#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 229058, "", "=q4=Soul-Collar of the Incarnate", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229060, "", "=q4=Soul-Mantle of the Incarnate", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229056, "", "=q4=Shroud of the Incarnate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229057, "", "=q4=Gloves of the Incarnate", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229059, "", "=q4=Leggings of the Incarnate", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5PriestShadow25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4Rogue25ManHEROIC"] = {
+ { 1, 0, "Ability_BackStab", "=q6=#t4s6#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 229044, "", "=q4=Netherblade Facemask", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229047, "", "=q4=Netherblade Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229045, "", "=q4=Netherblade Chestpiece", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229048, "", "=q4=Netherblade Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229046, "", "=q4=Netherblade Breeches", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5Rogue25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4ShamanEnhancement25ManHEROIC"] = {
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t4s7_1#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 229040, "", "=q4=Cyclone Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229043, "", "=q4=Cyclone Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229038, "", "=q4=Cyclone Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229039, "", "=q4=Cyclone Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229042, "", "=q4=Cyclone War-Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5ShamanEnhancement25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4ShamanRestoration25ManHEROIC"] = {
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t4s7_2#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 229028, "", "=q4=Cyclone Headdress", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229031, "", "=q4=Cyclone Shoulderpads", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229029, "", "=q4=Cyclone Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229032, "", "=q4=Cyclone Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229030, "", "=q4=Cyclone Kilt", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5ShamanRestoration25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4ShamanElemental25ManHEROIC"] = {
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t4s7_3#", "=ec1=#m21# - Fallen Champion"};
+ { 2, 229035, "", "=q4=Cyclone Faceguard", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229037, "", "=q4=Cyclone Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229033, "", "=q4=Cyclone Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229034, "", "=q4=Cyclone Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229036, "", "=q4=Cyclone Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5ShamanElemental25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4Warlock25ManHEROIC"] = {
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t4s8#", "=ec1=#m21# - Fallen Hero"};
+ { 2, 228963, "", "=q4=Voidheart Crown", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 228967, "", "=q4=Voidheart Mantle", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 228964, "", "=q4=Voidheart Robe", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 228968, "", "=q4=Voidheart Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 228966, "", "=q4=Voidheart Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5Warlock25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4WarriorProtection25ManHEROIC"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#t4s9_1#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 229011, "", "=q4=Warbringer Greathelm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229016, "", "=q4=Warbringer Shoulderguards", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229012, "", "=q4=Warbringer Chestguard", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229017, "", "=q4=Warbringer Handguards", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229015, "", "=q4=Warbringer Legguards", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ { 8, 0, "INV_Shield_05", "=q6=#t4s9_1#", "=ec1=#m21# - Fallen Defender"};
+ { 9, 214984, "", "=q4=Warbringer Helmet", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 10, 214988, "", "=q4=Warbringer Pauldrons", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 11, 214985, "", "=q4=Warbringer Hauberk", "=ds="..BabbleBoss["Magtheridon"]};
+ { 12, 214989, "", "=q4=Warbringer Gloves", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 13, 214987, "", "=q4=Warbringer Leggings", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5WarriorProtection25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T4WarriorFury25ManHEROIC"] = {
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t4s9_2#", "=ec1=#m21# - Fallen Defender"};
+ { 2, 229021, "", "=q4=Warbringer Battle-Helm", "=ds="..BabbleBoss["Prince Malchezaar"].." ("..BabbleZone["Karazhan"]..")"};
+ { 3, 229023, "", "=q4=Warbringer Shoulderplates", "=ds="..BabbleBoss["High King Maulgar"]};
+ { 4, 229019, "", "=q4=Warbringer Breastplate", "=ds="..BabbleBoss["Magtheridon"]};
+ { 5, 229020, "", "=q4=Warbringer Gauntlets", "=ds="..BabbleBoss["The Curator"].." ("..BabbleZone["Karazhan"]..")"};
+ { 6, 229022, "", "=q4=Warbringer Greaves", "=ds="..BabbleBoss["Gruul the Dragonkiller"]};
+ Back = "T4SET";
+ Next = "T5WarriorFury25ManHEROIC";
+ };
+
+
+ --------------
+ --- Tier 5 ---
+ --------------
+
+ AtlasLoot_Data["T5DruidFeral"] = {
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t5s1_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 30228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30230, "", "=q4=Nordrassil Feral-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30222, "", "=q4=Nordrassil Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30223, "", "=q4=Nordrassil Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30229, "", "=q4=Nordrassil Feral-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidFeral";
+ Next = "T6DruidFeral";
+ };
+
+ AtlasLoot_Data["T5DruidRestoration"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t5s1_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 30219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30221, "", "=q4=Nordrassil Life-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30216, "", "=q4=Nordrassil Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30217, "", "=q4=Nordrassil Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30220, "", "=q4=Nordrassil Life-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidRestoration";
+ Next = "T6DruidRestoration";
+ };
+
+ AtlasLoot_Data["T5DruidBalance"] = {
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t5s1_3#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 30233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30235, "", "=q4=Nordrassil Wrath-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30231, "", "=q4=Nordrassil Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30232, "", "=q4=Nordrassil Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30234, "", "=q4=Nordrassil Wrath-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidBalance";
+ Next = "T6DruidBalance";
+ };
+
+ AtlasLoot_Data["T5Hunter"] = {
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t5s2#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 30141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30143, "", "=q4=Rift Stalker Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30139, "", "=q4=Rift Stalker Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30140, "", "=q4=Rift Stalker Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30142, "", "=q4=Rift Stalker Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Hunter";
+ Next = "T6Hunter";
+ };
+
+ AtlasLoot_Data["T5Mage"] = {
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t5s3#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 30206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30210, "", "=q4=Mantle of Tirisfal", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30196, "", "=q4=Robes of Tirisfal", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30205, "", "=q4=Gloves of Tirisfal", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30207, "", "=q4=Leggings of Tirisfal", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Mage";
+ Next = "T6Mage";
+ };
+
+ AtlasLoot_Data["T5PaladinProtection"] = {
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t5s4_1#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 30125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30127, "", "=q4=Crystalforge Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30123, "", "=q4=Crystalforge Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30124, "", "=q4=Crystalforge Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30126, "", "=q4=Crystalforge Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinProtection";
+ Next = "T6PaladinProtection";
+ };
+
+ AtlasLoot_Data["T5PaladinRetribution"] = {
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t5s4_2#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 30131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30133, "", "=q4=Crystalforge Shoulderbraces", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30129, "", "=q4=Crystalforge Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30130, "", "=q4=Crystalforge Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30132, "", "=q4=Crystalforge Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinRetribution";
+ Next = "T6PaladinRetribution";
+ };
+
+ AtlasLoot_Data["T5PaladinHoly"] = {
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t5s4_3#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 30136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30138, "", "=q4=Crystalforge Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30134, "", "=q4=Crystalforge Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30135, "", "=q4=Crystalforge Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30137, "", "=q4=Crystalforge Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinHoly";
+ Next = "T6PaladinHoly";
+ };
+
+ AtlasLoot_Data["T5PriestHoly"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t5s5_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 30152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30154, "", "=q4=Mantle of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30150, "", "=q4=Vestments of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30151, "", "=q4=Gloves of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30153, "", "=q4=Breeches of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PriestHoly";
+ Next = "T6PriestHoly";
+ };
+
+ AtlasLoot_Data["T5PriestShadow"] = {
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t5s5_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 30161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30163, "", "=q4=Wings of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30159, "", "=q4=Shroud of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30160, "", "=q4=Handguards of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30162, "", "=q4=Leggings of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PriestShadow";
+ Next = "T6PriestShadow";
+ };
+
+ AtlasLoot_Data["T5Rogue"] = {
+ { 1, 0, "Ability_BackStab", "=q6=#t5s6#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 30146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30149, "", "=q4=Deathmantle Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30144, "", "=q4=Deathmantle Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30145, "", "=q4=Deathmantle Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30148, "", "=q4=Deathmantle Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Rogue";
+ Next = "T6Rogue";
+ };
+
+ AtlasLoot_Data["T5ShamanEnhancement"] = {
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t5s7_1#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 30190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30194, "", "=q4=Cataclysm Shoulderplates", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30185, "", "=q4=Cataclysm Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30189, "", "=q4=Cataclysm Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30192, "", "=q4=Cataclysm Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanEnhancement";
+ Next = "T6ShamanEnhancement";
+ };
+
+ AtlasLoot_Data["T5ShamanRestoration"] = {
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t5s7_2#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 30166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30168, "", "=q4=Cataclysm Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30164, "", "=q4=Cataclysm Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30165, "", "=q4=Cataclysm Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30167, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanRestoration";
+ Next = "T6ShamanRestoration";
+ };
+
+ AtlasLoot_Data["T5ShamanElemental"] = {
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t5s7_3#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 30171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30173, "", "=q4=Cataclysm Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30169, "", "=q4=Cataclysm Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30170, "", "=q4=Cataclysm Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30172, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanElemental";
+ Next = "T6ShamanElemental";
+ };
+
+ AtlasLoot_Data["T5Warlock"] = {
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t5s8#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 30212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30215, "", "=q4=Mantle of the Corruptor", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30214, "", "=q4=Robe of the Corruptor", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30211, "", "=q4=Gloves of the Corruptor", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30213, "", "=q4=Leggings of the Corruptor", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Warlock";
+ Next = "T6Warlock";
+ };
+
+ AtlasLoot_Data["T5WarriorProtection"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 30115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30117, "", "=q4=Destroyer Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30113, "", "=q4=Destroyer Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30114, "", "=q4=Destroyer Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30116, "", "=q4=Destroyer Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 8, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 9, 14992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 10, 14994, "", "=q4=Destroyer Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 11, 14990, "", "=q4=Destroyer Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 12, 14991, "", "=q4=Destroyer Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 13, 14993, "", "=q4=Destroyer Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4WarriorProtection";
+ Next = "T6WarriorProtection";
+ };
+
+ AtlasLoot_Data["T5WarriorFury"] = {
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t5s9_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 30120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 30122, "", "=q4=Destroyer Shoulderblades", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 30118, "", "=q4=Destroyer Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 30119, "", "=q4=Destroyer Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 30121, "", "=q4=Destroyer Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4WarriorFury";
+ Next = "T6WarriorFury";
+ };
+
+
+
+ --------------------------
+ --- Tier 5 HEROIC FLEX ---
+ --------------------------
+
+ AtlasLoot_Data["T5DruidFeral25Man"] = {
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t5s1_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 330228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330230, "", "=q4=Nordrassil Feral-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330222, "", "=q4=Nordrassil Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330223, "", "=q4=Nordrassil Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330229, "", "=q4=Nordrassil Feral-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidFeral25Man";
+ Next = "T6DruidFeral25Man";
+ };
+
+ AtlasLoot_Data["T5DruidRestoration25Man"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t5s1_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 330219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330221, "", "=q4=Nordrassil Life-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330216, "", "=q4=Nordrassil Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330217, "", "=q4=Nordrassil Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330220, "", "=q4=Nordrassil Life-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidRestoration25Man";
+ Next = "T6DruidRestoration25Man";
+ };
+
+ AtlasLoot_Data["T5DruidBalance25Man"] = {
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t5s1_3#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 330233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330235, "", "=q4=Nordrassil Wrath-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330231, "", "=q4=Nordrassil Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330232, "", "=q4=Nordrassil Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330234, "", "=q4=Nordrassil Wrath-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidBalance25Man";
+ Next = "T6DruidBalance25Man";
+ };
+
+ AtlasLoot_Data["T5Hunter25Man"] = {
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t5s2#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 330141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330143, "", "=q4=Rift Stalker Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330139, "", "=q4=Rift Stalker Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330140, "", "=q4=Rift Stalker Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330142, "", "=q4=Rift Stalker Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Hunter25Man";
+ Next = "T6Hunter25Man";
+ };
+
+ AtlasLoot_Data["T5Mage25Man"] = {
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t5s3#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 330206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330210, "", "=q4=Mantle of Tirisfal", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330196, "", "=q4=Robes of Tirisfal", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330205, "", "=q4=Gloves of Tirisfal", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330207, "", "=q4=Leggings of Tirisfal", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Mage25Man";
+ Next = "T6Mage25Man";
+ };
+
+ AtlasLoot_Data["T5PaladinProtection25Man"] = {
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t5s4_1#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 330125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330127, "", "=q4=Crystalforge Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330123, "", "=q4=Crystalforge Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330124, "", "=q4=Crystalforge Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330126, "", "=q4=Crystalforge Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinProtection25Man";
+ Next = "T6PaladinProtection25Man";
+ };
+
+ AtlasLoot_Data["T5PaladinRetribution25Man"] = {
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t5s4_2#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 330131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330133, "", "=q4=Crystalforge Shoulderbraces", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330129, "", "=q4=Crystalforge Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330130, "", "=q4=Crystalforge Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330132, "", "=q4=Crystalforge Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinRetribution25Man";
+ Next = "T6PaladinRetribution25Man";
+ };
+
+ AtlasLoot_Data["T5PaladinHoly25Man"] = {
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t5s4_3#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 330136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330138, "", "=q4=Crystalforge Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330134, "", "=q4=Crystalforge Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330135, "", "=q4=Crystalforge Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330137, "", "=q4=Crystalforge Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinHoly25Man";
+ Next = "T6PaladinHoly25Man";
+ };
+
+ AtlasLoot_Data["T5PriestHoly25Man"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t5s5_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 330152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330154, "", "=q4=Mantle of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330150, "", "=q4=Vestments of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330151, "", "=q4=Gloves of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330153, "", "=q4=Breeches of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PriestHoly25Man";
+ Next = "T6PriestHoly25Man";
+ };
+
+ AtlasLoot_Data["T5PriestShadow25Man"] = {
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t5s5_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 330161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330163, "", "=q4=Wings of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330159, "", "=q4=Shroud of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330160, "", "=q4=Handguards of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330162, "", "=q4=Leggings of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PriestShadow25Man";
+ Next = "T6PriestShadow25Man";
+ };
+
+ AtlasLoot_Data["T5Rogue25Man"] = {
+ { 1, 0, "Ability_BackStab", "=q6=#t5s6#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 330146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330149, "", "=q4=Deathmantle Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330144, "", "=q4=Deathmantle Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330145, "", "=q4=Deathmantle Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330148, "", "=q4=Deathmantle Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Rogue25Man";
+ Next = "T6Rogue25Man";
+ };
+
+ AtlasLoot_Data["T5ShamanEnhancement25Man"] = {
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t5s7_1#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 330190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330194, "", "=q4=Cataclysm Shoulderplates", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330185, "", "=q4=Cataclysm Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330189, "", "=q4=Cataclysm Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330192, "", "=q4=Cataclysm Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanEnhancement25Man";
+ Next = "T6ShamanEnhancement25Man";
+ };
+
+ AtlasLoot_Data["T5ShamanRestoration25Man"] = {
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t5s7_2#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 330166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330168, "", "=q4=Cataclysm Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330164, "", "=q4=Cataclysm Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330165, "", "=q4=Cataclysm Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330167, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanRestoration25Man";
+ Next = "T6ShamanRestoration25Man";
+ };
+
+ AtlasLoot_Data["T5ShamanElemental25Man"] = {
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t5s7_3#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 330171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330173, "", "=q4=Cataclysm Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330169, "", "=q4=Cataclysm Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330170, "", "=q4=Cataclysm Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330172, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanElemental25Man";
+ Next = "T6ShamanElemental25Man";
+ };
+
+ AtlasLoot_Data["T5Warlock25Man"] = {
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t5s8#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 330212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330215, "", "=q4=Mantle of the Corruptor", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330214, "", "=q4=Robe of the Corruptor", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330211, "", "=q4=Gloves of the Corruptor", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330213, "", "=q4=Leggings of the Corruptor", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Warlock25Man";
+ Next = "T6Warlock25Man";
+ };
+
+ AtlasLoot_Data["T5WarriorProtection25Man"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 330115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330117, "", "=q4=Destroyer Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330113, "", "=q4=Destroyer Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330114, "", "=q4=Destroyer Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330116, "", "=q4=Destroyer Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 8, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 9, 314992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 10, 314994, "", "=q4=Destroyer Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 11, 314990, "", "=q4=Destroyer Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 12, 314991, "", "=q4=Destroyer Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 13, 314993, "", "=q4=Destroyer Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4WarriorProtection25Man";
+ Next = "T6WarriorProtection25Man";
+ };
+
+ AtlasLoot_Data["T5WarriorFury25Man"] = {
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t5s9_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 330120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 330122, "", "=q4=Destroyer Shoulderblades", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 330118, "", "=q4=Destroyer Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 330119, "", "=q4=Destroyer Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 330121, "", "=q4=Destroyer Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4WarriorFury25Man";
+ Next = "T6WarriorFury25Man";
+ };
+
+
+ ------------------------------
+ --- Tier 5 HEROIC ASCENDED ---
+ ------------------------------
+
+ AtlasLoot_Data["T5DruidFeral25ManHEROIC"] = {
+ { 1, 0, "Ability_Druid_Maul", "=q6=#t5s1_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 230228, "", "=q4=Nordrassil Headdress", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230230, "", "=q4=Nordrassil Feral-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230222, "", "=q4=Nordrassil Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230223, "", "=q4=Nordrassil Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230229, "", "=q4=Nordrassil Feral-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidFeral25ManHEROIC";
+ Next = "T6DruidFeral25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5DruidRestoration25ManHEROIC"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t5s1_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 230219, "", "=q4=Nordrassil Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230221, "", "=q4=Nordrassil Life-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230216, "", "=q4=Nordrassil Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230217, "", "=q4=Nordrassil Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230220, "", "=q4=Nordrassil Life-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidRestoration25ManHEROIC";
+ Next = "T6DruidRestoration25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5DruidBalance25ManHEROIC"] = {
+ { 1, 0, "Spell_Nature_InsectSwarm", "=q6=#t5s1_3#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 230233, "", "=q4=Nordrassil Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230235, "", "=q4=Nordrassil Wrath-Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230231, "", "=q4=Nordrassil Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230232, "", "=q4=Nordrassil Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230234, "", "=q4=Nordrassil Wrath-Kilt", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4DruidBalance25ManHEROIC";
+ Next = "T6DruidBalance25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5Hunter25ManHEROIC"] = {
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t5s2#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 230141, "", "=q4=Rift Stalker Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230143, "", "=q4=Rift Stalker Mantle", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230139, "", "=q4=Rift Stalker Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230140, "", "=q4=Rift Stalker Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230142, "", "=q4=Rift Stalker Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Hunter25ManHEROIC";
+ Next = "T6Hunter25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5Mage25ManHEROIC"] = {
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t5s3#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 230206, "", "=q4=Cowl of Tirisfal", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230210, "", "=q4=Mantle of Tirisfal", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230196, "", "=q4=Robes of Tirisfal", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230205, "", "=q4=Gloves of Tirisfal", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230207, "", "=q4=Leggings of Tirisfal", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Mage25ManHEROIC";
+ Next = "T6Mage25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5PaladinProtection25ManHEROIC"] = {
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t5s4_1#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 230125, "", "=q4=Crystalforge Faceguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230127, "", "=q4=Crystalforge Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230123, "", "=q4=Crystalforge Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230124, "", "=q4=Crystalforge Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230126, "", "=q4=Crystalforge Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinProtection25ManHEROIC";
+ Next = "T6PaladinProtection25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5PaladinRetribution25ManHEROIC"] = {
+ { 1, 0, "Spell_Holy_AuraOfLight", "=q6=#t5s4_2#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 230131, "", "=q4=Crystalforge War-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230133, "", "=q4=Crystalforge Shoulderbraces", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230129, "", "=q4=Crystalforge Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230130, "", "=q4=Crystalforge Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230132, "", "=q4=Crystalforge Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinRetribution25ManHEROIC";
+ Next = "T6PaladinRetribution25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5PaladinHoly25ManHEROIC"] = {
+ { 1, 0, "Spell_Holy_HolyBolt", "=q6=#t5s4_3#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 230136, "", "=q4=Crystalforge Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230138, "", "=q4=Crystalforge Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230134, "", "=q4=Crystalforge Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230135, "", "=q4=Crystalforge Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230137, "", "=q4=Crystalforge Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PaladinHoly25ManHEROIC";
+ Next = "T6PaladinHoly25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5PriestHoly25ManHEROIC"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t5s5_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 230152, "", "=q4=Cowl of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230154, "", "=q4=Mantle of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230150, "", "=q4=Vestments of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230151, "", "=q4=Gloves of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230153, "", "=q4=Breeches of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PriestHoly25ManHEROIC";
+ Next = "T6PriestHoly25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5PriestShadow25ManHEROIC"] = {
+ { 1, 0, "Spell_Shadow_AntiShadow", "=q6=#t5s5_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 230161, "", "=q4=Hood of the Avatar", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230163, "", "=q4=Wings of the Avatar", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230159, "", "=q4=Shroud of the Avatar", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230160, "", "=q4=Handguards of the Avatar", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230162, "", "=q4=Leggings of the Avatar", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4PriestShadow25ManHEROIC";
+ Next = "T6PriestShadow25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5Rogue25ManHEROIC"] = {
+ { 1, 0, "Ability_BackStab", "=q6=#t5s6#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 230146, "", "=q4=Deathmantle Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230149, "", "=q4=Deathmantle Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230144, "", "=q4=Deathmantle Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230145, "", "=q4=Deathmantle Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230148, "", "=q4=Deathmantle Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Rogue25ManHEROIC";
+ Next = "T6Rogue25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5ShamanEnhancement25ManHEROIC"] = {
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t5s7_1#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 230190, "", "=q4=Cataclysm Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230194, "", "=q4=Cataclysm Shoulderplates", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230185, "", "=q4=Cataclysm Chestplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230189, "", "=q4=Cataclysm Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230192, "", "=q4=Cataclysm Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanEnhancement25ManHEROIC";
+ Next = "T6ShamanEnhancement25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5ShamanRestoration25ManHEROIC"] = {
+ { 1, 0, "Spell_Nature_HealingWaveGreater", "=q6=#t5s7_2#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 230166, "", "=q4=Cataclysm Headguard", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230168, "", "=q4=Cataclysm Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230164, "", "=q4=Cataclysm Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230165, "", "=q4=Cataclysm Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230167, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanRestoration25ManHEROIC";
+ Next = "T6ShamanRestoration25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5ShamanElemental25ManHEROIC"] = {
+ { 1, 0, "Spell_Nature_Lightning", "=q6=#t5s7_3#", "=ec1=#m22# - Vanquished Champion"};
+ { 2, 230171, "", "=q4=Cataclysm Headpiece", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230173, "", "=q4=Cataclysm Shoulderpads", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230169, "", "=q4=Cataclysm Chestpiece", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230170, "", "=q4=Cataclysm Handgrips", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230172, "", "=q4=Cataclysm Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4ShamanElemental25ManHEROIC";
+ Next = "T6ShamanElemental25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5Warlock25ManHEROIC"] = {
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t5s8#", "=ec1=#m22# - Vanquished Hero"};
+ { 2, 230212, "", "=q4=Hood of the Corruptor", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230215, "", "=q4=Mantle of the Corruptor", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230214, "", "=q4=Robe of the Corruptor", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230211, "", "=q4=Gloves of the Corruptor", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230213, "", "=q4=Leggings of the Corruptor", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4Warlock25ManHEROIC";
+ Next = "T6Warlock25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5WarriorProtection25ManHEROIC"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 230115, "", "=q4=Destroyer Greathelm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230117, "", "=q4=Destroyer Shoulderguards", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230113, "", "=q4=Destroyer Chestguard", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230114, "", "=q4=Destroyer Handguards", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230116, "", "=q4=Destroyer Legguards", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 8, 0, "INV_Shield_05", "=q6=#t5s9_1#", "=ec1=#m22# - Vanquished Defender"};
+ { 9, 214992, "", "=q4=Destroyer Helmet", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 10, 214994, "", "=q4=Destroyer Pauldrons", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 11, 214990, "", "=q4=Destroyer Hauberk", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 12, 214991, "", "=q4=Destroyer Gloves", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 13, 214993, "", "=q4=Destroyer Leggings", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4WarriorProtection25ManHEROIC";
+ Next = "T6WarriorProtection25ManHEROIC";
+ };
+
+ AtlasLoot_Data["T5WarriorFury25ManHEROIC"] = {
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t5s9_2#", "=ec1=#m22# - Vanquished Defender"};
+ { 2, 230120, "", "=q4=Destroyer Battle-Helm", "=ds="..BabbleBoss["Lady Vashj"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 3, 230122, "", "=q4=Destroyer Shoulderblades", "=ds="..BabbleBoss["Void Reaver"].." ("..BabbleZone["The Eye"]..")"};
+ { 4, 230118, "", "=q4=Destroyer Breastplate", "=ds="..BabbleBoss["Kael'thas Sunstrider"].." ("..BabbleZone["The Eye"]..")"};
+ { 5, 230119, "", "=q4=Destroyer Gauntlets", "=ds="..BabbleBoss["Leotheras the Blind"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ { 6, 230121, "", "=q4=Destroyer Greaves", "=ds="..BabbleBoss["Fathom-Lord Karathress"].." ("..BabbleZone["Serpentshrine Cavern"]..")"};
+ Back = "T5SET";
+ Prev = "T4WarriorFury25ManHEROIC";
+ Next = "T6WarriorFury25ManHEROIC";
+ };
--------------
--- Tier 6 ---
diff --git a/AtlasLoot_OriginalWoW/originalwow.lua b/AtlasLoot_OriginalWoW/originalwow.lua
index a4be0c3..26618f7 100644
--- a/AtlasLoot_OriginalWoW/originalwow.lua
+++ b/AtlasLoot_OriginalWoW/originalwow.lua
@@ -282,808 +282,364 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
------------------------------------------------
- --- Ahn'Qiraj: The Ruins of Ahn'Qiraj HEROIC ---
+ --- Ahn'Qiraj: The Ruins of Ahn'Qiraj HEROIC FLEX ---
------------------------------------------------
-AtlasLoot_Data["AQ20KurinnaxxHEROIC"] = {
- { 1, 221499, "", "=q4=Vestments of the Shifting Sands", "=ds=#s5#, #a1#", "", "7.34%"};
- { 2, 221498, "", "=q4=Qiraji Sacrificial Dagger", "=ds=#h1#, #w4#", "", "7.53%"};
- { 4, 221500, "", "=q3=Belt of the Inquisition", "=ds=#s10#, #a1#", "", "14.84%"};
- { 5, 221501, "", "=q3=Toughened Silithid Hide Gloves", "=ds=#s9#, #a2#", "", "12.91%"};
- { 6, 221502, "", "=q3=Sand Reaver Wristguards", "=ds=#s8#, #a3#", "", "13.79%"};
- { 7, 221503, "", "=q3=Belt of the Sand Reaver", "=ds=#s10#, #a4#", "", "14.38%"};
- { 9, 22217, "", "=q1=Kurinnaxx's Venom Sac", "=ds=#m3#", "", "100%"};
- { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "30.83%"};
- { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "30.25%"};
- { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.98%"};
- { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "7.80%"};
- Next = "AQ20RajaxxHEROIC";
-};
-
-AtlasLoot_Data["AQ20RajaxxHEROIC"] = {
- { 1, 221493, "", "=q4=Boots of the Vanguard", "=ds=#s12#, #a2#", "", "8.13%"};
- { 2, 221492, "", "=q4=Manslayer of the Qiraji", "=ds=#h2#, #w10#", "", "10.04%"};
- { 4, 221496, "", "=q3=Bracers of Qiraji Command", "=ds=#s8#, #a1#", "", "15.79%"};
- { 5, 221494, "", "=q3=Southwind's Grasp", "=ds=#s10#, #a2#", "", "15.13%"};
- { 6, 221497, "", "=q3=Boots of the Qiraji General", "=ds=#s12#, #a3#", "", "15.45%"};
- { 7, 221495, "", "=q3=Legplates of the Qiraji Command", "=ds=#s11#, #a4#", "", "15.47%"};
- { 9, 0, "INV_Box_01", "=q6="..AL["Rajaxx's Captains"], ""};
- { 10, 221810, "", "=q3=Treads of the Wandering Nomad", "=ds=#s12#, #a1#", "", "3.11%"};
- { 11, 221809, "", "=q3=Fury of the Forgotten Swarm", "=ds=#s2#", "", "3.20%"};
- { 12, 221806, "", "=q3=Gavel of Qiraji Authority", "=ds=#h2#, #w6#", "", "3.04%"};
- { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "36.51%"};
- { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "33.97%"};
- { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "8.82%"};
- { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.56%"};
- { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Lieutenant General Andorov"], ""};
- { 22, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)"};
- { 23, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)"};
- Prev = "AQ20KurinnaxxHEROIC";
- Next = "AQ20MoamHEROIC";
-};
-
-AtlasLoot_Data["AQ20MoamHEROIC"] = {
- { 1, 221472, "", "=q4=Dustwind Turban", "=ds=#s1#, #a1#", "", "7.76%"};
- { 2, 221467, "", "=q4=Thick Silithid Chestguard", "=ds=#s5#, #a2#", "", "6.76%"};
- { 3, 221479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "7.12%"};
- { 4, 221471, "", "=q4=Talon of Furious Concentration", "=ds=#s15#", "", "7.39%"};
- { 6, 221470, "", "=q3=Cloak of the Savior", "=ds=#s4#", "", "14.23%"};
- { 7, 221468, "", "=q3=Mantle of Maz'Nadir", "=ds=#s3#, #a1#", "", "15.86%"};
- { 8, 221455, "", "=q3=Southwind Helm", "=ds=#s1#, #a2#", "", "14.08%"};
- { 9, 221474, "", "=q3=Chitinous Shoulderguards", "=ds=#s3#, #a2#", "", "15.25%"};
- { 10, 221469, "", "=q3=Gauntlets of Southwind", "=ds=#s9#, #a2#", "", "15.28%"};
- { 11, 221476, "", "=q3=Obsidian Scaled Leggings", "=ds=#s11#, #a3#", "", "6.81%"};
- { 12, 221475, "", "=q3=Legplates of the Destroyer", "=ds=#s11#, #a4#", "", "10.39%"};
- { 13, 221477, "", "=q3=Ring of Fury", "=ds=#s13#", "", "14.42%"};
- { 14, 221473, "", "=q3=Eye of Moam", "=ds=#s14#", "", "14.74%"};
- { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "36.38%"};
- { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "33.16%"};
- { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.56%"};
- { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.34%"};
- { 21, 22220, "", "=q3=Plans: Black Grasp of the Destroyer", "=ds=#p2# (300)", "", "4.11%"};
- { 22, 22194, "", "=q4=Black Grasp of the Destroyer", "=ds=#s9#, #a3#"};
- Prev = "AQ20RajaxxHEROIC";
- Next = "AQ20BuruHEROIC";
-};
-
-AtlasLoot_Data["AQ20BuruHEROIC"] = {
- { 1, 221487, "", "=q4=Slimy Scaled Gauntlets", "=ds=#s9#, #a3#", "", "2.64%"};
- { 2, 221486, "", "=q4=Gloves of the Swarm", "=ds=#s9#, #a4#", "", "5.22%"};
- { 3, 221485, "", "=q4=Buru's Skull Fragment", "=ds=#w8#", "", "7.88%"};
- { 5, 221489, "", "=q3=Quicksand Waders", "=ds=#s12#, #a1#", "", "15.95%"};
- { 6, 221491, "", "=q3=Scaled Bracers of the Gorger", "=ds=#s8#, #a2#", "", "16.51%"};
- { 7, 221490, "", "=q3=Slime Kickers", "=ds=#s12#, #a4#", "", "15.99%"};
- { 8, 221488, "", "=q3=Fetish of Chitinous Spikes", "=ds=#s14#", "", "17.22%"};
- { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.31%"};
- { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.98%"};
- { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "9.77%"};
- { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "9.84%"};
- { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"};
- { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "25.58%"};
- Prev = "AQ20MoamHEROIC";
- Next = "AQ20Ayamiss";
-};
-
-AtlasLoot_Data["AQ20AyamissHEROIC"] = {
- { 1, 221479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "6.18%"};
- { 2, 221466, "", "=q4=Stinger of Ayamiss", "=ds=#h3#, #w6#", "", "2.06%"};
- { 3, 221478, "", "=q4=Bow of Taut Sinew", "=ds=#w2#", "", "10.14%"};
- { 5, 221484, "", "=q3=Helm of Regrowth", "=ds=#s1#, #a2#", "", "15.85%"};
- { 6, 221480, "", "=q3=Scaled Silithid Gauntlets", "=ds=#s9#, #a3#", "", "17.10%"};
- { 7, 221482, "", "=q3=Boots of the Fiery Sands", "=ds=#s12#, #a3#", "", "4.92%"};
- { 8, 221481, "", "=q3=Boots of the Desert Protector", "=ds=#s12#, #a4#", "", "11.08%"};
- { 9, 221483, "", "=q3=Ring of the Desert Winds", "=ds=#s13#", "", "16.32%"};
- { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.24%"};
- { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.21%"};
- { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "8.85%"};
- { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "10.97%"};
- { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"};
- { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "27.50%"};
- Prev = "AQ20BuruHEROIC";
- Next = "AQ20OssirianHEROIC";
-};
-
-AtlasLoot_Data["AQ20OssirianHEROIC"] = {
- { 1, 221456, "", "=q4=Sandstorm Cloak", "=ds=#s4#", "", "10.89%"};
- { 2, 221464, "", "=q4=Shackles of the Unscarred", "=ds=#s8#, #a1#", "", "12.62%"};
- { 3, 221462, "", "=q4=Gloves of Dark Wisdom", "=ds=#s9#, #a1#", "", "11.89%"};
- { 4, 221461, "", "=q4=Leggings of the Black Blizzard", "=ds=#s11#, #a1#", "", "12.83%"};
- { 5, 221458, "", "=q4=Gauntlets of New Life", "=ds=#s9#, #a2#", "", "13.25%"};
- { 6, 221454, "", "=q4=Runic Stone Shoulders", "=ds=#s3#, #a3#", "", "4.10%"};
- { 7, 221463, "", "=q4=Ossirian's Binding", "=ds=#s10#, #a3#", "", "12.27%"};
- { 8, 221460, "", "=q4=Helm of Domination", "=ds=#s1#, #a4#", "", "12.18%"};
- { 9, 221453, "", "=q4=Mantle of the Horusath", "=ds=#s3#, #a4#", "", "6.96%"};
- { 10, 221457, "", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "", "10.74%"};
- { 11, 221715, "", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "", "5.95%"};
- { 12, 221459, "", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "", "6.12%"};
- { 13, 221452, "", "=q4=Staff of the Ruins", "=ds=#w9#", "", "10.32%"};
- { 16, 21220, "", "=q4=Head of Ossirian the Unscarred", "=ds=#m2#", "", "100%"};
- { 17, 21504, "", "=q4=Charm of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
- { 18, 21507, "", "=q4=Amulet of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
- { 19, 21505, "", "=q4=Choker of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
- { 20, 21506, "", "=q4=Pendant of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
- { 22, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "35.27%"};
- { 23, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "30.69%"};
- { 24, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "9.65%"};
- { 25, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.53%"};
- Prev = "AQ20AyamissHEROIC";
-};
-
-AtlasLoot_Data["AQ20TrashHEROIC"] = {
- { 1, 20873, "", "=q3=Alabaster Idol", "=ds=#e15#", "", "0.39%"};
- { 2, 20869, "", "=q3=Amber Idol", "=ds=#e15#", "", "0.36%"};
- { 3, 20866, "", "=q3=Azure Idol", "=ds=#e15#", "", "0.48%"};
- { 4, 20870, "", "=q3=Jasper Idol", "=ds=#e15#", "", "0.52%"};
- { 5, 20868, "", "=q3=Lambent Idol", "=ds=#e15#", "", "0.48%"};
- { 6, 20871, "", "=q3=Obsidian Idol", "=ds=#e15#", "", "0.41%"};
- { 7, 20867, "", "=q3=Onyx Idol", "=ds=#e15#", "", "0.36%"};
- { 8, 20872, "", "=q3=Vermillion Idol", "=ds=#e15#", "", "0.31%"};
- { 10, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"};
- { 11, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"};
- { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"};
- { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"};
- { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"};
- { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"};
- { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"};
- { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
- { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
- { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
- { 25, 21761, "", "=q1=Scarab Coffer Key", "=ds=#e9#", "", "7.27%"};
-};
-
-AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
- { 1, 21294, "", "=q3=Book of Healing Touch XI", "=q1=#m1# =ds=#c1#", "", "4.12%"};
- { 2, 21296, "", "=q3=Book of Rejuvenation XI", "=q1=#m1# =ds=#c1#", "", "4.20%"};
- { 3, 21295, "", "=q3=Book of Starfire VII", "=q1=#m1# =ds=#c1#", "", "4.00%"};
- { 4, 21306, "", "=q3=Guide: Serpent Sting IX", "=q1=#m1# =ds=#c2#", "", "4.85%"};
- { 5, 21304, "", "=q3=Guide: Multi-Shot V", "=q1=#m1# =ds=#c2#", "", "4.66%"};
- { 6, 21307, "", "=q3=Guide: Aspect of the Hawk VII", "=q1=#m1# =ds=#c2#", "", "4.65%"};
- { 7, 21279, "", "=q3=Tome of Fireball XII", "=q1=#m1# =ds=#c3#", "", "5.15%"};
- { 8, 21214, "", "=q3=Tome of Frostbolt XI", "=q1=#m1# =ds=#c3#", "", "5.10%"};
- { 9, 21280, "", "=q3=Tome of Arcane Missiles VIII", "=q1=#m1# =ds=#c3#", "", "5.03%"};
- { 10, 21288, "", "=q3=Libram: Blessing of Wisdom VI", "=q1=#m1# =ds=#c4#", "", "3.50%"};
- { 11, 21289, "", "=q3=Libram: Blessing of Might VII", "=q1=#m1# =ds=#c4#", "", "3.07%"};
- { 12, 21290, "", "=q3=Libram: Holy Light IX", "=q1=#m1# =ds=#c4#", "", "3.09%"};
- { 13, 21284, "", "=q3=Codex of Greater Heal V", "=q1=#m1# =ds=#c5#", "", "5.15%"};
- { 14, 21287, "", "=q3=Codex of Prayer of Healing V", "=q1=#m1# =ds=#c5#", "", "4.89%"};
- { 15, 21285, "", "=q3=Codex of Renew X", "=q1=#m1# =ds=#c5#", "", "4.91%"};
- { 16, 21300, "", "=q3=Handbook of Backstab IX", "=q1=#m1# =ds=#c6#", "", "4.29%"};
- { 17, 21303, "", "=q3=Handbook of Feint V", "=q1=#m1# =ds=#c6#", "", "4.79%"};
- { 18, 21302, "", "=q3=Handbook of Deadly Poison V", "=q1=#m1# =ds=#c6#", "", "5.47%"};
- { 19, 21291, "", "=q3=Tablet of Healing Wave X", "=q1=#m1# =ds=#c7#", "", "2.05%"};
- { 20, 21292, "", "=q3=Tablet of Strength of Earth Totem V", "=q1=#m1# =ds=#c7#", "", "1.67%"};
- { 21, 21293, "", "=q3=Tablet of Grace of Air Totem III", "=q1=#m1# =ds=#c7#", "", "1.81%"};
- { 22, 21281, "", "=q3=Grimoire of Shadow Bolt X", "=q1=#m1# =ds=#c8#", "", "4.23%"};
- { 23, 21283, "", "=q3=Grimoire of Corruption VII", "=q1=#m1# =ds=#c8#", "", "3.82%"};
- { 24, 21282, "", "=q3=Grimoire of Immolate VIII", "=q1=#m1# =ds=#c8#", "", "4.51%"};
- { 25, 21298, "", "=q3=Manual of Battle Shout VII", "=q1=#m1# =ds=#c9#", "", "4.84%"};
- { 26, 21299, "", "=q3=Manual of Revenge VI", "=q1=#m1# =ds=#c9#", "", "4.78%"};
- { 27, 21297, "", "=q3=Manual of Heroic Strike IX", "=q1=#m1# =ds=#c9#", "", "4.83%"};
-};
-
- ------------------------------------------
- --- Ahn'Qiraj: The Temple of Ahn'Qiraj ---
- ------------------------------------------
-
- AtlasLoot_Data["AQ40Skeram"] = {
- { 1, 21701, "", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "", "11.81%"};
- { 2, 21708, "", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "", "12.85%"};
- { 3, 21698, "", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "", " 10.99%"};
- { 4, 21699, "", "=q4=Barrage Shoulders", "=ds=#s3#, #a3#", "", "11.50%"};
- { 5, 21705, "", "=q4=Boots of the Fallen Prophet", "=ds=#s12#, #a3#", "", "3.33%"};
- { 6, 21814, "", "=q4=Breastplate of Annihilation", "=ds=#s5#, #a4#", "", "11.01%"};
- { 7, 21704, "", "=q4=Boots of the Redeemed Prophecy", "=ds=#s12#, #a4#", "", "7.75%"};
- { 8, 21706, "", "=q4=Boots of the Unwavering Will", "=ds=#s12#, #a4#", "", "12.23%"};
- { 10, 21702, "", "=q4=Amulet of Foul Warding", "=ds=#s2#", "", "12.20%"};
- { 11, 21700, "", "=q4=Pendant of the Qiraji Guardian", "=ds=#s2#", "", "11.57%"};
- { 12, 21707, "", "=q4=Ring of Swarming Thought", "=ds=#s13#", "", "12.57%"};
- { 13, 21703, "", "=q4=Hammer of Ji'zhi", "=ds=#h2#, #w6#", "", "7.14%"};
- { 14, 21128, "", "=q4=Staff of the Qiraji Prophets", "=ds=#w9#", "", " 6.32%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "1.74%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "1.32%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- { 27, 22222, "", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# (300)", "", "5.00%"};
- { 28, 22196, "", "=q4=Thick Obsidian Breastplate", "=ds=#s5#, #a4#"};
- Next = "AQ40Vem";
- };
-
- AtlasLoot_Data["AQ40Vem"] = {
- { 1, 21697, "", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#", "", "14%"};
- { 2, 21694, "", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#", "", "16%"};
- { 3, 21696, "", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#", "", "13%"};
- { 4, 21693, "", "=q4=Guise of the Devourer", "=ds=#s1#, #a2# =q2=#m5#", "", "16%"};
- { 5, 21692, "", "=q4=Triad Girdle", "=ds=#s10#, #a4# =q2=#m5#", "", "16%"};
- { 6, 21695, "", "=q4=Angelista's Touch", "=ds=#s13# =q2=#m5#", "", "14%"};
- { 8, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3# =q2=#m5#", "", "7%"};
- { 9, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3# =q2=#m5#", "", "7%"};
- { 11, 21680, "", "=q4=Vest of Swift Execution", "=ds=#s5#, #a2# =q2=#n115#", "", "21%"};
- { 12, 21603, "", "=q4=Wand of Qiraji Nobility", "=ds=#w12# =q2=#n115#", "", "25%"};
- { 13, 21681, "", "=q4=Ring of the Devoured", "=ds=#s13# =q2=#n115#", "", "17%"};
- { 14, 21685, "", "=q4=Petrified Scarab", "=ds=#s14# =q2=#n115#", "", "21%"};
- { 16, 21689, "", "=q4=Gloves of Ebru", "=ds=#s9#, #a2# =q2=#n116#", "", "18%"};
- { 17, 21691, "", "=q4=Ooze-ridden Gauntlets", "=ds=#s9#, #a4# =q2=#n116#", "", "20%"};
- { 18, 21688, "", "=q4=Boots of the Fallen Hero", "=ds=#s12#, #a4# =q2=#n116#", "", "18%"};
- { 19, 21690, "", "=q4=Angelista's Charm", "=ds=#s2# =q2=#n116#", "", "20%"};
- { 21, 21686, "", "=q4=Mantle of Phrenic Power", "=ds=#s3#, #a1# =q2=#n117#", "", "13%"};
- { 22, 21682, "", "=q4=Bile-Covered Gauntlets", "=ds=#s9#, #a2# =q2=#n117#", "", "19%"};
- { 23, 21684, "", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q2=#n117#", "", "16%"};
- { 24, 21683, "", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q2=#n117#", "", "14%"};
- { 25, 21687, "", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q2=#n117#", "", "20%"};
- Prev = "AQ40Skeram";
- Next = "AQ40Sartura";
- };
-
- AtlasLoot_Data["AQ40Sartura"] = {
- { 1, 21671, "", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "", "13.30%"};
- { 2, 21676, "", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "", "13.02%"};
- { 3, 21648, "", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "", "7.64%"};
- { 4, 21669, "", "=q4=Creeping Vine Helm", "=ds=#s1#, #a2#", "", "12.33%"};
- { 5, 21672, "", "=q4=Gloves of Enforcement", "=ds=#s9#, #a2#", "", "11.87%"};
- { 6, 21675, "", "=q4=Thick Qirajihide Belt", "=ds=#s10#, #a2#", "", "13.26%"};
- { 7, 21668, "", "=q4=Scaled Leggings of Qiraji Fury", "=ds=#s11#, #a3#", "", "4.03%"};
- { 8, 21674, "", "=q4=Gauntlets of Steadfast Determination", "=ds=#s9#, #a4#", "", "11.07%"};
- { 9, 21667, "", "=q4=Legplates of Blazing Light", "=ds=#s11#, #a4#", "", "7.44%"};
- { 11, 21678, "", "=q4=Necklace of Purity", "=ds=#s2#", "", "14.21%"};
- { 12, 21670, "", "=q4=Badge of the Swarmguard", "=ds=#s14#", "", "13.22%"};
- { 13, 21666, "", "=q4=Sartura's Might", "=ds=#s15#", "", "6.47%"};
- { 14, 21673, "", "=q4=Silithid Claw", "=ds=#h3#, #w13#", "", "7.16%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.01%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.02%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40Vem";
- Next = "AQ40Fankriss";
- };
-
- AtlasLoot_Data["AQ40Fankriss"] = {
- { 1, 21627, "", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "", "12.51%"};
- { 2, 21663, "", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "", "12.95%"};
- { 3, 21665, "", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "", "13.25%"};
- { 4, 21645, "", "=q4=Hive Tunneler's Boots", "=ds=#s12#, #a2#", "", "14.04%"};
- { 5, 21651, "", "=q4=Scaled Sand Reaver Leggings", "=ds=#s11#, #a3#", "", "12.91%"};
- { 6, 21639, "", "=q4=Pauldrons of the Unrelenting", "=ds=#s3#, #a4#", "", "14.78%"};
- { 7, 21652, "", "=q4=Silithid Carapace Chestguard", "=ds=#s5#, #a4#", "", "10.29%"};
- { 9, 21647, "", "=q4=Fetish of the Sand Reaver", "=ds=#s14#", "", "13.82%"};
- { 10, 21664, "", "=q4=Barbed Choker", "=ds=#s2#", "", "12.63%"};
- { 11, 22402, "", "=q4=Libram of Grace", "=ds=#s16#, #w16#", "", "4.21%"};
- { 12, 22396, "", "=q4=Totem of Life", "=ds=#s16#, #w15#", "", "1.69%"};
- { 13, 21650, "", "=q4=Ancient Qiraji Ripper", "=ds=#h1#, #w10#", "", " 7.19%"};
- { 14, 21635, "", "=q4=Barb of the Sand Reaver", "=ds=#w7#", "", "6.61%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.84%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.09%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40Sartura";
- Next = "AQ40Viscidus";
- };
-
- AtlasLoot_Data["AQ40Viscidus"] = {
- { 1, 21624, "", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "", "3.90%"};
- { 2, 21626, "", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "", "13.66%"};
- { 3, 21623, "", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "", "5.37%"};
- { 5, 21677, "", "=q4=Ring of the Qiraji Fury", "=ds=#s13#", "", "2.93%"};
- { 6, 21625, "", "=q4=Scarab Brooch", "=ds=#s14#", "", "21.46%"};
- { 7, 22399, "", "=q4=Idol of Health", "=ds=#s16#, #w14#", "", "7.32%"};
- { 8, 21622, "", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "", "15.12%"};
- { 10, 20932, "", "=q4=Qiraji Bindings of Dominance", "=q1=#m1# =ds=#c8#, #c3#, #c7#, #c1#, #c4#", "", "100%"};
- { 11, 20928, "", "=q4=Qiraji Bindings of Command", "=q1=#m1# =ds=#c5#, #c6#, #c9#, #c2#", "", "100%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "3.19%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.86%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40Fankriss";
- Next = "AQ40Huhuran";
- };
-
- AtlasLoot_Data["AQ40Huhuran"] = {
- { 1, 21619, "", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "", "12.01%"};
- { 2, 21621, "", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "", "12.56%"};
- { 3, 21617, "", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "", "11.97%"};
- { 4, 21618, "", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "", "10.34%"};
- { 6, 21620, "", "=q4=Ring of the Martyr", "=ds=#s13#", "", "12.97%"};
- { 7, 21616, "", "=q4=Huhuran's Stinger", "=ds=#w2#", "", "5.71%"};
- { 9, 20932, "", "=q4=Qiraji Bindings of Dominance", "=q1=#m1# =ds=#c8#, #c3#, #c7#, #c1#, #c4#", "", "100%"};
- { 10, 20928, "", "=q4=Qiraji Bindings of Command", "=q1=#m1# =ds=#c5#, #c6#, #c9#, #c2#", "", "100%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.31%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.11%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40Viscidus";
- Next = "AQ40Emperors";
- };
-
- AtlasLoot_Data["AQ40Emperors"] = {
- { 1, 20930, "", "=q4=Vek'lor's Diadem", "=q1=#m1# =ds=#c7#, #c1#, #c6#, #c2#, #c4#", "", "100%"};
- { 2, 21600, "", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "", "15.77%"};
- { 3, 21602, "", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "", "15.95%"};
- { 4, 21599, "", "=q4=Vek'lor's Gloves of Devastation", "=ds=#s9#, #a3#", "", "15.77%"};
- { 5, 21598, "", "=q4=Royal Qiraji Belt", "=ds=#s10#, #a4#", "", "9.84%"};
- { 6, 21597, "", "=q4=Royal Scepter of Vek'lor", "=ds=#s15#", "", "6.99%"};
- { 7, 21601, "", "=q4=Ring of Emperor Vek'lor", "=ds=#s13#", "", "17.27%"};
- { 8, 20735, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)", "", "6.62%"};
- { 11, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.25%"};
- { 12, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 13, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 14, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 15, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- { 16, 20926, "", "=q4=Vek'nilash's Circlet", "=q1=#m1# =ds=#c8#, #c3#, #c5#, #c9#", "", "100%"};
- { 17, 21604, "", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "", "12.51%"};
- { 18, 21605, "", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "", "15.45%"};
- { 19, 21609, "", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "", "13.35%"};
- { 20, 21607, "", "=q4=Grasp of the Fallen Emperor", "=ds=#s10#, #a3#", "", "2.72%"};
- { 21, 21606, "", "=q4=Belt of the Fallen Emperor", "=ds=#s10#, #a4#", "", "12.22%"};
- { 22, 21679, "", "=q4=Kalimdor's Revenge", "=ds=#h2#, #w10#", "", "9.25%"};
- { 23, 21608, "", "=q4=Amulet of Vek'nilash", "=ds=#s2#", "", "14.25%"};
- { 24, 20726, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)", "", "6.24%"};
- { 26, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.00%"};
- { 27, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 28, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 29, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- Prev = "AQ40Huhuran";
- Next = "AQ40Ouro";
- };
-
- AtlasLoot_Data["AQ40Ouro"] = {
- { 1, 21615, "", "=q4=Don Rigoberto's Lost Hat", "=ds=#s1#, #a1#", "", "28.63%"};
- { 2, 21611, "", "=q4=Burrower Bracers", "=ds=#s8#, #a1#", "", "24.44%"};
- { 3, 23558, "", "=q4=The Burrower's Shell", "=ds=#s14#", "", "2.90%"};
- { 4, 23570, "", "=q4=Jom Gabbar", "=ds=#s14#", "", "2.80%"};
- { 5, 23557, "", "=q4=Larvae of the Great Worm", "=ds=#w5#", "", "3.95%"};
- { 6, 21610, "", "=q4=Wormscale Blocker", "=ds=#w8#", "", "16.54%"};
- { 8, 20927, "", "=q4=Ouro's Intact Hide", "=q1=#m1# =ds=#c3#, #c5#, #c6#, #c9#", "", "100%"};
- { 9, 20931, "", "=q4=Skin of the Great Sandworm", "=q1=#m1# =ds=#c8#, #c7#, #c1#, #c2#, #c4#", "", "100%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.20%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.10%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#"};
- Prev = "AQ40Emperors";
- Next = "AQ40CThun";
- };
-
- AtlasLoot_Data["AQ40CThun"] = {
- { 1, 21583, "", "=q4=Cloak of Clarity", "=ds=#s4#", "", "14.45%"};
- { 2, 22731, "", "=q4=Cloak of the Devoured", "=ds=#s4#", "", "16.34%"};
- { 3, 21585, "", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "", "13.63%"};
- { 4, 22730, "", "=q4=Eyestalk Waist Cord", "=ds=#s10#, #a1#", "", "10.41%"};
- { 5, 21582, "", "=q4=Grasp of the Old God", "=ds=#s10#, #a1#", "", "15.04%"};
- { 6, 21586, "", "=q4=Belt of Never-ending Agony", "=ds=#s10#, #a2#", "", "11.24%"};
- { 7, 21581, "", "=q4=Gauntlets of Annihilation", "=ds=#s9#, #a4#", "", "12.04%"};
- { 9, 22732, "", "=q4=Mark of C'Thun", "=ds=#s2#", "", "10.62%"};
- { 10, 21596, "", "=q4=Ring of the Godslayer", "=ds=#s13#", "", "11.83%"};
- { 11, 21579, "", "=q4=Vanquished Tentacle of C'Thun", "=ds=#s14#", "", "12.18%"};
- { 12, 21126, "", "=q4=Death's Sting", "=ds=#h1#, #w4#", "", "6.84%"};
- { 13, 21134, "", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "", "5.93%"};
- { 14, 21839, "", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "", "4.75%"};
- { 16, 20933, "", "=q4=Husk of the Old God", "=q1=#m1# =ds=#c8#, #c3#, #c1#, #c5#", "", "100%"};
- { 17, 20929, "", "=q4=Carapace of the Old God", "=q1=#m1# =ds=#c7#, #c6#, #c9#, #c2#, #c4#", "", "100%"};
- { 19, 21221, "", "=q4=Eye of C'Thun", "=ds=#m2#", "", "100%"};
- { 20, 21710, "", "=q4=Cloak of the Fallen God", "=q1=#m4#: =ds=#s4#"};
- { 21, 21712, "", "=q4=Amulet of the Fallen God", "=q1=#m4#: =ds=#s2#"};
- { 22, 21709, "", "=q4=Ring of the Fallen God", "=q1=#m4#: =ds=#s13#"};
- { 24, 22734, "", "=q1=Base of Atiesh", "=ds=#m3#"};
- { 25, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"};
- { 26, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"};
- { 27, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"};
- { 28, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"};
- Prev = "AQ40Ouro";
- };
-
- AtlasLoot_Data["AQ40Trash1"] = {
- { 1, 21838, "", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "", "0.20%"};
- { 2, 21888, "", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "", "0.16%"};
- { 3, 21889, "", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q1=#m1# =ds=#c4#", "", "0.39%"};
- { 4, 21836, "", "=q4=Ritssyn's Ring of Chaos", "=ds=#s13#", "", "0.18%"};
- { 5, 21891, "", "=q4=Shard of the Fallen Star", "=ds=#s14#", "", "0.59%"};
- { 6, 21856, "", "=q4=Neretzek, The Blood Drinker", "=ds=#h2#, #w1#", "", "0.20%"};
- { 7, 21837, "", "=q4=Anubisath Warhammer", "=ds=#h1#, #w6#", "", "0.21%"};
- { 9, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"};
- { 10, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"};
- { 16, 21218, "", "=q3=Blue Qiraji Resonating Crystal", "=ds=#e12#", "", "10.64%"};
- { 17, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e12#", "", "12.15%"};
- { 18, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=ds=#e12#", "", "11.62%"};
- { 19, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=ds=#e12#", "", "1.39%"};
- Next = "AQ40Trash2";
- };
-
- AtlasLoot_Data["AQ40Trash2"] = {
- { 1, 20876, "", "=q3=Idol of Death", "=ds=#e15#", "", "0.26%"};
- { 2, 20879, "", "=q3=Idol of Life", "=ds=#e15#", "", "0.29%"};
- { 3, 20875, "", "=q3=Idol of Night", "=ds=#e15#", "", "0.29%"};
- { 4, 20878, "", "=q3=Idol of Rebirth", "=ds=#e15#", "", "0.28%"};
- { 5, 20881, "", "=q3=Idol of Strife", "=ds=#e15#", "", "0.21%"};
- { 6, 20877, "", "=q3=Idol of the Sage", "=ds=#e15#", "", "0.33%"};
- { 7, 20874, "", "=q3=Idol of the Sun", "=ds=#e15#", "", "0.21%"};
- { 8, 20882, "", "=q3=Idol of War", "=ds=#e15#", "", "0.30%"};
- { 10, 21230, "", "=q1=Ancient Qiraji Artifact", "=ds=#m2#"};
- { 12, 21762, "", "=q1=Greater Scarab Coffer Key", "=ds=#e9#", "", "7.03%"};
- { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"};
- { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"};
- { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"};
- { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"};
- { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"};
- { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
- { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
- { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
- Prev = "AQ40Trash1";
- };
-
- -------------------
- --- AQ Enchants ---
- -------------------
-
- AtlasLoot_Data["AQEnchants"] = {
- { 1, 20728, "", "=q3=Formula: Enchant Gloves - Frost Power", "=ds=#p4# (300)"};
- { 2, 20731, "", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# (300)"};
- { 3, 20734, "", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# (300)"};
- { 4, 20729, "", "=q3=Formula: Enchant Gloves - Fire Power", "=ds=#p4# (300)"};
- { 5, 20736, "", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# (300)"};
- { 6, 20730, "", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# (300)"};
- { 7, 20727, "", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# (300)"};
- };
-
- AtlasLoot_Data["AQOpening"] = {
- { 1, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#"};
- { 2, 21530, "", "=q4=Onyx Embedded Leggings", "=ds=#s11#, #a3#"};
- { 3, 21529, "", "=q4=Amulet of Shadow Shielding", "=ds=#s2#"};
- { 5, 21139, "", "=q1=Green Scepter Shard", "=ds=#m3#"};
- { 6, 21532, "", "=q4=Drudge Boots", "=ds=#s12#, #a2#"};
- { 7, 21531, "", "=q4=Drake Tooth Necklace", "=ds=#s2#"};
- { 9, 21137, "", "=q1=Blue Scepter Shard", "=ds=#m3#"};
- { 10, 21517, "", "=q4=Gnomish Turban of Psychic Might", "=ds=#s1#, #a1#"};
- { 11, 21527, "", "=q4=Darkwater Robes", "=ds=#s5#, #a1#"};
- { 12, 21526, "", "=q4=Band of Icy Depths", "=ds=#s13#"};
- { 13, 21025, "", "=q4=Recipe: Dirge's Kickin' Chimaerok Chops", "=ds=#p3# (300)"};
- { 16, 21175, "", "=q1=The Scepter of the Shifting Sands", "=ds=#m3#"};
- { 17, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=ds=#e12#"};
- { 18, 21522, "", "=q4=Shadowsong's Sorrow", "=ds=#h1#, #w4#"};
- { 19, 21523, "", "=q4=Fang of Korialstrasz", "=ds=#h3#, #w4#"};
- { 20, 21520, "", "=q4=Ravencrest's Legacy", "=ds=#h1#, #w10#"};
- { 21, 21521, "", "=q4=Runesword of the Red", "=ds=#h3#, #w10#"};
- };
-
+ AtlasLoot_Data["AQ20Kurinnaxx25Man"] = {
+ { 1, 321499, "", "=q4=Vestments of the Shifting Sands", "=ds=#s5#, #a1#", "", "7.34%"};
+ { 2, 321498, "", "=q4=Qiraji Sacrificial Dagger", "=ds=#h1#, #w4#", "", "7.53%"};
+ { 4, 321500, "", "=q3=Belt of the Inquisition", "=ds=#s10#, #a1#", "", "14.84%"};
+ { 5, 321501, "", "=q3=Toughened Silithid Hide Gloves", "=ds=#s9#, #a2#", "", "12.91%"};
+ { 6, 321502, "", "=q3=Sand Reaver Wristguards", "=ds=#s8#, #a3#", "", "13.79%"};
+ { 7, 321503, "", "=q3=Belt of the Sand Reaver", "=ds=#s10#, #a4#", "", "14.38%"};
+ { 9, 22217, "", "=q1=Kurinnaxx's Venom Sac", "=ds=#m3#", "", "100%"};
+ { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "30.83%"};
+ { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "30.25%"};
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.98%"};
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "7.80%"};
+ Next = "AQ20Rajaxx25Man";
+ };
+
+ AtlasLoot_Data["AQ20Rajaxx25Man"] = {
+ { 1, 321493, "", "=q4=Boots of the Vanguard", "=ds=#s12#, #a2#", "", "8.13%"};
+ { 2, 321492, "", "=q4=Manslayer of the Qiraji", "=ds=#h2#, #w10#", "", "10.04%"};
+ { 4, 321496, "", "=q3=Bracers of Qiraji Command", "=ds=#s8#, #a1#", "", "15.79%"};
+ { 5, 321494, "", "=q3=Southwind's Grasp", "=ds=#s10#, #a2#", "", "15.13%"};
+ { 6, 321497, "", "=q3=Boots of the Qiraji General", "=ds=#s12#, #a3#", "", "15.45%"};
+ { 7, 321495, "", "=q3=Legplates of the Qiraji Command", "=ds=#s11#, #a4#", "", "15.47%"};
+ { 9, 0, "INV_Box_01", "=q6="..AL["Rajaxx's Captains"], ""};
+ { 10, 221810, "", "=q3=Treads of the Wandering Nomad", "=ds=#s12#, #a1#", "", "3.11%"};
+ { 11, 221809, "", "=q3=Fury of the Forgotten Swarm", "=ds=#s2#", "", "3.20%"};
+ { 12, 221806, "", "=q3=Gavel of Qiraji Authority", "=ds=#h2#, #w6#", "", "3.04%"};
+ { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "36.51%"};
+ { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "33.97%"};
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "8.82%"};
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.56%"};
+ { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Lieutenant General Andorov"], ""};
+ { 22, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)"};
+ { 23, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)"};
+ Prev = "AQ20Kurinnaxx25Man";
+ Next = "AQ20Moam25Man";
+ };
+
+ AtlasLoot_Data["AQ20Moam25Man"] = {
+ { 1, 321472, "", "=q4=Dustwind Turban", "=ds=#s1#, #a1#", "", "7.76%"};
+ { 2, 321467, "", "=q4=Thick Silithid Chestguard", "=ds=#s5#, #a2#", "", "6.76%"};
+ { 3, 321479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "7.12%"};
+ { 4, 321471, "", "=q4=Talon of Furious Concentration", "=ds=#s15#", "", "7.39%"};
+ { 6, 321470, "", "=q3=Cloak of the Savior", "=ds=#s4#", "", "14.23%"};
+ { 7, 321468, "", "=q3=Mantle of Maz'Nadir", "=ds=#s3#, #a1#", "", "15.86%"};
+ { 8, 321455, "", "=q3=Southwind Helm", "=ds=#s1#, #a2#", "", "14.08%"};
+ { 9, 321474, "", "=q3=Chitinous Shoulderguards", "=ds=#s3#, #a2#", "", "15.25%"};
+ { 10, 221469, "", "=q3=Gauntlets of Southwind", "=ds=#s9#, #a2#", "", "15.28%"};
+ { 11, 221476, "", "=q3=Obsidian Scaled Leggings", "=ds=#s11#, #a3#", "", "6.81%"};
+ { 12, 221475, "", "=q3=Legplates of the Destroyer", "=ds=#s11#, #a4#", "", "10.39%"};
+ { 13, 221477, "", "=q3=Ring of Fury", "=ds=#s13#", "", "14.42%"};
+ { 14, 221473, "", "=q3=Eye of Moam", "=ds=#s14#", "", "14.74%"};
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "36.38%"};
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "33.16%"};
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.56%"};
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.34%"};
+ { 21, 22220, "", "=q3=Plans: Black Grasp of the Destroyer", "=ds=#p2# (300)", "", "4.11%"};
+ { 22, 22194, "", "=q4=Black Grasp of the Destroyer", "=ds=#s9#, #a3#"};
+ Prev = "AQ20Rajaxx25Man";
+ Next = "AQ20Buru25Man";
+ };
+
+ AtlasLoot_Data["AQ20Buru25Man"] = {
+ { 1, 321487, "", "=q4=Slimy Scaled Gauntlets", "=ds=#s9#, #a3#", "", "2.64%"};
+ { 2, 321486, "", "=q4=Gloves of the Swarm", "=ds=#s9#, #a4#", "", "5.22%"};
+ { 3, 321485, "", "=q4=Buru's Skull Fragment", "=ds=#w8#", "", "7.88%"};
+ { 5, 321489, "", "=q3=Quicksand Waders", "=ds=#s12#, #a1#", "", "15.95%"};
+ { 6, 321491, "", "=q3=Scaled Bracers of the Gorger", "=ds=#s8#, #a2#", "", "16.51%"};
+ { 7, 321490, "", "=q3=Slime Kickers", "=ds=#s12#, #a4#", "", "15.99%"};
+ { 8, 321488, "", "=q3=Fetish of Chitinous Spikes", "=ds=#s14#", "", "17.22%"};
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.31%"};
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.98%"};
+ { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "9.77%"};
+ { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "9.84%"};
+ { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"};
+ { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "25.58%"};
+ Prev = "AQ20Moam25Man";
+ Next = "AQ20Ayamiss";
+ };
+
+ AtlasLoot_Data["AQ20Ayamiss25Man"] = {
+ { 1, 321479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "6.18%"};
+ { 2, 321466, "", "=q4=Stinger of Ayamiss", "=ds=#h3#, #w6#", "", "2.06%"};
+ { 3, 321478, "", "=q4=Bow of Taut Sinew", "=ds=#w2#", "", "10.14%"};
+ { 5, 321484, "", "=q3=Helm of Regrowth", "=ds=#s1#, #a2#", "", "15.85%"};
+ { 6, 321480, "", "=q3=Scaled Silithid Gauntlets", "=ds=#s9#, #a3#", "", "17.10%"};
+ { 7, 321482, "", "=q3=Boots of the Fiery Sands", "=ds=#s12#, #a3#", "", "4.92%"};
+ { 8, 321481, "", "=q3=Boots of the Desert Protector", "=ds=#s12#, #a4#", "", "11.08%"};
+ { 9, 321483, "", "=q3=Ring of the Desert Winds", "=ds=#s13#", "", "16.32%"};
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.24%"};
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.21%"};
+ { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "8.85%"};
+ { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "10.97%"};
+ { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"};
+ { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "27.50%"};
+ Prev = "AQ20Buru25Man";
+ Next = "AQ20Ossirian25Man";
+ };
+
+ AtlasLoot_Data["AQ20Ossirian25Man"] = {
+ { 1, 321456, "", "=q4=Sandstorm Cloak", "=ds=#s4#", "", "10.89%"};
+ { 2, 321464, "", "=q4=Shackles of the Unscarred", "=ds=#s8#, #a1#", "", "12.62%"};
+ { 3, 321462, "", "=q4=Gloves of Dark Wisdom", "=ds=#s9#, #a1#", "", "11.89%"};
+ { 4, 321461, "", "=q4=Leggings of the Black Blizzard", "=ds=#s11#, #a1#", "", "12.83%"};
+ { 5, 321458, "", "=q4=Gauntlets of New Life", "=ds=#s9#, #a2#", "", "13.25%"};
+ { 6, 321454, "", "=q4=Runic Stone Shoulders", "=ds=#s3#, #a3#", "", "4.10%"};
+ { 7, 321463, "", "=q4=Ossirian's Binding", "=ds=#s10#, #a3#", "", "12.27%"};
+ { 8, 321460, "", "=q4=Helm of Domination", "=ds=#s1#, #a4#", "", "12.18%"};
+ { 9, 321453, "", "=q4=Mantle of the Horusath", "=ds=#s3#, #a4#", "", "6.96%"};
+ { 10, 221457, "", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "", "10.74%"};
+ { 11, 221715, "", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "", "5.95%"};
+ { 12, 221459, "", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "", "6.12%"};
+ { 13, 221452, "", "=q4=Staff of the Ruins", "=ds=#w9#", "", "10.32%"};
+ { 16, 21220, "", "=q4=Head of Ossirian the Unscarred", "=ds=#m2#", "", "100%"};
+ { 17, 21504, "", "=q4=Charm of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
+ { 18, 21507, "", "=q4=Amulet of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
+ { 19, 21505, "", "=q4=Choker of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
+ { 20, 21506, "", "=q4=Pendant of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
+ { 22, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "35.27%"};
+ { 23, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "30.69%"};
+ { 24, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "9.65%"};
+ { 25, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.53%"};
+ Prev = "AQ20Ayamiss25Man";
+ };
+
+ AtlasLoot_Data["AQ20Trash25Man"] = {
+ { 1, 20873, "", "=q3=Alabaster Idol", "=ds=#e15#", "", "0.39%"};
+ { 2, 20869, "", "=q3=Amber Idol", "=ds=#e15#", "", "0.36%"};
+ { 3, 20866, "", "=q3=Azure Idol", "=ds=#e15#", "", "0.48%"};
+ { 4, 20870, "", "=q3=Jasper Idol", "=ds=#e15#", "", "0.52%"};
+ { 5, 20868, "", "=q3=Lambent Idol", "=ds=#e15#", "", "0.48%"};
+ { 6, 20871, "", "=q3=Obsidian Idol", "=ds=#e15#", "", "0.41%"};
+ { 7, 20867, "", "=q3=Onyx Idol", "=ds=#e15#", "", "0.36%"};
+ { 8, 20872, "", "=q3=Vermillion Idol", "=ds=#e15#", "", "0.31%"};
+ { 10, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"};
+ { 11, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"};
+ { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"};
+ { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"};
+ { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"};
+ { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"};
+ { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"};
+ { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
+ { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
+ { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
+ { 25, 21761, "", "=q1=Scarab Coffer Key", "=ds=#e9#", "", "7.27%"};
+ };
+
+ AtlasLoot_Data["AQ20ClassBooks25Man"] = {
+ { 1, 21294, "", "=q3=Book of Healing Touch XI", "=q1=#m1# =ds=#c1#", "", "4.12%"};
+ { 2, 21296, "", "=q3=Book of Rejuvenation XI", "=q1=#m1# =ds=#c1#", "", "4.20%"};
+ { 3, 21295, "", "=q3=Book of Starfire VII", "=q1=#m1# =ds=#c1#", "", "4.00%"};
+ { 4, 21306, "", "=q3=Guide: Serpent Sting IX", "=q1=#m1# =ds=#c2#", "", "4.85%"};
+ { 5, 21304, "", "=q3=Guide: Multi-Shot V", "=q1=#m1# =ds=#c2#", "", "4.66%"};
+ { 6, 21307, "", "=q3=Guide: Aspect of the Hawk VII", "=q1=#m1# =ds=#c2#", "", "4.65%"};
+ { 7, 21279, "", "=q3=Tome of Fireball XII", "=q1=#m1# =ds=#c3#", "", "5.15%"};
+ { 8, 21214, "", "=q3=Tome of Frostbolt XI", "=q1=#m1# =ds=#c3#", "", "5.10%"};
+ { 9, 21280, "", "=q3=Tome of Arcane Missiles VIII", "=q1=#m1# =ds=#c3#", "", "5.03%"};
+ { 10, 21288, "", "=q3=Libram: Blessing of Wisdom VI", "=q1=#m1# =ds=#c4#", "", "3.50%"};
+ { 11, 21289, "", "=q3=Libram: Blessing of Might VII", "=q1=#m1# =ds=#c4#", "", "3.07%"};
+ { 12, 21290, "", "=q3=Libram: Holy Light IX", "=q1=#m1# =ds=#c4#", "", "3.09%"};
+ { 13, 21284, "", "=q3=Codex of Greater Heal V", "=q1=#m1# =ds=#c5#", "", "5.15%"};
+ { 14, 21287, "", "=q3=Codex of Prayer of Healing V", "=q1=#m1# =ds=#c5#", "", "4.89%"};
+ { 15, 21285, "", "=q3=Codex of Renew X", "=q1=#m1# =ds=#c5#", "", "4.91%"};
+ { 16, 21300, "", "=q3=Handbook of Backstab IX", "=q1=#m1# =ds=#c6#", "", "4.29%"};
+ { 17, 21303, "", "=q3=Handbook of Feint V", "=q1=#m1# =ds=#c6#", "", "4.79%"};
+ { 18, 21302, "", "=q3=Handbook of Deadly Poison V", "=q1=#m1# =ds=#c6#", "", "5.47%"};
+ { 19, 21291, "", "=q3=Tablet of Healing Wave X", "=q1=#m1# =ds=#c7#", "", "2.05%"};
+ { 20, 21292, "", "=q3=Tablet of Strength of Earth Totem V", "=q1=#m1# =ds=#c7#", "", "1.67%"};
+ { 21, 21293, "", "=q3=Tablet of Grace of Air Totem III", "=q1=#m1# =ds=#c7#", "", "1.81%"};
+ { 22, 21281, "", "=q3=Grimoire of Shadow Bolt X", "=q1=#m1# =ds=#c8#", "", "4.23%"};
+ { 23, 21283, "", "=q3=Grimoire of Corruption VII", "=q1=#m1# =ds=#c8#", "", "3.82%"};
+ { 24, 21282, "", "=q3=Grimoire of Immolate VIII", "=q1=#m1# =ds=#c8#", "", "4.51%"};
+ { 25, 21298, "", "=q3=Manual of Battle Shout VII", "=q1=#m1# =ds=#c9#", "", "4.84%"};
+ { 26, 21299, "", "=q3=Manual of Revenge VI", "=q1=#m1# =ds=#c9#", "", "4.78%"};
+ { 27, 21297, "", "=q3=Manual of 25Man Strike IX", "=q1=#m1# =ds=#c9#", "", "4.83%"};
+ };
- ------------------------------------------
- --- Ahn'Qiraj: The Temple of Ahn'Qiraj ---
- ------------------------------------------
-
- AtlasLoot_Data["AQ40Skeram"] = {
- { 1, 21701, "", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "", "11.81%"};
- { 2, 21708, "", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "", "12.85%"};
- { 3, 21698, "", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "", " 10.99%"};
- { 4, 21699, "", "=q4=Barrage Shoulders", "=ds=#s3#, #a3#", "", "11.50%"};
- { 5, 21705, "", "=q4=Boots of the Fallen Prophet", "=ds=#s12#, #a3#", "", "3.33%"};
- { 6, 21814, "", "=q4=Breastplate of Annihilation", "=ds=#s5#, #a4#", "", "11.01%"};
- { 7, 21704, "", "=q4=Boots of the Redeemed Prophecy", "=ds=#s12#, #a4#", "", "7.75%"};
- { 8, 21706, "", "=q4=Boots of the Unwavering Will", "=ds=#s12#, #a4#", "", "12.23%"};
- { 10, 21702, "", "=q4=Amulet of Foul Warding", "=ds=#s2#", "", "12.20%"};
- { 11, 21700, "", "=q4=Pendant of the Qiraji Guardian", "=ds=#s2#", "", "11.57%"};
- { 12, 21707, "", "=q4=Ring of Swarming Thought", "=ds=#s13#", "", "12.57%"};
- { 13, 21703, "", "=q4=Hammer of Ji'zhi", "=ds=#h2#, #w6#", "", "7.14%"};
- { 14, 21128, "", "=q4=Staff of the Qiraji Prophets", "=ds=#w9#", "", " 6.32%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "1.74%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "1.32%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- { 27, 22222, "", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# (300)", "", "5.00%"};
- { 28, 22196, "", "=q4=Thick Obsidian Breastplate", "=ds=#s5#, #a4#"};
- Next = "AQ40Vem";
- };
-
- AtlasLoot_Data["AQ40Vem"] = {
- { 1, 21697, "", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#", "", "14%"};
- { 2, 21694, "", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#", "", "16%"};
- { 3, 21696, "", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#", "", "13%"};
- { 4, 21693, "", "=q4=Guise of the Devourer", "=ds=#s1#, #a2# =q2=#m5#", "", "16%"};
- { 5, 21692, "", "=q4=Triad Girdle", "=ds=#s10#, #a4# =q2=#m5#", "", "16%"};
- { 6, 21695, "", "=q4=Angelista's Touch", "=ds=#s13# =q2=#m5#", "", "14%"};
- { 8, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3# =q2=#m5#", "", "7%"};
- { 9, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3# =q2=#m5#", "", "7%"};
- { 11, 21680, "", "=q4=Vest of Swift Execution", "=ds=#s5#, #a2# =q2=#n115#", "", "21%"};
- { 12, 21603, "", "=q4=Wand of Qiraji Nobility", "=ds=#w12# =q2=#n115#", "", "25%"};
- { 13, 21681, "", "=q4=Ring of the Devoured", "=ds=#s13# =q2=#n115#", "", "17%"};
- { 14, 21685, "", "=q4=Petrified Scarab", "=ds=#s14# =q2=#n115#", "", "21%"};
- { 16, 21689, "", "=q4=Gloves of Ebru", "=ds=#s9#, #a2# =q2=#n116#", "", "18%"};
- { 17, 21691, "", "=q4=Ooze-ridden Gauntlets", "=ds=#s9#, #a4# =q2=#n116#", "", "20%"};
- { 18, 21688, "", "=q4=Boots of the Fallen Hero", "=ds=#s12#, #a4# =q2=#n116#", "", "18%"};
- { 19, 21690, "", "=q4=Angelista's Charm", "=ds=#s2# =q2=#n116#", "", "20%"};
- { 21, 21686, "", "=q4=Mantle of Phrenic Power", "=ds=#s3#, #a1# =q2=#n117#", "", "13%"};
- { 22, 21682, "", "=q4=Bile-Covered Gauntlets", "=ds=#s9#, #a2# =q2=#n117#", "", "19%"};
- { 23, 21684, "", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q2=#n117#", "", "16%"};
- { 24, 21683, "", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q2=#n117#", "", "14%"};
- { 25, 21687, "", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q2=#n117#", "", "20%"};
- Prev = "AQ40Skeram";
- Next = "AQ40Sartura";
- };
-
- AtlasLoot_Data["AQ40Sartura"] = {
- { 1, 21671, "", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "", "13.30%"};
- { 2, 21676, "", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "", "13.02%"};
- { 3, 21648, "", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "", "7.64%"};
- { 4, 21669, "", "=q4=Creeping Vine Helm", "=ds=#s1#, #a2#", "", "12.33%"};
- { 5, 21672, "", "=q4=Gloves of Enforcement", "=ds=#s9#, #a2#", "", "11.87%"};
- { 6, 21675, "", "=q4=Thick Qirajihide Belt", "=ds=#s10#, #a2#", "", "13.26%"};
- { 7, 21668, "", "=q4=Scaled Leggings of Qiraji Fury", "=ds=#s11#, #a3#", "", "4.03%"};
- { 8, 21674, "", "=q4=Gauntlets of Steadfast Determination", "=ds=#s9#, #a4#", "", "11.07%"};
- { 9, 21667, "", "=q4=Legplates of Blazing Light", "=ds=#s11#, #a4#", "", "7.44%"};
- { 11, 21678, "", "=q4=Necklace of Purity", "=ds=#s2#", "", "14.21%"};
- { 12, 21670, "", "=q4=Badge of the Swarmguard", "=ds=#s14#", "", "13.22%"};
- { 13, 21666, "", "=q4=Sartura's Might", "=ds=#s15#", "", "6.47%"};
- { 14, 21673, "", "=q4=Silithid Claw", "=ds=#h3#, #w13#", "", "7.16%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.01%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.02%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40Vem";
- Next = "AQ40Fankriss";
- };
-
- AtlasLoot_Data["AQ40Fankriss"] = {
- { 1, 21627, "", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "", "12.51%"};
- { 2, 21663, "", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "", "12.95%"};
- { 3, 21665, "", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "", "13.25%"};
- { 4, 21645, "", "=q4=Hive Tunneler's Boots", "=ds=#s12#, #a2#", "", "14.04%"};
- { 5, 21651, "", "=q4=Scaled Sand Reaver Leggings", "=ds=#s11#, #a3#", "", "12.91%"};
- { 6, 21639, "", "=q4=Pauldrons of the Unrelenting", "=ds=#s3#, #a4#", "", "14.78%"};
- { 7, 21652, "", "=q4=Silithid Carapace Chestguard", "=ds=#s5#, #a4#", "", "10.29%"};
- { 9, 21647, "", "=q4=Fetish of the Sand Reaver", "=ds=#s14#", "", "13.82%"};
- { 10, 21664, "", "=q4=Barbed Choker", "=ds=#s2#", "", "12.63%"};
- { 11, 22402, "", "=q4=Libram of Grace", "=ds=#s16#, #w16#", "", "4.21%"};
- { 12, 22396, "", "=q4=Totem of Life", "=ds=#s16#, #w15#", "", "1.69%"};
- { 13, 21650, "", "=q4=Ancient Qiraji Ripper", "=ds=#h1#, #w10#", "", " 7.19%"};
- { 14, 21635, "", "=q4=Barb of the Sand Reaver", "=ds=#w7#", "", "6.61%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.84%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.09%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40Sartura";
- Next = "AQ40Viscidus";
- };
-
- AtlasLoot_Data["AQ40Viscidus"] = {
- { 1, 21624, "", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "", "3.90%"};
- { 2, 21626, "", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "", "13.66%"};
- { 3, 21623, "", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "", "5.37%"};
- { 5, 21677, "", "=q4=Ring of the Qiraji Fury", "=ds=#s13#", "", "2.93%"};
- { 6, 21625, "", "=q4=Scarab Brooch", "=ds=#s14#", "", "21.46%"};
- { 7, 22399, "", "=q4=Idol of Health", "=ds=#s16#, #w14#", "", "7.32%"};
- { 8, 21622, "", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "", "15.12%"};
- { 10, 20932, "", "=q4=Qiraji Bindings of Dominance", "=q1=#m1# =ds=#c8#, #c3#, #c7#, #c1#, #c4#", "", "100%"};
- { 11, 20928, "", "=q4=Qiraji Bindings of Command", "=q1=#m1# =ds=#c5#, #c6#, #c9#, #c2#", "", "100%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "3.19%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.86%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40Fankriss";
- Next = "AQ40Huhuran";
- };
-
- AtlasLoot_Data["AQ40Huhuran"] = {
- { 1, 21619, "", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "", "12.01%"};
- { 2, 21621, "", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "", "12.56%"};
- { 3, 21617, "", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "", "11.97%"};
- { 4, 21618, "", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "", "10.34%"};
- { 6, 21620, "", "=q4=Ring of the Martyr", "=ds=#s13#", "", "12.97%"};
- { 7, 21616, "", "=q4=Huhuran's Stinger", "=ds=#w2#", "", "5.71%"};
- { 9, 20932, "", "=q4=Qiraji Bindings of Dominance", "=q1=#m1# =ds=#c8#, #c3#, #c7#, #c1#, #c4#", "", "100%"};
- { 10, 20928, "", "=q4=Qiraji Bindings of Command", "=q1=#m1# =ds=#c5#, #c6#, #c9#, #c2#", "", "100%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.31%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.11%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40Viscidus";
- Next = "AQ40Emperors";
- };
-
- AtlasLoot_Data["AQ40Emperors"] = {
- { 1, 20930, "", "=q4=Vek'lor's Diadem", "=q1=#m1# =ds=#c7#, #c1#, #c6#, #c2#, #c4#", "", "100%"};
- { 2, 21600, "", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "", "15.77%"};
- { 3, 21602, "", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "", "15.95%"};
- { 4, 21599, "", "=q4=Vek'lor's Gloves of Devastation", "=ds=#s9#, #a3#", "", "15.77%"};
- { 5, 21598, "", "=q4=Royal Qiraji Belt", "=ds=#s10#, #a4#", "", "9.84%"};
- { 6, 21597, "", "=q4=Royal Scepter of Vek'lor", "=ds=#s15#", "", "6.99%"};
- { 7, 21601, "", "=q4=Ring of Emperor Vek'lor", "=ds=#s13#", "", "17.27%"};
- { 8, 20735, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)", "", "6.62%"};
- { 11, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.25%"};
- { 12, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
- { 13, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
- { 14, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
- { 15, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- { 16, 20926, "", "=q4=Vek'nilash's Circlet", "=q1=#m1# =ds=#c8#, #c3#, #c5#, #c9#", "", "100%"};
- { 17, 21604, "", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "", "12.51%"};
- { 18, 21605, "", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "", "15.45%"};
- { 19, 21609, "", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "", "13.35%"};
- { 20, 21607, "", "=q4=Grasp of the Fallen Emperor", "=ds=#s10#, #a3#", "", "2.72%"};
- { 21, 21606, "", "=q4=Belt of the Fallen Emperor", "=ds=#s10#, #a4#", "", "12.22%"};
- { 22, 21679, "", "=q4=Kalimdor's Revenge", "=ds=#h2#, #w10#", "", "9.25%"};
- { 23, 21608, "", "=q4=Amulet of Vek'nilash", "=ds=#s2#", "", "14.25%"};
- { 24, 20726, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)", "", "6.24%"};
- { 26, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.00%"};
- { 27, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
- { 28, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
- { 29, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- Prev = "AQ40Huhuran";
- Next = "AQ40Ouro";
- };
-
- AtlasLoot_Data["AQ40Ouro"] = {
- { 1, 21615, "", "=q4=Don Rigoberto's Lost Hat", "=ds=#s1#, #a1#", "", "28.63%"};
- { 2, 21611, "", "=q4=Burrower Bracers", "=ds=#s8#, #a1#", "", "24.44%"};
- { 3, 23558, "", "=q4=The Burrower's Shell", "=ds=#s14#", "", "2.90%"};
- { 4, 23570, "", "=q4=Jom Gabbar", "=ds=#s14#", "", "2.80%"};
- { 5, 23557, "", "=q4=Larvae of the Great Worm", "=ds=#w5#", "", "3.95%"};
- { 6, 21610, "", "=q4=Wormscale Blocker", "=ds=#w8#", "", "16.54%"};
- { 8, 20927, "", "=q4=Ouro's Intact Hide", "=q1=#m1# =ds=#c3#, #c5#, #c6#, #c9#", "", "100%"};
- { 9, 20931, "", "=q4=Skin of the Great Sandworm", "=q1=#m1# =ds=#c8#, #c7#, #c1#, #c2#, #c4#", "", "100%"};
- { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.20%"};
- { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#"};
- { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#"};
- { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#"};
- { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.10%"};
- { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#"};
- { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#"};
- { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#"};
- { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#"};
- Prev = "AQ40Emperors";
- Next = "AQ40CThun";
- };
-
- AtlasLoot_Data["AQ40CThun"] = {
- { 1, 21583, "", "=q4=Cloak of Clarity", "=ds=#s4#", "", "14.45%"};
- { 2, 22731, "", "=q4=Cloak of the Devoured", "=ds=#s4#", "", "16.34%"};
- { 3, 21585, "", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "", "13.63%"};
- { 4, 22730, "", "=q4=Eyestalk Waist Cord", "=ds=#s10#, #a1#", "", "10.41%"};
- { 5, 21582, "", "=q4=Grasp of the Old God", "=ds=#s10#, #a1#", "", "15.04%"};
- { 6, 21586, "", "=q4=Belt of Never-ending Agony", "=ds=#s10#, #a2#", "", "11.24%"};
- { 7, 21581, "", "=q4=Gauntlets of Annihilation", "=ds=#s9#, #a4#", "", "12.04%"};
- { 9, 22732, "", "=q4=Mark of C'Thun", "=ds=#s2#", "", "10.62%"};
- { 10, 21596, "", "=q4=Ring of the Godslayer", "=ds=#s13#", "", "11.83%"};
- { 11, 21579, "", "=q4=Vanquished Tentacle of C'Thun", "=ds=#s14#", "", "12.18%"};
- { 12, 21126, "", "=q4=Death's Sting", "=ds=#h1#, #w4#", "", "6.84%"};
- { 13, 21134, "", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "", "5.93%"};
- { 14, 21839, "", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "", "4.75%"};
- { 16, 20933, "", "=q4=Husk of the Old God", "=q1=#m1# =ds=#c8#, #c3#, #c1#, #c5#", "", "100%"};
- { 17, 20929, "", "=q4=Carapace of the Old God", "=q1=#m1# =ds=#c7#, #c6#, #c9#, #c2#, #c4#", "", "100%"};
- { 19, 21221, "", "=q4=Eye of C'Thun", "=ds=#m2#", "", "100%"};
- { 20, 21710, "", "=q4=Cloak of the Fallen God", "=q1=#m4#: =ds=#s4#"};
- { 21, 21712, "", "=q4=Amulet of the Fallen God", "=q1=#m4#: =ds=#s2#"};
- { 22, 21709, "", "=q4=Ring of the Fallen God", "=q1=#m4#: =ds=#s13#"};
- { 24, 22734, "", "=q1=Base of Atiesh", "=ds=#m3#"};
- { 25, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"};
- { 26, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"};
- { 27, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"};
- { 28, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"};
- Prev = "AQ40Ouro";
- };
-
- AtlasLoot_Data["AQ40Trash1"] = {
- { 1, 21838, "", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "", "0.20%"};
- { 2, 21888, "", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "", "0.16%"};
- { 3, 21889, "", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q1=#m1# =ds=#c4#", "", "0.39%"};
- { 4, 21836, "", "=q4=Ritssyn's Ring of Chaos", "=ds=#s13#", "", "0.18%"};
- { 5, 21891, "", "=q4=Shard of the Fallen Star", "=ds=#s14#", "", "0.59%"};
- { 6, 21856, "", "=q4=Neretzek, The Blood Drinker", "=ds=#h2#, #w1#", "", "0.20%"};
- { 7, 21837, "", "=q4=Anubisath Warhammer", "=ds=#h1#, #w6#", "", "0.21%"};
- { 9, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"};
- { 10, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"};
- { 16, 21218, "", "=q3=Blue Qiraji Resonating Crystal", "=ds=#e12#", "", "10.64%"};
- { 17, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e12#", "", "12.15%"};
- { 18, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=ds=#e12#", "", "11.62%"};
- { 19, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=ds=#e12#", "", "1.39%"};
- Next = "AQ40Trash2";
- };
-
- AtlasLoot_Data["AQ40Trash2"] = {
- { 1, 20876, "", "=q3=Idol of Death", "=ds=#e15#", "", "0.26%"};
- { 2, 20879, "", "=q3=Idol of Life", "=ds=#e15#", "", "0.29%"};
- { 3, 20875, "", "=q3=Idol of Night", "=ds=#e15#", "", "0.29%"};
- { 4, 20878, "", "=q3=Idol of Rebirth", "=ds=#e15#", "", "0.28%"};
- { 5, 20881, "", "=q3=Idol of Strife", "=ds=#e15#", "", "0.21%"};
- { 6, 20877, "", "=q3=Idol of the Sage", "=ds=#e15#", "", "0.33%"};
- { 7, 20874, "", "=q3=Idol of the Sun", "=ds=#e15#", "", "0.21%"};
- { 8, 20882, "", "=q3=Idol of War", "=ds=#e15#", "", "0.30%"};
- { 10, 21230, "", "=q1=Ancient Qiraji Artifact", "=ds=#m2#"};
- { 12, 21762, "", "=q1=Greater Scarab Coffer Key", "=ds=#e9#", "", "7.03%"};
- { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"};
- { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"};
- { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"};
- { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"};
- { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"};
- { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
- { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
- { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
- Prev = "AQ40Trash1";
- };
-
- -------------------
- --- AQ Enchants ---
- -------------------
-
- AtlasLoot_Data["AQEnchants"] = {
- { 1, 20728, "", "=q3=Formula: Enchant Gloves - Frost Power", "=ds=#p4# (300)"};
- { 2, 20731, "", "=q3=Formula: Enchant Gloves - Superior Agility", "=ds=#p4# (300)"};
- { 3, 20734, "", "=q3=Formula: Enchant Cloak - Stealth", "=ds=#p4# (300)"};
- { 4, 20729, "", "=q3=Formula: Enchant Gloves - Fire Power", "=ds=#p4# (300)"};
- { 5, 20736, "", "=q3=Formula: Enchant Cloak - Dodge", "=ds=#p4# (300)"};
- { 6, 20730, "", "=q3=Formula: Enchant Gloves - Healing Power", "=ds=#p4# (300)"};
- { 7, 20727, "", "=q3=Formula: Enchant Gloves - Shadow Power", "=ds=#p4# (300)"};
- };
-
- AtlasLoot_Data["AQOpening"] = {
- { 1, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#"};
- { 2, 21530, "", "=q4=Onyx Embedded Leggings", "=ds=#s11#, #a3#"};
- { 3, 21529, "", "=q4=Amulet of Shadow Shielding", "=ds=#s2#"};
- { 5, 21139, "", "=q1=Green Scepter Shard", "=ds=#m3#"};
- { 6, 21532, "", "=q4=Drudge Boots", "=ds=#s12#, #a2#"};
- { 7, 21531, "", "=q4=Drake Tooth Necklace", "=ds=#s2#"};
- { 9, 21137, "", "=q1=Blue Scepter Shard", "=ds=#m3#"};
- { 10, 21517, "", "=q4=Gnomish Turban of Psychic Might", "=ds=#s1#, #a1#"};
- { 11, 21527, "", "=q4=Darkwater Robes", "=ds=#s5#, #a1#"};
- { 12, 21526, "", "=q4=Band of Icy Depths", "=ds=#s13#"};
- { 13, 21025, "", "=q4=Recipe: Dirge's Kickin' Chimaerok Chops", "=ds=#p3# (300)"};
- { 16, 21175, "", "=q1=The Scepter of the Shifting Sands", "=ds=#m3#"};
- { 17, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=ds=#e12#"};
- { 18, 21522, "", "=q4=Shadowsong's Sorrow", "=ds=#h1#, #w4#"};
- { 19, 21523, "", "=q4=Fang of Korialstrasz", "=ds=#h3#, #w4#"};
- { 20, 21520, "", "=q4=Ravencrest's Legacy", "=ds=#h1#, #w10#"};
- { 21, 21521, "", "=q4=Runesword of the Red", "=ds=#h3#, #w10#"};
- };
+ ------------------------------------------------
+ --- Ahn'Qiraj: The Ruins of Ahn'Qiraj ASCENDED ---
+ ------------------------------------------------
+ AtlasLoot_Data["AQ20Kurinnaxx25ManHEROIC"] = {
+ { 1, 221499, "", "=q4=Vestments of the Shifting Sands", "=ds=#s5#, #a1#", "", "7.34%"};
+ { 2, 221498, "", "=q4=Qiraji Sacrificial Dagger", "=ds=#h1#, #w4#", "", "7.53%"};
+ { 4, 221500, "", "=q3=Belt of the Inquisition", "=ds=#s10#, #a1#", "", "14.84%"};
+ { 5, 221501, "", "=q3=Toughened Silithid Hide Gloves", "=ds=#s9#, #a2#", "", "12.91%"};
+ { 6, 221502, "", "=q3=Sand Reaver Wristguards", "=ds=#s8#, #a3#", "", "13.79%"};
+ { 7, 221503, "", "=q3=Belt of the Sand Reaver", "=ds=#s10#, #a4#", "", "14.38%"};
+ { 9, 22217, "", "=q1=Kurinnaxx's Venom Sac", "=ds=#m3#", "", "100%"};
+ { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "30.83%"};
+ { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "30.25%"};
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.98%"};
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "7.80%"};
+ Next = "AQ20Rajaxx25ManHEROIC";
+ };
+
+ AtlasLoot_Data["AQ20Rajaxx25ManHEROIC"] = {
+ { 1, 221493, "", "=q4=Boots of the Vanguard", "=ds=#s12#, #a2#", "", "8.13%"};
+ { 2, 221492, "", "=q4=Manslayer of the Qiraji", "=ds=#h2#, #w10#", "", "10.04%"};
+ { 4, 221496, "", "=q3=Bracers of Qiraji Command", "=ds=#s8#, #a1#", "", "15.79%"};
+ { 5, 221494, "", "=q3=Southwind's Grasp", "=ds=#s10#, #a2#", "", "15.13%"};
+ { 6, 221497, "", "=q3=Boots of the Qiraji General", "=ds=#s12#, #a3#", "", "15.45%"};
+ { 7, 221495, "", "=q3=Legplates of the Qiraji Command", "=ds=#s11#, #a4#", "", "15.47%"};
+ { 9, 0, "INV_Box_01", "=q6="..AL["Rajaxx's Captains"], ""};
+ { 10, 221810, "", "=q3=Treads of the Wandering Nomad", "=ds=#s12#, #a1#", "", "3.11%"};
+ { 11, 221809, "", "=q3=Fury of the Forgotten Swarm", "=ds=#s2#", "", "3.20%"};
+ { 12, 221806, "", "=q3=Gavel of Qiraji Authority", "=ds=#h2#, #w6#", "", "3.04%"};
+ { 16, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "36.51%"};
+ { 17, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "33.97%"};
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "8.82%"};
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.56%"};
+ { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Lieutenant General Andorov"], ""};
+ { 22, 22221, "", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# (300)"};
+ { 23, 22219, "", "=q1=Plans: Jagged Obsidian Shield", "=ds=#p2# (300)"};
+ Prev = "AQ20Kurinnaxx25ManHEROIC";
+ Next = "AQ20Moam25ManHEROIC";
+ };
+
+ AtlasLoot_Data["AQ20Moam25ManHEROIC"] = {
+ { 1, 221472, "", "=q4=Dustwind Turban", "=ds=#s1#, #a1#", "", "7.76%"};
+ { 2, 221467, "", "=q4=Thick Silithid Chestguard", "=ds=#s5#, #a2#", "", "6.76%"};
+ { 3, 221479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "7.12%"};
+ { 4, 221471, "", "=q4=Talon of Furious Concentration", "=ds=#s15#", "", "7.39%"};
+ { 6, 221470, "", "=q3=Cloak of the Savior", "=ds=#s4#", "", "14.23%"};
+ { 7, 221468, "", "=q3=Mantle of Maz'Nadir", "=ds=#s3#, #a1#", "", "15.86%"};
+ { 8, 221455, "", "=q3=Southwind Helm", "=ds=#s1#, #a2#", "", "14.08%"};
+ { 9, 221474, "", "=q3=Chitinous Shoulderguards", "=ds=#s3#, #a2#", "", "15.25%"};
+ { 10, 221469, "", "=q3=Gauntlets of Southwind", "=ds=#s9#, #a2#", "", "15.28%"};
+ { 11, 221476, "", "=q3=Obsidian Scaled Leggings", "=ds=#s11#, #a3#", "", "6.81%"};
+ { 12, 221475, "", "=q3=Legplates of the Destroyer", "=ds=#s11#, #a4#", "", "10.39%"};
+ { 13, 221477, "", "=q3=Ring of Fury", "=ds=#s13#", "", "14.42%"};
+ { 14, 221473, "", "=q3=Eye of Moam", "=ds=#s14#", "", "14.74%"};
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "36.38%"};
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "33.16%"};
+ { 18, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "7.56%"};
+ { 19, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.34%"};
+ { 21, 22220, "", "=q3=Plans: Black Grasp of the Destroyer", "=ds=#p2# (300)", "", "4.11%"};
+ { 22, 22194, "", "=q4=Black Grasp of the Destroyer", "=ds=#s9#, #a3#"};
+ Prev = "AQ20Rajaxx25ManHEROIC";
+ Next = "AQ20Buru25ManHEROIC";
+ };
+
+ AtlasLoot_Data["AQ20Buru25ManHEROIC"] = {
+ { 1, 221487, "", "=q4=Slimy Scaled Gauntlets", "=ds=#s9#, #a3#", "", "2.64%"};
+ { 2, 221486, "", "=q4=Gloves of the Swarm", "=ds=#s9#, #a4#", "", "5.22%"};
+ { 3, 221485, "", "=q4=Buru's Skull Fragment", "=ds=#w8#", "", "7.88%"};
+ { 5, 221489, "", "=q3=Quicksand Waders", "=ds=#s12#, #a1#", "", "15.95%"};
+ { 6, 221491, "", "=q3=Scaled Bracers of the Gorger", "=ds=#s8#, #a2#", "", "16.51%"};
+ { 7, 221490, "", "=q3=Slime Kickers", "=ds=#s12#, #a4#", "", "15.99%"};
+ { 8, 221488, "", "=q3=Fetish of Chitinous Spikes", "=ds=#s14#", "", "17.22%"};
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.31%"};
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.98%"};
+ { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "9.77%"};
+ { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "9.84%"};
+ { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"};
+ { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "25.58%"};
+ Prev = "AQ20Moam25ManHEROIC";
+ Next = "AQ20Ayamiss";
+ };
+
+ AtlasLoot_Data["AQ20Ayamiss25ManHEROIC"] = {
+ { 1, 221479, "", "=q4=Gauntlets of the Immovable", "=ds=#s9#, #a4#", "", "6.18%"};
+ { 2, 221466, "", "=q4=Stinger of Ayamiss", "=ds=#h3#, #w6#", "", "2.06%"};
+ { 3, 221478, "", "=q4=Bow of Taut Sinew", "=ds=#w2#", "", "10.14%"};
+ { 5, 221484, "", "=q3=Helm of Regrowth", "=ds=#s1#, #a2#", "", "15.85%"};
+ { 6, 221480, "", "=q3=Scaled Silithid Gauntlets", "=ds=#s9#, #a3#", "", "17.10%"};
+ { 7, 221482, "", "=q3=Boots of the Fiery Sands", "=ds=#s12#, #a3#", "", "4.92%"};
+ { 8, 221481, "", "=q3=Boots of the Desert Protector", "=ds=#s12#, #a4#", "", "11.08%"};
+ { 9, 221483, "", "=q3=Ring of the Desert Winds", "=ds=#s13#", "", "16.32%"};
+ { 16, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "8.24%"};
+ { 17, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "8.21%"};
+ { 18, 20889, "", "=q3=Qiraji Regal Drape", "#m3#", "", "8.85%"};
+ { 19, 20885, "", "=q3=Qiraji Martial Drape", "#m3#", "", "10.97%"};
+ { 20, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "26.98%"};
+ { 21, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "27.50%"};
+ Prev = "AQ20Buru25ManHEROIC";
+ Next = "AQ20Ossirian25ManHEROIC";
+ };
+
+ AtlasLoot_Data["AQ20Ossirian25ManHEROIC"] = {
+ { 1, 221456, "", "=q4=Sandstorm Cloak", "=ds=#s4#", "", "10.89%"};
+ { 2, 221464, "", "=q4=Shackles of the Unscarred", "=ds=#s8#, #a1#", "", "12.62%"};
+ { 3, 221462, "", "=q4=Gloves of Dark Wisdom", "=ds=#s9#, #a1#", "", "11.89%"};
+ { 4, 221461, "", "=q4=Leggings of the Black Blizzard", "=ds=#s11#, #a1#", "", "12.83%"};
+ { 5, 221458, "", "=q4=Gauntlets of New Life", "=ds=#s9#, #a2#", "", "13.25%"};
+ { 6, 221454, "", "=q4=Runic Stone Shoulders", "=ds=#s3#, #a3#", "", "4.10%"};
+ { 7, 221463, "", "=q4=Ossirian's Binding", "=ds=#s10#, #a3#", "", "12.27%"};
+ { 8, 221460, "", "=q4=Helm of Domination", "=ds=#s1#, #a4#", "", "12.18%"};
+ { 9, 221453, "", "=q4=Mantle of the Horusath", "=ds=#s3#, #a4#", "", "6.96%"};
+ { 10, 221457, "", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "", "10.74%"};
+ { 11, 221715, "", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "", "5.95%"};
+ { 12, 221459, "", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "", "6.12%"};
+ { 13, 221452, "", "=q4=Staff of the Ruins", "=ds=#w9#", "", "10.32%"};
+ { 16, 21220, "", "=q4=Head of Ossirian the Unscarred", "=ds=#m2#", "", "100%"};
+ { 17, 21504, "", "=q4=Charm of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
+ { 18, 21507, "", "=q4=Amulet of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
+ { 19, 21505, "", "=q4=Choker of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
+ { 20, 21506, "", "=q4=Pendant of the Shifting Sands", "=q1=#m4#: =ds=#s2#"};
+ { 22, 20886, "", "=q4=Qiraji Spiked Hilt", "#m3#", "", "35.27%"};
+ { 23, 20890, "", "=q4=Qiraji Ornate Hilt", "#m3#", "", "30.69%"};
+ { 24, 20884, "", "=q3=Qiraji Magisterial Ring", "#m3#", "", "9.65%"};
+ { 25, 20888, "", "=q3=Qiraji Ceremonial Ring", "#m3#", "", "8.53%"};
+ Prev = "AQ20Ayamiss25ManHEROIC";
+ };
+
+ AtlasLoot_Data["AQ20Trash25ManHEROIC"] = {
+ { 1, 20873, "", "=q3=Alabaster Idol", "=ds=#e15#", "", "0.39%"};
+ { 2, 20869, "", "=q3=Amber Idol", "=ds=#e15#", "", "0.36%"};
+ { 3, 20866, "", "=q3=Azure Idol", "=ds=#e15#", "", "0.48%"};
+ { 4, 20870, "", "=q3=Jasper Idol", "=ds=#e15#", "", "0.52%"};
+ { 5, 20868, "", "=q3=Lambent Idol", "=ds=#e15#", "", "0.48%"};
+ { 6, 20871, "", "=q3=Obsidian Idol", "=ds=#e15#", "", "0.41%"};
+ { 7, 20867, "", "=q3=Onyx Idol", "=ds=#e15#", "", "0.36%"};
+ { 8, 20872, "", "=q3=Vermillion Idol", "=ds=#e15#", "", "0.31%"};
+ { 10, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"};
+ { 11, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"};
+ { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"};
+ { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"};
+ { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"};
+ { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"};
+ { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"};
+ { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
+ { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
+ { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
+ { 25, 21761, "", "=q1=Scarab Coffer Key", "=ds=#e9#", "", "7.27%"};
+ };
+
+ AtlasLoot_Data["AQ20ClassBooks25ManHEROIC"] = {
+ { 1, 21294, "", "=q3=Book of Healing Touch XI", "=q1=#m1# =ds=#c1#", "", "4.12%"};
+ { 2, 21296, "", "=q3=Book of Rejuvenation XI", "=q1=#m1# =ds=#c1#", "", "4.20%"};
+ { 3, 21295, "", "=q3=Book of Starfire VII", "=q1=#m1# =ds=#c1#", "", "4.00%"};
+ { 4, 21306, "", "=q3=Guide: Serpent Sting IX", "=q1=#m1# =ds=#c2#", "", "4.85%"};
+ { 5, 21304, "", "=q3=Guide: Multi-Shot V", "=q1=#m1# =ds=#c2#", "", "4.66%"};
+ { 6, 21307, "", "=q3=Guide: Aspect of the Hawk VII", "=q1=#m1# =ds=#c2#", "", "4.65%"};
+ { 7, 21279, "", "=q3=Tome of Fireball XII", "=q1=#m1# =ds=#c3#", "", "5.15%"};
+ { 8, 21214, "", "=q3=Tome of Frostbolt XI", "=q1=#m1# =ds=#c3#", "", "5.10%"};
+ { 9, 21280, "", "=q3=Tome of Arcane Missiles VIII", "=q1=#m1# =ds=#c3#", "", "5.03%"};
+ { 10, 21288, "", "=q3=Libram: Blessing of Wisdom VI", "=q1=#m1# =ds=#c4#", "", "3.50%"};
+ { 11, 21289, "", "=q3=Libram: Blessing of Might VII", "=q1=#m1# =ds=#c4#", "", "3.07%"};
+ { 12, 21290, "", "=q3=Libram: Holy Light IX", "=q1=#m1# =ds=#c4#", "", "3.09%"};
+ { 13, 21284, "", "=q3=Codex of Greater Heal V", "=q1=#m1# =ds=#c5#", "", "5.15%"};
+ { 14, 21287, "", "=q3=Codex of Prayer of Healing V", "=q1=#m1# =ds=#c5#", "", "4.89%"};
+ { 15, 21285, "", "=q3=Codex of Renew X", "=q1=#m1# =ds=#c5#", "", "4.91%"};
+ { 16, 21300, "", "=q3=Handbook of Backstab IX", "=q1=#m1# =ds=#c6#", "", "4.29%"};
+ { 17, 21303, "", "=q3=Handbook of Feint V", "=q1=#m1# =ds=#c6#", "", "4.79%"};
+ { 18, 21302, "", "=q3=Handbook of Deadly Poison V", "=q1=#m1# =ds=#c6#", "", "5.47%"};
+ { 19, 21291, "", "=q3=Tablet of Healing Wave X", "=q1=#m1# =ds=#c7#", "", "2.05%"};
+ { 20, 21292, "", "=q3=Tablet of Strength of Earth Totem V", "=q1=#m1# =ds=#c7#", "", "1.67%"};
+ { 21, 21293, "", "=q3=Tablet of Grace of Air Totem III", "=q1=#m1# =ds=#c7#", "", "1.81%"};
+ { 22, 21281, "", "=q3=Grimoire of Shadow Bolt X", "=q1=#m1# =ds=#c8#", "", "4.23%"};
+ { 23, 21283, "", "=q3=Grimoire of Corruption VII", "=q1=#m1# =ds=#c8#", "", "3.82%"};
+ { 24, 21282, "", "=q3=Grimoire of Immolate VIII", "=q1=#m1# =ds=#c8#", "", "4.51%"};
+ { 25, 21298, "", "=q3=Manual of Battle Shout VII", "=q1=#m1# =ds=#c9#", "", "4.84%"};
+ { 26, 21299, "", "=q3=Manual of Revenge VI", "=q1=#m1# =ds=#c9#", "", "4.78%"};
+ { 27, 21297, "", "=q3=Manual of 25ManHEROIC Strike IX", "=q1=#m1# =ds=#c9#", "", "4.83%"};
+ };
------------------------------------------
--- Ahn'Qiraj: The Temple of Ahn'Qiraj ---
@@ -1397,10 +953,287 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
};
-------------------------------------------------
- --- Ahn'Qiraj: The Temple of Ahn'Qiraj HEROIC ---
+ --- Ahn'Qiraj: The Temple of Ahn'Qiraj HEROIC FLEX ---
-------------------------------------------------
- AtlasLoot_Data["AQ40SkeramHEROIC"] = {
+ AtlasLoot_Data["AQ40Skeram25Man"] = {
+ { 1, 321701, "", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "", "11.81%"};
+ { 2, 321708, "", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "", "12.85%"};
+ { 3, 321698, "", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "", " 10.99%"};
+ { 4, 321699, "", "=q4=Barrage Shoulders", "=ds=#s3#, #a3#", "", "11.50%"};
+ { 5, 321705, "", "=q4=Boots of the Fallen Prophet", "=ds=#s12#, #a3#", "", "3.33%"};
+ { 6, 321814, "", "=q4=Breastplate of Annihilation", "=ds=#s5#, #a4#", "", "11.01%"};
+ { 7, 321704, "", "=q4=Boots of the Redeemed Prophecy", "=ds=#s12#, #a4#", "", "7.75%"};
+ { 8, 321706, "", "=q4=Boots of the Unwavering Will", "=ds=#s12#, #a4#", "", "12.23%"};
+ { 10, 321702, "", "=q4=Amulet of Foul Warding", "=ds=#s2#", "", "12.20%"};
+ { 11, 321700, "", "=q4=Pendant of the Qiraji Guardian", "=ds=#s2#", "", "11.57%"};
+ { 12, 321707, "", "=q4=Ring of Swarming Thought", "=ds=#s13#", "", "12.57%"};
+ { 13, 321703, "", "=q4=Hammer of Ji'zhi", "=ds=#h2#, #w6#", "", "7.14%"};
+ { 14, 321128, "", "=q4=Staff of the Qiraji Prophets", "=ds=#w9#", "", " 6.32%"};
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "1.74%"};
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "1.32%"};
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
+ { 27, 22222, "", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# (300)", "", "5.00%"};
+ { 28, 22196, "", "=q4=Thick Obsidian Breastplate", "=ds=#s5#, #a4#"};
+ Next = "AQ40Vem25Man";
+ };
+
+ AtlasLoot_Data["AQ40Vem25Man"] = {
+ { 1, 321697, "", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#", "", "14%"};
+ { 2, 321694, "", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#", "", "16%"};
+ { 3, 321696, "", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#", "", "13%"};
+ { 4, 321693, "", "=q4=Guise of the Devourer", "=ds=#s1#, #a2# =q2=#m5#", "", "16%"};
+ { 5, 321692, "", "=q4=Triad Girdle", "=ds=#s10#, #a4# =q2=#m5#", "", "16%"};
+ { 6, 321695, "", "=q4=Angelista's Touch", "=ds=#s13# =q2=#m5#", "", "14%"};
+ { 8, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3# =q2=#m5#", "", "7%"};
+ { 9, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3# =q2=#m5#", "", "7%"};
+ { 11, 321680, "", "=q4=Vest of Swift Execution", "=ds=#s5#, #a2# =q2=#n115#", "", "21%"};
+ { 12, 321603, "", "=q4=Wand of Qiraji Nobility", "=ds=#w12# =q2=#n115#", "", "25%"};
+ { 13, 321681, "", "=q4=Ring of the Devoured", "=ds=#s13# =q2=#n115#", "", "17%"};
+ { 14, 321685, "", "=q4=Petrified Scarab", "=ds=#s14# =q2=#n115#", "", "21%"};
+ { 16, 321689, "", "=q4=Gloves of Ebru", "=ds=#s9#, #a2# =q2=#n116#", "", "18%"};
+ { 17, 321691, "", "=q4=Ooze-ridden Gauntlets", "=ds=#s9#, #a4# =q2=#n116#", "", "20%"};
+ { 18, 321688, "", "=q4=Boots of the Fallen Hero", "=ds=#s12#, #a4# =q2=#n116#", "", "18%"};
+ { 19, 321690, "", "=q4=Angelista's Charm", "=ds=#s2# =q2=#n116#", "", "20%"};
+ { 21, 321686, "", "=q4=Mantle of Phrenic Power", "=ds=#s3#, #a1# =q2=#n117#", "", "13%"};
+ { 22, 321682, "", "=q4=Bile-Covered Gauntlets", "=ds=#s9#, #a2# =q2=#n117#", "", "19%"};
+ { 23, 321684, "", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q2=#n117#", "", "16%"};
+ { 24, 321683, "", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q2=#n117#", "", "14%"};
+ { 25, 321687, "", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q2=#n117#", "", "20%"};
+ Prev = "AQ40Skeram25Man";
+ Next = "AQ40Sartura25Man";
+ };
+
+ AtlasLoot_Data["AQ40Sartura25Man"] = {
+ { 1, 321671, "", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "", "13.30%"};
+ { 2, 321676, "", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "", "13.02%"};
+ { 3, 321648, "", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "", "7.64%"};
+ { 4, 321669, "", "=q4=Creeping Vine Helm", "=ds=#s1#, #a2#", "", "12.33%"};
+ { 5, 321672, "", "=q4=Gloves of Enforcement", "=ds=#s9#, #a2#", "", "11.87%"};
+ { 6, 321675, "", "=q4=Thick Qirajihide Belt", "=ds=#s10#, #a2#", "", "13.26%"};
+ { 7, 321668, "", "=q4=Scaled Leggings of Qiraji Fury", "=ds=#s11#, #a3#", "", "4.03%"};
+ { 8, 321674, "", "=q4=Gauntlets of Steadfast Determination", "=ds=#s9#, #a4#", "", "11.07%"};
+ { 9, 321667, "", "=q4=Legplates of Blazing Light", "=ds=#s11#, #a4#", "", "7.44%"};
+ { 11, 321678, "", "=q4=Necklace of Purity", "=ds=#s2#", "", "14.21%"};
+ { 12, 321670, "", "=q4=Badge of the Swarmguard", "=ds=#s14#", "", "13.22%"};
+ { 13, 321666, "", "=q4=Sartura's Might", "=ds=#s15#", "", "6.47%"};
+ { 14, 321673, "", "=q4=Silithid Claw", "=ds=#h3#, #w13#", "", "7.16%"};
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.01%"};
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.02%"};
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
+ Prev = "AQ40Vem25Man";
+ Next = "AQ40Fankriss25Man";
+ };
+
+ AtlasLoot_Data["AQ40Fankriss25Man"] = {
+ { 1, 321627, "", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "", "12.51%"};
+ { 2, 321663, "", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "", "12.95%"};
+ { 3, 321665, "", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "", "13.25%"};
+ { 4, 321645, "", "=q4=Hive Tunneler's Boots", "=ds=#s12#, #a2#", "", "14.04%"};
+ { 5, 321651, "", "=q4=Scaled Sand Reaver Leggings", "=ds=#s11#, #a3#", "", "12.91%"};
+ { 6, 321639, "", "=q4=Pauldrons of the Unrelenting", "=ds=#s3#, #a4#", "", "14.78%"};
+ { 7, 321652, "", "=q4=Silithid Carapace Chestguard", "=ds=#s5#, #a4#", "", "10.29%"};
+ { 9, 321647, "", "=q4=Fetish of the Sand Reaver", "=ds=#s14#", "", "13.82%"};
+ { 10, 321664, "", "=q4=Barbed Choker", "=ds=#s2#", "", "12.63%"};
+ { 11, 322402, "", "=q4=Libram of Grace", "=ds=#s16#, #w16#", "", "4.21%"};
+ { 12, 322396, "", "=q4=Totem of Life", "=ds=#s16#, #w15#", "", "1.69%"};
+ { 13, 321650, "", "=q4=Ancient Qiraji Ripper", "=ds=#h1#, #w10#", "", " 7.19%"};
+ { 14, 321635, "", "=q4=Barb of the Sand Reaver", "=ds=#w7#", "", "6.61%"};
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.84%"};
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.09%"};
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
+ Prev = "AQ40Sartura25Man";
+ Next = "AQ40Viscidus25Man";
+ };
+
+ AtlasLoot_Data["AQ40Viscidus25Man"] = {
+ { 1, 321624, "", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "", "3.90%"};
+ { 2, 321626, "", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "", "13.66%"};
+ { 3, 321623, "", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "", "5.37%"};
+ { 5, 321677, "", "=q4=Ring of the Qiraji Fury", "=ds=#s13#", "", "2.93%"};
+ { 6, 321625, "", "=q4=Scarab Brooch", "=ds=#s14#", "", "21.46%"};
+ { 7, 322399, "", "=q4=Idol of Health", "=ds=#s16#, #w14#", "", "7.32%"};
+ { 8, 321622, "", "=q4=Sharpened Silithid Femur", "=ds=#h3#, #w10#", "", "15.12%"};
+ { 10, 20932, "", "=q4=Qiraji Bindings of Dominance", "=q1=#m1# =ds=#c8#, #c3#, #c7#, #c1#, #c4#", "", "100%"};
+ { 11, 20928, "", "=q4=Qiraji Bindings of Command", "=q1=#m1# =ds=#c5#, #c6#, #c9#, #c2#", "", "100%"};
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "3.19%"};
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.86%"};
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
+ Prev = "AQ40Fankriss25Man";
+ Next = "AQ40Huhuran25Man";
+ };
+
+ AtlasLoot_Data["AQ40Huhuran25Man"] = {
+ { 1, 321619, "", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "", "12.01%"};
+ { 2, 321621, "", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "", "12.56%"};
+ { 3, 321617, "", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "", "11.97%"};
+ { 4, 321618, "", "=q4=Hive Defiler Wristguards", "=ds=#s8#, #a4#", "", "10.34%"};
+ { 6, 321620, "", "=q4=Ring of the Martyr", "=ds=#s13#", "", "12.97%"};
+ { 7, 321616, "", "=q4=Huhuran's Stinger", "=ds=#w2#", "", "5.71%"};
+ { 9, 20932, "", "=q4=Qiraji Bindings of Dominance", "=q1=#m1# =ds=#c8#, #c3#, #c7#, #c1#, #c4#", "", "100%"};
+ { 10, 20928, "", "=q4=Qiraji Bindings of Command", "=q1=#m1# =ds=#c5#, #c6#, #c9#, #c2#", "", "100%"};
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "4.31%"};
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.11%"};
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
+ Prev = "AQ40Viscidus25Man";
+ Next = "AQ40Emperors25Man";
+ };
+
+ AtlasLoot_Data["AQ40Emperors25Man"] = {
+ { 1, 20930, "", "=q4=Vek'lor's Diadem", "=q1=#m1# =ds=#c7#, #c1#, #c6#, #c2#, #c4#", "", "100%"};
+ { 2, 321600, "", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "", "15.77%"};
+ { 3, 321602, "", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "", "15.95%"};
+ { 4, 321599, "", "=q4=Vek'lor's Gloves of Devastation", "=ds=#s9#, #a3#", "", "15.77%"};
+ { 5, 321598, "", "=q4=Royal Qiraji Belt", "=ds=#s10#, #a4#", "", "9.84%"};
+ { 6, 321597, "", "=q4=Royal Scepter of Vek'lor", "=ds=#s15#", "", "6.99%"};
+ { 7, 321601, "", "=q4=Ring of Emperor Vek'lor", "=ds=#s13#", "", "17.27%"};
+ { 8, 20735, "", "=q3=Formula: Enchant Cloak - Subtlety", "=ds=#p4# (300)", "", "6.62%"};
+ { 11, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "6.25%"};
+ { 12, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4#, =ds=#h1#, #w1#"};
+ { 13, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
+ { 14, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
+ { 15, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
+ { 16, 20926, "", "=q4=Vek'nilash's Circlet", "=q1=#m1# =ds=#c8#, #c3#, #c5#, #c9#", "", "100%"};
+ { 17, 321604, "", "=q4=Bracelets of Royal Redemption", "=ds=#s8#, #a1#", "", "12.51%"};
+ { 18, 321605, "", "=q4=Gloves of the Hidden Temple", "=ds=#s9#, #a2#", "", "15.45%"};
+ { 19, 321609, "", "=q4=Regenerating Belt of Vek'nilash", "=ds=#s10#, #a2#", "", "13.35%"};
+ { 20, 321607, "", "=q4=Grasp of the Fallen Emperor", "=ds=#s10#, #a3#", "", "2.72%"};
+ { 21, 321606, "", "=q4=Belt of the Fallen Emperor", "=ds=#s10#, #a4#", "", "12.22%"};
+ { 22, 321679, "", "=q4=Kalimdor's Revenge", "=ds=#h2#, #w10#", "", "9.25%"};
+ { 23, 321608, "", "=q4=Amulet of Vek'nilash", "=ds=#s2#", "", "14.25%"};
+ { 24, 20726, "", "=q3=Formula: Enchant Gloves - Threat", "=ds=#p4# (300)", "", "6.24%"};
+ { 26, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.00%"};
+ { 27, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
+ { 28, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
+ { 29, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
+ Prev = "AQ40Huhuran25Man";
+ Next = "AQ40Ouro25Man";
+ };
+
+ AtlasLoot_Data["AQ40Ouro25Man"] = {
+ { 1, 321615, "", "=q4=Don Rigoberto's Lost Hat", "=ds=#s1#, #a1#", "", "28.63%"};
+ { 2, 321611, "", "=q4=Burrower Bracers", "=ds=#s8#, #a1#", "", "24.44%"};
+ { 3, 323558, "", "=q4=The Burrower's Shell", "=ds=#s14#", "", "2.90%"};
+ { 4, 323570, "", "=q4=Jom Gabbar", "=ds=#s14#", "", "2.80%"};
+ { 5, 323557, "", "=q4=Larvae of the Great Worm", "=ds=#w5#", "", "3.95%"};
+ { 6, 321610, "", "=q4=Wormscale Blocker", "=ds=#w8#", "", "16.54%"};
+ { 8, 20927, "", "=q4=Ouro's Intact Hide", "=q1=#m1# =ds=#c3#, #c5#, #c6#, #c9#", "", "100%"};
+ { 9, 20931, "", "=q4=Skin of the Great Sandworm", "=q1=#m1# =ds=#c8#, #c7#, #c1#, #c2#, #c4#", "", "100%"};
+ { 16, 21237, "", "=q4=Imperial Qiraji Regalia", "=ds=#m3#", "", "5.20%"};
+ { 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#w9#"};
+ { 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#w9#"};
+ { 19, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4# =ds=#h1#, #w6#"};
+ { 21, 21232, "", "=q4=Imperial Qiraji Armaments", "=ds=#m3#", "", "4.10%"};
+ { 22, 21242, "", "=q4=Blessed Qiraji War Axe", "=q1=#m4# =ds=#h1#, #w1#"};
+ { 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#"};
+ { 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#"};
+ { 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#"};
+ Prev = "AQ40Emperors25Man";
+ Next = "AQ40CThun25Man";
+ };
+
+ AtlasLoot_Data["AQ40CThun25Man"] = {
+ { 1, 321583, "", "=q4=Cloak of Clarity", "=ds=#s4#", "", "14.45%"};
+ { 2, 322731, "", "=q4=Cloak of the Devoured", "=ds=#s4#", "", "16.34%"};
+ { 3, 321585, "", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "", "13.63%"};
+ { 4, 322730, "", "=q4=Eyestalk Waist Cord", "=ds=#s10#, #a1#", "", "10.41%"};
+ { 5, 321582, "", "=q4=Grasp of the Old God", "=ds=#s10#, #a1#", "", "15.04%"};
+ { 6, 321586, "", "=q4=Belt of Never-ending Agony", "=ds=#s10#, #a2#", "", "11.24%"};
+ { 7, 321581, "", "=q4=Gauntlets of Annihilation", "=ds=#s9#, #a4#", "", "12.04%"};
+ { 9, 322732, "", "=q4=Mark of C'Thun", "=ds=#s2#", "", "10.62%"};
+ { 10, 321596, "", "=q4=Ring of the Godslayer", "=ds=#s13#", "", "11.83%"};
+ { 11, 321579, "", "=q4=Vanquished Tentacle of C'Thun", "=ds=#s14#", "", "12.18%"};
+ { 12, 321126, "", "=q4=Death's Sting", "=ds=#h1#, #w4#", "", "6.84%"};
+ { 13, 321134, "", "=q4=Dark Edge of Insanity", "=ds=#h2#, #w1#", "", "5.93%"};
+ { 14, 321839, "", "=q4=Scepter of the False Prophet", "=ds=#h3#, #w6#", "", "4.75%"};
+ { 16, 20933, "", "=q4=Husk of the Old God", "=q1=#m1# =ds=#c8#, #c3#, #c1#, #c5#", "", "100%"};
+ { 17, 20929, "", "=q4=Carapace of the Old God", "=q1=#m1# =ds=#c7#, #c6#, #c9#, #c2#, #c4#", "", "100%"};
+ { 19, 21221, "", "=q4=Eye of C'Thun", "=ds=#m2#", "", "100%"};
+ { 20, 21710, "", "=q4=Cloak of the Fallen God", "=q1=#m4#: =ds=#s4#"};
+ { 21, 21712, "", "=q4=Amulet of the Fallen God", "=q1=#m4#: =ds=#s2#"};
+ { 22, 21709, "", "=q4=Ring of the Fallen God", "=q1=#m4#: =ds=#s13#"};
+ { 24, 22734, "", "=q1=Base of Atiesh", "=ds=#m3#"};
+ { 25, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"};
+ { 26, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"};
+ { 27, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"};
+ { 28, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"};
+ Prev = "AQ40Ouro25Man";
+ };
+
+ AtlasLoot_Data["AQ40Trash125Man"] = {
+ { 1, 321838, "", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "", "0.20%"};
+ { 2, 321888, "", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "", "0.16%"};
+ { 3, 321889, "", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q1=#m1# =ds=#c4#", "", "0.39%"};
+ { 4, 321836, "", "=q4=Ritssyn's Ring of Chaos", "=ds=#s13#", "", "0.18%"};
+ { 5, 321891, "", "=q4=Shard of the Fallen Star", "=ds=#s14#", "", "0.59%"};
+ { 6, 321856, "", "=q4=Neretzek, The Blood Drinker", "=ds=#h2#, #w1#", "", "0.20%"};
+ { 7, 321837, "", "=q4=Anubisath Warhammer", "=ds=#h1#, #w6#", "", "0.21%"};
+ { 9, 22202, "", "=q1=Small Obsidian Shard", "=ds=#e8#"};
+ { 10, 22203, "", "=q1=Large Obsidian Shard", "=ds=#e8#"};
+ { 16, 21218, "", "=q3=Blue Qiraji Resonating Crystal", "=ds=#e12#", "", "10.64%"};
+ { 17, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e12#", "", "12.15%"};
+ { 18, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=ds=#e12#", "", "11.62%"};
+ { 19, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=ds=#e12#", "", "1.39%"};
+ Next = "AQ40Trash225Man";
+ };
+
+ AtlasLoot_Data["AQ40Trash225Man"] = {
+ { 1, 20876, "", "=q3=Idol of Death", "=ds=#e15#", "", "0.26%"};
+ { 2, 20879, "", "=q3=Idol of Life", "=ds=#e15#", "", "0.29%"};
+ { 3, 20875, "", "=q3=Idol of Night", "=ds=#e15#", "", "0.29%"};
+ { 4, 20878, "", "=q3=Idol of Rebirth", "=ds=#e15#", "", "0.28%"};
+ { 5, 20881, "", "=q3=Idol of Strife", "=ds=#e15#", "", "0.21%"};
+ { 6, 20877, "", "=q3=Idol of the Sage", "=ds=#e15#", "", "0.33%"};
+ { 7, 20874, "", "=q3=Idol of the Sun", "=ds=#e15#", "", "0.21%"};
+ { 8, 20882, "", "=q3=Idol of War", "=ds=#e15#", "", "0.30%"};
+ { 10, 21230, "", "=q1=Ancient Qiraji Artifact", "=ds=#m2#"};
+ { 12, 21762, "", "=q1=Greater Scarab Coffer Key", "=ds=#e9#", "", "7.03%"};
+ { 16, 20864, "", "=q2=Bone Scarab", "=ds=#e15#", "", "0.84%"};
+ { 17, 20861, "", "=q2=Bronze Scarab", "=ds=#e15#", "", "0.88%"};
+ { 18, 20863, "", "=q2=Clay Scarab", "=ds=#e15#", "", "0.95%"};
+ { 19, 20862, "", "=q2=Crystal Scarab", "=ds=#e15#", "", "0.99%"};
+ { 20, 20859, "", "=q2=Gold Scarab", "=ds=#e15#", "", "0.96%"};
+ { 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
+ { 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
+ { 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
+ Prev = "AQ40Trash125Man";
+ };
+
+ -------------------------------------------------
+ --- Ahn'Qiraj: The Temple of Ahn'Qiraj ASCENDED ---
+ -------------------------------------------------
+
+ AtlasLoot_Data["AQ40Skeram25ManHEROIC"] = {
{ 1, 221701, "", "=q4=Cloak of Concentrated Hatred", "=ds=#s4#", "", "11.81%"};
{ 2, 221708, "", "=q4=Beetle Scaled Wristguards", "=ds=#s8#, #a2#", "", "12.85%"};
{ 3, 221698, "", "=q4=Leggings of Immersion", "=ds=#s11#, #a2#", "", " 10.99%"};
@@ -1425,10 +1258,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
{ 27, 22222, "", "=q3=Plans: Thick Obsidian Breastplate", "=ds=#p2# (300)", "", "5.00%"};
{ 28, 22196, "", "=q4=Thick Obsidian Breastplate", "=ds=#s5#, #a4#"};
- Next = "AQ40VemHEROIC";
+ Next = "AQ40Vem25ManHEROIC";
};
- AtlasLoot_Data["AQ40VemHEROIC"] = {
+ AtlasLoot_Data["AQ40Vem25ManHEROIC"] = {
{ 1, 221697, "", "=q4=Cape of the Trinity", "=ds=#s4# =q2=#m5#", "", "14%"};
{ 2, 221694, "", "=q4=Ternary Mantle", "=ds=#s3#, #a1# =q2=#m5#", "", "16%"};
{ 3, 221696, "", "=q4=Robes of the Triumvirate", "=ds=#s5#, #a1# =q2=#m5#", "", "13%"};
@@ -1450,11 +1283,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 23, 221684, "", "=q4=Mantle of the Desert's Fury", "=ds=#s3#, #a3# =q2=#n117#", "", "16%"};
{ 24, 221683, "", "=q4=Mantle of the Desert Crusade", "=ds=#s3#, #a4# =q2=#n117#", "", "14%"};
{ 25, 221687, "", "=q4=Ukko's Ring of Darkness", "=ds=#s13# =q2=#n117#", "", "20%"};
- Prev = "AQ40SkeramHEROIC";
- Next = "AQ40SarturaHEROIC";
+ Prev = "AQ40Skeram25ManHEROIC";
+ Next = "AQ40Sartura25ManHEROIC";
};
- AtlasLoot_Data["AQ40SarturaHEROIC"] = {
+ AtlasLoot_Data["AQ40Sartura25ManHEROIC"] = {
{ 1, 221671, "", "=q4=Robes of the Battleguard", "=ds=#s5#, #a1#", "", "13.30%"};
{ 2, 221676, "", "=q4=Leggings of the Festering Swarm", "=ds=#s11#, #a1#", "", "13.02%"};
{ 3, 221648, "", "=q4=Recomposed Boots", "=ds=#s12#, #a1#", "", "7.64%"};
@@ -1477,11 +1310,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
{ 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
{ 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40VemHEROIC";
- Next = "AQ40FankrissHEROIC";
+ Prev = "AQ40Vem25ManHEROIC";
+ Next = "AQ40Fankriss25ManHEROIC";
};
- AtlasLoot_Data["AQ40FankrissHEROIC"] = {
+ AtlasLoot_Data["AQ40Fankriss25ManHEROIC"] = {
{ 1, 221627, "", "=q4=Cloak of Untold Secrets", "=ds=#s4#", "", "12.51%"};
{ 2, 221663, "", "=q4=Robes of the Guardian Saint", "=ds=#s5#, #a1#", "", "12.95%"};
{ 3, 221665, "", "=q4=Mantle of Wicked Revenge", "=ds=#s3#, #a2#", "", "13.25%"};
@@ -1504,11 +1337,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
{ 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
{ 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40SarturaHEROIC";
- Next = "AQ40ViscidusHEROIC";
+ Prev = "AQ40Sartura25ManHEROIC";
+ Next = "AQ40Viscidus25ManHEROIC";
};
- AtlasLoot_Data["AQ40ViscidusHEROIC"] = {
+ AtlasLoot_Data["AQ40Viscidus25ManHEROIC"] = {
{ 1, 221624, "", "=q4=Gauntlets of Kalimdor", "=ds=#s9#, #a3#", "", "3.90%"};
{ 2, 221626, "", "=q4=Slime-coated Leggings", "=ds=#s11#, #a3#", "", "13.66%"};
{ 3, 221623, "", "=q4=Gauntlets of the Righteous Champion", "=ds=#s9#, #a4#", "", "5.37%"};
@@ -1527,11 +1360,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
{ 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
{ 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40FankrissHEROIC";
- Next = "AQ40HuhuranHEROIC";
+ Prev = "AQ40Fankriss25ManHEROIC";
+ Next = "AQ40Huhuran25ManHEROIC";
};
- AtlasLoot_Data["AQ40HuhuranHEROIC"] = {
+ AtlasLoot_Data["AQ40Huhuran25ManHEROIC"] = {
{ 1, 221619, "", "=q4=Gloves of the Messiah", "=ds=#s9#, #a1#", "", "12.01%"};
{ 2, 221621, "", "=q4=Cloak of the Golden Hive", "=ds=#s4#", "", "12.56%"};
{ 3, 221617, "", "=q4=Wasphide Gauntlets", "=ds=#s9#, #a2#", "", "11.97%"};
@@ -1549,11 +1382,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4#, =ds=#w5#"};
{ 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4#, =ds=#h1#, #w4#"};
{ 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4#, =ds=#w8#"};
- Prev = "AQ40ViscidusHEROIC";
- Next = "AQ40EmperorsHEROIC";
+ Prev = "AQ40Viscidus25ManHEROIC";
+ Next = "AQ40Emperors25ManHEROIC";
};
- AtlasLoot_Data["AQ40EmperorsHEROIC"] = {
+ AtlasLoot_Data["AQ40Emperors25ManHEROIC"] = {
{ 1, 20930, "", "=q4=Vek'lor's Diadem", "=q1=#m1# =ds=#c7#, #c1#, #c6#, #c2#, #c4#", "", "100%"};
{ 2, 221600, "", "=q4=Boots of Epiphany", "=ds=#s12#, #a1#", "", "15.77%"};
{ 3, 221602, "", "=q4=Qiraji Execution Bracers", "=ds=#s8#, #a2#", "", "15.95%"};
@@ -1580,11 +1413,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 27, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#w9#"};
{ 28, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#w9#"};
{ 29, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
- Prev = "AQ40HuhuranHEROIC";
- Next = "AQ40OuroHEROIC";
+ Prev = "AQ40Huhuran25ManHEROIC";
+ Next = "AQ40Ouro25ManHEROIC";
};
- AtlasLoot_Data["AQ40OuroHEROIC"] = {
+ AtlasLoot_Data["AQ40Ouro25ManHEROIC"] = {
{ 1, 221615, "", "=q4=Don Rigoberto's Lost Hat", "=ds=#s1#, #a1#", "", "28.63%"};
{ 2, 221611, "", "=q4=Burrower Bracers", "=ds=#s8#, #a1#", "", "24.44%"};
{ 3, 223558, "", "=q4=The Burrower's Shell", "=ds=#s14#", "", "2.90%"};
@@ -1602,11 +1435,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 23, 21272, "", "=q4=Blessed Qiraji Musket", "=q1=#m4# =ds=#w5#"};
{ 24, 21244, "", "=q4=Blessed Qiraji Pugio", "=q1=#m4# =ds=#h1#, #w4#"};
{ 25, 21269, "", "=q4=Blessed Qiraji Bulwark", "=q1=#m4# =ds=#w8#"};
- Prev = "AQ40EmperorsHEROIC";
- Next = "AQ40CThunHEROIC";
+ Prev = "AQ40Emperors25ManHEROIC";
+ Next = "AQ40CThun25ManHEROIC";
};
- AtlasLoot_Data["AQ40CThunHEROIC"] = {
+ AtlasLoot_Data["AQ40CThun25ManHEROIC"] = {
{ 1, 221583, "", "=q4=Cloak of Clarity", "=ds=#s4#", "", "14.45%"};
{ 2, 222731, "", "=q4=Cloak of the Devoured", "=ds=#s4#", "", "16.34%"};
{ 3, 221585, "", "=q4=Dark Storm Gauntlets", "=ds=#s9#, #a1#", "", "13.63%"};
@@ -1631,10 +1464,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 26, 222589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"};
{ 27, 222631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"};
{ 28, 222630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"};
- Prev = "AQ40OuroHEROIC";
+ Prev = "AQ40Ouro25ManHEROIC";
};
- AtlasLoot_Data["AQ40Trash1HEROIC"] = {
+ AtlasLoot_Data["AQ40Trash125ManHEROIC"] = {
{ 1, 221838, "", "=q4=Garb of Royal Ascension", "=ds=#s5#, #a1#", "", "0.20%"};
{ 2, 221888, "", "=q4=Gloves of the Immortal", "=ds=#s9#, #a1#", "", "0.16%"};
{ 3, 221889, "", "=q4=Gloves of the Redeemed Prophecy", "=ds=#s9#, #a4# =q1=#m1# =ds=#c4#", "", "0.39%"};
@@ -1648,10 +1481,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 17, 21324, "", "=q3=Yellow Qiraji Resonating Crystal", "=ds=#e12#", "", "12.15%"};
{ 18, 21323, "", "=q3=Green Qiraji Resonating Crystal", "=ds=#e12#", "", "11.62%"};
{ 19, 21321, "", "=q3=Red Qiraji Resonating Crystal", "=ds=#e12#", "", "1.39%"};
- Next = "AQ40Trash2HEROIC";
+ Next = "AQ40Trash225ManHEROIC";
};
- AtlasLoot_Data["AQ40Trash2HEROIC"] = {
+ AtlasLoot_Data["AQ40Trash225ManHEROIC"] = {
{ 1, 20876, "", "=q3=Idol of Death", "=ds=#e15#", "", "0.26%"};
{ 2, 20879, "", "=q3=Idol of Life", "=ds=#e15#", "", "0.29%"};
{ 3, 20875, "", "=q3=Idol of Night", "=ds=#e15#", "", "0.29%"};
@@ -1670,7 +1503,7 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 21, 20865, "", "=q2=Ivory Scarab", "=ds=#e15#", "", "0.93%"};
{ 22, 20860, "", "=q2=Silver Scarab", "=ds=#e15#", "", "1.82%"};
{ 23, 20858, "", "=q2=Stone Scarab", "=ds=#e15#", "", "0.86%"};
- Prev = "AQ40Trash1HEROIC";
+ Prev = "AQ40Trash125ManHEROIC";
};
-------------------
@@ -2663,12 +2496,317 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 28, 18260, "", "=q3=Formula: Enchant Weapon - Healing Power", "=ds=#p4# (300)", "", "0.75%"};
};
-
+
----------------------------------------------
- --- Blackrock Mountain: Molten Core HEROIC ---
+ --- Blackrock Mountain: Molten Core HEROIC FLEX ---
----------------------------------------------
- AtlasLoot_Data["MCLucifronHEROIC"] = {
+ AtlasLoot_Data["MCLucifron25Man"] = {
+ { 1, 318872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.93%"};
+ { 2, 319145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.84%"};
+ { 3, 319146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.95%"};
+ { 4, 318875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "2.00%"};
+ { 5, 318870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.09%"};
+ { 6, 318861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.15%"};
+ { 7, 317109, "", "=q4=Choker of Enlightenment", "=ds=#s2#", "", "12.61%"};
+ { 8, 318879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "2.04%"};
+ { 9, 319147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.23%"};
+ { 10, 318878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.23%"};
+ { 11, 317077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "1.60%"};
+ { 16, 316800, "", "=q4=Arcanist Boots", "=q1=#m1# =ds=#c3# (T1)", "", "12.06%"};
+ { 17, 316805, "", "=q4=Felheart Gloves", "=q1=#m1# =ds=#c8# (T1)", "", "14.89%"};
+ { 18, 316829, "", "=q4=Cenarion Boots", "=q1=#m1# =ds=#c1# (T1)", "", "10.72%"};
+ { 19, 316837, "", "=q4=Earthfury Boots", "=q1=#m1# =ds=#c7# (T1)", "", "4.16%"};
+ { 20, 316863, "", "=q4=Gauntlets of Might", "=q1=#m1# =ds=#c9# (T1)", "", "16.40%"};
+ { 21, 316859, "", "=q4=Lawbringer Boots", "=q1=#m1# =ds=#c4# (T1)", "", "7.20%"};
+ { 22, 17329, "", "=q1=Hand of Lucifron", "=ds=#m3#"};
+ Next = "MCMagmadar25Man";
+ };
+
+ AtlasLoot_Data["MCMagmadar25Man"] = {
+ { 1, 319136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.79%"};
+ { 2, 318823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "6.18%"};
+ { 3, 318829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "2.10%"};
+ { 4, 319144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.86%"};
+ { 5, 319143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "5.48%"};
+ { 6, 318861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "3.98%"};
+ { 7, 318824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "3.22%"};
+ { 8, 317065, "", "=q4=Medallion of Steadfast Might", "=ds=#s2#", "", "14.05%"};
+ { 9, 318821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "5.79%"};
+ { 10, 318820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "5.55%"};
+ { 11, 319142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "5.42%"};
+ { 12, 318203, "", "=q4=Eskhandar's Right Claw", "=ds=#h3#, #w13#", "", "17.82%"};
+ { 13, 318822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "5.68%"};
+ { 14, 317073, "", "=q4=Earthshaker", "=ds=#h2#, #w6#", "", "16.75%"};
+ { 15, 317069, "", "=q4=Striker's Mark", "=ds=#w2#", "", "16.37%"};
+ { 16, 316796, "", "=q4=Arcanist Leggings", "=q1=#m1# =ds=#c3# (T1)", "", "14.57%"};
+ { 17, 316814, "", "=q4=Pants of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "14.33%"};
+ { 18, 316810, "", "=q4=Felheart Pants", "=q1=#m1# =ds=#c8# (T1)", "", "13.75%"};
+ { 19, 316822, "", "=q4=Nightslayer Pants", "=q1=#m1# =ds=#c6# (T1)", "", "13.83%"};
+ { 20, 316847, "", "=q4=Giantstalker's Leggings", "=q1=#m1# =ds=#c2# (T1)", "", "13.28%"};
+ { 21, 316835, "", "=q4=Cenarion Leggings", "=q1=#m1# =ds=#c1# (T1)", "", "12.90%"};
+ { 22, 316843, "", "=q4=Earthfury Legguards", "=q1=#m1# =ds=#c7# (T1)", "", " 4.73%"};
+ { 23, 316855, "", "=q4=Lawbringer Legplates", "=q1=#m1# =ds=#c4# (T1)", "", "8.54%"};
+ { 24, 316867, "", "=q4=Legplates of Might", "=q1=#m1# =ds=#c9# (T1)", "", "13.97%"};
+ Prev = "MCLucifron25Man";
+ Next = "MCGehennas25Man";
+ };
+
+ AtlasLoot_Data["MCGehennas25Man"] = {
+ { 1, 319145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "3.83%"};
+ { 2, 318872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "3.37%"};
+ { 3, 319146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "3.53%"};
+ { 4, 318875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "3.57%"};
+ { 5, 318870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.77%"};
+ { 6, 318861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "3.48%"};
+ { 7, 318879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "3.78%"};
+ { 8, 319147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "3.78%"};
+ { 9, 318878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "3.79%"};
+ { 10, 317077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.34%"};
+ { 16, 316812, "", "=q4=Gloves of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "18.65%"};
+ { 17, 316826, "", "=q4=Nightslayer Gloves", "=q1=#m1# =ds=#c6# (T1)", "", "19.47%"};
+ { 18, 316849, "", "=q4=Giantstalker's Boots", "=q1=#m1# =ds=#c2# (T1)", "", "14.54%"};
+ { 19, 316839, "", "=q4=Earthfury Gauntlets", "=q1=#m1# =ds=#c7# (T1)", "", "7.38%"};
+ { 20, 316862, "", "=q4=Sabatons of Might", "=q1=#m1# =ds=#c9# (T1)", "", "14.48%"};
+ { 21, 316860, "", "=q4=Lawbringer Gauntlets", "=q1=#m1# =ds=#c4# (T1)", "", "11.77%"};
+ { 23, 17331, "", "=q1=Hand of Gehennas", "=ds=#m3#"};
+ Prev = "MCMagmadar25Man";
+ Next = "MCGarr25Man";
+ };
+
+ AtlasLoot_Data["MCGarr25Man"] = {
+ { 1, 319136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.80%"};
+ { 2, 318823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "5.23%"};
+ { 3, 318829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.68%"};
+ { 4, 319144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.48%"};
+ { 5, 319143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "3.84%"};
+ { 6, 318861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.82%"};
+ { 7, 318824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "3.05%"};
+ { 8, 318821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "4.48%"};
+ { 9, 318820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "4.13%"};
+ { 10, 319142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "3.69%"};
+ { 11, 317071, "", "=q4=Gutgore Ripper", "=ds=#h1#, #w4#", "", "11.21%"};
+ { 12, 318832, "", "=q4=Brutality Blade", "=ds=#h1#, #w10#", "", "13.27%"};
+ { 13, 318822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "4.09%"};
+ { 14, 317105, "", "=q4=Aurastone Hammer", "=ds=#h3#, #w6#", "", "12.67%"};
+ { 15, 317066, "", "=q4=Drillborer Disk", "=ds=#w8#", "", "11.85%"};
+ { 16, 316795, "", "=q4=Arcanist Crown", "=q1=#m1# =ds=#c3# (T1)", "", "11.31%"};
+ { 17, 316813, "", "=q4=Circlet of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "11.36%"};
+ { 18, 316808, "", "=q4=Felheart Horns", "=q1=#m1# =ds=#c8# (T1)", "", "10.62%"};
+ { 19, 316846, "", "=q4=Giantstalker's Helmet", "=q1=#m1# =ds=#c2# (T1)", "", "11.57%"};
+ { 20, 316834, "", "=q4=Cenarion Helm", "=q1=#m1# =ds=#c1# (T1)", "", "11.51%"};
+ { 21, 316821, "", "=q4=Nightslayer Cover", "=q1=#m1# =ds=#c6# (T1)", "", "10.38%"};
+ { 22, 316842, "", "=q4=Earthfury Helmet", "=q1=#m1# =ds=#c7# (T1)", "", "3.91%"};
+ { 23, 316866, "", "=q4=Helm of Might", "=q1=#m1# =ds=#c9# (T1)", "", "11.39%"};
+ { 24, 316854, "", "=q4=Lawbringer Helm", "=q1=#m1# =ds=#c4# (T1)", "", "7.23%"};
+ { 26, 318564, "", "=q5=Bindings of the Windseeker", "=ds=#m3#, =q1=#m9#", "", "3.74%"};
+ { 27, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"};
+ Prev = "MCGehennas25Man";
+ Next = "MCShazzrah25Man";
+ };
+
+ AtlasLoot_Data["MCShazzrah25Man"] = {
+ { 1, 319145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.97%"};
+ { 2, 318872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.84%"};
+ { 3, 319146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.85%"};
+ { 4, 318875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "1.81%"};
+ { 5, 318870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "0.78%"};
+ { 6, 318861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.22%"};
+ { 7, 318879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "1.72%"};
+ { 8, 319147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "1.99%"};
+ { 9, 318878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.27%"};
+ { 10, 317077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "3.32%"};
+ { 16, 316801, "", "=q4=Arcanist Gloves", "=q1=#m1# =ds=#c3# (T1)", "", "19.59%"};
+ { 17, 316803, "", "=q4=Felheart Slippers", "=q1=#m1# =ds=#c8# (T1)", "", "15.28%"};
+ { 18, 316811, "", "=q4=Boots of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "14.90%"};
+ { 19, 316831, "", "=q4=Cenarion Gloves", "=q1=#m1# =ds=#c1# (T1)", "", "19.53%"};
+ { 20, 316852, "", "=q4=Giantstalker's Gloves", "=q1=#m1# =ds=#c2# (T1)", "", "18.58%"};
+ { 21, 316824, "", "=q4=Nightslayer Boots", "=q1=#m1# =ds=#c6# (T1)", "", "15.58%"};
+ { 23, 17332, "", "=q1=Hand of Shazzrah", "=ds=#m3#"};
+ Prev = "MCGarr25Man";
+ Next = "MCGeddon25Man";
+ };
+
+ AtlasLoot_Data["MCGeddon25Man"] = {
+ { 1, 319136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.44%"};
+ { 2, 318823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "3.04%"};
+ { 3, 318829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.04%"};
+ { 4, 319144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.00%"};
+ { 5, 319143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "2.61%"};
+ { 6, 318861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "1.77%"};
+ { 7, 318824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "1.48%"};
+ { 8, 317110, "", "=q4=Seal of the Archmagus", "=ds=#s13#", "", "21.93%"};
+ { 9, 318821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "2.61%"};
+ { 10, 318820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.68%"};
+ { 11, 319142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.59%"};
+ { 12, 318822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.70%"};
+ { 16, 316797, "", "=q4=Arcanist Mantle", "=q1=#m1# =ds=#c3# (T1)", "", "19.92%"};
+ { 17, 316807, "", "=q4=Felheart Shoulder Pads", "=q1=#m1# =ds=#c8# (T1)", "", "19.78%"};
+ { 18, 316836, "", "=q4=Cenarion Spaulders", "=q1=#m1# =ds=#c1# (T1)", "", "19.52%"};
+ { 19, 316856, "", "=q4=Lawbringer Spaulders", "=q1=#m1# =ds=#c4# (T1)", "", "12.62%"};
+ { 20, 316844, "", "=q4=Earthfury Epaulets", "=q1=#m1# =ds=#c7# (T1)", "", "7.29%"};
+ { 22, 18563, "", "=q5=Bindings of the Windseeker", " =ds=#m3#, =q1=#m10#", "", "3.78%"};
+ { 23, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"};
+ Prev = "MCShazzrah25Man";
+ Next = "MCGolemagg25Man";
+ };
+
+ AtlasLoot_Data["MCGolemagg25Man"] = {
+ { 1, 319136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.18%"};
+ { 2, 318823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "2.65%"};
+ { 3, 318829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.20%"};
+ { 4, 319144, "", "=q4=Sabatons of the Flamewalker", "=ds=#s12#, #a3#", "", "1.00%"};
+ { 5, 319143, "", "=q4=Flameguard Gauntlets", "=ds=#s9#, #a4#", "", "2.17%"};
+ { 6, 318861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "1.44%"};
+ { 7, 318824, "", "=q4=Magma Tempered Boots", "=ds=#s12#, #a4#", "", "1.69%"};
+ { 8, 318821, "", "=q4=Quick Strike Ring", "=ds=#s13#", "", "2.26%"};
+ { 9, 318820, "", "=q4=Talisman of Ephemeral Power", "=ds=#s14#", "", "2.91%"};
+ { 10, 319142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.46%"};
+ { 11, 317103, "", "=q4=Azuresong Mageblade", "=ds=#h3#, #w10#", "", "17.59%"};
+ { 12, 318822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.89%"};
+ { 13, 318842, "", "=q4=Staff of Dominance", "=ds=#w9#", "", "18.95%"};
+ { 14, 317072, "", "=q4=Blastershot Launcher", "=ds=#w5#", "", "17.83%"};
+ { 16, 316798, "", "=q4=Arcanist Robes", "=q1=#m1# =ds=#c3# (T1)", "", "16.51%"};
+ { 17, 316815, "", "=q4=Robes of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "15.65%"};
+ { 18, 316809, "", "=q4=Felheart Robes", "=q1=#m1# =ds=#c8# (T1)", "", "15.66%"};
+ { 19, 316820, "", "=q4=Nightslayer Chestpiece", "=q1=#m1# =ds=#c6# (T1)", "", "16.76%"};
+ { 20, 316833, "", "=q4=Cenarion Vestments", "=q1=#m1# =ds=#c1# (T1)", "", "15.21%"};
+ { 21, 316845, "", "=q4=Giantstalker's Breastplate", "=q1=#m1# =ds=#c2# (T1)", "", "15.83%"};
+ { 22, 316841, "", "=q4=Earthfury Vestments", "=q1=#m1# =ds=#c7# (T1)", "", " 6.08%"};
+ { 23, 316865, "", "=q4=Breastplate of Might", "=q1=#m1# =ds=#c9# (T1)", "", "15.28%"};
+ { 24, 316853, "", "=q4=Lawbringer Chestguard", "=q1=#m1# =ds=#c4# (T1)", "", "9.53%"};
+ { 26, 17203, "", "=q4=Sulfuron Ingot", "=ds=#m3#", "", "11.98%"};
+ { 27, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"};
+ Prev = "MCGeddon25Man";
+ Next = "MCSulfuron25Man";
+ };
+
+ AtlasLoot_Data["MCSulfuron25Man"] = {
+ { 1, 319145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "2.80%"};
+ { 2, 318872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "2.54%"};
+ { 3, 319146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "2.70%"};
+ { 4, 318875, "", "=q4=Salamander Scale Pants", "=ds=#s11#, #a2#", "", "2.58%"};
+ { 5, 318870, "", "=q4=Helm of the Lifegiver", "=ds=#s1#, #a3#", "", "1.26%"};
+ { 6, 318861, "", "=q4=Flamewaker Legplates", "=ds=#s11#, #a4#", "", "2.54%"};
+ { 7, 318879, "", "=q4=Heavy Dark Iron Ring", "=ds=#s13#", "", "2.32%"};
+ { 8, 319147, "", "=q4=Ring of Spell Power", "=ds=#s13#", "", "2.39%"};
+ { 9, 318878, "", "=q4=Sorcerous Dagger", "=ds=#h3#, #w4#", "", "2.53%"};
+ { 10, 317074, "", "=q4=Shadowstrike", "=ds=#w7#", "", "23.50%"};
+ { 11, 317077, "", "=q4=Crimson Shocker", "=ds=#w12#", "", "2.26%"};
+ { 16, 316816, "", "=q4=Mantle of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "21.06%"};
+ { 17, 316823, "", "=q4=Nightslayer Shoulder Pads", "=q1=#m1# =ds=#c6# (T1)", "", "20.66%"};
+ { 18, 316848, "", "=q4=Giantstalker's Epaulets", "=q1=#m1# =ds=#c2# (T1)", "", "19.64%"};
+ { 19, 316868, "", "=q4=Pauldrons of Might", "=q1=#m1# =ds=#c9# (T1)", "", "21.14%"};
+ { 21, 17330, "", "=q1=Hand of Sulfuron", "=ds=#m3#"};
+ Prev = "MCGolemagg25Man";
+ Next = "MCMajordomo25Man";
+ };
+
+ AtlasLoot_Data["MCMajordomo25Man"] = {
+ { 1, 318811, "", "=q4=Fireproof Cloak", "=ds=#s4#", "", "15.12%"};
+ { 2, 318808, "", "=q4=Gloves of the Hypnotic Flame", "=ds=#s9#, #a1#", "", "15.36%"};
+ { 3, 318809, "", "=q4=Sash of Whispered Secrets", "=ds=#s10#, #a1#", "", "15.93%"};
+ { 4, 319139, "", "=q4=Fireguard Shoulders", "=ds=#s3#, #a2#", "", "15.87%"};
+ { 5, 318810, "", "=q4=Wild Growth Spaulders", "=ds=#s3#, #a2#", "", "16.91%"};
+ { 6, 318812, "", "=q4=Wristguards of True Flight", "=ds=#s8#, #a3#", "", "18.04%"};
+ { 7, 318806, "", "=q4=Core Forged Greaves", "=ds=#s12#, #a4#", "", "16.53%"};
+ { 8, 319140, "", "=q4=Cauterizing Band", "=ds=#s13#", "", "15.10%"};
+ { 9, 318805, "", "=q4=Core Hound Tooth", "=ds=#h1#, #w4#", "", "16.06%"};
+ { 10, 318803, "", "=q4=Finkle's Lava Dredger", "=ds=#h2#, #w6#", "", "12.43%"};
+ { 16, 18703, "", "=q4=Ancient Petrified Leaf", "=ds=#m2# =q1=(#c2#)", "", "35.25%"};
+ { 17, 18715, "", "=q4=Lok'delar, Stave of the Ancient Keepers", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c2#"};
+ { 18, 18713, "", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4#: =ds=#w2#, =q1=#m1# =ds=#c2#"};
+ { 19, 18714, "", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4#: =ds=#w19#, =q1=#m1# =ds=#c2#"};
+ { 21, 18646, "", "=q4=The Eye of Divinity", "=ds=#m2# =q1=(#c5#)", "", "28.30%"};
+ { 22, 18608, "", "=q4=Benediction", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c5#"};
+ { 23, 18609, "", "=q4=Anathema", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c5#"};
+ Prev = "MCSulfuron25Man";
+ Next = "MCRagnaros25Man";
+ };
+
+ AtlasLoot_Data["MCRagnaros25Man"] = {
+ { 1, 316915, "", "=q4=Netherwind Pants", "=q1=#m1# =ds=#c3# (T2)", "", "17.37%"};
+ { 2, 316922, "", "=q4=Leggings of Transcendence", "=q1=#m1# =ds=#c5# (T2)", "", "17.30%"};
+ { 3, 316930, "", "=q4=Nemesis Leggings", "=q1=#m1# =ds=#c8# (T2)", "", "16.87%"};
+ { 4, 316909, "", "=q4=Bloodfang Pants", "=q1=#m1# =ds=#c6# (T2)", "", "17.18%"};
+ { 5, 316901, "", "=q4=Stormrage Legguards", "=q1=#m1# =ds=#c1# (T2)", "", "15.49%"};
+ { 6, 316938, "", "=q4=Dragonstalker's Legguards", "=q1=#m1# =ds=#c2# (T2)", "", "16.02%"};
+ { 7, 316946, "", "=q4=Legplates of Ten Storms", "=q1=#m1# =ds=#c7# (T2)", "", "5.97%"};
+ { 8, 316962, "", "=q4=Legplates of Wrath", "=q1=#m1# =ds=#c9# (T2)", "", "17.23%"};
+ { 9, 316954, "", "=q4=Judgement Legplates", "=q1=#m1# =ds=#c4# (T2)", "", "10.81%"};
+ { 11, 17204, "", "=q5=Eye of Sulfuras", "=ds=#m3#", "", "3.42%"};
+ { 12, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"};
+ { 13, 102107, "", "=q4=Reins of the Magmatic Steed", "=ds=#e12#", "" };
+ { 14, 19017, "", "=q1=Essence of the Firelord", "=ds=#m3#", "", "0.46%"};
+ { 15, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"};
+ { 16, 317102, "", "=q4=Cloak of the Shrouded Mists", "=ds=#s4#", "", "14.31%"};
+ { 17, 317107, "", "=q4=Dragon's Blood Cape", "=ds=#s4#", "", "15.32%"};
+ { 18, 318817, "", "=q4=Crown of Destruction", "=ds=#s1#, #a3#", "", "16.75%"};
+ { 19, 319137, "", "=q4=Onslaught Girdle", "=ds=#s10#, #a4#", "", "13.18%"};
+ { 20, 318814, "", "=q4=Choker of the Fire Lord", "=ds=#s2#", "", "16.08%"};
+ { 21, 319138, "", "=q4=Band of Sulfuras", "=ds=#s13#", "", "15.64%"};
+ { 22, 317063, "", "=q4=Band of Accuria", "=ds=#s13#", "", "14.81%"};
+ { 23, 317082, "", "=q4=Shard of the Flame", "=ds=#s14#", "", " 4.65%"};
+ { 24, 318815, "", "=q4=Essence of the Pure Flame", "=ds=#s14#", "", "17.80%"};
+ { 25, 318816, "", "=q4=Perdition's Blade", "=ds=#h1#, #w4#", "", "15.90%"};
+ { 26, 317076, "", "=q4=Bonereaver's Edge", "=ds=#h2#, #w10#", "", "5.12%"};
+ { 27, 317104, "", "=q4=Spinal Reaper", "=ds=#h2#, #w1#", "", " 4.63%"};
+ { 28, 317106, "", "=q4=Malistar's Defender", "=ds=#w8#", "", "13.88%"};
+ { 30, 21110, "", "=q1=Draconic for Dummies", "=ds=#m3#", "", "100%"};
+ Prev = "MCMajordomo25Man";
+ };
+
+ AtlasLoot_Data["MCTrashMobs25Man"] = {
+ { 1, 316802, "", "=q4=Arcanist Belt", "=q1=#m1# =ds=#c3# (T1)", "", "0.16%"};
+ { 2, 316817, "", "=q4=Girdle of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "0.18%"};
+ { 3, 316806, "", "=q4=Felheart Belt", "=q1=#m1# =ds=#c8# (T1)", "", "0.19%"};
+ { 4, 316827, "", "=q4=Nightslayer Belt", "=q1=#m1# =ds=#c6# (T1)", "", "0.15%"};
+ { 5, 316828, "", "=q4=Cenarion Belt", "=q1=#m1# =ds=#c1# (T1)", "", "0.16%"};
+ { 6, 316851, "", "=q4=Giantstalker's Belt", "=q1=#m1# =ds=#c2# (T1)", "", "0.17%"};
+ { 7, 316838, "", "=q4=Earthfury Belt", "=q1=#m1# =ds=#c7# (T1)", "", "0.07%"};
+ { 8, 316864, "", "=q4=Belt of Might", "=q1=#m1# =ds=#c9# (T1)", "", "0.16%"};
+ { 9, 316858, "", "=q4=Lawbringer Belt", "=q1=#m1# =ds=#c4# (T1)", "", "0.10%"};
+ { 11, 17010, "", "=q3=Fiery Core", "=ds=#e8#"};
+ { 12, 17011, "", "=q3=Lava Core", "=ds=#e8#"};
+ { 13, 11382, "", "=q2=Blood of the Mountain", "=ds=#e8#"};
+ { 14, 17012, "", "=q1=Core Leather", "=ds=#e8#"};
+ { 16, 316799, "", "=q4=Arcanist Bindings", "=q1=#m1# =ds=#c3# (T1)", "", "0.16%"};
+ { 17, 316819, "", "=q4=Vambraces of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "0.16%"};
+ { 18, 316804, "", "=q4=Felheart Bracers", "=q1=#m1# =ds=#c8# (T1)", "", "0.16%"};
+ { 19, 316825, "", "=q4=Nightslayer Bracelets", "=q1=#m1# =ds=#c6# (T1)", "", "0.17%"};
+ { 20, 316830, "", "=q4=Cenarion Bracers", "=q1=#m1# =ds=#c1# (T1)", "", "0.17%"};
+ { 21, 316850, "", "=q4=Giantstalker's Bracers", "=q1=#m1# =ds=#c2# (T1)", "", "0.18%"};
+ { 22, 316840, "", "=q4=Earthfury Bracers", "=q1=#m1# =ds=#c7# (T1)", "", "0.06%"};
+ { 23, 316861, "", "=q4=Bracers of Might", "=q1=#m1# =ds=#c9# (T1)", "", "0.16%"};
+ { 24, 316857, "", "=q4=Lawbringer Bracers", "=q1=#m1# =ds=#c4# (T1)", "", "0.11%"};
+ };
+
+ AtlasLoot_Data["MCRANDOMBOSSDROPPS25Man"] = {
+ { 1, 18264, "", "=q3=Plans: Elemental Sharpening Stone", "=ds=#p2# (300)", "", "1.02%"};
+ { 2, 18262, "", "=q2=Elemental Sharpening Stone", "=ds=#e6#"};
+ { 4, 18292, "", "=q3=Schematic: Core Marksman Rifle", "=ds=#p5# (300)", "", "0.96%"};
+ { 5, 18282, "", "=q4=Core Marksman Rifle", "=ds=#w5#"};
+ { 7, 18291, "", "=q3=Schematic: Force Reactive Disk", "=ds=#p5# (300)", "", "0.92%"};
+ { 8, 18168, "", "=q4=Force Reactive Disk", "=ds=#w8#"};
+ { 10, 18290, "", "=q3=Schematic: Biznicks 247x128 Accurascope", "=ds=#p5# (300)", "", "0.11%"};
+ { 11, 18283, "", "=q3=Biznicks 247x128 Accurascope", "=ds=#e11#"};
+ { 13, 18259, "", "=q3=Formula: Enchant Weapon - Spell Power", "=ds=#p4# (300)", "", "0.85%"};
+ { 16, 18252, "", "=q3=Pattern: Core Armor Kit", "=ds=#p7# (300)", "", "0.85%"};
+ { 17, 18251, "", "=q3=Core Armor Kit", "=ds=#e6#"};
+ { 19, 18265, "", "=q3=Pattern: Flarecore Wraps", "=ds=#p8# (300)", "", "0.72%"};
+ { 20, 18263, "", "=q4=Flarecore Wraps", "=ds=#s8#, #a1#"};
+ { 22, 21371, "", "=q3=Pattern: Core Felcloth Bag", "=ds=#p8# (300)", "", "0.33%"};
+ { 23, 21342, "", "=q4=Core Felcloth Bag", "=ds=#m11# #e1# =q1=#m1# #c8#"};
+ { 25, 18257, "", "=q3=Recipe: Major Rejuvenation Potion", "=ds=#p1# (300)", "", "0.76%"};
+ { 26, 18253, "", "=q1=Major Rejuvenation Potion", "=ds=#e2#"};
+ { 28, 18260, "", "=q3=Formula: Enchant Weapon - Healing Power", "=ds=#p4# (300)", "", "0.75%"};
+ };
+
+ ----------------------------------------------
+ --- Blackrock Mountain: Molten Core ASCENDED ---
+ ----------------------------------------------
+
+ AtlasLoot_Data["MCLucifron25ManHEROIC"] = {
{ 1, 218872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.93%"};
{ 2, 219145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.84%"};
{ 3, 219146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.95%"};
@@ -2687,10 +2825,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 216863, "", "=q4=Gauntlets of Might", "=q1=#m1# =ds=#c9# (T1)", "", "16.40%"};
{ 21, 216859, "", "=q4=Lawbringer Boots", "=q1=#m1# =ds=#c4# (T1)", "", "7.20%"};
{ 22, 17329, "", "=q1=Hand of Lucifron", "=ds=#m3#"};
- Next = "MCMagmadarHEROIC";
+ Next = "MCMagmadar25ManHEROIC";
};
- AtlasLoot_Data["MCMagmadarHEROIC"] = {
+ AtlasLoot_Data["MCMagmadar25ManHEROIC"] = {
{ 1, 219136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.79%"};
{ 2, 218823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "6.18%"};
{ 3, 218829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "2.10%"};
@@ -2715,11 +2853,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216843, "", "=q4=Earthfury Legguards", "=q1=#m1# =ds=#c7# (T1)", "", " 4.73%"};
{ 23, 216855, "", "=q4=Lawbringer Legplates", "=q1=#m1# =ds=#c4# (T1)", "", "8.54%"};
{ 24, 216867, "", "=q4=Legplates of Might", "=q1=#m1# =ds=#c9# (T1)", "", "13.97%"};
- Prev = "MCLucifronHEROIC";
- Next = "MCGehennasHEROIC";
+ Prev = "MCLucifron25ManHEROIC";
+ Next = "MCGehennas25ManHEROIC";
};
- AtlasLoot_Data["MCGehennasHEROIC"] = {
+ AtlasLoot_Data["MCGehennas25ManHEROIC"] = {
{ 1, 219145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "3.83%"};
{ 2, 218872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "3.37%"};
{ 3, 219146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "3.53%"};
@@ -2737,11 +2875,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 216862, "", "=q4=Sabatons of Might", "=q1=#m1# =ds=#c9# (T1)", "", "14.48%"};
{ 21, 216860, "", "=q4=Lawbringer Gauntlets", "=q1=#m1# =ds=#c4# (T1)", "", "11.77%"};
{ 23, 17331, "", "=q1=Hand of Gehennas", "=ds=#m3#"};
- Prev = "MCMagmadarHEROIC";
- Next = "MCGarrHEROIC";
+ Prev = "MCMagmadar25ManHEROIC";
+ Next = "MCGarr25ManHEROIC";
};
- AtlasLoot_Data["MCGarrHEROIC"] = {
+ AtlasLoot_Data["MCGarr25ManHEROIC"] = {
{ 1, 219136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "4.80%"};
{ 2, 218823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "5.23%"};
{ 3, 218829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.68%"};
@@ -2768,11 +2906,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 24, 216854, "", "=q4=Lawbringer Helm", "=q1=#m1# =ds=#c4# (T1)", "", "7.23%"};
{ 26, 218564, "", "=q5=Bindings of the Windseeker", "=ds=#m3#, =q1=#m9#", "", "3.74%"};
{ 27, 219019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"};
- Prev = "MCGehennasHEROIC";
- Next = "MCShazzrahHEROIC";
+ Prev = "MCGehennas25ManHEROIC";
+ Next = "MCShazzrah25ManHEROIC";
};
- AtlasLoot_Data["MCShazzrahHEROIC"] = {
+ AtlasLoot_Data["MCShazzrah25ManHEROIC"] = {
{ 1, 219145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "1.97%"};
{ 2, 218872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "1.84%"};
{ 3, 219146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "1.85%"};
@@ -2790,11 +2928,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 216852, "", "=q4=Giantstalker's Gloves", "=q1=#m1# =ds=#c2# (T1)", "", "18.58%"};
{ 21, 216824, "", "=q4=Nightslayer Boots", "=q1=#m1# =ds=#c6# (T1)", "", "15.58%"};
{ 23, 17332, "", "=q1=Hand of Shazzrah", "=ds=#m3#"};
- Prev = "MCGarrHEROIC";
- Next = "MCGeddonHEROIC";
+ Prev = "MCGarr25ManHEROIC";
+ Next = "MCGeddon25ManHEROIC";
};
- AtlasLoot_Data["MCGeddonHEROIC"] = {
+ AtlasLoot_Data["MCGeddon25ManHEROIC"] = {
{ 1, 219136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.44%"};
{ 2, 218823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "3.04%"};
{ 3, 218829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.04%"};
@@ -2814,11 +2952,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 216844, "", "=q4=Earthfury Epaulets", "=q1=#m1# =ds=#c7# (T1)", "", "7.29%"};
{ 22, 218563, "", "=q5=Bindings of the Windseeker", " =ds=#m3#, =q1=#m10#", "", "3.78%"};
{ 23, 219019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=q1=#m4#: =ds=#h1#, #w10#"};
- Prev = "MCShazzrahHEROIC";
- Next = "MCGolemaggHEROIC";
+ Prev = "MCShazzrah25ManHEROIC";
+ Next = "MCGolemagg25ManHEROIC";
};
- AtlasLoot_Data["MCGolemaggHEROIC"] = {
+ AtlasLoot_Data["MCGolemagg25ManHEROIC"] = {
{ 1, 219136, "", "=q4=Mana Igniting Cord", "=ds=#s10#, #a1#", "", "2.18%"};
{ 2, 218823, "", "=q4=Aged Core Leather Gloves", "=ds=#s9#, #a2#", "", "2.65%"};
{ 3, 218829, "", "=q4=Deep Earth Spaulders", "=ds=#s3#, #a3#", "", "1.20%"};
@@ -2844,11 +2982,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 24, 216853, "", "=q4=Lawbringer Chestguard", "=q1=#m1# =ds=#c4# (T1)", "", "9.53%"};
{ 26, 17203, "", "=q4=Sulfuron Ingot", "=ds=#m3#", "", "11.98%"};
{ 27, 217182, "", "=q5=Sulfuras, Hand of Ragnaros", "=q1=#m4#: =ds=#h2#, #w6#"};
- Prev = "MCGeddonHEROIC";
- Next = "MCSulfuronHEROIC";
+ Prev = "MCGeddon25ManHEROIC";
+ Next = "MCSulfuron25ManHEROIC";
};
- AtlasLoot_Data["MCSulfuronHEROIC"] = {
+ AtlasLoot_Data["MCSulfuron25ManHEROIC"] = {
{ 1, 219145, "", "=q4=Robe of Volatile Power", "=ds=#s5#, #a1#", "", "2.80%"};
{ 2, 218872, "", "=q4=Manastorm Leggings", "=ds=#s11#, #a1#", "", "2.54%"};
{ 3, 219146, "", "=q4=Wristguards of Stability", "=ds=#s8#, #a2#", "", "2.70%"};
@@ -2865,11 +3003,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 18, 216848, "", "=q4=Giantstalker's Epaulets", "=q1=#m1# =ds=#c2# (T1)", "", "19.64%"};
{ 19, 216868, "", "=q4=Pauldrons of Might", "=q1=#m1# =ds=#c9# (T1)", "", "21.14%"};
{ 21, 17330, "", "=q1=Hand of Sulfuron", "=ds=#m3#"};
- Prev = "MCGolemaggHEROIC";
- Next = "MCMajordomoHEROIC";
+ Prev = "MCGolemagg25ManHEROIC";
+ Next = "MCMajordomo25ManHEROIC";
};
- AtlasLoot_Data["MCMajordomoHEROIC"] = {
+ AtlasLoot_Data["MCMajordomo25ManHEROIC"] = {
{ 1, 218811, "", "=q4=Fireproof Cloak", "=ds=#s4#", "", "15.12%"};
{ 2, 218808, "", "=q4=Gloves of the Hypnotic Flame", "=ds=#s9#, #a1#", "", "15.36%"};
{ 3, 218809, "", "=q4=Sash of Whispered Secrets", "=ds=#s10#, #a1#", "", "15.93%"};
@@ -2887,11 +3025,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 21, 18646, "", "=q4=The Eye of Divinity", "=ds=#m2# =q1=(#c5#)", "", "28.30%"};
{ 22, 18608, "", "=q4=Benediction", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c5#"};
{ 23, 18609, "", "=q4=Anathema", "=q1=#m4#: =ds=#w9#, =q1=#m1# =ds=#c5#"};
- Prev = "MCSulfuronHEROIC";
- Next = "MCRagnarosHEROIC";
+ Prev = "MCSulfuron25ManHEROIC";
+ Next = "MCRagnaros25ManHEROIC";
};
- AtlasLoot_Data["MCRagnarosHEROIC"] = {
+ AtlasLoot_Data["MCRagnaros25ManHEROIC"] = {
{ 1, 216915, "", "=q4=Netherwind Pants", "=q1=#m1# =ds=#c3# (T2)", "", "17.37%"};
{ 2, 216922, "", "=q4=Leggings of Transcendence", "=q1=#m1# =ds=#c5# (T2)", "", "17.30%"};
{ 3, 216930, "", "=q4=Nemesis Leggings", "=q1=#m1# =ds=#c8# (T2)", "", "16.87%"};
@@ -2920,10 +3058,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 27, 217104, "", "=q4=Spinal Reaper", "=ds=#h2#, #w1#", "", " 4.63%"};
{ 28, 217106, "", "=q4=Malistar's Defender", "=ds=#w8#", "", "13.88%"};
{ 30, 21110, "", "=q1=Draconic for Dummies", "=ds=#m3#", "", "100%"};
- Prev = "MCMajordomoHEROIC";
+ Prev = "MCMajordomo25ManHEROIC";
};
- AtlasLoot_Data["MCTrashMobsHEROIC"] = {
+ AtlasLoot_Data["MCTrashMobs25ManHEROIC"] = {
{ 1, 216802, "", "=q4=Arcanist Belt", "=q1=#m1# =ds=#c3# (T1)", "", "0.16%"};
{ 2, 216817, "", "=q4=Girdle of Prophecy", "=q1=#m1# =ds=#c5# (T1)", "", "0.18%"};
{ 3, 216806, "", "=q4=Felheart Belt", "=q1=#m1# =ds=#c8# (T1)", "", "0.19%"};
@@ -2948,7 +3086,7 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 24, 216857, "", "=q4=Lawbringer Bracers", "=q1=#m1# =ds=#c4# (T1)", "", "0.11%"};
};
- AtlasLoot_Data["MCRANDOMBOSSDROPPSHEROIC"] = {
+ AtlasLoot_Data["MCRANDOMBOSSDROPPS25ManHEROIC"] = {
{ 1, 18264, "", "=q3=Plans: Elemental Sharpening Stone", "=ds=#p2# (300)", "", "1.02%"};
{ 2, 18262, "", "=q2=Elemental Sharpening Stone", "=ds=#e6#"};
{ 4, 18292, "", "=q3=Schematic: Core Marksman Rifle", "=ds=#p5# (300)", "", "0.96%"};
@@ -3206,10 +3344,245 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
-------------------------------------------------
- --- Blackrock Mountain: Blackwing Lair HEROIC ---
+ --- Blackrock Mountain: Blackwing Lair HEROIC FLEX ---
-------------------------------------------------
- AtlasLoot_Data["BWLRazorgoreHEROIC"] = {
+ AtlasLoot_Data["BWLRazorgore25Man"] = {
+ { 1, 316918, "", "=q4=Netherwind Bindings", "=q1=#m1# =ds=#c3#", "", "22.22%"};
+ { 2, 316926, "", "=q4=Bindings of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
+ { 3, 316934, "", "=q4=Nemesis Bracers", "=q1=#m1# =ds=#c8#", "", "22.22%"};
+ { 4, 316911, "", "=q4=Bloodfang Bracers", "=q1=#m1# =ds=#c6#", "", "22.22%"};
+ { 5, 316904, "", "=q4=Stormrage Bracers", "=q1=#m1# =ds=#c1#", "", "22.22%"};
+ { 6, 316935, "", "=q4=Dragonstalker's Bracers", "=q1=#m1# =ds=#c2#", "", "22.22%"};
+ { 7, 316943, "", "=q4=Bracers of Ten Storms", "=q1=#m1# =ds=#c7#", "", "22.22%"};
+ { 8, 316959, "", "=q4=Bracelets of Wrath", "=q1=#m1# =ds=#c9#", "", "22.22%"};
+ { 9, 316951, "", "=q4=Judgement Bindings", "=q1=#m1# =ds=#c4#", "", "22.22%"};
+ { 16, 319337, "", "=q4=The Black Book", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "20%"};
+ { 17, 319336, "", "=q4=Arcane Infused Gem", "=ds=#s14#, =q1=#m1# =ds=#c2#", "", "20%"};
+ { 18, 319344, "", "=q4=Natural Alignment Crystal", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "6.67%"};
+ { 20, 319370, "", "=q4=Mantle of the Blackwing Cabal", "=ds=#s3#, #a1#", "", "20%"};
+ { 21, 319369, "", "=q4=Gloves of Rapid Evolution", "=ds=#s9#, #a1#", "", "20%"};
+ { 22, 319334, "", "=q4=The Untamed Blade", "=ds=#h2#, #w10#", "", "10%"};
+ { 23, 319335, "", "=q4=Spineshatter", "=ds=#h1#, #w6#", "", "10%"};
+ { 24, 319397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
+ { 25, 319357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"};
+ { 26, 319405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "16.67%"};
+ Next = "BWLVaelastrasz25Man";
+ };
+
+ AtlasLoot_Data["BWLVaelastrasz25Man"] = {
+ { 1, 316818, "", "=q4=Netherwind Belt", "=q1=#m1# =ds=#c3#", "", "22.22%"};
+ { 2, 316925, "", "=q4=Belt of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
+ { 3, 316933, "", "=q4=Nemesis Belt", "=q1=#m1# =ds=#c8#", "", "22.22%"};
+ { 4, 316936, "", "=q4=Dragonstalker's Belt", "=q1=#m1# =ds=#c2#", "", "22.22%"};
+ { 5, 316903, "", "=q4=Stormrage Belt", "=q1=#m1# =ds=#c1#", "", "22.22%"};
+ { 6, 316910, "", "=q4=Bloodfang Belt", "=q1=#m1# =ds=#c6#", "", "22.22%"};
+ { 7, 316944, "", "=q4=Belt of Ten Storms", "=q1=#m1# =ds=#c7#", "", "22.22%"};
+ { 8, 316960, "", "=q4=Waistband of Wrath", "=q1=#m1# =ds=#c9#", "", "22.22%"};
+ { 9, 316952, "", "=q4=Judgement Belt", "=q1=#m1# =ds=#c4#", "", "22.22%%"};
+ { 16, 319339, "", "=q4=Mind Quickening Gem", "=ds=#s14#, =q1=#m1# =ds=#c3#", "", "20%"};
+ { 17, 319340, "", "=q4=Rune of Metamorphosis", "=ds=#s14#, =q1=#m1# =ds=#c1#", "", "20%"};
+ { 19, 319372, "", "=q4=Helm of Endless Rage", "=ds=#s1#, #a4#", "", "20%"};
+ { 20, 319371, "", "=q4=Pendant of the Fallen Dragon", "=ds=#s2#", "", "20%"};
+ { 21, 319346, "", "=q4=Dragonfang Blade", "=ds=#h1#, #w4#", "", "10%"};
+ { 22, 319348, "", "=q4=Red Dragonscale Protector", "=ds=#w8#", "", "10%"};
+ { 23, 319430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "16.67%"};
+ { 24, 319403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "16.67%"};
+ { 25, 319367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"};
+ Prev = "BWLRazorgore25Man";
+ Next = "BWLLashlayer25Man";
+ };
+
+ AtlasLoot_Data["BWLLashlayer25Man"] = {
+ { 1, 316912, "", "=q4=Netherwind Boots", "=q1=#m1# =ds=#c3#", "", "22.22%"};
+ { 2, 316919, "", "=q4=Boots of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
+ { 3, 316927, "", "=q4=Nemesis Boots", "=q1=#m1# =ds=#c8#", "", "22.22%"};
+ { 4, 316898, "", "=q4=Stormrage Boots", "=q1=#m1# =ds=#c1#", "", "22.22%"};
+ { 5, 316906, "", "=q4=Bloodfang Boots", "=q1=#m1# =ds=#c6#", "", "22.22%"};
+ { 6, 316941, "", "=q4=Dragonstalker's Greaves", "=q1=#m1# =ds=#c2#", "", "22.22%"};
+ { 7, 316949, "", "=q4=Greaves of Ten Storms", "=q1=#m1# =ds=#c7#", "", "22.22%"};
+ { 8, 316965, "", "=q4=Sabatons of Wrath", "=q1=#m1# =ds=#c9#", "", "22.22%"};
+ { 9, 316957, "", "=q4=Judgement Sabatons", "=q1=#m1# =ds=#c4#", "", "22.22%%"};
+ { 12, 20383, "", "=q1=Head of the Broodlord Lashlayer", "=ds=#m3#", "", "100%"};
+ { 16, 319342, "", "=q4=Venomous Totem", "=ds=#s14#, =q1=#m1# =ds=#c6#", "", "20%"};
+ { 17, 319341, "", "=q4=Lifegiving Gem", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "20%"};
+ { 18, 319345, "", "=q4=Aegis of Preservation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "16.67%"};
+ { 20, 319374, "", "=q4=Bracers of Arcane Accuracy", "=ds=#s8#, #a1#", "", "20%"};
+ { 21, 319373, "", "=q4=Black Brood Pauldrons", "=ds=#s3#, #a3#", "", "20%"};
+ { 22, 319351, "", "=q4=Maladath, Runed Blade of the Black Flight", "=ds=#h1#, #w10#", "", "10%"};
+ { 23, 319350, "", "=q4=Heartstriker", "=ds=#w2#", "", "10%"};
+ { 24, 319402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "12.5%"};
+ { 25, 319365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%"};
+ { 26, 314000, "", "=q4=Ring of Trinity Force", "=ds=#h3#, #w13#", "", "12.5%"};
+ { 27, 319432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "16.67%"};
+ Prev = "BWLVaelastrasz25Man";
+ Next = "BWLFiremaw25Man";
+ };
+
+ AtlasLoot_Data["BWLFiremaw25Man"] = {
+ { 1, 316913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "6.67%"};
+ { 2, 316920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.67%"};
+ { 3, 316928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "6.67%"};
+ { 4, 316907, "", "=q4=Bloodfang Gloves", "=q1=#m1# =ds=#c6#", "", "6.67%"};
+ { 5, 316940, "", "=q4=Dragonstalker's Gauntlets", "=q1=#m1# =ds=#c2#", "", "6.67%"};
+ { 6, 316899, "", "=q4=Stormrage Handguards", "=q1=#m1# =ds=#c1#", "", "6.67%"};
+ { 7, 316948, "", "=q4=Gauntlets of Ten Storms", "=q1=#m1# =ds=#c7#", "", "6.67%"};
+ { 8, 316964, "", "=q4=Gauntlets of Wrath", "=q1=#m1# =ds=#c9#", "", "6.67%"};
+ { 9, 316956, "", "=q4=Judgement Gauntlets", "=q1=#m1# =ds=#c4#", "", "6.67%"};
+ { 11, 319365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%"};
+ { 12, 319355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
+ { 13, 319353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
+ { 16, 319343, "", "=q4=Scrolls of Blinding Light", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "12.5%"};
+ { 17, 319344, "", "=q4=Natural Alignment Crystal", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "6.67%"};
+ { 19, 319398, "", "=q4=Cloak of Firemaw", "=ds=#s4#", "", "12.5%"};
+ { 20, 319400, "", "=q4=Firemaw's Clutch", "=ds=#s10#, #a1#", "", "12.5%"};
+ { 21, 319399, "", "=q4=Black Ash Robe", "=ds=#s5#, #a1#", "", "12.5%"};
+ { 22, 319396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%"};
+ { 23, 319401, "", "=q4=Primalist's Linked Legguards", "=ds=#s11#, #a3#", "", "12.5%"};
+ { 24, 319394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.76%"};
+ { 25, 319402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "12.5%"};
+ { 27, 319397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
+ { 28, 319395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"};
+ Prev = "BWLLashlayer25Man";
+ Next = "BWLEbonroc25Man";
+ };
+
+ AtlasLoot_Data["BWLEbonroc25Man"] = {
+ { 1, 316913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "6.67%"};
+ { 2, 316920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.67%"};
+ { 3, 316928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "6.67%"};
+ { 4, 316907, "", "=q4=Bloodfang Gloves", "=q1=#m1# =ds=#c6#", "", "6.67%"};
+ { 5, 316940, "", "=q4=Dragonstalker's Gauntlets", "=q1=#m1# =ds=#c2#", "", "6.67%"};
+ { 6, 316899, "", "=q4=Stormrage Handguards", "=q1=#m1# =ds=#c1#", "", "6.67%"};
+ { 7, 316948, "", "=q4=Gauntlets of Ten Storms", "=q1=#m1# =ds=#c7#", "", "6.67%"};
+ { 8, 316964, "", "=q4=Gauntlets of Wrath", "=q1=#m1# =ds=#c9#", "", "6.67%"};
+ { 9, 316956, "", "=q4=Judgement Gauntlets", "=q1=#m1# =ds=#c4#", "", "6.67%"};
+ { 16, 319345, "", "=q4=Aegis of Preservation", "=ds=#s14#, =q1=#m1# =ds=#c5#", "", "16.67%"};
+ { 18, 319407, "", "=q4=Ebony Flame Gloves", "=ds=#s9#, #a1#", "", "16.67%"};
+ { 19, 319405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "16.67%"};
+ { 20, 319396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%"};
+ { 21, 319394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.67%"};
+ { 23, 319403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "16.67%"};
+ { 24, 319397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
+ { 25, 319406, "", "=q4=Drake Fang Talisman", "=ds=#s14#", "", "16.67%"};
+ { 26, 319395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"};
+ { 28, 319353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
+ { 29, 319355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
+ { 30, 319368, "", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "", "16.67%"};
+ Prev = "BWLFiremaw25Man";
+ Next = "BWLFlamegor25Man";
+ };
+
+ AtlasLoot_Data["BWLFlamegor25Man"] = {
+ { 1, 316913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "6.67%"};
+ { 2, 316920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.67%"};
+ { 3, 316928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "6.67%"};
+ { 4, 316907, "", "=q4=Bloodfang Gloves", "=q1=#m1# =ds=#c6#", "", "6.67%"};
+ { 5, 316940, "", "=q4=Dragonstalker's Gauntlets", "=q1=#m1# =ds=#c2#", "", "6.67%"};
+ { 6, 316899, "", "=q4=Stormrage Handguards", "=q1=#m1# =ds=#c1#", "", "6.67%"};
+ { 7, 316948, "", "=q4=Gauntlets of Ten Storms", "=q1=#m1# =ds=#c7#", "", "6.67%"};
+ { 8, 316964, "", "=q4=Gauntlets of Wrath", "=q1=#m1# =ds=#c9#", "", "6.67%"};
+ { 9, 316956, "", "=q4=Judgement Gauntlets", "=q1=#m1# =ds=#c4#", "", "6.67%"};
+ { 16, 319430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "16.67%"};
+ { 17, 319396, "", "=q4=Taut Dragonhide Belt", "=ds=#s10#, #a2#", "", "6.67%"};
+ { 18, 319433, "", "=q4=Emberweave Leggings", "=ds=#s11#, #a3#", "", "16.67%"};
+ { 19, 319394, "", "=q4=Drake Talon Pauldrons", "=ds=#s3#, #a4#", "", "6.67%"};
+ { 21, 319397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
+ { 22, 319432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "16.67%"};
+ { 23, 319395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"};
+ { 24, 319431, "", "=q4=Styleen's Impeding Scarab", "=ds=#s14#", "", "16.67%"};
+ { 26, 319353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
+ { 27, 319357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"};
+ { 28, 319355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
+ { 29, 319367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"};
+ Prev = "BWLEbonroc25Man";
+ Next = "BWLChromaggus25Man";
+ };
+
+ AtlasLoot_Data["BWLChromaggus25Man"] = {
+ { 1, 316917, "", "=q4=Netherwind Mantle", "=q1=#m1# =ds=#c3#", "", "22.22%"};
+ { 2, 316924, "", "=q4=Pauldrons of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
+ { 3, 316932, "", "=q4=Nemesis Spaulders", "=q1=#m1# =ds=#c8#", "", "22.22%"};
+ { 4, 316937, "", "=q4=Dragonstalker's Spaulders", "=q1=#m1# =ds=#c2#", "", "22.22%"};
+ { 5, 316902, "", "=q4=Stormrage Pauldrons", "=q1=#m1# =ds=#c1#", "", "22.22%"};
+ { 6, 316832, "", "=q4=Bloodfang Spaulders", "=q1=#m1# =ds=#c6#", "", "22.22%"};
+ { 7, 316945, "", "=q4=Epaulets of Ten Storms", "=q1=#m1# =ds=#c7#", "", "22.22%"};
+ { 8, 316953, "", "=q4=Judgement Spaulders", "=q1=#m1# =ds=#c4#", "", "22.22%"};
+ { 9, 316961, "", "=q4=Pauldrons of Wrath", "=q1=#m1# =ds=#c9#", "", "22.22%"};
+ { 16, 319386, "", "=q4=Elementium Threaded Cloak", "=ds=#s4#", "", "20%"};
+ { 17, 319388, "", "=q4=Angelista's Grasp", "=ds=#s10#, #a1#", "", "20%"};
+ { 18, 319385, "", "=q4=Empowered Leggings", "=ds=#s11#, #a1#", "", "20%"};
+ { 19, 319391, "", "=q4=Shimmering Geta", "=ds=#s12#, #a1#", "", "20%"};
+ { 20, 319389, "", "=q4=Taut Dragonhide Shoulderpads", "=ds=#s3#, #a2#", "", "20%"};
+ { 21, 319390, "", "=q4=Taut Dragonhide Gloves", "=ds=#s9#, #a2#", "", "20%"};
+ { 22, 319393, "", "=q4=Primalist's Linked Waistguard", "=ds=#s10#, #a3#", "", "10%"};
+ { 23, 319392, "", "=q4=Girdle of the Fallen Crusader", "=ds=#s10#, #a4#", "", "10%"};
+ { 24, 319387, "", "=q4=Chromatic Boots", "=ds=#s12#, #a4#", "", "20%"};
+ { 26, 319347, "", "=q4=Claw of Chromaggus", "=ds=#h3#, #w4#", "", "10%"};
+ { 27, 319352, "", "=q4=Chromatically Tempered Sword", "=ds=#h1#, #w10#", "", "10%"};
+ { 28, 319349, "", "=q4=Elementium Reinforced Bulwark", "=ds=#w8#", "", "10%"};
+ { 29, 319361, "", "=q4=Ashjre'thul, Crossbow of Smiting", "=ds=#w3#", "", "10%"};
+ Prev = "BWLFlamegor25Man";
+ Next = "BWLNefarian125Man";
+ };
+
+ AtlasLoot_Data["BWLNefarian125Man"] = {
+ { 1, 316916, "", "=q4=Netherwind Robes", "=q1=#m1# =ds=#c3#", "", "22.22%"};
+ { 2, 316931, "", "=q4=Nemesis Robes", "=q1=#m1# =ds=#c8#", "", "22.22%"};
+ { 3, 316923, "", "=q4=Robes of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
+ { 4, 316905, "", "=q4=Bloodfang Chestpiece", "=q1=#m1# =ds=#c6#", "", "22.22%"};
+ { 5, 316897, "", "=q4=Stormrage Chestguard", "=q1=#m1# =ds=#c1#", "", "22.22%"};
+ { 6, 316942, "", "=q4=Dragonstalker's Breastplate", "=q1=#m1# =ds=#c2#", "", "22.22%"};
+ { 7, 316950, "", "=q4=Breastplate of Ten Storms", "=q1=#m1# =ds=#c7#", "", "22.22%"};
+ { 8, 316966, "", "=q4=Breastplate of Wrath", "=q1=#m1# =ds=#c9#", "", "22.22%"};
+ { 9, 316958, "", "=q4=Judgement Breastplate", "=q1=#m1# =ds=#c4#", "", "22.22%"};
+ { 16, 319378, "", "=q4=Cloak of the Brood Lord", "=ds=#s4#", "", "16.67%"};
+ { 17, 319375, "", "=q4=Mish'undare, Circlet of the Mind Flayer", "=ds=#s1#, #a1#", "", "16.67%"};
+ { 18, 319381, "", "=q4=Boots of the Shadow Flame", "=ds=#s12#, #a2#", "", "16.67%"};
+ { 19, 319380, "", "=q4=Therazane's Link", "=ds=#s10#, #a3#", "", "16.67%"};
+ { 20, 319377, "", "=q4=Prestor's Talisman of Connivery", "=ds=#s2#", "", "16.67%"};
+ { 21, 319376, "", "=q4=Archimtiros' Ring of Reckoning", "=ds=#s13#", "", "16.67%"};
+ { 22, 319382, "", "=q4=Pure Elementium Band", "=ds=#s13#", "", "16.67%"};
+ { 23, 319379, "", "=q4=Neltharion's Tear", "=ds=#s14#", "", "16.67%"};
+ { 24, 319364, "", "=q4=Ashkandi, Greatsword of the Brotherhood", "=ds=#h2#, #w10#", "", "10%"};
+ { 25, 319363, "", "=q4=Crul'shorukh, Edge of Chaos", "=ds=#h1#, #w1#", "", "16.67%"};
+ { 26, 319360, "", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "", "16.67%"};
+ { 27, 319356, "", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "", "16.67%%"};
+ { 28, 314001, "", "=q4=Archimtiros' Ring of Armageddon", "=ds=#s13#", "", "16.67%%"};
+ Prev = "BWLChromaggus25Man";
+ Next = "BWLNefarian225Man";
+ };
+
+ AtlasLoot_Data["BWLNefarian225Man"] = {
+ { 1, 19003, "", "=q4=Head of Nefarian", "=ds=#m2#", "", "100%"};
+ { 2, 19383, "", "=q4=Master Dragonslayer's Medallion", "=q1=#m4#: =ds=#s2#"};
+ { 3, 19384, "", "=q4=Master Dragonslayer's Ring", "=q1=#m4#: =ds=#s13#"};
+ { 4, 19366, "", "=q4=Master Dragonslayer's Orb", "=q1=#m4#: =ds=#s15#"};
+ { 6, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#", "", "100%"};
+ Prev = "BWLNefarian125Man";
+ Next = "BWLTrashMobs25Man";
+ };
+
+ AtlasLoot_Data["BWLTrashMobs25Man"] = {
+ { 1, 319436, "", "=q4=Cloak of Draconic Might", "=ds=#s4#", "", "2.53%"};
+ { 2, 319437, "", "=q4=Boots of Pure Thought", "=ds=#s12#, #a1#", "", "2.33%"};
+ { 3, 319438, "", "=q4=Ringo's Blizzard Boots", "=ds=#s12#, #a1#", "", "4.42%"};
+ { 4, 319439, "", "=q4=Interlaced Shadow Jerkin", "=ds=#s5#, #a2#", "", "4.62%"};
+ { 5, 319434, "", "=q4=Band of Dark Dominion", "=ds=#s13#", "", "1.57%"};
+ { 6, 319362, "", "=q4=Doom's Edge", "=ds=#h1#, #w1#", "", "1.67%"};
+ { 7, 319354, "", "=q4=Draconic Avenger", "=ds=#h2#, #w1#", "", "5.96%"};
+ { 8, 319358, "", "=q4=Draconic Maul", "=ds=#h2#, #w6#", "", "2.30%"};
+ { 9, 319435, "", "=q4=Essence Gatherer", "=ds=#w12#", "", "1.61%"};
+ { 16, 18562, "", "=q4=Elementium Ore", "=ds=#e8#", "", "4.75%"};
+ { 18, 21109, "", "=q1=Draconic for Dummies", "=ds=#m3#"};
+ Prev = "BWLNefarian225Man";
+ };
+
+ -------------------------------------------------
+ --- Blackrock Mountain: Blackwing Lair ASCENDED ---
+ -------------------------------------------------
+
+ AtlasLoot_Data["BWLRazorgore25ManHEROIC"] = {
{ 1, 216918, "", "=q4=Netherwind Bindings", "=q1=#m1# =ds=#c3#", "", "22.22%"};
{ 2, 216926, "", "=q4=Bindings of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
{ 3, 216934, "", "=q4=Nemesis Bracers", "=q1=#m1# =ds=#c8#", "", "22.22%"};
@@ -3229,10 +3602,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 24, 219397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
{ 25, 219357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"};
{ 26, 219405, "", "=q4=Malfurion's Blessed Bulwark", "=ds=#s5#, #a2#", "", "16.67%"};
- Next = "BWLVaelastraszHEROIC";
+ Next = "BWLVaelastrasz25ManHEROIC";
};
- AtlasLoot_Data["BWLVaelastraszHEROIC"] = {
+ AtlasLoot_Data["BWLVaelastrasz25ManHEROIC"] = {
{ 1, 216818, "", "=q4=Netherwind Belt", "=q1=#m1# =ds=#c3#", "", "22.22%"};
{ 2, 216925, "", "=q4=Belt of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
{ 3, 216933, "", "=q4=Nemesis Belt", "=q1=#m1# =ds=#c8#", "", "22.22%"};
@@ -3251,11 +3624,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 23, 219430, "", "=q4=Shroud of Pure Thought", "=ds=#s4#", "", "16.67%"};
{ 24, 219403, "", "=q4=Band of Forced Concentration", "=ds=#s13#", "", "16.67%"};
{ 25, 219367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"};
- Prev = "BWLRazorgoreHEROIC";
- Next = "BWLLashlayerHEROIC";
+ Prev = "BWLRazorgore25ManHEROIC";
+ Next = "BWLLashlayer25ManHEROIC";
};
- AtlasLoot_Data["BWLLashlayerHEROIC"] = {
+ AtlasLoot_Data["BWLLashlayer25ManHEROIC"] = {
{ 1, 216912, "", "=q4=Netherwind Boots", "=q1=#m1# =ds=#c3#", "", "22.22%"};
{ 2, 216919, "", "=q4=Boots of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
{ 3, 216927, "", "=q4=Nemesis Boots", "=q1=#m1# =ds=#c8#", "", "22.22%"};
@@ -3277,11 +3650,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 25, 219365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%"};
{ 26, 214000, "", "=q4=Ring of Trinity Force", "=ds=#h3#, #w13#", "", "12.5%"};
{ 27, 219432, "", "=q4=Circle of Applied Force", "=ds=#s13#", "", "16.67%"};
- Prev = "BWLVaelastraszHEROIC";
- Next = "BWLFiremawHEROIC";
+ Prev = "BWLVaelastrasz25ManHEROIC";
+ Next = "BWLFiremaw25ManHEROIC";
};
- AtlasLoot_Data["BWLFiremawHEROIC"] = {
+ AtlasLoot_Data["BWLFiremaw25ManHEROIC"] = {
{ 1, 216913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "6.67%"};
{ 2, 216920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.67%"};
{ 3, 216928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "6.67%"};
@@ -3305,11 +3678,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 25, 219402, "", "=q4=Legguards of the Fallen Crusader", "=ds=#s11#, #a4#", "", "12.5%"};
{ 27, 219397, "", "=q4=Ring of Blackrock", "=ds=#s13#", "", "6.67%"};
{ 28, 219395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"};
- Prev = "BWLLashlayerHEROIC";
- Next = "BWLEbonrocHEROIC";
+ Prev = "BWLLashlayer25ManHEROIC";
+ Next = "BWLEbonroc25ManHEROIC";
};
- AtlasLoot_Data["BWLEbonrocHEROIC"] = {
+ AtlasLoot_Data["BWLEbonroc25ManHEROIC"] = {
{ 1, 216913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "6.67%"};
{ 2, 216920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.67%"};
{ 3, 216928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "6.67%"};
@@ -3331,11 +3704,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 28, 219353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
{ 29, 219355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
{ 30, 219368, "", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "", "16.67%"};
- Prev = "BWLFiremawHEROIC";
- Next = "BWLFlamegorHEROIC";
+ Prev = "BWLFiremaw25ManHEROIC";
+ Next = "BWLFlamegor25ManHEROIC";
};
- AtlasLoot_Data["BWLFlamegorHEROIC"] = {
+ AtlasLoot_Data["BWLFlamegor25ManHEROIC"] = {
{ 1, 216913, "", "=q4=Netherwind Gloves", "=q1=#m1# =ds=#c3#", "", "6.67%"};
{ 2, 216920, "", "=q4=Handguards of Transcendence", "=q1=#m1# =ds=#c5#", "", "6.67%"};
{ 3, 216928, "", "=q4=Nemesis Gloves", "=q1=#m1# =ds=#c8#", "", "6.67%"};
@@ -3357,11 +3730,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 27, 219357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"};
{ 28, 219355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
{ 29, 219367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"};
- Prev = "BWLEbonrocHEROIC";
- Next = "BWLChromaggusHEROIC";
+ Prev = "BWLEbonroc25ManHEROIC";
+ Next = "BWLChromaggus25ManHEROIC";
};
- AtlasLoot_Data["BWLChromaggusHEROIC"] = {
+ AtlasLoot_Data["BWLChromaggus25ManHEROIC"] = {
{ 1, 216917, "", "=q4=Netherwind Mantle", "=q1=#m1# =ds=#c3#", "", "22.22%"};
{ 2, 216924, "", "=q4=Pauldrons of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
{ 3, 216932, "", "=q4=Nemesis Spaulders", "=q1=#m1# =ds=#c8#", "", "22.22%"};
@@ -3384,11 +3757,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 27, 219352, "", "=q4=Chromatically Tempered Sword", "=ds=#h1#, #w10#", "", "10%"};
{ 28, 219349, "", "=q4=Elementium Reinforced Bulwark", "=ds=#w8#", "", "10%"};
{ 29, 219361, "", "=q4=Ashjre'thul, Crossbow of Smiting", "=ds=#w3#", "", "10%"};
- Prev = "BWLFlamegorHEROIC";
- Next = "BWLNefarian1HEROIC";
+ Prev = "BWLFlamegor25ManHEROIC";
+ Next = "BWLNefarian125ManHEROIC";
};
- AtlasLoot_Data["BWLNefarian1HEROIC"] = {
+ AtlasLoot_Data["BWLNefarian125ManHEROIC"] = {
{ 1, 216916, "", "=q4=Netherwind Robes", "=q1=#m1# =ds=#c3#", "", "22.22%"};
{ 2, 216931, "", "=q4=Nemesis Robes", "=q1=#m1# =ds=#c8#", "", "22.22%"};
{ 3, 216923, "", "=q4=Robes of Transcendence", "=q1=#m1# =ds=#c5#", "", "22.22%"};
@@ -3411,21 +3784,21 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 26, 219360, "", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "", "16.67%"};
{ 27, 219356, "", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "", "16.67%%"};
{ 28, 214001, "", "=q4=Archimtiros' Ring of Armageddon", "=ds=#s13#", "", "16.67%%"};
- Prev = "BWLChromaggusHEROIC";
- Next = "BWLNefarian2HEROIC";
+ Prev = "BWLChromaggus25ManHEROIC";
+ Next = "BWLNefarian225ManHEROIC";
};
- AtlasLoot_Data["BWLNefarian2HEROIC"] = {
+ AtlasLoot_Data["BWLNefarian225ManHEROIC"] = {
{ 1, 19003, "", "=q4=Head of Nefarian", "=ds=#m2#", "", "100%"};
{ 2, 19383, "", "=q4=Master Dragonslayer's Medallion", "=q1=#m4#: =ds=#s2#"};
{ 3, 19384, "", "=q4=Master Dragonslayer's Ring", "=q1=#m4#: =ds=#s13#"};
{ 4, 19366, "", "=q4=Master Dragonslayer's Orb", "=q1=#m4#: =ds=#s15#"};
{ 6, 21138, "", "=q1=Red Scepter Shard", "=ds=#m3#", "", "100%"};
- Prev = "BWLNefarian1HEROIC";
- Next = "BWLTrashMobsHEROIC";
+ Prev = "BWLNefarian125ManHEROIC";
+ Next = "BWLTrashMobs25ManHEROIC";
};
- AtlasLoot_Data["BWLTrashMobsHEROIC"] = {
+ AtlasLoot_Data["BWLTrashMobs25ManHEROIC"] = {
{ 1, 219436, "", "=q4=Cloak of Draconic Might", "=ds=#s4#", "", "2.53%"};
{ 2, 219437, "", "=q4=Boots of Pure Thought", "=ds=#s12#, #a1#", "", "2.33%"};
{ 3, 219438, "", "=q4=Ringo's Blizzard Boots", "=ds=#s12#, #a1#", "", "4.42%"};
@@ -3437,7 +3810,7 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 9, 219435, "", "=q4=Essence Gatherer", "=ds=#w12#", "", "1.61%"};
{ 16, 18562, "", "=q4=Elementium Ore", "=ds=#e8#", "", "4.75%"};
{ 18, 21109, "", "=q1=Draconic for Dummies", "=ds=#m3#"};
- Prev = "BWLNefarian2HEROIC";
+ Prev = "BWLNefarian225ManHEROIC";
};
-----------------------
@@ -5538,10 +5911,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
------------------------
- --- Zul'Gurub HEROIC ---
+ --- Zul'Gurub HEROIC FLEX ---
------------------------
- AtlasLoot_Data["ZGJeklikHEROIC"] = {
+ AtlasLoot_Data["ZGJeklik25Man"] = {
{ 1, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "11.41%"};
{ 2, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.02%"};
{ 3, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.84%"};
@@ -5560,10 +5933,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 21, 219923, "", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "", "12.22%"};
{ 22, 219920, "", "=q3=Primalist's Band", "=ds=#s13#", "", "11.89%"};
{ 23, 219915, "", "=q3=Zulian Defender", "=ds=#w8#", "", " 11.36%"};
- Next = "ZGVenoxisHEROIC";
+ Next = "ZGVenoxis25Man";
};
- AtlasLoot_Data["ZGVenoxisHEROIC"] = {
+ AtlasLoot_Data["ZGVenoxis25Man"] = {
{ 1, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.01%"};
{ 2, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.55%"};
{ 3, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "10.18%"};
@@ -5582,11 +5955,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 219906, "", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "", "11.36%"};
{ 21, 219905, "", "=q3=Zanzil's Band", "=ds=#s13#", "", "6.99%"};
{ 22, 219900, "", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "", "11.89%"};
- Prev = "ZGJeklikHEROIC";
- Next = "ZGMarliHEROIC";
+ Prev = "ZGJeklik25Man";
+ Next = "ZGMarli25Man";
};
- AtlasLoot_Data["ZGMarliHEROIC"] = {
+ AtlasLoot_Data["ZGMarli25Man"] = {
{ 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "13.69%"};
{ 2, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.69%"};
{ 3, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "13.64%"};
@@ -5604,11 +5977,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 219871, "", "=q3=Talisman of Protection", "=ds=#s2#", "", "11.36%"};
{ 21, 219925, "", "=q3=Band of Jin", "=ds=#s13#", "", " 6.99%"};
{ 22, 219930, "", "=q3=Mar'li's Eye", "=ds=#s14#", "", "12.09%"};
- Prev = "ZGVenoxisHEROIC";
- Next = "ZGMandokirHEROIC";
+ Prev = "ZGVenoxis25Man";
+ Next = "ZGMandokir25Man";
};
- AtlasLoot_Data["ZGMandokirHEROIC"] = {
+ AtlasLoot_Data["ZGMandokir25Man"] = {
{ 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "12.94%"};
{ 2, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.07%"};
{ 3, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "11.56%"};
@@ -5633,11 +6006,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 27, 219873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#", "", "12.28%"};
{ 28, 219893, "", "=q3=Zanzil's Seal", "=ds=#s13#", "", "13.11%"};
{ 29, 219863, "", "=q3=Primalist's Seal", "=ds=#s13#", "", "12.32%"};
- Prev = "ZGMarliHEROIC";
- Next = "ZGEdgeofMadnessHEROIC";
+ Prev = "ZGMarli25Man";
+ Next = "ZGEdgeofMadness25Man";
};
- AtlasLoot_Data["ZGEdgeofMadnessHEROIC"] = {
+ AtlasLoot_Data["ZGEdgeofMadness25Man"] = {
{ 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Gri'lek"], ""};
{ 2, 219961, "", "=q3=Gri'lek's Grinder", "=ds=#h1#, #w6#", "", "43.90%"};
{ 3, 219962, "", "=q3=Gri'lek's Carver", "=ds=#h2#, #w1#", "", "41.99%"};
@@ -5654,21 +6027,21 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 219965, "", "=q3=Wushoolay's Poker", "=ds=#h3#, #w4#", "", "45.21%"};
{ 23, 219993, "", "=q3=Hoodoo Hunting Bow", "=ds=#w2#", "", "40.96%"};
{ 24, 19941, "", "=q2=Wushoolay's Mane", "=ds=#m3#", "", "100%"};
- Prev = "ZGMandokirHEROIC";
- Next = "ZGGahzrankaHEROIC";
+ Prev = "ZGMandokir25Man";
+ Next = "ZGGahzranka25Man";
};
- AtlasLoot_Data["ZGGahzrankaHEROIC"] = {
+ AtlasLoot_Data["ZGGahzranka25Man"] = {
{ 1, 219945, "", "=q4=Foror's Eyepatch", "=ds=#s1#, #a2#", "", "8,82%"};
{ 2, 219944, "", "=q4=Nat Pagle's Fish Terminator", "=ds=#w9#", "", "2.39%"};
{ 4, 219947, "", "=q3=Nat Pagle's Broken Reel", "=ds=#s14#", "", "28.20%"};
{ 5, 219946, "", "=q3=Tigule's Harpoon", "=ds=#w7#", "", "29.22%"};
{ 7, 22739, "", "=q3=Tome of Polymorph: Turtle", "=ds=#e10#, =q1=#m1# =ds=#c3#"};
- Prev = "ZGEdgeofMadnessHEROIC";
- Next = "ZGThekalHEROIC";
+ Prev = "ZGEdgeofMadness25Man";
+ Next = "ZGThekal25Man";
};
- AtlasLoot_Data["ZGThekalHEROIC"] = {
+ AtlasLoot_Data["ZGThekal25Man"] = {
{ 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", " 14.95%"};
{ 2, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", " 13.74%"};
{ 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", " 12.95%"};
@@ -5685,11 +6058,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 220260, "", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "", "4.30%"};
{ 23, 220266, "", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", "", "8.69%"};
{ 24, 219901, "", "=q3=Zulian Slicer", "=ds=#h1#, #w10#, =q1=#e18#", "", "13.36%"};
- Prev = "ZGGahzrankaHEROIC";
- Next = "ZGArlokkHEROIC";
+ Prev = "ZGGahzranka25Man";
+ Next = "ZGArlokk25Man";
};
- AtlasLoot_Data["ZGArlokkHEROIC"] = {
+ AtlasLoot_Data["ZGArlokk25Man"] = {
{ 1, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "15.49%"};
{ 2, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "12.52%"};
{ 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.17%"};
@@ -5707,11 +6080,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 219912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#", "", "13.95%"};
{ 21, 219922, "", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "", "13.66%"};
{ 22, 19914, "", "=q3=Panther Hide Sack", "=ds=#m14# #e1#", "", "14.03%"};
- Prev = "ZGThekalHEROIC";
- Next = "ZGJindoHEROIC";
+ Prev = "ZGThekal25Man";
+ Next = "ZGJindo25Man";
};
- AtlasLoot_Data["ZGJindoHEROIC"] = {
+ AtlasLoot_Data["ZGJindo25Man"] = {
{ 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "13.56%"};
{ 2, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "13.48%"};
{ 3, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.09%"};
@@ -5735,11 +6108,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 26, 219875, "", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "", "13.73%"};
{ 27, 219887, "", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "", "11.11%"};
{ 28, 219894, "", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "", "12.93%"};
- Prev = "ZGArlokkHEROIC";
- Next = "ZGHakkarHEROIC";
+ Prev = "ZGArlokk25Man";
+ Next = "ZGHakkar25Man";
};
- AtlasLoot_Data["ZGHakkarHEROIC"] = {
+ AtlasLoot_Data["ZGHakkar25Man"] = {
{ 1, 219857, "", "=q4=Cloak of Consumption", "=ds=#s4#", "", "11.65%"};
{ 2, 220257, "", "=q4=Seafury Gauntlets", "=ds=#s9#, #a3#", "", "4.11%"};
{ 3, 220264, "", "=q4=Peacekeeper Gauntlets", "=ds=#s9#, #a4#", "", "7.37%"};
@@ -5759,14 +6132,14 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 18, 19949, "", "=q4=Zandalarian Hero Medallion", "=q1=#m4#: =ds=#s14#"};
{ 19, 19948, "", "=q4=Zandalarian Hero Badge", "=q1=#m4#: =ds=#s14#"};
{ 21, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "34.3%"};
- Prev = "ZGJindoHEROIC";
+ Prev = "ZGJindo25Man";
};
- AtlasLoot_Data["ZGMuddyChurningWatersHEROIC"] = {
+ AtlasLoot_Data["ZGMuddyChurningWaters25Man"] = {
{ 1, 19975, "", "=q1=Zulian Mudskunk", "=ds=#e21#"};
};
- AtlasLoot_Data["ZGSharedHEROIC"] = {
+ AtlasLoot_Data["ZGShared25Man"] = {
{ 1, 222721, "", "=q4=Band of Servitude", "=ds=#s13#"};
{ 2, 222722, "", "=q4=Seal of the Gurubashi Berserker", "=ds=#s13#"};
{ 4, 222711, "", "=q3=Cloak of the Hakkari Worshipers", "=ds=#s4#"};
@@ -5779,7 +6152,7 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 11, 222713, "", "=q3=Zulian Scepter of Rites", "=ds=#h3#, #w6#"};
};
- AtlasLoot_Data["ZGTrash1HEROIC"] = {
+ AtlasLoot_Data["ZGTrash125Man"] = {
{ 1, 220259, "", "=q3=Shadow Panther Hide Gloves", "=ds=#s9#, #a2#"};
{ 2, 220261, "", "=q3=Shadow Panther Hide Belt", "=ds=#s10#, #a2#"};
{ 3, 220263, "", "=q3=Gurubashi Helm", "=ds=#s1#, #a4#"};
@@ -5801,10 +6174,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 19817, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c7#", "", "0.01%"};
{ 23, 19819, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c8#", "", "0.01%"};
{ 24, 19813, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c9#", "", "0.01%"};
- Next = "ZGTrash2HEROIC";
+ Next = "ZGTrash225Man";
};
- AtlasLoot_Data["ZGTrash2HEROIC"] = {
+ AtlasLoot_Data["ZGTrash225Man"] = {
{ 1, 19708, "", "=q3=Blue Hakkari Bijou", "=ds=#e15#", "", "1.48%"};
{ 2, 19713, "", "=q3=Bronze Hakkari Bijou", "=ds=#e15#", "", "1.57%"};
{ 3, 19715, "", "=q3=Gold Hakkari Bijou", "=ds=#e15#", "", "1.63%"};
@@ -5823,10 +6196,315 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 19702, "", "=q2=Vilebranch Coin", "=ds=#e15#", "", "3.27%"};
{ 23, 19703, "", "=q2=Witherbark Coin", "=ds=#e15#", "", "3.27%"};
{ 24, 19698, "", "=q2=Zulian Coin", "=ds=#e15#", "", "3.01%"};
- Prev = "ZGTrash1HEROIC";
+ Prev = "ZGTrash125Man";
};
- AtlasLoot_Data["ZGEnchantsHEROIC"] = {
+ AtlasLoot_Data["ZGEnchants25Man"] = {
+ { 1, 19790, "", "=q3=Animist's Caress", "=q1=#m1# =ds=#c1#"};
+ { 2, 19785, "", "=q3=Falcon's Call", "=q1=#m1# =ds=#c2#"};
+ { 3, 19787, "", "=q3=Presence of Sight", "=q1=#m1# =ds=#c3#"};
+ { 4, 19783, "", "=q3=Syncretist's Sigil", "=q1=#m1# =ds=#c4#"};
+ { 5, 19789, "", "=q3=Prophetic Aura", "=q1=#m1# =ds=#c5#"};
+ { 6, 19784, "", "=q3=Death's Embrace", "=q1=#m1# =ds=#c6#"};
+ { 7, 19786, "", "=q3=Vodouisant's Vigilant Embrace", "=q1=#m1# =ds=#c7#"};
+ { 8, 19788, "", "=q3=Hoodoo Hex", "=q1=#m1# =ds=#c8#"};
+ { 9, 19782, "", "=q3=Presence of Might", "=q1=#m1# =ds=#c9#"};
+ { 16, 20077, "", "=q3=Zandalar Signet of Might", "=ds=#s3# #e17#"};
+ { 17, 20076, "", "=q3=Zandalar Signet of Mojo", "=ds=#s3# #e17#"};
+ { 18, 20078, "", "=q3=Zandalar Signet of Serenity", "=ds=#s3# #e17#"};
+ { 20, 22635, "", "=q3=Savage Guard", "=ds=#s1#/#s11# #e17#"};
+ };
+
+ ------------------------
+ --- Zul'Gurub ASCENDED ---
+ ------------------------
+
+ AtlasLoot_Data["ZGJeklik25ManHEROIC"] = {
+ { 1, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "11.41%"};
+ { 2, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.02%"};
+ { 3, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.84%"};
+ { 4, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "5.89%"};
+ { 5, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "5.80%"};
+ { 6, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "5.56%"};
+ { 7, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.33%"};
+ { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.32%"};
+ { 9, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.17%"};
+ { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.8%"};
+ { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
+ { 16, 219918, "", "=q4=Jeklik's Crusher", "=ds=#h2#, #w6#", "", "3.96%"};
+ { 18, 219928, "", "=q3=Animist's Spaulders", "=ds=#s3#, #a2#", "", "3.39%"};
+ { 19, 220262, "", "=q3=Seafury Boots", "=ds=#s12#, #a3#", "", "4.31%"};
+ { 20, 220265, "", "=q3=Peacekeeper Boots", "=ds=#s12#, #a4#", "", "6.99%"};
+ { 21, 219923, "", "=q3=Jeklik's Opaline Talisman", "=ds=#s2#", "", "12.22%"};
+ { 22, 219920, "", "=q3=Primalist's Band", "=ds=#s13#", "", "11.89%"};
+ { 23, 219915, "", "=q3=Zulian Defender", "=ds=#w8#", "", " 11.36%"};
+ Next = "ZGVenoxis25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGVenoxis25ManHEROIC"] = {
+ { 1, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "11.01%"};
+ { 2, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "10.55%"};
+ { 3, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "10.18%"};
+ { 4, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "5.93%"};
+ { 5, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "5.67%"};
+ { 6, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "5.52%"};
+ { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.18%"};
+ { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.02%"};
+ { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.00%"};
+ { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "6.0%"};
+ { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
+ { 13, 22216, "", "=q1=Venoxis's Venom Sac", "=ds=#m3#", "", "100%"};
+ { 16, 219904, "", "=q4=Runed Bloodstained Hauberk", "=ds=#s5#, #a3#", "", "3.70%"};
+ { 17, 219903, "", "=q4=Fang of Venoxis", "=ds=#h3#, #w4#", "", "3.68%"};
+ { 19, 219907, "", "=q3=Zulian Tigerhide Cloak", "=ds=#s4#", "", "12.09%"};
+ { 20, 219906, "", "=q3=Blooddrenched Footpads", "=ds=#s12#, #a2#", "", "11.36%"};
+ { 21, 219905, "", "=q3=Zanzil's Band", "=ds=#s13#", "", "6.99%"};
+ { 22, 219900, "", "=q3=Zulian Stone Axe", "=ds=#h2#, #w1#", "", "11.89%"};
+ Prev = "ZGJeklik25ManHEROIC";
+ Next = "ZGMarli25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGMarli25ManHEROIC"] = {
+ { 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "13.69%"};
+ { 2, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.69%"};
+ { 3, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "13.64%"};
+ { 4, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "6.55%"};
+ { 5, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "6.49%"};
+ { 6, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "6.31%"};
+ { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.56%"};
+ { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.55%"};
+ { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.30%"};
+ { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "7.4%"};
+ { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
+ { 16, 220032, "", "=q4=Flowing Ritual Robes", "=ds=#s5#, #a1#", "", "4.46%"};
+ { 17, 219927, "", "=q4=Mar'li's Touch", "=ds=#w12#", "", "4.35%"};
+ { 19, 219919, "", "=q3=Bloodstained Greaves", "=ds=#s12#, #a3#", "", "11.89%"};
+ { 20, 219871, "", "=q3=Talisman of Protection", "=ds=#s2#", "", "11.36%"};
+ { 21, 219925, "", "=q3=Band of Jin", "=ds=#s13#", "", " 6.99%"};
+ { 22, 219930, "", "=q3=Mar'li's Eye", "=ds=#s14#", "", "12.09%"};
+ Prev = "ZGVenoxis25ManHEROIC";
+ Next = "ZGMandokir25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGMandokir25ManHEROIC"] = {
+ { 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "12.94%"};
+ { 2, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.07%"};
+ { 3, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "11.56%"};
+ { 4, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "6.65%"};
+ { 5, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "6.55%"};
+ { 6, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "6.52%"};
+ { 7, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "2.98%"};
+ { 8, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "2.65%"};
+ { 9, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "2.48%"};
+ { 11, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"};
+ { 12, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "9.4%"};
+ { 16, 219867, "", "=q4=Bloodlord's Defender", "=ds=#h1#, #w10#", "", "5.83%"};
+ { 17, 219866, "", "=q4=Warblade of the Hakkari", "=ds=#h4#, #w10#", "", "3.96%"};
+ { 18, 219874, "", "=q4=Halberd of Smiting", "=ds=#w7#", "", "6.35%"};
+ { 19, 220038, "", "=q4=Mandokir's Sting", "=ds=#w2#", "", "5.96%"};
+ { 20, 19872, "", "=q4=Swift Razzashi Raptor", "=ds=#e12#", "", "0.43%"};
+ { 22, 219870, "", "=q3=Hakkari Loa Cloak", "=ds=#s4#", "", "12.54%"};
+ { 23, 219895, "", "=q3=Bloodtinged Kilt", "=ds=#s11#, #a1#", "", "13.50%"};
+ { 24, 219869, "", "=q3=Blooddrenched Grips", "=ds=#s9#, #a2#", "", "12.87%"};
+ { 25, 219877, "", "=q3=Animist's Leggings", "=ds=#s11#, #a2#", "", "12.14%"};
+ { 26, 219878, "", "=q3=Bloodsoaked Pauldrons", "=ds=#s9#, #a4#", "", "12.31%"};
+ { 27, 219873, "", "=q3=Overlord's Crimson Band", "=ds=#s13#", "", "12.28%"};
+ { 28, 219893, "", "=q3=Zanzil's Seal", "=ds=#s13#", "", "13.11%"};
+ { 29, 219863, "", "=q3=Primalist's Seal", "=ds=#s13#", "", "12.32%"};
+ Prev = "ZGMarli25ManHEROIC";
+ Next = "ZGEdgeofMadness25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGEdgeofMadness25ManHEROIC"] = {
+ { 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Gri'lek"], ""};
+ { 2, 219961, "", "=q3=Gri'lek's Grinder", "=ds=#h1#, #w6#", "", "43.90%"};
+ { 3, 219962, "", "=q3=Gri'lek's Carver", "=ds=#h2#, #w1#", "", "41.99%"};
+ { 4, 19939, "", "=q2=Gri'lek's Blood", "=ds=#m3#", "", "100%"};
+ { 6, 0, "INV_Box_01", "=q6="..BabbleBoss["Hazza'rah"], ""};
+ { 7, 219968, "", "=q3=Fiery Retributer", "=ds=#h1#, #w10#", "", "38.37%"};
+ { 8, 219967, "", "=q3=Thoughtblighter", "=ds=#w12#", "", "45.49%"};
+ { 9, 19942, "", "=q2=Hazza'rah's Dream Thread", "=ds=#m3#", "", "100%"};
+ { 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Renataki"], ""};
+ { 17, 219964, "", "=q3=Renataki's Soul Conduit", "=ds=#h3#, #w10#", "", "40.06%"};
+ { 18, 219963, "", "=q3=Pitchfork of Madness", "=ds=#w7#", "", "45.51%"};
+ { 19, 19940, "", "=q2=Renataki's Tooth", "=ds=#m3#", "", "100%"};
+ { 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Wushoolay"], ""};
+ { 22, 219965, "", "=q3=Wushoolay's Poker", "=ds=#h3#, #w4#", "", "45.21%"};
+ { 23, 219993, "", "=q3=Hoodoo Hunting Bow", "=ds=#w2#", "", "40.96%"};
+ { 24, 19941, "", "=q2=Wushoolay's Mane", "=ds=#m3#", "", "100%"};
+ Prev = "ZGMandokir25ManHEROIC";
+ Next = "ZGGahzranka25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGGahzranka25ManHEROIC"] = {
+ { 1, 219945, "", "=q4=Foror's Eyepatch", "=ds=#s1#, #a2#", "", "8,82%"};
+ { 2, 219944, "", "=q4=Nat Pagle's Fish Terminator", "=ds=#w9#", "", "2.39%"};
+ { 4, 219947, "", "=q3=Nat Pagle's Broken Reel", "=ds=#s14#", "", "28.20%"};
+ { 5, 219946, "", "=q3=Tigule's Harpoon", "=ds=#w7#", "", "29.22%"};
+ { 7, 22739, "", "=q3=Tome of Polymorph: Turtle", "=ds=#e10#, =q1=#m1# =ds=#c3#"};
+ Prev = "ZGEdgeofMadness25ManHEROIC";
+ Next = "ZGThekal25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGThekal25ManHEROIC"] = {
+ { 1, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", " 14.95%"};
+ { 2, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", " 13.74%"};
+ { 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", " 12.95%"};
+ { 4, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", " 6.60%"};
+ { 5, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", " 6.56%"};
+ { 6, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", " 6.45%"};
+ { 8, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.3%"};
+ { 9, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
+ { 16, 219897, "", "=q4=Betrayer's Boots", "=ds=#s12#, #a1#", "", "5.83%"};
+ { 17, 219896, "", "=q4=Thekal's Grasp", "=ds=#h3#, #w13#", "", "4.23%"};
+ { 18, 19902, "", "=q4=Swift Zulian Tiger", "=ds=#e12#", "", "0.70%"};
+ { 20, 219898, "", "=q3=Seal of Jin", "=ds=#s13#", "", "13.65%"};
+ { 21, 219899, "", "=q3=Ritualistic Legguards", "=ds=#s11#, #a1#", "", "13.41%"};
+ { 22, 220260, "", "=q3=Seafury Leggings", "=ds=#s11#, #a3#", "", "4.30%"};
+ { 23, 220266, "", "=q3=Peacekeeper Leggings", "=ds=#s11#, #a4#", "", "8.69%"};
+ { 24, 219901, "", "=q3=Zulian Slicer", "=ds=#h1#, #w10#, =q1=#e18#", "", "13.36%"};
+ Prev = "ZGGahzranka25ManHEROIC";
+ Next = "ZGArlokk25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGArlokk25ManHEROIC"] = {
+ { 1, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "15.49%"};
+ { 2, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "12.52%"};
+ { 3, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "13.17%"};
+ { 4, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "6.94%"};
+ { 5, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "6.65%"};
+ { 6, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "6.21%"};
+ { 7, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "2.75%"};
+ { 8, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "2.60%"};
+ { 9, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "2.41%"};
+ { 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "5.6%"};
+ { 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
+ { 16, 219910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "", "3.62%"};
+ { 17, 219909, "", "=q4=Will of Arlokk", "=ds=#w9#", "", "5.14%"};
+ { 19, 219913, "", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "", "13.29%"};
+ { 20, 219912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#", "", "13.95%"};
+ { 21, 219922, "", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "", "13.66%"};
+ { 22, 19914, "", "=q3=Panther Hide Sack", "=ds=#m14# #e1#", "", "14.03%"};
+ Prev = "ZGThekal25ManHEROIC";
+ Next = "ZGJindo25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGJindo25ManHEROIC"] = {
+ { 1, 19723, "", "=q4=Primal Hakkari Kossack", "=ds=#m3#", "", "13.56%"};
+ { 2, 19722, "", "=q4=Primal Hakkari Tabard", "=ds=#m3#", "", "13.48%"};
+ { 3, 19724, "", "=q4=Primal Hakkari Aegis", "=ds=#m3#", "", "12.09%"};
+ { 4, 19721, "", "=q4=Primal Hakkari Shawl", "=ds=#m3#", "", "7.30%"};
+ { 5, 19719, "", "=q4=Primal Hakkari Girdle", "=ds=#m3#", "", "6.37%"};
+ { 6, 19720, "", "=q4=Primal Hakkari Sash", "=ds=#m3#", "", "6.10%"};
+ { 7, 19716, "", "=q4=Primal Hakkari Bindings", "=ds=#m3#", "", "2.85%"};
+ { 8, 19717, "", "=q4=Primal Hakkari Armsplint", "=ds=#m3#", "", "2.70%"};
+ { 9, 19718, "", "=q4=Primal Hakkari Stanchion", "=ds=#m3#", "", "2.36%"};
+ { 11, 22637, "", "=q3=Primal Hakkari Idol", "=ds=#m3#"};
+ { 12, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "8.4%"};
+ { 16, 219885, "", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "", "6.82%"};
+ { 17, 219891, "", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "", "7.70%"};
+ { 18, 219890, "", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "", "8.08%"};
+ { 19, 219884, "", "=q4=Jin'do's Judgement", "=ds=#w9#", "", "8.36%"};
+ { 21, 219888, "", "=q3=Overlord's Embrace", "=ds=#s4#", "", "12.72%"};
+ { 22, 219886, "", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "", "12.11%"};
+ { 23, 219929, "", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "", "11.75%"};
+ { 24, 219889, "", "=q3=Blooddrenched Leggings", "=ds=#s11#, #a2#", "", "11.97%"};
+ { 25, 219892, "", "=q3=Animist's Boots", "=ds=#s12#, #a2#", "", "12.28%"};
+ { 26, 219875, "", "=q3=Bloodstained Coif", "=ds=#s1#, #a3#", "", "13.73%"};
+ { 27, 219887, "", "=q3=Bloodstained Legplates", "=ds=#s11#, #a3#", "", "11.11%"};
+ { 28, 219894, "", "=q3=Bloodsoaked Gauntlets", "=ds=#s9#, #a4#", "", "12.93%"};
+ Prev = "ZGArlokk25ManHEROIC";
+ Next = "ZGHakkar25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGHakkar25ManHEROIC"] = {
+ { 1, 219857, "", "=q4=Cloak of Consumption", "=ds=#s4#", "", "11.65%"};
+ { 2, 220257, "", "=q4=Seafury Gauntlets", "=ds=#s9#, #a3#", "", "4.11%"};
+ { 3, 220264, "", "=q4=Peacekeeper Gauntlets", "=ds=#s9#, #a4#", "", "7.37%"};
+ { 4, 219855, "", "=q4=Bloodsoaked Legplates", "=ds=#s11#, #a4#", "", "10.52%"};
+ { 5, 219876, "", "=q4=Soul Corrupter's Necklace", "=ds=#s2#", "", "10.11%"};
+ { 6, 219856, "", "=q4=The Eye of Hakkar", "=ds=#s2#", "", "12.02%"};
+ { 8, 219859, "", "=q4=Fang of the Faceless", "=ds=#h1#, #w4#", "", "7.33%"};
+ { 9, 219864, "", "=q4=Bloodcaller", "=ds=#h3#, #w10#", "", "7.69%"};
+ { 10, 219865, "", "=q4=Warblade of the Hakkari", "=ds=#h3#, #w10#", "", "3.67%"};
+ { 11, 219854, "", "=q4=Zin'rokh, Destroyer of Worlds", "=ds=#h2#, #w10#", "", "6.78%"};
+ { 12, 219852, "", "=q4=Ancient Hakkari Manslayer", "=ds=#h1#, #w1#", "", "6.62%"};
+ { 13, 219862, "", "=q4=Aegis of the Blood God", "=ds=#w8#", "", "9.99%"};
+ { 14, 219853, "", "=q4=Gurubashi Dwarf Destroyer", "=ds=#w5#", "", "6.12%"};
+ { 15, 219861, "", "=q4=Touch of Chaos", "=ds=#w12#", "", "7.24%"};
+ { 16, 19802, "", "=q4=Heart of Hakkar", "=ds=#m2#", "", "100%"};
+ { 17, 19950, "", "=q4=Zandalarian Hero Charm", "=q1=#m4#: =ds=#s14#"};
+ { 18, 19949, "", "=q4=Zandalarian Hero Medallion", "=q1=#m4#: =ds=#s14#"};
+ { 19, 19948, "", "=q4=Zandalarian Hero Badge", "=q1=#m4#: =ds=#s14#"};
+ { 21, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "34.3%"};
+ Prev = "ZGJindo25ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGMuddyChurningWaters25ManHEROIC"] = {
+ { 1, 19975, "", "=q1=Zulian Mudskunk", "=ds=#e21#"};
+ };
+
+ AtlasLoot_Data["ZGShared25ManHEROIC"] = {
+ { 1, 222721, "", "=q4=Band of Servitude", "=ds=#s13#"};
+ { 2, 222722, "", "=q4=Seal of the Gurubashi Berserker", "=ds=#s13#"};
+ { 4, 222711, "", "=q3=Cloak of the Hakkari Worshipers", "=ds=#s4#"};
+ { 5, 222712, "", "=q3=Might of the Tribe", "=ds=#s4#"};
+ { 6, 222720, "", "=q3=Zulian Headdress", "=ds=#s1#, #a1#"};
+ { 7, 222716, "", "=q3=Belt of Untapped Power", "=ds=#s10#, #a1#"};
+ { 8, 222718, "", "=q3=Blooddrenched Mask", "=ds=#s1#, #a2#"};
+ { 9, 222715, "", "=q3=Gloves of the Tormented", "=ds=#s9#, #a3#"};
+ { 10, 222714, "", "=q3=Sacrificial Gauntlets", "=ds=#s9#, #a4#"};
+ { 11, 222713, "", "=q3=Zulian Scepter of Rites", "=ds=#h3#, #w6#"};
+ };
+
+ AtlasLoot_Data["ZGTrash125ManHEROIC"] = {
+ { 1, 220259, "", "=q3=Shadow Panther Hide Gloves", "=ds=#s9#, #a2#"};
+ { 2, 220261, "", "=q3=Shadow Panther Hide Belt", "=ds=#s10#, #a2#"};
+ { 3, 220263, "", "=q3=Gurubashi Helm", "=ds=#s1#, #a4#"};
+ { 4, 219908, "", "=q3=Sceptre of Smiting", "=ds=#h1#, #w6#"};
+ { 5, 219921, "", "=q3=Zulian Hacker", "=ds=#h1#, #w1#"};
+ { 6, 220258, "", "=q3=Zulian Ceremonial Staff", "=ds=#w9#"};
+ { 7, 19727, "", "=q3=Blood Scythe", "=ds=#e19#", "", "0.02%"};
+ { 8, 48126, "", "=q1=Razzashi Hatchling", "=ds=#e13#"};
+ { 10, 19726, "", "=q2=Bloodvine", "=ds=#e8#", "", ""};
+ { 11, 19774, "", "=q2=Souldarite", "=ds=#e8#", "", ""};
+ { 12, 19767, "", "=q1=Primal Bat Leather", "=ds=#e8#", "", ""};
+ { 13, 19768, "", "=q1=Primal Tiger Leather", "=ds=#e8#", "", ""};
+ { 16, 19821, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c1#", "", "0.01%"};
+ { 17, 19816, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c2#", "", "0.01%"};
+ { 18, 19818, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c3#", "", "0.01%"};
+ { 19, 19815, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c4#", "", "0.01%"};
+ { 20, 19820, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c5#", "", "0.01%"};
+ { 21, 19814, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c6#", "", "0.01%"};
+ { 22, 19817, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c7#", "", "0.01%"};
+ { 23, 19819, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c8#", "", "0.01%"};
+ { 24, 19813, "", "=q2=Punctured Voodoo Doll", "=q1=#m1# =ds=#c9#", "", "0.01%"};
+ Next = "ZGTrash225ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGTrash225ManHEROIC"] = {
+ { 1, 19708, "", "=q3=Blue Hakkari Bijou", "=ds=#e15#", "", "1.48%"};
+ { 2, 19713, "", "=q3=Bronze Hakkari Bijou", "=ds=#e15#", "", "1.57%"};
+ { 3, 19715, "", "=q3=Gold Hakkari Bijou", "=ds=#e15#", "", "1.63%"};
+ { 4, 19711, "", "=q3=Green Hakkari Bijou", "=ds=#e15#", "", "1.67%"};
+ { 5, 19710, "", "=q3=Orange Hakkari Bijou", "=ds=#e15#", "", "1.76%"};
+ { 6, 19712, "", "=q3=Purple Hakkari Bijou", "=ds=#e15#", "", "1.67%"};
+ { 7, 19707, "", "=q3=Red Hakkari Bijou", "=ds=#e15#", "", "1.63%"};
+ { 8, 19714, "", "=q3=Silver Hakkari Bijou", "=ds=#e15#", "", "1.59%"};
+ { 9, 19709, "", "=q3=Yellow Hakkari Bijou", "=ds=#e15#", "", "1.50%"};
+ { 16, 19706, "", "=q2=Bloodscalp Coin", "=ds=#e15#", "", "3.01%"};
+ { 17, 19701, "", "=q2=Gurubashi Coin", "=ds=#e15#", "", "3.12%"};
+ { 18, 19700, "", "=q2=Hakkari Coin", "=ds=#e15#", "", "3.19%"};
+ { 19, 19699, "", "=q2=Razzashi Coin", "=ds=#e15#", "", "3.36%"};
+ { 20, 19704, "", "=q2=Sandfury Coin", "=ds=#e15#", "", "3.47%"};
+ { 21, 19705, "", "=q2=Skullsplitter Coin", "=ds=#e15#", "", "3.32%"};
+ { 22, 19702, "", "=q2=Vilebranch Coin", "=ds=#e15#", "", "3.27%"};
+ { 23, 19703, "", "=q2=Witherbark Coin", "=ds=#e15#", "", "3.27%"};
+ { 24, 19698, "", "=q2=Zulian Coin", "=ds=#e15#", "", "3.01%"};
+ Prev = "ZGTrash125ManHEROIC";
+ };
+
+ AtlasLoot_Data["ZGEnchants25ManHEROIC"] = {
{ 1, 19790, "", "=q3=Animist's Caress", "=q1=#m1# =ds=#c1#"};
{ 2, 19785, "", "=q3=Falcon's Call", "=q1=#m1# =ds=#c2#"};
{ 3, 19787, "", "=q3=Presence of Sight", "=q1=#m1# =ds=#c3#"};
@@ -5842,9 +6520,9 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 22635, "", "=q3=Savage Guard", "=ds=#s1#/#s11# #e17#"};
};
- -----------------
- --- Naxxramas ---
- -----------------
+ -----------------
+ --- Naxxramas ---
+ -----------------
AtlasLoot_Data["NAXPatchwerk"] = {
{ 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
@@ -6106,10 +6784,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 18, 23549, "", "=q4=Fortitude of the Scourge", "=ds=#s3# #e17#","","50%" },
{ 19, 23548, "", "=q4=Might of the Scourge", "=ds=#s3# #e17#" ,"","50%"},
Prev = "NAXLoatheb";
- Next = "NAXKelThuzard";
+ Next = "NAXKelThuzad";
};
- AtlasLoot_Data["NAXKelThuzard"] = {
+ AtlasLoot_Data["NAXKelThuzad"] = {
{ 1, 22802, "", "=q4=Kingsfall", "=ds=#h1#, #w4#","","18.18%" },
{ 2, 23054, "", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#" ,"","18.18%"},
{ 3, 23577, "", "=q4=The Hungering Cold", "=ds=#h1#, #w10#" ,"","18.18%"},
@@ -6167,15 +6845,344 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 0,"","","" },
{ 21, 22708, "", "=q1=Fate of Ramaladni", "=ds=#m3#" },
{ 22, 23055, "", "=q1=Word of Thawing", "=ds=#m20#" },
- Prev = "NAXKelThuzard";
+ Prev = "NAXKelThuzad";
};
- ------------------------
- --- Naxxramas HEROIC ---
- ------------------------
+ --------------------------
+ --- Naxxramas Flex Heroic ---
+ --------------------------
- AtlasLoot_Data["NAXPatchwerkHEROIC"] = {
+ AtlasLoot_Data["NAXPatchwerk25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22368, "", "=q4=Desecrated Shoulderpads", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "33.33%" },
+ { 5, 22361, "", "=q4=Desecrated Spaulders", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33.33%" },
+ { 6, 22354, "", "=q4=Desecrated Pauldrons", "=q1=#m1# =ds=#c6#, #c9#","", "33.33%" },
+ { 7, 0,"","","" },
+ { 8, 322960, "", "=q4=Cloak of Suturing", "=ds=#s4#","", "20%" },
+ { 9, 322815, "", "=q4=Severance", "=ds=#h2#, #w1#","", "20%" },
+ { 10, 322820, "", "=q4=Wand of Fates", "=ds=#w12#","", "20%" },
+ { 11, 322818, "", "=q4=The Plague Bearer", "=ds=#w8#","", "20%" },
+ { 12, 322961, "", "=q4=Band of Reanimation", "=ds=#s13#","", "20%" },
+ Next = "NAXGrobbulus25Man";
+ };
+
+ AtlasLoot_Data["NAXGrobbulus25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22368, "", "=q4=Desecrated Shoulderpads", "=q1=#m1# =ds=#c8#, #c3#, #c5#","","33.33%" },
+ { 5, 22361, "", "=q4=Desecrated Spaulders", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","","33.33%" },
+ { 6, 22354, "", "=q4=Desecrated Pauldrons", "=q1=#m1# =ds=#c6#, #c9#","","33.33%" },
+ { 7, 0,"","","" },
+ { 8, 322968, "", "=q4=Glacial Mantle", "=ds=#s3#, #a1#", "", "20%" },
+ { 9, 322967, "", "=q4=Icy Scale Spaulders", "=ds=#s3#, #a3#", "", "20%" },
+ { 10, 322803, "", "=q4=Midnight Haze", "=ds=#h3#, #w4#", "", "20%" },
+ { 11, 322988, "", "=q4=The End of Dreams", "=ds=#h3#, #w6#","","20%" },
+ { 12, 322810, "", "=q4=Toxin Injector", "=ds=#w5#", "","20%" },
+ Prev = "NAXPatchwerk25Man";
+ Next = "NAXGluth25Man";
+ };
+
+ AtlasLoot_Data["NAXGluth25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 322983, "", "=q4=Rime Covered Mantle", "=ds=#s3#, #a1#", "", "20%" },
+ { 5, 322813, "", "=q4=Claymore of Unholy Might", "=ds=#h2#, #w10#", "","20%" },
+ { 6, 323075, "", "=q4=Death's Bargain", "=ds=#w8#", "","20%" },
+ { 7, 322994, "", "=q4=Digested Hand of Power", "=ds=#s15#","","20%"},
+ { 8, 322981, "", "=q4=Gluth's Missing Collar", "=ds=#s2#","","20%" },
+ { 9, 0,"","","" },
+ { 10, 0,"","","" },
+ { 11, 0,"","","" },
+ { 12, 0,"","","" },
+ { 13, 0,"","","" },
+ { 14, 0,"","","" },
+ { 15, 0,"","","" },
+ { 16, 22368, "", "=q4=Desecrated Shoulderpads", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "8.33%" },
+ { 17, 22361, "", "=q4=Desecrated Spaulders", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "8.33%" },
+ { 18, 22354, "", "=q4=Desecrated Pauldrons", "=q1=#m1# =ds=#c6#, #c9#","", "8.33%" },
+ { 19, 22369, "", "=q4=Desecrated Bindings", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "8.33%" },
+ { 20, 22362, "", "=q4=Desecrated Wristguards", "=q1=#m1# =ds=#c4#, #c7#, #c2#, #c1#","", "8.33%" },
+ { 21, 22355, "", "=q4=Desecrated Bracers", "=q1=#m1# =ds=#c9#, #c6#","", "8.33%" },
+ { 22, 22370, "", "=q4=Desecrated Belt", "=q1=#m1# =ds=#c5#, #c3#, #c8#","","8.33%" },
+ { 23, 22363, "", "=q4=Desecrated Girdle", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "8.33%" },
+ { 24, 22356, "", "=q4=Desecrated Waistguard", "=q1=#m1# =ds=#c6#, #c9#","", "8.33%" },
+ { 25, 22372, "", "=q4=Desecrated Sandals", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "8.33%" },
+ { 26, 22365, "", "=q4=Desecrated Boots", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "8.33%" },
+ { 27, 22358, "", "=q4=Desecrated Sabatons", "=q1=#m1# =ds=#c6#, #c9#","", "8.33%" },
+ Prev = "NAXGrobbulus25Man";
+ Next = "NAXThaddius25Man";
+ };
+
+ AtlasLoot_Data["NAXThaddius25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22367, "", "=q4=Desecrated Circlet", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "66.67%"},
+ { 5, 22360, "", "=q4=Desecrated Headpiece", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#" ,"", "66.67%"},
+ { 6, 22353, "", "=q4=Desecrated Helmet", "=q1=#m1# =ds=#c6#, #c9#","", "66.67%" },
+ { 7, 0,"","","" },
+ { 8, 323070, "", "=q4=Leggings of Polarity", "=ds=#s11#, #a1#" ,"", "20%"},
+ { 9, 323000, "", "=q4=Plated Abomination Ribcage", "=ds=#s5#, #a4#","", "20%" },
+ { 10, 322808, "", "=q4=The Castigator", "=ds=#h1#, #w6#" ,"", "20%"},
+ { 11, 322801, "", "=q4=Spire of Twilight", "=ds=#w9#" ,"", "20%"},
+ { 12, 323001, "", "=q4=Eye of Diminution", "=ds=#s14#" ,"", "20%"},
+ Prev = "NAXGluth25Man";
+ Next = "NAXAnubRekhan25Man";
+ };
+
+ AtlasLoot_Data["NAXAnubRekhan25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22369, "", "=q4=Desecrated Bindings", "=q1=#m1# =ds=#c8#, #c3#, #c5#", "","33.33%" },
+ { 5, 22362, "", "=q4=Desecrated Wristguards", "=q1=#m1# =ds=#c4#, #c7#, #c2#, #c1#","", "33.33%" },
+ { 6, 22355, "", "=q4=Desecrated Bracers", "=q1=#m1# =ds=#c9#, #c6#", "", "33.33%" },
+ { 7, 0,"","","" },
+ { 8, 322938, "", "=q4=Cryptfiend Silk Cloak", "=ds=#s4#", "","20%" },
+ { 9, 322936, "", "=q4=Wristguards of Vengeance", "=ds=#s8#, #a4#","", "20%" },
+ { 10, 322937, "", "=q4=Gem of Nerubis", "=ds=#s15#","", "20%" },
+ { 11, 322939, "", "=q4=Band of Unanswered Prayers", "=ds=#s13#","", "20%" },
+ { 12, 322935, "", "=q4=Touch of Frost", "=ds=#s2#", "", "20%" },
+ Prev = "NAXThaddius25Man";
+ Next = "NAXGrandWidowFearlina25Man";
+ };
+
+ AtlasLoot_Data["NAXGrandWidowFearlina25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22369, "", "=q4=Desecrated Bindings", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "33.33%" },
+ { 5, 22362, "", "=q4=Desecrated Wristguards", "=q1=#m1# =ds=#c4#, #c7#, #c2#, #c1#","", "33.33%" },
+ { 6, 22355, "", "=q4=Desecrated Bracers", "=q1=#m1# =ds=#c9#, #c6#","", "33.33%" },
+ { 7, 0,"","","" },
+ { 8, 322941, "", "=q4=Polar Shoulder Pads", "=ds=#s3#, #a2#","", "20%" },
+ { 9, 322940, "", "=q4=Icebane Pauldrons", "=ds=#s3#, #a4#","", "20%" },
+ { 10, 322806, "", "=q4=Widow's Remorse", "=ds=#h1#, #w10#","", "20%" },
+ { 11, 322942, "", "=q4=The Widow's Embrace", "=ds=#h3#, #w6#","", "20%" },
+ { 12, 322943, "", "=q4=Malice Stone Pendant", "=ds=#s2#","", "20%" },
+ Prev = "NAXAnubRekhan25Man";
+ Next = "NAXMaexxna25Man";
+ };
+
+ AtlasLoot_Data["NAXMaexxna25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22371, "", "=q4=Desecrated Gloves", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "67.66%" },
+ { 5, 22364, "", "=q4=Desecrated Handguards", "=q1=#m1# =ds=#c4#, #c7#, #c2#, #c1#","", "67.66%" },
+ { 6, 22357, "", "=q4=Desecrated Gauntlets", "=q1=#m1# =ds=#c9#, #c6#","", "67.66%" },
+ { 7, 0,"","","" },
+ { 8, 323220, "", "=q4=Crystal Webbed Robe", "=ds=#s5#, #a1#","", "20%" },
+ { 9, 322804, "", "=q4=Maexxna's Fang", "=ds=#h1#, #w4#","", "20%" },
+ { 10, 322807, "", "=q4=Wraith Blade", "=ds=#h3#, #w10#","", "20%" },
+ { 11, 322947, "", "=q4=Pendant of Forgotten Names", "=ds=#s2#","", "20%" },
+ { 12, 322954, "", "=q4=Kiss of the Spider", "=ds=#s14#","", "20%" },
+ Prev = "NAXGrandWidowFearlina25Man";
+ Next = "NAXInstructorRAuvious25Man";
+ };
+
+ AtlasLoot_Data["NAXInstructorRAuvious25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22372, "", "=q4=Desecrated Sandals", "=q1=#m1# =ds=#c8#, #c3#, #c5#", "", "33.33%" },
+ { 5, 22365, "", "=q4=Desecrated Boots", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33.33%" },
+ { 6, 22358, "", "=q4=Desecrated Sabatons", "=q1=#m1# =ds=#c6#, #c9#","", "33.33%" },
+ { 7, 0,"","","" },
+ { 8, 323017, "", "=q4=Veil of Eclipse", "=ds=#s4#","", "16.67%" },
+ { 9, 323219, "", "=q4=Girdle of the Mentor", "=ds=#s10#, #a4#","", "16.67%" },
+ { 10, 323014, "", "=q4=Iblis, Blade of the Fallen Seraph", "=ds=#h1#, #w10#","", "16.67%" },
+ { 11, 323009, "", "=q4=Wand of the Whispering Dead", "=ds=#w12#","", "16.67%" },
+ { 12, 323004, "", "=q4=Idol of Longevity", "=ds=#s16#, #w14#","", "16.67%" },
+ { 13, 323018, "", "=q4=Signet of the Fallen Defender", "=ds=#s13#","", "16.67%" },
+ Prev = "NAXMaexxna25Man";
+ Next = "NAXGothicderHarvester25Man";
+ };
+
+ AtlasLoot_Data["NAXGothicderHarvester25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22372, "", "=q4=Desecrated Sandals", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "33.33%" },
+ { 5, 22365, "", "=q4=Desecrated Boots", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33.33%" },
+ { 6, 22358, "", "=q4=Desecrated Sabatons", "=q1=#m1# =ds=#c6#, #c9#","", "33.33%" },
+ { 7, 0,"","","" },
+ { 8, 323032, "", "=q4=Glacial Headdress", "=ds=#s1#, #a1#","", "20%" },
+ { 9, 323021, "", "=q4=The Soul Harvester's Bindings", "=ds=#s8#, #a1#","", "20%" },
+ { 10, 323020, "", "=q4=Polar Helmet", "=ds=#s1#, #a2#","", "20%" },
+ { 11, 323073, "", "=q4=Boots of Displacement", "=ds=#s12#, #a2#","", "20%" },
+ { 12, 323023, "", "=q4=Sadist's Collar", "=ds=#s2#","", "20%" },
+ Prev = "NAXInstructorRAuvious25Man";
+ Next = "NAXTheFourHorsemen25Man";
+ };
+
+ AtlasLoot_Data["NAXTheFourHorsemen25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22351, "", "=q4=Desecrated Robe", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "33.33%" },
+ { 5, 22350, "", "=q4=Desecrated Tunic", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33.33%" },
+ { 6, 22349, "", "=q4=Desecrated Breastplate", "=q1=#m1# =ds=#c6#, #c9#","", "33.33%" },
+ { 7, 0,"","","" },
+ { 8, 323071, "", "=q4=Leggings of Apocalypse", "=ds=#s11#, #a2#","", "16.67%" },
+ { 9, 322809, "", "=q4=Maul of the Redeemed Crusader", "=ds=#h2#, #w6#","", "16.67%" },
+ { 10, 322691, "", "=q4=Corrupted Ashbringer", "=ds=#h2#, #w10#","", "16.67%" },
+ { 11, 322811, "", "=q4=Soulstring", "=ds=#w2#","", "20%" },
+ { 12, 323025, "", "=q4=Seal of the Damned", "=ds=#s13#","", "16.67%" },
+ { 13, 323027, "", "=q4=Warmth of Forgiveness", "=ds=#s14#","", "16.67%" },
+ Prev = "NAXGothicderHarvester25Man";
+ Next = "NAXNothderPlaguebringer25Man";
+ };
+
+ AtlasLoot_Data["NAXNothderPlaguebringer25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22370, "", "=q4=Desecrated Belt", "=q1=#m1# =ds=#c5#, #c3#, #c8#","", "33.33%" },
+ { 5, 22363, "", "=q4=Desecrated Girdle", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33.33%" },
+ { 6, 22356, "", "=q4=Desecrated Waistguard", "=q1=#m1# =ds=#c6#, #c9#","", "33.33%" },
+ { 7, 0,"","","" },
+ { 8, 323030, "", "=q4=Cloak of the Scourge", "=ds=#s4#","", "14.29%" },
+ { 9, 322816, "", "=q4=Hatchet of Sundered Bone", "=ds=#h1#, #w1#","", "14.29%" },
+ { 10, 323005, "", "=q4=Totem of Flowing Water", "=ds=#s16#, #w15#","", "14.29%" },
+ { 11, 323006, "", "=q4=Libram of Light", "=ds=#s16#, #w16#","", "14.29%" },
+ { 12, 323029, "", "=q4=Noth's Frigid Heart", "=ds=#s15#","", "14.29%" },
+ { 13, 323031, "", "=q4=Band of the Inevitable", "=ds=#s13#","", "14.29%" },
+ { 14, 323028, "", "=q4=Hailstone Band", "=ds=#s13#","", "14.29%" },
+ Prev = "NAXTheFourHorsemen25Man";
+ Next = "NAXHeiganderUnclean25Man";
+ };
+
+ AtlasLoot_Data["NAXHeiganderUnclean25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22370, "", "=q4=Desecrated Belt", "=q1=#m1# =ds=#c5#, #c3#, #c8#","", "33.33%" },
+ { 5, 22363, "", "=q4=Desecrated Girdle", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "33.33%" },
+ { 6, 22356, "", "=q4=Desecrated Waistguard", "=q1=#m1# =ds=#c6#, #c9#","", "33.33%" },
+ { 7, 0,"","","" },
+ { 8, 323035, "", "=q4=Preceptor's Hat", "=ds=#s1#, #a1#","", "20%" },
+ { 9, 323033, "", "=q4=Icy Scale Coif", "=ds=#s1#, #a3#","", "20%" },
+ { 10, 323019, "", "=q4=Icebane Helmet", "=ds=#s1#, #a4#","", "20%" },
+ { 11, 323068, "", "=q4=Legplates of Carnage", "=ds=#s11#, #a4#","", "20%" },
+ { 12, 323036, "", "=q4=Necklace of Necropsy", "=ds=#s2#","", "20%" },
+ Prev = "NAXNothderPlaguebringer25Man";
+ Next = "NAXLoatheb25Man";
+ };
+
+ AtlasLoot_Data["NAXLoatheb25Man"] = {
+ { 1, 22726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
+ { 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
+ { 3, 0,"","","" },
+ { 4, 22366, "", "=q4=Desecrated Leggings", "=q1=#m1# =ds=#c5#, #c3#, #c8#","", "66.67%" },
+ { 5, 22359, "", "=q4=Desecrated Legguards", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#" ,"", "66.67%"},
+ { 6, 22352, "", "=q4=Desecrated Legplates", "=q1=#m1# =ds=#c6#, #c9#","", "66.67%" },
+ { 7, 0,"","","" },
+ { 8, 323039, "", "=q4=The Eye of Nerub", "=ds=#w7#","", "20%" },
+ { 9, 322800, "", "=q4=Brimstone Staff", "=ds=#w9#","", "20%" },
+ { 10, 323037, "", "=q4=Ring of Spiritual Fervor", "=ds=#s13#","", "20%" },
+ { 11, 323038, "", "=q4=Band of Unnatural Forces", "=ds=#s13#" ,"", "20%"},
+ { 12, 323042, "", "=q4=Loatheb's Reflection", "=ds=#s14#","", "20%" },
+ Prev = "NAXHeiganderUnclean25Man";
+ Next = "NAXSapphiron25Man";
+ };
+
+ AtlasLoot_Data["NAXSapphiron25Man"] = {
+ { 1, 323050, "", "=q4=Cloak of the Necropolis", "=ds=#s4#","","18.18%" },
+ { 2, 323045, "", "=q4=Shroud of Dominion", "=ds=#s4#","","18.18%" },
+ { 3, 323072, "", "=q4=Fists of the Unrelenting", "=ds=#s9#, #a4#","","18.18%" },
+ { 4, 323043, "", "=q4=The Face of Death", "=ds=#w8#","","18.18%" },
+ { 5, 323242, "", "=q4=Claw of the Frost Wyrm", "=ds=#h4#, #w13#","","18.18%" },
+ { 6, 323049, "", "=q4=Sapphiron's Left Eye", "=ds=#s15#","","18.18%" },
+ { 7, 323048, "", "=q4=Sapphiron's Right Eye", "=ds=#s15#","","18.18%" },
+ { 8, 323040, "", "=q4=Glyph of Deflection", "=ds=#s14#","","18.18%" },
+ { 9, 323047, "", "=q4=Eye of the Dead", "=ds=#s14#" ,"","18.18%" },
+ { 10, 323046, "", "=q4=The Restrained Essence of Sapphiron", "=ds=#s14#","","18.18%" },
+ { 11, 323041, "", "=q4=Slayer's Crest", "=ds=#s14#","","18.18%" },
+ { 12, 319761,"","Fang of the Frost Wyrm","=ds=#h3#, #w13#" },
+ { 13, 0,"","","" },
+ { 14, 0,"","","" },
+ { 15, 0,"","","" },
+ { 16, 23545, "", "=q4=Power of the Scourge", "=ds=#s3# #e17#","","50%" },
+ { 17, 23547, "", "=q4=Resilience of the Scourge", "=ds=#s3# #e17#","","50%" },
+ { 18, 23549, "", "=q4=Fortitude of the Scourge", "=ds=#s3# #e17#","","50%" },
+ { 19, 23548, "", "=q4=Might of the Scourge", "=ds=#s3# #e17#" ,"","50%"},
+ Prev = "NAXLoatheb25Man";
+ Next = "NAXKelThuzad25Man";
+ };
+
+ AtlasLoot_Data["NAXKelThuzad25Man"] = {
+ { 1, 322802, "", "=q4=Kingsfall", "=ds=#h1#, #w4#","","18.18%" },
+ { 2, 323054, "", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#" ,"","18.18%"},
+ { 3, 323577, "", "=q4=The Hungering Cold", "=ds=#h1#, #w10#" ,"","18.18%"},
+ { 4, 323056, "", "=q4=Hammer of the Twisting Nether", "=ds=#h1#, #w6#","","18.18%" },
+ { 5, 322798, "", "=q4=Might of Menethil", "=ds=#h2#, #w6#","","18.18%" },
+ { 6, 322799, "", "=q4=Soulseeker", "=ds=#w9#","","18.18%" },
+ { 7, 322821, "", "=q4=Doomfinger", "=ds=#w12#" ,"","18.18%"},
+ { 8, 322812, "", "=q4=Nerubian Slavemaker", "=ds=#w3#" ,"","18.18%"},
+ { 9, 322819, "", "=q4=Shield of Condemnation", "=ds=#w8#" ,"","18.18%"},
+ { 10, 323057, "", "=q4=Gem of Trapped Innocents", "=ds=#s2#" ,"","18.18%"},
+ { 11, 323053, "", "=q4=Stormrage's Talisman of Seething", "=ds=#s2#","","18.18%" },
+ { 12, 0,"","","" },
+ { 13, 91119, "", "=q4=The Phylactery of Kel'Thuzad", "=ds=#m2#","", "100%" },
+ { 14, 23207, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" },
+ { 15, 23206, "", "=q4=Mark of the Champion", "=q1=#m4# =ds=#s14#" },
+ { 16, 323064, "", "=q4=Ring of the Dreamwalker", "=ds=#s13# =q1=#m1# =ds=#c1#","","22.22%" },
+ { 17, 323067, "", "=q4=Ring of the Cryptstalker", "=ds=#s13# =q1=#m1# =ds=#c2#" ,"","22.22%"},
+ { 18, 323062, "", "=q4=Frostfire Ring", "=ds=#s13# =q1=#m1# =ds=#c3#" ,"","22.22%"},
+ { 19, 323066, "", "=q4=Ring of Redemption", "=ds=#s13# =q1=#m1# =ds=#c4#" ,"","22.22%"},
+ { 20, 323061, "", "=q4=Ring of Faith", "=ds=#s13# =q1=#m1# =ds=#c5#" ,"","22.22%"},
+ { 21, 323060, "", "=q4=Bonescythe Ring", "=ds=#s13# =q1=#m1# =ds=#c6#" ,"","22.22%"},
+ { 22, 323065, "", "=q4=Ring of the Earthshatterer", "=ds=#s13# =q1=#m1# =ds=#c7#" ,"","22.22%"},
+ { 23, 323063, "", "=q4=Plagueheart Ring", "=ds=#s13# =q1=#m1# =ds=#c8#" ,"","22.22%"},
+ { 24, 323059, "", "=q4=Ring of the Dreadnaught", "=ds=#s13# =q1=#m1# =ds=#c9#" ,"","22.22%"},
+ { 25, 0,"","","" },
+ { 26, 22733, "", "=q1=Staff Head of Atiesh", "=ds=#m3#" },
+ { 27, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c1#"},
+ { 28, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"},
+ { 29, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"},
+ { 30, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"},
+ Prev = "NAXSapphiron25Man";
+ Next = "NAXTrash25Man";
+ };
+
+ AtlasLoot_Data["NAXTrash25Man"] = {
+ { 1, 323069, "", "=q4=Necro-Knight's Garb", "=ds=#s5#, #a1# =q1=#m1# =ds=#c5#, #c3#, #c8#" },
+ { 2, 323226, "", "=q4=Ghoul Skin Tunic", "=ds=#s5#, #a2#" },
+ { 3, 323663, "", "=q4=Girdle of Elemental Fury", "=ds=#s10#, #a3#" },
+ { 4, 323664, "", "=q4=Pauldrons of Elemental Fury", "=ds=#s3#, #a3# =q1=#m1# =ds=#c7#" },
+ { 5, 323665, "", "=q4=Leggings of Elemental Fury", "=ds=#s11#, #a3# =q1=#m1# =ds=#c7#" },
+ { 6, 323666, "", "=q4=Belt of the Grand Crusader", "=ds=#s10#, #a4# =q1=#m1# =ds=#c4#" },
+ { 7, 323667, "", "=q4=Spaulders of the Grand Crusader", "=ds=#s3#, #a4# =q1=#m1# =ds=#c4#" },
+ { 8, 323668, "", "=q4=Leggings of the Grand Crusader", "=ds=#s11#, #a4# =q1=#m1# =ds=#c4#" },
+ { 9, 323044, "", "=q4=Harbinger of Doom", "=ds=#h1#, #w4#" },
+ { 10, 323221, "", "=q4=Misplaced Servo Arm", "=ds=#h1# #w6#" },
+ { 11, 323238, "", "=q4=Stygian Buckler", "=ds=#w8#" },
+ { 12, 323237, "", "=q4=Ring of the Eternal Flame", "=ds=#s13#" },
+ { 13, 0,"","","" },
+ { 14, 0,"","","" },
+ { 15, 0,"","","" },
+ { 16, 22376, "", "=q3=Wartorn Cloth Scrap", "=ds=#m3#" },
+ { 17, 22373, "", "=q3=Wartorn Leather Scrap", "=ds=#m3#" },
+ { 18, 22374, "", "=q3=Wartorn Chain Scrap", "=ds=#m3#" },
+ { 19, 22375, "", "=q3=Wartorn Plate Scrap", "=ds=#m3#" },
+ { 20, 0,"","","" },
+ { 21, 22708, "", "=q1=Fate of Ramaladni", "=ds=#m3#" },
+ { 22, 23055, "", "=q1=Word of Thawing", "=ds=#m20#" },
+ Prev = "NAXKelThuzad25Man";
+ };
+
+
+ --------------------------
+ --- Naxxramas Ascended ---
+ --------------------------
+
+ AtlasLoot_Data["NAXPatchwerk25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6188,10 +7195,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 222820, "", "=q4=Wand of Fates", "=ds=#w12#","", "20%" },
{ 11, 222818, "", "=q4=The Plague Bearer", "=ds=#w8#","", "20%" },
{ 12, 222961, "", "=q4=Band of Reanimation", "=ds=#s13#","", "20%" },
- Next = "NAXGrobbulusHEROIC";
+ Next = "NAXGrobbulus25ManHEROIC";
};
- AtlasLoot_Data["NAXGrobbulusHEROIC"] = {
+ AtlasLoot_Data["NAXGrobbulus25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6204,11 +7211,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 222803, "", "=q4=Midnight Haze", "=ds=#h3#, #w4#", "", "20%" },
{ 11, 222988, "", "=q4=The End of Dreams", "=ds=#h3#, #w6#","","20%" },
{ 12, 222810, "", "=q4=Toxin Injector", "=ds=#w5#", "","20%" },
- Prev = "NAXPatchwerkHEROIC";
- Next = "NAXGluthHEROIC";
+ Prev = "NAXPatchwerk25ManHEROIC";
+ Next = "NAXGluth25ManHEROIC";
};
- AtlasLoot_Data["NAXGluthHEROIC"] = {
+ AtlasLoot_Data["NAXGluth25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6236,11 +7243,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 25, 22372, "", "=q4=Desecrated Sandals", "=q1=#m1# =ds=#c8#, #c3#, #c5#","", "8.33%" },
{ 26, 22365, "", "=q4=Desecrated Boots", "=q1=#m1# =ds=#c7#, #c1#, #c2#, #c4#","", "8.33%" },
{ 27, 22358, "", "=q4=Desecrated Sabatons", "=q1=#m1# =ds=#c6#, #c9#","", "8.33%" },
- Prev = "NAXGrobbulusHEROIC";
- Next = "NAXThaddiusHEROIC";
+ Prev = "NAXGrobbulus25ManHEROIC";
+ Next = "NAXThaddius25ManHEROIC";
};
- AtlasLoot_Data["NAXThaddiusHEROIC"] = {
+ AtlasLoot_Data["NAXThaddius25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","","30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6253,11 +7260,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 222808, "", "=q4=The Castigator", "=ds=#h1#, #w6#" ,"", "20%"},
{ 11, 222801, "", "=q4=Spire of Twilight", "=ds=#w9#" ,"", "20%"},
{ 12, 223001, "", "=q4=Eye of Diminution", "=ds=#s14#" ,"", "20%"},
- Prev = "NAXGluthHEROIC";
- Next = "NAXAnubRekhanHEROIC";
+ Prev = "NAXGluth25ManHEROIC";
+ Next = "NAXAnubRekhan25ManHEROIC";
};
- AtlasLoot_Data["NAXAnubRekhanHEROIC"] = {
+ AtlasLoot_Data["NAXAnubRekhan25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6270,11 +7277,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 222937, "", "=q4=Gem of Nerubis", "=ds=#s15#","", "20%" },
{ 11, 222939, "", "=q4=Band of Unanswered Prayers", "=ds=#s13#","", "20%" },
{ 12, 222935, "", "=q4=Touch of Frost", "=ds=#s2#", "", "20%" },
- Prev = "NAXThaddiusHEROIC";
- Next = "NAXGrandWidowFearlinaHEROIC";
+ Prev = "NAXThaddius25ManHEROIC";
+ Next = "NAXGrandWidowFearlina25ManHEROIC";
};
- AtlasLoot_Data["NAXGrandWidowFearlinaHEROIC"] = {
+ AtlasLoot_Data["NAXGrandWidowFearlina25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#", "", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6287,11 +7294,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 222806, "", "=q4=Widow's Remorse", "=ds=#h1#, #w10#","", "20%" },
{ 11, 222942, "", "=q4=The Widow's Embrace", "=ds=#h3#, #w6#","", "20%" },
{ 12, 222943, "", "=q4=Malice Stone Pendant", "=ds=#s2#","", "20%" },
- Prev = "NAXAnubRekhanHEROIC";
- Next = "NAXMaexxnaHEROIC";
+ Prev = "NAXAnubRekhan25ManHEROIC";
+ Next = "NAXMaexxna25ManHEROIC";
};
- AtlasLoot_Data["NAXMaexxnaHEROIC"] = {
+ AtlasLoot_Data["NAXMaexxna25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6304,11 +7311,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 222807, "", "=q4=Wraith Blade", "=ds=#h3#, #w10#","", "20%" },
{ 11, 222947, "", "=q4=Pendant of Forgotten Names", "=ds=#s2#","", "20%" },
{ 12, 222954, "", "=q4=Kiss of the Spider", "=ds=#s14#","", "20%" },
- Prev = "NAXGrandWidowFearlinaHEROIC";
- Next = "NAXInstructorRAuviousHEROIC";
+ Prev = "NAXGrandWidowFearlina25ManHEROIC";
+ Next = "NAXInstructorRAuvious25ManHEROIC";
};
- AtlasLoot_Data["NAXInstructorRAuviousHEROIC"] = {
+ AtlasLoot_Data["NAXInstructorRAuvious25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6322,11 +7329,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 11, 223009, "", "=q4=Wand of the Whispering Dead", "=ds=#w12#","", "16.67%" },
{ 12, 223004, "", "=q4=Idol of Longevity", "=ds=#s16#, #w14#","", "16.67%" },
{ 13, 223018, "", "=q4=Signet of the Fallen Defender", "=ds=#s13#","", "16.67%" },
- Prev = "NAXMaexxnaHEROIC";
- Next = "NAXGothicderHarvesterHEROIC";
+ Prev = "NAXMaexxna25ManHEROIC";
+ Next = "NAXGothicderHarvester25ManHEROIC";
};
- AtlasLoot_Data["NAXGothicderHarvesterHEROIC"] = {
+ AtlasLoot_Data["NAXGothicderHarvester25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6339,11 +7346,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 223020, "", "=q4=Polar Helmet", "=ds=#s1#, #a2#","", "20%" },
{ 11, 223073, "", "=q4=Boots of Displacement", "=ds=#s12#, #a2#","", "20%" },
{ 12, 223023, "", "=q4=Sadist's Collar", "=ds=#s2#","", "20%" },
- Prev = "NAXInstructorRAuviousHEROIC";
- Next = "NAXTheFourHorsemenHEROIC";
+ Prev = "NAXInstructorRAuvious25ManHEROIC";
+ Next = "NAXTheFourHorsemen25ManHEROIC";
};
- AtlasLoot_Data["NAXTheFourHorsemenHEROIC"] = {
+ AtlasLoot_Data["NAXTheFourHorsemen25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6357,11 +7364,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 11, 222811, "", "=q4=Soulstring", "=ds=#w2#","", "20%" },
{ 12, 223025, "", "=q4=Seal of the Damned", "=ds=#s13#","", "16.67%" },
{ 13, 223027, "", "=q4=Warmth of Forgiveness", "=ds=#s14#","", "16.67%" },
- Prev = "NAXGothicderHarvesterHEROIC";
- Next = "NAXNothderPlaguebringerHEROIC";
+ Prev = "NAXGothicderHarvester25ManHEROIC";
+ Next = "NAXNothderPlaguebringer25ManHEROIC";
};
- AtlasLoot_Data["NAXNothderPlaguebringerHEROIC"] = {
+ AtlasLoot_Data["NAXNothderPlaguebringer25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6376,11 +7383,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 12, 223029, "", "=q4=Noth's Frigid Heart", "=ds=#s15#","", "14.29%" },
{ 13, 223031, "", "=q4=Band of the Inevitable", "=ds=#s13#","", "14.29%" },
{ 14, 223028, "", "=q4=Hailstone Band", "=ds=#s13#","", "14.29%" },
- Prev = "NAXTheFourHorsemenHEROIC";
- Next = "NAXHeiganderUncleanHEROIC";
+ Prev = "NAXTheFourHorsemen25ManHEROIC";
+ Next = "NAXHeiganderUnclean25ManHEROIC";
};
- AtlasLoot_Data["NAXHeiganderUncleanHEROIC"] = {
+ AtlasLoot_Data["NAXHeiganderUnclean25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6393,11 +7400,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 223019, "", "=q4=Icebane Helmet", "=ds=#s1#, #a4#","", "20%" },
{ 11, 223068, "", "=q4=Legplates of Carnage", "=ds=#s11#, #a4#","", "20%" },
{ 12, 223036, "", "=q4=Necklace of Necropsy", "=ds=#s2#","", "20%" },
- Prev = "NAXNothderPlaguebringerHEROIC";
- Next = "NAXLoathebHEROIC";
+ Prev = "NAXNothderPlaguebringer25ManHEROIC";
+ Next = "NAXLoatheb25ManHEROIC";
};
- AtlasLoot_Data["NAXLoathebHEROIC"] = {
+ AtlasLoot_Data["NAXLoatheb25ManHEROIC"] = {
{ 1, 222726, "", "=q5=Splinter of Atiesh", "=ds=#m3#","", "30%" },
{ 2, 22727, "", "=q5=Frame of Atiesh", "=ds=#m2#" },
{ 3, 0,"","","" },
@@ -6410,11 +7417,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 10, 223037, "", "=q4=Ring of Spiritual Fervor", "=ds=#s13#","", "20%" },
{ 11, 223038, "", "=q4=Band of Unnatural Forces", "=ds=#s13#" ,"", "20%"},
{ 12, 223042, "", "=q4=Loatheb's Reflection", "=ds=#s14#","", "20%" },
- Prev = "NAXHeiganderUncleanHEROIC";
- Next = "NAXSapphironHEROIC";
+ Prev = "NAXHeiganderUnclean25ManHEROIC";
+ Next = "NAXSapphiron25ManHEROIC";
};
- AtlasLoot_Data["NAXSapphironHEROIC"] = {
+ AtlasLoot_Data["NAXSapphiron25ManHEROIC"] = {
{ 1, 223050, "", "=q4=Cloak of the Necropolis", "=ds=#s4#","","18.18%" },
{ 2, 223045, "", "=q4=Shroud of Dominion", "=ds=#s4#","","18.18%" },
{ 3, 223072, "", "=q4=Fists of the Unrelenting", "=ds=#s9#, #a4#","","18.18%" },
@@ -6434,11 +7441,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 17, 23547, "", "=q4=Resilience of the Scourge", "=ds=#s3# #e17#","","50%" },
{ 18, 23549, "", "=q4=Fortitude of the Scourge", "=ds=#s3# #e17#","","50%" },
{ 19, 23548, "", "=q4=Might of the Scourge", "=ds=#s3# #e17#" ,"","50%"},
- Prev = "NAXLoathebHEROIC";
- Next = "NAXKelThuzardHEROIC";
+ Prev = "NAXLoatheb25ManHEROIC";
+ Next = "NAXKelThuzad25ManHEROIC";
};
- AtlasLoot_Data["NAXKelThuzardHEROIC"] = {
+ AtlasLoot_Data["NAXKelThuzad25ManHEROIC"] = {
{ 1, 222802, "", "=q4=Kingsfall", "=ds=#h1#, #w4#","","18.18%" },
{ 2, 223054, "", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#" ,"","18.18%"},
{ 3, 223577, "", "=q4=The Hungering Cold", "=ds=#h1#, #w10#" ,"","18.18%"},
@@ -6469,11 +7476,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 28, 222589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c3#"},
{ 29, 222631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c5#"},
{ 30, 222630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#m4#, =q1=#m1# =ds=#c8#"},
- Prev = "NAXSapphironHEROIC";
- Next = "NAXTrashHEROIC";
+ Prev = "NAXSapphiron25ManHEROIC";
+ Next = "NAXTrash25ManHEROIC";
};
- AtlasLoot_Data["NAXTrashHEROIC"] = {
+ AtlasLoot_Data["NAXTrash25ManHEROIC"] = {
{ 1, 223069, "", "=q4=Necro-Knight's Garb", "=ds=#s5#, #a1# =q1=#m1# =ds=#c5#, #c3#, #c8#" },
{ 2, 223226, "", "=q4=Ghoul Skin Tunic", "=ds=#s5#, #a2#" },
{ 3, 223663, "", "=q4=Girdle of Elemental Fury", "=ds=#s10#, #a3#" },
@@ -6496,7 +7503,7 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 20, 0,"","","" },
{ 21, 22708, "", "=q1=Fate of Ramaladni", "=ds=#m3#" },
{ 22, 23055, "", "=q1=Word of Thawing", "=ds=#m20#" },
- Prev = "NAXKelThuzard";
+ Prev = "NAXKelThuzad";
};
@@ -6534,12 +7541,46 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 29, 49636, "", "=q4=Reins of the Onyxian Drake", "=ds=#e12#", "" };
};
-
+
-------------------------------
- --- Onyxia's Lair 60 HEROIC ---
+ --- Onyxia's Lair 60 HEROIC FLEX ---
-------------------------------
- AtlasLoot_Data["Onyxia60HEROIC"] = {
+ AtlasLoot_Data["Onyxia6025Man"] = {
+ { 1, 316914, "", "=q4=Netherwind Crown", "=q1=#m1# =ds=#c3# (T2)", "","22.22%" },
+ { 2, 316921, "", "=q4=Halo of Transcendence", "=q1=#m1# =ds=#c5# (T2)", "","22.22%" },
+ { 3, 316929, "", "=q4=Nemesis Skullcap", "=q1=#m1# =ds=#c8# (T2)","", "22.22%" },
+ { 4, 316900, "", "=q4=Stormrage Cover", "=q1=#m1# =ds=#c1# (T2)","", "22.22%" },
+ { 5, 316908, "", "=q4=Bloodfang Hood", "=q1=#m1# =ds=#c6# (T2)", "","22.22%" },
+ { 6, 316939, "", "=q4=Dragonstalker's Helm", "=q1=#m1# =ds=#c2# (T2)", "","22.22%" },
+ { 7, 316947, "", "=q4=Helmet of Ten Storms", "=q1=#m1# =ds=#c7# (T2)", "","22.22%" },
+ { 8, 316963, "", "=q4=Helm of Wrath", "=q1=#m1# =ds=#c9# (T2)","", "22.22%" },
+ { 9, 316955, "", "=q4=Judgement Crown", "=q1=#m1# =ds=#c4# (T2)", "","22.22%" },
+ { 10, 0,"","","" },
+ { 11, 18705, "", "=q4=Mature Black Dragon Sinew", "=ds=#m3# =q1=#m1# =ds=#c2#", "","100%" },
+ { 12, 18713, "", "=q4=Rhok'delar, Longbow of the Ancient Keepers", "=q1=#m4#: =ds=#w2#, =q1=#m1# =ds=#c2#" },
+ { 13, 0,"","","" },
+ { 14, 15410, "","=q3=Scale of Onyxia", "=ds=#e8#" },
+ { 15, 17966, "", "=q2=Onyxia Hide Backpack", "=ds=#m14# #e1#","", "100%"},
+ { 16, 317078, "", "=q4=Sapphiron Drape", "=ds=#s4#","", "28.57%" },
+ { 17, 318205, "", "=q4=Eskhandar's Collar", "=ds=#s2#","", "28.57%" },
+ { 18, 318813, "", "=q4=Ring of Binding", "=ds=#s13#", "","28.57%" },
+ { 19, 317064, "", "=q4=Shard of the Scale", "=ds=#s14#","", "28.57%" },
+ { 20, 317067, "", "=q4=Ancient Cornerstone Grimoire", "=ds=#s15#","", "28.57%" },
+ { 21, 317075, "", "=q4=Vis'kag the Bloodletter", "=ds=#h1#, #w10#","", "28.57%" },
+ { 22, 317068, "", "=q4=Deathbringer","=ds=#h1#, #w1#","", "28.57%" },
+ { 24, 18423, "", "=q4=Head of Onyxia","=ds=#m2#","", "100%" },
+ { 25, 18404, "", "=q4=Onyxia Tooth Pendant", "=q1=#m4#: =ds=#s2#" },
+ { 26, 18403, "", "=q4=Dragonslayer's Signet", "=q1=#m4#: =ds=#s13#" },
+ { 27, 18406, "", "=q4=Onyxia Blood Talisman", "=q1=#m4#: =ds=#s14#" },
+ { 29, 49636, "", "=q4=Reins of the Onyxian Drake", "=ds=#e12#", "" };
+ };
+
+ -------------------------------
+ --- Onyxia's Lair 60 ASCENDED ---
+ -------------------------------
+
+ AtlasLoot_Data["Onyxia6025ManHEROIC"] = {
{ 1, 216914, "", "=q4=Netherwind Crown", "=q1=#m1# =ds=#c3# (T2)", "","22.22%" },
{ 2, 216921, "", "=q4=Halo of Transcendence", "=q1=#m1# =ds=#c5# (T2)", "","22.22%" },
{ 3, 216929, "", "=q4=Nemesis Skullcap", "=q1=#m1# =ds=#c8# (T2)","", "22.22%" },
@@ -7029,10 +8070,253 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
------------------------------------
- --- Tier 1/2 Sets (T1/T2) HEROIC ---
+ --- Tier 1/2 Sets (T1/T2) HEROIC FLEX ---
------------------------------------
- AtlasLoot_Data["T1T2DruidHEROIC"] = {
+ AtlasLoot_Data["T1T2Druid25Man"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t1s1#", "=ec1=#m30#"};
+ { 2, 316834, "", "=q4=Cenarion Helm", "=ds="..BabbleBoss["Garr"], "", "11.51%"};
+ { 3, 316836, "", "=q4=Cenarion Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "19.52%"};
+ { 4, 316833, "", "=q4=Cenarion Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.21%"};
+ { 5, 316830, "", "=q4=Cenarion Bracers", "=ds="..AL["Trash Mobs"], "", "0.17%"};
+ { 6, 316831, "", "=q4=Cenarion Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.53%"};
+ { 7, 316828, "", "=q4=Cenarion Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"};
+ { 8, 316835, "", "=q4=Cenarion Leggings", "=ds="..BabbleBoss["Magmadar"], "", "12.90%"};
+ { 9, 316829, "", "=q4=Cenarion Boots", "=ds="..BabbleBoss["Lucifron"], "", "10.72%"};
+ { 16, 0, "Spell_Nature_Regeneration", "=q6=#t2s1#", "=ec1=#m31#"};
+ { 17, 316900, "", "=q4=Stormrage Cover", "=ds="..BabbleBoss["Nefarian"], "", "13.08%"};
+ { 18, 316902, "", "=q4=Stormrage Pauldrons", "=ds="..BabbleBoss["Chromaggus"], "", "14.63%"};
+ { 19, 316897, "", "=q4=Stormrage Chestguard", "=ds="..BabbleBoss["Nefarian"], "", "11.89%"};
+ { 20, 316904, "", "=q4=Stormrage Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "17.38%"};
+ { 21, 316899, "", "=q4=Stormrage Handguards", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.34%"};
+ { 22, 316903, "", "=q4=Stormrage Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "16.90%"};
+ { 23, 316901, "", "=q4=Stormrage Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "15.49%"};
+ { 24, 316898, "", "=q4=Stormrage Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "13.79%"};
+ Prev = "T0Druid25Man";
+ Next = "T3Druid25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2Hunter25Man"] = {
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t1s2#", "=ec1=#m30#"};
+ { 2, 316846, "", "=q4=Giantstalker's Helmet", "=ds="..BabbleBoss["Garr"], "", "11.57%"};
+ { 3, 316848, "", "=q4=Giantstalker's Epaulets", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "19.64%"};
+ { 4, 316845, "", "=q4=Giantstalker's Breastplate", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.83%"};
+ { 5, 316850, "", "=q4=Giantstalker's Bracers", "=ds="..AL["Trash Mobs"], "", "0.18%"};
+ { 6, 316852, "", "=q4=Giantstalker's Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "18.58%"};
+ { 7, 316851, "", "=q4=Giantstalker's Belt", "=ds="..AL["Trash Mobs"], "", "0.17%"};
+ { 8, 316847, "", "=q4=Giantstalker's Leggings", "=ds="..BabbleBoss["Magmadar"], "", "13.28%"};
+ { 9, 316849, "", "=q4=Giantstalker's Boots", "=ds="..BabbleBoss["Gehennas"], "", "14.54%"};
+ { 16, 0, "Ability_Hunter_RunningShot", "=q6=#t2s2#", "=ec1=#m31#"};
+ { 17, 316939, "", "=q4=Dragonstalker's Helm", "=ds="..BabbleBoss["Nefarian"], "", "13.91%"};
+ { 18, 316937, "", "=q4=Dragonstalker's Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.20%"};
+ { 19, 316942, "", "=q4=Dragonstalker's Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "13.30%"};
+ { 20, 316935, "", "=q4=Dragonstalker's Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "19.13%"};
+ { 21, 316940, "", "=q4=Dragonstalker's Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.13%"};
+ { 22, 316936, "", "=q4=Dragonstalker's Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.17%"};
+ { 23, 316938, "", "=q4=Dragonstalker's Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "16.02%"};
+ { 24, 316941, "", "=q4=Dragonstalker's Greaves", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.78%"};
+ Prev = "T0Hunter25Man";
+ Next = "T3Hunter25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2Mage25Man"] = {
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t1s3#", "=ec1=#m30#"};
+ { 2, 316795, "", "=q4=Arcanist Crown", "=ds="..BabbleBoss["Garr"], "", "11.31%"};
+ { 3, 316797, "", "=q4=Arcanist Mantle", "=ds="..BabbleBoss["Baron Geddon"], "", "19.92%"};
+ { 4, 316798, "", "=q4=Arcanist Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.51%"};
+ { 5, 316799, "", "=q4=Arcanist Bindings", "=ds="..AL["Trash Mobs"], "", "0.16%"};
+ { 6, 316801, "", "=q4=Arcanist Gloves", "=ds="..BabbleBoss["Shazzrah"], "", "19.59%"};
+ { 7, 316802, "", "=q4=Arcanist Belt", "=ds="..AL["Trash Mobs"], "", "0.16%"};
+ { 8, 316796, "", "=q4=Arcanist Leggings", "=ds="..BabbleBoss["Magmadar"], "", "14.57%"};
+ { 9, 316800, "", "=q4=Arcanist Boots", "=ds="..BabbleBoss["Lucifron"], "", "12.06%"};
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#t2s3#", "=ec1=#m31#"};
+ { 17, 316914, "", "=q4=Netherwind Crown", "=ds="..BabbleBoss["Nefarian"], "", "14.09%"};
+ { 18, 316917, "", "=q4=Netherwind Mantle", "=ds="..BabbleBoss["Chromaggus"], "", "18.09%"};
+ { 19, 316916, "", "=q4=Netherwind Robes", "=ds="..BabbleBoss["Nefarian"], "", "14.03%"};
+ { 20, 316918, "", "=q4=Netherwind Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.41%"};
+ { 21, 316913, "", "=q4=Netherwind Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "7.37%"};
+ { 22, 316818, "", "=q4=Netherwind Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.94%"};
+ { 23, 316915, "", "=q4=Netherwind Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.37%"};
+ { 24, 316912, "", "=q4=Netherwind Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.17%"};
+ Prev = "T0Mage25Man";
+ Next = "T3Mage25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2Paladin25Man"] = {
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t1s4#", "=ec1=#m30#"};
+ { 2, 316854, "", "=q4=Lawbringer Helm", "=ds="..BabbleBoss["Garr"], "", "7.23%"};
+ { 3, 316856, "", "=q4=Lawbringer Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "12.62%"};
+ { 4, 316853, "", "=q4=Lawbringer Chestguard", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "9.53%"};
+ { 5, 316857, "", "=q4=Lawbringer Bracers", "=ds="..AL["Trash Mobs"], "", "0.11%"};
+ { 6, 316860, "", "=q4=Lawbringer Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "11.77%"};
+ { 7, 316858, "", "=q4=Lawbringer Belt", "=ds="..AL["Trash Mobs"], "", "0.10%"};
+ { 8, 316855, "", "=q4=Lawbringer Legplates", "=ds="..BabbleBoss["Magmadar"], "", "8.54%"};
+ { 9, 316859, "", "=q4=Lawbringer Boots", "=ds="..BabbleBoss["Lucifron"], "", "7.20%"};
+ { 16, 0, "Spell_Holy_SealOfMight", "=q6=#t2s4#", "=ec1=#m31#"};
+ { 17, 316955, "", "=q4=Judgement Crown", "=ds="..BabbleBoss["Nefarian"], "", "8.64%"};
+ { 18, 316953, "", "=q4=Judgement Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "10.97%"};
+ { 19, 316958, "", "=q4=Judgement Breastplate", "=ds="..BabbleBoss["Nefarian"], "", "9.24%"};
+ { 20, 316951, "", "=q4=Judgement Bindings", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "13.61%"};
+ { 21, 316956, "", "=q4=Judgement Gauntlets", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "3.58%"};
+ { 22, 316952, "", "=q4=Judgement Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "12.23%"};
+ { 23, 316954, "", "=q4=Judgement Legplates", "=ds="..BabbleBoss["Ragnaros"], "", "10.81%"};
+ { 24, 316957, "", "=q4=Judgement Sabatons", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "11.28%"};
+ Prev = "T0Paladin25Man";
+ Next = "T3Paladin25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2Priest25Man"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t1s5#", "=ec1=#m30#"};
+ { 2, 316813, "", "=q4=Circlet of Prophecy", "=ds="..BabbleBoss["Garr"], "", "11.36%"};
+ { 3, 316816, "", "=q4=Mantle of Prophecy", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.06%"};
+ { 4, 316815, "", "=q4=Robes of Prophecy", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.65%"};
+ { 5, 316819, "", "=q4=Vambraces of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.16%"};
+ { 6, 316812, "", "=q4=Gloves of Prophecy", "=ds="..BabbleBoss["Gehennas"], "", "18.65%"};
+ { 7, 316817, "", "=q4=Girdle of Prophecy", "=ds="..AL["Trash Mobs"], "", "0.18%"};
+ { 8, 316814, "", "=q4=Pants of Prophecy", "=ds="..BabbleBoss["Magmadar"], "", "14.33%"};
+ { 9, 316811, "", "=q4=Boots of Prophecy", "=ds="..BabbleBoss["Shazzrah"], "", "14.90%"};
+ { 16, 0, "Spell_Holy_PowerWordShield", "=q6=#t2s5#", "=ec1=#m31#"};
+ { 17, 316921, "", "=q4=Halo of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "13.39%"};
+ { 18, 316924, "", "=q4=Pauldrons of Transcendence", "=ds="..BabbleBoss["Chromaggus"], "", "17.83%"};
+ { 19, 316923, "", "=q4=Robes of Transcendence", "=ds="..BabbleBoss["Nefarian"], "", "14.83%"};
+ { 20, 316926, "", "=q4=Bindings of Transcendence", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.37%"};
+ { 21, 316920, "", "=q4=Handguards of Transcendence", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.01%"};
+ { 22, 316925, "", "=q4=Belt of Transcendence", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.76%"};
+ { 23, 316922, "", "=q4=Leggings of Transcendence", "=ds="..BabbleBoss["Ragnaros"], "", "17.30%"};
+ { 24, 316919, "", "=q4=Boots of Transcendence", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "14.61%"};
+ Prev = "T0Priest25Man";
+ Next = "T3Priest25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2Rogue25Man"] = {
+ { 1, 0, "Ability_BackStab", "=q6=#t1s6#", "=ec1=#m30#"};
+ { 2, 316821, "", "=q4=Nightslayer Cover", "=ds="..BabbleBoss["Garr"], "", "10.38%"};
+ { 3, 316823, "", "=q4=Nightslayer Shoulder Pads", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "20.66%"};
+ { 4, 316820, "", "=q4=Nightslayer Chestpiece", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "16.76%"};
+ { 5, 316825, "", "=q4=Nightslayer Bracelets", "=ds="..AL["Trash Mobs"], "", "0.17%"};
+ { 6, 316826, "", "=q4=Nightslayer Gloves", "=ds="..BabbleBoss["Gehennas"], "", "19.47%"};
+ { 7, 316827, "", "=q4=Nightslayer Belt", "=ds="..AL["Trash Mobs"], "", "0.15%"};
+ { 8, 316822, "", "=q4=Nightslayer Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.83%"};
+ { 9, 316824, "", "=q4=Nightslayer Boots", "=ds="..BabbleBoss["Shazzrah"], "", "15.58%"};
+ { 16, 0, "Ability_BackStab", "=q6=#t2s6#", "=ec1=#m31#"};
+ { 17, 316908, "", "=q4=Bloodfang Hood", "=ds="..BabbleBoss["Nefarian"], "", "13.21%"};
+ { 18, 316832, "", "=q4=Bloodfang Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "17.03%"};
+ { 19, 316905, "", "=q4=Bloodfang Chestpiece", "=ds="..BabbleBoss["Nefarian"], "", "14.21%"};
+ { 20, 316911, "", "=q4=Bloodfang Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.69%"};
+ { 21, 316907, "", "=q4=Bloodfang Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "6.84%"};
+ { 22, 316910, "", "=q4=Bloodfang Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.69%"};
+ { 23, 316909, "", "=q4=Bloodfang Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.18%"};
+ { 24, 316906, "", "=q4=Bloodfang Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.66%"};
+ Prev = "T0Rogue25Man";
+ Next = "T3Rogue25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2Shaman25Man"] = {
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t1s7#", "=ec1=#m30#"};
+ { 2, 316842, "", "=q4=Earthfury Helmet", "=ds="..BabbleBoss["Garr"], "", "3.91%"};
+ { 3, 316844, "", "=q4=Earthfury Epaulets", "=ds="..BabbleBoss["Baron Geddon"], "", "7.29%"};
+ { 4, 316841, "", "=q4=Earthfury Vestments", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "6.08%"};
+ { 5, 316840, "", "=q4=Earthfury Bracers", "=ds="..AL["Trash Mobs"], "", "0.06%"};
+ { 6, 316839, "", "=q4=Earthfury Gauntlets", "=ds="..BabbleBoss["Gehennas"], "", "7.38%"};
+ { 7, 316838, "", "=q4=Earthfury Belt", "=ds="..AL["Trash Mobs"], "", "0.07%"};
+ { 8, 316843, "", "=q4=Earthfury Legguards", "=ds="..BabbleBoss["Magmadar"], "", "4.73%"};
+ { 9, 316837, "", "=q4=Earthfury Boots", "=ds="..BabbleBoss["Lucifron"], "", "4.16%"};
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#t2s7#", "=ec1=#m31#"};
+ { 17, 316947, "", "=q4=Helmet of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "4.86%"};
+ { 18, 316945, "", "=q4=Epaulets of Ten Storms", "=ds="..BabbleBoss["Chromaggus"], "", "6.73%"};
+ { 19, 316950, "", "=q4=Breastplate of Ten Storms", "=ds="..BabbleBoss["Nefarian"], "", "5.65%"};
+ { 20, 316943, "", "=q4=Bracers of Ten Storms", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "7.54%"};
+ { 21, 316948, "", "=q4=Gauntlets of Ten Storms", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "2.13%"};
+ { 22, 316944, "", "=q4=Belt of Ten Storms", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "6.93%"};
+ { 23, 316946, "", "=q4=Legplates of Ten Storms", "=ds="..BabbleBoss["Ragnaros"], "", "5.97%"};
+ { 24, 316949, "", "=q4=Greaves of Ten Storms", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "5.57%"};
+ Prev = "T0Shaman25Man";
+ Next = "T3Shaman25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2Warlock25Man"] = {
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t1s8#", "=ec1=#m30#"};
+ { 2, 316808, "", "=q4=Felheart Horns", "=ds="..BabbleBoss["Garr"], "", "10.62%"};
+ { 3, 316807, "", "=q4=Felheart Shoulder Pads", "=ds="..BabbleBoss["Baron Geddon"], "", "19.78%"};
+ { 4, 316809, "", "=q4=Felheart Robes", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.66%"};
+ { 5, 316804, "", "=q4=Felheart Bracers", "=ds="..AL["Trash Mobs"], "", "0.16%"};
+ { 6, 316805, "", "=q4=Felheart Gloves", "=ds="..BabbleBoss["Lucifron"], "", "14.89%"};
+ { 7, 316806, "", "=q4=Felheart Belt", "=ds="..AL["Trash Mobs"], "", "0.19%"};
+ { 8, 316810, "", "=q4=Felheart Pants", "=ds="..BabbleBoss["Magmadar"], "", "13.75%"};
+ { 9, 316803, "", "=q4=Felheart Slippers", "=ds="..BabbleBoss["Shazzrah"], "", "15.28%"};
+ { 16, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t2s8#", "=ec1=#m31#"};
+ { 17, 316929, "", "=q4=Nemesis Skullcap", "=ds="..BabbleBoss["Nefarian"], "", "13.54%"};
+ { 18, 316932, "", "=q4=Nemesis Spaulders", "=ds="..BabbleBoss["Chromaggus"], "", "16.26%"};
+ { 19, 316931, "", "=q4=Nemesis Robes", "=ds="..BabbleBoss["Nefarian"], "", "12.46%"};
+ { 20, 316934, "", "=q4=Nemesis Bracers", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "18.11%"};
+ { 21, 316928, "", "=q4=Nemesis Gloves", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.28%"};
+ { 22, 316933, "", "=q4=Nemesis Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.42%"};
+ { 23, 316930, "", "=q4=Nemesis Leggings", "=ds="..BabbleBoss["Ragnaros"], "", "16.87%"};
+ { 24, 316927, "", "=q4=Nemesis Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.32%"};
+ Prev = "T0Warlock25Man";
+ Next = "T3Warlock25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2Warrior25Man"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#t1s9#", "=ec1=#m30#"};
+ { 2, 316866, "", "=q4=Helm of Might", "=ds="..BabbleBoss["Garr"], "", "11.39%"};
+ { 3, 316868, "", "=q4=Pauldrons of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.14%"};
+ { 4, 316865, "", "=q4=Breastplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], "", "15.28%"};
+ { 5, 316861, "", "=q4=Bracers of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"};
+ { 6, 316863, "", "=q4=Gauntlets of Might", "=ds="..BabbleBoss["Lucifron"], "", "16.40%"};
+ { 7, 316864, "", "=q4=Belt of Might", "=ds="..AL["Trash Mobs"], "", "0.16%"};
+ { 8, 316867, "", "=q4=Legplates of Might", "=ds="..BabbleBoss["Magmadar"], "", "13.97%"};
+ { 9, 316862, "", "=q4=Sabatons of Might", "=ds="..BabbleBoss["Gehennas"], "", "14.48%"};
+ { 16, 0, "INV_Shield_05", "=q6=#t2s9#", "=ec1=#m31#"};
+ { 17, 316963, "", "=q4=Helm of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"};
+ { 18, 316961, "", "=q4=Pauldrons of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"};
+ { 19, 316966, "", "=q4=Breastplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"};
+ { 20, 316959, "", "=q4=Bracelets of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"};
+ { 21, 316964, "", "=q4=Gauntlets of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"};
+ { 22, 316960, "", "=q4=Waistband of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
+ { 23, 316962, "", "=q4=Legplates of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
+ { 24, 316965, "", "=q4=Sabatons of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
+ Prev = "T0Warrior25Man";
+ Next = "T3Warrior25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T1T2DPSWarrior25Man"] = {
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t1s9#", "=ec1=#m30#"};
+ { 2, 310480, "", "=q4=Faceguard of Might", "=ds="..BabbleBoss["Garr"], ""};
+ { 3, 310481, "", "=q4=Shoulderpads of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], ""};
+ { 4, 310482, "", "=q4=Chestplate of Might", "=ds="..BabbleBoss["Golemagg the Incinerator"], ""};
+ { 5, 310483, "", "=q4=Wristguards of Might", "=ds="..AL["Trash Mobs"], ""};
+ { 6, 310484, "", "=q4=Handguards of Might", "=ds="..BabbleBoss["Lucifron"], ""};
+ { 7, 310485, "", "=q4=Girdle of Might", "=ds="..AL["Trash Mobs"], ""};
+ { 8, 310486, "", "=q4=Legguards of Might", "=ds="..BabbleBoss["Magmadar"], ""};
+ { 9, 310487, "", "=q4=Stompers of Might", "=ds="..BabbleBoss["Gehennas"], ""};
+ { 16, 0, "Ability_Warrior_BattleShout", "=q6=#t2s10#", "=ec1=#m31#"};
+ { 17, 310904, "", "=q4=Faceguard of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "13.65%"};
+ { 18, 310902, "", "=q4=Shoulderpads of Wrath", "=ds="..BabbleBoss["Chromaggus"], "", "16.83%"};
+ { 19, 310907, "", "=q4=Chestplate of Wrath", "=ds="..BabbleBoss["Nefarian"], "", "15.06%"};
+ { 20, 310900, "", "=q4=Wristguards of Wrath", "=ds="..BabbleBoss["Razorgore the Untamed"], "", "20.29%"};
+ { 21, 310905, "", "=q4=Grippers of Wrath", "=ds="..BabbleBoss["Firemaw"]..", "..BabbleBoss["Ebonroc"]..", "..BabbleBoss["Flamegor"], "", "5.93%"};
+ { 22, 310901, "", "=q4=Belt of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
+ { 23, 310903, "", "=q4=Legguards of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
+ { 24, 310906, "", "=q4=Stompers of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
+ Next = "T3DPSWarrior25Man";
+ Back = "T1T2T3SET";
+ };
+
+ ------------------------------------
+ --- Tier 1/2 Sets (T1/T2) ASCENDED ---
+ ------------------------------------
+
+ AtlasLoot_Data["T1T2Druid25ManHEROIC"] = {
{ 1, 0, "Spell_Nature_Regeneration", "=q6=#t1s1#", "=ec1=#m30#"};
{ 2, 216834, "", "=q4=Cenarion Helm", "=ds="..BabbleBoss["Garr"], "", "11.51%"};
{ 3, 216836, "", "=q4=Cenarion Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "19.52%"};
@@ -7051,12 +8335,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216903, "", "=q4=Stormrage Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "16.90%"};
{ 23, 216901, "", "=q4=Stormrage Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "15.49%"};
{ 24, 216898, "", "=q4=Stormrage Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "13.79%"};
- Prev = "T0DruidHEROIC";
- Next = "T3DruidHEROIC";
+ Prev = "T0Druid25ManHEROIC";
+ Next = "T3Druid25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2HunterHEROIC"] = {
+ AtlasLoot_Data["T1T2Hunter25ManHEROIC"] = {
{ 1, 0, "Ability_Hunter_RunningShot", "=q6=#t1s2#", "=ec1=#m30#"};
{ 2, 216846, "", "=q4=Giantstalker's Helmet", "=ds="..BabbleBoss["Garr"], "", "11.57%"};
{ 3, 216848, "", "=q4=Giantstalker's Epaulets", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "19.64%"};
@@ -7075,12 +8359,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216936, "", "=q4=Dragonstalker's Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.17%"};
{ 23, 216938, "", "=q4=Dragonstalker's Legguards", "=ds="..BabbleBoss["Ragnaros"], "", "16.02%"};
{ 24, 216941, "", "=q4=Dragonstalker's Greaves", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.78%"};
- Prev = "T0HunterHEROIC";
- Next = "T3HunterHEROIC";
+ Prev = "T0Hunter25ManHEROIC";
+ Next = "T3Hunter25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2MageHEROIC"] = {
+ AtlasLoot_Data["T1T2Mage25ManHEROIC"] = {
{ 1, 0, "Spell_Frost_IceStorm", "=q6=#t1s3#", "=ec1=#m30#"};
{ 2, 216795, "", "=q4=Arcanist Crown", "=ds="..BabbleBoss["Garr"], "", "11.31%"};
{ 3, 216797, "", "=q4=Arcanist Mantle", "=ds="..BabbleBoss["Baron Geddon"], "", "19.92%"};
@@ -7099,12 +8383,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216818, "", "=q4=Netherwind Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.94%"};
{ 23, 216915, "", "=q4=Netherwind Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.37%"};
{ 24, 216912, "", "=q4=Netherwind Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "17.17%"};
- Prev = "T0MageHEROIC";
- Next = "T3MageHEROIC";
+ Prev = "T0Mage25ManHEROIC";
+ Next = "T3Mage25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2PaladinHEROIC"] = {
+ AtlasLoot_Data["T1T2Paladin25ManHEROIC"] = {
{ 1, 0, "Spell_Holy_SealOfMight", "=q6=#t1s4#", "=ec1=#m30#"};
{ 2, 216854, "", "=q4=Lawbringer Helm", "=ds="..BabbleBoss["Garr"], "", "7.23%"};
{ 3, 216856, "", "=q4=Lawbringer Spaulders", "=ds="..BabbleBoss["Baron Geddon"], "", "12.62%"};
@@ -7123,12 +8407,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216952, "", "=q4=Judgement Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "12.23%"};
{ 23, 216954, "", "=q4=Judgement Legplates", "=ds="..BabbleBoss["Ragnaros"], "", "10.81%"};
{ 24, 216957, "", "=q4=Judgement Sabatons", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "11.28%"};
- Prev = "T0PaladinHEROIC";
- Next = "T3PaladinHEROIC";
+ Prev = "T0Paladin25ManHEROIC";
+ Next = "T3Paladin25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2PriestHEROIC"] = {
+ AtlasLoot_Data["T1T2Priest25ManHEROIC"] = {
{ 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t1s5#", "=ec1=#m30#"};
{ 2, 216813, "", "=q4=Circlet of Prophecy", "=ds="..BabbleBoss["Garr"], "", "11.36%"};
{ 3, 216816, "", "=q4=Mantle of Prophecy", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.06%"};
@@ -7147,12 +8431,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216925, "", "=q4=Belt of Transcendence", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.76%"};
{ 23, 216922, "", "=q4=Leggings of Transcendence", "=ds="..BabbleBoss["Ragnaros"], "", "17.30%"};
{ 24, 216919, "", "=q4=Boots of Transcendence", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "14.61%"};
- Prev = "T0PriestHEROIC";
- Next = "T3PriestHEROIC";
+ Prev = "T0Priest25ManHEROIC";
+ Next = "T3Priest25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2RogueHEROIC"] = {
+ AtlasLoot_Data["T1T2Rogue25ManHEROIC"] = {
{ 1, 0, "Ability_BackStab", "=q6=#t1s6#", "=ec1=#m30#"};
{ 2, 216821, "", "=q4=Nightslayer Cover", "=ds="..BabbleBoss["Garr"], "", "10.38%"};
{ 3, 216823, "", "=q4=Nightslayer Shoulder Pads", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "20.66%"};
@@ -7171,12 +8455,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216910, "", "=q4=Bloodfang Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "19.69%"};
{ 23, 216909, "", "=q4=Bloodfang Pants", "=ds="..BabbleBoss["Ragnaros"], "", "17.18%"};
{ 24, 216906, "", "=q4=Bloodfang Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.66%"};
- Prev = "T0RogueHEROIC";
- Next = "T3RogueHEROIC";
+ Prev = "T0Rogue25ManHEROIC";
+ Next = "T3Rogue25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2ShamanHEROIC"] = {
+ AtlasLoot_Data["T1T2Shaman25ManHEROIC"] = {
{ 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t1s7#", "=ec1=#m30#"};
{ 2, 216842, "", "=q4=Earthfury Helmet", "=ds="..BabbleBoss["Garr"], "", "3.91%"};
{ 3, 216844, "", "=q4=Earthfury Epaulets", "=ds="..BabbleBoss["Baron Geddon"], "", "7.29%"};
@@ -7195,12 +8479,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216944, "", "=q4=Belt of Ten Storms", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "6.93%"};
{ 23, 216946, "", "=q4=Legplates of Ten Storms", "=ds="..BabbleBoss["Ragnaros"], "", "5.97%"};
{ 24, 216949, "", "=q4=Greaves of Ten Storms", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "5.57%"};
- Prev = "T0ShamanHEROIC";
- Next = "T3ShamanHEROIC";
+ Prev = "T0Shaman25ManHEROIC";
+ Next = "T3Shaman25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2WarlockHEROIC"] = {
+ AtlasLoot_Data["T1T2Warlock25ManHEROIC"] = {
{ 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t1s8#", "=ec1=#m30#"};
{ 2, 216808, "", "=q4=Felheart Horns", "=ds="..BabbleBoss["Garr"], "", "10.62%"};
{ 3, 216807, "", "=q4=Felheart Shoulder Pads", "=ds="..BabbleBoss["Baron Geddon"], "", "19.78%"};
@@ -7219,12 +8503,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216933, "", "=q4=Nemesis Belt", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "18.42%"};
{ 23, 216930, "", "=q4=Nemesis Leggings", "=ds="..BabbleBoss["Ragnaros"], "", "16.87%"};
{ 24, 216927, "", "=q4=Nemesis Boots", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "15.32%"};
- Prev = "T0WarlockHEROIC";
- Next = "T3WarlockHEROIC";
+ Prev = "T0Warlock25ManHEROIC";
+ Next = "T3Warlock25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2WarriorHEROIC"] = {
+ AtlasLoot_Data["T1T2Warrior25ManHEROIC"] = {
{ 1, 0, "INV_Shield_05", "=q6=#t1s9#", "=ec1=#m30#"};
{ 2, 216866, "", "=q4=Helm of Might", "=ds="..BabbleBoss["Garr"], "", "11.39%"};
{ 3, 216868, "", "=q4=Pauldrons of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], "", "21.14%"};
@@ -7243,12 +8527,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 216960, "", "=q4=Waistband of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
{ 23, 216962, "", "=q4=Legplates of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
{ 24, 216965, "", "=q4=Sabatons of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
- Prev = "T0WarriorHEROIC";
- Next = "T3WarriorHEROIC";
+ Prev = "T0Warrior25ManHEROIC";
+ Next = "T3Warrior25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T1T2DPSWarriorHEROIC"] = {
+ AtlasLoot_Data["T1T2DPSWarrior25ManHEROIC"] = {
{ 1, 0, "Ability_Warrior_BattleShout", "=q6=#t1s9#", "=ec1=#m30#"};
{ 2, 210480, "", "=q4=Faceguard of Might", "=ds="..BabbleBoss["Garr"], ""};
{ 3, 210481, "", "=q4=Shoulderpads of Might", "=ds="..BabbleBoss["Sulfuron Harbinger"], ""};
@@ -7267,7 +8551,7 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 22, 210901, "", "=q4=Belt of Wrath", "=ds="..BabbleBoss["Vaelastrasz the Corrupt"], "", "20.03%"};
{ 23, 210903, "", "=q4=Legguards of Wrath", "=ds="..BabbleBoss["Ragnaros"], "", "17.23%"};
{ 24, 210906, "", "=q4=Stompers of Wrath", "=ds="..BabbleBoss["Broodlord Lashlayer"], "", "16.84%"};
- Next = "T3DPSWarriorHEROIC";
+ Next = "T3DPSWarrior25ManHEROIC";
Back = "T1T2T3SET";
};
@@ -7425,11 +8709,165 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
Back = "T1T2T3SET";
};
- -------------------------------
- --- Tier 3 Sets (T3) HEROIC ---
- -------------------------------
+ -------------------------------
+ --- Tier 3 Sets (T3) HEROIC FLEX ---
+ -------------------------------
- AtlasLoot_Data["T3DruidHEROIC"] = {
+ AtlasLoot_Data["T3Druid25Man"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#t3s1#", "=ec1=#m35#"};
+ { 2, 322490, "", "=q4=Dreamwalker Headpiece", "=ds="};
+ { 3, 322491, "", "=q4=Dreamwalker Spaulders", "=ds="};
+ { 4, 322488, "", "=q4=Dreamwalker Tunic", "=ds="};
+ { 5, 322495, "", "=q4=Dreamwalker Wristguards", "=ds="};
+ { 6, 322493, "", "=q4=Dreamwalker Handguards", "=ds="};
+ { 7, 322494, "", "=q4=Dreamwalker Girdle", "=ds="};
+ { 8, 322489, "", "=q4=Dreamwalker Legguards", "=ds="};
+ { 9, 322492, "", "=q4=Dreamwalker Boots", "=ds="};
+ { 10, 323064, "", "=q4=Ring of the Dreamwalker", "=ds="};
+ Prev = "T1T2Druid25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3Hunter25Man"] = {
+ { 1, 0, "Ability_Hunter_RunningShot", "=q6=#t3s2#", "=ec1=#m35#"};
+ { 2, 322438, "", "=q4=Cryptstalker Headpiece", "=ds="};
+ { 3, 322439, "", "=q4=Cryptstalker Spaulders", "=ds="};
+ { 4, 322436, "", "=q4=Cryptstalker Tunic", "=ds="};
+ { 5, 322443, "", "=q4=Cryptstalker Wristguards", "=ds="};
+ { 6, 322441, "", "=q4=Cryptstalker Handguards", "=ds="};
+ { 7, 322442, "", "=q4=Cryptstalker Girdle", "=ds="};
+ { 8, 322437, "", "=q4=Cryptstalker Legguards", "=ds="};
+ { 9, 322440, "", "=q4=Cryptstalker Boots", "=ds="};
+ { 10, 323067, "", "=q4=Ring of the Cryptstalker", "=ds="};
+ Prev = "T1T2Hunter25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3Mage25Man"] = {
+ { 1, 0, "Spell_Frost_IceStorm", "=q6=#t3s3#", "=ec1=#m35#"};
+ { 2, 322498, "", "=q4=Frostfire Circlet", "=ds="};
+ { 3, 322499, "", "=q4=Frostfire Shoulderpads", "=ds="};
+ { 4, 322496, "", "=q4=Frostfire Robe", "=ds="};
+ { 5, 322503, "", "=q4=Frostfire Bindings", "=ds="};
+ { 6, 322501, "", "=q4=Frostfire Gloves", "=ds="};
+ { 7, 322502, "", "=q4=Frostfire Belt", "=ds="};
+ { 8, 322497, "", "=q4=Frostfire Leggings", "=ds="};
+ { 9, 322500, "", "=q4=Frostfire Sandals", "=ds="};
+ { 10, 323062, "", "=q4=Frostfire Ring", "=ds="};
+ Prev = "T1T2Mage25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3Paladin25Man"] = {
+ { 1, 0, "Spell_Holy_SealOfMight", "=q6=#t3s4#", "=ec1=#m35#"};
+ { 2, 322428, "", "=q4=Redemption Headpiece", "=ds="};
+ { 3, 322429, "", "=q4=Redemption Spaulders", "=ds="};
+ { 4, 322425, "", "=q4=Redemption Tunic", "=ds="};
+ { 5, 322424, "", "=q4=Redemption Wristguards", "=ds="};
+ { 6, 322426, "", "=q4=Redemption Handguards", "=ds="};
+ { 7, 322431, "", "=q4=Redemption Girdle", "=ds="};
+ { 8, 322427, "", "=q4=Redemption Legguards", "=ds="};
+ { 9, 322430, "", "=q4=Redemption Boots", "=ds="};
+ { 10, 323066, "", "=q4=Ring of Redemption", "=ds="};
+ Prev = "T1T2Paladin25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3Priest25Man"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t3s5#", "=ec1=#m35#"};
+ { 2, 322514, "", "=q4=Circlet of Faith", "=ds="};
+ { 3, 322515, "", "=q4=Shoulderpads of Faith", "=ds="};
+ { 4, 322512, "", "=q4=Robe of Faith", "=ds="};
+ { 5, 322519, "", "=q4=Bindings of Faith", "=ds="};
+ { 6, 322517, "", "=q4=Gloves of Faith", "=ds="};
+ { 7, 322518, "", "=q4=Belt of Faith", "=ds="};
+ { 8, 322513, "", "=q4=Leggings of Faith", "=ds="};
+ { 9, 322516, "", "=q4=Sandals of Faith", "=ds="};
+ { 10, 323061, "", "=q4=Ring of Faith", "=ds="};
+ Prev = "T1T2Priest25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3Rogue25Man"] = {
+ { 1, 0, "Ability_BackStab", "=q6=#t3s6#", "=ec1=#m35#"};
+ { 2, 322478, "", "=q4=Bonescythe Helmet", "=ds="};
+ { 3, 322479, "", "=q4=Bonescythe Pauldrons", "=ds="};
+ { 4, 322476, "", "=q4=Bonescythe Breastplate", "=ds="};
+ { 5, 322483, "", "=q4=Bonescythe Bracers", "=ds="};
+ { 6, 322481, "", "=q4=Bonescythe Gauntlets", "=ds="};
+ { 7, 322482, "", "=q4=Bonescythe Waistguard", "=ds="};
+ { 8, 322477, "", "=q4=Bonescythe Legplates", "=ds="};
+ { 9, 322480, "", "=q4=Bonescythe Sabatons", "=ds="};
+ { 10, 323060, "", "=q4=Bonescythe Ring", "=ds="};
+ Prev = "T1T2Rogue25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3Shaman25Man"] = {
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t3s7#", "=ec1=#m35#"};
+ { 2, 322466, "", "=q4=Earthshatter Headpiece", "=ds="};
+ { 3, 322467, "", "=q4=Earthshatter Spaulders", "=ds="};
+ { 4, 322464, "", "=q4=Earthshatter Tunic", "=ds="};
+ { 5, 322471, "", "=q4=Earthshatter Wristguards", "=ds="};
+ { 6, 322469, "", "=q4=Earthshatter Handguards", "=ds="};
+ { 7, 322470, "", "=q4=Earthshatter Girdle", "=ds="};
+ { 8, 322465, "", "=q4=Earthshatter Legguards", "=ds="};
+ { 9, 322468, "", "=q4=Earthshatter Boots", "=ds="};
+ { 10, 323065, "", "=q4=Ring of the Earthshatterer", "=ds="};
+ Prev = "T1T2Shaman25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3Warlock25Man"] = {
+ { 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t3s8#", "=ec1=#m35#"};
+ { 2, 322506, "", "=q4=Plagueheart Circlet", "=ds="};
+ { 3, 322507, "", "=q4=Plagueheart Shoulderpads", "=ds="};
+ { 4, 322504, "", "=q4=Plagueheart Robe", "=ds="};
+ { 5, 322511, "", "=q4=Plagueheart Bindings", "=ds="};
+ { 6, 322509, "", "=q4=Plagueheart Gloves", "=ds="};
+ { 7, 322510, "", "=q4=Plagueheart Belt", "=ds="};
+ { 8, 322505, "", "=q4=Plagueheart Leggings", "=ds="};
+ { 9, 322508, "", "=q4=Plagueheart Sandals", "=ds="};
+ { 10, 323063, "", "=q4=Plagueheart Ring", "=ds="};
+ Prev = "T1T2Warlock25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3Warrior25Man"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#t3s9#", "=ec1=#m35#"};
+ { 2, 322418, "", "=q4=Dreadnaught Helmet", "=ds="};
+ { 3, 322419, "", "=q4=Dreadnaught Pauldrons", "=ds="};
+ { 4, 322416, "", "=q4=Dreadnaught Breastplate", "=ds="};
+ { 5, 322423, "", "=q4=Dreadnaught Bracers", "=ds="};
+ { 6, 322421, "", "=q4=Dreadnaught Gauntlets", "=ds="};
+ { 7, 322422, "", "=q4=Dreadnaught Waistguard", "=ds="};
+ { 8, 322417, "", "=q4=Dreadnaught Legplates", "=ds="};
+ { 9, 322420, "", "=q4=Dreadnaught Sabatons", "=ds="};
+ { 10, 323059, "", "=q4=Ring of the Dreadnaught", "=ds="};
+ Prev = "T1T2Warrior25Man";
+ Back = "T1T2T3SET";
+ };
+
+ AtlasLoot_Data["T3DPSWarrior25Man"] = {
+ { 1, 0, "Ability_Warrior_BattleShout", "=q6=#t3s10#", "=ec1=#m35#"};
+ { 2, 310490, "", "=q4=Dreadborne Helmet", "=ds="};
+ { 3, 310491, "", "=q4=Dreadborne Pauldrons", "=ds="};
+ { 4, 310488, "", "=q4=Dreadborne Breastplate", "=ds="};
+ { 5, 310495, "", "=q4=Dreadborne Bracers", "=ds="};
+ { 6, 310493, "", "=q4=Dreadborne Gauntlets", "=ds="};
+ { 7, 310494, "", "=q4=Dreadborne Waistguard", "=ds="};
+ { 8, 310489, "", "=q4=Dreadborne Legplates", "=ds="};
+ { 9, 310492, "", "=q4=Dreadborne Sabatons", "=ds="};
+ { 10, 310496, "", "=q4=Dreadborne Ring", "=ds="};
+ Prev = "T1T2DPSWarrior25Man";
+ Back = "T1T2T3SET";
+ };
+
+ -------------------------------
+ --- Tier 3 Sets (T3) ASCENDED ---
+ -------------------------------
+
+ AtlasLoot_Data["T3Druid25ManHEROIC"] = {
{ 1, 0, "Spell_Nature_Regeneration", "=q6=#t3s1#", "=ec1=#m35#"};
{ 2, 222490, "", "=q4=Dreamwalker Headpiece", "=ds="};
{ 3, 222491, "", "=q4=Dreamwalker Spaulders", "=ds="};
@@ -7440,11 +8878,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222489, "", "=q4=Dreamwalker Legguards", "=ds="};
{ 9, 222492, "", "=q4=Dreamwalker Boots", "=ds="};
{ 10, 223064, "", "=q4=Ring of the Dreamwalker", "=ds="};
- Prev = "T1T2DruidHEROIC";
+ Prev = "T1T2Druid25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3HunterHEROIC"] = {
+ AtlasLoot_Data["T3Hunter25ManHEROIC"] = {
{ 1, 0, "Ability_Hunter_RunningShot", "=q6=#t3s2#", "=ec1=#m35#"};
{ 2, 222438, "", "=q4=Cryptstalker Headpiece", "=ds="};
{ 3, 222439, "", "=q4=Cryptstalker Spaulders", "=ds="};
@@ -7455,11 +8893,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222437, "", "=q4=Cryptstalker Legguards", "=ds="};
{ 9, 222440, "", "=q4=Cryptstalker Boots", "=ds="};
{ 10, 223067, "", "=q4=Ring of the Cryptstalker", "=ds="};
- Prev = "T1T2HunterHEROIC";
+ Prev = "T1T2Hunter25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3MageHEROIC"] = {
+ AtlasLoot_Data["T3Mage25ManHEROIC"] = {
{ 1, 0, "Spell_Frost_IceStorm", "=q6=#t3s3#", "=ec1=#m35#"};
{ 2, 222498, "", "=q4=Frostfire Circlet", "=ds="};
{ 3, 222499, "", "=q4=Frostfire Shoulderpads", "=ds="};
@@ -7470,11 +8908,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222497, "", "=q4=Frostfire Leggings", "=ds="};
{ 9, 222500, "", "=q4=Frostfire Sandals", "=ds="};
{ 10, 223062, "", "=q4=Frostfire Ring", "=ds="};
- Prev = "T1T2MageHEROIC";
+ Prev = "T1T2Mage25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3PaladinHEROIC"] = {
+ AtlasLoot_Data["T3Paladin25ManHEROIC"] = {
{ 1, 0, "Spell_Holy_SealOfMight", "=q6=#t3s4#", "=ec1=#m35#"};
{ 2, 222428, "", "=q4=Redemption Headpiece", "=ds="};
{ 3, 222429, "", "=q4=Redemption Spaulders", "=ds="};
@@ -7485,11 +8923,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222427, "", "=q4=Redemption Legguards", "=ds="};
{ 9, 222430, "", "=q4=Redemption Boots", "=ds="};
{ 10, 223066, "", "=q4=Ring of Redemption", "=ds="};
- Prev = "T1T2PaladinHEROIC";
+ Prev = "T1T2Paladin25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3PriestHEROIC"] = {
+ AtlasLoot_Data["T3Priest25ManHEROIC"] = {
{ 1, 0, "Spell_Holy_PowerWordShield", "=q6=#t3s5#", "=ec1=#m35#"};
{ 2, 222514, "", "=q4=Circlet of Faith", "=ds="};
{ 3, 222515, "", "=q4=Shoulderpads of Faith", "=ds="};
@@ -7500,11 +8938,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222513, "", "=q4=Leggings of Faith", "=ds="};
{ 9, 222516, "", "=q4=Sandals of Faith", "=ds="};
{ 10, 223061, "", "=q4=Ring of Faith", "=ds="};
- Prev = "T1T2PriestHEROIC";
+ Prev = "T1T2Priest25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3RogueHEROIC"] = {
+ AtlasLoot_Data["T3Rogue25ManHEROIC"] = {
{ 1, 0, "Ability_BackStab", "=q6=#t3s6#", "=ec1=#m35#"};
{ 2, 222478, "", "=q4=Bonescythe Helmet", "=ds="};
{ 3, 222479, "", "=q4=Bonescythe Pauldrons", "=ds="};
@@ -7515,11 +8953,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222477, "", "=q4=Bonescythe Legplates", "=ds="};
{ 9, 222480, "", "=q4=Bonescythe Sabatons", "=ds="};
{ 10, 223060, "", "=q4=Bonescythe Ring", "=ds="};
- Prev = "T1T2RogueHEROIC";
+ Prev = "T1T2Rogue25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3ShamanHEROIC"] = {
+ AtlasLoot_Data["T3Shaman25ManHEROIC"] = {
{ 1, 0, "Spell_FireResistanceTotem_01", "=q6=#t3s7#", "=ec1=#m35#"};
{ 2, 222466, "", "=q4=Earthshatter Headpiece", "=ds="};
{ 3, 222467, "", "=q4=Earthshatter Spaulders", "=ds="};
@@ -7530,11 +8968,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222465, "", "=q4=Earthshatter Legguards", "=ds="};
{ 9, 222468, "", "=q4=Earthshatter Boots", "=ds="};
{ 10, 223065, "", "=q4=Ring of the Earthshatterer", "=ds="};
- Prev = "T1T2ShamanHEROIC";
+ Prev = "T1T2Shaman25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3WarlockHEROIC"] = {
+ AtlasLoot_Data["T3Warlock25ManHEROIC"] = {
{ 1, 0, "Spell_Shadow_CurseOfTounges", "=q6=#t3s8#", "=ec1=#m35#"};
{ 2, 222506, "", "=q4=Plagueheart Circlet", "=ds="};
{ 3, 222507, "", "=q4=Plagueheart Shoulderpads", "=ds="};
@@ -7545,11 +8983,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222505, "", "=q4=Plagueheart Leggings", "=ds="};
{ 9, 222508, "", "=q4=Plagueheart Sandals", "=ds="};
{ 10, 223063, "", "=q4=Plagueheart Ring", "=ds="};
- Prev = "T1T2WarlockHEROIC";
+ Prev = "T1T2Warlock25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3WarriorHEROIC"] = {
+ AtlasLoot_Data["T3Warrior25ManHEROIC"] = {
{ 1, 0, "INV_Shield_05", "=q6=#t3s9#", "=ec1=#m35#"};
{ 2, 222418, "", "=q4=Dreadnaught Helmet", "=ds="};
{ 3, 222419, "", "=q4=Dreadnaught Pauldrons", "=ds="};
@@ -7560,11 +8998,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 222417, "", "=q4=Dreadnaught Legplates", "=ds="};
{ 9, 222420, "", "=q4=Dreadnaught Sabatons", "=ds="};
{ 10, 223059, "", "=q4=Ring of the Dreadnaught", "=ds="};
- Prev = "T1T2WarriorHEROIC";
+ Prev = "T1T2Warrior25ManHEROIC";
Back = "T1T2T3SET";
};
- AtlasLoot_Data["T3DPSWarriorHEROIC"] = {
+ AtlasLoot_Data["T3DPSWarrior25ManHEROIC"] = {
{ 1, 0, "Ability_Warrior_BattleShout", "=q6=#t3s10#", "=ec1=#m35#"};
{ 2, 210490, "", "=q4=Dreadborne Helmet", "=ds="};
{ 3, 210491, "", "=q4=Dreadborne Pauldrons", "=ds="};
@@ -7575,9 +9013,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 8, 210489, "", "=q4=Dreadborne Legplates", "=ds="};
{ 9, 210492, "", "=q4=Dreadborne Sabatons", "=ds="};
{ 10, 210496, "", "=q4=Dreadborne Ring", "=ds="};
- Prev = "T1T2DPSWarriorHEROIC";
+ Prev = "T1T2DPSWarrior25ManHEROIC";
Back = "T1T2T3SET";
};
+
------------------------
--- Vanilla WoW Sets ---
------------------------
@@ -7772,10 +9211,85 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
----------------------
- --- ZG HEROIC Sets ---
+ --- ZG HEROIC FLEX Sets ---
----------------------
- AtlasLoot_Data["ZGSets1HEROIC"] = {
+ AtlasLoot_Data["ZGSets125Man"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#zgs1#", "=ec1=#c1#"};
+ { 2, 19955, "", "=q4=Wushoolay's Charm of Nature", ""};
+ { 3, 19613, "", "=q4=Pristine Enchanted South Seas Kelp", "=ds=#r5#"};
+ { 4, 319838, "", "=q4=Zandalar Haruspex's Tunic", "=q4=#zgt9#, =ds=#r4#"};
+ { 5, 319839, "", "=q4=Zandalar Haruspex's Belt", "=q4=#zgt4#, =ds=#r3#"};
+ { 6, 319840, "", "=q4=Zandalar Haruspex's Bracers", "=q4=#zgt5#, =ds=#r2#"};
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#zgs2#", "=ec1=#c2#"};
+ { 9, 19953, "", "=q4=Renataki's Charm of Beasts", ""};
+ { 10, 19621, "", "=q4=Maelstrom's Wrath", "=ds=#r5#"};
+ { 11, 319831, "", "=q4=Zandalar Predator's Mantle", "=q4=#zgt6#, =ds=#r4#"};
+ { 12, 319832, "", "=q4=Zandalar Predator's Belt", "=q4=#zgt2#, =ds=#r3#"};
+ { 13, 319833, "", "=q4=Zandalar Predator's Bracers", "=q4=#zgt3#, =ds=#r2#"};
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#zgs3#", "=ec1=#c3#"};
+ { 17, 19959, "", "=q4=Hazza'rah's Charm of Magic", ""};
+ { 18, 19601, "", "=q4=Jewel of Kajaro", "=ds=#r5#"};
+ { 19, 320034, "", "=q4=Zandalar Illusionist's Robe", "=q4=#zgt1#, =ds=#r4#"};
+ { 20, 319845, "", "=q4=Zandalar Illusionist's Mantle", "=q4=#zgt2#, =ds=#r3#"};
+ { 21, 319846, "", "=q4=Zandalar Illusionist's Wraps", "=q4=#zgt3#, =ds=#r2#"};
+ { 23, 0, "Spell_Holy_SealOfMight", "=q6=#zgs4#", "=ec1=#c4#"};
+ { 24, 19952, "", "=q4=Gri'lek's Charm of Valor", ""};
+ { 25, 19588, "", "=q4=Hero's Brand", "=ds=#r5#"};
+ { 26, 319825, "", "=q4=Zandalar Freethinker's Breastplate", "=q4=#zgt9#, =ds=#r4#"};
+ { 27, 319826, "", "=q4=Zandalar Freethinker's Belt", "=q4=#zgt2#, =ds=#r3#"};
+ { 28, 319827, "", "=q4=Zandalar Freethinker's Armguards", "=q4=#zgt3#, =ds=#r2#"};
+ Next = "ZGSets225Man";
+ Back = "SETMENU";
+ };
+
+ AtlasLoot_Data["ZGSets225Man"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#zgs5#", "=ec1=#c5#"};
+ { 2, 19958, "", "=q4=Hazza'rah's Charm of Healing", ""};
+ { 3, 19594, "", "=q4=The All-Seeing Eye of Zuldazar", "=ds=#r5#"};
+ { 4, 319841, "", "=q4=Zandalar Confessor's Mantle", "=q4=#zgt6#, =ds=#r4#"};
+ { 5, 319842, "", "=q4=Zandalar Confessor's Bindings", "=q4=#zgt4#, =ds=#r3#"};
+ { 6, 319843, "", "=q4=Zandalar Confessor's Wraps", "=q4=#zgt5#, =ds=#r2#"};
+ { 8, 0, "Ability_BackStab", "=q6=#zgs6#", "=ec1=#c6#"};
+ { 9, 19954, "", "=q4=Renataki's Charm of Trickery", ""};
+ { 10, 19617, "", "=q4=Zandalarian Shadow Mastery Talisman", "=ds=#r5#"};
+ { 11, 319834, "", "=q4=Zandalar Madcap's Tunic", "=q4=#zgt6#, =ds=#r4#"};
+ { 12, 319835, "", "=q4=Zandalar Madcap's Mantle", "=q4=#zgt7#, =ds=#r3#"};
+ { 13, 319836, "", "=q4=Zandalar Madcap's Bracers", "=q4=#zgt8#, =ds=#r2#"};
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#zgs7#", "=ec1=#c7#"};
+ { 17, 19956, "", "=q4=Wushoolay's Charm of Spirits", ""};
+ { 18, 19609, "", "=q4=Unmarred Vision of Voodress", "=ds=#r5#"};
+ { 19, 319828, "", "=q4=Zandalar Augur's Hauberk", "=q4=#zgt9#, =ds=#r4#"};
+ { 20, 319829, "", "=q4=Zandalar Augur's Belt", "=q4=#zgt7#, =ds=#r3#"};
+ { 21, 319830, "", "=q4=Zandalar Augur's Bracers", "=q4=#zgt8#, =ds=#r2#"};
+ { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#zgs8#", "=ec1=#c8#"};
+ { 24, 19957, "", "=q4=Hazza'rah's Charm of Destruction", ""};
+ { 25, 19605, "", "=q4=Kezan's Unstoppable Taint", "=ds=#r5#"};
+ { 26, 320033, "", "=q4=Zandalar Demoniac's Robe", "=q4=#zgt1#, =ds=#r4#"};
+ { 27, 319849, "", "=q4=Zandalar Demoniac's Mantle", "=q4=#zgt4#, =ds=#r3#"};
+ { 28, 319848, "", "=q4=Zandalar Demoniac's Wraps", "=q4=#zgt5#, =ds=#r2#"};
+ Next = "ZGSets325Man";
+ Prev = "ZGSets125Man";
+ Back = "SETMENU";
+ };
+
+ AtlasLoot_Data["ZGSets325Man"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#zgs9#", "=ec1=#c9#"};
+ { 2, 19951, "", "=q4=Gri'lek's Charm of Might", ""};
+ { 3, 19577, "", "=q4=Rage of Mugamba", "=ds=#r5#"};
+ { 4, 319822, "", "=q4=Zandalar Vindicator's Breastplate", "=q4=#zgt1#, =ds=#r4#"};
+ { 5, 319823, "", "=q4=Zandalar Vindicator's Belt", "=q4=#zgt7#, =ds=#r3#"};
+ { 6, 319824, "", "=q4=Zandalar Vindicator's Armguards", "=q4=#zgt8#, =ds=#r2#"};
+ Prev = "ZGSets225Man";
+ Back = "SETMENU";
+ };
+
+
+ ----------------------
+ --- ZG ASCENDED Sets ---
+ ----------------------
+
+ AtlasLoot_Data["ZGSets125ManHEROIC"] = {
{ 1, 0, "Spell_Nature_Regeneration", "=q6=#zgs1#", "=ec1=#c1#"};
{ 2, 19955, "", "=q4=Wushoolay's Charm of Nature", ""};
{ 3, 19613, "", "=q4=Pristine Enchanted South Seas Kelp", "=ds=#r5#"};
@@ -7800,11 +9314,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 26, 219825, "", "=q4=Zandalar Freethinker's Breastplate", "=q4=#zgt9#, =ds=#r4#"};
{ 27, 219826, "", "=q4=Zandalar Freethinker's Belt", "=q4=#zgt2#, =ds=#r3#"};
{ 28, 219827, "", "=q4=Zandalar Freethinker's Armguards", "=q4=#zgt3#, =ds=#r2#"};
- Next = "ZGSets2HEROIC";
+ Next = "ZGSets225ManHEROIC";
Back = "SETMENU";
};
- AtlasLoot_Data["ZGSets2HEROIC"] = {
+ AtlasLoot_Data["ZGSets225ManHEROIC"] = {
{ 1, 0, "Spell_Holy_PowerWordShield", "=q6=#zgs5#", "=ec1=#c5#"};
{ 2, 19958, "", "=q4=Hazza'rah's Charm of Healing", ""};
{ 3, 19594, "", "=q4=The All-Seeing Eye of Zuldazar", "=ds=#r5#"};
@@ -7829,19 +9343,19 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 26, 220033, "", "=q4=Zandalar Demoniac's Robe", "=q4=#zgt1#, =ds=#r4#"};
{ 27, 219849, "", "=q4=Zandalar Demoniac's Mantle", "=q4=#zgt4#, =ds=#r3#"};
{ 28, 219848, "", "=q4=Zandalar Demoniac's Wraps", "=q4=#zgt5#, =ds=#r2#"};
- Next = "ZGSets3HEROIC";
- Prev = "ZGSets1HEROIC";
+ Next = "ZGSets325ManHEROIC";
+ Prev = "ZGSets125ManHEROIC";
Back = "SETMENU";
};
- AtlasLoot_Data["ZGSets3HEROIC"] = {
+ AtlasLoot_Data["ZGSets325ManHEROIC"] = {
{ 1, 0, "INV_Shield_05", "=q6=#zgs9#", "=ec1=#c9#"};
{ 2, 19951, "", "=q4=Gri'lek's Charm of Might", ""};
{ 3, 19577, "", "=q4=Rage of Mugamba", "=ds=#r5#"};
{ 4, 219822, "", "=q4=Zandalar Vindicator's Breastplate", "=q4=#zgt1#, =ds=#r4#"};
{ 5, 219823, "", "=q4=Zandalar Vindicator's Belt", "=q4=#zgt7#, =ds=#r3#"};
{ 6, 219824, "", "=q4=Zandalar Vindicator's Armguards", "=q4=#zgt8#, =ds=#r2#"};
- Prev = "ZGSets2HEROIC";
+ Prev = "ZGSets225ManHEROIC";
Back = "SETMENU";
};
@@ -7896,11 +9410,62 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
Back = "SETMENU";
};
- ------------------------
- --- AQ20 Sets HEROIC ---
- ------------------------
+
+ ------------------------
+ --- AQ20 Sets HEROIC FLEX ---
+ ------------------------
- AtlasLoot_Data["AQ20Sets1HEROIC"] = {
+ AtlasLoot_Data["AQ20Sets125Man"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#aq20s1#", "=ec1=#c1#"};
+ { 2, 321407, "", "=q4=Mace of Unending Life", "=q4=#aq20t1#, =ds=#r5#"};
+ { 3, 321409, "", "=q4=Cloak of Unending Life", "=q3=#aq20t5#, =ds=#r4#"};
+ { 4, 321408, "", "=q4=Band of Unending Life", "=q3=#aq20t3#, =ds=#r3#"};
+ { 6, 0, "Ability_Hunter_RunningShot", "=q6=#aq20s2#", "=ec1=#c2#"};
+ { 7, 321401, "", "=q4=Scythe of the Unseen Path", "=q4=#aq20t6#, =ds=#r5#"};
+ { 8, 321403, "", "=q4=Cloak of the Unseen Path", "=q3=#aq20t5#, =ds=#r4#"};
+ { 9, 321402, "", "=q4=Signet of the Unseen Path", "=q3=#aq20t4#, =ds=#r3#"};
+ { 11, 0, "Spell_Frost_IceStorm", "=q6=#aq20s3#", "=ec1=#c3#"};
+ { 12, 321413, "", "=q4=Blade of Vaulted Secrets", "=q4=#aq20t1#, =ds=#r5#"};
+ { 13, 321415, "", "=q4=Drape of Vaulted Secrets", "=q3=#aq20t2#, =ds=#r4#"};
+ { 14, 321414, "", "=q4=Band of Vaulted Secrets", "=q3=#aq20t3#, =ds=#r3#"};
+ { 16, 0, "Spell_Holy_SealOfMight", "=q6=#aq20s4#", "=ec1=#c4#"};
+ { 17, 321395, "", "=q4=Blade of Eternal Justice", "=q4=#aq20t6#, =ds=#r5#"};
+ { 18, 321397, "", "=q4=Cape of Eternal Justice", "=q3=#aq20t5#, =ds=#r4#"};
+ { 19, 321396, "", "=q4=Ring of Eternal Justice", "=q3=#aq20t3#, =ds=#r3#"};
+ { 21, 0, "Spell_Holy_PowerWordShield", "=q6=#aq20s5#", "=ec1=#c5#"};
+ { 22, 321410, "", "=q4=Gavel of Infinite Wisdom", "=q4=#aq20t1#, =ds=#r5#"};
+ { 23, 321412, "", "=q4=Shroud of Infinite Wisdom", "=q3=#aq20t2#, =ds=#r4#"};
+ { 24, 321411, "", "=q4=Ring of Infinite Wisdom", "=q3=#aq20t4#, =ds=#r3#"};
+ { 26, 0, "Ability_BackStab", "=q6=#aq20s6#", "=ec1=#c6#"};
+ { 27, 321404, "", "=q4=Dagger of Veiled Shadows", "=q4=#aq20t6#, =ds=#r5#"};
+ { 28, 321406, "", "=q4=Cloak of Veiled Shadows", "=q3=#aq20t2#, =ds=#r4#"};
+ { 29, 321405, "", "=q4=Band of Veiled Shadows", "=q3=#aq20t4#, =ds=#r3#"};
+ Next = "AQ20Sets225Man";
+ Back = "SETMENU";
+ };
+
+ AtlasLoot_Data["AQ20Sets225Man"] = {
+ { 1, 0, "Spell_FireResistanceTotem_01", "=q6=#aq20s7#", "=ec1=#c7#"};
+ { 2, 321398, "", "=q4=Hammer of the Gathering Storm", "=q4=#aq20t6#, =ds=#r5#"};
+ { 3, 321400, "", "=q4=Cloak of the Gathering Storm", "=q3=#aq20t5#, =ds=#r4#"};
+ { 4, 321399, "", "=q4=Ring of the Gathering Storm", "=q3=#aq20t3#, =ds=#r3#"};
+ { 6, 0, "Spell_Shadow_CurseOfTounges", "=q6=#aq20s8#", "=ec1=#c8#"};
+ { 7, 321416, "", "=q4=Kris of Unspoken Names", "=q4=#aq20t1#, =ds=#r5#"};
+ { 8, 321418, "", "=q4=Shroud of Unspoken Names", "=q3=#aq20t5#, =ds=#r4#"};
+ { 9, 321417, "", "=q4=Ring of Unspoken Names", "=q3=#aq20t4#, =ds=#r3#"};
+ { 11, 0, "INV_Shield_05", "=q6=#aq20s9#", "=ec1=#c9#"};
+ { 12, 321392, "", "=q4=Sickle of Unyielding Strength", "=q4=#aq20t6#, =ds=#r5#"};
+ { 13, 321394, "", "=q4=Drape of Unyielding Strength", "=q3=#aq20t2#, =ds=#r4#"};
+ { 14, 321393, "", "=q4=Signet of Unyielding Strength", "=q3=#aq20t3#=ds=, #r3#"};
+ Prev = "AQ20Sets125Man";
+ Back = "SETMENU";
+ };
+
+ ------------------------
+ --- AQ20 Sets ASCENDED ---
+ ------------------------
+
+ AtlasLoot_Data["AQ20Sets125ManHEROIC"] = {
{ 1, 0, "Spell_Nature_Regeneration", "=q6=#aq20s1#", "=ec1=#c1#"};
{ 2, 221407, "", "=q4=Mace of Unending Life", "=q4=#aq20t1#, =ds=#r5#"};
{ 3, 221409, "", "=q4=Cloak of Unending Life", "=q3=#aq20t5#, =ds=#r4#"};
@@ -7925,11 +9490,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 27, 221404, "", "=q4=Dagger of Veiled Shadows", "=q4=#aq20t6#, =ds=#r5#"};
{ 28, 221406, "", "=q4=Cloak of Veiled Shadows", "=q3=#aq20t2#, =ds=#r4#"};
{ 29, 221405, "", "=q4=Band of Veiled Shadows", "=q3=#aq20t4#, =ds=#r3#"};
- Next = "AQ20Sets2HEROIC";
+ Next = "AQ20Sets225ManHEROIC";
Back = "SETMENU";
};
- AtlasLoot_Data["AQ20Sets2HEROIC"] = {
+ AtlasLoot_Data["AQ20Sets225ManHEROIC"] = {
{ 1, 0, "Spell_FireResistanceTotem_01", "=q6=#aq20s7#", "=ec1=#c7#"};
{ 2, 221398, "", "=q4=Hammer of the Gathering Storm", "=q4=#aq20t6#, =ds=#r5#"};
{ 3, 221400, "", "=q4=Cloak of the Gathering Storm", "=q3=#aq20t5#, =ds=#r4#"};
@@ -7942,9 +9507,10 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 12, 221392, "", "=q4=Sickle of Unyielding Strength", "=q4=#aq20t6#, =ds=#r5#"};
{ 13, 221394, "", "=q4=Drape of Unyielding Strength", "=q3=#aq20t2#, =ds=#r4#"};
{ 14, 221393, "", "=q4=Signet of Unyielding Strength", "=q3=#aq20t3#=ds=, #r3#"};
- Prev = "AQ20Sets1HEROIC";
+ Prev = "AQ20Sets125ManHEROIC";
Back = "SETMENU";
};
+
-----------------
--- AQ40 Sets ---
-----------------
@@ -8026,10 +9592,91 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
};
-----------------------
- --- AQ40 Sets HEROIC---
+ --- AQ40 Sets HEROIC FLEX ---
-----------------------
- AtlasLoot_Data["AQ40Sets1HEROIC"] = {
+ AtlasLoot_Data["AQ40Sets125Man"] = {
+ { 1, 0, "Spell_Nature_Regeneration", "=q6=#aq40s1#", "=ec1=#c1#"};
+ { 2, 321357, "", "=q4=Genesis Vest", "=q4=#aq40t4#, =ds=#r3#"};
+ { 3, 321353, "", "=q4=Genesis Helm", "=q4=#aq40t6#, =ds=#r2#"};
+ { 4, 321356, "", "=q4=Genesis Trousers", "=q4=#aq40t7#, =ds=#r2#"};
+ { 5, 321354, "", "=q4=Genesis Shoulderpads", "=q4=#aq40t1#, =ds=#r1#"};
+ { 6, 321355, "", "=q4=Genesis Boots", "=q4=#aq40t1#, =ds=#r1#"};
+ { 8, 0, "Ability_Hunter_RunningShot", "=q6=#aq40s2#", "=ec1=#c2#"};
+ { 9, 321370, "", "=q4=Striker's Hauberk", "=q4=#aq40t8#, =ds=#r3#"};
+ { 10, 321366, "", "=q4=Striker's Diadem", "=q4=#aq40t6#, =ds=#r2#"};
+ { 11, 321368, "", "=q4=Striker's Leggings", "=q4=#aq40t7#, =ds=#r2#"};
+ { 12, 321367, "", "=q4=Striker's Pauldrons", "=q4=#aq40t5#, =ds=#r1#"};
+ { 13, 321365, "", "=q4=Striker's Footguards", "=q4=#aq40t5#, =ds=#r1#"};
+ { 16, 0, "Spell_Frost_IceStorm", "=q6=#aq40s3#", "=ec1=#c3#"};
+ { 17, 321343, "", "=q4=Enigma Robes", "=q4=#aq40t4#, =ds=#r3#"};
+ { 18, 321347, "", "=q4=Enigma Circlet", "=q4=#aq40t2#, =ds=#r2#"};
+ { 19, 321346, "", "=q4=Enigma Leggings", "=q4=#aq40t3#, =ds=#r2#"};
+ { 20, 321345, "", "=q4=Enigma Shoulderpads", "=q4=#aq40t1#, =ds=#r1#"};
+ { 21, 321344, "", "=q4=Enigma Boots", "=q4=#aq40t1#, =ds=#r1#"};
+ { 23, 0, "Spell_Holy_SealOfMight", "=q6=#aq40s4#", "=ec1=#c4#"};
+ { 24, 321389, "", "=q4=Avenger's Breastplate", "=q4=#aq40t8#, =ds=#r3#"};
+ { 25, 321387, "", "=q4=Avenger's Crown", "=q4=#aq40t6#, =ds=#r2#"};
+ { 26, 321390, "", "=q4=Avenger's Legguards", "=q4=#aq40t7#, =ds=#r2#"};
+ { 27, 321391, "", "=q4=Avenger's Pauldrons", "=q4=#aq40t1#, =ds=#r1#"};
+ { 28, 321388, "", "=q4=Avenger's Greaves", "=q4=#aq40t1#, =ds=#r1#"};
+ Next = "AQ40Sets225Man";
+ Back = "SETMENU";
+ };
+
+ AtlasLoot_Data["AQ40Sets225Man"] = {
+ { 1, 0, "Spell_Holy_PowerWordShield", "=q6=#aq40s5#", "=ec1=#c5#"};
+ { 2, 321351, "", "=q4=Vestments of the Oracle", "=q4=#aq40t4#, =ds=#r3#"};
+ { 3, 321348, "", "=q4=Tiara of the Oracle", "=q4=#aq40t2#, =ds=#r2#"};
+ { 4, 321352, "", "=q4=Trousers of the Oracle", "=q4=#aq40t3#, =ds=#r2#"};
+ { 5, 321350, "", "=q4=Mantle of the Oracle", "=q4=#aq40t5#, =ds=#r1#"};
+ { 6, 321349, "", "=q4=Footwraps of the Oracle", "=q4=#aq40t5#, =ds=#r1#"};
+ { 8, 0, "Ability_BackStab", "=q6=#aq40s6#", "=ec1=#c6#"};
+ { 9, 321364, "", "=q4=Deathdealer's Vest", "=q4=#aq40t8#, =ds=#r3#"};
+ { 10, 321360, "", "=q4=Deathdealer's Helm", "=q4=#aq40t6#, =ds=#r2#"};
+ { 11, 321362, "", "=q4=Deathdealer's Leggings", "=q4=#aq40t3#, =ds=#r2#"};
+ { 12, 321361, "", "=q4=Deathdealer's Spaulders", "=q4=#aq40t5#, =ds=#r1#"};
+ { 13, 321359, "", "=q4=Deathdealer's Boots", "=q4=#aq40t5#, =ds=#r1#"};
+ { 16, 0, "Spell_FireResistanceTotem_01", "=q6=#aq40s7#", "=ec1=#c7#"};
+ { 17, 321374, "", "=q4=Stormcaller's Hauberk", "=q4=#aq40t8#, =ds=#r3#"};
+ { 18, 321372, "", "=q4=Stormcaller's Diadem", "=q4=#aq40t6#, =ds=#r2#"};
+ { 19, 321375, "", "=q4=Stormcaller's Leggings", "=q4=#aq40t7#, =ds=#r2#"};
+ { 20, 321376, "", "=q4=Stormcaller's Pauldrons", "=q4=#aq40t1#, =ds=#r1#"};
+ { 21, 321373, "", "=q4=Stormcaller's Footguards", "=q4=#aq40t1#, =ds=#r1#"};
+ { 23, 0, "Spell_Shadow_CurseOfTounges", "=q6=#aq40s8#", "=ec1=#c8#"};
+ { 24, 321334, "", "=q4=Doomcaller's Robes", "=q4=#aq40t4#, =ds=#r3#"};
+ { 25, 321337, "", "=q4=Doomcaller's Circlet", "=q4=#aq40t2#, =ds=#r2#"};
+ { 26, 321336, "", "=q4=Doomcaller's Trousers", "=q4=#aq40t7#, =ds=#r2#"};
+ { 27, 321335, "", "=q4=Doomcaller's Mantle", "=q4=#aq40t1#, =ds=#r1#"};
+ { 28, 321338, "", "=q4=Doomcaller's Footwraps", "=q4=#aq40t1#, =ds=#r1#"};
+ Next = "AQ40Sets325Man";
+ Prev = "AQ40Sets125Man";
+ Back = "SETMENU";
+ };
+
+ AtlasLoot_Data["AQ40Sets325Man"] = {
+ { 1, 0, "INV_Shield_05", "=q6=#aq40s9#", "=ec1=#c9#"};
+ { 2, 321331, "", "=q4=Conqueror's Breastplate", "=q4=#aq40t8#, =ds=#r3#"};
+ { 3, 321329, "", "=q4=Conqueror's Crown", "=q4=#aq40t2#, =ds=#r2#"};
+ { 4, 321332, "", "=q4=Conqueror's Legguards", "=q4=#aq40t3#, =ds=#r2#"};
+ { 5, 321330, "", "=q4=Conqueror's Spaulders", "=q4=#aq40t5#, =ds=#r1#"};
+ { 6, 321333, "", "=q4=Conqueror's Greaves", "=q4=#aq40t5#, =ds=#r1#"};
+ { 16, 0, "Ability_Warrior_BattleShout", "=q6=#aq40s9#", "=ec1=#c9#"};
+ { 17, 310912, "", "=q4=Conqueror's Chestplate", "=q4=#aq40t8#, =ds=#r3#"};
+ { 18, 310910, "", "=q4=Conqueror's Headguard", "=q4=#aq40t2#, =ds=#r2#"};
+ { 19, 310913, "", "=q4=Conqueror's Platelegs", "=q4=#aq40t3#, =ds=#r2#"};
+ { 20, 310911, "", "=q4=Conqueror's Shoulderpads", "=q4=#aq40t5#, =ds=#r1#"};
+ { 21, 310914, "", "=q4=Conqueror's War Stompers", "=q4=#aq40t5#, =ds=#r1#"};
+ Prev = "AQ40Sets225Man";
+ Back = "SETMENU";
+ };
+
+
+ -----------------------
+ --- AQ40 Sets ASCENDED ---
+ -----------------------
+
+ AtlasLoot_Data["AQ40Sets125ManHEROIC"] = {
{ 1, 0, "Spell_Nature_Regeneration", "=q6=#aq40s1#", "=ec1=#c1#"};
{ 2, 221357, "", "=q4=Genesis Vest", "=q4=#aq40t4#, =ds=#r3#"};
{ 3, 221353, "", "=q4=Genesis Helm", "=q4=#aq40t6#, =ds=#r2#"};
@@ -8054,11 +9701,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 26, 221390, "", "=q4=Avenger's Legguards", "=q4=#aq40t7#, =ds=#r2#"};
{ 27, 221391, "", "=q4=Avenger's Pauldrons", "=q4=#aq40t1#, =ds=#r1#"};
{ 28, 221388, "", "=q4=Avenger's Greaves", "=q4=#aq40t1#, =ds=#r1#"};
- Next = "AQ40Sets2HEROIC";
+ Next = "AQ40Sets225ManHEROIC";
Back = "SETMENU";
};
- AtlasLoot_Data["AQ40Sets2HEROIC"] = {
+ AtlasLoot_Data["AQ40Sets225ManHEROIC"] = {
{ 1, 0, "Spell_Holy_PowerWordShield", "=q6=#aq40s5#", "=ec1=#c5#"};
{ 2, 221351, "", "=q4=Vestments of the Oracle", "=q4=#aq40t4#, =ds=#r3#"};
{ 3, 221348, "", "=q4=Tiara of the Oracle", "=q4=#aq40t2#, =ds=#r2#"};
@@ -8083,12 +9730,12 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 26, 221336, "", "=q4=Doomcaller's Trousers", "=q4=#aq40t7#, =ds=#r2#"};
{ 27, 221335, "", "=q4=Doomcaller's Mantle", "=q4=#aq40t1#, =ds=#r1#"};
{ 28, 221338, "", "=q4=Doomcaller's Footwraps", "=q4=#aq40t1#, =ds=#r1#"};
- Next = "AQ40Sets3HEROIC";
- Prev = "AQ40Sets1HEROIC";
+ Next = "AQ40Sets325ManHEROIC";
+ Prev = "AQ40Sets125ManHEROIC";
Back = "SETMENU";
};
- AtlasLoot_Data["AQ40Sets3HEROIC"] = {
+ AtlasLoot_Data["AQ40Sets325ManHEROIC"] = {
{ 1, 0, "INV_Shield_05", "=q6=#aq40s9#", "=ec1=#c9#"};
{ 2, 221331, "", "=q4=Conqueror's Breastplate", "=q4=#aq40t8#, =ds=#r3#"};
{ 3, 221329, "", "=q4=Conqueror's Crown", "=q4=#aq40t2#, =ds=#r2#"};
@@ -8101,9 +9748,11 @@ AtlasLoot_Data["AQ20ClassBooksHEROIC"] = {
{ 19, 210913, "", "=q4=Conqueror's Platelegs", "=q4=#aq40t3#, =ds=#r2#"};
{ 20, 210911, "", "=q4=Conqueror's Shoulderpads", "=q4=#aq40t5#, =ds=#r1#"};
{ 21, 210914, "", "=q4=Conqueror's War Stompers", "=q4=#aq40t5#, =ds=#r1#"};
- Prev = "AQ40Sets2HEROIC";
+ Prev = "AQ40Sets225ManHEROIC";
Back = "SETMENU";
};
+
+
-----------------------
--- BoE World Epics ---
-----------------------
diff --git a/AtlasLoot_OriginalWoW/originalwow.lua.txt b/AtlasLoot_OriginalWoW/originalwow.lua.txt
index 7cf720f..4fa228f 100644
--- a/AtlasLoot_OriginalWoW/originalwow.lua.txt
+++ b/AtlasLoot_OriginalWoW/originalwow.lua.txt
@@ -4114,10 +4114,10 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 18, 23549, "", "=q4=Fortitude of the Scourge", "=ds=#s3# #e17#" },
{ 19, 23548, "", "=q4=Might of the Scourge", "=ds=#s3# #e17#" },
Prev = "NAXLoatheb";
- Next = "NAXKelThuzard";
+ Next = "NAXKelThuzad";
};
- AtlasLoot_Data["NAXKelThuzard"] = {
+ AtlasLoot_Data["NAXKelThuzad"] = {
{ 1, 22802, "", "=q4=Kingsfall", "=ds=#h1#, #w4#" },
{ 2, 23054, "", "=q4=Gressil, Dawn of Ruin", "=ds=#h1#, #w10#" },
{ 3, 23577, "", "=q4=The Hungering Cold", "=ds=#h1#, #w10#" },