diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua index 027eb3b..d666c5c 100644 --- a/Core/AtlasLoot.lua +++ b/Core/AtlasLoot.lua @@ -2980,6 +2980,7 @@ AtlasLoot_HewdropDown_SubTables = { { "|cffffffff[58]|cffffd200 Highvale Silverback |cffffffff(Tel'abim)", "HighvaleSilverback" }, { "|cffffffff[58]|cffffd200 Mallon The Moontouched |cffffffff(Winterspring)", "Mallon" }, { "|cffffffff[59]|cffffd200 Blademaster Kargron |cffffffff(Burning Steppes)", "Kargron" }, + { "|cffffffff[59]|cffffd200 Professor Lysander |cffffffff(EPL)", "ProfessorLysander" }, { "|cffffffff[60]|cffffd200 Admiral Barean Westwind |cffffffff(Scarlet Enclave)", "AdmiralBareanWestwind" }, { "|cffffffff[60]|cffffd200 Azurebeak |cffffffff(Hyjal)", "Azurebeak" }, { "|cffffffff[60]|cffffd200 Barkskin Fisher |cffffffff(Hyjal)", "BarkskinFisher" }, diff --git a/Core/ButtonRegistry.lua b/Core/ButtonRegistry.lua index bf67dba..590cfa5 100644 --- a/Core/ButtonRegistry.lua +++ b/Core/ButtonRegistry.lua @@ -2944,12 +2944,19 @@ AtlasLoot_ButtonRegistry = { Prev_Page = "Mallon"; Prev_Title = AL["Mallon The Moontouched"]; }; + ["ProfessorLysander"] = { + Title = AL["Professor Lysander"]; + Next_Page = "AdmiralBareanWestwind"; + Next_Title = AL["Admiral Barean Westwind"]; + Prev_Page = "Kargron"; + Prev_Title = AL["Blademaster Kargron"]; + }; ["AdmiralBareanWestwind"] = { Title = AL["Admiral Barean Westwind"]; Next_Page = "Azurebeak"; Next_Title = AL["Azurebeak"]; - Prev_Page = "Kargron"; - Prev_Title = AL["Blademaster Kargron"]; + Prev_Page = "ProfessorLysander"; + Prev_Title = AL["Professor Lysander"]; }; ["Azurebeak"] = { Title = AL["Azurebeak"]; diff --git a/Core/Spells.lua b/Core/Spells.lua index 59d795e..d0b3061 100644 --- a/Core/Spells.lua +++ b/Core/Spells.lua @@ -2008,7 +2008,7 @@ GetSpellInfoVanillaDB = { ["craftQuantityMin"] = "", ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12360, 8}, + [1] = {12360, 2}, [2] = {7071}, [3] = {12644, 2}, [4] = {11754}, diff --git a/Instances/instances.en.lua b/Instances/instances.en.lua index 8092b95..50607db 100644 --- a/Instances/instances.en.lua +++ b/Instances/instances.en.lua @@ -5668,7 +5668,7 @@ AtlasLoot_Data["AtlasLootItems"] = { { 0, "", "", "", "" }, { 14548, "INV_Shoulder_11", "=q3=Royal Cap Spaulders", "=ds=#s3#, #a3#", "14%" }, { 18689, "INV_Misc_Cape_20", "=q3=Phantasmal Cloak", "=ds=#s4#", "14%" }, - { 14543, "INV_Gauntlets_15", "=q3=Darkshade Gloves", "=ds=#s9#, #a1#", "14%" }, + --{ 14543, "INV_Gauntlets_15", "=q3=Darkshade Gloves", "=ds=#s9#, #a1#", "14%" }, { 14545, "INV_Pants_11", "=q3=Ghostloom Leggings", "=ds=#s11#, #a2#", "14%" }, { 18690, "INV_Pants_04", "=q3=Wraithplate Leggings", "=ds=#s11#, #a4#", "14%" }, { 14541, "INV_Sword_03", "=q3=Barovian Family Sword", "=ds=#h2#, #w10#", "14%" }, diff --git a/Locale/locale.en.lua b/Locale/locale.en.lua index 52174e9..8c9aec0 100644 --- a/Locale/locale.en.lua +++ b/Locale/locale.en.lua @@ -1350,6 +1350,7 @@ AL:RegisterTranslations("enUS", function() return { ["Highvale Silverback"] = true, ["Mallon The Moontouched"] = true, ["Blademaster Kargron"] = true, + ["Professor Lysander"] = true, ["Admiral Barean Westwind"] = true, ["Azurebeak"] = true, ["Barkskin Fisher"] = true, diff --git a/TableRegister/loottables.en.lua b/TableRegister/loottables.en.lua index 99975ec..020907a 100644 --- a/TableRegister/loottables.en.lua +++ b/TableRegister/loottables.en.lua @@ -707,6 +707,11 @@ AtlasLoot_TableNames = { ["M0L1Y"] = { "M-0L1Y", "AtlasLootWBItems" }, ["WidowoftheWoods"] = { "Widow of the Woods", "AtlasLootWBItems" }, ["KinTozo"] = { "Kin'Tozo", "AtlasLootWBItems" }, + + ---------------------------- + --- Rare Spawns (1.17.1) --- + ---------------------------- + ["ProfessorLysander"] = { "Professor Lysander", "AtlasLootWBItems" }, -------------- --- Events --- @@ -1707,9 +1712,9 @@ AtlasLoot_TableNamesBoss = { ["DTrash"] = { AL["Trash Mobs"] .. " (" .. AL["Emerald Dragons"] .. ")", "AtlasLootWBItems" }, }, - -------------------------- - --- Rare Spawns (1.16) --- - -------------------------- + ------------------- + --- Rare Spawns --- + ------------------- ["Rare Spawns"] = { ["Tarangos"] = { "Tarangos The Dampener", "AtlasLootWBItems" }, ["Kargron"] = { "Blademaster Kargron", "AtlasLootWBItems" }, @@ -1747,6 +1752,7 @@ AtlasLoot_TableNamesBoss = { ["M0L1Y"] = { "M-0L1Y", "AtlasLootWBItems" }, ["WidowoftheWoods"] = { "Widow of the Woods", "AtlasLootWBItems" }, ["KinTozo"] = { "Kin'Tozo", "AtlasLootWBItems" }, + ["ProfessorLysander"] = { "Professor Lysander", "AtlasLootWBItems" }, }, -------------- diff --git a/WorldBosses/worldbosses.en.lua b/WorldBosses/worldbosses.en.lua index 2503d60..e19f1de 100644 --- a/WorldBosses/worldbosses.en.lua +++ b/WorldBosses/worldbosses.en.lua @@ -85,6 +85,7 @@ AtlasLootWBBossButtons = { "ShadeflayerGoliath"; "M0L1Y"; "KinTozo"; + "ProfessorLysander"; }; }; @@ -562,6 +563,12 @@ AtlasLoot_Data["AtlasLootWBItems"] = { { 0, "", "", "", "" }, { 60442, "INV_Axe_01", "=q4=Hak'thalz of Legacy", "=ds=#h3#, #w1#", "2%" }, }; + ProfessorLysander = { + { 41060, "inv_potion_19", "=q3=Refined Plague Strain", "=ds=#s14#", "25%" }, + { 41061, "inv_misc_rune_09", "=q3=Frozen Rune of Naxxramas", "=ds=#s2#", "25%" }, + { 41062, "inv_misc_eye_01", "=q3=Peering Eyeball", "=ds=#s13#", "25%" }, + { 41063, "inv_chest_cloth_24", "=q3=Doctor's Labcoat","=ds=#s5#, #a1#", "25%" }, + }; FirstbornofArugal = { { 61586, "INV_Shoulder_08", "=q2=Explorer's Shoulders", "=ds=#s3#, #a2#", "40%" }, { 61587, "INV_Boots_07", "=q2=Old Hunter's Boots", "=ds=#s12#, #a2#", "40%" },