From 901703a2da8e15b67395d520cd952d02aa73997e Mon Sep 17 00:00:00 2001 From: Lexie <6937574+Lexiebean@users.noreply.github.com> Date: Tue, 28 Feb 2023 11:39:57 +1100 Subject: [PATCH] 1.0.8 Update * Fixed MC Trash Loot Layout * Added level 10 green weapons to High Elves and Raventusk Trolls * Added missing item to Razorlash, Mara * Added Dalaran Quartermaster * Added Robe of Sacrifice * Added new loot to the Dragons of Nightmare * Fixed Mageweave Bag pattern * Added missing Red Dragonscale to Leatherworking * Added Stormscale Leggings * Added Dragonscale Leggings * Added Verdant Dreamer's Breastplate --- AtlasLoot.toc | 2 +- Core/AtlasLoot.lua | 4 +- Core/ButtonRegistry.lua | 10 +++ Core/Crafting.lua | 14 +++- Core/Spells.lua | 126 +++++++++++++++++++++++++++++++- Core/TextParsing.lua | 1 + Crafting/crafting.en.lua | 17 +++++ Factions/factions.lua | 26 ++++++- Instances/instances.en.lua | 11 +-- TableRegister/loottables.en.lua | 2 + WorldBosses/worldbosses.en.lua | 116 +++++++++++++++-------------- 11 files changed, 258 insertions(+), 71 deletions(-) diff --git a/AtlasLoot.toc b/AtlasLoot.toc index 4422781..6959899 100644 --- a/AtlasLoot.toc +++ b/AtlasLoot.toc @@ -2,7 +2,7 @@ ## Title: AtlasLoot TW Edition ## Notes: Shows the possible loot from the bosses ## Author: Daviesh, Pompa (Turtle WoW World Bosses), Xerron (Turtle WoW World Bosses), Gurky (Turtle WoW 1.16/1.16.1 Dungeons), |cffbe5effLexie|r -## Version: 1.0.7 +## Version: 1.0.8 ## SavedVariables: AtlasLoot_updateavailable ## SavedVariablesPerCharacter: AtlasLootCharDB ## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, DewdropLib, Ace2, EquipCompare, EQCompare diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua index 1800a39..d8b1420 100644 --- a/Core/AtlasLoot.lua +++ b/Core/AtlasLoot.lua @@ -69,7 +69,7 @@ local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot"); --Establish version number and compatible version of Atlas local VERSION_MAJOR = "1"; local VERSION_MINOR = "0"; -local VERSION_BOSSES = "7"; +local VERSION_BOSSES = "8"; 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"; @@ -2912,6 +2912,7 @@ AtlasLoot_DewDropDown_SubTables = { { AL["Undercity"], "Undercity" }, { AL["Orgrimmar"], "Orgrimmar" }, { AL["Thunder Bluff"], "ThunderBluff" }, + { AL["Dalaran"], "Dalaran" }, }, ["BoEWorldEpics"] = { { AtlasLoot_TableNames["WorldEpics3"][1], "WorldEpics3" }, @@ -2933,6 +2934,7 @@ AtlasLoot_DewDropDown_SubTables = { { AL["Devilsaur Armor"], "DevilsaurArmor" }, { AL["Blood Tiger Harness"], "BloodTigerH" }, { AL["Primal Batskin"], "PrimalBatskin" }, + { AL["Red Dragon Mail"], "RedDragonM" }, { AL["Green Dragon Mail"], "GreenDragonM" }, { AL["Blue Dragon Mail"], "BlueDragonM" }, { AL["Black Dragon Mail"], "BlackDragonM" }, diff --git a/Core/ButtonRegistry.lua b/Core/ButtonRegistry.lua index 46d8023..d6cf0d1 100644 --- a/Core/ButtonRegistry.lua +++ b/Core/ButtonRegistry.lua @@ -150,6 +150,11 @@ AtlasLoot_ButtonRegistry = { Title = AL["Thunder Bluff"]; Back_Page = "REPMENU"; Back_Title = AL["Factions"]; + }; + ["Dalaran"] = { + Title = AL["Dalaran"]; + Back_Page = "REPMENU"; + Back_Title = AL["Factions"]; }; ["Helf"] = { Title = AL["Silvermoon Remnant"]; @@ -989,6 +994,11 @@ AtlasLoot_ButtonRegistry = { Back_Page = "CRAFTSET"; Back_Title = AL["Crafted Sets"]; }; + ["RedDragonM"] = { + Title = AL["Red Dragon Mail"]; + Back_Page = "CRAFTSET"; + Back_Title = AL["Crafted Sets"]; + }; ["GreenDragonM"] = { Title = AL["Green Dragon Mail"]; Back_Page = "CRAFTSET"; diff --git a/Core/Crafting.lua b/Core/Crafting.lua index 0fe12c3..b67eba1 100644 --- a/Core/Crafting.lua +++ b/Core/Crafting.lua @@ -242,10 +242,16 @@ function AtlasLootCraftedSetMenu() AtlasLootMenuItem_24.lootpage="PrimalBatskin"; AtlasLootMenuItem_24:Show(); --Leatherworking Mail Header - AtlasLootMenuItem_26_Name:SetText(RED..AL["Leatherworking"]); - AtlasLootMenuItem_26_Extra:SetText(WHITE..AL["Mail"]); - AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Chest_Chain_12"); - AtlasLootMenuItem_26.isheader = true; + 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:Show(); --Green Dragon Mail AtlasLootMenuItem_27_Name:SetText(AL["Green Dragon Mail"]); diff --git a/Core/Spells.lua b/Core/Spells.lua index 64037bd..b28f1e1 100644 --- a/Core/Spells.lua +++ b/Core/Spells.lua @@ -4273,7 +4273,7 @@ GetSpellInfoVanillaDB = { ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, - [2] = {8343, 2}, + [2] = {4291, 2}, }, }, [12075] = { @@ -5477,7 +5477,7 @@ GetSpellInfoVanillaDB = { [6] = {14341, 2}, }, }, - [18456] = { + [18456] = { ["name"] = "Tailoring: Truefaith Vestments", ["requires"] = "", ["tools"] = "", @@ -5494,6 +5494,25 @@ GetSpellInfoVanillaDB = { [5] = {9210, 10}, [6] = {14341, 2}, }, + }, + [46656] = { + ["name"] = "Tailoring: Robe of Sacrifice", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 65003, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {14048, 12}, + [2] = {14256, 20}, + [3] = {12662, 20}, + [4] = {10285, 8}, + [5] = {7971, 4}, + [6] = {14341, 1}, + [7] = {20520, 10}, + }, }, [23665] = { ["name"] = "Tailoring: Argent Shoulders", @@ -17624,6 +17643,109 @@ GetSpellInfoVanillaDB = { [5] = {14341}, }, }, + [46655] = { + ["name"] = "Leatherworking: Red Dragonscale Boots", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 65002, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {8170, 30}, + [2] = {15414, 25}, + [3] = {12810, 2}, + [4] = {12803, 4}, + [5] = {14341, 2}, + }, + }, + [46659] = { + ["name"] = "Leatherworking: Stormscale Leggings", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 65006, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {8170, 30}, + [2] = {12810, 16}, + [3] = {20295}, + [4] = {15407, 4}, + [5] = {15415, 40}, + [6] = {7082, 12}, + }, + }, + [46695] = { + ["name"] = "Leatherworking: Dragonscale Leggings", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 10, + ["text"] = "", + ["craftItem"] = 65019, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {4304, 30}, + [2] = {8165, 25}, + [3] = {8343, 4}, + [4] = {8172, 3}, + }, + }, + [47035] = { + ["name"] = "Leatherworking: Verdant Dreamer's Breastplate", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 10, + ["text"] = "", + ["craftItem"] = 65021 + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {8211}, + [2] = {12810, 16}, + [3] = {20002, 10}, + [4] = {12803, 20}, + [5] = {15407, 4}, + [6] = {14227, 4}, + }, + }, + [46654] = { + ["name"] = "Leatherworking: Red Dragonscale Shoulders", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 65001, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {8170, 30}, + [2] = {15414, 30}, + [3] = {12810, 3}, + [4] = {12803, 4}, + [5] = {14341, 1}, + }, + }, + [46653] = { + ["name"] = "Leatherworking: Red Dragonscale Leggings", + ["requires"] = "", + ["tools"] = "", + ["castTime"] = 60, + ["text"] = "", + ["craftItem"] = 65000, + ["craftQuantityMin"] = "", + ["craftQuantityMax"] = "", + ["reagents"] = { + [1] = {8170, 35}, + [2] = {15414, 40}, + [3] = {12810, 4}, + [4] = {12803, 6}, + [5] = {14341, 2}, + }, + }, [24654] = { ["name"] = "Leatherworking: Blue Dragonscale Leggings", ["requires"] = "", diff --git a/Core/TextParsing.lua b/Core/TextParsing.lua index 5ad535d..2c57e3e 100644 --- a/Core/TextParsing.lua +++ b/Core/TextParsing.lua @@ -334,6 +334,7 @@ function AtlasLoot_FixText(text) text = gsub(text, "#craftlwm1#", AL["Green Dragon Mail"]); text = gsub(text, "#craftlwm2#", AL["Blue Dragon Mail"]); text = gsub(text, "#craftlwm3#", AL["Black Dragon Mail"]); + text = gsub(text, "#craftlwm4#", AL["Red Dragon Mail"]); -- Chests, boxes text = gsub(text, "#cb1#", AL["Doan's Strongbox"]); diff --git a/Crafting/crafting.en.lua b/Crafting/crafting.en.lua index 8c63d3f..5966ad7 100644 --- a/Crafting/crafting.en.lua +++ b/Crafting/crafting.en.lua @@ -223,6 +223,16 @@ AtlasLoot_Data["AtlasLootCrafting"] = { --- Leatherworking Mail Sets --- -------------------------------- + RedDragonM = { + { 0, "", "", "" }, + { 0, "INV_Box_01", "=q6=#craftlwm4#", "=q1=#j6#" }, + { 0, "", "", "" }, + { 65001, "inv_shoulder_23", "=q3=Red Dragonscale Shoulders", "=ds=#s3#, #a3#" }, + { 15047, "inv_chest_chain_06", "=q3=Red Dragonscale Breastplate", "=ds=#s5#, #a3#" }, + { 65000, "inv_pants_mail_09", "=q3=Red Dragonscale Leggings", "=ds=#s11#, #a3#" }, + { 65002, "inv_boots_chain_13", "=q3=Red Dragonscale Boots", "=ds=#s9#, #a3#" }, + }; + GreenDragonM = { { 0, "", "", "" }, { 0, "INV_Box_01", "=q6=#craftlwm1#", "=q1=#j8#" }, @@ -1077,6 +1087,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { Dragonscale1 = { { "s10619", "inv_gauntlets_10", "=q3=Dragonscale Gauntlets", "=ds=#sr# =so1=225 =so2=245 =so3=255 =so4=265" }, + { "s46695", "inv_pants_02", "=q3=Dragonscale Leggings", "=ds=#sr# =so1=245 =so2=245 =so3=245 =so4=245" }, { "s10650", "inv_chest_chain_07", "=q3=Dragonscale Breastplate", "=ds=#sr# =so1=255 =so2=275 =so3=285 =so4=295" }, { "s19050", "inv_chest_chain_06", "=q3=Green Dragonscale Breastplate", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" }, { "s19060", "inv_pants_05", "=q3=Green Dragonscale Leggings", "=ds=#sr# =so1=270 =so2=290 =so3=300 =so4=310" }, @@ -1084,6 +1095,9 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s19077", "inv_chest_chain_04", "=q3=Blue Dragonscale Breastplate", "=ds=#sr# =so1=285 =so2=305 =so3=315 =so4=325" }, { "s19085", "inv_chest_plate06", "=q3=Black Dragonscale Breastplate", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" }, { "s19089", "inv_shoulder_18", "=q3=Blue Dragonscale Shoulders", "=ds=#sr# =so1=295 =so2=315 =so3=325 =so4=335" }, + { "s46655", "inv_boots_chain_13", "=q4=Red Dragonscale Boots", "=ds=#sr# =so1=295 =so2=300 =so3=300 =so4=300" }, + { "s46653", "inv_pants_mail_09", "=q4=Red Dragonscale Leggings", "=ds=#sr# =so1=295 =so2=300 =so3=300 =so4=300" }, + { "s46654", "inv_shoulder_23", "=q4=Red Dragonscale Shoulders", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, { "s19107", "inv_pants_03", "=q3=Black Dragonscale Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s24654", "inv_pants_mail_15", "=q3=Blue Dragonscale Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s19094", "inv_shoulder_01", "=q3=Black Dragonscale Shoulders", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, @@ -1092,6 +1106,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s22926", "inv_misc_cape_02", "=q4=Chromatic Cloak", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s23708", "inv_gauntlets_22", "=q4=Chromatic Gauntlets", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s24703", "inv_chest_plate08", "=q4=Dreamscale Breastplate", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s46659", "inv_pants_mail_15", "=q4=Stormscale Leggings", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, }; Elemental1 = { @@ -1136,6 +1151,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s19097", "inv_pants_wolf", "=q3=Devilsaur Leggings", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s23709", "inv_belt_24", "=q4=Corehound Belt", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, { "s22927", "inv_misc_cape_01", "=q4=Hide of the Wild", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" }, + { "s47035", "inv_chest_leather_08", "=q4=Verdant Dreamer's Breastplate", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, }; --------------- @@ -1411,6 +1427,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = { { "s18457", "inv_chest_cloth_38", "=q4=Robe of the Archmage", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s18458", "inv_chest_cloth_51", "=q4=Robe of the Void", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, { "s18456", "inv_chest_cloth_31", "=q4=Truefaith Vestments", "=ds=#sr# =so1=300 =so2=315 =so3=330 =so4=345" }, + { "s46656", "inv_chest_cloth_09", "=q4=Robe of Sacrifice", "=ds=#sr# =so1=300 =so2=300 =so3=300 =so4=300" }, }; ----------------- diff --git a/Factions/factions.lua b/Factions/factions.lua index b568546..287508a 100644 --- a/Factions/factions.lua +++ b/Factions/factions.lua @@ -493,6 +493,12 @@ AtlasLoot_Data["AtlasLootRepItems"] = { Helf3 = { { 0, "INV_Staff_13", "=q2=Weapons", "" }, + { 80502, "", "=q1=", "" }, + { 80504, "", "=q1=", "" }, + { 80501, "", "=q1=", "" }, + { 80500, "", "=q1=", "" }, + { 80503, "", "=q1=", "" }, + { 0, "", "", "" }, { 80529, "", "=q2=", "" }, { 80530, "", "=q2=", "" }, { 80531, "", "=q2=", "" }, @@ -507,7 +513,6 @@ AtlasLoot_Data["AtlasLootRepItems"] = { { 80540, "", "=q2=", "" }, { 80541, "", "=q2=", "" }, { 80542, "", "=q2=", "" }, - { 0, "", "", "" }, { 80543, "", "=q2=", "" }, { 80544, "", "=q2=", "" }, { 80545, "", "=q2=", "" }, @@ -568,6 +573,12 @@ AtlasLoot_Data["AtlasLootRepItems"] = { }; Revantusk3 = { { 0, "INV_Misc_Head_Troll_01", "=q2=Weapons", "" }, + { 80602, "", "=q1=", "" }, + { 80601, "", "=q1=", "" }, + { 80600, "", "=q1=", "" }, + { 80603, "", "=q1=", "" }, + { 80604, "", "=q1=", "" }, + { 0, "", "", "" }, { 80629, "", "=q2=", "" }, { 80630, "", "=q2=", "" }, { 80631, "", "=q2=", "" }, @@ -582,7 +593,6 @@ AtlasLoot_Data["AtlasLootRepItems"] = { { 80640, "", "=q2=", "" }, { 80641, "", "=q2=", "" }, { 80642, "", "=q2=", "" }, - { 0, "", "", "" }, { 80643, "", "=q2=", "" }, { 80644, "", "=q2=", "" }, { 80645, "", "=q2=", "" }, @@ -685,4 +695,16 @@ AtlasLoot_Data["AtlasLootRepItems"] = { { 81237, "", "=q2=", "" }, { 80308, "", "=q2=", "" }, }; + Dalaran = { + { 0, "INV_Staff_13", "=q2=Revered", "" }, + { 60728, "", "=q2=", "" }, + { 60730, "", "=q2=", "" }, + { 60727, "", "=q2=", "" }, + { 60729, "", "=q2=", "" }, + { 60729, "", "=q2=", "" }, + { 0, "", "", "" }, + { 0, "INV_Staff_13", "=q3=Exalted", "" }, + { 60724, "", "=q2=", "" }, + { 60725, "", "=q2=", "" }, + }; }; diff --git a/Instances/instances.en.lua b/Instances/instances.en.lua index 6ca3b64..437ae83 100644 --- a/Instances/instances.en.lua +++ b/Instances/instances.en.lua @@ -1510,7 +1510,7 @@ AtlasLoot_Data["AtlasLootItems"] = { { 16840, "INV_Bracer_16", "=q4=Earthfury Bracers", "=ds=#s8#, #a3# =q15=#c7#", "0.16%" }, { 16857, "INV_Bracer_18", "=q4=Lawbringer Bracers", "=ds=#s8#, #a4# =q16=#c4#", "0.14%" }, { 16861, "INV_Bracer_19", "=q4=Bracers of Might", "=ds=#s8#, #a4# =q17=#c9#", "0.24%" }, - + { 0,"","","" }, { 81261, "", "=q4=Boots of Blistering Flames", "=ds=#s12#, #a1#", "0.2%" }, { 81262, "", "=q4=Core Forged Helmet", "=ds=#s1#, #a4#", "0.2%" }, { 81263, "", "=q4=Lost Dark Iron Chain", "=ds=#s2#", "0.2%" }, @@ -3241,11 +3241,12 @@ AtlasLoot_Data["AtlasLootItems"] = { { 17745, "INV_Wand_04", "=q3=Noxious Shooter", "=ds=#w12#", "17.53%" }, }; MaraRazorlash = { - { 17749, "INV_Shoulder_06", "=q3=Phytoskin Spaulders", "=ds=#s3#, #a2#", "22.09%" }, - { 17748, "INV_Boots_05", "=q3=Vinerot Sandals", "=ds=#s12#, #a1#", "20.60%" }, + { 17749, "INV_Shoulder_06", "=q3=Phytoskin Spaulders", "=ds=#s3#, #a2#", "25%" }, + { 17748, "INV_Boots_05", "=q3=Vinerot Sandals", "=ds=#s12#, #a1#", "25%" }, + { 51802, "", "", "7.5%" }, { 0, "", "", "" }, - { 17750, "INV_Belt_25", "=q2=Chloromesh Girdle", "=ds=#s10#, #a1#", "22.93%" }, - { 17751, "INV_Pants_05", "=q2=Brusslehide Leggings", "=ds=#s11#, #a2#", "21.65%" }, + { 17750, "INV_Belt_25", "=q2=Chloromesh Girdle", "=ds=#s10#, #a1#", "25%" }, + { 17751, "INV_Pants_05", "=q2=Brusslehide Leggings", "=ds=#s11#, #a2#", "25%" }, }; MaraLordVyletongue = { { 17755, "INV_Belt_24", "=q3=Satyrmane Sash", "=ds=#s10#, #a1#", "25.71%" }, diff --git a/TableRegister/loottables.en.lua b/TableRegister/loottables.en.lua index 44aca61..52b2e18 100644 --- a/TableRegister/loottables.en.lua +++ b/TableRegister/loottables.en.lua @@ -524,6 +524,7 @@ AtlasLoot_TableNames = { ["DevilsaurArmor"] = { AL["Devilsaur Armor"], "AtlasLootCrafting" }, ["BloodTigerH"] = { AL["Blood Tiger Harness"], "AtlasLootCrafting" }, ["PrimalBatskin"] = { AL["Primal Batskin"], "AtlasLootCrafting" }, + ["RedDragonM"] = { AL["Red Dragon Mail"], "AtlasLootCrafting" }, ["GreenDragonM"] = { AL["Green Dragon Mail"], "AtlasLootCrafting" }, ["BlueDragonM"] = { AL["Blue Dragon Mail"], "AtlasLootCrafting" }, ["BlackDragonM"] = { AL["Black Dragon Mail"], "AtlasLootCrafting" }, @@ -725,6 +726,7 @@ AtlasLoot_TableNames = { ["Undercity"] = { AL["Undercity"], "AtlasLootRepItems" }, ["Orgrimmar"] = { AL["Orgrimmar"], "AtlasLootRepItems" }, ["ThunderBluff"] = { AL["Thunder Bluff"], "AtlasLootRepItems" }, + ["Dalaran"] = { AL["Dalaran"], "AtlasLootRepItems" }, -------------- --- Trades --- diff --git a/WorldBosses/worldbosses.en.lua b/WorldBosses/worldbosses.en.lua index 08e04f9..827d05f 100644 --- a/WorldBosses/worldbosses.en.lua +++ b/WorldBosses/worldbosses.en.lua @@ -219,23 +219,25 @@ AtlasLoot_Data["AtlasLootWBItems"] = { { 18665, "Spell_Shadow_UnholyFrenzy", "=q4=The Eye of Shadow", "=ds=#s14#", "29.98%" }, { 18608, "INV_Staff_30", "=q4=Benediction", "=q1=#m4# =ds=#w9# =q9=#c5#" }, { 18609, "INV_Staff_12", "=q4=Anathema", "=q1=#m4# =ds=#w9# =q9=#c5#" }, + { 0, "", "", "", "" }, + { 83545, "", "=q4=", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "40%" }, }; DTaerar = { - { 20633, "INV_Shoulder_29", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "11.30%" }, - { 20631, "INV_Boots_Cloth_05", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "13.14%" }, - { 20634, "INV_Boots_08", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "10.15%" }, - { 20632, "INV_Jewelry_Ring_04", "=q4=Mindtear Band", "=ds=#s13#", "13.69%" }, - { 20577, "INV_Sword_44", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "12.07%" }, + { 20633, "INV_Shoulder_29", "=q4=Unnatural Leather Spaulders", "=ds=#s3#, #a2#", "17%" }, + { 20631, "INV_Boots_Cloth_05", "=q4=Mendicant's Slippers", "=ds=#s12#, #a1#", "17%" }, + { 20634, "INV_Boots_08", "=q4=Boots of Fright", "=ds=#s12#, #a2#", "17%" }, + { 20632, "INV_Jewelry_Ring_04", "=q4=Mindtear Band", "=ds=#s13#", "17%" }, + { 20577, "INV_Sword_44", "=q4=Nightmare Blade", "=ds=#h1#, #w10#", "17%" }, + { 65105, "inv_misc_monsterscales_11", "=q4=Scale of the Wakener", "=ds=#s14#", "17%" }, { 0, "", "", "", "" }, { 0, "", "", "", "" }, - { 0, "", "", "", "" }, - { 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "9.14%" }, - { 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "8.83%" }, - { 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "10.20%" }, - { 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "9.71%" }, - { 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "9.80%" }, - { 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "8.85%" }, - { 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "9.57%" }, + { 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" }, + { 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" }, + { 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" }, + { 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" }, + { 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" }, + { 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" }, + { 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" }, { 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" }, { 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" }, { 0, "", "", "", "" }, @@ -253,21 +255,21 @@ AtlasLoot_Data["AtlasLootWBItems"] = { { 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" }, }; DEmeriss = { - { 20623, "INV_Helmet_17", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "10.51%" }, - { 20622, "INV_Jewelry_Necklace_18", "=q4=Dragonheart Necklace", "=ds=#s2#", "12.35%" }, - { 20624, "INV_Jewelry_Ring_38", "=q4=Ring of the Unliving", "=ds=#s13#", "13.23%" }, - { 20621, "INV_Boots_Chain_11", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "10.24%" }, - { 20599, "INV_Weapon_Crossbow_11", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "12.63%" }, - { 0, "", "", "", "" }, - { 0, "", "", "", "" }, - { 0, "", "", "", "" }, - { 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "9.14%" }, - { 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "8.83%" }, - { 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "10.20%" }, - { 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "9.71%" }, - { 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "9.80%" }, - { 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "8.85%" }, - { 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "9.57%" }, + { 20623, "INV_Helmet_17", "=q4=Circlet of Restless Dreams", "=ds=#s1#, #a2#", "14%" }, + { 20622, "INV_Jewelry_Necklace_18", "=q4=Dragonheart Necklace", "=ds=#s2#", "14%" }, + { 20624, "INV_Jewelry_Ring_38", "=q4=Ring of the Unliving", "=ds=#s13#", "14%" }, + { 20621, "INV_Boots_Chain_11", "=q4=Boots of the Endless Moor", "=ds=#s12#, #a3#", "14%" }, + { 20599, "INV_Weapon_Crossbow_11", "=q4=Polished Ironwood Crossbow", "=ds=#w3#", "14%" }, + { 65100, "inv_boots_cloth_04", "=q4=Dragonspur Boots", "=ds=#s12#, #a2#", "14%" }, + { 65101, "inv_belt_16", "=q4=Dragonbone Waistguard", "=ds=#s10#, #a4#", "14%" }, + { 0, "", "", "", "" }, + { 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" }, + { 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" }, + { 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" }, + { 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" }, + { 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" }, + { 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" }, + { 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" }, { 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" }, { 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" }, { 0, "", "", "", "" }, @@ -285,21 +287,21 @@ AtlasLoot_Data["AtlasLootWBItems"] = { { 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" }, }; DLethon = { - { 20628, "INV_Helmet_43", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "15.80%" }, - { 20626, "INV_Bracer_07", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "9.44%" }, - { 20630, "INV_Gauntlets_29", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "8.19%" }, - { 20625, "INV_Belt_15", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "10.99%" }, - { 20627, "INV_Pants_Leather_11", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "11.68%" }, - { 20629, "INV_Boots_Chain_08", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "4.46%" }, + { 20628, "INV_Helmet_43", "=q4=Deviate Growth Cap", "=ds=#s1#, #a2#", "14%" }, + { 20626, "INV_Bracer_07", "=q4=Black Bark Wristbands", "=ds=#s8#, #a1#", "14%" }, + { 20630, "INV_Gauntlets_29", "=q4=Gauntlets of the Shining Light", "=ds=#s9#, #a4#", "14%" }, + { 20625, "INV_Belt_15", "=q4=Belt of the Dark Bog", "=ds=#s10#, #a1#", "14%" }, + { 20627, "INV_Pants_Leather_11", "=q4=Dark Heart Pants", "=ds=#s11#, #a2#", "14%" }, + { 20629, "INV_Boots_Chain_08", "=q4=Malignant Footguards", "=ds=#s12#, #a3#", "14%" }, + { 65102, "inv_helmet_04", "=q4=Hood of Delusional Power", "=ds=#s1#, #a1#", "14%" }, { 0, "", "", "", "" }, - { 0, "", "", "", "" }, - { 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "9.14%" }, - { 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "8.83%" }, - { 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "10.20%" }, - { 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "9.71%" }, - { 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "9.80%" }, - { 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "8.85%" }, - { 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "9.57%" }, + { 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" }, + { 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" }, + { 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" }, + { 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" }, + { 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" }, + { 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" }, + { 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" }, { 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" }, { 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" }, { 0, "", "", "", "" }, @@ -317,21 +319,21 @@ AtlasLoot_Data["AtlasLootWBItems"] = { { 20381, "INV_Misc_MonsterScales_11", "=q2=Dreamscale", "=ds=#e12# =q5=Skinning (315)" }, }; DYsondre = { - { 20637, "INV_Shoulder_11", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "10.13%" }, - { 20635, "INV_Chest_Cloth_39", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "14.19%" }, - { 20638, "INV_Pants_Mail_15", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "3.66%" }, - { 20639, "INV_Pants_Plate_05", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "8.87%" }, - { 20636, "INV_Misc_Gem_Stone_01", "=q4=Hibernation Crystal", "=ds=#s14#", "12.75%" }, - { 20578, "INV_Weapon_ShortBlade_22", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "9.95%" }, + { 20637, "INV_Shoulder_11", "=q4=Acid Inscribed Pauldrons", "=ds=#s3#, #a4#", "13%" }, + { 20635, "INV_Chest_Cloth_39", "=q4=Jade Inlaid Vestments", "=ds=#s5#, #a1#", "13%" }, + { 20638, "INV_Pants_Mail_15", "=q4=Leggings of the Demented Mind", "=ds=#s11#, #a3#", "13%" }, + { 20639, "INV_Pants_Plate_05", "=q4=Strangely Glyphed Legplates", "=ds=#s11#, #a4#", "13%" }, + { 20636, "INV_Misc_Gem_Stone_01", "=q4=Hibernation Crystal", "=ds=#s14#", "13%" }, + { 20578, "INV_Weapon_ShortBlade_22", "=q4=Emerald Dragonfang", "=ds=#h1#, #w4#", "13%" }, + { 65103, "inv_shield_21", "=q4=Shell of the Great Sleeper", "=ds=#h4#, #w8#", "13%" }, { 0, "", "", "", "" }, - { 0, "", "", "", "" }, - { 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "9.14%" }, - { 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "8.83%" }, - { 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "10.20%" }, - { 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "9.71%" }, - { 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "9.80%" }, - { 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "8.85%" }, - { 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "9.57%" }, + { 20579, "INV_Misc_Cape_17", "=q4=Green Dragonskin Cloak", "=ds=#s4# =q2=#m5#", "11%" }, + { 20615, "INV_Bracer_15", "=q4=Dragonspur Wraps", "=ds=#s8#, #a2# =q2=#m5#", "11%" }, + { 20616, "INV_Bracer_14", "=q4=Dragonbone Wristguards", "=ds=#s8#, #a4# =q2=#m5#", "11%" }, + { 20618, "INV_Gauntlets_17", "=q4=Gloves of Delusional Power", "=ds=#s9#, #a1# =q2=#m5#", "11%" }, + { 20617, "INV_Pants_Mail_08", "=q4=Ancient Corroded Leggings", "=ds=#s11#, #a3# =q2=#m5#", "11%" }, + { 20619, "INV_Boots_Plate_04", "=q4=Acid Inscribed Greaves", "=ds=#s12#, #a4# =q2=#m5#", "11%" }, + { 20582, "INV_Misc_Orb_01", "=q4=Trance Stone", "=ds=#s15# =q2=#m5#", "11%" }, { 20644, "Spell_Shadow_Haunting", "=q4=Nightmare Engulfed Object", "=ds=#m2#", "100%" }, { 20600, "INV_Jewelry_Ring_37", "=q4=Malfurion's Signet Ring", "=q1=#m4# =ds=#s13#" }, { 0, "", "", "", "" }, @@ -368,6 +370,8 @@ AtlasLoot_Data["AtlasLootWBItems"] = { { 0, "", "", "", "" }, { 18704, "INV_Misc_Bandage_04", "=q4=Mature Blue Dragon Sinew", "=ds=#m3#", "51.56%" }, { 18714, "INV_Misc_Quiver_03", "=q4=Ancient Sinew Wrapped Lamina", "=q1=#m4# =ds=#m12# #e9# =q14=#c2#" }, + { 0, "", "", "", "" }, + { 83544, "", "=q4=", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340", "40%" }, }; ASpiritA = { { 20949, "INV_Letter_16", "=q1=Magical Ledger", "=ds=#m2#", "" },