Anchs-Changes
This commit is contained in:
@@ -60,6 +60,8 @@ AtlasLoot_DewdropSubMenu = AceLibrary("Dewdrop-2.0");
|
||||
AtlasLoot_DewdropSubMenu2 = AceLibrary("Dewdrop-2.0");
|
||||
DewDrop2Enable = false;
|
||||
currentID = "";
|
||||
dataIDBackup = nil;
|
||||
dataSourceBackup = nil;
|
||||
|
||||
--Variable to cap debug spam
|
||||
ATLASLOOT_DEBUGSHOWN = false;
|
||||
@@ -493,6 +495,32 @@ function AtlasLoot_OnLoad()
|
||||
end
|
||||
end
|
||||
|
||||
AtlasLoot_Difficulty = {
|
||||
|
||||
["ClassicDungeon"] = { {"Normal", "" }, {"Bloodforged", 1 } };
|
||||
|
||||
["ClassicDungeonExt"] = { {"Normal", "" }, {"Heroic", 3 }, {"Mythic", 4 }, {"Mythic1", 5 }, {"Mythic2", 6 }, {"Mythic3", 7 }, {"Mythic4", 8 }, {"Mythic5", 9 }, {"Mythic6", 10 },
|
||||
{"Mythic7", 11 }, {"Mythic8", 12 }, {"Mythic9", 13 }, {"Mythic10", 14 }, {"Bloodforged", 1 }, };
|
||||
|
||||
["ClassicRaid"] = { {"NormalFLEX", "" }, {"HeroicFLEX", 3 }, {"Ascended", 4 }, {"Bloodforged", 1 }, };
|
||||
|
||||
["BCDungeon"] = { {"Normal", "" }, {"Mythic", 4 }, {"Mythic1", 5 }, {"Mythic2", 6 }, {"Mythic3", 7 }, {"Mythic4", 8 }, {"Mythic5", 9 }, {"Mythic6", 10 },
|
||||
{"Mythic7", 11 }, {"Mythic8", 12 }, {"Mythic9", 13 }, {"Mythic10", 14 }, {"Bloodforged", 1 }, };
|
||||
|
||||
["BCRaid"] = { {"NormalFLEX", "" }, {"HeroicFLEX", 3 }, {"Ascended", 4 }, {"Bloodforged", 1 }, };
|
||||
|
||||
["WrathDungeon"] = { {"Normal", "" }, {"Mythic", 4 }, {"Mythic1", 5 }, {"Mythic2", 6 }, {"Mythic3", 7 }, {"Mythic4", 8 }, {"Mythic5", 9 }, {"Mythic6", 10 },
|
||||
{"Mythic7", 11 }, {"Mythic8", 12 }, {"Mythic9", 13 }, {"Mythic10", 14 }, {"Bloodforged", 1 }, };
|
||||
|
||||
["WrathRaid"] = { {"NormalFLEX", "" }, {"HeroicFLEX", 3 }, {"Ascended", 4 }, {"Bloodforged", 1 }, };
|
||||
|
||||
["Crafting"] = { {"CraftingPatterns", "" }, {"", "=s=Normal" }, {"Bloodforged", 1 }, },
|
||||
|
||||
["CraftingExt"] = { {"CraftingPatternUncommon", "" }, {"CraftingPatternsRare", "Rare" }, {"CraftingPatternsEpic", "Epic" }, {"ItemUncommon", "=s=" }, {"ItemRare", "=s=Rare" }, {"ItemEpic", "=s=Epic" } }
|
||||
|
||||
|
||||
}
|
||||
|
||||
--[[
|
||||
AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame):
|
||||
dataID - Name of the loot table
|
||||
@@ -511,39 +539,12 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
local isItem;
|
||||
local spellName, spellIcon;
|
||||
|
||||
|
||||
--If the loot table name has not been passed, throw up a debugging statement
|
||||
if dataID == nil then
|
||||
DEFAULT_CHAT_FRAME:AddMessage("No dataID!");
|
||||
return;
|
||||
end
|
||||
--used when there is an extra loottable instead of using itemIDsDatabase
|
||||
|
||||
if dataID:match("MENU") then
|
||||
isTablereference = false
|
||||
notPattern = false
|
||||
isItemID = false
|
||||
AtlasLoot_DewdropSubMenu2:Unregister(AtlasLootDefaultFrame_SubMenu2);
|
||||
AtlasLootDefaultFrame_SubMenu2:Disable();
|
||||
AtlasLootDefaultFrame_SelectedTable2:SetText("");
|
||||
AtlasLootDefaultFrame_SelectedTable2:Hide();
|
||||
DewDrop2Enable = false
|
||||
elseif isTablereference and not notPattern then
|
||||
if DewDrop2Enable then
|
||||
dataID = gsub(dataID, lastReference, "")
|
||||
end
|
||||
dataID = dataID .. tableReference
|
||||
DewDrop2Enable = true
|
||||
lastReference = tableReference
|
||||
elseif isTablereference and notPattern then
|
||||
if DewDrop2Enable then
|
||||
dataID = gsub(dataID, lastReference, "")
|
||||
end
|
||||
dataID = dataID .. tableReference
|
||||
DewDrop2Enable = true
|
||||
lastReference = tableReference
|
||||
else
|
||||
DewDrop2Enable = false
|
||||
end
|
||||
--Get AtlasQuest out of the way
|
||||
if (AtlasQuestInsideFrame) then
|
||||
HideUIPanel(AtlasQuestInsideFrame);
|
||||
@@ -577,6 +578,43 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
else
|
||||
dataSource = AtlasLoot_Data;
|
||||
end
|
||||
--Hide UI objects so that only needed ones are shown
|
||||
for i = 1, 30, 1 do
|
||||
getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide();
|
||||
getglobal("AtlasLootMenuItem_"..i):Hide();
|
||||
getglobal("AtlasLootItem_"..i):Hide();
|
||||
getglobal("AtlasLootItem_"..i).itemID = 0;
|
||||
getglobal("AtlasLootItem_"..i).spellitemID = 0;
|
||||
end
|
||||
|
||||
--used when there is an extra loottable instead of using itemIDsDatabase
|
||||
|
||||
if dataID:match("MENU") then
|
||||
isTablereference = false
|
||||
notPattern = false
|
||||
isItemID = false
|
||||
AtlasLoot_DewdropSubMenu2:Unregister(AtlasLootDefaultFrame_SubMenu2);
|
||||
AtlasLootDefaultFrame_SubMenu2:Disable();
|
||||
AtlasLootDefaultFrame_SelectedTable2:SetText("");
|
||||
AtlasLootDefaultFrame_SelectedTable2:Hide();
|
||||
DewDrop2Enable = false
|
||||
elseif isTablereference and not notPattern then
|
||||
if DewDrop2Enable then
|
||||
dataID = gsub(dataID, lastReference, "")
|
||||
end
|
||||
dataID = dataID .. tableReference
|
||||
DewDrop2Enable = true
|
||||
lastReference = tableReference
|
||||
elseif isTablereference and notPattern then
|
||||
if DewDrop2Enable then
|
||||
dataID = gsub(dataID, lastReference, "")
|
||||
end
|
||||
dataID = dataID .. tableReference
|
||||
DewDrop2Enable = true
|
||||
lastReference = tableReference
|
||||
else
|
||||
DewDrop2Enable = false
|
||||
end
|
||||
|
||||
--Used to enable difficulty menu if its not a subtable
|
||||
if AtlasLoot_DewDropDown_SubTables2[dataID] and DropMenu2 == true then
|
||||
@@ -598,14 +636,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
AtlasLootDefaultFrame_SelectedTable2:Hide();
|
||||
SelectedTable2TextSet = false
|
||||
end
|
||||
|
||||
--Hide UI objects so that only needed ones are shown
|
||||
for i = 1, 30, 1 do
|
||||
getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide();
|
||||
getglobal("AtlasLootMenuItem_"..i):Hide();
|
||||
getglobal("AtlasLootItem_"..i):Hide();
|
||||
getglobal("AtlasLootItem_"..i).itemID = 0;
|
||||
getglobal("AtlasLootItem_"..i).spellitemID = 0;
|
||||
if dataSource[dataID].Difficulty then
|
||||
print(dataSource[dataID].Difficulty)
|
||||
end
|
||||
|
||||
if AtlasLoot_TableNames[dataID] ~= nil and AtlasLoot_TableNames[dataID][2] == "Menu" then
|
||||
@@ -619,20 +651,29 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
for i = 1, 30, 1 do
|
||||
--Check for a valid object (that it exists, and that it has a name)
|
||||
if(dataSource[dataID][i] ~= nil and dataSource[dataID][i][4] ~= "") then
|
||||
if string.sub(dataSource[dataID][i][2], 1, 1) == "s" then
|
||||
--Finds ItemIDS of none normal gear
|
||||
if AL_FindId(string.sub(dataSource[dataID][i][4], 5), ItemindexID) == nil or AL_FindId(string.sub(dataSource[dataID][i][4], 5), ItemindexID) == '' or not tonumber(ItemindexID) then
|
||||
IDfound = dataSource[dataID][i][2]
|
||||
else
|
||||
IDfound = AL_FindId(string.sub(dataSource[dataID][i][4], 5), ItemindexID)
|
||||
end
|
||||
if string.sub(IDfound, 1, 1) == "s" then
|
||||
isItem = false;
|
||||
else
|
||||
isItem = true;
|
||||
end
|
||||
if isItem then
|
||||
itemName, itemLink, itemQuality, itemLevel, itemMinLevel, itemType, itemSubType, itemCount, itemEquipLoc, itemTexture = GetItemInfo(dataSource[dataID][i][2]);
|
||||
--print(dataSource[dataID][i][2])
|
||||
|
||||
--print(dataSource[dataID][i][2])
|
||||
itemName, itemLink, itemQuality, itemLevel, itemMinLevel, itemType, itemSubType, itemCount, itemEquipLoc, itemTexture = GetItemInfo(IDfound);
|
||||
--If the client has the name of the item in cache, use that instead.
|
||||
--This is poor man's localisation, English is replaced be whatever is needed
|
||||
if(GetItemInfo(dataSource[dataID][i][2])) then
|
||||
if(GetItemInfo(IDfound)) then
|
||||
_, _, _, itemColor = GetItemQualityColor(itemQuality);
|
||||
text = itemColor..itemName;
|
||||
else
|
||||
if(GetItemInfo(dataSource[dataID][i][2])) then
|
||||
if(GetItemInfo(IDfound)) then
|
||||
_, _, _, itemColor = GetItemQualityColor(itemQuality);
|
||||
text = itemColor..itemName;
|
||||
else
|
||||
@@ -642,7 +683,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
end
|
||||
end
|
||||
else
|
||||
spellName, _, spellIcon, _, _, _, _, _, _ = GetSpellInfo(string.sub(dataSource[dataID][i][2], 2));
|
||||
spellName, _, spellIcon, _, _, _, _, _, _ = GetSpellInfo(string.sub(IDfound, 2));
|
||||
if spellName then
|
||||
text = AtlasLoot_FixText(string.sub(dataSource[dataID][i][4], 1, 4)..spellName);
|
||||
else
|
||||
@@ -677,7 +718,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
if dataSource[dataID][i][3] == "?" then
|
||||
iconFrame:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark");
|
||||
elseif dataSource[dataID][i][3] == "" then
|
||||
iconFrame:SetTexture(GetItemIcon(dataSource[dataID][i][2]));
|
||||
iconFrame:SetTexture(GetItemIcon(IDfound));
|
||||
elseif (not isItem) and (spellIcon) then
|
||||
if tonumber(dataSource[dataID][i][3]) then
|
||||
iconFrame:SetTexture(GetItemIcon(tonumber(dataSource[dataID][i][3])));
|
||||
@@ -700,8 +741,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
itemButton.extra = extra;
|
||||
|
||||
--Highlight items in the wishlist
|
||||
if dataSource[dataID][i][2] ~= "" and dataSource[dataID][i][2] ~= 0 and dataID ~= "WishList" and AtlasLootWishList["Options"][UnitName("player")]["Mark"] == true then
|
||||
local xitemexistwish, itemwishicons = AtlasLoot_WishListCheck(dataSource[dataID][i][2], true)
|
||||
if IDfound ~= "" and IDfound ~= 0 and dataID ~= "WishList" and AtlasLootWishList["Options"][UnitName("player")]["Mark"] == true then
|
||||
local xitemexistwish, itemwishicons = AtlasLoot_WishListCheck(IDfound, true)
|
||||
if xitemexistwish then
|
||||
text = itemwishicons.." "..text;
|
||||
end
|
||||
@@ -711,27 +752,14 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
extraFrame:SetText(extra);
|
||||
extraFrame:Show();
|
||||
--For convenience, we store information about the objects in the objects so that it can be easily accessed later
|
||||
if((string.sub(dataSource[dataID][i][2], 1, 1) == "s") and (AtlasLoot.db.profile.CraftingLink ~= 1) and (tonumber(dataSource[dataID][i][3]))) then
|
||||
if((string.sub(IDfound, 1, 1) == "s") and (AtlasLoot.db.profile.CraftingLink ~= 1) and (tonumber(dataSource[dataID][i][3]))) then
|
||||
itemButton.itemID = dataSource[dataID][i][3];
|
||||
itemButton.spellitemID = dataSource[dataID][i][3];
|
||||
elseif ((string.sub(dataSource[dataID][i][2], 1, 1) == "s") and notPattern == true and (tonumber(dataSource[dataID][i][3]))) then
|
||||
elseif ((string.sub(IDfound, 1, 1) == "s") and notPattern == true and (tonumber(dataSource[dataID][i][3]))) then
|
||||
itemButton.itemID = dataSource[dataID][i][3];
|
||||
itemButton.spellitemID = dataSource[dataID][i][3];
|
||||
else
|
||||
|
||||
--removes unneeded info from item names
|
||||
Lname = gsub(dataSource[dataID][i][4], "=q4=","")
|
||||
Lname = gsub(Lname, "=q3=","")
|
||||
Lname = gsub(Lname, "=q2=","")
|
||||
Lname = gsub(Lname, "=q1=","")
|
||||
--Finds ItemIDS of none normal gear
|
||||
IDfound = AL_FindId(Lname, ItemindexID)
|
||||
--goes to default table if nothing in item database
|
||||
if IDfound == nil or IDfound == '' or ItemindexID == "" then
|
||||
IDfound = dataSource[dataID][i][2]
|
||||
end
|
||||
|
||||
itemButton.itemID = IDfound; --this is now the new itemID
|
||||
itemButton.itemID = IDfound;
|
||||
|
||||
if tonumber(dataSource[dataID][i][3]) then
|
||||
itemButton.spellitemID = dataSource[dataID][i][3];
|
||||
@@ -743,7 +771,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
itemButton.iteminfo = {};
|
||||
if isItem then
|
||||
itemButton.iteminfo.idcore = IDfound;
|
||||
itemButton.iteminfo.icontexture = GetItemIcon(IDfound);
|
||||
itemButton.iteminfo.icontexture = IDfound;
|
||||
itemButton.storeID = IDfound;
|
||||
itemButton.dressingroomID = IDfound;
|
||||
else
|
||||
@@ -773,7 +801,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
|
||||
itemButton.i = 1;
|
||||
itemButton:Show();
|
||||
|
||||
if dataSource[dataID][i][2] == 0 then getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide(); end
|
||||
if IDfound == 0 then getglobal("AtlasLootItem_"..i.."_Unsafe"):Hide(); end
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -292,23 +292,6 @@ function AtlasLoot_DewdropSubMenu2Register(loottable)
|
||||
)
|
||||
end
|
||||
|
||||
function AtlasLoot_lootcheck(loottable)
|
||||
AtlasLoot_DewdropSubMenu2:Register(AtlasLootDefaultFrame_SubMenu2,
|
||||
'point', function(parent)
|
||||
return "TOP", "BOTTOM"
|
||||
end,
|
||||
'children', function(level, value)
|
||||
if level == 1 then
|
||||
for k,v in pairs(loottable) do
|
||||
if v[1] == "" then
|
||||
end
|
||||
end
|
||||
end
|
||||
end,
|
||||
'dontHook', true
|
||||
)
|
||||
end
|
||||
|
||||
--[[
|
||||
AtlasLoot_DewdropRegister:
|
||||
Constructs the main category menu from a tiered table
|
||||
|
||||
@@ -536,6 +536,7 @@ AtlasLoot_DewDropDown_SubTables = {
|
||||
{ "", "CoTHillsbradDrake" },
|
||||
{ "", "CoTHillsbradSkarloc" },
|
||||
{ "", "CoTHillsbradHunter" },
|
||||
{ "", "CoTHillsbradHunterHeroic" },
|
||||
{ AL["Trash Mobs"], "CoTTrash" },
|
||||
},
|
||||
["CoTBlackMorass"] = {
|
||||
@@ -631,7 +632,8 @@ AtlasLoot_DewDropDown_SubTables = {
|
||||
{ "", "AuchManaPandemonius" },
|
||||
{ "", "AuchManaTavarok" },
|
||||
{ "", "AuchManaNexusPrince" },
|
||||
{ "", "AuchManaYor" },
|
||||
{ "", "AuchManaNexusPrinceHeroic" },
|
||||
{ "", "AuchManaYorHeroic" },
|
||||
{ AL["Trash Mobs"], "AuchTrash" },
|
||||
},
|
||||
["AuchCrypts"] = {
|
||||
@@ -677,6 +679,7 @@ AtlasLoot_DewDropDown_SubTables = {
|
||||
{ "", "CFRUnderGhazan" },
|
||||
{ "", "CFRUnderSwamplord" },
|
||||
{ "", "CFRUnderStalker" },
|
||||
{ "", "CFRUnderStalkerHeroic" },
|
||||
},
|
||||
["CFRSteamvault"] = {
|
||||
{ "", "CFRSteamThespia" },
|
||||
@@ -701,6 +704,7 @@ AtlasLoot_DewDropDown_SubTables = {
|
||||
{ "", "HCRampWatchkeeper" },
|
||||
{ "", "HCRampOmor" },
|
||||
{ "", "HCRampVazruden" },
|
||||
{ "", "HCRampVazrudenHeroic" },
|
||||
},
|
||||
["HCFurnace"] = {
|
||||
{ "", "HCFurnaceMaker" },
|
||||
@@ -719,6 +723,7 @@ AtlasLoot_DewDropDown_SubTables = {
|
||||
{ "", "TKMechCapacitus" },
|
||||
{ "", "TKMechSepethrea" },
|
||||
{ "", "TKMechCalc" },
|
||||
{ "", "TKMechCalcHeroic" },
|
||||
{ AL["Trash Mobs"], "TKTrash" },
|
||||
},
|
||||
["TKBot"] = {
|
||||
@@ -727,6 +732,7 @@ AtlasLoot_DewDropDown_SubTables = {
|
||||
{ "", "TKBotThorngrin" },
|
||||
{ "", "TKBotLaj" },
|
||||
{ "", "TKBotSplinter" },
|
||||
{ "", "TKBotSplinterHeroic" },
|
||||
{ AL["Trash Mobs"], "TKTrash" },
|
||||
},
|
||||
["TKArc"] = {
|
||||
@@ -1750,14 +1756,14 @@ AtlasLoot_DewDropDown_SubTables2 = {
|
||||
|
||||
--Crafting High Risk
|
||||
|
||||
["AlchemyHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Heroic" }, { "", 3, "CraftingPatternsEpic", "Mythic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Heroic" }, { "", 6, "ItemEpic", "=s=Mythic" } },
|
||||
["SmithingHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Heroic" }, { "", 3, "CraftingPatternsEpic", "Mythic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Heroic" }, { "", 6, "ItemEpic", "=s=Mythic" } },
|
||||
["EnchantingHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Heroic" }, { "", 3, "CraftingPatternsEpic", "Mythic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Heroic" },{ "", 6, "ItemEpic", "=s=Mythic" } },
|
||||
["EngineerHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Heroic" }, { "", 3, "CraftingPatternsEpic", "Mythic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Heroic" },{ "", 6, "ItemEpic", "=s=Mythic" } },
|
||||
["LeatherHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Heroic" }, { "", 3, "CraftingPatternsEpic", "Mythic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Heroic" },{ "", 6, "ItemEpic", "=s=Mythic" } },
|
||||
["TailorHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Heroic" }, { "", 3, "CraftingPatternsEpic", "Mythic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Heroic" },{ "", 6, "ItemEpic", "=s=Mythic" } },
|
||||
["CookingHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Heroic" }, { "", 3, "CraftingPatternsEpic", "Mythic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Heroic" },{ "", 6, "ItemEpic", "=s=Mythic" } },
|
||||
["CookingHighRiskTwo"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Heroic" }, { "", 3, "CraftingPatternsEpic", "Mythic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Heroic" },{ "", 6, "ItemEpic", "=s=Mythic" } },
|
||||
["AlchemyHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Rare" }, { "", 3, "CraftingPatternsEpic", "Epic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Rare" }, { "", 6, "ItemEpic", "=s=Epic" } },
|
||||
["SmithingHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Rare" }, { "", 3, "CraftingPatternsEpic", "Epic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Rare" }, { "", 6, "ItemEpic", "=s=Epic" } },
|
||||
["EnchantingHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Rare" }, { "", 3, "CraftingPatternsEpic", "Epic" } },
|
||||
["EngineerHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Rare" }, { "", 3, "CraftingPatternsEpic", "Epic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Rare" },{ "", 6, "ItemEpic", "=s=Epic" } },
|
||||
["LeatherHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Rare" }, { "", 3, "CraftingPatternsEpic", "Epic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Rare" },{ "", 6, "ItemEpic", "=s=Epic" } },
|
||||
["TailorHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Rare" }, { "", 3, "CraftingPatternsEpic", "Epic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Rare" },{ "", 6, "ItemEpic", "=s=Epic" } },
|
||||
["CookingHighRisk"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Rare" }, { "", 3, "CraftingPatternsEpic", "Epic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Rare" },{ "", 6, "ItemEpic", "=s=Epic" } },
|
||||
["CookingHighRiskTwo"] = { { "", 1, "CraftingPatternUncommon", "Normal" }, { "", 2, "CraftingPatternsRare", "Rare" }, { "", 3, "CraftingPatternsEpic", "Epic" }, { "", 4, "ItemUncommon", "=s=" }, { "", 5, "ItemRare", "=s=Rare" },{ "", 6, "ItemEpic", "=s=Epic" } },
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -424,41 +424,22 @@ end
|
||||
AtlasLoot_TableNames["AuchCryptsShirrak"] = { BabbleBoss["Shirrak the Dead Watcher"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchCryptsExarch"] = { BabbleBoss["Exarch Maladaar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchCryptsAvatar"] = { AL["Avatar of the Martyred"], "AtlasLootBurningCrusade" };
|
||||
-- Auch: Auchenai Crypts MYTHIC
|
||||
AtlasLoot_TableNames["AuchCryptsShirrak25Man"] = { BabbleBoss["Shirrak the Dead Watcher"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchCryptsExarch25Man"] = { BabbleBoss["Exarch Maladaar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchCryptsAvatar25Man"] = { AL["Avatar of the Martyred"], "AtlasLootBurningCrusade" };
|
||||
-- Auch: Mana-Tombs
|
||||
AtlasLoot_TableNames["AuchManaPandemonius"] = { BabbleBoss["Pandemonius"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaTavarok"] = { BabbleBoss["Tavarok"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaNexusPrince"] = { BabbleBoss["Nexus-Prince Shaffar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaNexusPrince25Man"] = { BabbleBoss["Nexus-Prince Shaffar"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Auch: Mana-Tombs MYTHIC
|
||||
AtlasLoot_TableNames["AuchManaPandemonius25Man"] = { BabbleBoss["Pandemonius"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaTavarok25Man"] = { BabbleBoss["Tavarok"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaNexusPrince25ManHEROIC"] = { BabbleBoss["Nexus-Prince Shaffar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaNexusPrince225ManHEROIC"] = { BabbleBoss["Nexus-Prince Shaffar"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaYor25Man"] = { AL["Yor"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaNexusPrinceHeroic"] = { BabbleBoss["Nexus-Prince Shaffar"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchManaYorHeroic"] = { AL["Yor"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Auch: Sethekk Halls
|
||||
AtlasLoot_TableNames["AuchSethekkDarkweaver"] = { BabbleBoss["Darkweaver Syth"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchSethekkRavenGod"] = { BabbleBoss["Anzu"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchSethekkTalonKing"] = { BabbleBoss["Talon King Ikiss"], "AtlasLootBurningCrusade" };
|
||||
-- Auch: Sethekk Halls MYTHIC
|
||||
AtlasLoot_TableNames["AuchSethekkDarkweaver25Man"] = { BabbleBoss["Darkweaver Syth"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchSethekkRavenGod25Man"] = { BabbleBoss["Anzu"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchSethekkTalonKing25Man"] = { BabbleBoss["Talon King Ikiss"], "AtlasLootBurningCrusade" };
|
||||
-- Auch: Shadow Labyrinth
|
||||
AtlasLoot_TableNames["AuchShadowHellmaw"] = { BabbleBoss["Ambassador Hellmaw"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchShadowBlackheart"] = { BabbleBoss["Blackheart the Inciter"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchShadowGrandmaster"] = { BabbleBoss["Grandmaster Vorpil"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchShadowMurmur"] = { BabbleBoss["Murmur"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Auchindoun"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Auch: Shadow Labyrinth MYTHIC
|
||||
AtlasLoot_TableNames["AuchShadowHellmaw25Man"] = { BabbleBoss["Ambassador Hellmaw"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchShadowBlackheart25Man"] = { BabbleBoss["Blackheart the Inciter"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchShadowGrandmaster25Man"] = { BabbleBoss["Grandmaster Vorpil"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchShadowMurmur25Man"] = { BabbleBoss["Murmur"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["AuchTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Auchindoun"]..")", "AtlasLootBurningCrusade" };
|
||||
-- The Black Temple
|
||||
AtlasLoot_TableNames["BTNajentus"] = { BabbleBoss["High Warlord Naj'entus"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTSupremus"] = { BabbleBoss["Supremus"], "AtlasLootBurningCrusade" };
|
||||
@@ -471,18 +452,6 @@ end
|
||||
AtlasLoot_TableNames["BTIllidanStormrage"] = { BabbleBoss["Illidan Stormrage"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Black Temple"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTPatterns"] = { "BT Patterns/Plans", "AtlasLootBurningCrusade" };
|
||||
-- The Black Temple HEROIC
|
||||
AtlasLoot_TableNames["BTNajentusHEROIC"] = { BabbleBoss["High Warlord Naj'entus"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTSupremusHEROIC"] = { BabbleBoss["Supremus"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTGorefiendHEROIC"] = { BabbleBoss["Teron Gorefiend"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTBloodboilHEROIC"] = { BabbleBoss["Gurtogg Bloodboil"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTAkamaHEROIC"] = { BabbleBoss["Shade of Akama"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTEssencofSoulsHEROIC"] = { "Essence of Souls", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTShahrazHEROIC"] = { BabbleBoss["Mother Shahraz"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTCouncilHEROIC"] = { BabbleBoss["The Illidari Council"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTIllidanStormrageHEROIC"] = { BabbleBoss["Illidan Stormrage"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTTrashHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Black Temple"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["BTPatternsHEROIC"] = { "BT Patterns/Plans", "AtlasLootBurningCrusade" };
|
||||
-- CFR: Serpentshrine Cavern
|
||||
AtlasLoot_TableNames["CFRSerpentHydross"] = { BabbleBoss["Hydross the Unstable"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentKarathress"] = { BabbleBoss["Fathom-Lord Karathress"], "AtlasLootBurningCrusade" };
|
||||
@@ -491,72 +460,31 @@ end
|
||||
AtlasLoot_TableNames["CFRSerpentLurker"] = { BabbleBoss["The Lurker Below"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentVashj"] = { BabbleBoss["Lady Vashj"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Serpentshrine Cavern"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CFR: Serpentshrine Cavern HEROIC FLEX
|
||||
AtlasLoot_TableNames["CFRSerpentHydross25Man"] = { BabbleBoss["Hydross the Unstable"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentKarathress25Man"] = { BabbleBoss["Fathom-Lord Karathress"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentMorogrim25Man"] = { BabbleBoss["Morogrim Tidewalker"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentLeotheras25Man"] = { BabbleBoss["Leotheras the Blind"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentLurker25Man"] = { BabbleBoss["The Lurker Below"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentVashj25Man"] = { BabbleBoss["Lady Vashj"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Serpentshrine Cavern"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CFR: Serpentshrine Cavern ASCENDED
|
||||
AtlasLoot_TableNames["CFRSerpentHydross25ManHEROIC"] = { BabbleBoss["Hydross the Unstable"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentKarathress25ManHEROIC"] = { BabbleBoss["Fathom-Lord Karathress"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentMorogrim25ManHEROIC"] = { BabbleBoss["Morogrim Tidewalker"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentLeotheras25ManHEROIC"] = { BabbleBoss["Leotheras the Blind"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentLurker25ManHEROIC"] = { BabbleBoss["The Lurker Below"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentVashj25ManHEROIC"] = { BabbleBoss["Lady Vashj"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSerpentTrash25ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Serpentshrine Cavern"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CFR: Slave Pens
|
||||
AtlasLoot_TableNames["CFRSlaveMennu"] = { BabbleBoss["Mennu the Betrayer"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSlaveRokmar"] = { BabbleBoss["Rokmar the Crackler"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSlaveQuagmirran"] = { BabbleBoss["Quagmirran"], "AtlasLootBurningCrusade" };
|
||||
-- CFR: Slave Pens MYTHIC
|
||||
AtlasLoot_TableNames["CFRSlaveMennu25Man"] = { BabbleBoss["Mennu the Betrayer"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSlaveRokmar25Man"] = { BabbleBoss["Rokmar the Crackler"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSlaveQuagmirran25Man"] = { BabbleBoss["Quagmirran"], "AtlasLootBurningCrusade" };
|
||||
-- CFR: The Steamvault
|
||||
AtlasLoot_TableNames["CFRSteamThespia"] = { BabbleBoss["Hydromancer Thespia"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSteamSteamrigger"] = { BabbleBoss["Mekgineer Steamrigger"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSteamWarlord"] = { BabbleBoss["Warlord Kalithresh"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSteamTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["The Steamvault"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CFR: The Steamvault MYTHIC
|
||||
AtlasLoot_TableNames["CFRSteamThespia25Man"] = { BabbleBoss["Hydromancer Thespia"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSteamSteamrigger25Man"] = { BabbleBoss["Mekgineer Steamrigger"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSteamWarlord25Man"] = { BabbleBoss["Warlord Kalithresh"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRSteamTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["The Steamvault"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CFR: The Underbog
|
||||
AtlasLoot_TableNames["CFRUnderHungarfen"] = { BabbleBoss["Hungarfen"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderGhazan"] = { BabbleBoss["Ghaz'an"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderSwamplord"] = { BabbleBoss["Swamplord Musel'ek"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderStalker"] = { BabbleBoss["The Black Stalker"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderStalker25Man"] = { BabbleBoss["The Black Stalker"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CFR: The Underbog MYTHIC
|
||||
AtlasLoot_TableNames["CFRUnderHungarfen25Man"] = { BabbleBoss["Hungarfen"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderGhazan25Man"] = { BabbleBoss["Ghaz'an"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderSwamplord25Man"] = { BabbleBoss["Swamplord Musel'ek"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderStalker25ManHEROIC"] = { BabbleBoss["The Black Stalker"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderStalker225ManHEROIC"] = { BabbleBoss["The Black Stalker"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CFRUnderStalkerHeroic"] = { BabbleBoss["The Black Stalker"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CoT: Old Hillsbrad Foothills
|
||||
AtlasLoot_TableNames["CoTHillsbradDrake"] = { BabbleBoss["Lieutenant Drake"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTHillsbradSkarloc"] = { BabbleBoss["Captain Skarloc"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTHillsbradHunter"] = { BabbleBoss["Epoch Hunter"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTHillsbradHunter25Man"] = { BabbleBoss["Epoch Hunter"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTHillsbradHunterHeroic"] = { BabbleBoss["Epoch Hunter"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Caverns of Time"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CoT: Old Hillsbrad Foothills MYTHIC
|
||||
AtlasLoot_TableNames["CoTHillsbradDrake25Man"] = { BabbleBoss["Lieutenant Drake"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTHillsbradSkarloc25Man"] = { BabbleBoss["Captain Skarloc"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTHillsbradHunter25ManHEROIC"] = { BabbleBoss["Epoch Hunter"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTHillsbradHunter225ManHEROIC"] = { BabbleBoss["Epoch Hunter"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Caverns of Time"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CoT: Black Morass
|
||||
AtlasLoot_TableNames["CoTMorassDeja"] = { BabbleBoss["Chrono Lord Deja"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTMorassTemporus"] = { BabbleBoss["Temporus"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTMorassAeonus"] = { BabbleBoss["Aeonus"], "AtlasLootBurningCrusade" };
|
||||
-- CoT: Black Morass MYTHIC
|
||||
AtlasLoot_TableNames["CoTMorassDeja25Man"] = { BabbleBoss["Chrono Lord Deja"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTMorassTemporus25Man"] = { BabbleBoss["Temporus"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["CoTMorassAeonus25Man"] = { BabbleBoss["Aeonus"], "AtlasLootBurningCrusade" };
|
||||
-- CoT: Hyjal Summit
|
||||
AtlasLoot_TableNames["MountHyjalWinterchill"] = { BabbleBoss["Rage Winterchill"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["MountHyjalAnetheron"] = { BabbleBoss["Anetheron"], "AtlasLootBurningCrusade" };
|
||||
@@ -564,63 +492,30 @@ end
|
||||
AtlasLoot_TableNames["MountHyjalAzgalor"] = { BabbleBoss["Azgalor"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["MountHyjalArchimonde"] = { BabbleBoss["Archimonde"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["MountHyjalTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Hyjal Summit"]..")", "AtlasLootBurningCrusade" };
|
||||
-- CoT: Hyjal Summit HEROIC
|
||||
AtlasLoot_TableNames["MountHyjalWinterchillHEROIC"] = { BabbleBoss["Rage Winterchill"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["MountHyjalAnetheronHEROIC"] = { BabbleBoss["Anetheron"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["MountHyjalKazrogalHEROIC"] = { BabbleBoss["Kaz'rogal"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["MountHyjalAzgalorHEROIC"] = { BabbleBoss["Azgalor"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["MountHyjalArchimondeHEROIC"] = { BabbleBoss["Archimonde"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["MountHyjalTrashHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Hyjal Summit"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Gruul's Lair
|
||||
AtlasLoot_TableNames["GruulsLairHighKingMaulgar"] = { BabbleBoss["High King Maulgar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["GruulGruul"] = { BabbleBoss["Gruul the Dragonkiller"], "AtlasLootBurningCrusade" };
|
||||
-- Gruul's Lair HEROIC FLEX
|
||||
AtlasLoot_TableNames["GruulsLairHighKingMaulgar25Man"] = { BabbleBoss["High King Maulgar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["GruulGruul25Man"] = { BabbleBoss["Gruul the Dragonkiller"], "AtlasLootBurningCrusade" };
|
||||
-- Gruul's Lair ASCENDED
|
||||
AtlasLoot_TableNames["GruulsLairHighKingMaulgar25ManHEROIC"] = { BabbleBoss["High King Maulgar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["GruulGruul25ManHEROIC"] = { BabbleBoss["Gruul the Dragonkiller"], "AtlasLootBurningCrusade" };
|
||||
-- HC: Blood Furnace
|
||||
AtlasLoot_TableNames["HCFurnaceMaker"] = { BabbleBoss["The Maker"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCFurnaceBroggok"] = { BabbleBoss["Broggok"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCFurnaceBreaker"] = { BabbleBoss["Keli'dan the Breaker"], "AtlasLootBurningCrusade" };
|
||||
-- HC: Blood Furnace MYTHIC
|
||||
AtlasLoot_TableNames["HCFurnaceMaker25Man"] = { BabbleBoss["The Maker"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCFurnaceBroggok25Man"] = { BabbleBoss["Broggok"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCFurnaceBreaker25Man"] = { BabbleBoss["Keli'dan the Breaker"], "AtlasLootBurningCrusade" };
|
||||
-- HC: Magtheridon's Lair
|
||||
AtlasLoot_TableNames["HCMagtheridon"] = { BabbleBoss["Magtheridon"], "AtlasLootBurningCrusade" };
|
||||
-- HC: Magtheridon's Lair HEROIC FLEX
|
||||
AtlasLoot_TableNames["HCMagtheridon25Man"] = { BabbleBoss["Magtheridon"], "AtlasLootBurningCrusade" };
|
||||
-- HC: Magtheridon's Lair ASCENDED
|
||||
AtlasLoot_TableNames["HCMagtheridon25ManHEROIC"] = { BabbleBoss["Magtheridon"], "AtlasLootBurningCrusade" };
|
||||
-- HC: Ramparts
|
||||
AtlasLoot_TableNames["HCRampWatchkeeper"] = { BabbleBoss["Watchkeeper Gargolmar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCRampOmor"] = { BabbleBoss["Omor the Unscarred"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCRampVazruden"] = { BabbleBoss["Vazruden"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCRampVazruden25Man"] = { BabbleBoss["Vazruden"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- HC: Ramparts MYTHIC
|
||||
AtlasLoot_TableNames["HCRampWatchkeeper25Man"] = { BabbleBoss["Watchkeeper Gargolmar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCRampOmor25Man"] = { BabbleBoss["Omor the Unscarred"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCRampVazruden25ManHEROIC"] = { BabbleBoss["Vazruden"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCRampVazruden225ManHEROIC"] = { BabbleBoss["Vazruden"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCRampVazrudenHeroic"] = { BabbleBoss["Vazruden"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- HC: Shattered Halls
|
||||
AtlasLoot_TableNames["HCHallsNethekurse"] = { BabbleBoss["Grand Warlock Nethekurse"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCHallsPorung"] = { BabbleBoss["Blood Guard Porung"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCHallsOmrogg"] = { BabbleBoss["Warbringer O'mrogg"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCHallsKargath"] = { BabbleBoss["Warchief Kargath Bladefist"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCHallsTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["The Shattered Halls"]..")", "AtlasLootBurningCrusade" };
|
||||
-- HC: Shattered Halls MYTHIC
|
||||
AtlasLoot_TableNames["HCHallsNethekurse25Man"] = { BabbleBoss["Grand Warlock Nethekurse"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCHallsPorung25Man"] = { BabbleBoss["Blood Guard Porung"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCHallsOmrogg25Man"] = { BabbleBoss["Warbringer O'mrogg"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCHallsKargath25Man"] = { BabbleBoss["Warchief Kargath Bladefist"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["HCHallsTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["The Shattered Halls"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Karazhan
|
||||
AtlasLoot_TableNames["KaraCharredBoneFragment"] = { "Charred Bone Fragment ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraNamed"] = { "Servant's Quarter Animal Bosses", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraAttumen"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraAttumen25Man"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraMoroes"] = { BabbleBoss["Moroes"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraKeannaLog"] = { "Keanna's Log ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraMaiden"] = { BabbleBoss["Maiden of Virtue"], "AtlasLootBurningCrusade" };
|
||||
@@ -633,40 +528,6 @@ end
|
||||
AtlasLoot_TableNames["KaraChess"] = { BabbleBoss["Chess Event"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraPrince"] = { BabbleBoss["Prince Malchezaar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Karazhan"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Karazhan HEROIC FLEX
|
||||
AtlasLoot_TableNames["KaraCharredBoneFragmentHeroicFlex"] = { "Charred Bone Fragment ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraNamedHeroicFlex"] = { "Servant's Quarter Animal Bosses", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraAttumenHeroicFlex"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraAttumenHeroicFlex"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraMoroesHeroicFlex"] = { BabbleBoss["Moroes"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraKeannaLogHeroicFlex"] = { "Keanna's Log ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraMaidenHeroicFlex"] = { BabbleBoss["Maiden of Virtue"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraOperaEventHeroicFlex"] = { "Opera Event", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraCuratorHeroicFlex"] = { BabbleBoss["The Curator"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraIllhoofHeroicFlex"] = { BabbleBoss["Terestian Illhoof"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraAranHeroicFlex"] = { BabbleBoss["Shade of Aran"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraNetherspiteHeroicFlex"] = { BabbleBoss["Netherspite"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraNightbaneHeroicFlex"] = { BabbleBoss["Nightbane"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraChessHeroicFlex"] = { BabbleBoss["Chess Event"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraPrinceHeroicFlex"] = { BabbleBoss["Prince Malchezaar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraTrashHeroicFlex"] = { AL["Trash Mobs"].." ("..BabbleZone["Karazhan"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Karazhan ASCENDED
|
||||
AtlasLoot_TableNames["KaraCharredBoneFragmentAscended"] = { "Charred Bone Fragment ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraNamedAscended"] = { "Servant's Quarter Animal Bosses", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraAttumenAscended"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraAttumenAscended"] = { BabbleBoss["Attumen the Huntsman"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraMoroesAscended"] = { BabbleBoss["Moroes"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraKeannaLogAscended"] = { "Keanna's Log ("..AL["Quest Item"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraMaidenAscended"] = { BabbleBoss["Maiden of Virtue"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraOperaEventAscended"] = { "Opera Event", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraCuratorAscended"] = { BabbleBoss["The Curator"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraIllhoofAscended"] = { BabbleBoss["Terestian Illhoof"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraAranAscended"] = { BabbleBoss["Shade of Aran"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraNetherspiteAscended"] = { BabbleBoss["Netherspite"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraNightbaneAscended"] = { BabbleBoss["Nightbane"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraChessAscended"] = { BabbleBoss["Chess Event"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraPrinceAscended"] = { BabbleBoss["Prince Malchezaar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["KaraTrashAscended"] = { AL["Trash Mobs"].." ("..BabbleZone["Karazhan"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Sunwell Isle: Magister's Terrace
|
||||
AtlasLoot_TableNames["SMTFireheart"] = { BabbleBoss["Selin Fireheart"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SMTVexallus"] = { BabbleBoss["Vexallus"], "AtlasLootBurningCrusade" };
|
||||
@@ -683,41 +544,19 @@ end
|
||||
AtlasLoot_TableNames["SPKiljaeden"] = { BabbleBoss["Kil'jaeden"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Sunwell Plateau"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPPatterns"] = { "SP Patterns/Plans", "AtlasLootBurningCrusade" };
|
||||
-- Sunwell Isle: Sunwell Plateau HEROIC
|
||||
AtlasLoot_TableNames["SPKalecgosHEROIC"] = { BabbleBoss["Kalecgos"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPBrutallusHEROIC"] = { BabbleBoss["Brutallus"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPFelmystHEROIC"] = { BabbleBoss["Felmyst"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPEredarTwinsHEROIC"] = { BabbleBoss["The Eredar Twins"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPMuruHEROIC"] = { BabbleBoss["M'uru"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPKiljaedenHEROIC"] = { BabbleBoss["Kil'jaeden"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPTrashHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Sunwell Plateau"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["SPPatternsHEROIC"] = { "SP Patterns/Plans", "AtlasLootBurningCrusade" };
|
||||
-- TK: The Arcatraz
|
||||
AtlasLoot_TableNames["TKArcUnbound"] = { BabbleBoss["Zereketh the Unbound"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKArcDalliah"] = { BabbleBoss["Dalliah the Doomsayer"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKArcScryer"] = { BabbleBoss["Wrath-Scryer Soccothrates"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKArcHarbinger"] = { BabbleBoss["Harbinger Skyriss"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Tempest Keep"]..")", "AtlasLootBurningCrusade" };
|
||||
-- TK: The Arcatraz MYTHIC
|
||||
AtlasLoot_TableNames["TKArcUnbound25Man"] = { BabbleBoss["Zereketh the Unbound"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKArcDalliah25Man"] = { BabbleBoss["Dalliah the Doomsayer"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKArcScryer25Man"] = { BabbleBoss["Wrath-Scryer Soccothrates"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKArcHarbinger25Man"] = { BabbleBoss["Harbinger Skyriss"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["Tempest Keep"]..")", "AtlasLootBurningCrusade" };
|
||||
-- TK: The Botanica
|
||||
AtlasLoot_TableNames["TKBotSarannis"] = { BabbleBoss["Commander Sarannis"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotFreywinn"] = { BabbleBoss["High Botanist Freywinn"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotThorngrin"] = { BabbleBoss["Thorngrin the Tender"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotLaj"] = { BabbleBoss["Laj"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotSplinter"] = { BabbleBoss["Warp Splinter"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotSplinter25Man"] = { BabbleBoss["Warp Splinter"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- TK: The Botanica MYTHIC
|
||||
AtlasLoot_TableNames["TKBotSarannis25Man"] = { BabbleBoss["Commander Sarannis"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotFreywinn25Man"] = { BabbleBoss["High Botanist Freywinn"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotThorngrin25Man"] = { BabbleBoss["Thorngrin the Tender"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotLaj25Man"] = { BabbleBoss["Laj"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotSplinter25ManHEROIC"] = { BabbleBoss["Warp Splinter"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotSplinter225ManHEROIC"] = { BabbleBoss["Warp Splinter"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKBotSplinterHeroic"] = { BabbleBoss["Warp Splinter"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- TK: The Eye
|
||||
AtlasLoot_TableNames["TKEyeAlar"] = { BabbleBoss["Al'ar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeVoidReaver"] = { BabbleBoss["Void Reaver"], "AtlasLootBurningCrusade" };
|
||||
@@ -725,32 +564,12 @@ end
|
||||
AtlasLoot_TableNames["TKEyeKaelthas"] = { BabbleBoss["Kael'thas Sunstrider"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeLegendaries"] = { "Legendary Items for Kael'thas Fight", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeTrash"] = { AL["Trash Mobs"].." ("..BabbleZone["The Eye"]..")", "AtlasLootExpansionItems" };
|
||||
-- TK: The Eye HEROIC FLEX
|
||||
AtlasLoot_TableNames["TKEyeAlar25Man"] = { BabbleBoss["Al'ar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeVoidReaver25Man"] = { BabbleBoss["Void Reaver"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeSolarian25Man"] = { BabbleBoss["High Astromancer Solarian"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeKaelthas25Man"] = { BabbleBoss["Kael'thas Sunstrider"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeLegendaries25Man"] = { "Legendary Items for Kael'thas Fight", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeTrash25Man"] = { AL["Trash Mobs"].." ("..BabbleZone["The Eye"]..")", "AtlasLootExpansionItems" };
|
||||
-- TK: The Eye ASCENDED
|
||||
AtlasLoot_TableNames["TKEyeAlar25ManHEROIC"] = { BabbleBoss["Al'ar"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeVoidReaver25ManHEROIC"] = { BabbleBoss["Void Reaver"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeSolarian25ManHEROIC"] = { BabbleBoss["High Astromancer Solarian"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeKaelthas25ManHEROIC"] = { BabbleBoss["Kael'thas Sunstrider"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeLegendaries25ManHEROIC"] = { "Legendary Items for Kael'thas Fight", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKEyeTrash25ManHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["The Eye"]..")", "AtlasLootExpansionItems" };
|
||||
-- TK: The Mechanar
|
||||
AtlasLoot_TableNames["TKMechCacheoftheLegion"] = { AL["Cache of the Legion"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechCapacitus"] = { BabbleBoss["Mechano-Lord Capacitus"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechSepethrea"] = { BabbleBoss["Nethermancer Sepethrea"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechCalc"] = { BabbleBoss["Pathaleon the Calculator"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechCalc25Man"] = { BabbleBoss["Pathaleon the Calculator"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- TK: The Mechanar MYTHIC
|
||||
AtlasLoot_TableNames["TKMechCacheoftheLegion25Man"] = { AL["Cache of the Legion"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechCapacitus25Man"] = { BabbleBoss["Mechano-Lord Capacitus"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechSepethrea25Man"] = { BabbleBoss["Nethermancer Sepethrea"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechCalc25Man"] = { BabbleBoss["Pathaleon the Calculator"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechCalc25ManHEROIC"] = { BabbleBoss["Pathaleon the Calculator"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["TKMechCalcHeroic"] = { BabbleBoss["Pathaleon the Calculator"].." ("..AL["Heroic"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Zul'Aman
|
||||
AtlasLoot_TableNames["ZANalorakk"] = { BabbleBoss["Nalorakk"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZAAkilZon"] = { BabbleBoss["Akil'zon"], "AtlasLootBurningCrusade" };
|
||||
@@ -760,15 +579,6 @@ end
|
||||
AtlasLoot_TableNames["ZAZuljin"] = { BabbleBoss["Zul'jin"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZATimedChest"] = { "Timed Reward Chest", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZATrash"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Aman"]..")", "AtlasLootBurningCrusade" };
|
||||
-- Zul'Aman HEROIC
|
||||
AtlasLoot_TableNames["ZANalorakkHEROIC"] = { BabbleBoss["Nalorakk"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZAAkilZonHEROIC"] = { BabbleBoss["Akil'zon"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZAJanAlaiHEROIC"] = { BabbleBoss["Jan'alai"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZAHalazziHEROIC"] = { BabbleBoss["Halazzi"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZAMalacrassHEROIC"] = { BabbleBoss["Hex Lord Malacrass"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZAZuljinHEROIC"] = { BabbleBoss["Zul'jin"], "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZATimedChestHEROIC"] = { "Timed Reward Chest", "AtlasLootBurningCrusade" };
|
||||
AtlasLoot_TableNames["ZATrashHEROIC"] = { AL["Trash Mobs"].." ("..BabbleZone["Zul'Aman"]..")", "AtlasLootBurningCrusade" };
|
||||
|
||||
-------------------------
|
||||
--- Classic Instances ---
|
||||
@@ -2498,29 +2308,29 @@ end
|
||||
AtlasLoot_TableNames["JewelcraftingDaily6"] = { AL["Jewelcrafting Daily"], "AtlasLootCrafting" };
|
||||
|
||||
AtlasLoot_TableNames["AlchemyHighRisk"] = { ALCHEMY, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["AlchemyHighRiskHeroic"] = { ALCHEMY, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["AlchemyHighRiskMythic"] = { ALCHEMY, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["AlchemyHighRiskRare"] = { ALCHEMY, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["AlchemyHighRiskEpic"] = { ALCHEMY, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["SmithingHighRisk"] = { BLACKSMITHING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["SmithingHighRiskHeroic"] = { BLACKSMITHING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["SmithingHighRiskMythic"] = { BLACKSMITHING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["SmithingHighRiskRare"] = { BLACKSMITHING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["SmithingHighRiskEpic"] = { BLACKSMITHING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EnchantingHighRisk"] = { ENCHANTING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EnchantingHighRiskHeroic"] = { ENCHANTING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EnchantingHighRiskMythic"] = { ENCHANTING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EnchantingHighRiskRare"] = { ENCHANTING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EnchantingHighRiskEpic"] = { ENCHANTING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EngineerHighRisk"] = { ENGINEERING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EngineerHighRiskHeroic"] = { ENGINEERING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EngineerHighRiskMythic"] = { ENGINEERING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EngineerHighRiskRare"] = { ENGINEERING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["EngineerHighRiskEpic"] = { ENGINEERING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["LeatherHighRisk"] = { LEATHERWORKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["LeatherHighRiskHeroic"] = { LEATHERWORKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["LeatherHighRiskMythic"] = { LEATHERWORKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["LeatherHighRiskRare"] = { LEATHERWORKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["LeatherHighRiskEpic"] = { LEATHERWORKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["TailorHighRisk"] = { TAILORING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["TailorHighRiskHeroic"] = { TAILORING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["TailorHighRiskMythic"] = { TAILORING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["TailorHighRiskRare"] = { TAILORING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["TailorHighRiskEpic"] = { TAILORING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRisk"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskTwo"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskHeroic"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskTwoHeroic"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskMythic"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskTwoMythic"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskRare"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskTwoRare"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskEpic"] = { COOKING, "AtlasLootCrafting" };
|
||||
AtlasLoot_TableNames["CookingHighRiskTwoEpic"] = { COOKING, "AtlasLootCrafting" };
|
||||
|
||||
-----------
|
||||
--- PvP ---
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5692,7 +5692,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "ALCHEMYMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["AlchemyHighRiskHeroic"] = {
|
||||
AtlasLoot_Data["AlchemyHighRiskRare"] = {
|
||||
{ 1, "s968403", "967444", "=q3=Potent Flask of Manifesting Power", "=ds=#sr# 300"};
|
||||
{ 2, "s968406", "967447", "=q3=Potent Flask of the Warsong", "=ds=#sr# 300"};
|
||||
{ 3, "s968409", "967450", "=q3=Potent Flask of the Kirin Tor", "=ds=#sr# 300"};
|
||||
@@ -5709,7 +5709,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "ALCHEMYMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["AlchemyHighRiskMythic"] = {
|
||||
AtlasLoot_Data["AlchemyHighRiskEpic"] = {
|
||||
{ 1, "s968404", "967445", "=q4=Distilled Flask of Manifesting Power", "=ds=#sr# 300"};
|
||||
{ 2, "s968407", "967448", "=q4=Distilled Flask of the Warsong", "=ds=#sr# 300"};
|
||||
{ 3, "s968410", "967451", "=q4=Distilled Flask of the Kirin Tor", "=ds=#sr# 300"};
|
||||
@@ -5741,7 +5741,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "SMITHINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["SmithingHighRiskHeroic"] = {
|
||||
AtlasLoot_Data["SmithingHighRiskRare"] = {
|
||||
{ 1, "s968019", "967173", "=q3=Sturdy Living Belt Buckle", "=ds=#sr# 300"};
|
||||
{ 2, "s968022", "967176", "=q3=Sturdy Deflecting Belt Buckle", "=ds=#sr# 300"};
|
||||
{ 3, "s968025", "967179", "=q3=Sturdy Roguish Belt Buckle", "=ds=#sr# 300"};
|
||||
@@ -5756,7 +5756,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "SMITHINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["SmithingHighRiskMythic"] = {
|
||||
AtlasLoot_Data["SmithingHighRiskEpic"] = {
|
||||
{ 1, "s968020", "967174", "=q4=Mastercraft Living Belt Buckle", "=ds=#sr# 300"};
|
||||
{ 2, "s968023", "967177", "=q4=Mastercraft Deflecting Belt Buckle", "=ds=#sr# 300"};
|
||||
{ 3, "s968026", "967180", "=q4=Mastercraft Roguish Belt Buckle", "=ds=#sr# 300"};
|
||||
@@ -5783,7 +5783,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "LEATHERWORKINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["LeatherHighRiskHeroic"] = {
|
||||
AtlasLoot_Data["LeatherHighRiskRare"] = {
|
||||
{ 1, "s968001", "967155", "=q3=Sturdy Yeti Gambeson", "=ds=#sr# 300"};
|
||||
{ 2, "s968004", "967158", "=q3=Sturdy Devilsaur Gambeson", "=ds=#sr# 300"};
|
||||
{ 3, "s968007", "967161", "=q3=Sturdy Plaguebat Gambeson", "=ds=#sr# 300"};
|
||||
@@ -5795,7 +5795,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "LEATHERWORKINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["LeatherHighRiskMythic"] = {
|
||||
AtlasLoot_Data["LeatherHighRiskEpic"] = {
|
||||
{ 1, "s968002", "967156", "=q4=Mastercraft Yeti Gambeson", "=ds=#sr# 300"};
|
||||
{ 2, "s968005", "967159", "=q4=Mastercraft Devilsaur Gambeson", "=ds=#sr# 300"};
|
||||
{ 3, "s968008", "967162", "=q4=Mastercraft Plaguebat Gambeson", "=ds=#sr# 300"};
|
||||
@@ -5819,7 +5819,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "ENGINEERINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["EngineerHighRiskHeroic"] = {
|
||||
AtlasLoot_Data["EngineerHighRiskRare"] = {
|
||||
{ 1, "s968043", "967197", "=q3=Focused Gnomish Magnifying Lense", "=ds=#sr# 300"};
|
||||
{ 2, "s968046", "967200", "=q3=Focused Gnomish Focusing Lense", "=ds=#sr# 300"};
|
||||
{ 3, "s968049", "967203", "=q3=Focused Gnomish Prismatic Lense", "=ds=#sr# 300"};
|
||||
@@ -5831,7 +5831,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "ENGINEERINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["EngineerHighRiskMythic"] = {
|
||||
AtlasLoot_Data["EngineerHighRiskEpic"] = {
|
||||
{ 1, "s968044", "967198", "=q4=Polished Gnomish Magnifying Lense", "=ds=#sr# 300"};
|
||||
{ 2, "s968047", "967201", "=q4=Polished Gnomish Focusing Lense", "=ds=#sr# 300"};
|
||||
{ 3, "s968050", "967204", "=q4=Polished Gnomish Prismatic Lense", "=ds=#sr# 300"};
|
||||
@@ -5858,7 +5858,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "ENCHANTINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["EnchantingHighRiskHeroic"] = {
|
||||
AtlasLoot_Data["EnchantingHighRiskRare"] = {
|
||||
{ 1, "s968677", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Unstoppable Assault", "=ds=#sr# 300"};
|
||||
{ 2, "s968680", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Lucid Assault", "=ds=#sr# 300"};
|
||||
{ 3, "s968683", "Spell_Holy_GreaterHeal", "=q3=Enchant Weapon - Spellbinder's Rage", "=ds=#sr# 300"};
|
||||
@@ -5874,7 +5874,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "ENCHANTINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["EnchantingHighRiskMythic"] = {
|
||||
AtlasLoot_Data["EnchantingHighRiskEpic"] = {
|
||||
{ 1, "s968678", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Unstoppable Assault", "=ds=#sr# 300"};
|
||||
{ 2, "s968681", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Lucid Assualt", "=ds=#sr# 300"};
|
||||
{ 3, "s968684", "Spell_Holy_GreaterHeal", "=q4=Enchant Weapon - Greater Spellbinder's Rage", "=ds=#sr# 300"};
|
||||
@@ -5902,7 +5902,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "TAILORINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["TailorHighRiskHeroic"] = {
|
||||
AtlasLoot_Data["TailorHighRiskRare"] = {
|
||||
{ 1, "s968061", "967215", "=q3=Heavy Dragonweave Cloak Lining", "=ds=#sr# 300"};
|
||||
{ 2, "s968064", "967218", "=q3=Heavy Twilight Cloak Lining", "=ds=#sr# 300"};
|
||||
{ 3, "s968067", "967221", "=q3=Heavy Scarlet Cloak Lining", "=ds=#sr# 300"};
|
||||
@@ -5914,7 +5914,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "TAILORINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["TailorHighRiskMythic"] = {
|
||||
AtlasLoot_Data["TailorHighRiskEpic"] = {
|
||||
{ 1, "s968062", "967216", "=q4=Illustrious Dragonweave Cloak Lining", "=ds=#sr# 300"};
|
||||
{ 2, "s968065", "967219", "=q4=Illustrious Twilight Cloak Lining", "=ds=#sr# 300"};
|
||||
{ 3, "s968068", "967222", "=q4=Illustrious Scarlet Cloak Lining", "=ds=#sr# 300"};
|
||||
@@ -5978,7 +5978,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "CRAFTINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["CookingHighRiskHeroic"] = {
|
||||
AtlasLoot_Data["CookingHighRiskRare"] = {
|
||||
{ 1, "s968280", "967510", "=q3=Animated Soup for the Soul", "=ds=#sr# 300"};
|
||||
{ 2, "s968283", "967513", "=q3=Volcanic Sandwich", "=ds=#sr# 300"};
|
||||
{ 3, "s968286", "967516", "=q3=Winter Wontons", "=ds=#sr# 300"};
|
||||
@@ -6013,7 +6013,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "CRAFTINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["CookingHighRiskTwoHeroic"] = {
|
||||
AtlasLoot_Data["CookingHighRiskTwoRare"] = {
|
||||
{ 1, "s968370", "967600", "=q3=Subtle Sandwich", "=ds=#sr# 300"};
|
||||
{ 2, "s968373", "967603", "=q3=Subtle Wontons", "=ds=#sr# 300"};
|
||||
{ 3, "s968376", "967606", "=q3=Subtle Sulferous Soup", "=ds=#sr# 300"};
|
||||
@@ -6030,7 +6030,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "CRAFTINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["CookingHighRiskMythic"] = {
|
||||
AtlasLoot_Data["CookingHighRiskEpic"] = {
|
||||
{ 1, "s968281", "967511", "=q4=Animated Soup for the Soul", "=ds=#sr# 300"};
|
||||
{ 2, "s968284", "967514", "=q4=Volcanic Sandwich", "=ds=#sr# 300"};
|
||||
{ 3, "s968287", "967517", "=q4=Winter Wontons", "=ds=#sr# 300"};
|
||||
@@ -6065,7 +6065,7 @@ local MASTER = select(2, GetSpellInfo(28596));
|
||||
Back = "CRAFTINGMENU";
|
||||
};
|
||||
|
||||
AtlasLoot_Data["CookingHighRiskTwoMythic"] = {
|
||||
AtlasLoot_Data["CookingHighRiskTwoEpic"] = {
|
||||
{ 1, "s968371", "967601", "=q4=Subtle Sandwich", "=ds=#sr# 300"};
|
||||
{ 2, "s968374", "967604", "=q4=Subtle Wontons", "=ds=#sr# 300"};
|
||||
{ 3, "s968377", "967607", "=q4=Subtle Sulferous Soup", "=ds=#sr# 300"};
|
||||
|
||||
Reference in New Issue
Block a user