This commit is contained in:
Spit
2024-09-07 01:03:38 +03:00
committed by GitHub
parent fc8e4d44f8
commit eda5fa48d2
17 changed files with 3198 additions and 931 deletions
+220 -263
View File
@@ -68,8 +68,8 @@ local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
--Establish version number and compatible version of Atlas
local VERSION_MAJOR = "1";
local VERSION_MINOR = "1";
local VERSION_BOSSES = "3";
local VERSION_MINOR = "2";
local VERSION_BOSSES = "4";
ATLASLOOT_VERSION = "|cffFF8400AtlasLoot TW Edition v"..VERSION_MAJOR.."."..VERSION_MINOR.."."..VERSION_BOSSES.."|r";
ATLASLOOT_CURRENT_ATLAS = "1.12.0";
ATLASLOOT_PREVIEW_ATLAS = "1.12.1";
@@ -184,7 +184,7 @@ AtlasLoot_MenuList = {
"WORLDEPICS",
"REPMENU",
"WORLDEVENTMENU",
"AbyssalCouncil",
--"AbyssalCouncil",
"ALCHEMYMENU",
"CRAFTINGMENU",
"SMITHINGMENU",
@@ -196,6 +196,7 @@ AtlasLoot_MenuList = {
"CRAFTSET",
"COOKINGMENU",
"SURVIVALMENU",
"WORLDBOSSMENU"
};
--entrance maps to instance maps NOT NEEDED FOR ATLAS 1.12
@@ -252,12 +253,12 @@ function AtlasLootDefaultFrame_OnShow()
--Set the item table to the loot table
AtlasLoot_SetItemInfoFrame(pFrame);
--Show the last displayed loot table
if AtlasLoot_IsLootTableAvailable(AtlasLootCharDB.LastBoss) then
--if AtlasLoot_IsLootTableAvailable(AtlasLootCharDB.LastBoss) then
AtlasLoot_ShowBossLoot(AtlasLootCharDB.LastBoss, AtlasLootCharDB.LastBossText, pFrame);
--AtlasLoot_HewdropSubMenuRegister(AtlasLootCharDB.LastBoss);
else
AtlasLoot_ShowBossLoot("EmptyInstance", AL["AtlasLoot"], pFrame);
end
--else
--AtlasLoot_ShowBossLoot("EmptyInstance", AL["AtlasLoot"], pFrame);
--end
end
--[[
@@ -598,11 +599,15 @@ function AtlasLoot_SetItemInfoFrame(pFrame)
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(AtlasFrame);
AtlasLootItemsFrame:SetPoint("TOPLEFT", "AtlasFrame", "TOPLEFT", 18, -84);
else
elseif ( AtlasDefaultFrame ) then
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(AtlasLootDefaultFrame);
AtlasLootItemsFrame:SetPoint("TOPLEFT", "AtlasLootDefaultFrame", "TOPLEFT", 0, 0);
--[[else
--Last resort, dump the items frame in the middle of the screen
AtlasLootItemsFrame:ClearAllPoints();
AtlasLootItemsFrame:SetParent(UIParent);
AtlasLootItemsFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);
AtlasLootItemsFrame:SetPoint("CENTER", "UIParent", "CENTER", 0, 0);]]
end
AtlasLootItemsFrame:Show();
end
@@ -748,7 +753,7 @@ function AtlasLoot_Refresh()
local f;
if (not getglobal("AtlasBossLine"..i)) then
f = CreateFrame("Button", "AtlasBossLine"..i, AtlasFrame, "AtlasLootNewBossLineTemplate");
f:SetFrameStrata("MEDIUM");
f:SetFrameStrata("FULLSCREEN_DIALOG");
if i==1 then
f:SetPoint("TOPLEFT", "AtlasScrollBar", "TOPLEFT", 16, -3);
else
@@ -1160,8 +1165,6 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLootWorldEpicsMenu();
elseif(dataID=="WORLDEVENTMENU") then
AtlasLootWorldEventMenu();
elseif(dataID=="AbyssalCouncil") then
AtlasLootAbyssalCouncilMenu();
elseif(dataID=="CRAFTINGMENU") then
AtlasLoot_CraftingMenu();
elseif(dataID=="CRAFTSET") then
@@ -1184,6 +1187,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLoot_CookingMenu();
elseif(dataID=="SURVIVALMENU") then
AtlasLoot_SurvivalMenu();
elseif(dataID=="WORLDBOSSMENU") then
AtlasLoot_WorldBossMenu();
else
--Iterate through each item object and set its properties
for i = 1, 30, 1 do
@@ -1245,7 +1250,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
--This is a valid QuickLook, so show the UI objects
AtlasLoot_QuickLooks:Show();
AtlasLootQuickLooksButton:Show();
AtlasLootServerQueryButton:Show();
AtlasLootServerQueryButton:Hide();
--Insert the item description
extra = dataSource[dataID][i][4];
extra = AtlasLoot_FixText(extra);
@@ -1612,6 +1617,7 @@ function AtlasLoot_HewdropSubMenuRegister(loottable)
'notCheckable', true
)
end
--[[
AtlasLoot_HewdropSubMenu:AddLine(
'text', AL["Close Menu"],
'textR', 0,
@@ -1620,6 +1626,7 @@ function AtlasLoot_HewdropSubMenuRegister(loottable)
'func', function() AtlasLoot_HewdropSubMenu:Close() end,
'notCheckable', true
)
]]
end
end,
'dontHook', true
@@ -1667,6 +1674,8 @@ function AtlasLoot_HewdropRegister()
'textB', 0,
'hasArrow', true,
'value', j,
'func', AtlasLoot_OpenMenu,
'arg1', i,
'notCheckable', true
)
lock=1;
@@ -1675,7 +1684,7 @@ function AtlasLoot_HewdropRegister()
end
end
end
--Close button
--[[Close button
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
@@ -1684,6 +1693,7 @@ function AtlasLoot_HewdropRegister()
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
]]
elseif level == 2 then
if value then
for k,v in ipairs(value) do
@@ -1707,6 +1717,9 @@ function AtlasLoot_HewdropRegister()
else
AtlasLoot_Hewdrop:AddLine(
'text', v[1][1],
'textR', 1,
'textG', 0.82,
'textB', 0,
'func', AtlasLoot_HewdropClick,
'arg1', v[1][2],
'arg2', v[1][1],
@@ -1735,6 +1748,7 @@ function AtlasLoot_HewdropRegister()
end
end
end
--[[
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
@@ -1743,6 +1757,7 @@ function AtlasLoot_HewdropRegister()
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
]]
elseif level == 3 then
--Essentially the same as level == 2
if value then
@@ -1764,6 +1779,9 @@ function AtlasLoot_HewdropRegister()
else
AtlasLoot_Hewdrop:AddLine(
'text', v[1],
'textR', 1,
'textG', 0.82,
'textB', 0,
'func', AtlasLoot_HewdropClick,
'arg1', v[2],
'arg2', v[1],
@@ -1784,6 +1802,7 @@ function AtlasLoot_HewdropRegister()
end
end
end
--[[
AtlasLoot_Hewdrop:AddLine(
'text', AL["Close Menu"],
'textR', 0,
@@ -1792,12 +1811,45 @@ function AtlasLoot_HewdropRegister()
'func', function() AtlasLoot_Hewdrop:Close() end,
'notCheckable', true
)
]]
end
end,
'dontHook', true
)
end
function AtlasLoot_OpenMenu(menu_name)
AtlasLoot_QuickLooks:Hide();
AtlasLootQuickLooksButton:Hide();
AtlasLootServerQueryButton:Hide();
AtlasLootCharDB.LastBoss = this.lootpage;
AtlasLootCharDB.LastBossText = menu_name;
if menu_name == "Crafting" then
AtlasLoot_CraftingMenu()
CloseDropDownMenus()
elseif menu_name == "PvP Rewards" then
AtlasLootPvPMenu()
CloseDropDownMenus()
elseif menu_name == "World Events" then
AtlasLootWorldEventMenu()
CloseDropDownMenus()
elseif menu_name == "Collections" then
AtlasLootSetMenu()
CloseDropDownMenus()
elseif menu_name == "Factions" then
AtlasLootRepMenu()
CloseDropDownMenus()
elseif menu_name == "World Bosses" then
AtlasLoot_WorldBossMenu()
CloseDropDownMenus()
end
AtlasLootDefaultFrame_SelectedCategory:SetText(menu_name)
AtlasLootDefaultFrame_SubMenu:Disable();
AtlasLootDefaultFrame_SelectedTable:SetText("");
AtlasLootDefaultFrame_SelectedTable:Show();
end
--[[
AtlasLootItemsFrame_OnCloseButton:
Called when the close button on the item frame is clicked
@@ -1827,6 +1879,7 @@ Requests the relevant loot page from a menu screen
function AtlasLootMenuItem_OnClick()
if this.isheader == nil or this.isheader == false then
local pagename = getglobal(this:GetName().."_Name"):GetText()
--[[
for k,v in ipairs(AtlasLoot_HewdropDown) do
if not (type(v[1]) == "table") then
for k2, v2 in pairs(v) do
@@ -1842,6 +1895,10 @@ function AtlasLootMenuItem_OnClick()
end
end
end
]]
CloseDropDownMenus()
AtlasLootCharDB.LastBoss = this.lootpage;
AtlasLootCharDB.LastBossText = pagename;
AtlasLoot_ShowBossLoot(this.lootpage, pagename, AtlasLoot_AnchorFrame);
end
end
@@ -1860,7 +1917,6 @@ function AtlasLoot_NavButton_OnClick()
AtlasLootCharDB.LastBoss = this.lootpage;
AtlasLootCharDB.LastBossText = this.title;
AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], this.title, AtlasLootItemsFrame.refresh[4]);
end
elseif AtlasLootItemsFrame.refresh and AtlasLootItemsFrame.refresh[2] then
AtlasLoot_ShowItemsFrame(this.lootpage, AtlasLootItemsFrame.refresh[2], this.title, AtlasFrame);
@@ -2184,275 +2240,166 @@ end
AtlasLoot_HewdropDown = {
[1] = {
[AL["Dungeons & Raids"]] = {
[1] = {
{ AL["Ragefire Chasm"], "RagefireChasm", "Submenu" },
},
[2] = {
{ AL["Wailing Caverns"], "WailingCaverns", "Submenu" },
},
[3] = {
{ AL["The Deadmines"], "Deadmines", "Submenu" },
},
[4] = {
{ AL["Shadowfang Keep"], "ShadowfangKeep", "Submenu" },
},
[5] = {
{ AL["Blackfathom Deeps"], "BlackfathomDeeps", "Submenu" },
},
[6] = {
{ AL["The Stockade"], "TheStockade", "Submenu" },
},
[7] = {
{ AL["Gnomeregan"], "Gnomeregan", "Submenu" },
},
[8] = {
{ AL["Razorfen Kraul"], "RazorfenKraul", "Submenu" },
},
[9] = {
{ AL["The Crescent Grove"], "TheCrescentGrove", "Submenu" },
},
[10] = {
[AL["Scarlet Monastery"]] = {
[1] = {{ AL["Ragefire Chasm"], "RagefireChasm", "Submenu" },},
[2] = {{ AL["Wailing Caverns"], "WailingCaverns", "Submenu" },},
[3] = {{ AL["The Deadmines"], "Deadmines", "Submenu" },},
[4] = {{ AL["Shadowfang Keep"], "ShadowfangKeep", "Submenu" },},
[5] = {{ AL["Blackfathom Deeps"], "BlackfathomDeeps", "Submenu" },},
[6] = {{ AL["The Stockade"], "TheStockade", "Submenu" },},
[7] = {{ AL["Gnomeregan"], "Gnomeregan", "Submenu" },},
[8] = {{ AL["Razorfen Kraul"], "RazorfenKraul", "Submenu" },},
[9] = {{ AL["The Crescent Grove"], "TheCrescentGrove", "Submenu" },},
[10] = {[AL["Scarlet Monastery"]] = {
{ AL["Scarlet Monastery (Graveyard)"], "SMGraveyard", "Submenu" },
{ AL["Scarlet Monastery (Library)"], "SMLibrary", "Submenu" },
{ AL["Scarlet Monastery (Armory)"], "SMArmory", "Submenu" },
{ AL["Scarlet Monastery (Cathedral)"], "SMCathedral", "Submenu" },
},
},
[11] = {
{ AL["Razorfen Downs"], "RazorfenDowns", "Submenu" },
},
[12] = {
{ AL["Uldaman"], "Uldaman", "Submenu" },
},
[13] = {
{ AL["Gilneas City"], "GilneasCity", "Submenu" },
},
[14] = {
{ AL["Maraudon"], "Maraudon", "Submenu" },
},
[15] = {
{ AL["Zul'Farrak"], "ZulFarrak", "Submenu" },
},
[16] = {
{ AL["The Sunken Temple"], "SunkenTemple", "Submenu" },
},
[17] = {
{ AL["Hateforge Quarry"], "HateforgeQuarry", "Submenu" },
},
[18] = {
{ AL["Blackrock Depths"], "BlackrockDepths", "Submenu" },
},
[19] = {
[AL["Dire Maul"]] = {
},},
[11] = {{ AL["Razorfen Downs"], "RazorfenDowns", "Submenu" },},
[12] = {{ AL["Uldaman"], "Uldaman", "Submenu" },},
[13] = {{ AL["Gilneas City"], "GilneasCity", "Submenu" },},
[14] = {{ AL["Maraudon"], "Maraudon", "Submenu" },},
[15] = {{ AL["Zul'Farrak"], "ZulFarrak", "Submenu" },},
[16] = {{ AL["The Sunken Temple"], "SunkenTemple", "Submenu" },},
[17] = {{ AL["Hateforge Quarry"], "HateforgeQuarry", "Submenu" },},
[18] = {{ AL["Blackrock Depths"], "BlackrockDepths", "Submenu" },},
[19] = {[AL["Dire Maul"]] = {
{ AL["Dire Maul (East)"], "DireMaulEast", "Submenu" },
{ AL["Dire Maul (West)"], "DireMaulWest", "Submenu" },
{ AL["Dire Maul (North)"], "DireMaulNorth", "Submenu" },
},},
[20] = {{ AL["Scholomance"], "Scholomance", "Submenu" },},
[21] = {{ AL["Stratholme"], "Stratholme", "Submenu" },},
[22] = {{ AL["Lower Blackrock Spire"], "LowerBlackrock", "Submenu" },},
[23] = {{ AL["Upper Blackrock Spire"], "UpperBlackrock", "Submenu" },},
[24] = {{ AL["Karazhan Crypt"], "KarazhanCrypt", "Submenu" },},
[25] = {{ AL["Caverns of Time: Black Morass"], "CavernsOfTimeBlackMorass", "Submenu" },},
[26] = {{ AL["Stormwind Vault"], "StormwindVault", "Submenu" },},
[27] = {{ AL["Zul'Gurub"], "ZulGurub", "Submenu" },},
[28] = {{ AL["Ruins of Ahn'Qiraj"], "RuinsofAQ", "Submenu" },},
[29] = {{ AL["Molten Core"], "MoltenCore", "Submenu" },},
[30] = {{ AL["Onyxia's Lair"], "Onyxia", "Submenu" },},
[31] = {{ AL["Lower Karazhan Halls"], "LowerKara", "Submenu" },},
[32] = {{ AL["Blackwing Lair"], "BlackwingLair", "Submenu" },},
[33] = {{ AL["Emerald Sanctum"], "EmeraldSanctum", "Submenu" },},
[34] = {{ AL["Temple of Ahn'Qiraj"], "TempleofAQ", "Submenu" },},
[35] = {{ AL["Naxxramas"], "Naxxramas", "Submenu" },},
},
},
[20] = {
{ AL["Scholomance"], "Scholomance", "Submenu" },
},
[21] = {
{ AL["Stratholme"], "Stratholme", "Submenu" },
},
[22] = {
{ AL["Lower Blackrock Spire"], "LowerBlackrock", "Submenu" },
},
[23] = {
{ AL["Upper Blackrock Spire"], "UpperBlackrock", "Submenu" },
},
[24] = {
{ AL["Karazhan Crypt"], "KarazhanCrypt", "Submenu" },
},
[25] = {
{ AL["Caverns of Time: Black Morass"], "CavernsOfTimeBlackMorass", "Submenu" },
},
[26] = {
{ AL["Stormwind Vault"], "StormwindVault", "Submenu" },
},
[27] = {
{ AL["Zul'Gurub"], "ZulGurub", "Submenu" },
},
[28] = {
{ AL["Ruins of Ahn'Qiraj"], "RuinsofAQ", "Submenu" },
},
[29] = {
{ AL["Molten Core"], "MoltenCore", "Submenu" },
},
[30] = {
{ AL["Onyxia's Lair"], "Onyxia", "Submenu" },
},
[31] = {
{ AL["Lower Karazhan Halls"], "LowerKara", "Submenu" },
},
[32] = {
{ AL["Blackwing Lair"], "BlackwingLair", "Submenu" },
},
[33] = {
{ AL["Emerald Sanctum"], "EmeraldSanctum", "Submenu" },
},
[34] = {
{ AL["Temple of Ahn'Qiraj"], "TempleofAQ", "Submenu" },
},
[35] = {
{ AL["Naxxramas"], "Naxxramas", "Submenu" },
[2] = { [AL["World Bosses"]] = {
[1] = {{AL["Azuregos"], "AAzuregos", "Table" },},
[2] = {{AL["Emeriss"], "DEmeriss", "Table" },},
[3] = {{AL["Lethon"], "DLethon", "Table" },},
[4] = {{AL["Taerar"], "DTaerar", "Table" },},
[5] = {{AL["Ysondre"], "DYsondre", "Table" },},
[6] = {{AL["Lord Kazzak"], "KKazzak", "Table" },},
[7] = {{AL["Nerubian Overseer"], "Nerubian", "Table" },},
[8] = {{AL["Dark Reaver of Karazhan"], "Reaver", "Table" },},
[9] = {{AL["Ostarius"], "Ostarius", "Table" },},
[10] = {{AL["Concavius"], "Concavius", "Table" },},
[11] = {{AL["There Is No Cow Level"], "CowKing", "Table" },},
},
},
[3] = {[AL["PvP Rewards"]] = {
[1] = {{ AL["PvP Armor Sets"], "PVPSET", "Table" },},
[2] = {{ AL["PvP Accessories"], "PvP60Accessories1", "Table" },},
[3] = {{ AL["Rank 14 Weapons"], "PVPWeapons1", "Table" },},
[4] = {{ AL["PvP Mounts"], "PvPMountsPvP", "Table" },},
[5] = {{ AL["Blood Ring"], "BRRepMenu", "Table" },},
[6] = {{ AL["Alterac Valley"], "AVRepMenu", "Table" },},
[7] = {{ AL["Arathi Basin"], "ABRepMenu", "Table" },},
[8] = {{ AL["Warsong Gulch"], "WSGRepMenu", "Table" },},
},
[2] = {
{ AL["World Bosses"], "WorldBosses", "Submenu" },
},
[3] = {
{ "Rare Spawns", "RareSpawns", "Submenu" },
},
[4] = {
[AL["PvP Rewards"]] = {
[1] = {
{ AL["PvP Armor Sets"], "PvPArmorSets", "Submenu" },
},
[2] = {
{ AL["PvP Accessories"], "PvP60Accessories1", "Table" },
},
[3] = {
{ AL["Rank 14 Weapons"], "PVPWeapons1", "Table" },
},
[4] = {
{ AL["PvP Mounts"], "PvPMountsPvP", "Table" },
},
[5] = {
{ AL["Blood Ring"], "BRRewards", "Submenu" },
},
[6] = {
{ AL["Alterac Valley"], "AVRewards", "Submenu" },
},
[7] = {
{ AL["Arathi Basin"], "ABRewards", "Submenu" },
},
[8] = {
{ AL["Warsong Gulch"], "WSGRewards", "Submenu" },
},
[4] = {[AL["Collections"]] = {
[1] = {{ AL["Sets"], "PRE60SET", "Table" },},
[2] = {{ AL["Zul'Gurub Sets"], "ZGSET", "Table" },},
[3] = {{ AL["Ruins of Ahn'Qiraj Sets"], "AQ20SET", "Table" },},
[4] = {{ AL["Temple of Ahn'Qiraj Sets"], "AQ40SET", "Table" },},
[5] = {{ AL["Dungeon 1/2 Sets"], "T0SET", "Table" },},
[6] = {{ AL["Tier 1 Sets"], "T1SET", "Table" },},
[7] = {{ AL["Tier 2 Sets"], "T2SET", "Table" },},
[8] = {{ AL["Tier 3 Sets"], "T3SET", "Table" },},
[9] = {{ AL["Legendary Items"], "Legendaries", "Table" },},
[10] = {{ AL["World Epics"], "WORLDEPICS", "Table" },},
[11] = {{ AL["Rare Pets"], "RarePets1", "Table" },},
[12] = {{ AL["Rare Mounts"], "RareMounts", "Table" },},
[13] = {{ AL["Fashion"], "DonationRewards2", "Table" },},
[14] = {{ AL["Tabards"], "Tabards", "Table" },},
--[15] = {{ AL["Old Mounts"], "OldMounts", "Table" },},
--[16] = {{ AL["Unobtainable Mounts"], "UnobMounts", "Table" },},
},
},
[5] = {
[AL["Sets/Collections"]] = {
[1] = {
{ AL["Pre 60 Sets"], "Pre60Sets", "Submenu" },
[AL["Factions"]] = {
[1] = {{ AL["Argent Dawn"], "Argent1" , "Table" },},
[2] = {{ AL["Bloodsail Buccaneers"], "Bloodsail1", "Table" },},
[3] = {{ AL["Brood of Nozdormu"], "AQBroodRings", "Table" },},
[4] = {{ AL["Cenarion Circle"], "Cenarion1", "Table" }},
[5] = {{ AL["Dalaran"], "Dalaran", "Table" },},
[6] = {{ AL["Darkmoon Faire"], "Darkmoon", "Table" },},
[7] = {{ AL["Darkspear Trolls"], "DarkspearTrolls", "Table" },},
[8] = {{ AL["Darnassus"], "Darnassus", "Table" },},
[9] = {{ AL["Durotar Labor Union"], "DurotarLaborUnion", "Table" },},
[10] = {{ AL["Frostwolf Clan"], "Frostwolf1", "Table" },},
[11] = {{ AL["Gelkis Clan Centaur"], "GelkisClan1", "Table" },},
[12] = {{ AL["Gnomeregan Exiles"], "GnomereganExiles", "Table" },},
[13] = {{ AL["Hydraxian Waterlords"], "WaterLords1", "Table" },},
[14] = {{ AL["Ironforge"], "Ironforge", "Table" },},
[15] = {{ AL["Magram Clan Centaur"], "MagramClan1", "Table" },},
[16] = {{ AL["Orgrimmar"], "Orgrimmar", "Table" },},
[17] = {{ AL["Revantusk Trolls"], "Revantusk", "Table" },},
[18] = {{ AL["Silvermoon Remnant"], "Helf", "Table" },},
[19] = {{ AL["Stormpike Guard"], "Stormpike1", "Table" },},
[20] = {{ AL["Stormwind"], "Stormwind", "Table" },},
[21] = {{ AL["Thorium Brotherhood"], "Thorium1", "Table" },},
[22] = {{ AL["Thunder Bluff"], "ThunderBluff", "Table" },},
[23] = {{ AL["Timbermaw Hold"], "Timbermaw", "Table" },},
[24] = {{ AL["Undercity"], "Undercity", "Table" },},
[25] = {{ AL["Wardens of Time"], "Wardens1", "Table" },},
[26] = {{ AL["Wildhammer Clan"], "Wildhammer", "Table" },},
[27] = {{ AL["Wintersaber Trainers"], "Wintersaber1", "Table" },},
[28] = {{ AL["Zandalar Tribe"], "Zandalar1", "Table" },},
},
[2] = {
{ AL["Dungeon 1/2 Sets"], "DungeonSets12", "Submenu" },
},
[3] = {
{ AL["Ruins of Ahn'Qiraj Sets"], "AQ20Sets", "Submenu" },
[6] = {[AL["World Events"]] = {
[1] = {{ AL["Abyssal Council"], "AbyssalTemplars", "Table" },},
[2] = {{ AL["Children's Week"], "ChildrensWeek", "Table" },},
[3] = {{ AL["Elemental Invasion"], "ElementalInvasion", "Table" },},
[4] = {{ AL["Feast of Winter Veil"], "Winterviel", "Table" },},
[5] = {{ AL["Gurubashi Arena Booty Run"], "GurubashiArena", "Table" },},
[6] = {{ AL["Hallow's End"], "Halloween1", "Table" },},
[7] = {{ AL["Harvest Festival"], "HarvestFestival", "Table" },},
[8] = {{ AL["Love is in the Air"], "Valentineday", "Table" },},
[9] = {{ AL["Lunar Festival"], "LunarFestival1", "Table" },},
[10] = {{ AL["Midsummer Fire Festival"], "MidsummerFestival", "Table" },},
[11] = {{ AL["Noblegarden"], "Noblegarden", "Table" },},
[12] = {{ AL["Scourge Invasion"], "ScourgeInvasionEvent1", "Table" },},
[13] = {{ AL["Stranglethorn Fishing Extravaganza"], "FishingExtravaganza", "Table" },},
},
[4] = {
{ AL["Temple of Ahn'Qiraj Sets"], "AQ40Sets", "Submenu" },
},
[5] = {
{ AL["Zul'Gurub Sets"], "ZGSets", "Submenu" },
},
[6] = {
{ AL["Tier 1 Sets"], "T1Sets", "Submenu" },
},
[7] = {
{ AL["Tier 2 Sets"], "T2Sets", "Submenu" },
},
[8] = {
{ AL["Tier 3 Sets"], "T3Sets", "Submenu" },
},
[9] = {
{ AL["Legendary Items"], "Legendaries", "Table" },
},
[10] = {
{ AL["Rare Pets"], "RarePets1", "Table" },
},
[11] = {
{ AL["Rare Mounts"], "RareMounts", "Table" },
},
[12] = {
{ AL["Old Mounts"], "OldMounts", "Table" },
},
[13] = {
{ AL["Unobtainable Mounts"], "UnobMounts", "Table" },
},
[14] = {
{ AL["Tabards"], "Tabards", "Table" },
},
[15] = {
{ AL["World Epics"], "BoEWorldEpics", "Submenu" },
},
},
},
[6] = {
{ AL["Reputation Factions"], "Factions", "Submenu" },
},
[7] = {
[AL["World Events"]] = {
[1] = {
{ AL["Abyssal Council"], "AbyssalCouncil", "Submenu" },
},
[2] = {
{ AL["Children's Week"], "ChildrensWeek", "Table" },
},
[3] = {
{ AL["Elemental Invasion"], "ElementalInvasion", "Table" },
},
[4] = {
{ AL["Feast of Winter Veil"], "Winterviel", "Submenu" },
},
[5] = {
{ AL["Gurubashi Arena Booty Run"], "GurubashiArena", "Table" },
},
[6] = {
{ AL["Hallow's End"], "Halloween1", "Table" },
},
[7] = {
{ AL["Harvest Festival"], "HarvestFestival", "Table" },
},
[8] = {
{ AL["Love is in the Air"], "Valentineday", "Table" },
},
[9] = {
{ AL["Lunar Festival"], "LunarFestival1", "Table" },
},
[10] = {
{ AL["Midsummer Fire Festival"], "MidsummerFestival", "Table" },
},
[11] = {
{ AL["Noblegarden"], "Noblegarden", "Table" },
},
[12] = {
{ AL["Scourge Invasion"], "ScourgeInvasionEvent1", "Table" },
},
[13] = {
{ AL["Stranglethorn Fishing Extravaganza"], "FishingExtravaganza", "Table" },
},
},
},
[8] = {
[AL["Crafting"]] = {
[1] = { { AL["Alchemy"], "Alchemy", "Submenu" }, },
[2] = { { (AL["Blacksmithing"]), "Blacksmithing", "Submenu" }, },
[3] = { { (AL["Enchanting"]), "Enchanting", "Submenu" }, },
[4] = { { (AL["Engineering"]), "Engineering", "Submenu" }, },
[1] = { { AL["Alchemy"], "ALCHEMYMENU", "Table" }, },
[2] = { { (AL["Blacksmithing"]), "SMITHINGMENU", "Table" }, },
[3] = { { (AL["Enchanting"]), "ENCHANTINGMENU", "Table" }, },
[4] = { { (AL["Engineering"]), "ENGINEERINGMENU", "Table" }, },
[5] = { { (AL["Herbalism"]), "Herbalism1", "Table" }, },
[6] = { { (AL["Leatherworking"]), "Leatherworking", "Submenu" }, },
[7] = { { (AL["Mining"]), "Mining", "Submenu" }, },
[8] = { { (AL["Tailoring"]), "Tailoring", "Submenu" }, },
[9] = { { (AL["Cooking"]), "Cooking", "Submenu" }, },
[6] = { { (AL["Leatherworking"]), "LEATHERWORKINGMENU", "Table" }, },
[7] = { { (AL["Mining"]), "MININGMENU", "Table" }, },
[8] = { { (AL["Tailoring"]), "TAILORINGMENU", "Table" }, },
[9] = { { (AL["Cooking"]), "COOKINGMENU", "Table" }, },
[10] = { { (AL["First Aid"]), "FirstAid1", "Table" }, },
[11] = { { (AL["Survival"]), "Survival", "Submenu" }, },
[12] = { { (AL["Poisons"]), "Poisons1", "Table" }, },
[13] = {
[AL["Crafted Sets"]] = {
{ (AL["Blacksmithing"]), "CraftSetBlacksmith", "Submenu" },
{ (AL["Leatherworking"]), "CraftSetLeatherwork", "Submenu" },
{ (AL["Tailoring"]), "CraftSetTailoring", "Submenu" },
},
},
[14] = { { AL["Crafted Epic Weapons"], "CraftedWeapons1", "Table" }, },
[11] = { { (AL["Survival"]), "Survival1", "Table" }, },
[12] = { { (AL["Gardening"]), "Survival2", "Table" }, },
[13] = { { (AL["Poisons"]), "Poisons1", "Table" }, },
[14] = { { AL["Crafted Sets"], "CRAFTSET", "Table" },},
[15] = { { AL["Crafted Epic Weapons"], "CraftedWeapons1", "Table" }, },
},
},
[8] = {{ "Rare Spawns", "RareSpawns", "Submenu" },},
};
--This table defines all the subtables needed for the full menu
@@ -2994,8 +2941,9 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Abyssal Council"].." - "..AL["High Council"], "AbyssalLords" },
},
["Winterviel"] = {
{ AL["Feast of Winter Veil"], "Winterviel1", "Table" },
{ "Snowball", "WintervielSnowball", "Table" },
{ AL["Feast of Winter Veil"], "Winterviel1"},
{ AL["Feast of Winter Veil"], "Winterviel2"},
{ "Snowball", "WintervielSnowball"},
},
["Factions"] = {
{ AL["Argent Dawn"], "Argent1" },
@@ -3022,7 +2970,7 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Thunder Bluff"], "ThunderBluff" },
{ AL["Timbermaw Hold"], "Timbermaw" },
{ AL["Undercity"], "Undercity" },
{ AL["Wardens of Time"], "Warderns1" },
{ AL["Wardens of Time"], "Wardens1" },
{ AL["Wildhammer Clan"], "Wildhammer" },
{ AL["Wintersaber Trainers"], "Wintersaber1" },
{ AL["Zandalar Tribe"], "Zandalar1" },
@@ -3135,6 +3083,9 @@ AtlasLoot_HewdropDown_SubTables = {
{ "|cff2773ff"..AL["Shaman"], "ZGShaman" },
{ "|cfff48cba"..AL["Paladin"], "ZGPaladin" },
{ "|cffc69b6d"..AL["Warrior"], "ZGWarrior" },
{ AL["Zul'Gurub Rings"], "ZGRings" },
{ AL["The Twin Blades of Hakkari"], "HakkariBlades" },
{ AL["Zul'Gurub Rings"], "ZGRings" },
},
["Pre60Sets"] = {
{ AL["Bloodmail Regalia"], "ScholoMail" },
@@ -3153,8 +3104,7 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Spirit of Eskhandar"], "SpiritofEskhandar" },
{ AL["The Gladiator"], "BLACKROCKD" },
{ AL["The Postmaster"], "STRAT" },
{ AL["The Twin Blades of Hakkari"], "HakkariBlades" },
{ AL["Zul'Gurub Rings"], "ZGRings" },
},
["BRRewards"] = {
{ AL["Friendly Reputation Rewards"], "BRRepFriendly" },
@@ -3202,6 +3152,12 @@ AtlasLoot_HewdropDown_SubTables = {
{ AtlasLoot_TableNames["AlchemyJourneyman1"][1], "AlchemyJourneyman1" },
{ AtlasLoot_TableNames["AlchemyExpert1"][1], "AlchemyExpert1" },
{ AtlasLoot_TableNames["AlchemyArtisan1"][1], "AlchemyArtisan1" },
{ AtlasLoot_TableNames["AlchemyHealingAndMana1"][1], "AlchemyHealingAndMana1" },
{ AtlasLoot_TableNames["AlchemyFlasks1"][1], "AlchemyFlasks1" },
{ AtlasLoot_TableNames["AlchemyTransmutes1"][1], "AlchemyTransmutes1" },
{ AtlasLoot_TableNames["AlchemyDefensive1"][1], "AlchemyDefensive1" },
{ AtlasLoot_TableNames["AlchemyOffensive1"][1], "AlchemyOffensive1" },
{ AtlasLoot_TableNames["AlchemyOther1"][1], "AlchemyOther1" },
},
["Blacksmithing"] = {
{ AtlasLoot_TableNames["SmithingApprentice1"][1], "SmithingApprentice1" },
@@ -3275,6 +3231,7 @@ AtlasLoot_HewdropDown_SubTables = {
function AtlasLootItem_OnEnter()
local isItem, isEnchant, isSpell;
AtlasLootTooltip:ClearLines();
AtlasLoot_QueryLootPage()
for i=1, 30, 1 do
if (getglobal("AtlasLootTooltipTextRight"..i) ~= nil) then
getglobal("AtlasLootTooltipTextRight"..i):SetText("");
+22 -1
View File
@@ -11,6 +11,7 @@
<Script file="AtlasLoot.lua"/>
<Script file="WishList.lua"/>
<Script file="Search.lua"/>
<Script file="WorldBoss.lua"/>
<Button name="AtlasLootDefaultFrameButtonTemplate" inherits="OptionsButtonTemplate" virtual="true">
<Size>
@@ -18,7 +19,7 @@
</Size>
</Button>
<Frame name="AtlasLootDefaultFrame" toplevel="true" frameStrata="MEDIUM" movable="true" enableMouse="true" hidden="true" parent="UIParent" enableKeyboard="true">
<Frame name="AtlasLootDefaultFrame" toplevel="true" frameStrata="DIALOG" movable="true" enableMouseClicks="true" hidden="true" parent="UIParent" enableKeyboard="true">
<Size>
<AbsDimension x="600" y="690"/>
</Size>
@@ -69,6 +70,7 @@
AtlasLootSearchBox:ClearFocus();
end
Atlas_Toggle();
CloseDropDownMenus();
</OnClick>
<OnShow>
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -93,6 +95,7 @@
<Scripts>
<OnClick>
AtlasLootOptions_Toggle();
CloseDropDownMenus();
</OnClick>
<OnShow>
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -210,6 +213,7 @@
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][1][1], AtlasLootCharDB["QuickLooks"][1][2], AtlasLootCharDB["QuickLooks"][1][3], pFrame);
end
CloseDropDownMenus();
</OnClick>
<OnShow>
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -255,6 +259,7 @@
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][2][1], AtlasLootCharDB["QuickLooks"][2][2], AtlasLootCharDB["QuickLooks"][2][3], pFrame);
end
CloseDropDownMenus();
</OnClick>
<OnShow>
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -300,6 +305,7 @@
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][3][1], AtlasLootCharDB["QuickLooks"][3][2], AtlasLootCharDB["QuickLooks"][3][3], pFrame);
end
CloseDropDownMenus();
</OnClick>
<OnShow>
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -330,6 +336,7 @@
GameTooltip:Show();
end
</OnEnter>
<OnLeave>
if(GameTooltip:IsVisible()) then
GameTooltip:Hide();
@@ -345,6 +352,7 @@
pFrame = { "TOPLEFT", "AtlasLootDefaultFrame_LootBackground", "TOPLEFT", "2", "-2" };
AtlasLoot_ShowItemsFrame(AtlasLootCharDB["QuickLooks"][4][1], AtlasLootCharDB["QuickLooks"][4][2], AtlasLootCharDB["QuickLooks"][4][3], pFrame);
end
CloseDropDownMenus();
</OnClick>
<OnShow>
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -399,6 +407,7 @@
<OnClick>
AtlasLoot:Search(AtlasLootDefaultFrameSearchBox:GetText());
AtlasLootDefaultFrameSearchBox:ClearFocus();
CloseDropDownMenus();
</OnClick>
</Scripts>
</Button>
@@ -446,6 +455,7 @@
<OnClick>
AtlasLootDefaultFrameSearchBox:SetText("");
AtlasLootDefaultFrameSearchBox:ClearFocus();
CloseDropDownMenus();
</OnClick>
</Scripts>
</Button>
@@ -468,6 +478,7 @@
</OnShow>
<OnClick>
AtlasLoot:ShowSearchResult();
CloseDropDownMenus();
</OnClick>
</Scripts>
</Button>
@@ -485,6 +496,7 @@
<Scripts>
<OnClick>
AtlasLoot_ShowWishList();
CloseDropDownMenus();
</OnClick>
<OnShow>
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
@@ -556,6 +568,9 @@
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
getglobal("AtlasLootDefaultFrame_Notice"):SetText(AL["NoticeFrame"]);
</OnLoad>
<OnMouseUp>
CloseDropDownMenus();
</OnMouseUp>
<OnShow>
AtlasLootDefaultFrame_OnShow();
</OnShow>
@@ -647,6 +662,7 @@
<Scripts>
<OnClick>
AtlasLoot_NavButton_OnClick();
CloseDropDownMenus();
</OnClick>
<OnShow>
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
@@ -830,6 +846,7 @@
</OnLeave>
<OnClick>
AtlasLootItem_OnClick(arg1);
CloseDropDownMenus();
</OnClick>
<OnShow>
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
@@ -1173,6 +1190,7 @@
<Scripts>
<OnClick>
AtlasLoot_NavButton_OnClick()
CloseDropDownMenus();
</OnClick>
<OnShow>
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
@@ -1213,6 +1231,7 @@
<OnClick>
GameTooltip:Hide();
AtlasLoot_QueryLootPage();
CloseDropDownMenus();
</OnClick>
</Scripts>
</Button>
@@ -1242,6 +1261,7 @@
</OnShow>
<OnClick>
AtlasLoot_ShowQuickLooks(this);
CloseDropDownMenus();
</OnClick>
</Scripts>
</Button>
@@ -1256,6 +1276,7 @@
<Scripts>
<OnClick>
AtlasLoot_NavButton_OnClick();
CloseDropDownMenus();
</OnClick>
<OnShow>
this:SetFrameLevel( (this:GetParent()):GetFrameLevel() + 1 );
+625 -116
View File
File diff suppressed because it is too large Load Diff
+431 -144
View File
@@ -22,47 +22,47 @@ function AtlasLoot_CraftingMenu()
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_2.lootpage="ALCHEMYMENU";
AtlasLootMenuItem_2:Show();
--Blacksmithing
AtlasLootMenuItem_3_Name:SetText(AL["Blacksmithing"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_3.lootpage="SMITHINGMENU";
AtlasLootMenuItem_3:Show();
--Enchanting
AtlasLootMenuItem_4_Name:SetText(AL["Enchanting"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_4.lootpage="ENCHANTINGMENU";
AtlasLootMenuItem_4:Show();
AtlasLootMenuItem_3_Name:SetText(AL["Enchanting"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_3.lootpage="ENCHANTINGMENU";
AtlasLootMenuItem_3:Show();
--Engineering
AtlasLootMenuItem_5_Name:SetText(AL["Engineering"]);
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_5.lootpage="ENGINEERINGMENU";
AtlasLootMenuItem_5:Show();
--Herbalism
AtlasLootMenuItem_6_Name:SetText(AL["Herbalism"]);
AtlasLootMenuItem_6_Extra:SetText("");
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Trade_Herbalism");
AtlasLootMenuItem_6.lootpage="Herbalism1";
AtlasLootMenuItem_6:Show();
AtlasLootMenuItem_4_Name:SetText(AL["Engineering"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_4.lootpage="ENGINEERINGMENU";
AtlasLootMenuItem_4:Show();
--Leatherworking
AtlasLootMenuItem_7_Name:SetText(AL["Leatherworking"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_7.lootpage="LEATHERWORKINGMENU";
AtlasLootMenuItem_7:Show();
--Mining
AtlasLootMenuItem_8_Name:SetText(AL["Mining"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Mining");
AtlasLootMenuItem_8.lootpage="MININGMENU";
AtlasLootMenuItem_8:Show();
AtlasLootMenuItem_5_Name:SetText(AL["Leatherworking"]);
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_5.lootpage="LEATHERWORKINGMENU";
AtlasLootMenuItem_5:Show();
--Blacksmithing
AtlasLootMenuItem_6_Name:SetText(AL["Blacksmithing"]);
AtlasLootMenuItem_6_Extra:SetText("");
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_6.lootpage="SMITHINGMENU";
AtlasLootMenuItem_6:Show();
--Tailoring
AtlasLootMenuItem_9_Name:SetText(AL["Tailoring"]);
AtlasLootMenuItem_7_Name:SetText(AL["Tailoring"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_7.lootpage="TAILORINGMENU";
AtlasLootMenuItem_7:Show();
--Herbalism
AtlasLootMenuItem_8_Name:SetText(AL["Herbalism"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Herbalism");
AtlasLootMenuItem_8.lootpage="Herbalism1";
AtlasLootMenuItem_8:Show();
--Mining
AtlasLootMenuItem_9_Name:SetText(AL["Mining"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_9.lootpage="TAILORINGMENU";
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Mining");
AtlasLootMenuItem_9.lootpage="MININGMENU";
AtlasLootMenuItem_9:Show();
--Cooking
AtlasLootMenuItem_11_Name:SetText(AL["Cooking"]);
@@ -80,8 +80,14 @@ function AtlasLoot_CraftingMenu()
AtlasLootMenuItem_13_Name:SetText(AL["Survival"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Survival");
AtlasLootMenuItem_13.lootpage="SURVIVALMENU";
AtlasLootMenuItem_13.lootpage="Survival1";
AtlasLootMenuItem_13:Show();
--Gardening
AtlasLootMenuItem_14_Name:SetText(AL["Gardening"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Herbalism");
AtlasLootMenuItem_14.lootpage="Survival2";
AtlasLootMenuItem_14:Show();
--Poisons
AtlasLootMenuItem_15_Name:SetText(AL["Poisons"]);
AtlasLootMenuItem_15_Extra:SetText("|cfffff468"..AL["Rogue"]);
@@ -91,15 +97,15 @@ function AtlasLoot_CraftingMenu()
--Crafted Armor Sets
AtlasLootMenuItem_17_Name:SetText(AL["Crafted Sets"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Box_01");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Pants_Wolf");
AtlasLootMenuItem_17.lootpage="CRAFTSET";
AtlasLootMenuItem_17:Show();
--Crafted Epic Weapons
AtlasLootMenuItem_18_Name:SetText(AL["Crafted Epic Weapons"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Hammer_Unique_Sulfuras");
AtlasLootMenuItem_18.lootpage="CraftedWeapons1";
AtlasLootMenuItem_18:Show();
AtlasLootMenuItem_19_Name:SetText(AL["Crafted Epic Weapons"]);
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Hammer_Unique_Sulfuras");
AtlasLootMenuItem_19.lootpage="CraftedWeapons1";
AtlasLootMenuItem_19:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -123,7 +129,7 @@ function AtlasLootCraftedSetMenu()
--Tailoring Header
AtlasLootMenuItem_1_Name:SetText(RED..AL["Tailoring"]);
AtlasLootMenuItem_1_Extra:SetText("");
AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\INV_Chest_Cloth_21");
AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_1.isheader = true;
AtlasLootMenuItem_1:Show();
--Augerer's Attire
@@ -159,7 +165,7 @@ function AtlasLootCraftedSetMenu()
--Mail Blacksmithing Header
AtlasLootMenuItem_8_Name:SetText(RED..AL["Blacksmithing"]);
AtlasLootMenuItem_8_Extra:SetText(WHITE..AL["Mail"]);
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_04");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_8.isheader = true;
AtlasLootMenuItem_8:Show();
--Bloodsoul Embrace
@@ -171,7 +177,7 @@ function AtlasLootCraftedSetMenu()
--Plate Blacksmithing header
AtlasLootMenuItem_11_Name:SetText(RED..AL["Blacksmithing"]);
AtlasLootMenuItem_11_Extra:SetText(WHITE..AL["Plate"]);
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate10");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_11.isheader = true;
AtlasLootMenuItem_11:Show();
--Steel Plate
@@ -196,7 +202,7 @@ function AtlasLootCraftedSetMenu()
--Leatherworking Leather Header
AtlasLootMenuItem_16_Name:SetText(RED..AL["Leatherworking"]);
AtlasLootMenuItem_16_Extra:SetText(WHITE..AL["Leather"]);
AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\INV_Chest_Leather_04");
AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\inv_misc_armorkit_17");
AtlasLootMenuItem_16.isheader = true;
AtlasLootMenuItem_16:Show();
--Grifter's Armor
@@ -248,17 +254,17 @@ function AtlasLootCraftedSetMenu()
AtlasLootMenuItem_24.lootpage="PrimalBatskin";
AtlasLootMenuItem_24:Show();
--Leatherworking Mail Header
AtlasLootMenuItem_25_Name:SetText(RED..AL["Leatherworking"]);
AtlasLootMenuItem_25_Extra:SetText(WHITE..AL["Mail"]);
AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_12");
AtlasLootMenuItem_25.isheader = true;
AtlasLootMenuItem_25:Show();
--Red Dragon Mail
AtlasLootMenuItem_26_Name:SetText(AL["Red Dragon Mail"]);
AtlasLootMenuItem_26_Extra:SetText(ORANGE..AL["Fire Resistance Gear"]);
AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\inv_chest_chain_06");
AtlasLootMenuItem_26.lootpage="RedDragonM";
AtlasLootMenuItem_26_Name:SetText(RED..AL["Leatherworking"]);
AtlasLootMenuItem_26_Extra:SetText(WHITE..AL["Mail"]);
AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\inv_misc_armorkit_17");
AtlasLootMenuItem_26.isheader = true;
AtlasLootMenuItem_26:Show();
--Red Dragon Mail
AtlasLootMenuItem_30_Name:SetText(AL["Red Dragon Mail"]);
AtlasLootMenuItem_30_Extra:SetText(ORANGE..AL["Fire Resistance Gear"]);
AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\inv_chest_chain_06");
AtlasLootMenuItem_30.lootpage="RedDragonM";
AtlasLootMenuItem_30:Show();
--Green Dragon Mail
AtlasLootMenuItem_27_Name:SetText(AL["Green Dragon Mail"]);
AtlasLootMenuItem_27_Extra:SetText(ORANGE..AL["Nature Resistance Gear"]);
@@ -321,6 +327,48 @@ function AtlasLoot_AlchemyMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_5.lootpage="AlchemyArtisan1";
AtlasLootMenuItem_5:Show();
--Flasks
AtlasLootMenuItem_7_Name:SetText(AL["Flasks"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_7.lootpage="AlchemyFlasks1";
AtlasLootMenuItem_7:Show();
--Protection Pots
AtlasLootMenuItem_8_Name:SetText(AL["Protection Potions"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_8.lootpage="AlchemyProtectionPots1";
AtlasLootMenuItem_8:Show();
--Healing and Mana
AtlasLootMenuItem_9_Name:SetText(AL["Healing and Mana Potions"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_9.lootpage="AlchemyHealingAndMana1";
AtlasLootMenuItem_9:Show();
--Transmutes
AtlasLootMenuItem_10_Name:SetText(AL["Transmutes"]);
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_10.lootpage="AlchemyTransmutes1";
AtlasLootMenuItem_10:Show();
--Defensive pots
AtlasLootMenuItem_11_Name:SetText(AL["Defensive Potions and Elixirs"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_11.lootpage="AlchemyDefensive1";
AtlasLootMenuItem_11:Show();
--Offensive pots
AtlasLootMenuItem_12_Name:SetText(AL["Offensive Potions and Elixirs"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_12.lootpage="AlchemyOffensive1";
AtlasLootMenuItem_12:Show();
--Other
AtlasLootMenuItem_13_Name:SetText(AL["Other"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_13.lootpage="AlchemyOther1";
AtlasLootMenuItem_13:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -365,36 +413,126 @@ function AtlasLoot_SmithingMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_5.lootpage="SmithingArtisan1";
AtlasLootMenuItem_5:Show();
--Armorsmith
AtlasLootMenuItem_7_Name:SetText(AL["Blacksmithing"]..": "..AL["Armorsmith"]);
--BS Helm
AtlasLootMenuItem_7_Name:SetText(AL["Blacksmithing"]..": "..AL["Helm"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate04");
AtlasLootMenuItem_7.lootpage="Armorsmith1";
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_7.lootpage="SmithingHelm1";
AtlasLootMenuItem_7:Show();
--Weaponsmith
AtlasLootMenuItem_22_Name:SetText(AL["Blacksmithing"]..": "..AL["Weaponsmith"]);
--BS Shoulders
AtlasLootMenuItem_8_Name:SetText(AL["Blacksmithing"]..": "..AL["Shoulders"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_8.lootpage="SmithingShoulders1";
AtlasLootMenuItem_8:Show();
--BS Chest
AtlasLootMenuItem_9_Name:SetText(AL["Blacksmithing"]..": "..AL["Chest"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_9.lootpage="SmithingChest1";
AtlasLootMenuItem_9:Show();
--BS Bracers
AtlasLootMenuItem_10_Name:SetText(AL["Blacksmithing"]..": "..AL["Bracers"]);
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_10.lootpage="SmithingBracers1";
AtlasLootMenuItem_10:Show();
--BS Gloves
AtlasLootMenuItem_11_Name:SetText(AL["Blacksmithing"]..": "..AL["Gloves"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_11.lootpage="SmithingGloves1";
AtlasLootMenuItem_11:Show();
--BS Belt
AtlasLootMenuItem_12_Name:SetText(AL["Blacksmithing"]..": "..AL["Belt"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_12.lootpage="SmithingBelt1";
AtlasLootMenuItem_12:Show();
--BS Pants
AtlasLootMenuItem_13_Name:SetText(AL["Blacksmithing"]..": "..AL["Pants"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_13.lootpage="SmithingPants1";
AtlasLootMenuItem_13:Show();
--BS Boots
AtlasLootMenuItem_14_Name:SetText(AL["Blacksmithing"]..": "..AL["Boots"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_14.lootpage="SmithingBoots1";
AtlasLootMenuItem_14:Show();
--BS Belt Buckles
AtlasLootMenuItem_15_Name:SetText(AL["Blacksmithing"]..": "..AL["Belt Buckles"]);
AtlasLootMenuItem_15_Extra:SetText("");
AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_15.lootpage="SmithingBuckles1";
AtlasLootMenuItem_15:Show();
--BS Axes
AtlasLootMenuItem_17_Name:SetText(AL["Blacksmithing"]..": "..AL["Axes"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_17.lootpage="SmithingAxes1";
AtlasLootMenuItem_17:Show();
--BS Swords
AtlasLootMenuItem_18_Name:SetText(AL["Blacksmithing"]..": "..AL["Swords"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_18.lootpage="SmithingSwords1";
AtlasLootMenuItem_18:Show();
--BS Maces
AtlasLootMenuItem_19_Name:SetText(AL["Blacksmithing"]..": "..AL["Maces"]);
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_19.lootpage="SmithingMaces1";
AtlasLootMenuItem_19:Show();
--BS Fist
AtlasLootMenuItem_20_Name:SetText(AL["Blacksmithing"]..": "..AL["Fist"]);
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_20.lootpage="SmithingFist1";
AtlasLootMenuItem_20:Show();
--BS Daggers
AtlasLootMenuItem_21_Name:SetText(AL["Blacksmithing"]..": "..AL["Daggers"]);
AtlasLootMenuItem_21_Extra:SetText("");
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_21.lootpage="SmithingDaggers1";
AtlasLootMenuItem_21:Show();
--BS Misc
AtlasLootMenuItem_22_Name:SetText(AL["Blacksmithing"]..": "..AL["Misc"]);
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Sword_25");
AtlasLootMenuItem_22.lootpage="Weaponsmith1";
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_22.lootpage="SmithingMisc1";
AtlasLootMenuItem_22:Show();
--Armorsmith
AtlasLootMenuItem_26_Name:SetText(AL["Blacksmithing"]..": "..AL["Armorsmith"]);
AtlasLootMenuItem_26_Extra:SetText("");
AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate04");
AtlasLootMenuItem_26.lootpage="Armorsmith1";
AtlasLootMenuItem_26:Show();
--Weaponsmith
AtlasLootMenuItem_27_Name:SetText(AL["Blacksmithing"]..": "..AL["Weaponsmith"]);
AtlasLootMenuItem_27_Extra:SetText("");
AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Sword_25");
AtlasLootMenuItem_27.lootpage="Weaponsmith1";
AtlasLootMenuItem_27:Show();
--Master Axesmith
AtlasLootMenuItem_23_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Axesmith"]);
AtlasLootMenuItem_23_Extra:SetText("");
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Axe_05");
AtlasLootMenuItem_23.lootpage="Axesmith1";
AtlasLootMenuItem_23:Show();
AtlasLootMenuItem_28_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Axesmith"]);
AtlasLootMenuItem_28_Extra:SetText("");
AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\INV_Axe_05");
AtlasLootMenuItem_28.lootpage="Axesmith1";
AtlasLootMenuItem_28:Show();
--Master Hammersmith
AtlasLootMenuItem_24_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Hammersmith"]);
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Hammer_23");
AtlasLootMenuItem_24.lootpage="Hammersmith1";
AtlasLootMenuItem_24:Show();
AtlasLootMenuItem_29_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Hammersmith"]);
AtlasLootMenuItem_29_Extra:SetText("");
AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\INV_Hammer_23");
AtlasLootMenuItem_29.lootpage="Hammersmith1";
AtlasLootMenuItem_29:Show();
--Master Swordsmith
AtlasLootMenuItem_25_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Swordsmith"]);
AtlasLootMenuItem_25_Extra:SetText("");
AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Sword_41");
AtlasLootMenuItem_25.lootpage="Swordsmith1";
AtlasLootMenuItem_25:Show();
AtlasLootMenuItem_30_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Swordsmith"]);
AtlasLootMenuItem_30_Extra:SetText("");
AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\INV_Sword_41");
AtlasLootMenuItem_30.lootpage="Swordsmith1";
AtlasLootMenuItem_30:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -439,55 +577,55 @@ function AtlasLoot_EnchantingMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_5.lootpage="EnchantingArtisan1";
AtlasLootMenuItem_5:Show();
--By Slot, Cloak
--Enchanting Cloak
AtlasLootMenuItem_7_Name:SetText(AL["Enchanting"]..": "..AL["Cloak"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_7.lootpage="EnchantingCloak1";
AtlasLootMenuItem_7:Show();
--By Slot, Chest
--Enchanting Chest
AtlasLootMenuItem_8_Name:SetText(AL["Enchanting"]..": "..AL["Chest"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_8.lootpage="EnchantingChest1";
AtlasLootMenuItem_8:Show();
--By Slot, Bracer
--Enchanting Bracer
AtlasLootMenuItem_9_Name:SetText(AL["Enchanting"]..": "..AL["Bracer"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_9.lootpage="EnchantingBracer1";
AtlasLootMenuItem_9:Show();
--By Slot, Glove
AtlasLootMenuItem_10_Name:SetText(AL["Enchanting"]..": "..AL["Glove"]);
--Enchanting Gloves
AtlasLootMenuItem_10_Name:SetText(AL["Enchanting"]..": "..AL["Gloves"]);
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_10.lootpage="EnchantingGlove1";
AtlasLootMenuItem_10:Show();
--By Slot, Boots
--Enchanting Boots
AtlasLootMenuItem_11_Name:SetText(AL["Enchanting"]..": "..AL["Boots"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_11.lootpage="EnchantingBoots1";
AtlasLootMenuItem_11:Show();
--By Slot, 2H Weapon
--Enchanting 2H Weapon
AtlasLootMenuItem_12_Name:SetText(AL["Enchanting"]..": "..AL["2H Weapon"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_12.lootpage="Enchanting2HWeapon1";
AtlasLootMenuItem_12:Show();
--By Slot, Weapon
--Enchanting Weapon
AtlasLootMenuItem_13_Name:SetText(AL["Enchanting"]..": "..AL["Weapon"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_13.lootpage="EnchantingWeapon1";
AtlasLootMenuItem_13:Show();
--By Slot, Shield
--Enchanting Shield
AtlasLootMenuItem_14_Name:SetText(AL["Enchanting"]..": "..AL["Shield"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_14.lootpage="EnchantingShield1";
AtlasLootMenuItem_14:Show();
--By Slot, Misc
--Enchanting Misc
AtlasLootMenuItem_14_Name:SetText(AL["Enchanting"]..": "..AL["Misc"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
@@ -537,18 +675,54 @@ function AtlasLoot_EngineeringMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_5.lootpage="EngineeringArtisan1";
AtlasLootMenuItem_5:Show();
--Gnomish Engineering
AtlasLootMenuItem_7_Name:SetText(AL["Engineering"]..": "..AL["Gnomish Engineering"]);
--Equipment
AtlasLootMenuItem_7_Name:SetText(AL["Engineering"]..": "..AL["Equipment"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_7.lootpage="Gnomish1";
AtlasLootMenuItem_7.lootpage="EngineeringEquipment1";
AtlasLootMenuItem_7:Show();
--Trinkets
AtlasLootMenuItem_8_Name:SetText(AL["Engineering"]..": "..AL["Trinkets"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_8.lootpage="EngineeringTrinkets1";
AtlasLootMenuItem_8:Show();
--Explosives
AtlasLootMenuItem_9_Name:SetText(AL["Engineering"]..": "..AL["Explosives"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_9.lootpage="EngineeringExplosives1";
AtlasLootMenuItem_9:Show();
-- Weapons
AtlasLootMenuItem_10_Name:SetText(AL["Engineering"]..": "..AL["Weapons"]);
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_10.lootpage="EngineeringWeapons1";
AtlasLootMenuItem_10:Show();
--Parts
AtlasLootMenuItem_11_Name:SetText(AL["Engineering"]..": "..AL["Parts"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_11.lootpage="EngineeringParts1";
AtlasLootMenuItem_11:Show();
--Misc
AtlasLootMenuItem_12_Name:SetText(AL["Engineering"]..": "..AL["Misc"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_12.lootpage="EngineeringMisc1";
AtlasLootMenuItem_12:Show();
--Gnomish Engineering
AtlasLootMenuItem_17_Name:SetText(AL["Gnomish Engineering"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_17.lootpage="Gnomish1";
AtlasLootMenuItem_17:Show();
--Goblin Engineering
AtlasLootMenuItem_22_Name:SetText(AL["Engineering"]..": "..AL["Goblin Engineering"]);
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_22.lootpage="Goblin1";
AtlasLootMenuItem_22:Show();
AtlasLootMenuItem_18_Name:SetText(AL["Goblin Engineering"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_18.lootpage="Goblin1";
AtlasLootMenuItem_18:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -594,23 +768,90 @@ function AtlasLoot_LeatherworkingMenu()
AtlasLootMenuItem_5.lootpage="LeatherArtisan1";
AtlasLootMenuItem_5:Show();
--Dragonscale Leatherworking
AtlasLootMenuItem_7_Name:SetText(AL["Leatherworking"]..": "..AL["Dragonscale Leatherworking"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Misc_MonsterScales_03");
AtlasLootMenuItem_7.lootpage="Dragonscale1";
AtlasLootMenuItem_7:Show();
--Tribal Leatherworking
AtlasLootMenuItem_8_Name:SetText(AL["Leatherworking"]..": "..AL["Tribal Leatherworking"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Spell_Nature_NullWard");
AtlasLootMenuItem_8.lootpage="Tribal1";
AtlasLootMenuItem_8:Show();
AtlasLootMenuItem_20_Name:SetText(AL["Leatherworking"]..": "..AL["Dragonscale Leatherworking"]);
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Misc_MonsterScales_03");
AtlasLootMenuItem_20.lootpage="Dragonscale1";
AtlasLootMenuItem_20:Show();
--Elemental Leatherworking
AtlasLootMenuItem_22_Name:SetText(AL["Leatherworking"]..": "..AL["Elemental Leatherworking"]);
AtlasLootMenuItem_21_Name:SetText(AL["Leatherworking"]..": "..AL["Elemental Leatherworking"]);
AtlasLootMenuItem_21_Extra:SetText("");
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\Spell_Fire_Volcano");
AtlasLootMenuItem_21.lootpage="Elemental1";
AtlasLootMenuItem_21:Show();
--Tribal Leatherworking
AtlasLootMenuItem_22_Name:SetText(AL["Leatherworking"]..": "..AL["Tribal Leatherworking"]);
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Spell_Fire_Volcano");
AtlasLootMenuItem_22.lootpage="Elemental1";
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\Spell_Nature_NullWard");
AtlasLootMenuItem_22.lootpage="Tribal1";
AtlasLootMenuItem_22:Show();
--Leatherworking Helm
AtlasLootMenuItem_7_Name:SetText(AL["Leatherworking"]..": "..AL["Helm"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_7.lootpage="LeatherHelm1";
AtlasLootMenuItem_7:Show();
--Leatherworking Shoulders
AtlasLootMenuItem_8_Name:SetText(AL["Leatherworking"]..": "..AL["Shoulders"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_8.lootpage="LeatherShoulders1";
AtlasLootMenuItem_8:Show();
--Leatherworking Cape
AtlasLootMenuItem_9_Name:SetText(AL["Leatherworking"]..": "..AL["Cloak"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_9.lootpage="LeatherCloak1";
AtlasLootMenuItem_9:Show();
--Leatherworking Chest
AtlasLootMenuItem_10_Name:SetText(AL["Leatherworking"]..": "..AL["Chest"]);
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_10.lootpage="LeatherChest1";
AtlasLootMenuItem_10:Show();
--Leatherworking Bracers
AtlasLootMenuItem_11_Name:SetText(AL["Leatherworking"]..": "..AL["Bracers"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_11.lootpage="LeatherBracers1";
AtlasLootMenuItem_11:Show();
--Leatherworking Gloves
AtlasLootMenuItem_12_Name:SetText(AL["Leatherworking"]..": "..AL["Gloves"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_12.lootpage="LeatherGloves1";
AtlasLootMenuItem_12:Show();
--Leatherworking Belt
AtlasLootMenuItem_13_Name:SetText(AL["Leatherworking"]..": "..AL["Belt"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_13.lootpage="LeatherBelt1";
AtlasLootMenuItem_13:Show();
--Leatherworking Pants
AtlasLootMenuItem_14_Name:SetText(AL["Leatherworking"]..": "..AL["Pants"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_14.lootpage="LeatherPants1";
AtlasLootMenuItem_14:Show();
--Leatherworking Boots
AtlasLootMenuItem_15_Name:SetText(AL["Leatherworking"]..": "..AL["Boots"]);
AtlasLootMenuItem_15_Extra:SetText("");
AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_15.lootpage="LeatherBoots1";
AtlasLootMenuItem_15:Show();
--Leatherworking Bags
AtlasLootMenuItem_17_Name:SetText(AL["Leatherworking"]..": "..AL["Bags"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_17.lootpage="LeatherBags1";
AtlasLootMenuItem_17:Show();
--Leatherworking Misc
AtlasLootMenuItem_18_Name:SetText(AL["Leatherworking"]..": "..AL["Misc"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_18.lootpage="LeatherMisc1";
AtlasLootMenuItem_18:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -655,6 +896,79 @@ function AtlasLoot_TailoringMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_5.lootpage="TailoringArtisan1";
AtlasLootMenuItem_5:Show();
--Tailoring Helm
AtlasLootMenuItem_7_Name:SetText(AL["Tailoring"]..": "..AL["Helm"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_7.lootpage="TailoringHelm1";
AtlasLootMenuItem_7:Show();
--Tailoring Shoulders
AtlasLootMenuItem_8_Name:SetText(AL["Tailoring"]..": "..AL["Shoulders"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_8.lootpage="TailoringShoulders1";
AtlasLootMenuItem_8:Show();
--Tailoring Cape
AtlasLootMenuItem_9_Name:SetText(AL["Tailoring"]..": "..AL["Cloak"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_9.lootpage="TailoringCloak1";
AtlasLootMenuItem_9:Show();
--Tailoring Chest
AtlasLootMenuItem_10_Name:SetText(AL["Tailoring"]..": "..AL["Chest"]);
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_10.lootpage="TailoringChest1";
AtlasLootMenuItem_10:Show();
--Tailoring Bracers
AtlasLootMenuItem_11_Name:SetText(AL["Tailoring"]..": "..AL["Bracers"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_11.lootpage="TailoringBracers1";
AtlasLootMenuItem_11:Show();
--Tailoring Gloves
AtlasLootMenuItem_12_Name:SetText(AL["Tailoring"]..": "..AL["Gloves"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_12.lootpage="TailoringGloves1";
AtlasLootMenuItem_12:Show();
--Tailoring Belt
AtlasLootMenuItem_13_Name:SetText(AL["Tailoring"]..": "..AL["Belt"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_13.lootpage="TailoringBelt1";
AtlasLootMenuItem_13:Show();
--Tailoring Pants
AtlasLootMenuItem_14_Name:SetText(AL["Tailoring"]..": "..AL["Pants"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_14.lootpage="TailoringPants1";
AtlasLootMenuItem_14:Show();
--Tailoring Boots
AtlasLootMenuItem_15_Name:SetText(AL["Tailoring"]..": "..AL["Boots"]);
AtlasLootMenuItem_15_Extra:SetText("");
AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_15.lootpage="TailoringBoots1";
AtlasLootMenuItem_15:Show();
--Tailoring Shirt
AtlasLootMenuItem_17_Name:SetText(AL["Tailoring"]..": "..AL["Shirt"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_17.lootpage="TailoringShirt1";
AtlasLootMenuItem_17:Show();
--Tailoring Bags
AtlasLootMenuItem_18_Name:SetText(AL["Tailoring"]..": "..AL["Bags"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_18.lootpage="TailoringBags1";
AtlasLootMenuItem_18:Show();
--Tailoring Misc
AtlasLootMenuItem_19_Name:SetText(AL["Tailoring"]..": "..AL["Misc"]);
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_19.lootpage="TailoringMisc1";
AtlasLootMenuItem_19:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -726,41 +1040,14 @@ function AtlasLoot_MiningMenu()
AtlasLootMenuItem_2.lootpage = "Mining1";
AtlasLootMenuItem_2:Show();
--Smelting
AtlasLootMenuItem_17_Name:SetText(AL["Smelting"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Spell_Fire_FlameBlades");
AtlasLootMenuItem_17.lootpage = "Smelting1";
AtlasLootMenuItem_17:Show();
AtlasLootMenuItem_3_Name:SetText(AL["Smelting"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Spell_Fire_FlameBlades");
AtlasLootMenuItem_3.lootpage = "Smelting1";
AtlasLootMenuItem_3:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Mining"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
function AtlasLoot_SurvivalMenu()
for i = 1, 30, 1 do
getglobal("AtlasLootItem_"..i):Hide();
end
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
getglobal("AtlasLootItemsFrame_BACK"):Show();
getglobal("AtlasLootItemsFrame_BACK").lootpage = "CRAFTINGMENU";
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootServerQueryButton"):Hide();
--Apprentice
AtlasLootMenuItem_2_Name:SetText(AL["Survival"]);
AtlasLootMenuItem_2_Extra:SetText("");
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Trade_Survival");
AtlasLootMenuItem_2.lootpage = "Survival1";
AtlasLootMenuItem_2:Show();
--Journeyman
AtlasLootMenuItem_3_Name:SetText(AL["Gardening"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\trade_herbalism");
AtlasLootMenuItem_3.lootpage = "Survival2";
AtlasLootMenuItem_3:Show();
end
+40 -29
View File
@@ -35,7 +35,7 @@ function AtlasLootRepMenu()
--Cenarion Hold
AtlasLootMenuItem_17_Name:SetText(AL["Cenarion Circle"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate07");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\Spell_Nature_HealingTouch");
AtlasLootMenuItem_17.lootpage="Cenarion1";
AtlasLootMenuItem_17:Show();
--Darkmoon Faire
@@ -44,12 +44,6 @@ function AtlasLootRepMenu()
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Misc_Ticket_Tarot_Maelstrom_01");
AtlasLootMenuItem_3.lootpage="Darkmoon";
AtlasLootMenuItem_3:Show();
--The Defilers
AtlasLootMenuItem_23_Name:SetText(AL["The Defilers"]);
AtlasLootMenuItem_23_Extra:SetText("|cffFF0000"..AL["Horde"]);
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_23.lootpage="Defilers";
AtlasLootMenuItem_23:Show();
--Frostwolf Clan
AtlasLootMenuItem_24_Name:SetText(AL["Frostwolf Clan"]);
AtlasLootMenuItem_24_Extra:SetText("|cffFF0000"..AL["Horde"]);
@@ -65,27 +59,33 @@ function AtlasLootRepMenu()
--Hydraxian Waterlords
AtlasLootMenuItem_4_Name:SetText(AL["Hydraxian Waterlords"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Spell_Frost_FrostArmor");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Spell_Frost_SummonWaterElemental_2");
AtlasLootMenuItem_4.lootpage="WaterLords1";
AtlasLootMenuItem_4:Show();
--The League of Arathor
AtlasLootMenuItem_8_Name:SetText(AL["The League of Arathor"]);
AtlasLootMenuItem_8_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_8.lootpage="LeagueofArathor";
AtlasLootMenuItem_8:Show();
--Magram Clan Centaur
AtlasLootMenuItem_19_Name:SetText(AL["Magram Clan Centaur"]);
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Centaur_01");
AtlasLootMenuItem_19.lootpage="MagramClan1";
AtlasLootMenuItem_19:Show();
--Wildhammer Clan
AtlasLootMenuItem_7_Name:SetText(AL["Wildhammer Clan"]);
AtlasLootMenuItem_7_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Ability_Hunter_EagleEye");
AtlasLootMenuItem_7.lootpage="Wildhammer";
AtlasLootMenuItem_7:Show();
--Stormpike Guard
AtlasLootMenuItem_9_Name:SetText(AL["Stormpike Guard"]);
AtlasLootMenuItem_9_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_StormPikeTrinket_01");
AtlasLootMenuItem_9.lootpage="Stormpike1";
AtlasLootMenuItem_9:Show();
--Dalaran
AtlasLootMenuItem_10_Name:SetText(AL["Dalaran"]);
AtlasLootMenuItem_10_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\Spell_Holy_MagicalSentry");
AtlasLootMenuItem_10.lootpage="Dalaran";
AtlasLootMenuItem_10:Show();
--Thorium Brotherhood
AtlasLootMenuItem_5_Name:SetText(AL["Thorium Brotherhood"]);
AtlasLootMenuItem_5_Extra:SetText("");
@@ -105,18 +105,29 @@ function AtlasLootRepMenu()
AtlasLootMenuItem_6.lootpage="Wintersaber1";
AtlasLootMenuItem_6:Show();
--Zandalar Tribe
AtlasLootMenuItem_23_Name:SetText(AL["Zandalar Tribe"]);
AtlasLootMenuItem_23_Extra:SetText("");
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Misc_Coin_08");
AtlasLootMenuItem_23.lootpage="Zandalar1";
AtlasLootMenuItem_23:Show();
AtlasLootMenuItem_21_Name:SetText(AL["Zandalar Tribe"]);
AtlasLootMenuItem_21_Extra:SetText("");
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Misc_Coin_08");
AtlasLootMenuItem_21.lootpage="Zandalar1";
AtlasLootMenuItem_21:Show();
--Wardens of Time
AtlasLootMenuItem_22_Name:SetText(AL["Wardens of Time"]);
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Bronze");
AtlasLootMenuItem_22.lootpage="Wardens1";
AtlasLootMenuItem_22:Show();
--helf
AtlasLootMenuItem_11_Name:SetText(AL["Silvermoon Remnant"]);
AtlasLootMenuItem_11_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\inv_misc_tournaments_symbol_bloodelf");
AtlasLootMenuItem_11.lootpage="Helf";
AtlasLootMenuItem_11:Show();
--Darkspear Trolls
AtlasLootMenuItem_25_Name:SetText(AL["Darkspear Trolls"]);
AtlasLootMenuItem_25_Extra:SetText("|cffFF0000"..AL["Horde"]);
AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\Racial_Troll_Berserk");
AtlasLootMenuItem_25.lootpage="DarkspearTrolls";
AtlasLootMenuItem_25:Show();
--raventusk
AtlasLootMenuItem_26_Name:SetText(AL["Revantusk Trolls"]);
AtlasLootMenuItem_26_Extra:SetText("|cffFF0000"..AL["Horde"]);
@@ -126,49 +137,49 @@ function AtlasLootRepMenu()
--Ironforge
AtlasLootMenuItem_12_Name:SetText(AL["Ironforge"]);
AtlasLootMenuItem_12_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Ability_Racial_Avatar");
AtlasLootMenuItem_12.lootpage="Ironforge";
AtlasLootMenuItem_12:Show();
--Darnassus
AtlasLootMenuItem_13_Name:SetText(AL["Darnassus"]);
AtlasLootMenuItem_13_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Ability_Racial_ShadowMeld");
AtlasLootMenuItem_13.lootpage="Darnassus";
AtlasLootMenuItem_13:Show();
--Stormwind
AtlasLootMenuItem_14_Name:SetText(AL["Stormwind"]);
AtlasLootMenuItem_14_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_BannerPVP_02");
AtlasLootMenuItem_14.lootpage="Stormwind";
AtlasLootMenuItem_14:Show();
--Gnomeregan Exiles
AtlasLootMenuItem_15_Name:SetText(AL["Gnomeregan Exiles"]);
AtlasLootMenuItem_15_Extra:SetText("|cff2773ff"..AL["Alliance"]);
AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\INV_Gizmo_02");
AtlasLootMenuItem_15.lootpage="GnomereganExiles";
AtlasLootMenuItem_15:Show();
--Durotar Labor Union
AtlasLootMenuItem_27_Name:SetText(AL["Durotar Labor Union"]);
AtlasLootMenuItem_27_Extra:SetText("|cffFF0000"..AL["Horde"]);
AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Misc_Coin_01");
AtlasLootMenuItem_27.lootpage="DurotarLaborUnion";
AtlasLootMenuItem_27:Show();
--Undercity
AtlasLootMenuItem_28_Name:SetText(AL["Undercity"]);
AtlasLootMenuItem_28_Extra:SetText("|cffFF0000"..AL["Horde"]);
AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\Spell_Shadow_RaiseDead");
AtlasLootMenuItem_28.lootpage="Undercity";
AtlasLootMenuItem_28:Show();
--Orgrimmar
AtlasLootMenuItem_29_Name:SetText(AL["Orgrimmar"]);
AtlasLootMenuItem_29_Extra:SetText("|cffFF0000"..AL["Horde"]);
AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\INV_BannerPVP_01");
AtlasLootMenuItem_29.lootpage="Orgrimmar";
AtlasLootMenuItem_29:Show();
--Thunder Bluff
AtlasLootMenuItem_30_Name:SetText(AL["Thunder Bluff"]);
AtlasLootMenuItem_30_Extra:SetText("|cffFF0000"..AL["Horde"]);
AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\INV_Misc_Foot_Centaur");
AtlasLootMenuItem_30.lootpage="ThunderBluff";
AtlasLootMenuItem_30:Show();
+91 -91
View File
@@ -28,23 +28,23 @@ function AtlasLootPvPMenu()
AtlasLootMenuItem_3.lootpage="ABRepMenu";
AtlasLootMenuItem_3:Show();
--PvP Mounts
AtlasLootMenuItem_6_Name:SetText(AL["PvP Mounts"]);
AtlasLootMenuItem_6_Extra:SetText("");
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Ability_Mount_RidingHorse");
AtlasLootMenuItem_6.lootpage="PvPMountsPvP";
AtlasLootMenuItem_21_Name:SetText(AL["PvP Mounts"]);
AtlasLootMenuItem_21_Extra:SetText(ORANGE..AL["Rank 11"]);
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\Ability_Mount_RidingHorse");
AtlasLootMenuItem_21.lootpage="PvPMountsPvP";
AtlasLootMenuItem_21:Show();
--PvP Armor Sets
AtlasLootMenuItem_6_Name:SetText(AL["PvP Armor Sets"]);
AtlasLootMenuItem_6_Extra:SetText(ORANGE..AL["Rank 7-13"]);
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\INV_Helmet_05");
AtlasLootMenuItem_6.lootpage="PVPSET";
AtlasLootMenuItem_6:Show();
--PvP
AtlasLootMenuItem_8_Name:SetText(AL["PvP Armor Sets"]);
AtlasLootMenuItem_8_Extra:SetText("|cffFF8400"..AL["Level 60"]);
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Helmet_05");
AtlasLootMenuItem_8.lootpage="PVPSET";
AtlasLootMenuItem_8:Show();
--PvP Accessories
AtlasLootMenuItem_9_Name:SetText(AL["PvP Accessories"]);
AtlasLootMenuItem_9_Extra:SetText("|cffFF8400"..AL["Level 60"]);
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Talisman_09");
AtlasLootMenuItem_9.lootpage="PvP60Accessories1";
AtlasLootMenuItem_9:Show();
AtlasLootMenuItem_7_Name:SetText(AL["PvP Accessories"]);
AtlasLootMenuItem_7_Extra:SetText(ORANGE..AL["Rank 2-9"]);
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Talisman_09");
AtlasLootMenuItem_7.lootpage="PvP60Accessories1";
AtlasLootMenuItem_7:Show();
-- Warsong Gulch Rewards
AtlasLootMenuItem_17_Name:SetText(AL["Warsong Gulch"]);
AtlasLootMenuItem_17_Extra:SetText("");
@@ -58,11 +58,11 @@ function AtlasLootPvPMenu()
AtlasLootMenuItem_18.lootpage="BRRepMenu";
AtlasLootMenuItem_18:Show();
--Weapons
AtlasLootMenuItem_23_Name:SetText(AL["Rank 14 Weapons"]);
AtlasLootMenuItem_23_Extra:SetText("|cffFF8400"..AL["Level 60"]);
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Sword_11");
AtlasLootMenuItem_23.lootpage="PVPWeapons1";
AtlasLootMenuItem_23:Show();
AtlasLootMenuItem_22_Name:SetText(AL["PvP Weapons"]);
AtlasLootMenuItem_22_Extra:SetText(ORANGE..AL["Rank 14"]);
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Sword_11");
AtlasLootMenuItem_22.lootpage="PVPWeapons1";
AtlasLootMenuItem_22:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -183,65 +183,65 @@ function AtlasLootWSGRepMenu()
AtlasLootMenuItem_12.lootpage="WSGRepHonored5059";
AtlasLootMenuItem_12:Show();
--Exalted Header
AtlasLootMenuItem_17_Name:SetText(RED..AL["Exalted"]);
AtlasLootMenuItem_24_Name:SetText(RED..AL["Exalted"]);
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_24.isheader = true;
AtlasLootMenuItem_24:Show();
--Exalted 40-49
AtlasLootMenuItem_25_Name:SetText("40-49");
AtlasLootMenuItem_25_Extra:SetText("");
AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_25.lootpage="WSGRepExalted4049";
AtlasLootMenuItem_25:Show();
--Exalted 50-59
AtlasLootMenuItem_26_Name:SetText("50-59");
AtlasLootMenuItem_26_Extra:SetText("");
AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_26.lootpage="WSGRepExalted5059";
AtlasLootMenuItem_26:Show();
--Exalted 60-60
AtlasLootMenuItem_27_Name:SetText("60");
AtlasLootMenuItem_27_Extra:SetText("");
AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_27.lootpage="WSGRepExalted60";
AtlasLootMenuItem_27:Show();
--Revered Header
AtlasLootMenuItem_17_Name:SetText(RED..AL["Revered"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_17.isheader = true;
AtlasLootMenuItem_17:Show();
--Exalted 40-49
AtlasLootMenuItem_18_Name:SetText("40-49");
--Revered 10-19
AtlasLootMenuItem_18_Name:SetText("10-19");
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_18.lootpage="WSGRepExalted4049";
AtlasLootMenuItem_18.lootpage="WSGRepRevered1019";
AtlasLootMenuItem_18:Show();
--Exalted 50-59
AtlasLootMenuItem_19_Name:SetText("50-59");
--Revered 20-29
AtlasLootMenuItem_19_Name:SetText("20-29");
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_19.lootpage="WSGRepExalted5059";
AtlasLootMenuItem_19.lootpage="WSGRepRevered2029";
AtlasLootMenuItem_19:Show();
--Exalted 60-60
AtlasLootMenuItem_20_Name:SetText("60");
--Revered 30-39
AtlasLootMenuItem_20_Name:SetText("30-39");
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_20.lootpage="WSGRepExalted60";
AtlasLootMenuItem_20.lootpage="WSGRepRevered3039";
AtlasLootMenuItem_20:Show();
--Revered Header
AtlasLootMenuItem_22_Name:SetText(RED..AL["Revered"]);
--Revered 40-49
AtlasLootMenuItem_21_Name:SetText("40-49");
AtlasLootMenuItem_21_Extra:SetText("");
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_21.lootpage="WSGRepRevered4049";
AtlasLootMenuItem_21:Show();
--Revered 50-59
AtlasLootMenuItem_22_Name:SetText("50-59");
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_22.isheader = true;
AtlasLootMenuItem_22.lootpage="WSGRepRevered5059";
AtlasLootMenuItem_22:Show();
--Revered 10-19
AtlasLootMenuItem_23_Name:SetText("10-19");
AtlasLootMenuItem_23_Extra:SetText("");
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_23.lootpage="WSGRepRevered1019";
AtlasLootMenuItem_23:Show();
--Revered 20-29
AtlasLootMenuItem_24_Name:SetText("20-29");
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_24.lootpage="WSGRepRevered2029";
AtlasLootMenuItem_24:Show();
--Revered 30-39
AtlasLootMenuItem_25_Name:SetText("30-39");
AtlasLootMenuItem_25_Extra:SetText("");
AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_25.lootpage="WSGRepRevered3039";
AtlasLootMenuItem_25:Show();
--Revered 40-49
AtlasLootMenuItem_26_Name:SetText("40-49");
AtlasLootMenuItem_26_Extra:SetText("");
AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_26.lootpage="WSGRepRevered4049";
AtlasLootMenuItem_26:Show();
--Revered 50-59
AtlasLootMenuItem_27_Name:SetText("50-59");
AtlasLootMenuItem_27_Extra:SetText("");
AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Misc_Rune_07");
AtlasLootMenuItem_27.lootpage="WSGRepRevered5059";
AtlasLootMenuItem_27:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -305,47 +305,47 @@ function AtlasLootABRepMenu()
AtlasLootMenuItem_9.lootpage="ABRepHonored5059";
AtlasLootMenuItem_9:Show();
--Exalted Header
AtlasLootMenuItem_17_Name:SetText(RED..AL["Exalted"]);
AtlasLootMenuItem_23_Name:SetText(RED..AL["Exalted"]);
AtlasLootMenuItem_23_Extra:SetText("");
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_23.isheader = true;
AtlasLootMenuItem_23:Show();
--Exalted
AtlasLootMenuItem_24_Name:SetText("60");
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_24.lootpage="ABRepExalted";
AtlasLootMenuItem_24:Show();
--Revered Header
AtlasLootMenuItem_17_Name:SetText(RED..AL["Revered"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_17.isheader = true;
AtlasLootMenuItem_17:Show();
--Exalted
AtlasLootMenuItem_18_Name:SetText("60");
--Revered 20-29
AtlasLootMenuItem_18_Name:SetText("20-29");
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_18.lootpage="ABRepExalted";
AtlasLootMenuItem_18.lootpage="ABRepRevered2029";
AtlasLootMenuItem_18:Show();
--Revered Header
AtlasLootMenuItem_20_Name:SetText(RED..AL["Revered"]);
--Revered 30-39
AtlasLootMenuItem_19_Name:SetText("30-39");
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_19.lootpage="ABRepRevered3039";
AtlasLootMenuItem_19:Show();
--Revered 40-49
AtlasLootMenuItem_20_Name:SetText("40-49");
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_20.isheader = true;
AtlasLootMenuItem_20.lootpage="ABRepRevered4049";
AtlasLootMenuItem_20:Show();
--Revered 20-29
AtlasLootMenuItem_21_Name:SetText("20-29");
--Revered 50-59
AtlasLootMenuItem_21_Name:SetText("50-59");
AtlasLootMenuItem_21_Extra:SetText("");
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_21.lootpage="ABRepRevered2029";
AtlasLootMenuItem_21.lootpage="ABRepRevered5059";
AtlasLootMenuItem_21:Show();
--Revered 30-39
AtlasLootMenuItem_22_Name:SetText("30-39");
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_22.lootpage="ABRepRevered3039";
AtlasLootMenuItem_22:Show();
--Revered 40-49
AtlasLootMenuItem_23_Name:SetText("40-49");
AtlasLootMenuItem_23_Extra:SetText("");
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_23.lootpage="ABRepRevered4049";
AtlasLootMenuItem_23:Show();
--Revered 50-59
AtlasLootMenuItem_24_Name:SetText("50-59");
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Amulet_07");
AtlasLootMenuItem_24.lootpage="ABRepRevered5059";
AtlasLootMenuItem_24:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
+59 -47
View File
@@ -17,19 +17,19 @@ function AtlasLootSetMenu()
--ZG
AtlasLootMenuItem_3_Name:SetText(AL["Zul'Gurub Sets"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_19");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Sword_55");
AtlasLootMenuItem_3.lootpage="ZGSET";
AtlasLootMenuItem_3:Show();
--AQ20
AtlasLootMenuItem_4_Name:SetText(AL["Ruins of Ahn'Qiraj Sets"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Ring_AhnQiraj_03");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Axe_15");
AtlasLootMenuItem_4.lootpage="AQ20SET";
AtlasLootMenuItem_4:Show();
--AQ40
AtlasLootMenuItem_5_Name:SetText(AL["Temple of Ahn'Qiraj Sets"]);
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Sword_59");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_35");
AtlasLootMenuItem_5.lootpage="AQ40SET";
AtlasLootMenuItem_5:Show();
--Legendaries
@@ -39,11 +39,13 @@ function AtlasLootSetMenu()
AtlasLootMenuItem_7.lootpage="Legendaries";
AtlasLootMenuItem_7:Show();
--Artifacts
--[[
AtlasLootMenuItem_8_Name:SetText(AL["Artifact Items"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Sword_07");
AtlasLootMenuItem_8.lootpage="Artifacts";
AtlasLootMenuItem_8:Show();
]]
--Rare Pets
AtlasLootMenuItem_9_Name:SetText(AL["Rare Pets"]);
AtlasLootMenuItem_9_Extra:SetText("");
@@ -56,26 +58,14 @@ function AtlasLootSetMenu()
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Misc_QirajiCrystal_05");
AtlasLootMenuItem_10.lootpage="RareMounts";
AtlasLootMenuItem_10:Show();
--Old Mounts
AtlasLootMenuItem_11_Name:SetText(AL["Old Mounts"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Ability_Mount_RidingHorse");
AtlasLootMenuItem_11.lootpage="OldMounts";
AtlasLootMenuItem_11:Show();
--Unobtainable Mounts
AtlasLootMenuItem_12_Name:SetText(AL["Unobtainable Mounts"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\Ability_Mount_Whitetiger");
AtlasLootMenuItem_12.lootpage="UnobMounts";
AtlasLootMenuItem_12:Show();
--Tabards
AtlasLootMenuItem_13_Name:SetText(AL["Tabards"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Shirt_GuildTabard_01");
AtlasLootMenuItem_13.lootpage="Tabards";
AtlasLootMenuItem_13:Show();
--World Epics
AtlasLootMenuItem_2_Name:SetText(AL["Pre 60 Sets"]);
-- Fashion
AtlasLootMenuItem_24_Name:SetText(AL["Fashion"]);
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\Ability_Hunter_Pet_Turtle");
AtlasLootMenuItem_24.lootpage="DonationRewards2";
AtlasLootMenuItem_24:Show();
--Sets
AtlasLootMenuItem_2_Name:SetText(AL["Sets"]);
AtlasLootMenuItem_2_Extra:SetText("");
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Sword_43");
AtlasLootMenuItem_2.lootpage="PRE60SET";
@@ -83,31 +73,50 @@ function AtlasLootSetMenu()
--World Epics
AtlasLootMenuItem_22_Name:SetText(AL["World Epics"]);
AtlasLootMenuItem_22_Extra:SetText("");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Box_04");
AtlasLootMenuItem_22_Icon:SetTexture("Interface\\Icons\\INV_Gauntlets_30");
AtlasLootMenuItem_22.lootpage="WORLDEPICS";
AtlasLootMenuItem_22:Show();
--Old Mounts
--[[
AtlasLootMenuItem_23_Name:SetText(AL["Old Mounts"]);
AtlasLootMenuItem_23_Extra:SetText("");
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\Ability_Mount_RidingHorse");
AtlasLootMenuItem_23.lootpage="OldMounts";
AtlasLootMenuItem_23:Show();
--Unobtainable Mounts
AtlasLootMenuItem_24_Name:SetText(AL["Unobtainable Mounts"]);
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\Ability_Mount_Whitetiger");
AtlasLootMenuItem_24.lootpage="UnobMounts";
AtlasLootMenuItem_24:Show();]]
--Tabards
AtlasLootMenuItem_25_Name:SetText(AL["Tabards"]);
AtlasLootMenuItem_25_Extra:SetText("");
AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Shirt_GuildTabard_01");
AtlasLootMenuItem_25.lootpage="Tabards";
AtlasLootMenuItem_25:Show();
--Dungeon Set 1/2
AtlasLootMenuItem_17_Name:SetText(AL["Dungeon 1/2 Sets"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_03");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Helmet_24");
AtlasLootMenuItem_17.lootpage="T0SET";
AtlasLootMenuItem_17:Show();
--Tier 1
AtlasLootMenuItem_18_Name:SetText(AL["Tier 1 Sets"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Pants_Mail_03");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Helmet_09");
AtlasLootMenuItem_18.lootpage="T1SET";
AtlasLootMenuItem_18:Show();
--Tier 2
AtlasLootMenuItem_19_Name:SetText(AL["Tier 2 Sets"]);
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_32");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Helmet_74");
AtlasLootMenuItem_19.lootpage="T2SET";
AtlasLootMenuItem_19:Show();
--Tier 3
AtlasLootMenuItem_20_Name:SetText(AL["Tier 3 Sets"]);
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate02");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Helmet_58");
AtlasLootMenuItem_20.lootpage="T3SET";
AtlasLootMenuItem_20:Show();
for i = 1, 30, 1 do
@@ -246,24 +255,6 @@ function AtlasLootPRE60SetMenu()
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Sword_43");
AtlasLootMenuItem_18.lootpage="DalRend";
AtlasLootMenuItem_18:Show();
--Zul'Gurub Rings
AtlasLootMenuItem_19_Name:SetText(AL["Zul'Gurub Rings"]);
AtlasLootMenuItem_19_Extra:SetText(ORANGE..AL["Zul'Gurub"]);
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Bijou_Orange");
AtlasLootMenuItem_19.lootpage="ZGRings";
AtlasLootMenuItem_19:Show();
--Primal Blessing
AtlasLootMenuItem_20_Name:SetText(AL["Primal Blessing"]);
AtlasLootMenuItem_20_Extra:SetText(ORANGE..AL["Zul'Gurub"]);
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\INV_Weapon_Hand_01");
AtlasLootMenuItem_20.lootpage="PrimalBlessing";
AtlasLootMenuItem_20:Show();
--The Twin Blades of Hakkari
AtlasLootMenuItem_21_Name:SetText(AL["The Twin Blades of Hakkari"]);
AtlasLootMenuItem_21_Extra:SetText(ORANGE..AL["Zul'Gurub"]);
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Sword_55");
AtlasLootMenuItem_21.lootpage="HakkariBlades";
AtlasLootMenuItem_21:Show();
--Shard of the Gods
AtlasLootMenuItem_22_Name:SetText(AL["Shard of the Gods"]);
AtlasLootMenuItem_22_Extra:SetText(ORANGE..AL["Various Locations"]);
@@ -276,10 +267,11 @@ function AtlasLootPRE60SetMenu()
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Misc_MonsterClaw_04");
AtlasLootMenuItem_23.lootpage="SpiritofEskhandar";
AtlasLootMenuItem_23:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Pre 60 Sets"]);
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Sets"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
@@ -350,6 +342,26 @@ function AtlasLootZGSetMenu()
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Shield_05");
AtlasLootMenuItem_21.lootpage="ZGWarrior";
AtlasLootMenuItem_21:Show();
--Zul'Gurub Rings
AtlasLootMenuItem_23_Name:SetText(AL["Zul'Gurub Rings"]);
AtlasLootMenuItem_23_Extra:SetText("");
AtlasLootMenuItem_23_Icon:SetTexture("Interface\\Icons\\INV_Bijou_Orange");
AtlasLootMenuItem_23.lootpage="ZGRings";
AtlasLootMenuItem_23:Show();
--Primal Blessing
AtlasLootMenuItem_24_Name:SetText(AL["Primal Blessing"]);
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Weapon_Hand_01");
AtlasLootMenuItem_24.lootpage="PrimalBlessing";
AtlasLootMenuItem_24:Show();
--The Twin Blades of Hakkari
AtlasLootMenuItem_25_Name:SetText(AL["The Twin Blades of Hakkari"]);
AtlasLootMenuItem_25_Extra:SetText("");
AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Sword_55");
AtlasLootMenuItem_25.lootpage="HakkariBlades";
AtlasLootMenuItem_25:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
+2 -2
View File
@@ -12563,7 +12563,7 @@ GetSpellInfoVanillaDB = {
["tools"] = {5956},
["castTime"] = 12.5,
["text"] = "",
["craftItem"] = 2849,
["craftItem"] = 2850,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
@@ -12807,7 +12807,7 @@ GetSpellInfoVanillaDB = {
["tools"] = {5956},
["castTime"] = 25,
["text"] = "",
["craftItem"] = 3484,
["craftItem"] = 3492,
["craftQuantityMin"] = "",
["craftQuantityMax"] = "",
["reagents"] = {
+87
View File
@@ -0,0 +1,87 @@
local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
local WHITE = "|cffFFFFFF";
function AtlasLoot_WorldBossMenu()
for i = 1, 30, 1 do
getglobal("AtlasLootItem_"..i):Hide();
end
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
getglobal("AtlasLootItemsFrame_BACK"):Hide();
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootServerQueryButton"):Hide();
--Azuregos
AtlasLootMenuItem_1_Name:SetText(AL["Azuregos"]);
AtlasLootMenuItem_1_Extra:SetText(WHITE..AL["Azshara"]);
AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Blue");
AtlasLootMenuItem_1.lootpage="AAzuregos";
AtlasLootMenuItem_1:Show();
--Emeriss
AtlasLootMenuItem_2_Name:SetText(AL["Emeriss"]);
AtlasLootMenuItem_2_Extra:SetText(WHITE..AL["Various Locations"]);
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Green");
AtlasLootMenuItem_2.lootpage="DEmeriss";
AtlasLootMenuItem_2:Show();
--Lethon
AtlasLootMenuItem_3_Name:SetText(AL["Lethon"]);
AtlasLootMenuItem_3_Extra:SetText(WHITE..AL["Various Locations"]);
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Green");
AtlasLootMenuItem_3.lootpage="DLethon";
AtlasLootMenuItem_3:Show();
--Taerar
AtlasLootMenuItem_4_Name:SetText(AL["Taerar"]);
AtlasLootMenuItem_4_Extra:SetText(WHITE..AL["Various Locations"]);
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Green");
AtlasLootMenuItem_4.lootpage="DTaerar";
AtlasLootMenuItem_4:Show();
--Ysondre
AtlasLootMenuItem_5_Name:SetText(AL["Ysondre"]);
AtlasLootMenuItem_5_Extra:SetText(WHITE..AL["Various Locations"]);
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Misc_Head_Dragon_Green");
AtlasLootMenuItem_5.lootpage="DYsondre";
AtlasLootMenuItem_5:Show();
--Lord Kazzak
AtlasLootMenuItem_7_Name:SetText(AL["Lord Kazzak"]);
AtlasLootMenuItem_7_Extra:SetText(WHITE..AL["Blasted Lands"]);
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\warlock_summon_doomguard");
AtlasLootMenuItem_7.lootpage="KKazzak";
AtlasLootMenuItem_7:Show();
--Nerubian Overseer
AtlasLootMenuItem_8_Name:SetText(AL["Nerubian Overseer"]);
AtlasLootMenuItem_8_Extra:SetText(WHITE..AL["Eastern Plaguelands"]);
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\Spell_Nature_Web");
AtlasLootMenuItem_8.lootpage="Nerubian";
AtlasLootMenuItem_8:Show();
--Dark Reaver
AtlasLootMenuItem_9_Name:SetText(AL["Dark Reaver of Karazhan"]);
AtlasLootMenuItem_9_Extra:SetText(WHITE..AL["Deadwind Pass"]);
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Ability_Mount_Dreadsteed");
AtlasLootMenuItem_9.lootpage="Reaver";
AtlasLootMenuItem_9:Show();
--Ostarius
AtlasLootMenuItem_10_Name:SetText(AL["Ostarius"]);
AtlasLootMenuItem_10_Extra:SetText(WHITE..AL["Tanaris"]);
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Misc_Platnumdisks");
AtlasLootMenuItem_10.lootpage="Ostarius";
AtlasLootMenuItem_10:Show();
--Concavius
AtlasLootMenuItem_11_Name:SetText(AL["Concavius"]);
AtlasLootMenuItem_11_Extra:SetText(WHITE..AL["Desolace"]);
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\Spell_Shadow_SummonVoidWalker");
AtlasLootMenuItem_11.lootpage="Concavius";
AtlasLootMenuItem_11:Show();
--Cow level
AtlasLootMenuItem_13_Name:SetText(AL["There Is No Cow Level"]);
AtlasLootMenuItem_13_Extra:SetText(WHITE..AL["Moomoo Grove"]);
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\Spell_Nature_Polymorph_Cow");
AtlasLootMenuItem_13.lootpage="CowKing";
AtlasLootMenuItem_13:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["World Bosses"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
+5 -5
View File
@@ -17,13 +17,13 @@ function AtlasLootWorldEventMenu()
--Abyssal Council
AtlasLootMenuItem_2_Name:SetText(AL["Abyssal Council"]);
AtlasLootMenuItem_2_Extra:SetText(ORANGE..AL["Silithus"]);
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Spell_Nature_TimeStop");
AtlasLootMenuItem_2.lootpage="AbyssalCouncil";
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Staff_13");
AtlasLootMenuItem_2.lootpage="AbyssalTemplars";
AtlasLootMenuItem_2:Show();
--Elemental Invasion
AtlasLootMenuItem_3_Name:SetText(AL["Elemental Invasion"]);
AtlasLootMenuItem_3_Extra:SetText(ORANGE..AL["Various Locations"]);
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Ammo_FireTar");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Spell_Fire_Elemental_Totem");
AtlasLootMenuItem_3.lootpage="ElementalInvasion";
AtlasLootMenuItem_3:Show();
--Children's Week
@@ -65,7 +65,7 @@ function AtlasLootWorldEventMenu()
--Midsummer Fire Festival
AtlasLootMenuItem_21_Name:SetText(AL["Midsummer Fire Festival"]);
AtlasLootMenuItem_21_Extra:SetText(ORANGE..AL["Various Locations"]);
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_SummerFest_FireFlower");
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_SummerFest_Symbol_Medium");
AtlasLootMenuItem_21.lootpage="MidsummerFestival";
AtlasLootMenuItem_21:Show();
--Noblegarden
@@ -77,7 +77,7 @@ function AtlasLootWorldEventMenu()
--Gurubashi Arena Booty Run
AtlasLootMenuItem_4_Name:SetText(AL["Gurubashi Arena Booty Run"]);
AtlasLootMenuItem_4_Extra:SetText(ORANGE..AL["Stranglethorn Vale"]);
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Box_02");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_04");
AtlasLootMenuItem_4.lootpage="GurubashiArena";
AtlasLootMenuItem_4:Show();
--Scourge Invasion
+1258 -8
View File
File diff suppressed because it is too large Load Diff
+61 -58
View File
@@ -246,9 +246,9 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 20382, "INV_Scroll_03", "=q1=Pattern: Dreamscale Breastplate", "=ds=#p7# #m14#" },
{ 22221, "INV_Scroll_03", "=q1=Plans: Obsidian Mail Tunic", "=ds=#p2# #m14#" },
{ 83548, "INV_Scroll_04", "=q1=Plans: Dream's Herald", "=ds=#p2# #m14#" },
{ 83546, "INV_Scroll_04", "=q1=Pattern: Verdant Dreamer's Breastplate", "=ds=#p2# #m14#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 80301, "INV_Shirt_GuildTabard_01", "=q1=Cenarion Circle Tabard", "=ds=#p2# #m14#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
@@ -355,15 +355,15 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
};
WaterLords1 = {
{ 0, "", "", "" },
{ 0, "Spell_Ice_Lament", "=q6=#r3#", "" },
{ 0, "Spell_Frost_SummonWaterElemental_2", "=q6=#r3#", "" },
{ 18399, "INV_Jewelry_Ring_28", "=q3=Ocean's Breeze", "=q1=#m4# =ds=#s13#" },
{ 18398, "INV_Jewelry_Ring_10", "=q3=Tidal Loop", "=q1=#m4# =ds=#s13#" },
{ 17333, "INV_Potion_76", "=q1=Aqual Quintessence", "=ds=#m33#" },
{ 0, "", "", "" },
{ 0, "Spell_Frost_FrostArmor", "=q6=#r4#", "" },
{ 0, "Spell_Frost_SummonWaterElemental_2", "=q6=#r4#", "" },
{ 22754, "INV_Potion_83", "=q1=Eternal Quintessence", "=ds=#m33#" },
{ 0, "", "", "" },
{ 0, "Spell_Frost_FrostArmor", "=q6=#r5#", "" },
{ 0, "Spell_Frost_SummonWaterElemental_2", "=q6=#r5#", "" },
{ 81254, "Spell_Frost_SummonWaterElemental", "=q1=Water Waveling", "=ds=#e15#" },
};
Bloodsail1 = {
@@ -389,8 +389,8 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 83492, "INV_Helmet_66", "=q2=Raider Captain's Hat", "=ds=#s1#, #a3#" },
{ 83491, "INV_Helmet_66", "=q2=Swashbuckler Captain's Hat", "=ds=#s1#, #a2#" },
};
Warderns1 = {
{ 0, "inv_misc_head_dragon_01", "=q6=#r2#", "" },
Wardens1 = {
{ 0, "INV_Misc_Head_Dragon_Bronze", "=q6=#r2#", "" },
{ 61000, "inv_misc_rune_08", "=q1=Time-Worn Rune", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
@@ -405,14 +405,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "inv_misc_head_dragon_01", "=q6=#r3#", "" },
{ 0, "INV_Misc_Head_Dragon_Bronze", "=q6=#r3#", "" },
{ 61005, "INV_Boots_08", "=q3=Boots of Flowing Sands", "=ds=#s12#, #a2#" },
{ 84604, "INV_Bracer_14", "=q3=Aurastone Bracers", "=ds=#s8#, #a3#" },
{ 61003, "INV_Helmet_09", "=q3=Timeskipper's Helm of Alacrity", "=ds=#s1#, #a4#" },
{ 61004, "inv_jewelry_ring_33", "=q3=Sandswept Ring of Arcanum", "=ds=#s13#" },
};
Warderns2 = {
{ 0, "inv_misc_head_dragon_01", "=q6=#r4#", "" },
Wardens2 = {
{ 0, "INV_Misc_Head_Dragon_Bronze", "=q6=#r4#", "" },
{ 84601, "INV_Shoulder_13", "=q3=Grass of Eternity", "=ds=#s3#, #a1#" },
{ 61002, "INV_Chest_Cloth_30", "=q3=Robe of the Custodian", "=ds=#s5#, #a1#" },
{ 61013, "INV_Gauntlets_10", "=q3=Gauntlets of Temporal Guidance", "=ds=#s9#, #a3#" },
@@ -420,14 +420,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 84602, "INV_Wand_07", "=q3=Consecrated Caduceus", "=ds=#w12#" },
{ 84603, "inv_staff_10", "=q3=Rod of the Churning Hourglass", "=ds=#h2#, #w9#" },
{ 0, "", "", "" },
{ 50070, "INV_Misc_Head_Dragon_01", "=q1=Bronze Whelpling", "=ds=#e15#" },
{ 50070, "INV_Misc_Head_Dragon_Bronze", "=q1=Bronze Whelpling", "=ds=#e15#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "inv_misc_head_dragon_01", "=q6=#r5#", "" },
{ 0, "INV_Misc_Head_Dragon_Bronze", "=q6=#r5#", "" },
{ 61007, "INV_Boots_Plate_03", "=q4=Temporal Bronze Boots", "=ds=#s12#, #a4#" },
{ 61012, "inv_archaeology_70_highborne_inertleystonecharm", "=q4=Shard of Eternity", "=ds=#s2#" },
{ 61010, "INV_Misc_Cape_14", "=q4=Wing of the Time-Lord", "=ds=#s4#" },
@@ -437,7 +437,7 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 61006, "INV_Sword_22", "=q4=Blade of Infinite Mysteries", "=ds=#h3#, #w10#" },
{ 0, "", "", "" },
{ 51043, "inv_misc_bag_enchantedrunecloth", "=q2=Void-Linked Satchel", "=ds=#e10#" },
{ 51252, "inv_misc_head_dragon_01", "=q4=Bronze Drake", "=ds=#e7#" },
{ 51252, "INV_Misc_Head_Dragon_Bronze", "=q4=Bronze Drake", "=ds=#e7#" },
{ 80300, "inv_shirt_guildtabard_01", "=q1=Time Warden's Tabard", "=ds=#s7#" },
};
@@ -516,14 +516,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
};
Helf = {
{ 0, "INV_Staff_13", "=q2=Cloth Armor", "" },
{ 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Cloth Armor", "" },
{ 80512, "INV_Chest_Cloth_43", "=q3=Quel'dorei Magister's Robe", "=ds=#s5#, #a1#" },
{ 80513, "inv_boots_02", "=q3=Quel'dorei Magister's Boots", "=ds=#s12#, #a1#" },
{ 80514, "INV_Belt_06", "=q3=Quel'dorei Magister's Belt", "=ds=#s10#, #a1#" },
{ 80515, "inv_gauntlets_06", "=q3=Quel'dorei Magister's Gloves", "=ds=#s9#, #a1#" },
{ 80516, "Inv_pants_cloth_02", "=q3=Quel'dorei Magister's Leggings", "=ds=#s11#, #a1#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Leather Armor", "" },
{ 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Leather Armor", "" },
{ 80517, "inv_chest_leather_05", "=q3=Quel'dorei Assassin's Tunic", "=ds=#s5#, #a2#" },
{ 80518, "inv_boots_05", "=q3=Quel'dorei Assassin's Boots", "=ds=#s12#, #a2#" },
{ 80519, "inv_belt_26", "=q3=Quel'dorei Assassin's Belt", "=ds=#s10#, #a2#" },
@@ -531,14 +531,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80521, "INV_Pants_02", "=q3=Quel'dorei Assassin's Leggings", "=ds=#s11#, #a2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Mail Armor", "" },
{ 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Mail Armor", "" },
{ 80522, "INV_Chest_Leather_08", "=q3=Quel'dorei Ranger's Hauberk", "=ds=#s5#, #a3#" },
{ 80523, "INV_Boots_05", "=q3=Quel'dorei Ranger's Boots", "=ds=#s12#, #a3#" },
{ 80524, "INV_Belt_26", "=q3=Quel'dorei Ranger's Belt", "=ds=#s10#, #a3#" },
{ 80525, "Inv_gauntlets_25", "=q3=Quel'dorei Ranger's Gauntlets", "=ds=#s9#, #a3#" },
{ 80526, "INV_Pants_12", "=q3=Quel'dorei Ranger's Legguards", "=ds=#s11#, #a3#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Plate Armor", "" },
{ 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Plate Armor", "" },
{ 80507, "inv_chest_chain_13", "=q3=Quel'dorei Guardian's Chestplate", "=ds=#s5#, #a4#" },
{ 80508, "Inv_boots_chain_06", "=q3=Quel'dorei Guardian's Boots", "=ds=#s12#, #a4#" },
{ 80509, "inv_belt_11", "=q3=Quel'dorei Guardian's Girdle", "=ds=#s10#, #a4#" },
@@ -546,12 +546,12 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80511, "inv_pants_03", "=q3=Quel'dorei Guardian's Legplates", "=ds=#s11#, #a4#" },
};
Helf2 = {
{ 0, "INV_Staff_13", "=q3=Cloaks", "" },
{ 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Cloaks", "" },
{ 80505, "inv_misc_cape_10", "=q3=Quel'dorei Hero's Cape", "=ds=#s4#" },
{ 80527, "inv_misc_cape_16", "=q3=Quel'dorei Hero's Drape", "=ds=#s4#" },
{ 80506, "inv_misc_cape_16", "=q3=Quel'dorei Hero's Cloak", "=ds=#s4#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Weapons", "" },
{ 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Weapons", "" },
{ 80502, "Inv_staff_38", "=q2=Curved Ceremonial Staff", "=ds=#w9#" },
{ 80504, "INV_Staff_25", "=q2=Hardened Root Staff", "=ds=#w9#" },
{ 80501, "INV_Sword_04", "=q2=Sturdy Broadsword", "=ds=#h1#, #w10#" },
@@ -561,12 +561,12 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Tabard", "" },
{ 80317, "inv_misc_tournaments_tabard_bloodelf", "=q1=Quel'Thalas Tabard", "=ds=#s7#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q1=Pets", "" },
{ 0, "inv_misc_tournaments_symbol_bloodelf", "=q6=Pets", "" },
{ 80003, "inv_misc_foxkit", "=q1=Black-Footed Fox", "=ds=#e15#" },
{ 80007, "INV_Staff_08", "=q1=Enchanted Broom", "=ds=#e15#" },
{ 80000, "INV_Box_PetCarrier_01", "=q1=Golden Dragonhawk Hatchling", "=ds=#e15#" },
@@ -574,7 +574,6 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
};
Helf3 = {
{ 0, "", "", "" },
{ 80529, "INV_Weapon_ShortBlade_15", "=q3=Quel'dorei Magister's Channeling Blade", "=ds=#h3#, #w4#" },
{ 80539, "INV_Offhand_Blood_02", "=q3=Quel'dorei Magister's Focus", "=ds=#s15#" },
{ 80541, "Inv_staff_38", "=q3=Quel'dorei Magister's Staff", "=ds=#h2#, #w9#" },
@@ -603,17 +602,18 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 80538, "INV_Spear_10", "=q3=Quel'dorei Ranger's Spear", "=ds=#h2#, #w7#" },
{ 80543, "INV_Shield_36", "=q3=Quel'dorei Defender's Bulwark", "=ds=#w8#, #h4#" },
{ 0, "", "", "" },
};
Revantusk = {
{ 0, "INV_Misc_Head_Troll_01", "=q2=Cloth Armor", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Cloth Armor", "" },
{ 80612, "inv_chest_cloth_20", "=q3=Revantusk Mystic's Robe", "=ds=#s5#, #a1#" },
{ 80613, "INV_Boots_05", "=q3=Revantusk Mystic's Boots", "=ds=#s12#, #a1#" },
{ 80614, "INV_Belt_04", "=q3=Revantusk Mystic's Belt", "=ds=#s10#, #a1#" },
{ 80615, "INV_Gauntlets_19", "=q3=Revantusk Mystic's Gloves", "=ds=#s9#, #a1#" },
{ 80616, "INV_Pants_13", "=q3=Revantusk Mystic's Leggings", "=ds=#s11#, #a1#" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q2=Leather Armor", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Leather Armor", "" },
{ 80617, "Inv_chest_chain_16", "=q3=Revantusk Stalker's Tunic", "=ds=#s5#, #a2#" },
{ 80618, "Inv_boots_chain_01", "=q3=Revantusk Stalker's Boots", "=ds=#s12#, #a2#" },
{ 80619, "Inv_belt_23", "=q3=Revantusk Stalker's Belt", "=ds=#s10#, #a2#" },
@@ -621,14 +621,14 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80621, "Inv_pants_mail_04", "=q3=Revantusk Stalker's Leggings", "=ds=#s11#, #a2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q2=Mail Armor", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Mail Armor", "" },
{ 80622, "inv_chest_leather_07", "=q3=Revantusk Shadow Hunter's Hauberk", "=ds=#s5#, #a3#" },
{ 80623, "inv_boots_02", "=q3=Revantusk Shadow Hunter's Boots", "=ds=#s12#, #a3#" },
{ 80624, "Inv_belt_23", "=q3=Revantusk Shadow Hunter's Belt", "=ds=#s10#, #a3#" },
{ 80625, "INV_Gauntlets_19", "=q3=Revantusk Shadow Hunter's Gauntlets", "=ds=#s9#, #a3#" },
{ 80626, "inv_pants_03", "=q3=Revantusk Shadow Hunter's Legguards", "=ds=#s11#, #a3#" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q2=Plate Armor", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Plate Armor", "" },
{ 80607, "inv_chest_chain_17", "=q3=Revantusk Watcher's Chestplate", "=ds=#s5#, #a4#" },
{ 80608, "Inv_boots_chain_03", "=q3=Revantusk Watcher's Boots", "=ds=#s12#, #a4#" },
{ 80609, "Inv_belt_23", "=q3=Revantusk Watcher's Girdle", "=ds=#s10#, #a4#" },
@@ -636,12 +636,12 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80611, "Inv_pants_leather_07", "=q3=Revantusk Watcher's Legplates", "=ds=#s11#, #a4#" },
};
Revantusk2 = {
{ 0, "INV_Misc_Head_Troll_01", "=q2=Cloaks", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Cloaks", "" },
{ 80605, "INV_Misc_Cape_15", "=q3=Revantusk Hero's Cape", "=ds=#s4#, #a1#" },
{ 80627, "INV_Misc_Cape_17", "=q3=Revantusk Hero's Drape", "=ds=#s4#, #a1#" },
{ 80606, "INV_Misc_Cape_18", "=q3=Revantusk Hero's Cloak", "=ds=#s4#, #a1#" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q2=Weapons", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Weapons", "" },
{ 80602, "INV_Staff_Goldfeathered_01", "=q2=Crude Channeling Staff", "=ds=#h2#, #w9#" },
{ 80601, "Inv_sword_33", "=q2=Flesh Cutter", "=ds=#h1#, #w10#" },
{ 80600, "INV_Axe_01", "=q2=Rockslicer", "=ds=#h1#, #w1#" },
@@ -651,27 +651,27 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Tabard", "" },
{ 81098, "inv_misc_tournaments_tabard_troll", "=q1=Revantusk Tabard", "=ds=#s7#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q1=Pets", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Pets", "" },
{ 80878, "INV_Feather_14", "=q1=Amani Eagle", "=ds=#e15#" },
{ 0, "", "", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q1=Mounts", "" },
{ 0, "INV_Misc_Head_Troll_01", "=q6=Mounts", "" },
{ 81226, "Ability_Hunter_Pet_Bear", "=q4=Armored Brown Bear", "=ds=#e7#" },
{ 80433, "Ability_Druid_DemoralizingRoar", "=q4=Black Bear", "=ds=#e7#" },
{ 80438, "Ability_Druid_DemoralizingRoar", "=q4=Brown Bear", "=ds=#e7#" },
{ 0, "", "", "" },
};
Revantusk3 = {
{ 0, "", "", "" },
{ 80629, "INV_Misc_MonsterFang_01", "=q3=Revantusk Mystic's Chanting Blade", "=ds=#h3#, #w4#" },
{ 80639, "INV_Staff_13", "=q3=Revantusk Mystic's Hex Skull", "=ds=#s15#" },
{ 80641, "INV_Misc_Bone_ElfSkull_01", "=q3=Revantusk Mystic's Staff", "=ds=#h2#, #w9#" },
{ 80644, "INV_Wand_01", "=q3=Revantusk Mystic's Mojobender", "=ds=#w12#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 80632, "INV_Misc_Bone_ElfSkull_01", "=q3=Revantusk Mender's Scepter", "=ds=#h3#, #w6#" },
{ 80640, "INV_Misc_Bone_01", "=q3=Revantusk Mender's Mojo", "=ds=#s15#" },
{ 80642, "INV_Staff_Goldfeathered_01", "=q3=Revantusk Mender's Cane", "=ds=#h2#, #w9#" },
@@ -696,38 +696,39 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80643, "INV_Shield_16", "=q3=Revantusk Defender's Bulwark", "=ds=#w8#, #h4#" },
};
Ironforge = {
{ 0, "inv_drink_08", "=q6=#r3#", "" },
{ 0, "Ability_Racial_Avatar", "=q6=#r3#", "" },
{ 81214, "INV_Belt_27", "=q2=Girdle of Anvilmar", "=ds=#s10#, #a2#" },
{ 81211, "inv_boots_02", "=q2=Boots of Anvilmar", "=ds=#s12#, #a2#" },
{ 81212, "inv_chest_plate03", "=q2=Tunic of Anvilmar", "=ds=#s5#, #a2#" },
{ 81215, "INV_Gauntlets_25", "=q2=Armguards of Anvilmar", "=ds=#s9#, #a2#" },
{ 81213, "inv_pants_12", "=q2=Pants of Anvilmar", "=ds=#s11#, #a2#" },
{ 0, "", "", "" },
{ 0, "inv_drink_08", "=q6=#r5#", "" },
{ 0, "Ability_Racial_Avatar", "=q6=#r5#", "" },
{ 80303, "inv_misc_tournaments_tabard_dwarf", "=q1=Ironforge Tabard", "=ds=#s7#" },
{ 81233, "Ability_Mount_MountainRam", "=q4=Armored Ironforge Ram", "=ds=#e7#" },
};
Darnassus = {
{ 0, "INV_Staff_13", "=q2=Honored", "" },
{ 0, "Ability_Racial_ShadowMeld", "=q6=Honored", "" },
{ 60746, "inv_chest_plate09", "=q2=Sentinel's Breastplate", "=ds=#s5#, #a3#" },
{ 60747, "inv_boots_chain_08", "=q2=Sentinel's Boots", "=ds=#s12#, #a3#" },
{ 60748, "inv_helmet_19", "=q2=Sentinel's Crown", "=ds=#s1#, #a3#" },
{ 60748, "inv_helmet_19", "=q6=Sentinel's Crown", "=ds=#s1#, #a3#" },
{ 60749, "inv_pants_mail_11", "=q2=Sentinel's Leggings", "=ds=#s11#, #a3#" },
{ 60750, "inv_gauntlets_06", "=q2=Sentinel's Gauntlets", "=ds=#s9#, #a3#" },
{ 60751, "INV_Shoulder_13", "=q2=Sentinel's Pauldrons", "=ds=#s3#, #a3#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Revered", "" },
{ 0, "Ability_Racial_ShadowMeld", "=q6=Revered", "" },
{ 60752, "INV_Spear_08", "=q3=Sentinel's Glaive", "=ds=#h1#, #w10#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 0, "Ability_Racial_ShadowMeld", "=q6=Exalted", "" },
{ 80305, "inv_misc_tournaments_tabard_nightelf", "=q1=Darnassus Tabard", "=ds=#s7#" },
};
Stormwind = {
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 80320, "INV_Shirt_GuildTabard_01", "=q1=Stormwind Tabard", "=ds=#s7#" },
{ 0, "INV_BannerPVP_02", "=q6=Exalted", "" },
{ 81225, "Ability_Mount_RidingHorse", "=q4=Armored Stormwind Warhorse", "=ds=#s7#"},
{ 80320, "inv_misc_tournaments_tabard_human", "=q1=Stormwind Tabard", "=ds=#s7#" },
};
GnomereganExiles = {
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 0, "INV_Gizmo_02", "=q6=Exalted", "" },
{ 81192, "INV_Misc_Gear_01", "=q4=Black Scrapforged Mechaspider", "=ds=#e7#" },
{ 81193, "INV_Misc_Gear_01", "=q4=Blue Scrapforged Mechaspider", "=ds=#e7#" },
{ 81194, "INV_Misc_Gear_01", "=q4=Green Scrapforged Mechaspider", "=ds=#e7#" },
@@ -735,50 +736,51 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80306, "inv_misc_tournaments_tabard_gnome", "=q1=Gnomeregan Tabard", "=ds=#s7#" },
};
DarkspearTrolls = {
{ 0, "inv_misc_head_troll_01", "=q6=#r3#", "" },
{ 0, "Racial_Troll_Berserk", "=q6=#r3#", "" },
{ 83064, "spell_nature_agitatingtotem", "=q3=Hexed Voodoo Pads", "=ds=#s3#, #a1#" },
{ 0, "inv_misc_head_troll_01", "=q6=#r4#", "" },
{ 0, "", "", "" },
{ 0, "Racial_Troll_Berserk", "=q6=#r4#", "" },
{ 80806, "INV_Banner_01", "=q3=Healing Ward", "=ds=#s14#" },
{ 80785, "INV_Potion_07", "=q3=Bottle of Good Mojo", "=ds=#s15#" },
{ 80797, "INV_Jewelry_Necklace_02", "=q3=Pendant of Troll Regeneration", "=ds=#s2#" },
{ 0, "", "", "" },
{ 0, "inv_misc_head_troll_01", "=q6=#r5#", "" },
{ 0, "Racial_Troll_Berserk", "=q6=#r5#", "" },
{ 81183, "Ability_Hunter_Pet_WindSerpent", "=q1=Sunscale Hatchling", "=ds=#e15#" },
{ 80304, "inv_misc_tournaments_tabard_troll", "=q1=Darkspear Tribe Tabard", "=ds=#s7#" },
{ 81182, "Ability_Mount_Raptor", "=q4=Armored Darkspear Raptor", "=ds=#e7#" },
},
DurotarLaborUnion = {
{ 0, "INV_Staff_13", "=q2=Friendly", "" },
{ 0, "INV_Misc_Coin_01", "=q6=Friendly", "" },
{ 50068, "Spell_Nature_GuardianWard", "=q1=Green Water Snake", "=ds=#e15#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Revered", "" },
{ 0, "INV_Misc_Coin_01", "=q6=Revered", "" },
{ 81196, "INV_Scroll_06", "=q3=Schematic: Goblin Radio", "=ds=#p5# #m14#" },
{ 10585, "INV_Gizmo_GoblinBoomBox_01", "=q3=Goblin Radio KABOOM-Box X23B76", "=ds=#e34#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 0, "INV_Misc_Coin_01", "=q6=Exalted", "" },
{ 81190, "INV_Misc_Key_06", "=q4=Red Shredder X-0524A", "=ds=#e7#, Goblin Only" },
{ 81191, "INV_Misc_Key_05", "=q4=Green Shredder X-0524B", "=ds=#e7#, Goblin Only" },
{ 81089, "inv_shirt_guildtabard_01", "=q1=Durotar Labor Union Tabard", "=ds=#s7#" },
{ 81089, "inv_misc_tabard_kezan", "=q1=Durotar Labor Union Tabard", "=ds=#s7#" },
};
Undercity = {
{ 0, "inv_misc_head_undead_02", "=q6=#r5#", "" },
{ 0, "Spell_Shadow_RaiseDead", "=q6=#r5#", "" },
{ 81244, "Ability_Mount_Undeadhorse", "=q4=Armored Ebon Deathcharger", "=ds=#e7#" },
{ 81245, "Ability_Mount_Undeadhorse", "=q4=Armored Crimson Deathcharger", "=ds#e7#" },
{ 81245, "Ability_Mount_Undeadhorse", "=q4=Armored Crimson Deathcharger", "=ds=#e7#" },
{ 81246, "Ability_Mount_Undeadhorse", "=q4=Armored Emerald Deathcharger", "=ds=#e7#" },
{ 81247, "Ability_Mount_Undeadhorse", "=q4=Armored Ivory Deathcharger", "=ds=#e7#" },
{ 80309, "inv_misc_tournaments_tabard_scourge", "=q1=Undercity Tabard", "=ds=#s7#" },
};
Orgrimmar = {
{ 0, "INV_Staff_13", "=q2=Honored", "" },
{ 0, "INV_BannerPVP_01", "=q6=Honored", "" },
{ 81216, "inv_helmet_08", "=q2=Fur-Lined Orcish Helm", "=ds=#s1#, #a2#" },
{ 81217, "inv_helmet_08", "=q2=Protective Orcish Helm", "=ds=#s1#, #a3#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 0, "INV_BannerPVP_01", "=q6=Exalted", "" },
{ 81241, "Ability_Hunter_Pet_Wolf", "=q4=Armored Orgrimmar Wolf", "=ds=#e7#" },
{ 80307, "inv_misc_tournaments_tabard_orc", "=q1=Orgrimmar Tabard", "=ds=#s7#" },
};
ThunderBluff = {
{ 0, "INV_Staff_13", "=q2=Revered", "" },
{ 0, "INV_Misc_Foot_Centaur", "=q6=Revered", "" },
{ 81199, "INV_Staff_03", "=q3=Ancestral War Totem", "=ds=#h2#, #w6#" },
{ 81218, "inv_chest_plate08", "=q2=Chieftain's Ceremonial Harness", "=ds=#s5#, #a2#" },
{ 81219, "inv_boots_plate_05", "=q2=Chieftain's Ceremonial Anklewraps", "=ds=#s12#, #a2#" },
@@ -786,7 +788,7 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 81221, "INV_Belt_13", "=q2=Chieftain's Ceremonial Belt", "=ds=#s10#, #a2#" },
{ 81222, "INV_Gauntlets_09", "=q2=Chieftain's Ceremonial Handwraps", "=ds=#s9#, #a2#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q2=Exalted", "" },
{ 0, "INV_Misc_Foot_Centaur", "=q6=Exalted", "" },
{ 81167, "INV_Shoulder_06", "=q3=Chieftain's Ceremonial Mantle", "=ds=#s3#, #a2#" },
{ 81223, "INV_Helmet_04", "=q3=Chieftain's Ceremonial Headdress", "=ds=#s1#, #a2#" },
{ 81198, "Ability_Mount_Kodo_01", "=q4=Armored Thunder Bluff Kodo", "=ds=#e7#" },
@@ -794,19 +796,20 @@ AtlasLoot_Data["AtlasLootRepItems"] = {
{ 80308, "inv_misc_tournaments_tabard_tauren", "=q1=Thunder Bluff Tabard", "=ds=#s7#" },
};
Dalaran = {
{ 0, "INV_Staff_13", "=q2=Revered", "" },
{ 0, "Spell_Holy_MagicalSentry", "=q6=Revered", "" },
{ 60728, "INV_Boots_05", "=q3=Boots of the Hermit Magi", "=ds=#s12#, #a1#" },
{ 60730, "INV_Belt_33", "=q3=Girdle of the Warden", "=ds=#s10#, #a4#" },
{ 60727, "INV_Shoulder_18", "=q3=Pauldrons of Sealed Magics", "=ds=#s3#, #a3#" },
{ 60726, "INV_Shield_06", "=q3=Spellguard's Shield", "=ds=#w8#, #h4#" },
{ 60729, "INV_Gauntlets_09", "=q3=Skulker's Gloves", "=ds=#s9#, #a2#" },
{ 0, "", "", "" },
{ 0, "INV_Staff_13", "=q3=Exalted", "" },
{ 0, "Spell_Holy_MagicalSentry", "=q6=Exalted", "" },
{ 60724, "INV_Helmet_11", "=q4=Dalarani Conjurer's Hat", "=ds=#s1#, #a1#" },
{ 60725, "INV_Jewelry_Ring_34", "=q4=Ring of Flowing Leylines", "=ds=#s13#" },
{ 81289, "INV_Shirt_GuildTabard_01", "=q4=Dalaran Tabard", "=ds=#s13#" },
};
Wildhammer = {
{ 0, "inv_misc_tabard_wildhammerclan", "=q3=Exalted", "" },
{ 0, "Ability_Hunter_EagleEye", "=q6=Exalted", "" },
{ 81185, "Ability_Mount_Gryphon_01", "=q3=Aerie Peak Gryphon", "=ds=#e7#" },
{ 81186, "Ability_Mount_Gryphon_01", "=q3=Armored Aerie Peak Gryphon", "=ds=#e7#" },
{ 81243, "inv_misc_birdbeck_01", "=q1=Beaky", "=ds=#e15#" },
+56 -107
View File
@@ -36,14 +36,19 @@ AL:RegisterTranslations("enUS", function() return {
["ALT+Click to use WishList."] = true,
["Left-click to open AtlasLoot.\nMiddle-click for AtlasLoot options.\nRight-click and drag to move this button."] = true,
["Various Locations"] = true,
["NoticeFrame"] = "If you find anything missing, please report it at |cffbe5effhttps://github.com/|cffE40303L|cffFF8C00e|cffFFED00x|cff008026i|cff24408Ee|cff732982b|cff5BCEFAe|cffF5A9B8a|cffFFFFFFn|cffbe5eff/AtlasLoot/issues|r or mail |cff5BCEFAL|cffF5A9B8e|cffFFFFFFx|cffF5A9B8i|cff5BCEFAe|r.",
["Blasted Lands"] = true,
["Eastern Plaguelands"] = true,
["Deadwind Pass"] = true,
["Tanaris"] = true,
["Desolace"] = true,
["Moomoo Grove"] = true,
["NoticeFrame"] = " ",
["Toggle AL Panel"] = true,
[" is safe."] = true,
["Server queried for "] = true,
[". Right click on any other item to refresh the loot page."] = true,
["Level 60"] = true,
["|cffff0000(unsafe)"] = true,
["Misc"] = true,
["Test"] = true,
["Rewards"] = true,
["Raid"] = true,
@@ -152,26 +157,10 @@ AL:RegisterTranslations("enUS", function() return {
["This item is not available on your server or your battlegroup yet."] = true,
["This item is unsafe. To view this item without the risk of disconnection, you need to have first seen it in the game world. This is a restriction enforced by Blizzard since Patch 1.10."] = true,
["You can right-click to attempt to query the server. You may be disconnected."] = true,
["Mount"] = true,
["Enchant"] = true,
["Trade Goods"] = true,
["Scope"] = true,
["Pet"] = true,
["Darkmoon Faire Card"] = true,
["Book"] = true,
["Banner"] = true,
["Set"] = true,
["Set: "] = true,
["Token"] = true,
["Token Hand-Ins"] = true,
["Crafting Reagent"] = true,
["Skinning Knife"] = true,
["Herbalism Knife"] = true,
["Fish"] = true,
["Combat Pet"] = true,
["Fireworks"] = true,
["Cloak"] = true,
["Weapons"] = true,
["Classes"] = true,
["This Item Begins a Quest"] = true,
["Quest Item"] = true,
@@ -328,7 +317,7 @@ AL:RegisterTranslations("enUS", function() return {
["Thick Draenic Armor"] = true,
["Fel Skin"] = true,
["Strength of the Clefthoof"] = true,
["Dalaran"] = "|cff2773ffDalaran",
["Dalaran"] = true,
["Red Dragon Mail"] = true,
["Green Dragon Mail"] = true,
["Blue Dragon Mail"] = true,
@@ -505,7 +494,7 @@ AL:RegisterTranslations("enUS", function() return {
["AQ20 Class Sets"] = true,
["AQ Enchants"] = true,
["AQ Opening Quest Chain"] = true,
["Pre 60 Sets"] = true,
["Sets"] = true,
["Crafted Sets"] = true,
["Crafted Epic Weapons"] = true,
["Zul'Gurub Sets"] = true,
@@ -513,7 +502,6 @@ AL:RegisterTranslations("enUS", function() return {
["ZG Enchants"] = true,
["Dungeon 1/2 Sets"] = true,
["Dungeon Set 1"] = true,
["Dungeon Set 1"] = true,
["Dungeon 1 Set"] = true,
["Dungeon 2 Set"] = true,
["D2 Summonable"] = true,
@@ -561,7 +549,6 @@ AL:RegisterTranslations("enUS", function() return {
["Level 30-39"] = true,
["Level 40-49"] = true,
["Level 50-60"] = true,
["Trash Mobs"] = true,
["Dungeon Set 2 Summonable"] = true,
["Theldren"] = true,
["Sothos and Jarien"] = true,
@@ -692,7 +679,6 @@ AL:RegisterTranslations("enUS", function() return {
["Henry Stern"] = true,
["Aggem Thorncurse"] = true,
["Roogug"] = true,
["Rajaxx's Captains"] = true,
["Razorfen Spearhide"] = true,
["Rethilgore"] = true,
["Kalldan Felmoon"] = true,
@@ -775,73 +761,11 @@ AL:RegisterTranslations("enUS", function() return {
["Midsummer Fire Festival"] = true,
["Noblegarden"] = true,
["Stranglethorn Fishing Extravaganza"] = true,
["Highlord Omokk"] = true,
["Shadow Hunter Vosh'gajin"] = true,
["War Master Voone"] = true,
["Mor Grayhoof"] = true,
["Mother Smolderweb"] = true,
["Gizrul the Slavener"] = true,
["Overlord Wyrmthalak"] = true,
["Pyroguard Emberseer"] = true,
["Solakar Flamewreath"] = true,
["Warchief Rend Blackhand"] = true,
["Gyth"] = true,
["The Beast"] = true,
["General Drakkisath"] = true,
["Razorgore the Untamed"] = true,
["Vaelastrasz the Corrupt"] = true,
["Broodlord Lashlayer"] = true,
["Firemaw"] = true,
["Ebonroc"] = true,
["Flamegor"] = true,
["Chromaggus"] = true,
["Nefarian"] = true,
["Lucifron"] = true,
["Magmadar"] = true,
["Gehennas"] = true,
["Garr"] = true,
["Shazzrah"] = true,
["Baron Geddon"] = true,
["Golemagg the Incinerator"] = true,
["Sulfuron Harbinger"] = true,
["Ragnaros"] = true,
["Patchwerk"] = true,
["Grobbulus"] = true,
["Gluth"] = true,
["Thaddius"] = true,
["Anub'Rekhan"] = true,
["Grand Widow Faerlina"] = true,
["Maexxna"] = true,
["Instructor Razuvious"] = true,
["Gothik the Harvester"] = true,
["The Four Horsemen"] = true,
["Noth the Plaguebringer"] = true,
["Heigan the Unclean"] = true,
["Loatheb"] = true,
["Sapphiron"] = true,
["Kel'Thuzad"] = true,
["Onyxia"] = true,
["Kirtonos the Herald"] = true,
["Jandice Barov"] = true,
["Rattlegore"] = true,
["Ras Frostwhisper"] = true,
["Instructor Malicia"] = true,
["Doctor Theolen Krastinov"] = true,
["Lorekeeper Polkelt"] = true,
["The Ravenian"] = true,
["Lord Alexei Barov"] = true,
["Darkmaster Gandling"] = true,
["Hearthsinger Forresten"] = true,
["The Unforgiven"] = true,
["Timmy the Cruel"] = true,
["Cannon Master Willey"] = true,
["Archivist Galford"] = true,
["Balnazzar"] = true,
["Baroness Anastari"] = true,
["Nerub'enkan"] = true,
["Maleki the Pallid"] = true,
["Magistrate Barthilas"] = true,
["Ramstein the Gorger"] = true,
["Keys"] = true,
["Blackfathom Deeps"] = "|cffffffff[23-32]|cffffd200 Blackfathom Deeps",
["Lady Sarevess"] = true,
@@ -1184,7 +1108,6 @@ AL:RegisterTranslations("enUS", function() return {
["Neck"] = true,
["Shoulder"] = true,
["Back"] = true,
["Chest"] = true,
["Shirt"] = true,
["Tabard"] = true,
["Wrist"] = true,
@@ -1207,7 +1130,6 @@ AL:RegisterTranslations("enUS", function() return {
["Gun"] = true,
["Mace"] = true,
["Polearm"] = true,
["Shield"] = true,
["Staff"] = true,
["Sword"] = true,
["Thrown"] = true,
@@ -1357,7 +1279,6 @@ AL:RegisterTranslations("enUS", function() return {
["Shadeflayer Goliath"] = true,
["Widow of the Woods"] = true,
["M-0L1Y"] = true,
["Wardens of Time"] = true,
["Blood Ring Friendly Rewards"] = true,
["Blood Ring Honored Rewards"] = true,
["Blood Ring Revered Rewards"] = true,
@@ -1390,7 +1311,6 @@ AL:RegisterTranslations("enUS", function() return {
["WSG 40-49 Exalted Rewards"] = true,
["WSG 50-59 Exalted Rewards"] = true,
["WSG 60 Exalted Rewards"] = true,
["Neutral"] = true,
["Friendly"] = true,
["Honored"] = true,
@@ -1402,16 +1322,16 @@ AL:RegisterTranslations("enUS", function() return {
["Cenarion Circle"] = true,
["Darkmoon Faire"] = true,
["The Defilers"] = true,
["Frostwolf Clan"] = "|cffff0000Frostwolf Clan",
["Frostwolf Clan"] = true,
["Hydraxian Waterlords"] = true,
["Gelkis Clan Centaur"] = true,
["The League of Arathor"] = true,
["Magram Clan Centaur"] = true,
["Stormpike Guard"] = "|cff2773ffStormpike Guard",
["Stormpike Guard"] = true,
["Thorium Brotherhood"] = true,
["Timbermaw Hold"] = true,
["Wardens of Time"] = true,
["Wintersaber Trainers"] = "|cff2773ffWintersaber Trainers",
["Wintersaber Trainers"] = true,
["Zandalar Tribe"] = true,
["Apprentice"] = true,
["Journeyman"] = true,
@@ -1538,24 +1458,23 @@ AL:RegisterTranslations("enUS", function() return {
["Huge Emerald"] = true,
["Dust of Deterioration"] = true,
["Leaded Vial"] = true,
["Silvermoon Remnant"] = "|cff2773ffSilvermoon Remnant",
["Revantusk Trolls"] = "|cffff0000Revantusk Trolls",
["Ironforge"] = "|cff2773ffIronforge",
["Darnassus"] = "|cff2773ffDarnassus",
["Stormwind"] = "|cff2773ffStormwind",
["Gnomeregan Exiles"] = "|cff2773ffGnomeregan Exiles",
["Darkspear Trolls"] = "|cffff0000Darkspear Trolls",
["Durotar Labor Union"] = "|cffff0000Durotar Labor Union",
["Wildhammer Clan"] = "|cff2773ffWildhammer Clan",
["Undercity"] = "|cffff0000Undercity",
["Orgrimmar"] = "|cffff0000Orgrimmar",
["Thunder Bluff"] = "|cffff0000Thunder Bluff",
["Silvermoon Remnant"] = true,
["Revantusk Trolls"] = true,
["Ironforge"] = true,
["Darnassus"] = true,
["Stormwind"] = true,
["Gnomeregan Exiles"] = true,
["Darkspear Trolls"] = true,
["Durotar Labor Union"] = true,
["Wildhammer Clan"] = true,
["Undercity"] = true,
["Orgrimmar"] = true,
["Thunder Bluff"] = true,
["Lower Karazhan Halls"] = "|cffff0000[RAID]|cffffd200 Lower Karazhan Halls",
["Emerald Sanctum"] = "|cffff0000[RAID]|cffffd200 Emerald Sanctum",
["Gilneas City"] = "|cffffffff[42-50]|cffffd200 Gilneas City",
["Matthias Holtz"] = true,
["Packmaster Ragetooth"] = true,
["Packmaster Ragetooth"] = true,
["Judge Sutherland"] = true,
["Dustivan Blackcowl"] = true,
["Marshal Magnus Greystone"] = true,
@@ -1578,10 +1497,40 @@ AL:RegisterTranslations("enUS", function() return {
["Cloak"] = true,
["Chest"] = true,
["Bracer"] = true,
["Glove"] = true,
["Gloves"] = true,
["Boots"] = true,
["2H Weapon"] = true,
["Weapon"] = true,
["Shield"] = true,
["Misc"] = true,
} end)
["Flasks"] = true,
["Protection Potions"] = true,
["Healing and Mana Potions"] = true,
["Transmutes"] = true,
["Defensive Potions and Elixirs"] = true,
["Offensive Potions and Elixirs"] = true,
["Other"] = true,
["Helm"] = true,
["Shoulders"] = true,
["Bracers"] = true,
["Belt"] = true,
["Pants"] = true,
["Bags"] = true,
["Axes"] = true,
["Swords"] = true,
["Maces"] = true,
["Fist"] = true,
["Daggers"] = true,
["Belt Buckles"] = true,
["Equipment"] = true,
["Trinkets"] = true,
["Explosives"] = true,
["Parts"] = true,
["Rank 7-13"] = true,
["Rank 11"] = true,
["Rank 14"] = true,
["Rank 2-9"] = true,
["Donation Rewards"] = true,
["Fashion"] = true,
}
end)
+2 -2
View File
@@ -702,9 +702,9 @@ AtlasLoot_Data["AtlasLootBGItems"] = {
{ 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "=q1=#m4# =ds=#s7#" },
};
WSGRepFriendly = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_02", "=q8=#m7#", "=q7=#b3#" },
{ 0, "", "", "" },
{ 21566, "INV_Misc_Rune_05", "=q3=Rune of Perfection", "=ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" },
{ 21565, "INV_Misc_Rune_05", "=q3=Rune of Perfection", "=ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" },
{ 0, "", "", "" },
@@ -718,8 +718,8 @@ AtlasLoot_Data["AtlasLootBGItems"] = {
{ 17349, "INV_Potion_39", "=q1=Superior Healing Draught", "=ds=#e1#" },
{ 17352, "INV_Potion_81", "=q1=Superior Mana Draught", "=ds=#e1#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "INV_BannerPVP_01", "=q6=#m6#", "=q5=#b4#" },
{ 0, "", "", "" },
{ 21566, "INV_Misc_Rune_05", "=q3=Rune of Perfection", "=ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" },
{ 21565, "INV_Misc_Rune_05", "=q3=Rune of Perfection", "=ds=#s14# =q9=#c5#=ds=, =q15=#c7#=ds=, =q10=#c3#=ds=, =q11=#c8#=ds=, =q13=#c1#" },
{ 0, "", "", "" },
+79 -24
View File
@@ -1081,13 +1081,13 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 17204, "INV_Misc_Gem_Pearl_05", "=q5=Eye of Sulfuras", "=q1=#m31#", " 3.42%" },
{ 18564, "Spell_Ice_Lament", "=q5=Bindings of the Windseeker", "=ds=#m9# =q1=#m3#", " 3.74%" },
{ 18563, "Spell_Ice_Lament", "=q5=Bindings of the Windseeker", "=ds=#m10# =q1=#m3#", " 3.78%" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 17782, "INV_Jewelry_Amulet_04", "=q5=Talisman of Binding Shard", "=ds=#s2#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 61184, "Inv_weapon_shortblade_23", "=q5=The Scythe of Elune", "=ds=#m2#", "0.85%" },
{ 0, "", "", "" },
{ "e57518", "inv_misc_gem_pearl_04", "=q5=Eternal Dreamstone Shard", "=q1=Enchanting"},
{ 0, "", "", "" },
{ 22631, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9# =q9=#c5#"},
{ 22589, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9# =q10=#c3#"},
{ 22630, "INV_Staff_Medivh", "=q5=Atiesh, Greatstaff of the Guardian", "=ds=#w9# =q11=#c8#"},
@@ -1099,7 +1099,8 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 23051, "INV_Spear_05", "=q5=Glaive of the Defender", "=ds=#h3#, #w10# =q17=#c9#" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 13262, "INV_Sword_48", "=q5=Ashbringer", "=ds=#h2#, #w10#" },
};
RareMounts = {
@@ -1193,27 +1194,26 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 8628, "Ability_Mount_Blackpanther", "=q1=Reins of the Spotted Nightsaber", "=ds=#e7#" },
};
Tabards = {
{ 15196, "INV_Misc_TabardPVP_01", "=q1=Private's Tabard", "PvP =q8=#m7#" },
{ 15198, "INV_Misc_TabardPVP_03", "=q1=Knight's Colors", "PvP =q8=#m7#" },
{ 19506, "INV_Shirt_GuildTabard_01", "=q1=Silverwing Battle Tabard", "PvP =q8=#m7#" },
{ 20132, "INV_Shirt_GuildTabard_01", "=q1=Arathor Battle Tabard", "PvP =q8=#m7#" },
{ 19032, "INV_Shirt_GuildTabard_01", "=q1=Stormpike Battle Tabard", "PvP =q8=#m7#" },
{ 0, "", "", "" },
{ 15196, "INV_Misc_TabardPVP_01", "=q1=Private's Tabard", "=ds=#s7# =q8=#m7#" },
{ 15198, "INV_Misc_TabardPVP_03", "=q1=Knight's Colors", "=ds=#s7# =q8=#m7#" },
{ 19506, "INV_Shirt_GuildTabard_01", "=q1=Silverwing Battle Tabard", "=ds=#s7# =q8=#m7#" },
{ 20132, "INV_Shirt_GuildTabard_01", "=q1=Arathor Battle Tabard", "=ds=#s7# =q8=#m7#" },
{ 19032, "INV_Shirt_GuildTabard_01", "=q1=Stormpike Battle Tabard", "=ds=#s7# =q8=#m7#" },
{ 0, "", "", "" },
{ 19160, "INV_Shirt_GuildTabard_01", "=q1=Contest Winner's Tabard", "=ds=#s7#" },
{ 22999, "INV_Shirt_GuildTabard_01", "=q1=Tabard of the Agent Dawn", "=ds=#s7#" },
{ 23192, "INV_Misc_Cape_18", "=q2=Tabard of the Scarlet Crusade", "=ds=#s7#" },
{ 23705, "INV_Misc_TabardPVP_02", "=q4=Tabard of Flame", "=ds=#s7#" },
{ 23709, "INV_Misc_TabardPVP_01", "=q4=Tabard of Frost", "=ds=#s7#" },
{ 5976, "INV_Shirt_GuildTabard_01", "Guild Tabard", "Vendor" },
{ 19160, "INV_Shirt_GuildTabard_01", "=q1=Contest Winner's Tabard", "Slow & Steady Challenge" },
{ 80187, "INV_Shirt_GuildTabard_01", "=q1=Contest Winner's Tabard", "Hardcore Challenge" },
{ 61369, "INV_Shirt_GuildTabard_01", "Ravenshire Tabard", "#m4#" },
{ 23192, "INV_Misc_Cape_18", "=q2=Tabard of the Scarlet Crusade", "Drop" },
{ 61368, "INV_Shirt_GuildTabard_01", "Greymane Tabard", "Drop" },
{ 22999, "INV_Shirt_GuildTabard_01", "=q1=Tabard of the Agent Dawn", "Vendor" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ 15197, "INV_Misc_TabardPVP_02", "=q1=Scout's Tabard", "=ds=#s7# =q6=#m6#" },
{ 15199, "INV_Misc_TabardPVP_04", "=q1=Stone Guard's Herald", "=ds=#s7# =q6=#m6#" },
{ 19505, "INV_Shirt_GuildTabard_01", "=q1=Warsong Battle Tabard", "=ds=#s7# =q6=#m6#" },
{ 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "=ds=#s7# =q6=#m6#" },
{ 19031, "INV_Shirt_GuildTabard_01", "=q1=Frostwolf Battle Tabard", "=ds=#s7# =q6=#m6#" },
{ 15197, "INV_Misc_TabardPVP_02", "=q1=Scout's Tabard", "PvP =q6=#m6#" },
{ 15199, "INV_Misc_TabardPVP_04", "=q1=Stone Guard's Herald", "PvP =q6=#m6#" },
{ 19505, "INV_Shirt_GuildTabard_01", "=q1=Warsong Battle Tabard", "PvP =q6=#m6#" },
{ 20131, "INV_Shirt_GuildTabard_01", "=q1=Battle Tabard of the Defilers", "PvP =q6=#m6#" },
{ 19031, "INV_Shirt_GuildTabard_01", "=q1=Frostwolf Battle Tabard", "PvP =q6=#m6#" },
};
WorldEpics1 = {
{ 0, "", "", "" },
@@ -1257,7 +1257,6 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 810, "INV_Hammer_11", "=q4=Hammer of the Northern Wind", "=ds=#h3#, #w6#", "" },
{ 809, "INV_Sword_28", "=q4=Bloodrazor", "=ds=#h3#, #w10#", "" },
{ 871, "INV_Axe_17", "=q4=Flurry Axe", "=ds=#h1#, #w1#", "" },
@@ -1344,4 +1343,60 @@ AtlasLoot_Data["AtlasLootSetItems"] = {
{ 21277,"Ability_Hunter_Pet_Gorilla","=q1=Tranquil Mechanical Yeti","=ds=#e15#" },
{ 12264,"INV_Box_PetCarrier_01","=q1=Worg Carrier","=ds=#e15#" },
};
-- Donation Tabards
DonationRewards1 = {
{ 23705, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Flame", "Donation Reward" },
{ 23709, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Frost", "Donation Reward" },
{ 81085, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Nature", "Donation Reward" },
{ 81082, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Brilliance", "Donation Reward" },
{ 81083, "INV_Shirt_GuildTabard_01", "=q4=Tabard of the Void", "Donation Reward" },
{ 81081, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Fury", "Donation Reward" },
{ 81084, "INV_Shirt_GuildTabard_01", "=q4=Tabard of the Arcane", "Donation Reward" },
{ 81204, "INV_Misc_TabardPVP_02", "=q4=Illidari Tabard", "Donation Reward" },
{ 81088, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Summer Skies", "Donation Reward" },
{ 81087, "INV_Shirt_GuildTabard_01", "=q4=Tabard of Summer Flames", "Donation Reward" },
{ 50092, "INV_Misc_TabardPVP_01", "=q4=Crimson Legion Tabard", "Donation Reward" },
{ 81203, "INV_Misc_TabardPVP_01", "=q4=Violet Eye Tabard", "Donation Reward" },
{ 50086, "INV_Misc_TabardPVP_01", "=q4=Stromgarde Tabard", "Donation Reward" },
{ 50376, "INV_Misc_TabardPVP_01", "=q4=Hillsbrad Tabard", "Donation Reward" },
{ 23710, "INV_Shirt_GuildTabard_01", "=q4=Darkmoon Faire Tabard", "Donation Reward" },
{ 80310, "inv_misc_tournaments_tabard_bloodelf", "=q4=Sin'dorei Tabard", "Donation Reward" },
{ 80314, "inv_misc_tabard_forsaken", "=q4=Undead Scourge Tabard", "Donation Reward" },
{ 50091, "INV_Shirt_GuildTabard_01", "=q4=Black Mageweave Tabard", "Donation Reward" },
{ 50044, "INV_Shirt_GuildTabard_01", "=q4=Gold Mageweave Tabard", "Donation Reward" },
{ 50038, "INV_Shirt_GuildTabard_01", "=q4=Red Mageweave Tabard", "Donation Reward" },
},
--Fashion
DonationRewards2 = {
{ 69146, "INV_Chest_Cloth_41", "=q4=Midnight Star Gown", "Donation Reward" },
{ 69147, "INV_Chest_Cloth_41", "=q4=Evening Star Gown", "Donation Reward" },
{ 69148, "INV_Chest_Cloth_41", "=q4=Twilight Star Gown", "Donation Reward" },
{ 69149, "INV_Chest_Cloth_41", "=q4=Dusk Star Gown", "Donation Reward" },
{ 69150, "INV_Chest_Cloth_41", "=q4=Dawn Star Gown", "Donation Reward" },
{ 69151, "INV_Chest_Cloth_41", "=q4=Morning Star Gown", "Donation Reward" },
{ 69119, "INV_Chest_Cloth_04", "=q4=Stormwind Archmage Robe", "Donation Reward" },
{ 69123, "INV_Chest_Cloth_04", "=q4=Dalaran Archmage Robe", "Donation Reward" },
{ 69120, "INV_Chest_Cloth_04", "=q4=Tirisfal Archmage Robe", "Donation Reward" },
{ 69124, "INV_Chest_Cloth_04", "=q4=Lordaeron Archmage Robe", "Donation Reward" },
{ 69118, "INV_Chest_Cloth_04", "=q4=Gilnean Archmage Robe", "Donation Reward" },
{ 69122, "INV_Chest_Cloth_04", "=q4=Kul Tiras Archmage Robe", "Donation Reward" },
{ 69121, "INV_Chest_Cloth_04", "=q4=Scarlet Archmage Robe", "Donation Reward" },
{ 69125, "INV_Chest_Cloth_04", "=q4=Theramore Archmage Robe", "Donation Reward" },
{ 69117, "INV_Chest_Cloth_04", "=q4=Jaina Proudmoore Robe", "Donation Reward" },
{ 69127, "INV_Chest_Cloth_31", "=q4=Robes of the Lotus Pond", "Donation Reward" },
{ 69131, "INV_Chest_Cloth_31", "=q4=Peach Garden Robes", "Donation Reward" },
{ 69128, "INV_Chest_Cloth_31", "=q4=Robes of Spring", "Donation Reward" },
{ 69129, "INV_Chest_Cloth_31", "=q4=Year of the Dragon Robes", "Donation Reward" },
{ 69130, "INV_Chest_Cloth_31", "=q4=Traditional New Year Robes", "Donation Reward" },
{ 69132, "INV_Chest_Cloth_31", "=q4=Blooming Wisteria Robes", "Donation Reward" },
{ 41091, "INV_Chest_Cloth_07", "=q4=Apparel of the Bells", "Donation Reward" },
{ 41092, "INV_Chest_Cloth_07", "=q4=Jingle Belle Frock", "Donation Reward" },
{ 83479, "INV_Chest_Cloth_09", "=q4=Romantinc Pink Corset Dress", "Donation Reward" },
{ 83478, "INV_Chest_Cloth_09", "=q4=Romantinc Red Corset Dress", "Donation Reward" },
{ 69152, "INV_Boots_Fabric_01", "=q4=Silver Star Sandals", "Donation Reward" },
{ 69101, "Spell_Shadow_Metamorphosis", "=q4=Blood Illidari Tatoos", "Donation Reward" },
{ 69103, "Spell_Shadow_Metamorphosis", "=q4=Nether Illidari Tatoos", "Donation Reward" },
{ 69100, "Spell_Shadow_Metamorphosis", "=q4=Illidari Tatoos", "Donation Reward" },
{ 69102, "Spell_Shadow_Metamorphosis", "=q4=Void Illidari Tatoos", "Donation Reward" },
},
};
+129 -6
View File
@@ -536,6 +536,9 @@ AtlasLoot_TableNames = {
["Tabards"] = { AL["Tabards"], "AtlasLootSetItems" },
["RarePets1"] = { AL["Rare Pets"], "AtlasLootSetItems" },
["RarePets2"] = { AL["Rare Pets"], "AtlasLootSetItems" },
--Turtle Wow
["DonationRewards1"] = {AL["Donation Rewards"], "AtlasLootSetItems" },
["DonationRewards2"] = {AL["Donation Rewards"], "AtlasLootSetItems" },
--Crafted Sets - Blacksmithing
["SteelPlate"] = { AL["Steel Plate"], "AtlasLootCrafting" },
["ImperialPlate"] = { AL["Imperial Plate"], "AtlasLootCrafting" },
@@ -730,6 +733,7 @@ AtlasLoot_TableNames = {
["MidsummerFestival"] = { AL["Midsummer Fire Festival"], "AtlasLootWorldEvents" },
["Noblegarden"] = { AL["Noblegarden"], "AtlasLootWorldEvents" },
["Valentineday"] = { AL["Love is in the Air"], "AtlasLootWorldEvents" },
["Winterviel"] = { AL["Feast of Winter Veil"], "AtlasLootWorldEvents" },
["Winterviel1"] = { AL["Feast of Winter Veil"], "AtlasLootWorldEvents" },
["Winterviel2"] = { AL["Feast of Winter Veil"], "AtlasLootWorldEvents" },
["WintervielSnowball"] = { "Snowball", "AtlasLootWorldEvents" },
@@ -779,8 +783,8 @@ AtlasLoot_TableNames = {
--Timbermaw Hold
["Timbermaw"] = { AL["Timbermaw Hold"], "AtlasLootRepItems" },
--Wardens of Time
["Warderns1"] = { AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"], "AtlasLootRepItems" },
["Warderns2"] = { AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"], "AtlasLootRepItems" },
["Wardens1"] = { AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"], "AtlasLootRepItems" },
["Wardens2"] = { AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"], "AtlasLootRepItems" },
--Wintersaber Trainers
["Wintersaber1"] = { AL["Wintersaber Trainers"], "AtlasLootRepItems" },
--Zandalar Tribe
@@ -815,6 +819,13 @@ AtlasLoot_TableNames = {
["AlchemyExpert1"] = { AL["Alchemy"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["AlchemyArtisan1"] = { AL["Alchemy"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["AlchemyArtisan2"] = { AL["Alchemy"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["AlchemyFlasks1"] = { AL["Flasks"], "AtlasLootCrafting" },
["AlchemyProtectionPots1"] = { AL["Protection Potions"], "AtlasLootCrafting" },
["AlchemyHealingAndMana1"] = { AL["Healing and Mana Potions"], "AtlasLootCrafting" },
["AlchemyTransmutes1"] = { AL["Transmutes"], "AtlasLootCrafting" },
["AlchemyDefensive1"] = { AL["Defensive Potions and Elixirs"], "AtlasLootCrafting" },
["AlchemyOffensive1"] = { AL["Offensive Potions and Elixirs"], "AtlasLootCrafting" },
["AlchemyOther1"] = { AL["Other"], "AtlasLootCrafting" },
--BlackSmithing
["SmithingApprentice1"] = { AL["Blacksmithing"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["SmithingJourneyman1"] = { AL["Blacksmithing"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -831,6 +842,23 @@ AtlasLoot_TableNames = {
["Axesmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"], "AtlasLootCrafting" },
["Hammersmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"], "AtlasLootCrafting" },
["Swordsmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Swordsmith"], "AtlasLootCrafting" },
["SmithingHelm1"] = { AL["Blacksmithing"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
["SmithingShoulders1"] = { AL["Blacksmithing"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
["SmithingChest1"] = { AL["Blacksmithing"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["SmithingChest2"] = { AL["Blacksmithing"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["SmithingBracers1"] = { AL["Blacksmithing"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
["SmithingGloves1"] = { AL["Blacksmithing"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["SmithingBelt1"] = { AL["Blacksmithing"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
["SmithingPants1"] = { AL["Blacksmithing"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
["SmithingBoots1"] = { AL["Blacksmithing"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["SmithingAxes1"] = { AL["Blacksmithing"] .. ": " .. AL["Axes"], "AtlasLootCrafting" },
["SmithingSwords1"] = { AL["Blacksmithing"] .. ": " .. AL["Swords"], "AtlasLootCrafting" },
["SmithingMaces1"] = { AL["Blacksmithing"] .. ": " .. AL["Maces"], "AtlasLootCrafting" },
["SmithingFist1"] = { AL["Blacksmithing"] .. ": " .. AL["Fist"], "AtlasLootCrafting" },
["SmithingDaggers1"] = { AL["Blacksmithing"] .. ": " .. AL["Daggers"], "AtlasLootCrafting" },
["SmithingMisc1"] = { AL["Blacksmithing"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["SmithingMisc2"] = { AL["Blacksmithing"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["SmithingBuckles1"] = { AL["Blacksmithing"] .. ": " .. AL["Belt Buckles"], "AtlasLootCrafting" },
--Enchanting
["EnchantingApprentice1"] = { AL["Enchanting"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["EnchantingJourneyman1"] = { AL["Enchanting"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -843,7 +871,7 @@ AtlasLoot_TableNames = {
["EnchantingCloak1"] = { AL["Enchanting"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
["EnchantingChest1"] = { AL["Enchanting"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["EnchantingBracer1"] = { AL["Enchanting"] .. ": " .. AL["Bracer"], "AtlasLootCrafting" },
["EnchantingGlove1"] = { AL["Enchanting"] .. ": " .. AL["Glove"], "AtlasLootCrafting" },
["EnchantingGlove1"] = { AL["Enchanting"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["EnchantingBoots1"] = { AL["Enchanting"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["Enchanting2HWeapon1"] = { AL["Enchanting"] .. ": " .. AL["2H Weapon"], "AtlasLootCrafting" },
["EnchantingWeapon1"] = { AL["Enchanting"] .. ": " .. AL["Weapon"], "AtlasLootCrafting" },
@@ -859,6 +887,13 @@ AtlasLoot_TableNames = {
["EngineeringArtisan2"] = { AL["Engineering"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["Gnomish1"] = { AL["Engineering"] .. ": " .. AL["Gnomish Engineering"], "AtlasLootCrafting" },
["Goblin1"] = { AL["Engineering"] .. ": " .. AL["Goblin Engineering"], "AtlasLootCrafting" },
["EngineeringEquipment1"] = { AL["Engineering"] .. ": " .. AL["Equipment"], "AtlasLootCrafting" },
["EngineeringTrinkets1"] = { AL["Engineering"] .. ": " .. AL["Trinkets"], "AtlasLootCrafting" },
["EngineeringExplosives1"] = { AL["Engineering"] .. ": " .. AL["Explosives"], "AtlasLootCrafting" },
["EngineeringParts1"] = { AL["Engineering"] .. ": " .. AL["Parts"], "AtlasLootCrafting" },
["EngineeringMisc1"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["EngineeringMisc2"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["EngineeringWeapons1"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Leatherworking
["LeatherApprentice1"] = { AL["Leatherworking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["LeatherJourneyman1"] = { AL["Leatherworking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -871,6 +906,19 @@ AtlasLoot_TableNames = {
["Dragonscale1"] = { AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"], "AtlasLootCrafting" },
["Elemental1"] = { AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"], "AtlasLootCrafting" },
["Tribal1"] = { AL["Leatherworking"] .. ": " .. AL["Tribal Leatherworking"], "AtlasLootCrafting" },
["LeatherHelm1"] = { AL["Leatherworking"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
["LeatherShoulders1"] = { AL["Leatherworking"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
["LeatherCloak1"] = { AL["Leatherworking"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
["LeatherChest1"] = { AL["Leatherworking"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["LeatherChest2"] = { AL["Leatherworking"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["LeatherBracers1"] = { AL["Leatherworking"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
["LeatherGloves1"] = { AL["Leatherworking"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["LeatherBelt1"] = { AL["Leatherworking"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
["LeatherPants1"] = { AL["Leatherworking"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
["LeatherPants2"] = { AL["Leatherworking"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
["LeatherBoots1"] = { AL["Leatherworking"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["LeatherBags1"] = { AL["Leatherworking"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
["LeatherMisc1"] = { AL["Leatherworking"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Mining
["Mining1"] = { AL["Mining"], "AtlasLootCrafting" },
["Mining2"] = { AL["Mining"], "AtlasLootCrafting" },
@@ -889,6 +937,19 @@ AtlasLoot_TableNames = {
["TailoringArtisan3"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan4"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan5"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringHelm1"] = { AL["Tailoring"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
["TailoringShoulders1"] = { AL["Tailoring"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
["TailoringCloak1"] = { AL["Tailoring"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
["TailoringChest1"] = { AL["Tailoring"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["TailoringChest2"] = { AL["Tailoring"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["TailoringBracers1"] = { AL["Tailoring"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
["TailoringGloves1"] = { AL["Tailoring"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["TailoringBelt1"] = { AL["Tailoring"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
["TailoringPants1"] = { AL["Tailoring"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
["TailoringBoots1"] = { AL["Tailoring"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["TailoringBags1"] = { AL["Tailoring"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
["TailoringShirt1"] = { AL["Tailoring"] .. ": " .. AL["Shirt"], "AtlasLootCrafting" },
["TailoringMisc1"] = { AL["Tailoring"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Cooking
["CookingApprentice1"] = { AL["Cooking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["CookingJourneyman1"] = { AL["Cooking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1002,9 +1063,11 @@ AtlasLoot_TableNames = {
["COOKINGMENU"] = { "dummy", "dummy" },
["FIRSTAIDMENU"] = { "dummy", "dummy" },
["SURVIVALMENU"] = { "dummy", "dummy" },
["WORLDBOSSMENU"] = { "dummy", "dummy" },
["WishList"] = { AL["WishList"], "AtlasLootCharDB" },
--If all else fails!
["EmptyInstance"] = { "AtlasLoot", "AtlasLootFallback" },
};
AtlasLoot_TableNamesBoss = {
@@ -1589,6 +1652,8 @@ AtlasLoot_TableNamesBoss = {
["WorldEpics1"] = { AL["World Epics"] .. " - " .. AL["Level 30-39"], "AtlasLootSetItems" },
["WorldEpics2"] = { AL["World Epics"] .. " - " .. AL["Level 40-49"], "AtlasLootSetItems" },
["WorldEpics3"] = { AL["World Epics"] .. " - " .. AL["Level 50-60"], "AtlasLootSetItems" },
["DonationRewards1"] = {AL["Donation Rewards"], "AtlasLootSetItems" },
["DonationRewards2"] = {AL["Donation Rewards"], "AtlasLootSetItems" },
},
--Crafted Sets - Blacksmithing
["Crafted Sets - Blacksmithing"] = {
@@ -1835,8 +1900,8 @@ AtlasLoot_TableNamesBoss = {
--Timbermaw Hold
["Timbermaw"] = { AL["Timbermaw Hold"], "AtlasLootRepItems" },
--Wardens of Time
["Warderns1"] = { AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"], "AtlasLootRepItems" },
["Warderns2"] = { AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"], "AtlasLootRepItems" },
["Wardens1"] = { AL["Wardens of Time"] .. ": " .. AL["Friendly"] .. " & " .. AL["Honored"], "AtlasLootRepItems" },
["Wardens2"] = { AL["Wardens of Time"] .. ": " .. AL["Revered"] .. " & " .. AL["Exalted"], "AtlasLootRepItems" },
--Wintersaber Trainers
["Wintersaber1"] = { AL["Wintersaber Trainers"], "AtlasLootRepItems" },
--Zandalar Tribe
@@ -1873,6 +1938,13 @@ AtlasLoot_TableNamesBoss = {
["AlchemyExpert1"] = { AL["Alchemy"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["AlchemyArtisan1"] = { AL["Alchemy"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["AlchemyArtisan2"] = { AL["Alchemy"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["AlchemyFlasks1"] = { AL["Flasks"], "AtlasLootCrafting" },
["AlchemyProtectionPots1"] = { AL["Protection Potions"], "AtlasLootCrafting" },
["AlchemyHealingAndMana1"] = { AL["Healing and Mana Potions"], "AtlasLootCrafting" },
["AlchemyTransmutes1"] = { AL["Transmutes"], "AtlasLootCrafting" },
["AlchemyDefensive1"] = { AL["Defensive Potions and Elixirs"], "AtlasLootCrafting" },
["AlchemyOffensive1"] = { AL["Offensive Potions and Elixirs"], "AtlasLootCrafting" },
["AlchemyOther1"] = { AL["Other"], "AtlasLootCrafting" },
--BlackSmithing
["SmithingApprentice1"] = { AL["Blacksmithing"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["SmithingJourneyman1"] = { AL["Blacksmithing"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1889,6 +1961,23 @@ AtlasLoot_TableNamesBoss = {
["Axesmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Axesmith"], "AtlasLootCrafting" },
["Hammersmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Hammersmith"], "AtlasLootCrafting" },
["Swordsmith1"] = { AL["Blacksmithing"] .. ": " .. AL["Master Swordsmith"], "AtlasLootCrafting" },
["SmithingHelm1"] = { AL["Blacksmithing"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
["SmithingShoulders1"] = { AL["Blacksmithing"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
["SmithingChest1"] = { AL["Blacksmithing"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["SmithingChest2"] = { AL["Blacksmithing"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["SmithingBracers1"] = { AL["Blacksmithing"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
["SmithingGloves1"] = { AL["Blacksmithing"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["SmithingBelt1"] = { AL["Blacksmithing"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
["SmithingPants1"] = { AL["Blacksmithing"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
["SmithingBoots1"] = { AL["Blacksmithing"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["SmithingAxes1"] = { AL["Blacksmithing"] .. ": " .. AL["Axes"], "AtlasLootCrafting" },
["SmithingSwords1"] = { AL["Blacksmithing"] .. ": " .. AL["Swords"], "AtlasLootCrafting" },
["SmithingMaces1"] = { AL["Blacksmithing"] .. ": " .. AL["Maces"], "AtlasLootCrafting" },
["SmithingFist1"] = { AL["Blacksmithing"] .. ": " .. AL["Fist"], "AtlasLootCrafting" },
["SmithingDaggers1"] = { AL["Blacksmithing"] .. ": " .. AL["Daggers"], "AtlasLootCrafting" },
["SmithingMisc1"] = { AL["Blacksmithing"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["SmithingMisc2"] = { AL["Blacksmithing"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["SmithingBuckles1"] = { AL["Blacksmithing"] .. ": " .. AL["Belt Buckles"], "AtlasLootCrafting" },
--Enchanting
["EnchantingApprentice1"] = { AL["Enchanting"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["EnchantingJourneyman1"] = { AL["Enchanting"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1901,7 +1990,7 @@ AtlasLoot_TableNamesBoss = {
["EnchantingCloak1"] = { AL["Enchanting"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
["EnchantingChest1"] = { AL["Enchanting"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["EnchantingBracer1"] = { AL["Enchanting"] .. ": " .. AL["Bracer"], "AtlasLootCrafting" },
["EnchantingGlove1"] = { AL["Enchanting"] .. ": " .. AL["Glove"], "AtlasLootCrafting" },
["EnchantingGlove1"] = { AL["Enchanting"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["EnchantingBoots1"] = { AL["Enchanting"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["Enchanting2HWeapon1"] = { AL["Enchanting"] .. ": " .. AL["2H Weapon"], "AtlasLootCrafting" },
["EnchantingWeapon1"] = { AL["Enchanting"] .. ": " .. AL["Weapon"], "AtlasLootCrafting" },
@@ -1915,8 +2004,16 @@ AtlasLoot_TableNamesBoss = {
["EngineeringExpert2"] = { AL["Engineering"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["EngineeringArtisan1"] = { AL["Engineering"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["EngineeringArtisan2"] = { AL["Engineering"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["EngineeringEquipment1"] = { AL["Engineering"] .. ": " .. AL["Equipment"], "AtlasLootCrafting" },
["EngineeringTrinkets1"] = { AL["Engineering"] .. ": " .. AL["Trinkets"], "AtlasLootCrafting" },
["EngineeringExplosives1"] = { AL["Engineering"] .. ": " .. AL["Explosives"], "AtlasLootCrafting" },
["EngineeringParts1"] = { AL["Engineering"] .. ": " .. AL["Parts"], "AtlasLootCrafting" },
["EngineeringMisc1"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["EngineeringMisc2"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["EngineeringWeapons1"] = { AL["Engineering"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["Gnomish1"] = { AL["Engineering"] .. ": " .. AL["Gnomish Engineering"], "AtlasLootCrafting" },
["Goblin1"] = { AL["Engineering"] .. ": " .. AL["Goblin Engineering"], "AtlasLootCrafting" },
--Leatherworking
["LeatherApprentice1"] = { AL["Leatherworking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["LeatherJourneyman1"] = { AL["Leatherworking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1929,6 +2026,19 @@ AtlasLoot_TableNamesBoss = {
["Dragonscale1"] = { AL["Leatherworking"] .. ": " .. AL["Dragonscale Leatherworking"], "AtlasLootCrafting" },
["Elemental1"] = { AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"], "AtlasLootCrafting" },
["Tribal1"] = { AL["Leatherworking"] .. ": " .. AL["Tribal Leatherworking"], "AtlasLootCrafting" },
["LeatherHelm1"] = { AL["Leatherworking"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
["LeatherShoulders1"] = { AL["Leatherworking"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
["LeatherCloak1"] = { AL["Leatherworking"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
["LeatherChest1"] = { AL["Leatherworking"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["LeatherChest2"] = { AL["Leatherworking"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["LeatherBracers1"] = { AL["Leatherworking"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
["LeatherGloves1"] = { AL["Leatherworking"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["LeatherBelt1"] = { AL["Leatherworking"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
["LeatherPants1"] = { AL["Leatherworking"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
["LeatherPants2"] = { AL["Leatherworking"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
["LeatherBoots1"] = { AL["Leatherworking"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["LeatherBags1"] = { AL["Leatherworking"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
["LeatherMisc1"] = { AL["Leatherworking"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Mining
["Mining1"] = { AL["Mining"], "AtlasLootCrafting" },
["Mining2"] = { AL["Mining"], "AtlasLootCrafting" },
@@ -1947,6 +2057,19 @@ AtlasLoot_TableNamesBoss = {
["TailoringArtisan3"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan4"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringArtisan5"] = { AL["Tailoring"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["TailoringHelm1"] = { AL["Tailoring"] .. ": " .. AL["Helm"], "AtlasLootCrafting" },
["TailoringShoulders1"] = { AL["Tailoring"] .. ": " .. AL["Shoulders"], "AtlasLootCrafting" },
["TailoringCloak1"] = { AL["Tailoring"] .. ": " .. AL["Cloak"], "AtlasLootCrafting" },
["TailoringChest1"] = { AL["Tailoring"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["TailoringChest2"] = { AL["Tailoring"] .. ": " .. AL["Chest"], "AtlasLootCrafting" },
["TailoringBracers1"] = { AL["Tailoring"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
["TailoringGloves1"] = { AL["Tailoring"] .. ": " .. AL["Gloves"], "AtlasLootCrafting" },
["TailoringBelt1"] = { AL["Tailoring"] .. ": " .. AL["Belt"], "AtlasLootCrafting" },
["TailoringPants1"] = { AL["Tailoring"] .. ": " .. AL["Pants"], "AtlasLootCrafting" },
["TailoringBoots1"] = { AL["Tailoring"] .. ": " .. AL["Boots"], "AtlasLootCrafting" },
["TailoringBags1"] = { AL["Tailoring"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
["TailoringShirt1"] = { AL["Tailoring"] .. ": " .. AL["Shirt"], "AtlasLootCrafting" },
["TailoringMisc1"] = { AL["Tailoring"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Cooking
["CookingApprentice1"] = { AL["Cooking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["CookingJourneyman1"] = { AL["Cooking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
+16 -13
View File
@@ -11,6 +11,8 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20656, "INV_Boots_Chain_09", "=q2=Abyssal Mail Sabatons", "=ds=#s12#, #a3# =q2=#e31#", "12.89%" },
{ 20513, "INV_Jewelry_Talisman_05", "=q2=Abyssal Crest", "=ds=#m3#", "100%" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x81#", "=q1=#j16#" },
{ 20654, "INV_Staff_11", "=q3=Amethyst War Staff", "=ds=#w9#", "2.38%" },
{ 20653, "INV_Gauntlets_29", "=q2=Abyssal Plate Gauntlets", "=ds=#s9#, #a4# =q2=#e31#", "13.61%" },
@@ -18,14 +20,14 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20513, "INV_Jewelry_Talisman_05", "=q2=Abyssal Crest", "=ds=#m3#", "100%" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x83#", "=q1=#j18#" },
{ 20660, "INV_Spear_06", "=q3=Stonecutting Glaive", "=ds=#w7#", "2.22%" },
{ 20659, "INV_Gauntlets_32", "=q2=Abyssal Mail Handguards", "=ds=#s9#, #a3# =q2=#e31#", "12.64%" },
{ 20658, "INV_Boots_07", "=q2=Abyssal Leather Boots", "=ds=#s12#, #a2# =q2=#e31#", "13.16%" },
{ 20513, "INV_Jewelry_Talisman_05", "=q2=Abyssal Crest", "=ds=#m3#", "100%" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x82#", "=q1=#j17#" },
{ 20663, "INV_Weapon_Bow_10", "=q3=Deep Strike Bow", "=ds=#w2#", "2.55%" },
{ 20661, "INV_Gauntlets_05", "=q2=Abyssal Leather Gloves", "=ds=#s9#, #a2# =q2=#e31#", "13.16%" },
@@ -40,6 +42,7 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20664, "INV_Belt_06", "=q2=Abyssal Cloth Sash", "=ds=#s10#, #a1# =q2=#e31#", "27.08%" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x87#", "=q1=#j16#" },
{ 20668, "INV_Pants_Mail_16", "=q3=Abyssal Mail Legguards", "=ds=#s11#, #a3# =q2=#e31#", "22.40%" },
{ 20669, "INV_Sword_35", "=q3=Darkstone Claymore", "=ds=#h2#, #w10#", "29.62%" },
@@ -47,7 +50,6 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20667, "INV_Belt_30", "=q2=Abyssal Leather Belt", "=ds=#s10#, #a2# =q2=#e31#", "29.04%" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x84#", "=q1=#j18#" },
{ 20674, "INV_Pants_Cloth_04", "=q3=Abyssal Cloth Pants", "=ds=#s11#, #a1# =q2=#e31#", "21.83%" },
{ 20675, "INV_Axe_13", "=q3=Soulrender", "=ds=#h1#, #w1#", "29.73%" },
@@ -55,6 +57,7 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 20673, "INV_Belt_26", "=q2=Abyssal Plate Girdle", "=ds=#s10#, #a4# =q2=#e31#", "27.11%" },
{ 0,"","","" },
{ 0,"","","" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x85#", "=q1=#j17#" },
{ 20671, "INV_Pants_Plate_12", "=q3=Abyssal Plate Legplates", "=ds=#s11#, #a4# =q2=#e31#", "22.63%" },
{ 20672, "INV_Wand_12", "=q3=Sparkling Crystal Wand", "=ds=#w12#", "28.90%" },
@@ -94,14 +97,14 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 83555, "INV_Misc_StoneTablet_01", "=q4=Abyssal Slate", "=ds=#m33#", "40%" },
};
ElementalInvasion = {
{ 0, "INV_Box_01", "=q6=#x92#", "=q1=#j15#, Un'goro Crater" },
{ 0, "Spell_Fire_Elemental_Totem", "=q6=#x92#", "=q1=#j15#, Un'goro Crater" },
{ 83550, "Spell_Fire_Fire", "=q4=Primordial Flame", "=ds=#m33#", "100%" },
{ 18671, "INV_Mace_08", "=q3=Baron Charr's Sceptre", "=ds=#h3#, #w6#", "21%" },
{ 80850, "INV_Crown_01", "=q3=Circlet of the Living Volcano", "=ds=#s1#, #a1#", "15%" },
{ 18672, "INV_Misc_Orb_05", "=q2=Elemental Ember", "=ds=#s15#", "50%" },
{ 80849, "INV_Jewelry_Necklace_02", "=q2=Living Ember Pendant", "=ds=#s2#", "15%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x94#", "=q1=#j16#, Winterspring" },
{ 0, "Spell_Fire_Elemental_Totem", "=q6=#x94#", "=q1=#j16#, Winterspring" },
{ 83552, "INV_Stone_01", "=q4=Unmelting Ice", "=ds=#m33#", "100%" },
{ 18678, "INV_Jewelry_Necklace_03", "=q3=Tempestria's Frozen Necklace", "=ds=#s2#", "30%" },
{ 80843, "INV_Boots_Cloth_03", "=q3=Tideturner Boots", "=ds=#s12#, #a1#", "15%" },
@@ -109,14 +112,14 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 80844, "INV_Misc_Gem_Sapphire_01", "=q2=Tempestria's Frozen Heart", "=ds=#s15#", "15%" },
{ 21548, "INV_Scroll_03", "=q3=Pattern: Stormshroud Gloves", "=ds=#p7# #m14#", "20%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x93#", "=q1=#j17#, Azshara" },
{ 0, "Spell_Fire_Elemental_Totem", "=q6=#x93#", "=q1=#j17#, Azshara" },
{ 83551, "INV_Stone_14", "=q4=Evershifting Stone", "=ds=#m33#", "100%" },
{ 18673, "INV_Shield_03", "=q3=Avalanchion's Stony Hide", "=ds=#w8#", "30%" },
{ 80851, "INV_Bracer_06", "=q3=Earthclad Bracers", "=ds=#s8#, #a4#", "15%" },
{ 18674, "INV_Jewelry_Ring_14", "=q2=Hardened Stone Band", "=ds=#s13#", "50%" },
{ 80852, "INV_Jewelry_Necklace_06", "=q2=Earthshard Necklace", "=ds=#s2#", "15%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=#x95#", "=q1=#j18#, Silithus" },
{ 0, "Spell_Fire_Elemental_Totem", "=q6=#x95#", "=q1=#j18#, Silithus" },
{ 83553, "Spell_Nature_Cyclone", "=q4=Unyielding Gust", "=ds=#m33#", "100%" },
{ 18676, "INV_Belt_31", "=q3=Sash of the Windreaver", "=ds=#s10#, #a3#", "25%" },
{ 80853, "INV_Jewelry_Necklace_07", "=q3=Thunderstruck Talisman", "=ds=#s2#", "15%" },
@@ -386,32 +389,32 @@ AtlasLoot_Data["AtlasLootWorldEvents"] = {
{ 23078, "INV_Gauntlets_29", "=q3=Gauntlets of Undead Slaying", "=ds=#s9#, #a4#", "" },
};
ScourgeInvasionEvent2 = {
{ 0, "INV_Box_01", "=q6=Balzaphon", "=q1=Stratholme" },
{ 0, "INV_Jewelry_Talisman_13", "=q6=Balzaphon", "=q1=Stratholme" },
{ 23126, "INV_Belt_13", "=q3=Waistband of Balzaphon", "=ds=#s10#, #a1#", "27.38%" },
{ 23125, "INV_Belt_18", "=q3=Chains of the Lich", "=ds=#s2#", "19.89%" },
{ 23124, "INV_Staff_07", "=q3=Staff of Balzaphon", "=ds=#w9#", "24.74%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=Lord Blackwood", "=q1=Scholomance" },
{ 0, "INV_Jewelry_Talisman_13", "=q6=Lord Blackwood", "=q1=Scholomance" },
{ 23132, "INV_Sword_05", "=q3=Lord Blackwood's Blade", "=ds=#h1#, #w10#", "12.83%" };
{ 23156, "INV_Misc_Bone_10", "=q3=Blackwood's Thigh", "=ds=#s15#", "45.21%" };
{ 23139, "INV_Shield_02", "=q3=Lord Blackwood's Buckler", "=ds=#w8#", "38.75%" };
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=Revanchion", "=q1=Dire Maul" },
{ 0, "INV_Jewelry_Talisman_13", "=q6=Revanchion", "=q1=Dire Maul" },
{ 23127, "INV_Misc_Cape_02", "=q3=Cloak of Revanchion", "=ds=#s4#", "38.49%" },
{ 23129, "INV_Bracer_13", "=q3=Bracers of Mending", "=ds=#s8#, #a1#", "39.61%" },
{ 23128, "INV_Gauntlets_16", "=q3=The Shadow's Grasp", "=ds=#s9#, #a1#", "21.81%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=Scorn", "=q1=Scarlet Monastery - Graveyard" },
{ 0, "INV_Jewelry_Talisman_13", "=q6=Scorn", "=q1=Scarlet Monastery - Graveyard" },
{ 23169, "INV_Jewelry_Necklace_03", "=q3=Scorn's Icy Choker", "=ds=#s2#", "27.49%" },
{ 23170, "INV_Gauntlets_11", "=q3=The Frozen Clutch", "=ds=#s9#, #a3#", "56.15%" },
{ 23168, "INV_Weapon_ShortBlade_07", "=q3=Scorn's Focal Dagger", "=ds=#h1#, #w4#", "16.36%" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=Sever", "=q1=Shadowfang Keep" },
{ 0, "INV_Jewelry_Talisman_13", "=q6=Sever", "=q1=Shadowfang Keep" },
{ 23173, "INV_Pants_06", "=q3=Abomination Skin Leggings", "=ds=#s11#, #a1#", "76.87%" },
{ 23171,"INV_Axe_03","=q3=The Axe of Severing","=ds=#h2#, #w1#", "22.94%" },
{ 0,"","","" },
{ 0,"","","" },
{ 0, "INV_Box_01", "=q6=Lady Falther'ess", "=q1=Razorfen Downs" },
{ 0, "INV_Jewelry_Talisman_13", "=q6=Lady Falther'ess", "=q1=Razorfen Downs" },
{ 23178, "INV_Misc_Cape_17", "=q3=Mantle of Lady Falther'ess", "=ds=#s4#", "61.24%" },
{ 23177, "INV_Wand_12", "=q3=Lady Falther'ess' Finger", "=ds=#w12#", "38.17%" },
};