Bug Fixes and Updates

This commit is contained in:
merstrax
2021-11-24 17:53:45 -05:00
parent 1ce3457db5
commit 6b1e10181e
7 changed files with 321 additions and 303 deletions
+2 -1
View File
@@ -521,8 +521,9 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
HideUIPanel(AtlasQuestInsideFrame);
end
--Hide Advanced search if it is up
--Hide Advanced search if it is up and reshow Querybutton
AtlasLootAdvancedSearch:Hide();
AtlasLootServerQueryButton:Show();
--Ditch the Quicklook selector
AtlasLoot_QuickLooks:Hide();
@@ -670,9 +670,10 @@ function AtlasLoot_SetNewStyle(style)
"AtlasLootDefaultFrame_Preset3",
"AtlasLootDefaultFrame_Preset4",
"AtlasLootDefaultFrameSearchButton",
--"AtlasLootDefaultFrameSearchClearButton",
--"AtlasLootDefaultFrameLastResultButton",
"AtlasLootDefaultFrameSearchClearButton",
"AtlasLootDefaultFrameLastResultButton",
"AtlasLootDefaultFrameWishListButton",
"AtlasLootDefaultFrameAdvancedSearchButton",
"AtlasLootAdvancedSearch_SearchButton",
"AtlasLootAdvancedSearch_SearchClearButton",
"AtlasLootAdvancedSearch_LastResultButton"
@@ -183,49 +183,12 @@
</Layer>
</Layers>
</Frame>
<Button name="$parent_Preset1" inherits="AtlasLootDefaultFrameButtonTemplate">
<Anchors>
<Anchor point="BOTTOMLEFT" relativeTo="$parent" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="75" y="63"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnEnter>
if this:IsEnabled() then
GameTooltip:ClearLines();
GameTooltip:SetOwner(this, "ANCHOR_RIGHT", -(this:GetWidth() / 2), 5);
GameTooltip:AddLine(AtlasLootCharDB["QuickLooks"][1][3]);
GameTooltip:Show();
end
</OnEnter>
<OnLeave>
if(GameTooltip:IsVisible()) then
GameTooltip:Hide();
end
</OnLeave>
<OnClick>
if AtlasLoot_IsLootTableAvailable(AtlasLootCharDB["QuickLooks"][1][1]) then
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][1][1], AtlasLootCharDB["QuickLooks"][1][2], AtlasLootCharDB["QuickLooks"][1][3], pFrame);
end
</OnClick>
<OnShow>
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
this:SetText(AL["QuickLook"].." 1");
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
if ((not AtlasLootCharDB["QuickLooks"][1]) or (not AtlasLootCharDB["QuickLooks"][1][1])) or (AtlasLootCharDB["QuickLooks"][1][1]==nil) then
this:Disable();
end
</OnShow>
</Scripts>
</Button>
<Button name="$parent_Preset2" inherits="AtlasLootDefaultFrameButtonTemplate">
<Anchors>
<Anchor point="LEFT" relativeTo="$parent_Preset1" relativePoint="RIGHT">
<Anchor point="BOTTOM" relativeTo="$parent" relativePoint="BOTTOM">
<Offset>
<AbsDimension x="5" y="0"/>
<AbsDimension x="0" y="63"/>
</Offset>
</Anchor>
</Anchors>
@@ -258,6 +221,44 @@
end
</OnShow>
</Scripts>
</Button>
<Button name="$parent_Preset1" inherits="AtlasLootDefaultFrameButtonTemplate">
<Anchors>
<Anchor point="RIGHT" relativeTo="$parent_Preset2" relativePoint="LEFT">
<Offset>
<AbsDimension x="-5" y="0"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnEnter>
if this:IsEnabled() then
GameTooltip:ClearLines();
GameTooltip:SetOwner(this, "ANCHOR_RIGHT", -(this:GetWidth() / 2), 5);
GameTooltip:AddLine(AtlasLootCharDB["QuickLooks"][1][3]);
GameTooltip:Show();
end
</OnEnter>
<OnLeave>
if(GameTooltip:IsVisible()) then
GameTooltip:Hide();
end
</OnLeave>
<OnClick>
if AtlasLoot_IsLootTableAvailable(AtlasLootCharDB["QuickLooks"][1][1]) then
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][1][1], AtlasLootCharDB["QuickLooks"][1][2], AtlasLootCharDB["QuickLooks"][1][3], pFrame);
end
</OnClick>
<OnShow>
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
this:SetText(AL["QuickLook"].." 1");
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
if ((not AtlasLootCharDB["QuickLooks"][1]) or (not AtlasLootCharDB["QuickLooks"][1][1])) or (AtlasLootCharDB["QuickLooks"][1][1]==nil) then
this:Disable();
end
</OnShow>
</Scripts>
</Button>
<Button name="$parent_Preset3" inherits="AtlasLootDefaultFrameButtonTemplate">
<Anchors>
@@ -335,16 +336,33 @@
</OnShow>
</Scripts>
</Button>
<!--
<EditBox name="AtlasLootDefaultFrameSearchBox" inherits="InputBoxTemplate" letters="100" hidden="true">
<Button name="AtlasLootDefaultFrameWishListButton" inherits="AtlasLootDefaultFrameButtonTemplate">
<Anchors>
<Anchor point="RIGHT" relativeTo="$parent_Preset1" relativePoint="LEFT">
<Offset>
<AbsDimension x="-5" y="0"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
AtlasLoot_ShowWishListDropDown("","","","","",this,true)
</OnClick>
<OnShow>
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
this:SetText(AL["Wishlist"]);
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
</OnShow>
</Scripts>
</Button>
<EditBox name="AtlasLootDefaultFrameSearchBox" inherits="InputBoxTemplate" letters="100">
<Size>
<AbsDimension x="180" y="32" />
<AbsDimension x="190" y="32" />
</Size>
<Anchors>
<Anchor point="BOTTOM" relativeTo="$parent" relativePoint="BOTTOM">
<Anchor point="TOPLEFT" relativeTo="AtlasLootDefaultFrameWishListButton" relativePoint="BOTTOMLEFT">
<Offset>
<AbsDimension x="-70" y="30"/>
<AbsDimension x="7" y="-3"/>
</Offset>
</Anchor>
</Anchors>
@@ -360,31 +378,29 @@
</Scripts>
<FontString name="AtlasLootDefaultFrameSearchString" inherits="GameFontNormal"></FontString>
</EditBox>
-->
<Button name="AtlasLootDefaultFrameSearchButton" inherits="UIPanelButtonTemplate2">
<Size>
<AbsDimension x="105" y="20"/>
<AbsDimension x="69" y="32"/>
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="$parent_Preset4" relativePoint="BOTTOM">
<Anchor point="LEFT" relativeTo="AtlasLootDefaultFrameSearchBox" relativePoint="RIGHT">
<Offset>
<AbsDimension y="-5"/>
<AbsDimension x="2"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnShow>
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
this:SetText(AL["Search"].." Panel");
this:SetText(AL["Search"]);
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
</OnShow>
<OnClick>
AtlasLoot_AdvancedSearchShow();
--AtlasLootSearchBox:ClearFocus();
AtlasLoot:Search(AtlasLootDefaultFrameSearchBox:GetText());
AtlasLootDefaultFrameSearchBox:ClearFocus();
</OnClick>
</Scripts>
</Button>
<!--
<Button name="AtlasLootDefaultFrameSearchOptionsButton" parent="AtlasLootDefaultFrameSearchButton">
<Size>
<AbsDimension x="28" y="28" />
@@ -392,7 +408,7 @@
<Anchors>
<Anchor point="LEFT" relativeTo="AtlasLootDefaultFrameSearchButton" relativePoint="RIGHT">
<Offset>
<AbsDimension x="-6" y="0"/>
<AbsDimension x="-5" y="0"/>
</Offset>
</Anchor>
</Anchors>
@@ -439,7 +455,7 @@
<Anchors>
<Anchor point="LEFT" relativeTo="AtlasLootDefaultFrameSearchClearButton" relativePoint="RIGHT">
<Offset>
<AbsDimension x="0" y="0"/>
<AbsDimension x="1" y="0"/>
</Offset>
</Anchor>
</Anchors>
@@ -454,27 +470,27 @@
</OnClick>
</Scripts>
</Button>
-->
<Button name="AtlasLootDefaultFrameWishListButton" inherits="UIPanelButtonTemplate2" parent="AtlasLootDefaultFrame">
<Button name="AtlasLootDefaultFrameAdvancedSearchButton" inherits="UIPanelButtonTemplate2">
<Size>
<AbsDimension x="105" y="20"/>
<AbsDimension x="95" y="32"/>
</Size>
<Anchors>
<Anchor point="TOP" relativeTo="$parent_Preset1" relativePoint="BOTTOM">
<Anchor point="LEFT" relativeTo="AtlasLootDefaultFrameLastResultButton" relativePoint="RIGHT">
<Offset>
<AbsDimension x="0" y="-5"/>
<AbsDimension x="2"/>
</Offset>
</Anchor>
</Anchors>
<Scripts>
<OnClick>
AtlasLoot_ShowWishListDropDown("","","","","",this,true)
</OnClick>
<OnShow>
local AL = LibStub("AceLocale-3.0"):GetLocale("AtlasLoot");
this:SetText(AL["Wishlist"]);
this:SetText("Advanced");
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
</OnShow>
<OnClick>
AtlasLoot_AdvancedSearchShow();
AtlasLootDefaultFrameSearchBox:ClearFocus();
</OnClick>
</Scripts>
</Button>
</Frames>
+44 -44
View File
@@ -148,7 +148,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 25, 27414, "", "=q3=Mok'Nathal Beast-Mask", "=ds=#s1#, #a3#", "", "11.27%"};
{ 26, 27413, "", "=q3=Ring of the Exarchs", "=ds=#s13#", "", "10.42%"};
{ 27, 27416, "", "=q3=Fetish of the Fallen", "=ds=#s14#", "", "12.81%"};
{ 28, 27412, "", "=q3=Ironstaff of Regeneration", "=ds=#w9#", "", "11.95%"};
{ 28, 27412, "", "=q3=Ironstaff of Regeneration", "=ds=#h2#, #w9#", "", "11.95%"};
Prev = "AuchCryptsShirrak";
Next = "AuchCryptsAvatar";
Type = "BCDungeon";
@@ -161,7 +161,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 28268, "", "=q3=Natural Mender's Wraps", "=ds=#s9#, #a2#", "", "3.94%"};
{ 3, 27876, "", "=q3=Will of the Fallen Exarch", "=ds=#h3#, #w6#", "", "5.10%"};
{ 4, 27937, "", "=q3=Sky Breaker", "=ds=#h3#, #w6#", "", "3.48%"};
{ 5, 27877, "", "=q3=Draenic Wildstaff", "=ds=#w9#", "", "4.87%"};
{ 5, 27877, "", "=q3=Draenic Wildstaff", "=ds=#h2#, #w9#", "", "4.87%"};
{ 7, 27797, "", "=q3=Wastewalker Shoulderpads", "=ds=#s3#, #a2# (D3)", "", "3.94%"};
Prev = "AuchCryptsExarch";
Type = "BCDungeon";
@@ -205,7 +205,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 25947, "", "=q3=Lightning-Rod Pauldrons", "=ds=#s3#, #a3#", "", "11.25%"};
{ 5, 25952, "", "=q3=Scimitar of the Nexus-Stalkers", "=ds=#h1#, #w10#", "", "12.12%"};
{ 6, 25944, "", "=q3=Shaarde the Greater", "=ds=#h2#, #w10#", "", "9.35%"};
{ 7, 25950, "", "=q3=Staff of Polarities", "=ds=#w9#", "", "9.91%"};
{ 7, 25950, "", "=q3=Staff of Polarities", "=ds=#h2#, #w9#", "", "9.91%"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 18, 30584, "", "=q4=Enscribed Fire Opal", "=ds=#e7#", "", "0.08%"};
@@ -262,7 +262,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 23, 28400, "", "=q3=Warp-Storm Warblade", "=ds=#h1#, #w10#"};
{ 24, 27829, "", "=q3=Axe of the Nexus-Kings", "=ds=#h2#, #w1#", "", "9.09%"};
{ 25, 27840, "", "=q3=Scepter of Sha'tar", "=ds=#h2#, #w6#"};
{ 26, 27842, "", "=q3=Grand Scepter of the Nexus-Kings", "=ds=#w9#", "", "9.09%"};
{ 26, 27842, "", "=q3=Grand Scepter of the Nexus-Kings", "=ds=#h2#, #w9#", "", "9.09%"};
{ 28, 22921, "", "=q2=Recipe: Major Frost Protection Potion", "=ds=#p1# (360)", "", "2.85%"};
Prev = "AuchManaNexusPrince";
Next = "AuchManaYor";
@@ -358,7 +358,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 22, 29249, "", "=q4=Bands of the Benevolent", "=ds=#s8#, #a1#", "", "4.49%"};
{ 23, 29259, "", "=q4=Bracers of the Hunt", "=ds=#s8#, #a3#", "", "7.87%"};
{ 24, 32073, "", "=q4=Spaulders of Dementia", "=ds=#s3#, #a4#"};
{ 25, 29355, "", "=q4=Terokk's Shadowstaff", "=ds=#w9#", "", "0.16%"};
{ 25, 29355, "", "=q4=Terokk's Shadowstaff", "=ds=#h2#, #w9#", "", "0.16%"};
{ 27, 33834, "", "=q1=The Headfeathers of Ikiss", "=ds=#m3#", "", "100%"};
Prev = "AuchSethekkDarkweaver";
Next = "AuchSethekkRavenGod";
@@ -588,7 +588,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 32335, "", "=q4=Unstoppable Aggressor's Ring", "=ds=#s13#", "", "16%"};
{ 17, 32501, "", "=q4=Shadowmoon Insignia", "=ds=#s14#", "", "15%"};
{ 18, 32269, "", "=q4=Messenger of Fate", "=ds=#h1#, #w4#", "", "16%"};
{ 19, 32344, "", "=q4=Staff of Immaculate Recovery", "=ds=#w9#", "", "15%"};
{ 19, 32344, "", "=q4=Staff of Immaculate Recovery", "=ds=#h2#, #w9#", "", "15%"};
{ 20, 32343, "", "=q4=Wand of Prismatic Focus", "=ds=#w12#", "", "14%"};
{ 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
Prev = "BTGorefiend";
@@ -672,7 +672,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 31090, "", "=q4=Chestguard of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "78%"};
{ 20, 32471, "", "=q4=Shard of Azzinoth", "=ds=#h1#, #w4#", "", "16%"};
{ 21, 32500, "", "=q4=Crystal Spire of Karabor", "=ds=#h3#, #w6#", "", "15%"};
{ 22, 32374, "", "=q4=Zhar'doom, Greatstaff of the Devourer", "=ds=#w9#", "", "14%"};
{ 22, 32374, "", "=q4=Zhar'doom, Greatstaff of the Devourer", "=ds=#h2#, #w9#", "", "14%"};
{ 23, 32375, "", "=q4=Bulwark of Azzinoth", "=ds=#w8#", "", "14%"};
{ 24, 32336, "", "=q4=Black Bow of the Betrayer", "=ds=#w2#", "", "16%"};
Prev = "BTCouncil";
@@ -879,7 +879,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 3, 28034, "", "=q3=Hourglass of the Unraveller", "=ds=#s14#", "", "13.69%"};
{ 4, 28187, "", "=q3=Star-Heart Lamp", "=ds=#s15#", "", "11.83%"};
{ 5, 28184, "", "=q3=Millennium Blade", "=ds=#h1#, #w10#", "", "11.74%"};
{ 6, 28033, "", "=q3=Epoch-Mender", "=ds=#w9#", "", "13.80%"};
{ 6, 28033, "", "=q3=Epoch-Mender", "=ds=#h2#, #w9#", "", "13.80%"};
{ 16, 0, "INV_Box_01", "=q6=#j27#", ""};
{ 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 18, 30558, "", "=q4=Glimmering Fire Opal", "=ds=#e7#"};
@@ -904,7 +904,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 10, 28207, "", "=q3=Pauldrons of the Crimson Flight", "=ds=#s3#, #a4#", "", "11.11%"};
{ 11, 28190, "", "=q3=Scarab of the Infinite Cycle", "=ds=#s14#", "", "11.32%"};
{ 12, 28189, "", "=q3=Latro's Shifting Sword", "=ds=#h1#, #w10#", "", "9.70%"};
{ 13, 28188, "", "=q3=Bloodfire Greatstaff", "=ds=#w9#", "", "10.48%"};
{ 13, 28188, "", "=q3=Bloodfire Greatstaff", "=ds=#h2#, #w9#", "", "10.48%"};
{ 16, 0, "INV_Box_01", "=q6=#j27#", ""};
{ 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 18, 30558, "", "=q4=Glimmering Fire Opal", "=ds=#e7#"};
@@ -959,7 +959,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 8, 30878, "", "=q4=Glimmering Steel Mantle", "=ds=#s3#, #a4#", "", "16%"};
{ 16, 30874, "", "=q4=The Unbreakable Will", "=ds=#h1#, #w10#", "", "16%"};
{ 17, 30881, "", "=q4=Blade of Infamy", "=ds=#h1#, #w10#", "", "15%"};
{ 18, 30883, "", "=q4=Pillar of Ferocity", "=ds=#w9#", "", "16%"};
{ 18, 30883, "", "=q4=Pillar of Ferocity", "=ds=#h2#, #w9#", "", "16%"};
{ 19, 30882, "", "=q4=Bastion of Light", "=ds=#w8#", "", "15%"};
{ 21, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
Prev = "MountHyjalWinterchill";
@@ -1018,7 +1018,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 30911, "", "=q4=Scepter of Purification", "=ds=#s15#", "", "15%"};
{ 9, 30910, "", "=q4=Tempest of Chaos", "=ds=#h3#, #w10#", "", "14%"};
{ 10, 30902, "", "=q4=Cataclysm's Edge", "=ds=#h2#, #w10#", "", "15%"};
{ 11, 30908, "", "=q4=Apostle of Argus", "=ds=#w9#", "", "15%"};
{ 11, 30908, "", "=q4=Apostle of Argus", "=ds=#h2#, #w9#", "", "15%"};
{ 12, 30909, "", "=q4=Antonidas's Aegis of Rapt Concentration", "=ds=#w8#", "", "15%"};
{ 13, 30906, "", "=q4=Bristleblitz Striker", "=ds=#w2#", "", "16%"};
{ 16, 31097, "", "=q4=Helm of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "70%"};
@@ -1175,7 +1175,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 1, 27793, "", "=q3=Earth Mantle Handwraps", "=ds=#s9#, #a3#", "", "16.92%"};
{ 2, 27790, "", "=q3=Mask of Pennance", "=ds=#s1#, #a4#", "", "16.65%"};
{ 3, 27792, "", "=q3=Steam-Hinge Chain of Valor", "=ds=#s2#", "", "14.49%"};
{ 4, 27791, "", "=q3=Serpentcrest Life-Staff", "=ds=#w9#", "", "17.09%"};
{ 4, 27791, "", "=q3=Serpentcrest Life-Staff", "=ds=#h2#, #w9#", "", "17.09%"};
{ 5, 27794, "", "=q3=Recoilless Rocket Ripper X-54", "=ds=#w5#", "", "15.88%"};
{ 7, 23887, "", "=q3=Schematic: Rocket Boots Xtreme", "=ds=#p5# (355)", "", "0.52%"};
{ 16, 0, "INV_Box_01", "=q6=#j27#", ""};
@@ -1279,7 +1279,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 24, 27755, "", "=q3=Girdle of Gallantry", "=ds=#s10#, #a4#", "", "7.33%"};
{ 25, 27758, "", "=q3=Hydra-fang Necklace", "=ds=#s2#", "", "12.00%"};
{ 26, 27761, "", "=q3=Ring of the Shadow Deeps", "=ds=#s13#", "", "18.67%"};
{ 27, 27757, "", "=q3=Greatstaff of the Leviathan", "=ds=#w9#", "", "16.00%"};
{ 27, 27757, "", "=q3=Greatstaff of the Leviathan", "=ds=#h2#, #w9#", "", "16.00%"};
Prev = "CFRUnderHungarfen";
Next = "CFRUnderSwamplord";
Type = "BCDungeon";
@@ -1492,7 +1492,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 30022, "", "=q4=Pendant of the Perilous", "=ds=#s2#", "", "3%"};
{ 3, 30620, "", "=q4=Spyglass of the Hidden Fleet", "=ds=#s14#", "", "4%"};
{ 4, 30023, "", "=q4=Totem of the Maelstrom", "=ds=#s16#, #w15#", "", "3%"};
{ 5, 30021, "", "=q4=Wildfury Greatstaff", "=ds=#w9#", "", "3%"};
{ 5, 30021, "", "=q4=Wildfury Greatstaff", "=ds=#h2#, #w9#", "", "3%"};
{ 6, 30025, "", "=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%"};
@@ -1621,7 +1621,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 24, 24073, "", "=q3=Garotte-String Necklace", "=ds=#s2#", "", "11.60%"};
{ 25, 24096, "", "=q3=Heartblood Prayer Beads", "=ds=#s2#", "", "11.15%"};
{ 26, 24094, "", "=q3=Heart Fire Warhammer", "=ds=#h2#, #w6#", "", "14.76%"};
{ 27, 24069, "", "=q3=Crystalfire Staff", "=ds=#w9#", "", "12.43%"};
{ 27, 24069, "", "=q3=Crystalfire Staff", "=ds=#h2#, #w9#", "", "12.43%"};
{ 29, 23886, "", "=q1=Omor's Hoof", "=ds=#m3#", "", "100%"};
Prev = "HCRampWatchkeeper";
Next = "HCRampVazruden";
@@ -1641,7 +1641,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 8, 24154, "", "=q3=Witching Band", "=ds=#s13#", "", "13.23%"};
{ 9, 24151, "", "=q3=Mok'Nathal Clan Ring", "=ds=#s13#", "", "15.45%"};
{ 10, 24044, "", "=q3=Hellreaver", "=ds=#w7#", "", "13.91%"};
{ 11, 24155, "", "=q3=Ursol's Claw", "=ds=#w9#", "", "16.21%"};
{ 11, 24155, "", "=q3=Ursol's Claw", "=ds=#h2#, #w9#", "", "16.21%"};
{ 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Vazruden"], ""};
{ 17, 23892, "", "=q1=Ominous Letter", "=ds=#m2#", "", "100%"};
{ 19, 0, "INV_Box_01", "=q6="..BabbleBoss["Nazan"], ""};
@@ -1884,7 +1884,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 28789, "", "=q4=Eye of Magtheridon", "=ds=#s14#"};
{ 8, 28781, "", "=q4=Karaborian Talisman", "=ds=#s15#"};
{ 9, 28774, "", "=q4=Glaive of the Pit", "=ds=#w7#"};
{ 10, 28782, "", "=q4=Crystalheart Pulse-Staff", "=ds=#w9#"};
{ 10, 28782, "", "=q4=Crystalheart Pulse-Staff", "=ds=#h2#, #w9#"};
{ 11, 29458, "", "=q4=Aegis of the Vindicator", "=ds=#w8#"};
{ 12, 28783, "", "=q4=Eredar Wand of Obliteration", "=ds=#w12#"};
{ 14, 34845, "", "=q4=Pit Lord's Satchel", "=ds=#e1# #m15#"};
@@ -2050,7 +2050,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 10, 24139, "", "=q1=Faint Arcane Essence", "=ds=#m3#", "", "100%"};
{ 16, 28609, "", "=q4=Emberspur Talisman", "=ds=#s2#", "", "13.33%"};
{ 17, 28603, "", "=q4=Talisman of Nightbane", "=ds=#s15#", "", "12.62%"};
{ 18, 28604, "", "=q4=Nightstaff of the Everliving", "=ds=#w9#", "", "16.67%"};
{ 18, 28604, "", "=q4=Nightstaff of the Everliving", "=ds=#h2#, #w9#", "", "16.67%"};
{ 19, 28611, "", "=q4=Dragonheart Flameshield", "=ds=#w8#", "", "13.57%"};
{ 20, 28606, "", "=q4=Shield of Impenetrable Darkness", "=ds=#w8#", "", "12.14%"};
{ 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
@@ -2067,7 +2067,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 3, 28631, "", "=q4=Dragon-Quake Shoulderguards", "=ds=#s3#, #a3#", "", "13.47%"};
{ 4, 28621, "", "=q4=Wrynn Dynasty Greaves", "=ds=#s11#, #a4#", "", "11.85%"};
{ 5, 28649, "", "=q4=Garona's Signet Ring", "=ds=#s13#", "", "12.07%"};
{ 6, 28633, "", "=q4=Staff of Infinite Mysteries", "=ds=#w9#", "", "12.28%"};
{ 6, 28633, "", "=q4=Staff of Infinite Mysteries", "=ds=#h2#, #w9#", "", "12.28%"};
{ 8, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 16, 29757, "", "=q4=Gloves of the Fallen Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "29.42%"};
{ 17, 29758, "", "=q4=Gloves of the Fallen Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "23.60%"};
@@ -2091,7 +2091,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 28661, "", "=q4=Mender's Heart-Ring", "=ds=#s13#", "", "11.64%"};
{ 17, 28785, "", "=q4=The Lightning Capacitor", "=ds=#s14#", "", "10.75%"};
{ 18, 28657, "", "=q4=Fool's Bane", "=ds=#h1#, #w6#", "", "14.63%"};
{ 19, 28658, "", "=q4=Terestian's Stranglestaff", "=ds=#w9#", "", "7.46%"};
{ 19, 28658, "", "=q4=Terestian's Stranglestaff", "=ds=#h2#, #w9#", "", "7.46%"};
{ 20, 28659, "", "=q4=Xavian Stiletto", "=ds=#w11#", "", "13.43%"};
{ 22, 22561, "", "=q3=Formula: Enchant Weapon - Soulfrost", "=ds=#p4# (375)", "", "0.30%"};
Prev = "KaraCurator";
@@ -2252,7 +2252,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 434607, "", "=q4=Fel-tinged Mantle", "=ds=#s3#, #a1#", "", "20%"};
{ 19, 434605, "", "=q4=Breastplate of Fierce Survival", "=ds=#s5#, #a4#", "", "19%"};
{ 20, 434606, "", "=q4=Edge of Oppression", "=ds=#h1#, #w4#", "", "20%"};
{ 21, 434608, "", "=q4=Rod of the Blazing Light", "=ds=#w9#", "", "19%"};
{ 21, 434608, "", "=q4=Rod of the Blazing Light", "=ds=#h2#, #w9#", "", "19%"};
{ 23, 435275, "", "=q3=Orb of the Sin'dorei", "=ds=#m20#", "", "2%"};
Prev = "SMTFireheart";
Next = "SMTDelrissa";
@@ -2297,7 +2297,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 434795, "", "=q3=Helm of Sanctification", "=ds=#s1#, #a4#", "", "5%"};
{ 19, 434798, "", "=q3=Band of Celerity", "=ds=#s13#", "", "5%"};
{ 20, 434794, "", "=q3=Axe of Shattered Dreams", "=ds=#h2#, #w1#", "", "5%"};
{ 21, 434797, "", "=q3=Sun-infused Focus Staff", "=ds=#w9#", "", "14%"};
{ 21, 434797, "", "=q3=Sun-infused Focus Staff", "=ds=#h2#, #w9#", "", "14%"};
{ 22, 35504, "", "=q3=Phoenix Hatchling", "=ds=#e13#", "", "7%"};
Prev = "SMTDelrissa";
Next = "SMTKaelthasHeroic";
@@ -2381,7 +2381,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 34383, "", "=q4=Kilt of Spiritual Reconstruction", "=ds=#m29#"};
{ 6, 34184, "", "=q4=Brooch of the Highborne", "=ds=#s2#", "", "16%"};
{ 7, 34185, "", "=q4=Sword Breaker's Bulwark", "=ds=#w8#", "", "16%"};
{ 8, 34182, "", "=q4=Grand Magister's Staff of Torrents", "=ds=#w9#", "", "17%"};
{ 8, 34182, "", "=q4=Grand Magister's Staff of Torrents", "=ds=#h2#, #w9#", "", "17%"};
{ 16, 34856, "", "=q4=Boots of the Forgotten Conqueror", "=q1=#m1# =ds=#c4#, #c5#, #c8#", "", "79%"};
{ 17, 34857, "", "=q4=Boots of the Forgotten Protector", "=q1=#m1# =ds=#c9#, #c2#, #c7#", "", "86%"};
{ 18, 34858, "", "=q4=Boots of the Forgotten Vanquisher", "=q1=#m1# =ds=#c6#, #c3#, #c1#", "", "77%"};
@@ -2419,7 +2419,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 24, 34197, "", "=q4=Shiv of Exsanguination", "=ds=#h1#, #w4#", "", "23%"};
{ 25, 34199, "", "=q4=Archon's Gavel", "=ds=#h3#, #w6#", "", "17%"};
{ 26, 34203, "", "=q4=Grip of Mannoroth", "=ds=#h4#, #w13#", "", "20%"};
{ 27, 34198, "", "=q4=Stanchion of Primal Instinct", "=ds=#w9#", "", "19%"};
{ 27, 34198, "", "=q4=Stanchion of Primal Instinct", "=ds=#h2#, #w9#", "", "19%"};
{ 28, 34196, "", "=q4=Golden Bow of Quel'Thalas", "=ds=#w2#", "", "18%"};
{ 30, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
Prev = "SPFelmyst";
@@ -2494,7 +2494,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 27, 34335, "", "=q4=Hammer of Sanctification", "=ds=#h3#, #w6#", "", "20%"};
{ 28, 34331, "", "=q4=Hand of the Deceiver", "=ds=#h3#, #w13#", "", "17%"};
{ 29, 34336, "", "=q4=Sunflare", "=ds=#h3#, #w4#", "", "18%"};
{ 30, 34337, "", "=q4=Golden Staff of the Sin'dorei", "=ds=#w9#", "", "14%"};
{ 30, 34337, "", "=q4=Golden Staff of the Sin'dorei", "=ds=#h2#, #w9#", "", "14%"};
Prev = "SPMuru";
Type = "BCRaid";
};
@@ -2719,7 +2719,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 28327, "", "=q3=Arcane Netherband", "=ds=#s13#", "", "17.77%"};
{ 5, 28323, "", "=q3=Ring of Umbral Doom", "=ds=#s13#", "", "16.25%"};
{ 6, 28322, "", "=q3=Runed Dagger of Solace", "=ds=#h3#, #w4#", "", "18.16%"};
{ 7, 28325, "", "=q3=Dreamer's Dragonstaff", "=ds=#w9#", "", "15.46%"};
{ 7, 28325, "", "=q3=Dreamer's Dragonstaff", "=ds=#h2#, #w9#", "", "15.46%"};
{ 16, 0, "INV_Box_01", "=q6=#j27#", ""};
{ 17, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 18, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%"};
@@ -2759,7 +2759,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 28370, "", "=q3=Bangle of Endless Blessings", "=ds=#s14#", "", "12.38%"};
{ 8, 28345, "", "=q3=Warp Splinter's Thorn", "=ds=#h1#, #w4#", "", "10.37%"};
{ 9, 28367, "", "=q3=Greatsword of Forlorn Visions", "=ds=#h2#, #w10#", "", "11.64%"};
{ 10, 28341, "", "=q3=Warpstaff of Arcanum", "=ds=#w9#", "", "10.47%"};
{ 10, 28341, "", "=q3=Warpstaff of Arcanum", "=ds=#h2#, #w9#", "", "10.47%"};
{ 12, 31085, "", "=q1=Top Shard of the Arcatraz Key", "=ds=#m3#", "", "100%"};
{ 16, 28229, "", "=q3=Incanter's Robe", "=ds=#s5#, #a1# (D3)", "", "8.42%"};
{ 17, 28348, "", "=q3=Moonglade Cowl", "=ds=#s1#, #a2# (D3)", "", "11.17%"};
@@ -2778,7 +2778,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 29258, "", "=q4=Boots of Ethereal Manipulation", "=ds=#s11#, #a1#"};
{ 3, 29262, "", "=q4=Boots of the Endless Hunt", "=ds=#s12#, #a3#", "", "4.00%"};
{ 4, 32072, "", "=q4=Gauntlets of Dissension", "=ds=#s9#, #a4#"};
{ 5, 29359, "", "=q4=Feral Staff of Lashing", "=ds=#w9#"};
{ 5, 29359, "", "=q4=Feral Staff of Lashing", "=ds=#h2#, #w9#"};
{ 6, 24311, "", "=q4=Pattern: Whitemend Hood", "=ds=#p8# (375)", "", "0.30%"};
{ 8, 28371, "", "=q3=Netherfury Cape", "=ds=#s4#", "", "4.00%"};
{ 9, 28342, "", "=q3=Warp Infused Drape", "=ds=#s5#, #a1#", "", "8.00%"};
@@ -2787,7 +2787,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 12, 28370, "", "=q3=Bangle of Endless Blessings", "=ds=#s14#", "", "28.00%"};
{ 13, 28345, "", "=q3=Warp Splinter's Thorn", "=ds=#h1#, #w4#", "", "28.00%"};
{ 14, 28367, "", "=q3=Greatsword of Forlorn Visions", "=ds=#h2#, #w10#", "", "8.00%"};
{ 15, 28341, "", "=q3=Warpstaff of Arcanum", "=ds=#w9#", "", "4.00%"};
{ 15, 28341, "", "=q3=Warpstaff of Arcanum", "=ds=#h2#, #w9#", "", "4.00%"};
{ 16, 30574, "", "=q4=Brutal Tanzanite", "=ds=#e7#", "", "8.00%"};
{ 17, 30572, "", "=q4=Imperial Tanzanite", "=ds=#e7#", "", "8.00%"};
{ 18, 30573, "", "=q4=Mysterious Fire Opal", "=ds=#e7#", "", "8.00%"};
@@ -2974,7 +2974,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 30446, "", "=q4=Solarian's Sapphire", "=ds=#s14#, =q1=#m1# =ds=#c9#", "", "21%"};
{ 17, 30449, "", "=q4=Void Star Talisman", "=ds=#s14#, =q1=#m1# =ds=#c8#", "", "22%"};
{ 18, 29962, "", "=q4=Heartrazor", "=ds=#h1#, #w4#", "", "23%"};
{ 19, 29981, "", "=q4=Etherium Life-Staff", "=ds=#w9#", "", "21%"};
{ 19, 29981, "", "=q4=Etherium Life-Staff", "=ds=#h2#, #w9#", "", "21%"};
{ 20, 29982, "", "=q4=Wand of the Forgotten Star", "=ds=#w12#", "", "18%"};
{ 22, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
Prev = "TKEyeVoidReaver";
@@ -2996,7 +2996,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 9, 29997, "", "=q4=Band of the Ranger-General", "=ds=#s13#", "", "14%"};
{ 10, 29993, "", "=q4=Twinblade of the Phoenix", "=ds=#h2#, #w10#", "", "12%"};
{ 11, 29996, "", "=q4=Rod of the Sun King", "=ds=#h1#, #w6#", "", "15%"};
{ 12, 29988, "", "=q4=The Nexus Key", "=ds=#w9#", "", "14%"};
{ 12, 29988, "", "=q4=The Nexus Key", "=ds=#h2#, #w9#", "", "14%"};
{ 14, 29434, "", "=q4=Badge of Justice", "=ds=#e15#", "", "100%"};
{ 16, 30236, "", "=q4=Chestguard of the Vanquished Champion", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "69%"};
{ 17, 30237, "", "=q4=Chestguard of the Vanquished Defender", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "68%"};
@@ -3050,7 +3050,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 30311, "", "=q5=Warp Slicer", "=ds=#h1#, #w10#"};
{ 3, 30317, "", "=q5=Cosmic Infuser", "=ds=#h3#, #w6#"};
{ 4, 30316, "", "=q5=Devastation", "=ds=#h2#, #w1#"};
{ 5, 30313, "", "=q5=Staff of Disintegration", "=ds=#w9#"};
{ 5, 30313, "", "=q5=Staff of Disintegration", "=ds=#h2#, #w9#"};
{ 6, 30314, "", "=q5=Phaseshift Bulwark", "=ds=#w8#"};
{ 7, 30318, "", "=q5=Netherstrand Longbow", "=ds=#w2#, =q1=#m1# =ds=#c2#"};
{ 8, 30319, "", "=q5=Nether Spike", "=ds=#w17#"};
@@ -3145,7 +3145,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 33389, "", "=q4=Dagger of Bad Mojo", "=ds=#h1#, #w4#", "", "15%"};
{ 20, 33298, "", "=q4=Prowler's Strikeblade", "=ds=#h1#, #w4#", "", "14%"};
{ 21, 33388, "", "=q4=Heartless", "=ds=#h1#, #w10#", "", "15%"};
{ 22, 33465, "", "=q4=Staff of Primal Fury", "=ds=#w9#", "", "13%"};
{ 22, 33465, "", "=q4=Staff of Primal Fury", "=ds=#h2#, #w9#", "", "13%"};
Prev = "ZAHalazzi";
Next = "ZAZuljin";
Type = "BCRaid";
@@ -3189,8 +3189,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 33495, "", "=q4=Rage", "=ds=#h3#, #w13#", "", "12%"};
{ 18, 33493, "", "=q4=Umbral Shiv", "=ds=#h1#, #w4#", "", "12%"};
{ 19, 33492, "", "=q4=Trollbane", "=ds=#h2#, #w1#", "", "11%"};
{ 20, 33490, "", "=q4=Staff of Dark Mending", "=ds=#w9#", "", "13%"};
{ 21, 33494, "", "=q4=Amani Divining Staff", "=ds=#w9#", "", "11%"};
{ 20, 33490, "", "=q4=Staff of Dark Mending", "=ds=#h2#, #w9#", "", "13%"};
{ 21, 33494, "", "=q4=Amani Divining Staff", "=ds=#h2#, #w9#", "", "11%"};
{ 22, 33491, "", "=q4=Tuskbreaker", "=ds=#w5#", "", "12%"};
{ 24, 0, "INV_Box_01", "=q6=#x32#", ""};
{ 25, 33497, "", "=q4=Mana Attuned Band", "=ds=#s13#", "", "18%"};
@@ -3277,7 +3277,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 0, "INV_Misc_Ammo_Arrow_02", "=q6=#r3#", ""};
{ 17, 25838, "", "=q3=Warden's Hauberk", "=ds=#s5#, #a2#"};
{ 18, 25836, "", "=q3=Preserver's Cudgel", "=ds=#h3#, #w6#"};
{ 19, 25835, "", "=q3=Explorer's Walking Stick", "=ds=#w9#"};
{ 19, 25835, "", "=q3=Explorer's Walking Stick", "=ds=#h2#, #w9#"};
{ 20, 25735, "", "=q3=Pattern: Heavy Clefthoof Vest", "=ds=#p7# (360)"};
{ 21, 25736, "", "=q3=Pattern: Heavy Clefthoof Leggings", "=ds=#p7# (355)"};
{ 22, 29194, "", "=q2=Arcanum of Nature Warding", "#s1# #e17#"};
@@ -3689,7 +3689,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 1, 0, "Spell_Holy_SealOfSalvation", "=q6=#r4#", ""};
{ 2, 29127, "", "=q3=Vindicator's Hauberk", "=ds=#s5#, #a4#"};
{ 3, 29128, "", "=q3=Lightwarden's Band", "=ds=#s13#"};
{ 4, 29130, "", "=q3=Auchenai Staff", "=ds=#w9#"};
{ 4, 29130, "", "=q3=Auchenai Staff", "=ds=#h2#, #w9#"};
{ 5, 24177, "", "=q3=Design: Pendant of Shadow's End", "=ds=#p12# (360)"};
{ 6, 23604, "", "=q1=Plans: Flamebane Breastplate", "=ds=#p2# (365)"};
{ 7, 29703, "", "=q1=Pattern: Blastguard Boots", "=ds=#p7# (350)"};
@@ -3894,7 +3894,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 29131, "", "=q3=Retainer's Leggings", "=ds=#s11#, #a2# "};
{ 3, 29134, "", "=q3=Gauntlets of the Chosen", "=ds=#s9#, #a4# "};
{ 4, 29132, "", "=q3=Scryer's Bloodgem", "=ds=#s14#"};
{ 5, 29133, "", "=q3=Seer's Cane", "=ds=#w9#"};
{ 5, 29133, "", "=q3=Seer's Cane", "=ds=#h2#, #w9#"};
{ 6, 24176, "", "=q3=Design: Pendant of Withering", "=ds=#p12# (360)"};
{ 7, 22908, "", "=q2=Recipe: Elixir of Major Firepower", "=ds=#p1# (345)"};
{ 8, 23599, "", "=q1=Plans: Enchanted Adamantite Breastplate", "=ds=#p2# (360)"};
@@ -5407,9 +5407,9 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 22, 34988, "", "=q4=Brutal Gladiator's Bonecracker", "=ds=#h4#, #w6#", "3150 #arena#", ""};
{ 23, 34989, "", "=q4=Brutal Gladiator's Bonegrinder", "=ds=#h2#, #w6#", "3750 #arena#", ""};
{ 24, 35064, "", "=q4=Brutal Gladiator's Painsaw", "=ds=#w7#", "3750 #arena#", ""};
{ 25, 34987, "", "=q4=Brutal Gladiator's Battle Staff", "=ds=#w9#", "3750 #arena#", ""};
{ 26, 35103, "", "=q4=Brutal Gladiator's Staff", "=ds=#w9#", "3750 #arena#", ""};
{ 27, 35109, "", "=q4=Brutal Gladiator's War Staff", "=ds=#w9#", "3750 #arena#", ""};
{ 25, 34987, "", "=q4=Brutal Gladiator's Battle Staff", "=ds=#h2#, #w9#", "3750 #arena#", ""};
{ 26, 35103, "", "=q4=Brutal Gladiator's Staff", "=ds=#h2#, #w9#", "3750 #arena#", ""};
{ 27, 35109, "", "=q4=Brutal Gladiator's War Staff", "=ds=#h2#, #w9#", "3750 #arena#", ""};
Next = "Arena4Weapons2";
Back = "PVPMENU";
};
@@ -6643,7 +6643,7 @@ AtlasLoot_Data["T6WarriorFury"] = {
{ 23, 34952, "", "=q4=The Mutilator", "=ds=#h4#, #w4#", "45 #heroic#", ""};
{ 24, 34891, "", "=q4=The Blade of Harbingers", "=ds=#h2#, #w1#", "150 #heroic#", ""};
{ 25, 34896, "", "=q4=Gavel of Naaru Blessings", "=ds=#h3#, #w6#", "150 #heroic#", ""};
{ 26, 34898, "", "=q4=Staff of the Forest Lord", "=ds=#w9#", "150 #heroic#", ""};
{ 26, 34898, "", "=q4=Staff of the Forest Lord", "=ds=#h2#, #w9#", "150 #heroic#", ""};
{ 27, 34892, "", "=q4=Crossbow of Relentless Strikes", "=ds=#w3#", "150 #heroic#", ""};
Back = "70TOKENMENU";
};
@@ -6715,7 +6715,7 @@ AtlasLoot_Data["T6WarriorFury"] = {
{ 19, 31318, "", "=q4=Singing Crystal Axe", "=ds=#h2#, #w1#", "", ""};
{ 20, 31342, "", "=q4=The Ancient Scepter of Sue-Min", "=ds=#h3#, #w6#", "", ""};
{ 21, 31322, "", "=q4=The Hammer of Destiny", "=ds=#h2#, #w6#", "", ""};
{ 22, 31334, "", "=q4=Staff of Natural Fury", "=ds=#w9#", "", ""};
{ 22, 31334, "", "=q4=Staff of Natural Fury", "=ds=#h2#, #w9#", "", ""};
{ 23, 34622, "", "=q4=Spinesever", "=ds=#w11#", "", ""};
{ 24, 31323, "", "=q4=Don Santos' Famous Hunting Rifle", "=ds=#w5#", "", ""};
Next = "WorldEpicsWrath1";
@@ -6738,7 +6738,7 @@ AtlasLoot_Data["T6WarriorFury"] = {
{ 8, 30736, "", "=q4=Ring of Flowing Light", "=ds=#s13#", "", "15.8%"};
{ 9, 30738, "", "=q4=Ring of Reciprocity", "=ds=#s13#", "", "23.4%"};
{ 10, 30733, "", "=q4=Hope Ender", "=ds=#h1#, #w10#", "", "16.7%"};
{ 11, 30732, "", "=q4=Exodar Life-Staff", "=ds=#w9#", "", "17.1%"};
{ 11, 30732, "", "=q4=Exodar Life-Staff", "=ds=#h2#, #w9#", "", "17.1%"};
{ 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Doomwalker"], ""};
{ 17, 30729, "", "=q4=Black-Iron Battlecloak", "=ds=#s4#", "", "19.6%"};
{ 18, 30725, "", "=q4=Anger-Spark Gloves", "=ds=#s9#, #a1#", "", "17.9%"};
+81 -81
View File
@@ -219,7 +219,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 10, 21457, "", "=q4=Bracers of Brutality", "=ds=#s8#, #a4#", "", "10.74%"};
{ 11, 21715, "", "=q4=Sand Polished Hammer", "=ds=#h1#, #w6#", "", "5.95%"};
{ 12, 21459, "", "=q4=Crossbow of Imminent Doom", "=ds=#w3#", "", "6.12%"};
{ 13, 21452, "", "=q4=Staff of the Ruins", "=ds=#w9#", "", "10.32%"};
{ 13, 21452, "", "=q4=Staff of the Ruins", "=ds=#h2#, #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#"};
@@ -303,10 +303,10 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 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%"};
{ 14, 21128, "", "=q4=Staff of the Qiraji Prophets", "=ds=#h2#, #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#"};
{ 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#h2#, #w9#"};
{ 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#h2#, #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#"};
@@ -361,8 +361,8 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 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#"};
{ 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#h2#, #w9#"};
{ 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#h2#, #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#"};
@@ -389,8 +389,8 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 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#"};
{ 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#h2#, #w9#"};
{ 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#h2#, #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#"};
@@ -413,8 +413,8 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 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#"};
{ 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#h2#, #w9#"};
{ 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#h2#, #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#"};
@@ -436,8 +436,8 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 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#"};
{ 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#h2#, #w9#"};
{ 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#h2#, #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#"};
@@ -473,8 +473,8 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 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#"};
{ 27, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4#, =ds=#h2#, #w9#"};
{ 28, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4#, =ds=#h2#, #w9#"};
{ 29, 21268, "", "=q4=Blessed Qiraji War Hammer", "=q1=#m4#, =ds=#h1#, #w6#"};
Prev = "AQ40Huhuran";
Next = "AQ40Ouro";
@@ -491,8 +491,8 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 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#"};
{ 17, 21273, "", "=q4=Blessed Qiraji Acolyte Staff", "=q1=#m4# =ds=#h2#, #w9#"};
{ 18, 21275, "", "=q4=Blessed Qiraji Augur Staff", "=q1=#m4# =ds=#h2#, #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#"};
@@ -631,7 +631,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 19, 16887, "", "=q3=Witch's Finger", "=q1=#m4#: =ds=#s15#"};
{ 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Twilight Lord Kelris"], ""};
{ 22, 6903, "", "=q3=Gaze Dreamer Pants", "=ds=#s11#, #a1#", "", "31.90%"};
{ 23, 1155, "", "=q3=Rod of the Sleepwalker", "=ds=#w9#", "", "45.59%"};
{ 23, 1155, "", "=q3=Rod of the Sleepwalker", "=ds=#h2#, #w9#", "", "45.59%"};
{ 24, 5881, "", "=q1=Head of Kelris", "=ds=#m3#", "", "100%"};
{ 26, 0, "INV_Box_01", "=q6="..BabbleBoss["Old Serra'kis"], ""};
{ 27, 6901, "", "=q3=Glowing Thresher Cape", "=ds=#s4#", "", "36.14%"};
@@ -658,8 +658,8 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 23, 1454, "", "=q3=Axe of the Enforcer", "=ds=#h1#, #w1#", "", "0.01%"};
{ 24, 1481, "", "=q3=Grimclaw", "=ds=#h1#, #w1#", "", "0.01%"};
{ 25, 3414, "", "=q3=Crested Scepter", "=ds=#h1#, #w6#", "", "0.01%"};
{ 26, 3415, "", "=q3=Staff of the Friar", "=ds=#w9#", "", "0.02%"};
{ 27, 2271, "", "=q3=Staff of the Blessed Seer", "=ds=#w9#", "", "0.02%"};
{ 26, 3415, "", "=q3=Staff of the Friar", "=ds=#h2#, #w9#", "", "0.02%"};
{ 27, 2271, "", "=q3=Staff of the Blessed Seer", "=ds=#h2#, #w9#", "", "0.02%"};
Prev = "BlackfathomDeeps1";
};
@@ -762,7 +762,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
AtlasLoot_Data["BRDPyromantLoregrain"] = {
{ 1, 11747, "", "=q3=Flamestrider Robes", "=ds=#s5#, #a2#", "", "18.10%"};
{ 2, 11749, "", "=q3=Searingscale Leggings", "=ds=#s11#, #a3#", "", "21.29%"};
{ 3, 11750, "", "=q3=Kindling Stave", "=ds=#w9#", "", " 16.19%"};
{ 3, 11750, "", "=q3=Kindling Stave", "=ds=#h2#, #w9#", "", " 16.19%"};
{ 4, 11748, "", "=q3=Pyric Caduceus", "=ds=#w12#", "", "30.20%"};
{ 6, 11207, "", "=q2=Formula: Enchant Weapon - Fiery Weapon", "=ds=#p4# (265)", "", "13.32%"};
Prev = "BRDForgewright";
@@ -966,7 +966,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 8, 11934, "", "=q3=Emperor's Seal", "=ds=#s13#", "", "15.41%"};
{ 9, 11815, "", "=q3=Hand of Justice", "=ds=#s14#", "", "10.43%"};
{ 16, 11931, "", "=q3=Dreadforge Retaliator", "=ds=#h2#, #w1#", "", "15.76%"};
{ 17, 11932, "", "=q3=Guiding Stave of Wisdom", "=ds=#w9#", "", "15.01%"};
{ 17, 11932, "", "=q3=Guiding Stave of Wisdom", "=ds=#h2#, #w9#", "", "15.01%"};
{ 18, 11928, "", "=q3=Thaurissan's Royal Scepter", "=ds=#s15#", "", " 12.86%"};
{ 20, 12033, "", "=q1=Thaurissan Family Jewels", "=ds=#e7# #e1#", "", "2.2%"};
Prev = "BRDMagmus";
@@ -1005,7 +1005,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 10, 12535, "", "=q3=Doomforged Straightedge", "=ds=#h1#, #w10#", "", "0.01%"};
{ 11, 12527, "", "=q3=Ribsplitter", "=ds=#h1#, #w1# =q2=#m16#", "", "0.02%"};
{ 12, 12528, "", "=q3=The Judge's Gavel", "=ds=#h2#, #w6#", "", "0.02%"};
{ 13, 12532, "", "=q3=Spire of the Stoneshaper", "=ds=#w9#", "", "0.01%"};
{ 13, 12532, "", "=q3=Spire of the Stoneshaper", "=ds=#h2#, #w9#", "", "0.01%"};
{ 16, 15781, "", "=q3=Pattern: Black Dragonscale Leggings", "=ds=#p7# (300) =q1=#n75#", "", "1.93%"};
{ 17, 15770, "", "=q3=Pattern: Black Dragonscale Shoulders", "=ds=#p7# (300) =q1=#n76#", "", "1.88%"};
{ 18, 16053, "", "=q2=Schematic: Master Engineer's Goggles", "=ds=#p5# (290) =q1=#n77#", "", "0.45%"};
@@ -1217,7 +1217,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 5, 22321, "", "=q3=Heart of Wyrmthalak", "=ds=#s14#", "", "13.87%"};
{ 6, 13163, "", "=q3=Relentless Scythe", "=ds=#h2#, #w10#", "", "14.12%"};
{ 7, 13148, "", "=q3=Chillpike", "=ds=#w7#", "", "0.76%"};
{ 8, 13161, "", "=q3=Trindlehaven Staff", "=ds=#w9#", "", "10.40%"};
{ 8, 13161, "", "=q3=Trindlehaven Staff", "=ds=#h2#, #w9#", "", "10.40%"};
{ 10, 12337, "", "=q2=Gemstone of Bloodaxe", "=ds=#m3#", "", "100%"};
{ 16, 16679, "", "=q3=Beaststalker's Mantle", "=ds=#s3#, #a3# (D1, #c2#)", "", "9.89%"};
Prev = "LBRSBashguud";
@@ -1385,7 +1385,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 5, 22343, "", "=q3=Handguards of Savagery", "=ds=#s9#, #a3#", "", "20.11%"};
{ 6, 22340, "", "=q3=Pendant of Celerity", "=ds=#s2#", "", "17.66%"};
{ 7, 22339, "", "=q3=Rune Band of Wizardry", "=ds=#s13#", "", "15.49%"};
{ 8, 22335, "", "=q3=Lord Valthalak's Staff of Command", "=ds=#w9#", "", "14.67%"};
{ 8, 22335, "", "=q3=Lord Valthalak's Staff of Command", "=ds=#h2#, #w9#", "", "14.67%"};
{ 9, 22336, "", "=q3=Draconian Aegis of the Legion", "=ds=#w8#", "", "17.66%"};
Prev = "UBRSBeast";
Next = "UBRSDrakkisath";
@@ -1582,7 +1582,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 10, 19142, "", "=q4=Fire Runed Grimoire", "=ds=#s15#", "", "2.46%"};
{ 11, 17103, "", "=q4=Azuresong Mageblade", "=ds=#h3#, #w10#", "", "17.59%"};
{ 12, 18822, "", "=q4=Obsidian Edged Blade", "=ds=#h2#, #w10#", "", "2.89%"};
{ 13, 18842, "", "=q4=Staff of Dominance", "=ds=#w9#", "", "18.95%"};
{ 13, 18842, "", "=q4=Staff of Dominance", "=ds=#h2#, #w9#", "", "18.95%"};
{ 14, 17072, "", "=q4=Blastershot Launcher", "=ds=#w5#", "", "17.83%"};
{ 16, 2522349, "", "=q4=Molten Breastplate", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "33.33%"};
{ 17, 2522350, "", "=q4=Molten Tunic", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "33.33%"};
@@ -1627,12 +1627,12 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 9, 18805, "", "=q4=Core Hound Tooth", "=ds=#h1#, #w4#", "", "16.06%"};
{ 10, 18803, "", "=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#"};
{ 17, 18715, "", "=q4=Lok'delar, Stave of the Ancient Keepers", "=q1=#m4#: =ds=#h2#, #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#"};
{ 22, 18608, "", "=q4=Benediction", "=q1=#m4#: =ds=#h2#, #w9#, =q1=#m1# =ds=#c5#"};
{ 23, 18609, "", "=q4=Anathema", "=q1=#m4#: =ds=#h2#, #w9#, =q1=#m1# =ds=#c5#"};
Prev = "MCSulfuron";
Next = "MCRagnaros";
Type = "ClassicRaid";
@@ -1762,7 +1762,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
AtlasLoot_Data["BWLFiremaw"] = {
{ 1, 19365, "", "=q4=Claw of the Black Drake", "=ds=#h3#, #w13#", "", "12.5%"};
{ 2, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
{ 2, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#h2#, #w9#", "", "6.67%"};
{ 3, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
{ 4, 19343, "", "=q4=Scrolls of Blinding Light", "=ds=#s14#, =q1=#m1# =ds=#c4#", "", "12.5%"};
{ 5, 19344, "", "=q4=Natural Alignment Crystal", "=ds=#s14#, =q1=#m1# =ds=#c7#", "", "6.67%"};
@@ -1794,7 +1794,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 8, 19406, "", "=q4=Drake Fang Talisman", "=ds=#s14#", "", "16.67%"};
{ 9, 19395, "", "=q4=Rejuvenating Gem", "=ds=#s14#", "", "6.67%"};
{ 10, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
{ 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
{ 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#h2#, #w9#", "", "6.67%"};
{ 12, 19368, "", "=q4=Dragonbreath Hand Cannon", "=ds=#w5#", "", "16.67%"};
{ 16, 2522456, "", "=q4=Chromatic Gauntlets", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "33.33%"};
{ 17, 2522463, "", "=q4=Chromatic Girdle", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "33.33%"};
@@ -1815,7 +1815,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 8, 19431, "", "=q4=Styleen's Impeding Scarab", "=ds=#s14#", "", "16.67%"};
{ 9, 19353, "", "=q4=Drake Talon Cleaver", "=ds=#h2#, #w1#", "", "6.67%"};
{ 10, 19357, "", "=q4=Herald of Woe", "=ds=#h2#, #w6#", "", "16.67%"};
{ 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#w9#", "", "6.67%"};
{ 11, 19355, "", "=q4=Shadow Wing Focus Staff", "=ds=#h2#, #w9#", "", "6.67%"};
{ 12, 19367, "", "=q4=Dragon's Touch", "=ds=#w12#", "", "16.67%"};
{ 16, 2522456, "", "=q4=Chromatic Gauntlets", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "33.33%"};
{ 17, 2522463, "", "=q4=Chromatic Girdle", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "33.33%"};
@@ -1859,7 +1859,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 9, 19364, "", "=q4=Ashkandi, Greatsword of the Brotherhood", "=ds=#h2#, #w10#", "", "10%"};
{ 10, 19363, "", "=q4=Crul'shorukh, Edge of Chaos", "=ds=#h1#, #w1#", "", "16.67%"};
{ 11, 19360, "", "=q4=Lok'amir il Romathis", "=ds=#h3#, #w6#", "", "16.67%"};
{ 12, 19356, "", "=q4=Staff of the Shadow Flame", "=ds=#w9#", "", "16.67%%"};
{ 12, 19356, "", "=q4=Staff of the Shadow Flame", "=ds=#h2#, #w9#", "", "16.67%%"};
{ 13, 14001, "", "=q4=Archimtiros' Ring of Armageddon", "=ds=#s13#", "", "16.67%%"};
{ 16, 2522449, "", "=q4=Chromatic Breastplate", "=q1=#m1# =ds=#c4#, #c6#, #c7#", "", "33.33%"};
{ 17, 2522450, "", "=q4=Chromatic Tunic", "=q1=#m1# =ds=#c1#, #c5#, #c9#", "", "33.33%"};
@@ -1946,7 +1946,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
AtlasLoot_Data["DMELethtendris"] = {
{ 1, 18325, "", "=q3=Felhide Cap", "=ds=#s1#, #a2#", "", "24.67%"};
{ 2, 18311, "", "=q3=Quel'dorei Channeling Rod", "=ds=#w9#", "", "7.30%"};
{ 2, 18311, "", "=q3=Quel'dorei Channeling Rod", "=ds=#h2#, #w9#", "", "7.30%"};
{ 4, 18302, "", "=q3=Band of Vigor", "=ds=#s13#", "", "29.30%"};
{ 5, 18301, "", "=q3=Lethtendris's Wand", "=ds=#w12#", "", "25.57%"};
{ 7, 18426, "", "=q1=Lethtendris's Web", "=ds=#m3#"};
@@ -2160,7 +2160,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 9, 18500, "", "=q3=Tarnished Elven Ring", "=ds=#s13#"};
{ 10, 18537, "", "=q3=Counterattack Lodestone", "=ds=#s14#"};
{ 11, 18531, "", "=q3=Unyielding Maul", "=ds=#h2#, #w6#"};
{ 12, 18534, "", "=q3=Rod of the Ogre Magi", "=ds=#w9#"};
{ 12, 18534, "", "=q3=Rod of the Ogre Magi", "=ds=#h2#, #w9#"};
{ 13, 18499, "", "=q3=Barrier Shield", "=ds=#w8#"};
{ 16, 18475, "", "=q2=Oddly Magical Belt", "=ds=#s10#, #a1#"};
{ 17, 18478, "", "=q2=Hyena Hide Jerkin", "=ds=#s5#, #a2#"};
@@ -2182,7 +2182,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
AtlasLoot_Data["DMWTendrisWarpwood"] = {
{ 1, 18390, "", "=q3=Tanglemoss Leggings", "=ds=#s11#, #a2#", "", "22.55%"};
{ 2, 18393, "", "=q3=Warpwood Binding", "=ds=#s10#, #a3#", "", "19.81%"};
{ 4, 18353, "", "=q3=Stoneflower Staff", "=ds=#w9#", "", "23.46%"};
{ 4, 18353, "", "=q3=Stoneflower Staff", "=ds=#h2#, #w9#", "", "23.46%"};
{ 5, 18352, "", "=q3=Petrified Bark Shield", "=ds=#w8#", "", "21.67%"};
Next = "DMWIllyannaRavenoak";
Type = "ClassicDungeonExt";
@@ -2292,7 +2292,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 11, 0, "INV_Box_01", "=q6="..BabbleBoss["Viscous Fallout"], ""};
{ 12, 9454, "", "=q3=Acidic Walkers", "=ds=#s12#, #a1#", "", "54.02%"};
{ 13, 9453, "", "=q3=Toxic Revenger", "=ds=#h1#, #w4#", "", "19.05%"};
{ 14, 9452, "", "=q3=Hydrocane", "=ds=#w9#", "", "18.25%"};
{ 14, 9452, "", "=q3=Hydrocane", "=ds=#h2#, #w9#", "", "18.25%"};
{ 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Electrocutioner 6000"], ""};
{ 17, 9448, "", "=q3=Spidertank Oilrag", "=ds=#s8#, #a1#", "", "28.37%"};
{ 18, 9447, "", "=q3=Electrocutioner Lagnut", "=ds=#s13#", "", "28.44%"};
@@ -2504,7 +2504,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 7, 5792, "", "=q1=Razorflank's Medallion", "=ds=#m3#", "", "100%"};
{ 9, 0, "INV_Box_01", "=q6="..BabbleBoss["Earthcaller Halmgar"], ""};
{ 10, 6688, "", "=q3=Whisperwind Headdress", "=ds=#s1#, #a2#", "", "43.75%"};
{ 11, 6689, "", "=q3=Wind Spirit Staff", "=ds=#w9#", "", "42.66%"};
{ 11, 6689, "", "=q3=Wind Spirit Staff", "=ds=#h2#, #w9#", "", "42.66%"};
{ 16, 0, "INV_Box_01", "=q6="..AL["Trash Mobs"], ""};
{ 17, 2264, "", "=q3=Mantle of Thieves", "=ds=#s3#, #a2#", "", "0.02%"};
{ 18, 1978, "", "=q3=Wolfclaw Gloves", "=ds=#s9#, #a2#", "", "0.02%"};
@@ -2515,7 +2515,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 23, 1727, "", "=q3=Sword of Decay", "=ds=#h1#, #w10#", "", "0.02%"};
{ 24, 1975, "", "=q3=Pysan's Old Greatsword", "=ds=#h2#, #w10#", "", "0.02%"};
{ 25, 1976, "", "=q3=Slaghammer", "=ds=#h2#, #w6#", "", "0.02%"};
{ 26, 2549, "", "=q3=Staff of the Shade", "=ds=#w9#", "", "0.02%"};
{ 26, 2549, "", "=q3=Staff of the Shade", "=ds=#h2#, #w9#", "", "0.02%"};
Prev = "RazorfenKraul1";
};
@@ -2578,14 +2578,14 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
AtlasLoot_Data["SMLibrary"] = {
{ 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Houndmaster Loksey"], ""};
{ 2, 7756, "", "=q3=Dog Training Gloves", "=ds=#s9#, #a2#", "", "53.66%"};
{ 3, 7710, "", "=q3=Loksey's Training Stick", "=ds=#w9#", "", "13.96%"};
{ 3, 7710, "", "=q3=Loksey's Training Stick", "=ds=#h2#, #w9#", "", "13.96%"};
{ 4, 3456, "", "=q3=Dog Whistle", "=ds=#e13#", "", "21.33%"};
{ 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Arcanist Doan"], ""};
{ 17, 34227, "", "=q4=Deadman's Hand", "=ds=#s13#", "", ""};
{ 18, 7712, "", "=q3=Mantle of Doan", "=ds=#s3#, #a1#", "", "41.96%"};
{ 19, 7711, "", "=q3=Robe of Doan", "=ds=#s5#, #a1#", "", "42.86%"};
{ 20, 7714, "", "=q3=Hypnotic Blade", "=ds=#h3#, #w4#", "", "39.91%"};
{ 21, 7713, "", "=q3=Illusionary Rod", "=ds=#w9#", "", "38.44%"};
{ 21, 7713, "", "=q3=Illusionary Rod", "=ds=#h2#, #w9#", "", "38.44%"};
{ 23, 0, "INV_Box_01", "=q6=#x1#", ""};
{ 24, 7146, "", "=q2=The Scarlet Key", "=ds=#e9#"};
Prev = "SMGraveyard";
@@ -2617,7 +2617,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 23, 7736, "", "=q3=Fight Club", "=ds=#h1#, #w6#", "", "0.00%"};
{ 24, 7730, "", "=q3=Cobalt Crusher", "=ds=#h2#, #w6#", "", "0.01%"};
{ 25, 7758, "", "=q3=Ruthless Shiv", "=ds=#w7#", "", "0.00%"};
{ 26, 7757, "", "=q3=Windweaver Staff", "=ds=#w9#", "", "0.01%"};
{ 26, 7757, "", "=q3=Windweaver Staff", "=ds=#h2#, #w9#", "", "0.01%"};
{ 27, 7787, "", "=q3=Resplendent Guardian", "=ds=#w8#", "", "0.01%"};
{ 28, 7729, "", "=q3=Chesterfall Musket", "=ds=#w5#", "", "0.01%"};
Prev = "SMLibrary";
@@ -2666,7 +2666,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 4, 14548, "", "=q3=Royal Cap Spaulders", "=ds=#s3#, #a3#", "", "10.06%"};
{ 5, 18690, "", "=q3=Wraithplate Leggings", "=ds=#s11#, #a4#", "", "8.59%"};
{ 6, 14541, "", "=q3=Barovian Family Sword", "=ds=#h2#, #w10#", "", "8.27%"};
{ 7, 22394, "", "=q3=Staff of Metanoia", "=ds=#w9#", "", "8.67%"};
{ 7, 22394, "", "=q3=Staff of Metanoia", "=ds=#h2#, #w9#", "", "8.67%"};
{ 9, 13725, "", "=q1=Krastinov's Bag of Horrors", "=ds=#m3#", "", "100%"};
{ 10, 13523, "", "=q1=Blood of Innocents", "=ds=#m3#", "", "17.8%"};
{ 16, 16701, "", "=q3=Dreadmist Mantle", "=ds=#s3#, #a1# (D1, #c8#)", "", "12.20%"};
@@ -2964,7 +2964,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
};
AtlasLoot_Data["SCHOLODarkmasterGandling"] = {
{ 1, 13937, "", "=q4=Headmaster's Charge", "=ds=#w9#", "", "1.11%"};
{ 1, 13937, "", "=q4=Headmaster's Charge", "=ds=#h2#, #w9#", "", "1.11%"};
{ 2, 14514, "", "=q4=Pattern: Robe of the Void", "=ds=#p8# (300) =q1=#m1# =ds=#c8#", "", "6.71%"};
{ 3, 14153, "", "=q4=Robe of the Void", "=ds=#s5#, #a1# =q1=#m1# =ds=#c8#"};
{ 4, 13944, "", "=q3=Tombstone Breastplate", "=ds=#s5#, #a2#", "", "8.96%"};
@@ -3040,7 +3040,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 22, 6320, "", "=q3=Commander's Crest", "=ds=#w8#", "", "27.71%"};
{ 24, 0, "INV_Box_01", "=q6="..BabbleBoss["Odo the Blindwatcher"], ""};
{ 25, 6319, "", "=q3=Girdle of the Blindwatcher", "=ds=#s10#, #a2#", "", "57.15%"};
{ 26, 6318, "", "=q3=Odo's Ley Staff", "=ds=#w9#", "", "29.97%"};
{ 26, 6318, "", "=q3=Odo's Ley Staff", "=ds=#h2#, #w9#", "", "29.97%"};
{ 28, 0, "INV_Box_01", "=q6="..BabbleBoss["Fenrus the Devourer"], ""};
{ 29, 6340, "", "=q3=Fenrus' Hide", "=ds=#s4#", "", "58.02%"};
{ 30, 3230, "", "=q3=Black Wolf Bracers", "=ds=#s8#, #a2#", "", "14.76%"};
@@ -3071,7 +3071,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 24, 1318, "", "=q3=Night Reaver", "=ds=#h2#, #w1#", "", "0.01%"};
{ 25, 1483, "", "=q3=Face Smasher", "=ds=#h1#, #w6#", "", "0.02%"};
{ 26, 3194, "", "=q3=Black Malice", "=ds=#h2#, #w6#", "", "0.02%"};
{ 27, 1484, "", "=q3=Witching Stave", "=ds=#w9#", "", "0.01%"};
{ 27, 1484, "", "=q3=Witching Stave", "=ds=#h2#, #w9#", "", "0.01%"};
Prev = "ShadowfangKeep1";
};
@@ -3180,7 +3180,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 5, 22403, "", "=q3=Diana's Pearl Necklace", "=ds=#s2#", "", "14.27%"};
{ 6, 13382, "", "=q3=Cannonball Runner", "=ds=#s14#", "", "12.28%"};
{ 7, 22404, "", "=q3=Willey's Back Scratcher", "=ds=#h3#, #w13#", "", "6.26%"};
{ 8, 22406, "", "=q3=Redemption", "=ds=#w9#", "", "7.04%"};
{ 8, 22406, "", "=q3=Redemption", "=ds=#h2#, #w9#", "", "7.04%"};
{ 9, 13380, "", "=q3=Willey's Portable Howitzer", "=ds=#w5#", "", "10.71%"};
{ 10, 13377, "", "=q3=Miniature Cannon Balls", "=ds=#w18#", "", "66.61%"};
{ 16, 16708, "", "=q3=Shadowcraft Spaulders", "=ds=#s3#, #a2# (D1, #c6#)", "", "10.68%"};
@@ -3335,7 +3335,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 2, 18723, "", "=q3=Animated Chain Necklace", "=ds=#s2#", "", "7.54%"};
{ 3, 13373, "", "=q3=Band of Flesh", "=ds=#s13#", "", "8.15%"};
{ 4, 13515, "", "=q3=Ramstein's Lightning Bolts", "=ds=#s14#", "", "8.09%"};
{ 5, 13372, "", "=q3=Slavedriver's Cane", "=ds=#w9#", "", "8.63%"};
{ 5, 13372, "", "=q3=Slavedriver's Cane", "=ds=#h2#, #w9#", "", "8.63%"};
{ 6, 13375, "", "=q3=Crest of Retribution", "=ds=#w8#", "", "9.17%"};
{ 16, 16737, "", "=q3=Gauntlets of Valor", "=ds=#s9#, #a4# (D1, #c9#)", "", "9.58%"};
Prev = "STRATMagistrateBarthilas";
@@ -3369,7 +3369,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 24, 16728, "", "=q3=Lightforge Legplates", "=ds=#s11#, #a4# (D1, #c4#)", "", "4.20%"};
{ 26, 13251, "", "=q1=Head of Baron Rivendare", "=ds=#m3#", "", "100%"};
{ 27, 13246, "", "=q3=Argent Avenger", "=q1=#m4#: =ds=#h1#, #w10#"};
{ 28, 13249, "", "=q3=Argent Crusader", "=q1=#m4#: =ds=#w9#"};
{ 28, 13249, "", "=q3=Argent Crusader", "=q1=#m4#: =ds=#h2#, #w9#"};
{ 29, 13243, "", "=q3=Argent Defender", "=q1=#m4#: =ds=#w8#"};
Prev = "STRATRamsteintheGorger";
Next = "STRATTrash";
@@ -3415,7 +3415,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 3, 4660, "", "=q2=Walking Boots", "=ds=#s12#, #a1#", "", "71.4%"};
{ 5, 0, "INV_Box_01", "=q6="..BabbleBoss["Brainwashed Noble"], "=ec1=#j28#"};
{ 6, 5967, "", "=q2=Girdle of Nobility", "=ds=#s10#, #a1#", "", "70.4%"};
{ 7, 3902, "", "=q2=Staff of Nobles", "=ds=#w9#", "", "23.0%"};
{ 7, 3902, "", "=q2=Staff of Nobles", "=ds=#h2#, #w9#", "", "23.0%"};
{ 9, 0, "INV_Box_01", "=q6="..BabbleBoss["Foreman Thistlenettle"], "=ec1=#j28#"};
{ 10, 1875, "", "=q1=Thistlenettle's Badge", "=ds=#m3#", "", "100%"};
{ 12, 0, "INV_Box_01", "=q6="..BabbleBoss["Rhahk'Zor"], ""};
@@ -3442,7 +3442,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 5, 0, "INV_Box_01", "=q6=#n7#", ""};
{ 6, 10403, "", "=q3=Blackened Defias Belt", "=ds=#s10#, #a2#", "", "23.26%"};
{ 7, 5200, "", "=q3=Impaling Harpoon", "=ds=#w7#", "", "25.39%"};
{ 8, 5201, "", "=q3=Emberstone Staff", "=ds=#w9#", "", "34.10%"};
{ 8, 5201, "", "=q3=Emberstone Staff", "=ds=#h2#, #w9#", "", "34.10%"};
{ 10, 0, "INV_Box_01", "=q6="..BabbleBoss["Mr. Smite"], ""};
{ 11, 5192, "", "=q3=Thief's Blade", "=ds=#h1#, #w10#", "", "34.96%"};
{ 12, 5196, "", "=q3=Smite's Reaver", "=ds=#h1#, #w1#", "", "33.95%"};
@@ -3470,7 +3470,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 1, 0, "INV_Box_01", "=q6="..BabbleBoss["Targorr the Dread"], ""};
{ 2, 3630, "", "=q1=Head of Targorr", "=ds=#m3#", "", "100%"};
{ 4, 0, "INV_Box_01", "=q6="..BabbleBoss["Kam Deepfury"], ""};
{ 5, 2280, "", "=q3=Kam's Walking Stick", "=ds=#w9#", "", "0.62%"};
{ 5, 2280, "", "=q3=Kam's Walking Stick", "=ds=#h2#, #w9#", "", "0.62%"};
{ 6, 3640, "", "=q1=Head of Deepfury", "=ds=#m3#", "", "100%"};
{ 8, 0, "INV_Box_01", "=q6="..BabbleBoss["Bazil Thredd"], ""};
{ 9, 2926, "", "=q1=Head of Bazil Thredd", "=ds=#m3#", "", "100%"};
@@ -3549,7 +3549,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 5, 10846, "", "=q3=Bloodshot Greaves", "=ds=#s12#, #a3#", "", "32.44%"};
{ 6, 10845, "", "=q3=Warrior's Embrace", "=ds=#s5#, #a4#", "", "30.44%"};
{ 7, 10838, "", "=q3=Might of Hakkar", "=ds=#h1#, #w6#", "", "16.37%"};
{ 8, 10844, "", "=q3=Spire of Hakkar", "=ds=#w9#", "", "16.02%"};
{ 8, 10844, "", "=q3=Spire of Hakkar", "=ds=#h2#, #w9#", "", "16.02%"};
{ 10, 10663, "", "=q1=Essence of Hakkar", "=ds=#m3#", "", "100%"};
Prev = "STWeaver";
Next = "STJammalan";
@@ -3631,7 +3631,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 17, 10625, "", "=q3=Stealthblade", "=ds=#h1#, #w4#", "", "0.01%"};
{ 18, 10628, "", "=q3=Deathblow", "=ds=#h2#, #w10#", "", "0.01%"};
{ 19, 10626, "", "=q3=Ragehammer", "=ds=#h2#, #w6#", "", "0.01%"};
{ 20, 10627, "", "=q3=Bludgeon of the Grinning Dog", "=ds=#w9#", "", "0.02%"};
{ 20, 10627, "", "=q3=Bludgeon of the Grinning Dog", "=ds=#h2#, #w9#", "", "0.02%"};
{ 21, 10624, "", "=q3=Stinging Bow", "=ds=#w2#", "", "0.02%"};
Prev = "STEranikus";
};
@@ -3705,7 +3705,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
AtlasLoot_Data["UldIronaya"] = {
{ 1, 9407, "", "=q3=Stoneweaver Leggings", "=ds=#s11#, #a1#", "", "31.02%"};
{ 2, 9409, "", "=q3=Ironaya's Bracers", "=ds=#s8#, #a3# =q2=#m16#", "", "32.71%"};
{ 3, 9408, "", "=q3=Ironshod Bludgeon", "=ds=#w9#", "", "17.37%"};
{ 3, 9408, "", "=q3=Ironshod Bludgeon", "=ds=#h2#, #w9#", "", "17.37%"};
Prev = "UldRevelosh";
Next = "UldObsidianSentinel";
};
@@ -3835,7 +3835,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 13, 6469, "", "=q3=Venomstrike", "=ds=#w2#", "", "16.63%"};
{ 16, 0, "INV_Box_01", "=q6="..BabbleBoss["Verdan the Everliving"], ""};
{ 17, 6629, "", "=q3=Sporid Cape", "=ds=#s4#", "", "16.65%"};
{ 18, 6631, "", "=q3=Living Root", "=ds=#w9#", "", "34.47%"};
{ 18, 6631, "", "=q3=Living Root", "=ds=#h2#, #w9#", "", "34.47%"};
{ 19, 6630, "", "=q3=Seedcloud Buckler", "=ds=#w8#", "", "35.38%"};
{ 21, 0, "INV_Box_01", "=q6="..BabbleBoss["Mutanus the Devourer"], ""};
{ 22, 6461, "", "=q3=Slime-encrusted Pads", "=ds=#s3#, #a1#", "", "22.96%"};
@@ -3870,7 +3870,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
AtlasLoot_Data["ZFWitchDoctorZumrah"] = {
{ 1, 18083, "", "=q3=Jumanza Grips", "=ds=#s9#, #a1#", "", "24.97%"};
{ 2, 18082, "", "=q3=Zum'rah's Vexing Cane", "=ds=#w9#", "", "11.98%"};
{ 2, 18082, "", "=q3=Zum'rah's Vexing Cane", "=ds=#h2#, #w9#", "", "11.98%"};
Prev = "ZFThekatheMartyr";
Next = "ZFNekrumGutchewer";
};
@@ -3927,7 +3927,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 1, 9479, "", "=q3=Embrace of the Lycan", "=ds=#s1#, #a2#", "", "8.97%"};
{ 2, 9476, "", "=q3=Big Bad Pauldrons", "=ds=#s3#, #a4#", "", "28.17%"};
{ 3, 9478, "", "=q3=Ripsaw", "=ds=#h1#, #w1#", "", "19.78%"};
{ 4, 9477, "", "=q3=The Chief's Enforcer", "=ds=#w9#", "", "22.33%"};
{ 4, 9477, "", "=q3=The Chief's Enforcer", "=ds=#h2#, #w9#", "", "22.33%"};
{ 6, 11086, "", "=q3=Jang'thraze the Protector", "=ds=#h3#, #w10#", "", "1.72%"};
{ 7, 9372, "", "=q4=Sul'thraze the Lasher", "=ds=#h2# #w10#"};
Prev = "ZFGahzrilla";
@@ -3952,7 +3952,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 17, 9511, "", "=q3=Bloodletter Scalpel", "=ds=#h1#, #w10#", "", "0.01%"};
{ 18, 9481, "", "=q3=The Minotaur", "=ds=#h2#, #w1#", "", "0.01%"};
{ 19, 9480, "", "=q3=Eyegouger", "=ds=#w7#", "", "0.01%"};
{ 20, 9482, "", "=q3=Witch Doctor's Cane", "=ds=#w9#", "", "0.01%"};
{ 20, 9482, "", "=q3=Witch Doctor's Cane", "=ds=#h2#, #w9#", "", "0.01%"};
{ 21, 9483, "", "=q3=Flaming Incinerator", "=ds=#w12#", "", "0.01%"};
{ 22, 2040, "", "=q3=Troll Protector", "=ds=#w8#", "", "0.02%"};
Prev = "ZFZerillis";
@@ -4086,7 +4086,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
AtlasLoot_Data["ZGGahzranka"] = {
{ 1, 19945, "", "=q4=Foror's Eyepatch", "=ds=#s1#, #a2#", "", "8,82%"};
{ 2, 19944, "", "=q4=Nat Pagle's Fish Terminator", "=ds=#w9#", "", "2.39%"};
{ 2, 19944, "", "=q4=Nat Pagle's Fish Terminator", "=ds=#h2#, #w9#", "", "2.39%"};
{ 4, 19947, "", "=q3=Nat Pagle's Broken Reel", "=ds=#s14#", "", "28.20%"};
{ 5, 19946, "", "=q3=Tigule's Harpoon", "=ds=#w7#", "", "29.22%"};
{ 7, 22739, "", "=q3=Tome of Polymorph: Turtle", "=ds=#e10#, =q1=#m1# =ds=#c3#"};
@@ -4130,7 +4130,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 11, 19943, "", "=q1=Massive Mojo", "=ds=#e8#", "", "5.6%"};
{ 12, 19881, "", "=q1=Channeler's Head", "=ds=#m3#", "", "100%"};
{ 16, 19910, "", "=q4=Arlokk's Grasp", "=ds=#h4#, #w13#", "", "3.62%"};
{ 17, 19909, "", "=q4=Will of Arlokk", "=ds=#w9#", "", "5.14%"};
{ 17, 19909, "", "=q4=Will of Arlokk", "=ds=#h2#, #w9#", "", "5.14%"};
{ 19, 19913, "", "=q3=Bloodsoaked Greaves", "=ds=#s12#, #a4#", "", "13.29%"};
{ 20, 19912, "", "=q3=Overlord's Onyx Band", "=ds=#s13#", "", "13.95%"};
{ 21, 19922, "", "=q3=Arlokk's Hoodoo Stick", "=ds=#s15#", "", "13.66%"};
@@ -4155,7 +4155,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 16, 19885, "", "=q4=Jin'do's Evil Eye", "=ds=#s2#", "", "6.82%"};
{ 17, 19891, "", "=q4=Jin'do's Bag of Whammies", "=ds=#s15#", "", "7.70%"};
{ 18, 19890, "", "=q4=Jin'do's Hexxer", "=ds=#h3#, #w6#", "", "8.08%"};
{ 19, 19884, "", "=q4=Jin'do's Judgement", "=ds=#w9#", "", "8.36%"};
{ 19, 19884, "", "=q4=Jin'do's Judgement", "=ds=#h2#, #w9#", "", "8.36%"};
{ 21, 19888, "", "=q3=Overlord's Embrace", "=ds=#s4#", "", "12.72%"};
{ 22, 19886, "", "=q3=The Hexxer's Cover", "=ds=#s1#, #a1#", "", "12.11%"};
{ 23, 19929, "", "=q3=Bloodtinged Gloves", "=ds=#s9#, #a1#", "", "11.75%"};
@@ -4221,7 +4221,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 3, 20263, "", "=q3=Gurubashi Helm", "=ds=#s1#, #a4#"};
{ 4, 19908, "", "=q3=Sceptre of Smiting", "=ds=#h1#, #w6#"};
{ 5, 19921, "", "=q3=Zulian Hacker", "=ds=#h1#, #w1#"};
{ 6, 20258, "", "=q3=Zulian Ceremonial Staff", "=ds=#w9#"};
{ 6, 20258, "", "=q3=Zulian Ceremonial Staff", "=ds=#h2#, #w9#"};
{ 7, 19727, "", "=q3=Blood Scythe", "=ds=#e19#", "", "0.02%"};
{ 8, 48126, "", "=q1=Razzashi Hatchling", "=ds=#e13#"};
{ 10, 19726, "", "=q2=Bloodvine", "=ds=#e8#", "", ""};
@@ -4367,7 +4367,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 8, 23070, "", "=q4=Leggings of Polarity", "=ds=#s11#, #a1#" ,"", "20%"},
{ 9, 23000, "", "=q4=Plated Abomination Ribcage", "=ds=#s5#, #a4#","", "20%" },
{ 10, 22808, "", "=q4=The Castigator", "=ds=#h1#, #w6#" ,"", "20%"},
{ 11, 22801, "", "=q4=Spire of Twilight", "=ds=#w9#" ,"", "20%"},
{ 11, 22801, "", "=q4=Spire of Twilight", "=ds=#h2#, #w9#" ,"", "20%"},
{ 12, 23001, "", "=q4=Eye of Diminution", "=ds=#s14#" ,"", "20%"},
Prev = "NAXGluth";
Next = "NAXAnubRekhan";
@@ -4531,7 +4531,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 6, 22352, "", "=q4=Desecrated Legplates", "=q1=#m1# =ds=#c6#, #c9#","", "66.67%" },
{ 7, 0,"","","" },
{ 8, 23039, "", "=q4=The Eye of Nerub", "=ds=#w7#","", "20%" },
{ 9, 22800, "", "=q4=Brimstone Staff", "=ds=#w9#","", "20%" },
{ 9, 22800, "", "=q4=Brimstone Staff", "=ds=#h2#, #w9#","", "20%" },
{ 10, 23037, "", "=q4=Ring of Spiritual Fervor", "=ds=#s13#","", "20%" },
{ 11, 23038, "", "=q4=Band of Unnatural Forces", "=ds=#s13#" ,"", "20%"},
{ 12, 23042, "", "=q4=Loatheb's Reflection", "=ds=#s14#","", "20%" },
@@ -4571,7 +4571,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 3, 23577, "", "=q4=The Hungering Cold", "=ds=#h1#, #w10#" ,"","18.18%"},
{ 4, 23056, "", "=q4=Hammer of the Twisting Nether", "=ds=#h1#, #w6#","","18.18%" },
{ 5, 22798, "", "=q4=Might of Menethil", "=ds=#h2#, #w6#","","18.18%" },
{ 6, 22799, "", "=q4=Soulseeker", "=ds=#w9#","","18.18%" },
{ 6, 22799, "", "=q4=Soulseeker", "=ds=#h2#, #w9#","","18.18%" },
{ 7, 22821, "", "=q4=Doomfinger", "=ds=#w12#" ,"","18.18%"},
{ 8, 22812, "", "=q4=Nerubian Slavemaker", "=ds=#w3#" ,"","18.18%"},
{ 9, 22819, "", "=q4=Shield of Condemnation", "=ds=#w8#" ,"","18.18%"},
@@ -5639,7 +5639,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 17, 1982, "", "=q4=Nightblade", "=ds=#h2#, #w10#", "", ""};
{ 18, 870, "", "=q4=Fiery War Axe", "=ds=#h2#, #w1#", "", ""};
{ 19, 868, "", "=q4=Ardent Custodian", "=ds=#h1#, #w6#", "", ""};
{ 20, 873, "", "=q4=Staff of Jordan", "=ds=#w9#", "", ""};
{ 20, 873, "", "=q4=Staff of Jordan", "=ds=#h2#, #w9#", "", ""};
{ 21, 1204, "", "=q4=The Green Tower", "=ds=#w8#", "", ""};
{ 22, 2825, "", "=q4=Bow of Searing Arrows", "=ds=#w2#", "", ""};
Next = "WorldEpics2";
@@ -5662,8 +5662,8 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 20, 2291, "", "=q4=Kang the Decapitator", "=ds=#h2#, #w1#", "", ""};
{ 21, 810, "", "=q4=Hammer of the Northern Wind", "=ds=#h1#, #w6#", "", ""};
{ 22, 2915, "", "=q4=Taran Icebreaker", "=ds=#h2#, #w6#", "", ""};
{ 23, 812, "", "=q4=Glowing Brightwood Staff", "=ds=#w9#", "", ""};
{ 24, 943, "", "=q4=Warden Staff", "=ds=#w9#", "", ""};
{ 23, 812, "", "=q4=Glowing Brightwood Staff", "=ds=#h2#, #w9#", "", ""};
{ 24, 943, "", "=q4=Warden Staff", "=ds=#h2#, #w9#", "", ""};
{ 25, 1169, "", "=q4=Blackskull Shield", "=ds=#w8#", "", ""};
{ 26, 1979, "", "=q4=Wall of the Dead", "=ds=#w8#", "", ""};
{ 27, 2824, "", "=q4=Hurricane", "=ds=#w2#", "", ""};
@@ -5692,7 +5692,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 21, 811, "", "=q4=Axe of the Deep Woods", "=ds=#h1#, #w1#", "", ""};
{ 22, 1263, "", "=q4=Brain Hacker", "=ds=#h2#, #w1#", "", ""};
{ 23, 2243, "", "=q4=Hand of Edward the Odd", "=ds=#h1#, #w6#", "", ""};
{ 24, 944, "", "=q4=Elemental Mage Staff", "=ds=#w9#", "", ""};
{ 24, 944, "", "=q4=Elemental Mage Staff", "=ds=#h2#, #w9#", "", ""};
{ 25, 1168, "", "=q4=Skullflame Shield", "=ds=#w8#", "", ""};
{ 26, 2099, "", "=q4=Dwarven Hand Cannon", "=ds=#w5#", "", ""};
Next = "WorldEpics4";
@@ -5741,7 +5741,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 9, 19097, "", "=q3=Stormpike Soldier's Pendant", "=ds=#s2#", "1600 #alliance#"};
{ 10, 19100, "", "=q3=Electrified Dagger", "=ds=#h1#, #w4#", "2400 #alliance#"};
{ 11, 19104, "", "=q3=Stormstrike Hammer", "=ds=#h1#, #w6#", "2400 #alliance#"};
{ 12, 19102, "", "=q3=Crackling Staff", "=ds=#w9#", "3000 #alliance#"};
{ 12, 19102, "", "=q3=Crackling Staff", "=ds=#h2#, #w9#", "3000 #alliance#"};
{ 13, 19320, "", "=q3=Gnoll Skin Bandolier", "=ds=#w20#", "1600 #alliance#"};
{ 14, 19319, "", "=q3=Harpy Hide Quiver", "=ds=#w19#", "1600 #alliance#"};
{ 17, 19325, "", "=q4=Don Julio's Band", "=ds=#s13#", "5000 #faction#"};
@@ -5770,7 +5770,7 @@ local BabbleFaction = AtlasLoot_GetLocaleLibBabble("LibBabble-Faction-3.0")
{ 9, 19095, "", "=q3=Frostwolf Legionnaire's Pendant", "=ds=#s2#", "1600 #horde#"};
{ 10, 19099, "", "=q3=Glacial Blade", "=ds=#h1#, #w4#", "2400 #horde#"};
{ 11, 19103, "", "=q3=Frostbite", "=ds=#h1#, #w6#", "2400 #horde#"};
{ 12, 19101, "", "=q3=Whiteout Staff", "=ds=#w9#", "3000 #horde#"};
{ 12, 19101, "", "=q3=Whiteout Staff", "=ds=#h2#, #w9#", "3000 #horde#"};
{ 13, 19320, "", "=q3=Gnoll Skin Bandolier", "=ds=#w20#", "1600 #horde#"};
{ 14, 19319, "", "=q3=Harpy Hide Quiver", "=ds=#w19#", "1600 #horde#"};
{ 17, 19325, "", "=q4=Don Julio's Band", "=ds=#s13#", "5000 #faction#"};
@@ -6809,7 +6809,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 12, 18867, "", "=q4=Grand Marshal's Battle Hammer", "=ds=#h2#, #w6#", "68200 #alliance#", ""};
{ 13, 23455, "", "=q4=Grand Marshal's Demolisher", "=ds=#h2#, #w6#", "68200 #alliance#", ""};
{ 14, 18869, "", "=q4=Grand Marshal's Glaive", "=ds=#w7#", "68200 #alliance#", ""};
{ 15, 18873, "", "=q4=Grand Marshal's Stave", "=ds=#w9#", "68200 #alliance#", ""};
{ 15, 18873, "", "=q4=Grand Marshal's Stave", "=ds=#h2#, #w9#", "68200 #alliance#", ""};
{ 16, 18825, "", "=q4=Grand Marshal's Aegis", "=ds=#w8#", "34100 #alliance#", ""};
{ 17, 18833, "", "=q4=Grand Marshal's Bullseye", "=ds=#w2#", "34100 #alliance#", ""};
{ 18, 18836, "", "=q4=Grand Marshal's Repeater", "=ds=#w3#", "34100 #alliance#", ""};
@@ -6835,7 +6835,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 12, 918867, "", "=q3=Lieutenant Commander's Battle Hammer", "=ds=#h2#, #w6#", "34100 #alliance#", ""};
{ 13, 923455, "", "=q3=Lieutenant Commander's Demolisher", "=ds=#h2#, #w6#", "34100 #alliance#", ""};
{ 14, 918869, "", "=q3=Lieutenant Commander's Glaive", "=ds=#w7#", "34100 #alliance#", ""};
{ 15, 918873, "", "=q3=Lieutenant Commander's Stave", "=ds=#w9#", "34100 #alliance#", ""};
{ 15, 918873, "", "=q3=Lieutenant Commander's Stave", "=ds=#h2#, #w9#", "34100 #alliance#", ""};
{ 16, 918825, "", "=q3=Lieutenant Commander's Aegis", "=ds=#w8#", "20000 #alliance#", ""};
{ 17, 918833, "", "=q3=Lieutenant Commander's Bullseye", "=ds=#w2#", "20000 #alliance#", ""};
{ 18, 918836, "", "=q3=Lieutenant Commander's Repeater", "=ds=#w3#", "20000 #alliance#", ""};
@@ -6862,7 +6862,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 12, 18868, "", "=q4=High Warlord's Pulverizer", "=ds=#h2#, #w6#", "68200 #horde#", ""};
{ 13, 23465, "", "=q4=High Warlord's Destroyer", "=ds=#h2#, #w6#", "68200 #horde#", ""};
{ 14, 18871, "", "=q4=High Warlord's Pig Sticker", "=ds=#w7#", "68200 #horde#", ""};
{ 15, 18874, "", "=q4=High Warlord's War Staff", "=ds=#w9#", "68200 #horde#", ""};
{ 15, 18874, "", "=q4=High Warlord's War Staff", "=ds=#h2#, #w9#", "68200 #horde#", ""};
{ 16, 18826, "", "=q4=High Warlord's Shield Wall", "=ds=#w8#", "34100 #horde#", ""};
{ 17, 18835, "", "=q4=High Warlord's Recurve", "=ds=#w2#", "34100 #horde#", ""};
{ 18, 18837, "", "=q4=High Warlord's Crossbow", "=ds=#w3#", "34100 #horde#", ""};
@@ -6888,7 +6888,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 12, 918868, "", "=q3=Champion's Pulverizer", "=ds=#h2#, #w6#", "34100 #horde#", ""};
{ 13, 923465, "", "=q3=Champion's Destroyer", "=ds=#h2#, #w6#", "34100 #horde#", ""};
{ 14, 918871, "", "=q3=Champion's Pig Sticker", "=ds=#w7#", "34100 #horde#", ""};
{ 15, 918874, "", "=q3=Champion's War Staff", "=ds=#w9#", "34100 #horde#", ""};
{ 15, 918874, "", "=q3=Champion's War Staff", "=ds=#h2#, #w9#", "34100 #horde#", ""};
{ 16, 918826, "", "=q3=Champion's Shield Wall", "=ds=#w8#", "20000 #horde#", ""};
{ 17, 918835, "", "=q3=Champion's Recurve", "=ds=#w2#", "20000 #horde#", ""};
{ 18, 918837, "", "=q3=Champion's Crossbow", "=ds=#w3#", "20000 #horde#", ""};
@@ -7430,7 +7430,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 6, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"};
{ 7, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"};
{ 8, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"};
{ 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"};
{ 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#h2#, #w9# =q1=#m5#", "", "9.70%"};
{ 11, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"};
{ 12, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"};
{ 16, 20623, "", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "", "10.51%"};
@@ -7451,7 +7451,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 6, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"};
{ 7, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"};
{ 8, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"};
{ 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"};
{ 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#h2#, #w9# =q1=#m5#", "", "9.70%"};
{ 11, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"};
{ 12, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"};
{ 16, 20626, "", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "", "9.44%"};
@@ -7473,7 +7473,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 6, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"};
{ 7, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"};
{ 8, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"};
{ 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"};
{ 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#h2#, #w9# =q1=#m5#", "", "9.70%"};
{ 11, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"};
{ 12, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"};
{ 16, 20631, "", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "", "13.14%"};
@@ -7494,7 +7494,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 6, 20619, "", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q1=#m5#", "", "8.85%"};
{ 7, 20582, "", "=q4=Trance Stone", "=ds=#s15# =q1=#m5#", "", "9.57%"};
{ 8, 20580, "", "=q4=Hammer of Bestial Fury", "=ds=#h3#, #w6# =q1=#m5#", "", "8.93%"};
{ 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#w9# =q1=#m5#", "", "9.70%"};
{ 9, 20581, "", "=q4=Staff of Rampant Growth", "=ds=#h2#, #w9# =q1=#m5#", "", "9.70%"};
{ 11, 20644, "", "=q4=Nightmare Engulfed Object", "=ds=#m3# =q1=#m5#", "", "80.05%"};
{ 12, 20600, "", "=q4=Malfurion's Signet Ring", "=q1=#m4#: =ds=#s13#"};
{ 16, 20635, "", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "", "14.19%"};
@@ -7532,7 +7532,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
{ 1, 18665, "", "=q4=The Eye of Shadow", "=ds=#s14#", "", "40.96%"};
{ 2, 18546, "", "=q4=Infernal Headcage", "=ds=#s1#, #a3#", "", "22.89%"};
{ 3, 17112, "", "=q4=Empyrean Demolisher", "=ds=#h1#, #w6#", "", "13.54%"};
{ 4, 17113, "", "=q4=Amberseal Keeper", "=ds=#h2#, #w9#", "", "16.87% "};
{ 4, 17113, "", "=q4=Amberseal Keeper", "=ds=#h2#, #h2#, #w9#", "", "16.87% "};
{ 5, 18204, "", "=q4=Eskhandar's Pelt", "=ds=#s4#, #a1#", "", "12.23%"};
{ 6, 19133, "", "=q4=Fel Infused Leggings", "=ds=#s11#, #a1#", "", "12.05%"};
{ 7, 18543, "", "=q4=Ring of Entropy", "=ds=#s13#", "", "14.46%"};
@@ -7546,7 +7546,7 @@ AtlasLoot_Data["PVPWarrior2"] = {
AtlasLoot_Data["Setis"] = {
{ 1,122880, "", "=q4=Scepter of the Gate Warden", "=ds=#h3#, #w6#", "", ""};
{ 2,122881, "", "=q4=Staff of the Gate Warden", "=ds=#h2#, #w9#", "", ""};
{ 2,122881, "", "=q4=Staff of the Gate Warden", "=ds=#h2#, #h2#, #w9#", "", ""};
{ 3,122883, "", "=q4=Musket of the Gate Warden", "=ds=#w5#", "", ""};
{ 4,122884, "", "=q4=Wristguards of the Shifting Sands", "=ds=#s8#, #a2#", "", ""};
{ 5,122885, "", "=q4=Waistguard of the Shifting Sands", "=ds=#s10#, #a2#", "", ""};
+10 -10
View File
@@ -135,7 +135,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 45074, "", "=q4=Claymore of the Prophet", "=ds=#h2#, #w10#", "25 #champseal#" };
{ 6, 45076, "", "=q4=Teldrassil Protector", "=ds=#h1#, #w1#", "25 #champseal#" };
{ 7, 45075, "", "=q4=Ironforge Smasher", "=ds=#h1#, #w6#", "25 #champseal#" };
{ 8, 45128, "", "=q4=Silvery Sylvan Stave", "=ds=#w9#", "25 #champseal#" };
{ 8, 45128, "", "=q4=Silvery Sylvan Stave", "=ds=#h2#, #w9#", "25 #champseal#" };
{ 9, 45130, "", "=q4=Blunderbuss of Khaz Modan", "=ds=#w5#", "25 #champseal#" };
{ 15, 44990, "", "=q2=Champion's Seal", "=ds=#m17#"};
{ 16, 0, "INV_BannerPVP_01", "=q6=#m6#", ""};
@@ -145,7 +145,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 20, 45205, "", "=q4=Greatsword of the Sin'dorei", "=ds=#h2#, #w10#", "25 #champseal#" };
{ 21, 45204, "", "=q4=Axe of the Sen'jin Protector", "=ds=#h1#, #w1#", "25 #champseal#" };
{ 22, 45203, "", "=q4=Grimhorn Crusher", "=ds=#h1#, #w6#", "25 #champseal#" };
{ 23, 45212, "", "=q4=Staff of Feral Furies", "=ds=#w9#", "25 #champseal#" };
{ 23, 45212, "", "=q4=Staff of Feral Furies", "=ds=#h2#, #w9#", "25 #champseal#" };
{ 24, 45210, "", "=q4=Sen'jin Beakblade Longrifle", "=ds=#w5#", "25 #champseal#" };
Prev = "ArgentTournament3";
Next = "ArgentTournament5";
@@ -245,7 +245,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 26, 42948, "", "=q7=Devout Aurastone Hammer", "=ds=#h3#, #w6#", "75 #champseal#"};
{ 27, 48716, "", "=q7=Venerable Mass of McGowan", "=ds=#h1#, #w6#", "75 #champseal#"};
{ 28, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#h2#, #w6#", "95 #champseal#"};
{ 29, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "95 #champseal#"};
{ 29, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#h2#, #w9#", "95 #champseal#"};
{ 30, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "95 #champseal#"};
Prev = "ArgentTournament7";
Back = "ARGENTMENU";
@@ -749,13 +749,13 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 10, 35279, "", "=q3=Tabard of Summer Skies", "=q1=#m4#: =ds=#s7#"};
{ 11, 35280, "", "=q3=Tabard of Summer Flames", "=q1=#m4#: =ds=#s7#"};
{ 16, 54536, "", "=q3=Satchel of Chilled Goods", "=ds="};
{ 17, 54806, "", "=q4=Frostscythe of Lord Ahune", "=ds=#w9#"};
{ 17, 54806, "", "=q4=Frostscythe of Lord Ahune", "=ds=#h2#, #w9#"};
{ 18, 53641, "", "=q3=Ice Chip", "=ds=#e13#"};
{20, 35497, "", "=q4=Cloak of the Frigid Winds", "=ds=#s4#" };
{21, 35496, "", "=q4=Icebound Cloak", "=ds=#s4#" };
{22, 35494, "", "=q4=Shroud of Winter's Chill", "=ds=#s4#" };
{23, 35495, "", "=q4=The Frost Lord's War Cloak", "=ds=#s4#" };
{24, 35514, "", "=q4=Frostscythe of Lord Ahune", "=ds=#w9#" };
{24, 35514, "", "=q4=Frostscythe of Lord Ahune", "=ds=#h2#, #w9#" };
Prev = "MidsummerFestival";
Back = "WORLDEVENTMENU";
};
@@ -779,7 +779,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{17, 35496, "", "=q4=Icebound Cloak", "=ds=#s4#" };
{18, 35494, "", "=q4=Shroud of Winter's Chill", "=ds=#s4#" };
{19, 35495, "", "=q4=The Frost Lord's War Cloak", "=ds=#s4#" };
{20, 35514, "", "=q4=Frostscythe of Lord Ahune", "=ds=#w9#" };
{20, 35514, "", "=q4=Frostscythe of Lord Ahune", "=ds=#h2#, #w9#" };
};
-------------------
@@ -929,7 +929,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 44158, "", "=q3=Demons Deck", "=ds=#m2#"};
{ 22, 44217, "", "=q3=Darkmoon Dirk", "=q1=#m4#: =ds=#h1#, #w4#"};
{ 23, 44218, "", "=q3=Darkmoon Executioner", "=q1=#m4#: =ds=#h2#, #w1#"};
{ 24, 44219, "", "=q3=Darkmoon Magestaff", "=q1=#m4#: =ds=#w9#"};
{ 24, 44219, "", "=q3=Darkmoon Magestaff", "=q1=#m4#: =ds=#h2#, #w9#"};
Prev = "Darkmoon1";
Next = "Darkmoon3";
Back = "DARKMOONMENU";
@@ -1048,7 +1048,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 20656, "", "=q2=Abyssal Mail Sabatons", "=ds=#s12#, #a3# =q2=#m16#", "", "12.89%"};
{ 5, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%"};
{ 7, 0, "INV_Box_01", "=q6=#n97#", "=q1=#j20#"};
{ 8, 20654, "", "=q3=Amethyst War Staff", "=ds=#w9#", "", "2.38%"};
{ 8, 20654, "", "=q3=Amethyst War Staff", "=ds=#h2#, #w9#", "", "2.38%"};
{ 9, 20652, "", "=q2=Abyssal Cloth Slippers", "=ds=#s12#, #a1# =q2=#m16#", "", "12.94%"};
{ 10, 20653, "", "=q2=Abyssal Plate Gauntlets", "=ds=#s9#, #a4# =q2=#m16#", "", "13.61%"};
{ 11, 20513, "", "=q2=Abyssal Crest", "=ds=#m3#", "", "100%"};
@@ -1275,7 +1275,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 24, 32660, "", "=q3=Crystalforged Sword", "=ds=#h3#, #w10#"};
{ 25, 32663, "", "=q3=Apexis Cleaver", "=ds=#h2#, #w1#"};
{ 26, 32661, "", "=q3=Apexis Crystal Mace", "=ds=#h1#, #w6#"};
{ 27, 32662, "", "=q3=Flaming Quartz Staff", "=ds=#w9#"};
{ 27, 32662, "", "=q3=Flaming Quartz Staff", "=ds=#h2#, #w9#"};
Back = "WORLDEVENTMENU";
};
@@ -1423,7 +1423,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 1, 0, "INV_Box_01", "=q6=#n123#", "=q1=#z6#"};
{ 2, 23126, "", "=q3=Waistband of Balzaphon", "=ds=#s10#, #a1#", "", "27.38%"};
{ 3, 23125, "", "=q3=Chains of the Lich", "=ds=#s2#", "", "19.89%"};
{ 4, 23124, "", "=q3=Staff of Balzaphon", "=ds=#w9#", "", "24.74%"};
{ 4, 23124, "", "=q3=Staff of Balzaphon", "=ds=#h2#, #w9#", "", "24.74%"};
{ 6, 0, "INV_Box_01", "=q6=#n124#", "=q1=#z5#"};
{ 7, 23156, "", "=q3=Blackwood's Thigh", "=ds=#s15#", "", "22.60%"};
{ 8, 23132, "", "=q3=Lord Blackwood's Blade", "=ds=#h1#, #w10#", "", "23.80%"};
@@ -149,7 +149,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 22, 37189, "", "=q3=Breeches of the Caller", "=ds=#s11#, #a1#", "", "19%"};
{ 23, 37188, "", "=q3=Plunderer's Helmet", "=ds=#s1#, #a3#", "", "20%"};
{ 24, 37186, "", "=q3=Unsmashable Heavy Band", "=ds=#s13#", "", "20%"};
{ 25, 37190, "", "=q3=Enraged Feral Staff", "=ds=#w9#", "", "20%"};
{ 25, 37190, "", "=q3=Enraged Feral Staff", "=ds=#h2#, #w9#", "", "20%"};
{ 26, 41793, "", "=q3=Design: Fierce Monarch Topaz", "=ds=#p12# (390)", "", "8%"};
{ 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
Prev = "UtgardeKeepSkarvald";
@@ -268,7 +268,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 1, 0, "INV_Box_01", "=q6=#j1#", ""};
{ 2, 35660, "", "=q3=Spinneret Epaulets", "=ds=#s3#, #a2#", "", "30%"};
{ 3, 35659, "", "=q3=Treads of Aspiring Heights", "=ds=#s12#, #a2#", "", "30%"};
{ 4, 35658, "", "=q3=Life-Staff of the Web Lair", "=ds=#w9#", "", "29%"};
{ 4, 35658, "", "=q3=Life-Staff of the Web Lair", "=ds=#h2#, #w9#", "", "29%"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
{ 18, 37222, "", "=q3=Egg Sac Robes", "=ds=#s5#, #a1#", "", "21%"};
@@ -382,7 +382,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 37619, "", "=q4=Wand of Ahnkahet", "=ds=#w12#", "", "18%"};
{ 22, 37616, "", "=q3=Kilt of the Forgotten One", "=ds=#s11#, #a2#", "", "19%"};
{ 23, 37618, "", "=q3=Greaves of Ancient Evil", "=ds=#s12#, #a4#", "", "20%"};
{ 24, 37617, "", "=q3=Staff of Sinister Claws", "=ds=#w9#", "", "19%"};
{ 24, 37617, "", "=q3=Staff of Sinister Claws", "=ds=#h2#, #w9#", "", "19%"};
{ 25, 37615, "", "=q3=Titanium Compound Bow", "=ds=#w2#", "", "19%"};
{ 26, 41790, "", "=q3=Design: Precise Scarlet Ruby", "=ds=#p12# (390)", "", "17%"};
{ 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
@@ -436,7 +436,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 1, 0, "INV_Box_01", "=q6=#j1#", ""};
{ 2, 35635, "", "=q3=Stable Master's Breeches", "=ds=#s11#, #a1#", "", "28%"};
{ 3, 35634, "", "=q3=Scabrous-Hide Helm", "=ds=#s1#, #a2#", "", "28%"};
{ 4, 35633, "", "=q3=Staff of the Great Reptile", "=ds=#w9#", "", "31%"};
{ 4, 35633, "", "=q3=Staff of the Great Reptile", "=ds=#h2#, #w9#", "", "31%"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
{ 18, 37725, "", "=q3=Savage Wound Wrap", "=ds=#s8#, #a1#", "", "21%"};
@@ -565,13 +565,13 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 1, 0, "INV_Box_01", "=q6=#j1#", ""};
{ 2, 35650, "", "=q3=Boots of the Portal Guardian", "=ds=#s12#, #a3#", "", "31%"};
{ 3, 35651, "", "=q3=Plate Claws of the Dragon", "=ds=#s9#, #a4#", "", "31%"};
{ 4, 35649, "", "=q3=Jailer's Baton", "=ds=#w9#", "", "31%"};
{ 4, 35649, "", "=q3=Jailer's Baton", "=ds=#h2#, #w9#", "", "31%"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
{ 18, 37884, "", "=q4=Azure Cloth Bindings", "=ds=#s8#, #a1#", "", "20%"};
{ 19, 37886, "", "=q4=Handgrips of the Savage Emissary", "=ds=#s9#, #a3#", "", "21%"};
{ 20, 43500, "", "=q4=Bolstered Legplates", "=ds=#s11#, #a4#", "", "20%"};
{ 21, 37883, "", "=q4=Staff of Trickery", "=ds=#w9#", "", "21%"};
{ 21, 37883, "", "=q4=Staff of Trickery", "=ds=#h2#, #w9#", "", "21%"};
{ 22, 37876, "", "=q3=Cyanigosa's Leggings", "=ds=#s11#, #a1#", "", "22%"};
{ 23, 37875, "", "=q3=Spaulders of the Violet Hold", "=ds=#s3#, #a3#", "", "21%"};
{ 24, 37874, "", "=q3=Gauntlets of Capture", "=ds=#s9#, #a4#", "", "21%"};
@@ -605,7 +605,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 1, 0, "INV_Box_01", "=q6=#j1#", ""};
{ 2, 35584, "", "=q3=Embroidered Gown of Zul'drak", "=ds=#s5#, #a1#", "", "28%"};
{ 3, 35585, "", "=q3=Cannibal's Legguards", "=ds=#s11#, #a3#", "", "29%"};
{ 4, 35583, "", "=q3=Witch Doctor's Wildstaff", "=ds=#w9#", "", "28%"};
{ 4, 35583, "", "=q3=Witch Doctor's Wildstaff", "=ds=#h2#, #w9#", "", "28%"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
{ 18, 37629, "", "=q3=Slithering Slippers", "=ds=#s12#, #a1#", "", "21%"};
@@ -774,7 +774,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 1, 0, "INV_Box_01", "=q6=#j1#", ""};
{ 2, 36982, "", "=q3=Mantle of Electrical Charges", "=ds=#s3#, #a1#", "", "22%"};
{ 3, 36979, "", "=q3=Bjarngrim Family Signet", "=ds=#s13#", "", "22%"};
{ 4, 36980, "", "=q3=Hewn Sparring Quarterstaff", "=ds=#w9#", "", "22%"};
{ 4, 36980, "", "=q3=Hewn Sparring Quarterstaff", "=ds=#h2#, #w9#", "", "22%"};
{ 5, 36981, "", "=q3=Hardened Vrykul Throwing Axe", "=ds=#w11#", "", "23%"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
@@ -838,7 +838,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 22, 37851, "", "=q3=Ornate Woolen Stola", "=ds=#s5#, #a1#", "", "19%"};
{ 23, 37850, "", "=q3=Flowing Sash of Order", "=ds=#s10#, #a1#", "", "19%"};
{ 24, 37849, "", "=q3=Planetary Helm", "=ds=#s1#, #a4#", "", "19%"};
{ 25, 37848, "", "=q3=Lightning Giant Staff", "=ds=#w9#", "", "18%"};
{ 25, 37848, "", "=q3=Lightning Giant Staff", "=ds=#h2#, #w9#", "", "18%"};
{ 26, 41799, "", "=q3=Design: Eternal Earthsiege Diamond", "=ds=#p12# (420)", "", "11%"};
{ 27, 43102, "", "=q3=Frozen Orb", "=ds=#e6#", "", "100%"};
Prev = "HallsofLightningIonar";
@@ -897,7 +897,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 37106, "", "=q3=Ouroboros Belt", "=ds=#s10#, #a2#", "", "23%"};
{ 3, 37105, "", "=q3=Treads of Altered History", "=ds=#s12#, #a3#", "", "24%"};
{ 4, 37096, "", "=q3=Necklace of the Chrono-Lord", "=ds=#s2#", "", "22%"};
{ 5, 37099, "", "=q3=Sempiternal Staff", "=ds=#w9#", "", "22%"};
{ 5, 37099, "", "=q3=Sempiternal Staff", "=ds=#h2#, #w9#", "", "22%"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
{ 18, 37687, "", "=q3=Gloves of Distorted Time", "=ds=#s9#, #a1#", "", "23%"};
@@ -995,7 +995,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 37389, "", "=q3=Crenelation Leggings", "=ds=#s11#, #a2#", "", "21%"};
{ 20, 37379, "", "=q3=Skadi's Iron Belt", "=ds=#s10#, #a4#", "", "22%"};
{ 21, 37377, "", "=q3=Netherbreath Spellblade", "=ds=#h3#, #w4#", "", "21%"};
{ 22, 37384, "", "=q3=Staff of Wayward Principles", "=ds=#w9#", "", "21%"};
{ 22, 37384, "", "=q3=Staff of Wayward Principles", "=ds=#h2#, #w9#", "", "21%"};
Prev = "UPPalehoof";
Next = "UPYmiron";
};
@@ -1101,14 +1101,14 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 6, 36961, "", "=q3=Dragonflight Great-Ring", "=ds=#s13#", "", "17%"};
{ 7, 36972, "", "=q3=Tome of Arcane Phenomena", "=ds=#s14#", "", "15%"};
{ 8, 36962, "", "=q3=Wyrmclaw Battleaxe", "=ds=#h2#, #w1#", "", "17%"};
{ 9, 36975, "", "=q3=Malygos's Favor", "=ds=#w9#", "", "17%"};
{ 9, 36975, "", "=q3=Malygos's Favor", "=ds=#h2#, #w9#", "", "17%"};
{ 10, 41798, "", "=q3=Design: Bracing Earthsiege Diamond", "=ds=#p12# (420)", "", "7%"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 47241, "", "=q4=Emblem of Triumph", "=ds=#e15#", "", "100%"};
{ 18, 37361, "", "=q4=Cuffs of Winged Levitation", "=ds=#s8#, #a1#", "", "14%"};
{ 19, 37363, "", "=q4=Gauntlets of Dragon Wrath", "=ds=#s9#, #a4#", "", "13%"};
{ 20, 37362, "", "=q4=Leggings of Protective Auras", "=ds=#s11#, #a4#", "", "13%"};
{ 21, 37360, "", "=q4=Staff of Draconic Combat", "=ds=#w9#", "", "14%"};
{ 21, 37360, "", "=q4=Staff of Draconic Combat", "=ds=#h2#, #w9#", "", "14%"};
{ 22, 37291, "", "=q3=Ancient Dragon Spirit Cape", "=ds=#s4#", "", "14%"};
{ 23, 37294, "", "=q3=Crown of Unbridled Magic", "=ds=#s1#, #a1#", "", "14%"};
{ 24, 37293, "", "=q3=Mask of the Watcher", "=ds=#s1#, #a2#", "", "15%"};
@@ -3186,7 +3186,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 40258, "", "=q4=Forethought Talisman", "=ds=#s14#", "", "11%"};
{ 22, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%"};
{ 23, 40281, "", "=q4=Twilight Mist", "=ds=#h1#, #w4#", "", "19%"};
{ 24, 40280, "", "=q4=Origin of Nightmares", "=ds=#w9#", "", "9%"};
{ 24, 40280, "", "=q4=Origin of Nightmares", "=ds=#h2#, #w9#", "", "9%"};
{ 25, 40284, "", "=q4=Plague Igniter", "=ds=#w12#", "", "9%"};
Prev = "Naxx80Patchwerk25Man";
Next = "Naxx80Gluth125Man";
@@ -3215,7 +3215,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 20, 39200, "", "=q4=Grieving Spellblade", "=ds=#h3#, #w10#", "", "11%"};
{ 21, 39344, "", "=q4=Slayer of the Lifeless", "=ds=#h1#, #w10#", "", "10%"};
{ 22, 39281, "", "=q4=Infection Repulser", "=ds=#h3#, #w6#", "", "19%"};
{ 23, 39394, "", "=q4=Charmed Cierge", "=ds=#w9#", "", "0.44%"};
{ 23, 39394, "", "=q4=Charmed Cierge", "=ds=#h2#, #w9#", "", "0.44%"};
Prev = "Naxx80Grobbulus";
Next = "Naxx80Gluth2";
};
@@ -3274,7 +3274,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 3, 39730, "", "=q4=Widow's Fury", "=ds=#h1#, #w10#", "", "9%"};
{ 4, 40343, "", "=q4=Armageddon", "=ds=#h2#, #w10#", "", "1%"};
{ 5, 40239, "", "=q4=The Hand of Nerub", "=ds=#h4#, #w13#", "", "19%"};
{ 6, 40280, "", "=q4=Origin of Nightmares", "=ds=#w9#", "", "9%"};
{ 6, 40280, "", "=q4=Origin of Nightmares", "=ds=#h2#, #w9#", "", "9%"};
{ 7, 39716, "", "=q4=Shield of Assimilation", "=ds=#w8#", "", "24%"};
{ 8, 40265, "", "=q4=Arrowsong", "=ds=#w2#", "", "19%"};
{ 9, 40346, "", "=q4=Final Voyage", "=ds=#w3#", "", "1%"};
@@ -3313,7 +3313,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 40298, "", "=q4=Faceguard of the Succumbed", "=ds=#s1#, #a4#", "", "9%"};
{ 8, 40294, "", "=q4=Riveted Abomination Leggings", "=ds=#s11#, #a4#", "", "8%"};
{ 9, 40297, "", "=q4=Sabatons of Endurance", "=ds=#s12#, #a4#", "", "17%"};
{ 10, 40300, "", "=q4=Spire of Sunset", "=ds=#w9#", "", "9%"};
{ 10, 40300, "", "=q4=Spire of Sunset", "=ds=#h2#, #w9#", "", "9%"};
{ 16, 40634, "", "=q4=Legplates of the Lost Conqueror", "=ds=#e15#", "", "56%"};
{ 17, 40635, "", "=q4=Legplates of the Lost Protector", "=ds=#e15#", "", "58%"};
{ 18, 40636, "", "=q4=Legplates of the Lost Vanquisher", "=ds=#e15#", "", "76%"};
@@ -3545,7 +3545,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 39397, "", "=q4=Pauldrons of Havoc", "=ds=#s3#, #a3#", "", "12%"};
{ 3, 39395, "", "=q4=Thane's Tainted Greathelm", "=ds=#s1#, #a4#", "", "12%"};
{ 4, 39393, "", "=q4=Claymore of Ancient Power", "=ds=#h2#, #w10#", "", "12%"};
{ 5, 39394, "", "=q4=Charmed Cierge", "=ds=#w9#", "", "12%"};
{ 5, 39394, "", "=q4=Charmed Cierge", "=ds=#h2#, #w9#", "", "12%"};
{ 16, 40610, "", "=q4=Chestguard of the Lost Conqueror", "=ds=#e15#", "", "18%"};
{ 17, 40611, "", "=q4=Chestguard of the Lost Protector", "=ds=#e15#", "", "19%"};
{ 18, 40612, "", "=q4=Chestguard of the Lost Vanquisher", "=ds=#e15#", "", "25%"};
@@ -3560,7 +3560,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 40350, "", "=q4=Urn of Lost Memories", "=ds=#s15#", "", "10%"};
{ 6, 40345, "", "=q4=Broken Promise", "=ds=#h1#, #w10#", "", "10%"};
{ 8, 40343, "", "=q4=Armageddon", "=ds=#h2#, #w10#", "", "9%"};
{ 7, 40348, "", "=q4=Damnation", "=ds=#w9#", "", "10%"};
{ 7, 40348, "", "=q4=Damnation", "=ds=#h2#, #w9#", "", "10%"};
{ 9, 40346, "", "=q4=Final Voyage", "=ds=#w3#", "", "10%"};
{ 16, 40625, "", "=q4=Breastplate of the Lost Conqueror", "=ds=#e15#", "", "30%"};
{ 17, 40626, "", "=q4=Breastplate of the Lost Protector", "=ds=#e15#", "", "30%"};
@@ -3623,7 +3623,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 39246, "", "=q4=Amulet of Autopsy", "=ds=#s2#", "", "9%"};
{ 8, 39250, "", "=q4=Ring of Holy Cleansing", "=ds=#s13#", "", "10%"};
{ 9, 39245, "", "=q4=Demise", "=ds=#h2#, #w6#", "", "9%"};
{ 10, 39255, "", "=q4=Staff of the Plague Beast", "=ds=#w9#", "", "9%"};
{ 10, 39255, "", "=q4=Staff of the Plague Beast", "=ds=#h2#, #w9#", "", "9%"};
Prev = "Naxx80Noth";
Next = "Naxx80Loatheb";
};
@@ -3652,7 +3652,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 21, 40256, "", "=q4=Grim Toll", "=ds=#s14#", "", "11%"};
{ 22, 40207, "", "=q4=Sigil of Awareness", "=ds=#s16#, #w21#", "", "9%"};
{ 23, 40208, "", "=q4=Cryptfiend's Bite", "=ds=#w7#", "", "10%"};
{ 24, 40233, "", "=q4=The Undeath Carrier", "=ds=#w9#", "", "9%"};
{ 24, 40233, "", "=q4=The Undeath Carrier", "=ds=#h2#, #w9#", "", "9%"};
Prev = "Naxx80Noth25Man";
Next = "Naxx80Loatheb25Man";
};
@@ -3662,7 +3662,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 39260, "", "=q4=Helm of the Corrupted Mind", "=ds=#s1#, #a4#", "", "10%"};
{ 3, 39258, "", "=q4=Legplates of Inescapable Death", "=ds=#s11#, #a4#", "", "10%"};
{ 4, 39257, "", "=q4=Loatheb's Shadow", "=ds=#s14#", "", "10%"};
{ 5, 39256, "", "=q4=Sulfur Stave", "=ds=#w9#", "", "10%"};
{ 5, 39256, "", "=q4=Sulfur Stave", "=ds=#h2#, #w9#", "", "10%"};
{ 16, 40622, "", "=q4=Spaulders of the Lost Conqueror", "=ds=#e15#", "", "29%"};
{ 17, 40623, "", "=q4=Spaulders of the Lost Protector", "=ds=#e15#", "", "30%"};
{ 18, 40624, "", "=q4=Spaulders of the Lost Vanquisher", "=ds=#e15#", "", "38%"};
@@ -3740,7 +3740,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 39420, "", "=q4=Anarchy", "=ds=#h1#, #w4#", "", "18%"};
{ 6, 39417, "", "=q4=Death's Bite", "=ds=#h2#, #w1#", "", "18%"};
{ 7, 39423, "", "=q4=Hammer of the Astral Plane", "=ds=#h3#, #w6#", "", "18%"};
{ 8, 39422, "", "=q4=Staff of the Plaguehound", "=ds=#w9#", "", "19%"};
{ 8, 39422, "", "=q4=Staff of the Plaguehound", "=ds=#h2#, #w9#", "", "19%"};
{ 9, 39426, "", "=q4=Wand of the Archlich", "=ds=#w12#", "", "19%"};
{ 10, 39419, "", "=q4=Nerubian Conquerer", "=ds=#w5#", "", "19%"};
{ 16, 40616, "", "=q4=Helm of the Lost Conqueror", "=ds=#e15#", "", "28%"};
@@ -3762,7 +3762,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 9, 40402, "", "=q4=Last Laugh", "=ds=#h1#, #w1#", "", "18%"};
{ 10, 40384, "", "=q4=Betrayer of Humanity", "=ds=#h2#, #w1#", "", "17%"};
{ 11, 40395, "", "=q4=Torch of Holy Fire", "=ds=#h3#, #w6#", "", "18%"};
{ 12, 40388, "", "=q4=Journey's End", "=ds=#w9#", "", "18%"};
{ 12, 40388, "", "=q4=Journey's End", "=ds=#h2#, #w9#", "", "18%"};
{ 13, 40401, "", "=q4=Voice of Reason", "=ds=#w8#", "", "17%"};
{ 14, 40400, "", "=q4=Wall of Terror", "=ds=#w8#", "", "18%"};
{ 15, 40385, "", "=q4=Envoy of Mortality", "=ds=#w5#", "", "17%"};
@@ -3836,7 +3836,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 40433, "", "=q4=Wyrmrest Band", "=ds=#s13#", "", "7%"};
{ 8, 40431, "", "=q4=Fury of the Five Flights", "=ds=#s14#", "", "17%"};
{ 9, 40432, "", "=q4=Illustration of the Dragon Soul", "=ds=#s14#", "", "19%"};
{ 10, 40455, "", "=q4=Staff of Restraint", "=ds=#w9#", "", "19%"};
{ 10, 40455, "", "=q4=Staff of Restraint", "=ds=#h2#, #w9#", "", "19%"};
{ 11, 43345, "", "=q4=Dragon Hide Bag", "=ds=#e1#", "", "100%"};
{ 12, 43346, "", "=q4=Large Satchel of Spoils", "", "", "100%"};
{ 13, 40628, "", "=q4=Gauntlets of the Lost Conqueror", "=ds=#e15#", "", "51%"};
@@ -3869,7 +3869,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 40474, "", "=q4=Surge Needle Ring", "=ds=#s13#", "", "10%"};
{ 6, 40491, "", "=q4=Hailstorm", "=ds=#h1#, #w10#", "", "11%"};
{ 7, 40488, "", "=q4=Ice Spire Scepter", "=ds=#h3#, #w6#", "", "12%"};
{ 8, 40489, "", "=q4=Greatstaff of the Nexus", "=ds=#w9#", "", "12%"};
{ 8, 40489, "", "=q4=Greatstaff of the Nexus", "=ds=#h2#, #w9#", "", "12%"};
{ 9, 40497, "", "=q4=Black Ice", "=ds=#w7#", "", "10%"};
{ 10, 40475, "", "=q4=Barricade of Eternity", "=ds=#w8#", "", "11%"};
{ 11, 43952, "", "=q4=Reins of the Azure Drake", "=ds=#e12#", "", "1%"};
@@ -4030,7 +4030,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 14, 45158, "", "=q4=Heart of Iron", "=ds=#s14#", "", "19%"};
{ 15, 45169, "", "=q4=Totem of the Dancing Flame", "=ds=#s16#, #w15#", "", "21%"};
{ 16, 45165, "", "=q4=Worldcarver", "=ds=#h2#, #w1#", "", "19%"};
{ 17, 45171, "", "=q4=Intensity", "=ds=#w9#", "", "20%"};
{ 17, 45171, "", "=q4=Intensity", "=ds=#h2#, #w9#", "", "20%"};
{ 18, 45170, "", "=q4=Scepter of Creation", "=ds=#w12#", "", "21%"};
Prev = "UlduarRazorscale25Man";
Next = "UlduarDeconstructor25Man";
@@ -4073,7 +4073,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 14, 45254, "", "=q4=Sigil of the Vengeful Heart", "=ds=#s16#, #w21#", "", "20%"};
{ 15, 45255, "", "=q4=Thunderfall Totem", "=ds=#s16#, #w15#", "", "20%"};
{ 16, 45246, "", "=q4=Golem-Shard Sticker", "=ds=#h1#, #w4#", "", "19%"};
{ 17, 45256, "", "=q4=Twisted Visage", "=ds=#w9#", "", "19%"};
{ 17, 45256, "", "=q4=Twisted Visage", "=ds=#h2#, #w9#", "", "19%"};
{ 18, 45257, "", "=q4=Quartz Crystal Wand", "=ds=#w12#", "", "20%"};
{ 20, 0, "INV_Box_01", "=q6=#j53#", ""};
{ 21, 45446, "", "=q4=Grasps of Reason", "=ds=#s8#, #a1#", "", "0.16%"};
@@ -4124,7 +4124,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 15, 45236, "", "=q4=Unblinking Eye", "=ds=#s2#", "", "19%"};
{ 16, 45235, "", "=q4=Radiant Seal", "=ds=#s13#", "", "20%"};
{ 17, 45233, "", "=q4=Rune Edge", "=ds=#h2#, #w10#", "", "20%"};
{ 18, 45234, "", "=q4=Rapture", "=ds=#w9#", "", "19%"};
{ 18, 45234, "", "=q4=Rapture", "=ds=#h2#, #w9#", "", "19%"};
{ 20, 0, "INV_Box_01", "=q6=#j53#", ""};
{ 21, 45242, "", "=q4=Drape of Mortal Downfall", "=ds=#s4#", "", "21%"};
{ 22, 45245, "", "=q4=Shoulderpads of the Intruder", "=ds=#s3#, #a2#", "", "14%"};
@@ -4147,7 +4147,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 45702, "", "=q4=Emerald Signet Ring", "=ds=#s13#", "", "18%"};
{ 8, 45703, "", "=q4=Spark of Hope", "=ds=#s14#", "", "17%"};
{ 9, 45700, "", "=q4=Stoneguard", "=ds=#h1#, #w10#", "", "19%"};
{ 10, 45695, "", "=q4=Spire of Withering Dreams", "=ds=#w9#", "", "21%"};
{ 10, 45695, "", "=q4=Spire of Withering Dreams", "=ds=#h2#, #w9#", "", "21%"};
Prev = "UlduarIronCouncil";
Next = "UlduarAlgalon";
};
@@ -4212,7 +4212,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 10, 45620, "", "=q4=Starshard Edge", "=ds=#h3#, #w4#"};
{ 11, 45607, "", "=q4=Fang of Oblivion", "=ds=#h1#, #w4#", "", "18%"};
{ 12, 45612, "", "=q4=Constellus", "=ds=#h3#, #w6#", "", "11%"};
{ 13, 45613, "", "=q4=Dreambinder", "=ds=#w9#", "", "1%"};
{ 13, 45613, "", "=q4=Dreambinder", "=ds=#h2#, #w9#", "", "1%"};
{ 14, 45587, "", "=q4=Bulwark of Algalon", "=ds=#w8#"};
{ 15, 45570, "", "=q4=Skyforge Crossbow", "=ds=#w3#", "", "1%"};
{ 16, 45609, "", "=q4=Comet's Trail", "=ds=#s14#"};
@@ -4274,7 +4274,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 0, "INV_Box_01", "=q6=#j53#", ""};
{ 17, 45888, "", "=q4=Bitter Cold Armguards", "=ds=#s8#, #a4#", "", "18%"};
{ 18, 45876, "", "=q4=Shiver", "=ds=#h1#, #w6#", "", "16%"};
{ 19, 45886, "", "=q4=Icecore Staff", "=ds=#w9#", "", "20%"};
{ 19, 45886, "", "=q4=Icecore Staff", "=ds=#h2#, #w9#", "", "20%"};
{ 20, 45887, "", "=q4=Ice Layered Barrier", "=ds=#w8#", "", "18%"};
{ 21, 45877, "", "=q4=The Boreal Guard", "=ds=#w8#", "", "17%"};
{ 23, 45786, "", "=q1=Hodir's Sigil", "=ds=#m3#", "", "23%"};
@@ -4299,7 +4299,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 45460, "", "=q4=Bindings of Winter Gale", "=ds=#s8#, #a3#", "", "12%"};
{ 20, 45459, "", "=q4=Frigid Strength of Hodir", "=ds=#s2#", "", "13%"};
{ 21, 45612, "", "=q4=Constellus", "=ds=#h3#, #w6#", "", "11%"};
{ 22, 45457, "", "=q4=Staff of Endless Winter", "=ds=#w9#", "", "19%"};
{ 22, 45457, "", "=q4=Staff of Endless Winter", "=ds=#h2#, #w9#", "", "19%"};
{ 24, 45815, "", "=q1=Hodir's Sigil", "=ds=#m3#", "", "21%"};
Prev = "UlduarAuriaya25Man";
Next = "UlduarThorim25Man";
@@ -4353,7 +4353,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 45941, "", "=q4=Chestguard of the Lasher", "=ds=#s5#, #a3#", "", "15%"};
{ 3, 45935, "", "=q4=Ironbark Faceguard", "=ds=#s1#, #a4#", "", "17%"};
{ 4, 45936, "", "=q4=Legplates of Flourishing Resolve", "=ds=#s11#, #a4#", "", "15%"};
{ 5, 45934, "", "=q4=Unraveling Reach", "=ds=#w9#", "", "18%"};
{ 5, 45934, "", "=q4=Unraveling Reach", "=ds=#h2#, #w9#", "", "18%"};
{ 7, 45644, "", "=q4=Gloves of the Wayward Conqueror", "=ds=#e15#", "", "25%"};
{ 8, 45645, "", "=q4=Gloves of the Wayward Protector", "=ds=#e15#", "", "23%"};
{ 9, 45646, "", "=q4=Gloves of the Wayward Vanquisher", "=ds=#e15#", "", "30%"};
@@ -4376,7 +4376,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 45482, "", "=q4=Leggings of the Lifetender", "=ds=#s11#, #a2#", "", "17%"};
{ 6, 45481, "", "=q4=Gauntlets of Ruthless Reprisal", "=ds=#s9#, #a4#", "", "16%"};
{ 7, 45480, "", "=q4=Nymph Heart Charm", "=ds=#s2#", "", "13%"};
{ 8, 45479, "", "=q4=The Lifebinder", "=ds=#w9#", "", "19%"};
{ 8, 45479, "", "=q4=The Lifebinder", "=ds=#h2#, #w9#", "", "19%"};
{ 10, 45653, "", "=q4=Legplates of the Wayward Conqueror", "=ds=#e15#", "", "43%"};
{ 11, 45654, "", "=q4=Legplates of the Wayward Protector", "=ds=#e15#", "", "52%"};
{ 12, 45655, "", "=q4=Legplates of the Wayward Vanquisher", "=ds=#e15#", "", "69%"};
@@ -4387,7 +4387,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 19, 45487, "", "=q4=Handguards of Revitalization", "=ds=#s9#, #a4#", "", "0.34%"};
{ 20, 45485, "", "=q4=Bronze Pendant of the Vanir", "=ds=#s2#"};
{ 21, 45484, "", "=q4=Bladetwister", "=ds=#h1#, #w4#", "", "0.27%"};
{ 22, 45613, "", "=q4=Dreambinder", "=ds=#w9#", "", "1%"};
{ 22, 45613, "", "=q4=Dreambinder", "=ds=#h2#, #w9#", "", "1%"};
{ 24, 45814, "", "=q1=Freya's Sigil", "=ds=#m3#", "", "0.27%"};
Prev = "UlduarThorim25Man";
Next = "UlduarMimiron25Man";
@@ -4453,7 +4453,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 18, 46034, "", "=q4=Leggings of Profound Darkness", "=ds=#s11#, #a1#", "", "3%"};
{ 19, 46036, "", "=q4=Void Sabre", "=ds=#h1#, #w10#", "", "2%"};
{ 20, 46035, "", "=q4=Aesuga, Hand of the Ardent Champion", "=ds=#h1#, #w6#", "", "3%"};
{ 21, 46033, "", "=q4=Tortured Earth", "=ds=#w9#", "", "4%"};
{ 21, 46033, "", "=q4=Tortured Earth", "=ds=#h2#, #w9#", "", "4%"};
Prev = "UlduarMimiron";
Next = "UlduarYoggSaron";
};
@@ -4495,7 +4495,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 6, 46024, "", "=q4=Kingsbane", "=ds=#h1#, #w4#", "", "10%"};
{ 7, 46016, "", "=q4=Abaddon", "=ds=#h2#, #w10#", "", "17%"};
{ 8, 46031, "", "=q4=Touch of Madness", "=ds=#h1#, #w1#", "", "25%"};
{ 9, 46025, "", "=q4=Devotion", "=ds=#w9#", "", "23%"};
{ 9, 46025, "", "=q4=Devotion", "=ds=#h2#, #w9#", "", "23%"};
{ 10, 46018, "", "=q4=Deliverance", "=ds=#w3#", "", "35%"};
{ 12, 45635, "", "=q4=Chestguard of the Wayward Conqueror", "=ds=#e15#", "", "52%"};
{ 13, 45636, "", "=q4=Chestguard of the Wayward Protector", "=ds=#e15#", "", "50%"};
@@ -4550,7 +4550,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 46343, "", "=q4=Fervor of the Protectorate", "=ds=#s2#", "", "2%"};
{ 8, 46339, "", "=q4=Mimiron's Repeater", "=ds=#w5#", "", "2%"};
{ 9, 46351, "", "=q4=Bloodcrush Cudgel", "=ds=#h1# #w6#", "", "2%"};
{ 10, 46350, "", "=q4=Pillar of Fortitude", "=ds=#w9#", "", "2%"};
{ 10, 46350, "", "=q4=Pillar of Fortitude", "=ds=#h2#, #w9#", "", "2%"};
{ 11, 46342, "", "=q4=Golemheart Longbow", "=ds=#w2#", "", "2%"};
Prev = "UlduarYoggSaron";
Next = "UlduarPatterns";
@@ -4960,7 +4960,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 10, 47742, "", "=q4=Chalice of Benedictus", "=ds=#s15#"};
{ 16, 47736, "", "=q4=Icefall Blade", "=ds=#h1#, #w4#"};
{ 17, 47737, "", "=q4=Reckoning", "=ds=#h2#, #w10#"};
{ 18, 47743, "", "=q4=Enlightenment", "=ds=#w9#"};
{ 18, 47743, "", "=q4=Enlightenment", "=ds=#h2#, #w9#"};
{ 19, 47740, "", "=q4=The Diplomat", "=ds=#w5#"};
Prev = "TrialoftheCrusaderFactionChampions_A";
Next = "TrialoftheCrusaderAnubarak_A";
@@ -4978,7 +4978,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 10, 47913, "", "=q4=Lightbane Focus", "=ds=#s15#"};
{ 16, 47886, "", "=q4=Nemesis Blade", "=ds=#h1#, #w4#"};
{ 17, 47884, "", "=q4=Edge of Agony", "=ds=#h2#, #w10#"};
{ 18, 47892, "", "=q4=Illumination", "=ds=#w9#"};
{ 18, 47892, "", "=q4=Illumination", "=ds=#h2#, #w9#"};
{ 19, 47883, "", "=q4=Widebarrel Flintlock", "=ds=#w5#"};
Prev = "TrialoftheCrusaderFactionChampions_H";
Next = "TrialoftheCrusaderAnubarak_H";
@@ -5000,7 +5000,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 14, 47138, "", "=q4=Chalice of Searing Light", "=ds=#s15#"};
{ 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
{ 18, 47104, "", "=q4=Twin Spike", "=ds=#h1#, #w4#"};
{ 19, 47114, "", "=q4=Lupine Longstaff", "=ds=#w9#"};
{ 19, 47114, "", "=q4=Lupine Longstaff", "=ds=#h2#, #w9#"};
Prev = "TrialoftheCrusaderFactionChampions25Man_A";
Next = "TrialoftheCrusaderAnubarak25Man_A";
};
@@ -5021,7 +5021,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 14, 47309, "", "=q4=Mystifying Charm", "=ds=#s15#"};
{ 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
{ 18, 47300, "", "=q4=Gouge of the Frigid Heart", "=ds=#h1#, #w4#"};
{ 19, 47302, "", "=q4=Twin's Pact", "=ds=#w9#"};
{ 19, 47302, "", "=q4=Twin's Pact", "=ds=#h2#, #w9#"};
Prev = "TrialoftheCrusaderFactionChampions25Man_H";
Next = "TrialoftheCrusaderAnubarak25Man_H";
};
@@ -5041,7 +5041,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 13, 47809, "", "=q4=Argent Resolve", "=ds=#h3#, #w6#" };
{ 14, 47816, "", "=q4=The Grinder", "=ds=#h1#, #w6#" };
{ 16, 47834, "", "=q4=Fordragon Blades", "=ds=#w7#" };
{ 17, 47815, "", "=q4=Cold Convergence", "=ds=#w9#" };
{ 17, 47815, "", "=q4=Cold Convergence", "=ds=#h2#, #w9#" };
{ 18, 47835, "", "=q4=Bulwark of the Royal Guard", "=ds=#w8#" };
{ 19, 47812, "", "=q4=Vigilant Ward", "=ds=#w8#" };
{ 20, 47741, "", "=q4=Baelgun's Heavy Crossbow", "=ds=#w3#" };
@@ -5064,7 +5064,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 13, 47894, "", "=q4=Mace of the Earthborn Chieftain", "=ds=#h3#, #w6#" };
{ 14, 47905, "", "=q4=Blackhorn Bludgeon", "=ds=#h1#, #w6#" };
{ 16, 47911, "", "=q4=Anguish", "=ds=#w7#" };
{ 17, 47900, "", "=q4=Perdition", "=ds=#w9#" };
{ 17, 47900, "", "=q4=Perdition", "=ds=#h2#, #w9#" };
{ 18, 47910, "", "=q4=Aegis of the Coliseum", "=ds=#w8#" };
{ 19, 47895, "", "=q4=Pride of the Kor'kron", "=ds=#w8#" };
{ 20, 47907, "", "=q4=Darkmaw Crossbow", "=ds=#w3#" };
@@ -5408,7 +5408,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 10, 47958, "", "=q4=Chalice of Benedictus", "=ds=#s15#"};
{ 16, 47953, "", "=q4=Icefall Blade", "=ds=#h1#, #w4#"};
{ 17, 47951, "", "=q4=Reckoning", "=ds=#h2#, #w10#"};
{ 18, 47960, "", "=q4=Enlightenment", "=ds=#w9#"};
{ 18, 47960, "", "=q4=Enlightenment", "=ds=#h2#, #w9#"};
{ 19, 47950, "", "=q4=The Diplomat", "=ds=#w5#"};
Prev = "TrialoftheCrusaderFactionChampionsHEROIC_A";
Next = "TrialoftheCrusaderAnubarakHEROIC_A";
@@ -5426,7 +5426,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 10, 48032, "", "=q4=Lightbane Focus", "=ds=#s15#"};
{ 16, 48025, "", "=q4=Nemesis Blade", "=ds=#h1#, #w4#"};
{ 17, 48023, "", "=q4=Edge of Agony", "=ds=#h2#, #w10#"};
{ 18, 48036, "", "=q4=Illumination", "=ds=#w9#"};
{ 18, 48036, "", "=q4=Illumination", "=ds=#h2#, #w9#"};
{ 19, 48022, "", "=q4=Widebarrel Flintlock", "=ds=#w5#"};
Prev = "TrialoftheCrusaderFactionChampionsHEROIC_H";
Next = "TrialoftheCrusaderAnubarakHEROIC_H";
@@ -5448,7 +5448,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 14, 47146, "", "=q4=Chalice of Searing Light", "=ds=#s15#"};
{ 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
{ 18, 47113, "", "=q4=Twin Spike", "=ds=#h1#, #w4#"};
{ 19, 47130, "", "=q4=Lupine Longstaff", "=ds=#w9#"};
{ 19, 47130, "", "=q4=Lupine Longstaff", "=ds=#h2#, #w9#"};
Prev = "TrialoftheCrusaderFactionChampions25ManHEROIC_A";
Next = "TrialoftheCrusaderAnubarak25ManHEROIC_A";
};
@@ -5469,7 +5469,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 14, 47470, "", "=q4=Mystifying Charm", "=ds=#s15#"};
{ 16, 47242, "", "=q4=Trophy of the Crusade", "=ds=#e15#"};
{ 18, 47461, "", "=q4=Gouge of the Frigid Heart", "=ds=#h1#, #w4#"};
{ 19, 47463, "", "=q4=Twin's Pact", "=ds=#w9#"};
{ 19, 47463, "", "=q4=Twin's Pact", "=ds=#h2#, #w9#"};
Prev = "TrialoftheCrusaderFactionChampions25ManHEROIC_H";
Next = "TrialoftheCrusaderAnubarak25ManHEROIC_H";
};
@@ -5489,7 +5489,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 13, 47962, "", "=q4=Argent Resolve", "=ds=#h3#, #w6#" };
{ 14, 47973, "", "=q4=The Grinder", "=ds=#h1#, #w6#" };
{ 16, 47979, "", "=q4=Fordragon Blades", "=ds=#w7#" };
{ 17, 47968, "", "=q4=Cold Convergence", "=ds=#w9#" };
{ 17, 47968, "", "=q4=Cold Convergence", "=ds=#h2#, #w9#" };
{ 18, 47978, "", "=q4=Bulwark of the Royal Guard", "=ds=#w8#" };
{ 19, 47963, "", "=q4=Vigilant Ward", "=ds=#w8#" };
{ 20, 47975, "", "=q4=Baelgun's Heavy Crossbow", "=ds=#w3#" };
@@ -5512,7 +5512,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 13, 48039, "", "=q4=Mace of the Earthborn Chieftain", "=ds=#h3#, #w6#" };
{ 14, 48050, "", "=q4=Blackhorn Bludgeon", "=ds=#h1#, #w6#" };
{ 16, 48056, "", "=q4=Anguish", "=ds=#w7#" };
{ 17, 48045, "", "=q4=Perdition", "=ds=#w9#" };
{ 17, 48045, "", "=q4=Perdition", "=ds=#h2#, #w9#" };
{ 18, 48055, "", "=q4=Aegis of the Coliseum", "=ds=#w8#" };
{ 19, 48040, "", "=q4=Pride of the Kor'kron", "=ds=#w8#" };
{ 20, 48052, "", "=q4=Darkmaw Crossbow", "=ds=#w3#" };
@@ -5581,7 +5581,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 48713, "", "=q4=Lothar's Edge", "=ds=#h2#, #w1#"};
{ 8, 48709, "", "=q4=Heartcrusher", "=ds=#h3#, #w6#"};
{ 9, 48714, "", "=q4=Honor of the Fallen", "=ds=#h1#, #w6#"};
{ 10, 48710, "", "=q4=Paragon's Breadth", "=ds=#w9#"};
{ 10, 48710, "", "=q4=Paragon's Breadth", "=ds=#h2#, #w9#"};
{ 11, 48711, "", "=q4=Rhok'shalla, the Shadow's Bane", "=ds=#w2#"};
{ 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Mad Skill (45)"]};
{ 17, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#"};
@@ -5605,7 +5605,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 48695, "", "=q4=Mor'kosh, the Bloodreaver", "=ds=#h2#, #w1#" };
{ 8, 48693, "", "=q4=Heartsmasher", "=ds=#h3#, #w6#" };
{ 9, 48699, "", "=q4=Blood and Glory", "=ds=#h1#, #w6#" };
{ 10, 48705, "", "=q4=Attrition", "=ds=#w9#" };
{ 10, 48705, "", "=q4=Attrition", "=ds=#h2#, #w9#" };
{ 11, 48697, "", "=q4=Frenzystrike Longbow", "=ds=#w2#"};
{ 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Mad Skill (45)"]};
{ 17, 47242, "", "=q4=Trophy of the Crusade", "=ds=2x #e15#"};
@@ -5631,7 +5631,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 9, 47515, "", "=q4=Decimation", "=ds=#h2#, #w10#"};
{ 10, 47526, "", "=q4=Remorseless", "=ds=#h1#, #w6#"};
{ 11, 47519, "", "=q4=Catastrophe", "=ds=#h2#, #w6#"};
{ 12, 47524, "", "=q4=Clemency", "=ds=#w9#"};
{ 12, 47524, "", "=q4=Clemency", "=ds=#h2#, #w9#"};
{ 13, 47521, "", "=q4=BRK-1000", "=ds=#w5#"};
{ 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Mad Skill (45)"]};
{ 17, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#"};
@@ -5658,7 +5658,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 9, 47516, "", "=q4=Fleshrender", "=ds=#h2#, #w10#"};
{ 10, 47528, "", "=q4=Cudgel of the Damned", "=ds=#h1#, #w6#"};
{ 11, 47520, "", "=q4=Grievance", "=ds=#h2#, #w6#"};
{ 12, 47525, "", "=q4=Sufferance", "=ds=#w9#"};
{ 12, 47525, "", "=q4=Sufferance", "=ds=#h2#, #w9#"};
{ 13, 47523, "", "=q4=Fezzik's Autocannon", "=ds=#w5#"};
{ 16, 0, "INV_Box_01", "=q6="..AL["Bonus Loot"], "=q5="..AL["A Tribute to Mad Skill (45)"]};
{ 17, 47557, "", "=q4=Regalia of the Grand Conqueror", "=ds=#e15#"};
@@ -5815,8 +5815,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 49799, "", "=q4=Coil of Missing Gems", "=ds=#s2#"};
{ 17, 49800, "", "=q4=Spiteful Signet", "=ds=#s13#"};
{ 19, 49789, "", "=q4=Heartshiver", "=ds=#h1#, #w4#"};
{ 20, 49790, "", "=q4=Blood Boil Lancet", "=ds=#w9#"};
{ 21, 49793, "", "=q4=Tower of the Mouldering Corpse", "=ds=#w9#"};
{ 20, 49790, "", "=q4=Blood Boil Lancet", "=ds=#h2#, #w9#"};
{ 21, 49793, "", "=q4=Tower of the Mouldering Corpse", "=ds=#h2#, #w9#"};
Prev = "FoSBronjahm";
Next = "FHTrashMobs";
};
@@ -5849,7 +5849,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 49804, "", "=q4=Polished Mirror Helm", "=ds=#s1#, #a3#"};
{ 5, 49803, "", "=q4=Ring of Carnelian and Bone", "=ds=#s13#"};
{ 6, 49802, "", "=q4=Garfrost's Two-Ton Hammer", "=ds=#h2#, #w6#"};
{ 7, 49801, "", "=q4=Unspeakable Secret", "=ds=#w9#"};
{ 7, 49801, "", "=q4=Unspeakable Secret", "=ds=#h2#, #w9#"};
{ 16, 0, "INV_Box_01", "=q6=#j3#", ""};
{ 17, 50233, "", "=q4=Spurned Val'kyr Shoulderguards", "=ds=#s3#, #a3#"};
{ 18, 50234, "", "=q4=Shoulderplates of Frozen Blood", "=ds=#s3#, #a4#"};
@@ -5908,7 +5908,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 50259, "", "=q4=Nevermelting Ice Crystal", "=ds=#s14#"};
{ 19, 50268, "", "=q4=Rimefang's Claw", "=ds=#h1#, #w10#"};
{ 20, 50267, "", "=q4=Tyrannical Beheader", "=ds=#h2#, #w1#"};
{ 21, 50273, "", "=q4=Engraved Gargoyle Femur", "=ds=#w9#"};
{ 21, 50273, "", "=q4=Engraved Gargoyle Femur", "=ds=#h2#, #w9#"};
Prev = "PoSKrickIck";
Next = "FHTrashMobs";
};
@@ -6085,7 +6085,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 12, 49985, "", "=q4=Juggernaut Band", "=ds=#s13#"};
{ 13, 49990, "", "=q4=Ring of Maddening Whispers", "=ds=#s13#"};
{ 16, 49982, "", "=q4=Heartpierce", "=ds=#h1#, #w4#"};
{ 17, 49992, "", "=q4=Nibelung", "=ds=#w9#"};
{ 17, 49992, "", "=q4=Nibelung", "=ds=#h2#, #w9#"};
{ 18, 50034, "", "=q4=Zod's Repeating Longbow", "=ds=#w2#"};
{ 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
{ 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
@@ -6144,7 +6144,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 50809, "", "=q4=Soulcleave Pendant", "=ds=#s2#"};
{ 17, 50803, "", "=q4=Saurfang's Cold-Forged Band", "=ds=#s13#"};
{ 19, 50798, "", "=q4=Ramaladni's Blade of Culling", "=ds=#h2#, #w1#"};
{ 20, 50805, "", "=q4=Mag'hari Chieftain's Staff", "=ds=#w9#"};
{ 20, 50805, "", "=q4=Mag'hari Chieftain's Staff", "=ds=#h2#, #w9#"};
Prev = "ICCGunshipBattle";
Next = "ICCFestergut";
};
@@ -6180,7 +6180,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 50852, "", "=q4=Precious's Putrid Collar", "=ds=#s2#"};
{ 17, 50986, "", "=q4=Signet of Putrefaction", "=ds=#s13#"};
{ 19, 50810, "", "=q4=Gutbuster", "=ds=#h1#, #w6#"};
{ 20, 50966, "", "=q4=Abracadaver", "=ds=#w9#"};
{ 20, 50966, "", "=q4=Abracadaver", "=ds=#h2#, #w9#"};
Prev = "ICCSaurfang";
Next = "ICCRotface";
};
@@ -6201,7 +6201,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 50061, "", "=q4=Holiday's Grace", "=ds=#s2#"};
{ 17, 50414, "", "=q4=Might of Blight", "=ds=#s13#"};
{ 19, 50035, "", "=q4=Black Bruise", "=ds=#h3#, #w13#"};
{ 20, 50040, "", "=q4=Distant Land", "=ds=#w9#"};
{ 20, 50040, "", "=q4=Distant Land", "=ds=#h2#, #w9#"};
{ 22, 50226, "", "=q4=Festergut's Acidic Blood", "=ds=#m3#"};
{ 24, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
{ 25, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
@@ -6220,7 +6220,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 9, 51001, "", "=q4=Rotface's Rupturing Ring", "=ds=#s13#"};
{ 16, 51003, "", "=q4=Abomination Knuckles", "=ds=#h3#, #w13#"};
{ 17, 51004, "", "=q4=Lockjaw", "=ds=#h3#, #w6#"};
{ 18, 50998, "", "=q4=Shaft of Glacial Ice", "=ds=#w9#"};
{ 18, 50998, "", "=q4=Shaft of Glacial Ice", "=ds=#h2#, #w9#"};
{ 19, 50999, "", "=q4=Gluth's Fetching Knife", "=ds=#w11#"};
Prev = "ICCFestergut";
Next = "ICCPutricide";
@@ -6346,7 +6346,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 50180, "", "=q4=Lana'thel's Chain of Flagellation", "=ds=#s2#"};
{ 3, 50354, "", "=q4=Bauble of True Blood", "=ds=#s14#"};
{ 4, 50178, "", "=q4=Bloodfall", "=ds=#w7#"};
{ 5, 50181, "", "=q4=Dying Light", "=ds=#w9#"};
{ 5, 50181, "", "=q4=Dying Light", "=ds=#h2#, #w9#"};
{ 6, 50065, "", "=q4=Icecrown Glacial Wall", "=ds=#w8#"};
{ 8, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
{ 9, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
@@ -6372,7 +6372,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 8, 51563, "", "=q4=Taiga Bindings", "=ds=#s8#, #a4#"};
{ 9, 51564, "", "=q4=Ironrope Belt of Ymirjar", "=ds=#s10#, #a4#"};
{ 16, 51562, "", "=q4=Oxheart", "=ds=#h2#, #w6#"};
{ 17, 51582, "", "=q4=Sister Svalna's Aether Staff", "=ds=#w9#"};
{ 17, 51582, "", "=q4=Sister Svalna's Aether Staff", "=ds=#h2#, #w9#"};
{ 18, 51561, "", "=q4=Dreamhunter's Carbine", "=ds=#w5#"};
Prev = "ICCLanathel";
Next = "ICCSindragosa";
@@ -6445,8 +6445,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 51795, "", "=q4=Troggbane, Axe of the Frostborne King", "=ds=#h1#, #w1#"};
{ 5, 51798, "", "=q4=Valius, Gavel of the Lightbringer", "=ds=#h3#, #w6#"};
{ 6, 51796, "", "=q4=Warmace of Menethil", "=ds=#h2#, #w6#"};
{ 7, 51799, "", "=q4=Halion, Staff of Forgotten Love", "=ds=#w9#"};
{ 8, 51797, "", "=q4=Tainted Twig of Nordrassil", "=ds=#w9#"};
{ 7, 51799, "", "=q4=Halion, Staff of Forgotten Love", "=ds=#h2#, #w9#"};
{ 8, 51797, "", "=q4=Tainted Twig of Nordrassil", "=ds=#h2#, #w9#"};
{ 9, 51802, "", "=q4=Windrunner's Heartseeker", "=ds=#w3#"};
Prev = "ICCSindragosa";
Next = "ICCTrash25Man";
@@ -6460,7 +6460,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 50428, "", "=q4=Royal Scepter of Terenas II", "=ds=#h3#, #w6#"};
{ 6, 49997, "", "=q4=Mithrios, Bronzebeard's Legacy", "=ds=#h1#, #w6#"};
{ 7, 50425, "", "=q4=Oathbinder, Charge of the Ranger-General", "=ds=#w7#"};
{ 8, 50429, "", "=q4=Archus, Greatstaff of Antonidas", "=ds=#w9#"};
{ 8, 50429, "", "=q4=Archus, Greatstaff of Antonidas", "=ds=#h2#, #w9#"};
{ 9, 49981, "", "=q4=Fal'inrush, Defender of Quel'thalas", "=ds=#w3#"};
{ 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
{ 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
@@ -6558,7 +6558,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 12, 50642, "", "=q4=Juggernaut Band", "=ds=#s13#"};
{ 13, 50644, "", "=q4=Ring of Maddening Whispers", "=ds=#s13#"};
{ 16, 50641, "", "=q4=Heartpierce", "=ds=#h1#, #w4#"};
{ 17, 50648, "", "=q4=Nibelung", "=ds=#w9#"};
{ 17, 50648, "", "=q4=Nibelung", "=ds=#h2#, #w9#"};
{ 18, 50638, "", "=q4=Zod's Repeating Longbow", "=ds=#w2#"};
{ 20, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
{ 21, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
@@ -6620,7 +6620,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
{ 18, 52025, "", "=q4=Vanquisher's Mark of Sanctification", "=ds=#e15#"};
{ 20, 51905, "", "=q4=Ramaladni's Blade of Culling", "=ds=#h2#, #w1#"};
{ 21, 51898, "", "=q4=Mag'hari Chieftain's Staff", "=ds=#w9#"};
{ 21, 51898, "", "=q4=Mag'hari Chieftain's Staff", "=ds=#h2#, #w9#"};
Prev = "ICCGunshipBattleHEROIC";
Next = "ICCFestergutHEROIC";
};
@@ -6659,7 +6659,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 51890, "", "=q4=Precious's Putrid Collar", "=ds=#s2#"};
{ 17, 51884, "", "=q4=Signet of Putrefaction", "=ds=#s13#"};
{ 19, 51893, "", "=q4=Gutbuster", "=ds=#h1#, #w6#"};
{ 20, 51887, "", "=q4=Abracadaver", "=ds=#w9#"};
{ 20, 51887, "", "=q4=Abracadaver", "=ds=#h2#, #w9#"};
Prev = "ICCSaurfangHEROIC";
Next = "ICCRotfaceHEROIC";
};
@@ -6680,7 +6680,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 16, 50700, "", "=q4=Holiday's Grace", "=ds=#s2#"};
{ 17, 50693, "", "=q4=Might of Blight", "=ds=#s13#"};
{ 19, 50692, "", "=q4=Black Bruise", "=ds=#h3#, #w13#"};
{ 20, 50695, "", "=q4=Distant Land", "=ds=#w9#"};
{ 20, 50695, "", "=q4=Distant Land", "=ds=#h2#, #w9#"};
{ 22, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
{ 23, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
Prev = "ICCSaurfang25ManHEROIC";
@@ -6698,7 +6698,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 9, 51878, "", "=q4=Rotface's Rupturing Ring", "=ds=#s13#"};
{ 16, 51876, "", "=q4=Abomination Knuckles", "=ds=#h3#, #w13#"};
{ 17, 51875, "", "=q4=Lockjaw", "=ds=#h3#, #w6#"};
{ 18, 51881, "", "=q4=Shaft of Glacial Ice", "=ds=#w9#"};
{ 18, 51881, "", "=q4=Shaft of Glacial Ice", "=ds=#h2#, #w9#"};
{ 19, 51880, "", "=q4=Gluth's Fetching Knife", "=ds=#w11#"};
Prev = "ICCFestergutHEROIC";
Next = "ICCPutricideHEROIC";
@@ -6833,7 +6833,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 2, 50728, "", "=q4=Lana'thel's Chain of Flagellation", "=ds=#s2#"};
{ 3, 50726, "", "=q4=Bauble of True Blood", "=ds=#s14#"};
{ 4, 50727, "", "=q4=Bloodfall", "=ds=#w7#"};
{ 5, 50725, "", "=q4=Dying Light", "=ds=#w9#"};
{ 5, 50725, "", "=q4=Dying Light", "=ds=#h2#, #w9#"};
{ 6, 50729, "", "=q4=Icecrown Glacial Wall", "=ds=#w8#"};
{ 8, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
{ 9, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
@@ -6862,7 +6862,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 8, 51832, "", "=q4=Taiga Bindings", "=ds=#s8#, #a4#"};
{ 9, 51831, "", "=q4=Ironrope Belt of Ymirjar", "=ds=#s10#, #a4#"};
{ 16, 51833, "", "=q4=Oxheart", "=ds=#h2#, #w6#"};
{ 17, 51828, "", "=q4=Sister Svalna's Aether Staff", "=ds=#w9#"};
{ 17, 51828, "", "=q4=Sister Svalna's Aether Staff", "=ds=#h2#, #w9#"};
{ 18, 51834, "", "=q4=Dreamhunter's Carbine", "=ds=#w5#"};
Prev = "ICCLanathelHEROIC";
Next = "ICCSindragosaHEROIC";
@@ -6883,7 +6883,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 50622, "", "=q4=Devium's Eternally Cold Ring", "=ds=#s13#"};
{ 18, 50618, "", "=q4=Frostbrood Sapphire Ring", "=ds=#s13#"};
{ 20, 50621, "", "=q4=Lungbreaker", "=ds=#h1#, #w4#"};
{ 21, 50631, "", "=q4=Nightmare Ender", "=ds=#w9#"};
{ 21, 50631, "", "=q4=Nightmare Ender", "=ds=#h2#, #w9#"};
{ 23, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
{ 24, 49908, "", "=q4=Primordial Saronite", "=ds=#e8#"};
Prev = "ICCLanathel25ManHEROIC";
@@ -6940,8 +6940,8 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 4, 51947, "", "=q4=Troggbane, Axe of the Frostborne King", "=ds=#h1#, #w1#"};
{ 5, 51944, "", "=q4=Valius, Gavel of the Lightbringer", "=ds=#h3#, #w6#"};
{ 6, 51946, "", "=q4=Warmace of Menethil", "=ds=#h2#, #w6#"};
{ 7, 51943, "", "=q4=Halion, Staff of Forgotten Love", "=ds=#w9#"};
{ 8, 51945, "", "=q4=Tainted Twig of Nordrassil", "=ds=#w9#"};
{ 7, 51943, "", "=q4=Halion, Staff of Forgotten Love", "=ds=#h2#, #w9#"};
{ 8, 51945, "", "=q4=Tainted Twig of Nordrassil", "=ds=#h2#, #w9#"};
{ 9, 51940, "", "=q4=Windrunner's Heartseeker", "=ds=#w3#"};
{ 16, 52027, "", "=q4=Conqueror's Mark of Sanctification", "=ds=#e15#"};
{ 17, 52026, "", "=q4=Protector's Mark of Sanctification", "=ds=#e15#"};
@@ -6959,7 +6959,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 50734, "", "=q4=Royal Scepter of Terenas II", "=ds=#h3#, #w6#"};
{ 6, 50738, "", "=q4=Mithrios, Bronzebeard's Legacy", "=ds=#h1#, #w6#"};
{ 7, 50735, "", "=q4=Oathbinder, Charge of the Ranger-General", "=ds=#w7#"};
{ 8, 50731, "", "=q4=Archus, Greatstaff of Antonidas", "=ds=#w9#"};
{ 8, 50731, "", "=q4=Archus, Greatstaff of Antonidas", "=ds=#h2#, #w9#"};
{ 9, 50733, "", "=q4=Fal'inrush, Defender of Quel'thalas", "=ds=#w3#"};
{ 10, 50818, "", "=q4=Invincible's Reins", "=ds=#e12#"};
{ 12, 50274, "", "=q5=Shadowfrost Shard", "=ds=#m3#"};
@@ -7166,7 +7166,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 44179, "", "=q3=Mind-Expanding Leggings", "=ds=#s11#, #a2#"};
{ 18, 44176, "", "=q3=Girdle of the Warrior Magi", "=ds=#s10#, #a4#"};
{ 19, 44173, "", "=q3=Flameheart Spell Scalpel", "=ds=#h3#, #w4#"};
{ 20, 44174, "", "=q3=Stave of Shrouded Mysteries", "=ds=#w9#"};
{ 20, 44174, "", "=q3=Stave of Shrouded Mysteries", "=ds=#h2#, #w9#"};
{ 21, 44159, "", "=q7=Arcanum of Burning Mysteries", "=ds=#s1# #e17#"};
{ 23, 0, "Spell_Fire_MasterOfElements", "=q6=#r5#", ""};
{ 24, 44180, "", "=q4=Robes of Crackling Flame", "=ds=#s5#, #a1#"};
@@ -8355,11 +8355,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 5, 51445, "", "=q4=Wrathful Gladiator's Bonecracker", "=ds=#h4#, #w6#", "16500 #faction# 450 #arena# #reqrating# 1800"};
{ 6, 51390, "", "=q4=Wrathful Gladiator's Bonegrinder", "=ds=#h2#, #w6#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 7, 51480, "", "=q4=Wrathful Gladiator's Pike", "=ds=#w7#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 8, 51404, "", "=q4=Wrathful Gladiator's Battle Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 9, 51456, "", "=q4=Wrathful Gladiator's Energy Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 10, 51402, "", "=q4=Wrathful Gladiator's Focus Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 11, 51431, "", "=q4=Wrathful Gladiator's Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 12, 51400, "", "=q4=Wrathful Gladiator's War Staff", "=ds=#w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 8, 51404, "", "=q4=Wrathful Gladiator's Battle Staff", "=ds=#h2#, #w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 9, 51456, "", "=q4=Wrathful Gladiator's Energy Staff", "=ds=#h2#, #w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 10, 51402, "", "=q4=Wrathful Gladiator's Focus Staff", "=ds=#h2#, #w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 11, 51431, "", "=q4=Wrathful Gladiator's Staff", "=ds=#h2#, #w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 12, 51400, "", "=q4=Wrathful Gladiator's War Staff", "=ds=#h2#, #w9#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 13, 51394, "", "=q4=Wrathful Gladiator's Longbow", "=ds=#w2#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 14, 51411, "", "=q4=Wrathful Gladiator's Heavy Crossbow", "=ds=#w3#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
{ 15, 51449, "", "=q4=Wrathful Gladiator's Rifle", "=ds=#w5#", "55000 #faction# 1540 #arena# #reqrating# 1800"};
@@ -8370,11 +8370,11 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 20, 51446, "", "=q4=Wrathful Gladiator's Punisher", "=ds=#h4#, #w6#", "1370 #arena# #reqrating# 2200"};
{ 21, 51391, "", "=q4=Wrathful Gladiator's Crusher", "=ds=#h2#, #w6#", "4670 #arena# #reqrating# 2200"};
{ 22, 51481, "", "=q4=Wrathful Gladiator's Halberd", "=ds=#w7#", "4670 #arena# #reqrating# 2200"};
{ 23, 51403, "", "=q4=Wrathful Gladiator's Acute Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
{ 24, 51401, "", "=q4=Wrathful Gladiator's Combat Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
{ 25, 51432, "", "=q4=Wrathful Gladiator's Greatstaff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
{ 26, 51457, "", "=q4=Wrathful Gladiator's Light Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
{ 27, 51405, "", "=q4=Wrathful Gladiator's Skirmish Staff", "=ds=#w9#", "4670 #arena# #reqrating# 2200"};
{ 23, 51403, "", "=q4=Wrathful Gladiator's Acute Staff", "=ds=#h2#, #w9#", "4670 #arena# #reqrating# 2200"};
{ 24, 51401, "", "=q4=Wrathful Gladiator's Combat Staff", "=ds=#h2#, #w9#", "4670 #arena# #reqrating# 2200"};
{ 25, 51432, "", "=q4=Wrathful Gladiator's Greatstaff", "=ds=#h2#, #w9#", "4670 #arena# #reqrating# 2200"};
{ 26, 51457, "", "=q4=Wrathful Gladiator's Light Staff", "=ds=#h2#, #w9#", "4670 #arena# #reqrating# 2200"};
{ 27, 51405, "", "=q4=Wrathful Gladiator's Skirmish Staff", "=ds=#h2#, #w9#", "4670 #arena# #reqrating# 2200"};
{ 28, 51395, "", "=q4=Wrathful Gladiator's Recurve", "=ds=#w2#", "4670 #arena# #reqrating# 2200"};
{ 29, 51412, "", "=q4=Wrathful Gladiator's Repeater", "=ds=#w3#", "4670 #arena# #reqrating# 2200"};
{ 30, 51450, "", "=q4=Wrathful Gladiator's Shotgun", "=ds=#w5#", "4670 #arena# #reqrating# 2200"};
@@ -8644,7 +8644,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 44096, "", "=q7=Battleworn Thrash Blade", "=ds=#h1#, #w10#", "200 #wintergrasp#"};
{ 18, 44092, "", "=q7=Reforged Truesilver Champion", "=ds=#h2#, #w10#", "325 #wintergrasp#"};
{ 19, 44094, "", "=q7=The Blessed Hammer of Grace", "=ds=#h3#, #w6#", "250 #wintergrasp#"};
{ 20, 44095, "", "=q7=Grand Staff of Jordan", "=ds=#w9#", "325 #wintergrasp#"};
{ 20, 44095, "", "=q7=Grand Staff of Jordan", "=ds=#h2#, #w9#", "325 #wintergrasp#"};
{ 21, 44093, "", "=q7=Upgraded Dwarven Hand Cannon", "=ds=#w5#", "325 #wintergrasp#"};
Prev = "LakeWintergrasp6";
Back = "WINTERGRASPMENU";
@@ -10510,7 +10510,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 7, 30311, "", "=q5=Warp Slicer", "=q1=#m26#: =ds=#h1#, #w10#"};
{ 8, 30317, "", "=q5=Cosmic Infuser", "=q1=#m26#: =ds=#h3#, #w6#"};
{ 9, 30316, "", "=q5=Devastation", "=q1=#m26#: =ds=#h2#, #w1#"};
{ 10, 30313, "", "=q5=Staff of Disintegration", "=q1=#m26#: =ds=#w9#"};
{ 10, 30313, "", "=q5=Staff of Disintegration", "=q1=#m26#: =ds=#h2#, #w9#"};
{ 11, 30314, "", "=q5=Phaseshift Bulwark", "=q1=#m26#: =ds=#w8#"};
{ 12, 30318, "", "=q5=Netherstrand Longbow", "=q1=#m26#: =ds=#w2#, =q1=#m1# =ds=#c2#"};
{ 13, 30319, "", "=q5=Nether Spike", "=q1=#m26#: =ds=#w17#"};
@@ -10518,10 +10518,10 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 19019, "", "=q5=Thunderfury, Blessed Blade of the Windseeker", "=ds=#h1#, #w10#"};
{ 18, 17182, "", "=q5=Sulfuras, Hand of Ragnaros", "=ds=#h2#, #w6#"};
{ 19, 21176, "", "=q5=Black Qiraji Resonating Crystal", "=ds=#e12#"};
{ 21, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9#, =q1=#m1# =ds=#c1#", "", "", "(Druid)"};
{ 22, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9#, =q1=#m1# =ds=#c3#", "", "", "(Mage)" };
{ 23, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9#, =q1=#m1# =ds=#c5#", "", "", "(Priest)"};
{ 24, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9#, =q1=#m1# =ds=#c8#", "", "", "(Warlock)"};
{ 21, 22632, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#h2#, #w9#, =q1=#m1# =ds=#c1#", "", "", "(Druid)"};
{ 22, 22589, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#h2#, #w9#, =q1=#m1# =ds=#c3#", "", "", "(Mage)" };
{ 23, 22631, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#h2#, #w9#, =q1=#m1# =ds=#c5#", "", "", "(Priest)"};
{ 24, 22630, "", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#h2#, #w9#, =q1=#m1# =ds=#c8#", "", "", "(Warlock)"};
{ 26, 49623, "", "=q5=Shadowmourne", "=ds=#h2# #w1#", "" };
{ 27, 46017, "", "=q5=Val'anyr, Hammer of Ancient Kings", "=ds=#h3# #w6#", "" };
Back = "SETMENU";
@@ -11316,7 +11316,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 26, 42948, "", "=q7=Devout Aurastone Hammer", "=ds=#w6#, #h3#", "50 #eofheroism# / 75 #champseal#"};
{ 27, 48716, "", "=q7=Venerable Mass of McGowan", "=ds=#w6#, #h1#", "40 #eofheroism# / 75 #champseal#"};
{ 28, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#w6#, #h2#", "65 #eofheroism# / 95 #champseal#"};
{ 29, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "65 #eofheroism# / 95 #champseal#"};
{ 29, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#h2#, #w9#", "65 #eofheroism# / 95 #champseal#"};
{ 30, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "65 #eofheroism# / 95 #champseal#"};
Next = "Heirloom2";
Back = "SETMENU";
@@ -11337,7 +11337,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 17, 44096, "", "=q7=Battleworn Thrash Blade", "=ds=#h1#, #w10#", "200 #wintergrasp#"};
{ 18, 44092, "", "=q7=Reforged Truesilver Champion", "=ds=#h2#, #w10#", "325 #wintergrasp#"};
{ 19, 44094, "", "=q7=The Blessed Hammer of Grace", "=ds=#h3#, #w6#", "250 #wintergrasp#"};
{ 20, 44095, "", "=q7=Grand Staff of Jordan", "=ds=#w9#", "325 #wintergrasp#"};
{ 20, 44095, "", "=q7=Grand Staff of Jordan", "=ds=#h2#, #w9#", "325 #wintergrasp#"};
{ 21, 44093, "", "=q7=Upgraded Dwarven Hand Cannon", "=ds=#w5#", "325 #wintergrasp#"};
Prev = "Heirloom";
Back = "SETMENU";
@@ -11436,7 +11436,7 @@ local BabbleZone = AtlasLoot_GetLocaleLibBabble("LibBabble-Zone-3.0")
{ 22, 42948, "", "=q7=Devout Aurastone Hammer", "=ds=#w6#, #h3#", "50 #eofheroism#"};
{ 23, 48716, "", "=q7=Venerable Mass of McGowan", "=ds=#w6#, #h1#", "40 #eofheroism#"};
{ 24, 48718, "", "=q7=Repurposed Lava Dredger", "=ds=#w6#, #h2#", "65 #eofheroism#"};
{ 25, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#w9#", "65 #eofheroism#"};
{ 25, 42947, "", "=q7=Dignified Headmaster's Charge", "=ds=#h2#, #w9#", "65 #eofheroism#"};
{ 26, 42946, "", "=q7=Charmed Ancient Bone Bow", "=ds=#w2#", "65 #eofheroism#"};
Prev = "EmblemofHeroism3";
Back = "EMBLEMOFHEROISMMENU";