Skip to content

Commit 5d47f75

Browse files
authored
Merge pull request #1 from MarcelineVQ/incantagos
[ add ] incantagos loot details
2 parents 350bb23 + 8f80709 commit 5d47f75

File tree

4 files changed

+79
-68
lines changed

4 files changed

+79
-68
lines changed

AtlasLoot.toc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Notes: Shows possible loot from dungeon bosses and other sources.
44
## Author: Shagu (pfUI update code), Lexie (Turtle WoW fixes/updates), Otari (overhaul/revamp, menu changes, bugfixes/updates)
55
## LegacyAuthor: Daviesh, Pompa (Turtle WoW World Bosses), Xerron (Turtle WoW World Bosses), Gurky (Turtle WoW 1.16/1.16.1 Dungeons)
6-
## Version: 3.0.9
6+
## Version: 3.1.9
77
## SavedVariables: AtlasLoot_updateavailable
88
## SavedVariablesPerCharacter: AtlasLootCharDB
99
## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, HewdropLib, Ace2, EquipCompare, EQCompare

Core/AtlasLoot.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -2194,11 +2194,11 @@ AtlasLoot_HewdropDown = {
21942194
{{ AL["[RAID] Molten Core"], "MoltenCore", "Submenu" },},
21952195
{{ AL["[RAID] Onyxia's Lair"], "Onyxia", "Submenu" },},
21962196
{{ AL["[RAID] Lower Karazhan Halls"], "LowerKara", "Submenu" },},
2197-
{{ AL["[RAID] Upper Karazhan Halls"], "UpperKara", "Submenu" },},
21982197
{{ AL["[RAID] Blackwing Lair"], "BlackwingLair", "Submenu" },},
21992198
{{ AL["[RAID] Emerald Sanctum"], "EmeraldSanctum", "Submenu" },},
22002199
{{ AL["[RAID] Temple of Ahn'Qiraj"], "TempleofAQ", "Submenu" },},
22012200
{{ AL["[RAID] Naxxramas"], "Naxxramas", "Submenu" },},
2201+
{{ AL["[RAID] Upper Karazhan Halls"], "UpperKara", "Submenu" },},
22022202
},
22032203
},
22042204
{[AL["World Bosses"]] = {
@@ -2796,12 +2796,12 @@ AtlasLoot_HewdropDown_SubTables = {
27962796
{ AL["LKH Enchants"], "LKHEnchants" },
27972797
},
27982798
["UpperKara"] = {
2799+
{ AL["Keeper Gnarlmoon"], "UKHGnarlmoon" },
2800+
{ AL["Ley-Watcher Incantagos"], "UKHIncantagos" },
2801+
{ AL["Anomalus"], "UKHAnomalus" },
27992802
{ AL["King (Chess fight)"], "UKHKing" },
28002803
{ AL["Sanv Tas'dal"], "UKHSanvTasdal" },
28012804
{ AL["Kruul"], "UKHKruul" },
2802-
{ AL["Ley-Watcher Incantagos"], "UKHIncantagos" },
2803-
{ AL["Anomalus"], "UKHAnomalus" },
2804-
{ AL["Keeper Gnarlmoon"], "UKHGnarlmoon" },
28052805
{ AL["Trash Mobs"], "UKHTrash" },
28062806
},
28072807
["WorldBosses"] = {

Core/ButtonRegistry.lua

+36-30
Original file line numberDiff line numberDiff line change
@@ -3432,62 +3432,66 @@ AtlasLoot_ButtonRegistry = {
34323432
};
34333433

34343434
-- Upper Karazhan Halls
3435-
["UKHKing"] = {
3436-
Title = AL["King (Chess fight)"];
3437-
Next_Page = "UKHSanvTasdal";
3438-
Next_Title = AL["Sanv Tas'dal"];
3439-
Back_Page = "DUNGEONSMENU2";
3440-
Back_Title = AL["Dungeons & Raids"];
3441-
};
3442-
["UKHSanvTasdal"] = {
3443-
Title = AL["Sanv Tas'dal"];
3444-
Next_Page = "UKHKruul";
3445-
Next_Title = AL["Kruul"];
3446-
Prev_Page = "UKHKing";
3447-
Prev_Title = AL["King (Chess fight)"];
3448-
Back_Page = "DUNGEONSMENU2";
3449-
Back_Title = AL["Dungeons & Raids"];
3450-
};
3451-
["UKHKruul"] = {
3452-
Title = AL["Kruul"];
3435+
-- Guessed order:keeper gnarlmoon -> incantagos -> anomalus -> echo of medivh (optional) -> king's council -> sanv tas'dal -> rupturan -> kruul -> mephistroph
3436+
3437+
["UKHGnarlmoon"] = {
3438+
Title = AL["Keeper Gnarlmoon"];
34533439
Next_Page = "UKHIncantagos";
34543440
Next_Title = AL["Ley-Watcher Incantagos"];
3455-
Prev_Page = "UKHSanvTasdal";
3456-
Prev_Title = AL["Sanv Tas'dal"];
3441+
Prev_Page = "UKHTrash";
3442+
Prev_Title = AL["Trash Mobs"];
34573443
Back_Page = "DUNGEONSMENU2";
34583444
Back_Title = AL["Dungeons & Raids"];
34593445
};
34603446
["UKHIncantagos"] = {
34613447
Title = AL["Ley-Watcher Incantagos"];
34623448
Next_Page = "UKHAnomalus";
34633449
Next_Title = AL["Anomalus"];
3464-
Prev_Page = "UKHKruul";
3465-
Prev_Title = AL["Kruul"];
3450+
Prev_Page = "UKHGnarlmoon";
3451+
Prev_Title = AL["Keeper Gnarlmoon"];
34663452
Back_Page = "DUNGEONSMENU2";
34673453
Back_Title = AL["Dungeons & Raids"];
34683454
};
34693455
["UKHAnomalus"] = {
34703456
Title = AL["Anomalus"];
3471-
Next_Page = "UKHGnarlmoon";
3472-
Next_Title = AL["Keeper Gnarlmoon"];
3457+
Next_Page = "UKHKing";
3458+
Next_Title = AL["King (Chess fight)"];
34733459
Prev_Page = "UKHIncantagos";
34743460
Prev_Title = AL["Ley-Watcher Incantagos"];
34753461
Back_Page = "DUNGEONSMENU2";
34763462
Back_Title = AL["Dungeons & Raids"];
34773463
};
3478-
["UKHGnarlmoon"] = {
3479-
Title = AL["Keeper Gnarlmoon"];
3480-
Next_Page = "UKHTrash";
3481-
Next_Title = AL["Trash Mobs"];
3464+
["UKHKing"] = {
3465+
Title = AL["King (Chess fight)"];
3466+
Next_Page = "UKHSanvTasdal";
3467+
Next_Title = AL["Sanv Tas'dal"];
34823468
Prev_Page = "UKHAnomalus";
34833469
Prev_Title = AL["Anomalus"];
34843470
Back_Page = "DUNGEONSMENU2";
34853471
Back_Title = AL["Dungeons & Raids"];
34863472
};
3473+
["UKHSanvTasdal"] = {
3474+
Title = AL["Sanv Tas'dal"];
3475+
Next_Page = "UKHKruul";
3476+
Next_Title = AL["Kruul"];
3477+
Prev_Page = "UKHKing";
3478+
Prev_Title = AL["King (Chess fight)"];
3479+
Back_Page = "DUNGEONSMENU2";
3480+
Back_Title = AL["Dungeons & Raids"];
3481+
};
3482+
["UKHKruul"] = {
3483+
Title = AL["Kruul"];
3484+
Next_Page = "UKHUnknown";
3485+
Next_Title = AL["Unknown boss Upper Kara"];
3486+
Prev_Page = "UKHSanvTasdal";
3487+
Prev_Title = AL["Sanv Tas'dal"];
3488+
Back_Page = "DUNGEONSMENU2";
3489+
Back_Title = AL["Dungeons & Raids"];
3490+
};
34873491
["UKHUnknown"] = {
34883492
Title = AL["Unknown boss Upper Kara"];
3489-
Prev_Page = "UKHGnarlmoon";
3490-
Prev_Title = AL["Keeper Gnarlmoon"];
3493+
Prev_Page = "UKHKruul";
3494+
Prev_Title = AL["Kruul"];
34913495
Next_Page = "UKHTrash";
34923496
Next_Title = AL["Trash Mobs"];
34933497
Back_Page = "DUNGEONSMENU2";
@@ -3497,6 +3501,8 @@ AtlasLoot_ButtonRegistry = {
34973501
Title = AL["Trash Mobs"];
34983502
Prev_Page = "UKHUnknown";
34993503
Prev_Title = AL["Unknown boss Upper Kara"];
3504+
Next_Page = "UKHGnarlmoon";
3505+
Next_Title = AL["Keeper Gnarlmoon"];
35003506
Back_Page = "DUNGEONSMENU2";
35013507
Back_Title = AL["Dungeons & Raids"];
35023508
};

Instances/instances.en.lua

+38-33
Original file line numberDiff line numberDiff line change
@@ -8127,6 +8127,44 @@ AtlasLoot_Data["AtlasLootItems"] = {
81278127
{ 0, "", "", "" },
81288128
{ 54001, "INV_Crate_02", "=q2=Dream Frog", "=ds=#e15#", "0.08%" },
81298129
};
8130+
UKHGnarlmoon = {
8131+
{ 55078, "INV_Scroll_04", "=q4=Ley-attuned Choker", "", 25 },
8132+
{ 55084, "INV_Scroll_04", "=q4=Torn Wings of Midnight", "", 25 },
8133+
{ 55081, "INV_Scroll_04", "=q4=Manadrenched Feather Slippers", "", 25 },
8134+
{ 55285, "INV_Scroll_04", "=q4=Crite's Holy Hands", "", 25 },
8135+
{ 55079, "INV_Scroll_04", "=q4=Ravenkeeper’s Frenzied Embrace", "", 25 },
8136+
{ 55080, "INV_Scroll_04", "=q4=Bloodmoon, Sickle of the Murderous Flight", "", 25 },
8137+
{ 55082, "INV_Scroll_04", "=q4=Idol of Laceration", "", 25 },
8138+
{ 55083, "INV_Scroll_04", "=q4=Crown of the Wildpack", "", 25 },
8139+
};
8140+
UKHIncantagos = {
8141+
{ 41403, "INV_Enchant_ShardGlowingSmall", "=q4=Enchanted Amethyst", "=ds=#m3#" },
8142+
{ 55133, "INV_Weapon_ShortBlade_27", "=q4=Claw of the Mageweaver", "=q1=#m4# =ds=#h4#, #w13#" },
8143+
{ 55134, "Inv_Wand_05", "=q4=Rod of Permafrost", "=q1=#m4# =ds=#w12#" },
8144+
{ 55135, "Inv_misc_monsterscales_09", "=q4=Shard of Leyflow", "=q1=#m4# =ds=#s14#" },
8145+
{ 0, "", "", "" },
8146+
{ 55086, "INV_Belt_22", "=q4=Magehunter Belt", "=ds=#s10#, #a3# ", 25 },
8147+
{ 55099, "INV_Pants_Plate_18", "=q4=Leysteel Legplates", "=ds=#s11#, #a4#", 25 },
8148+
{ 55089, "INV_Bracer_02", "=q4=Bands of the Surgebreaker", "=ds=#s8#, #a2#", 25 },
8149+
{ 55507, "INV_Scroll_04", "=q4=Choker of Terminal Arcanum", "", 25 },
8150+
{ 55085, "INV_Pants_Cloth_13", "=q4=Magispark Leggings", "=ds=#s11#, #a1#", 25 },
8151+
{ 55087, "INV_Misc_Gem_Variety_01", "=q4=Jewel of Wild Magics", "=ds=#s14#", 25 },
8152+
{ 55090, "INV_Shield_23", "=q4=Scaleshield of Azure Flight", "=ds=#w8#", 25 },
8153+
{ 55091, "INV_Jewelry_Ring_Saphire", "=q4=Loop of Infused Renewal", "=ds=#s13# =q16=#c4#=ds=, =q9=#c5#=ds=, =q15=#c7#=ds=, =q13=#c1#", 25 },
8154+
{ 0, "", "", "" },
8155+
{ 41373, "INV_Misc_EngGizmos_08", "=q4=Draconic Focus", "=ds=#m3#" },
8156+
};
8157+
UKHAnomalus = {
8158+
{ 41412, "INV_Scroll_04", "=q4=Cosmic Residue", "", -100 },
8159+
{ 55092, "INV_Scroll_04", "=q4=Manahide Slippers", "", "" },
8160+
{ 55095, "INV_Scroll_04", "=q4=Cloak of the Bloody Ravager", "", 25 },
8161+
{ 55096, "INV_Scroll_04", "=q4=Phase-shifting Crossbow", "", 25 },
8162+
{ 55279, "INV_Scroll_04", "=q4=Branch of Resolute Defense", "", 25 },
8163+
{ 55093, "INV_Scroll_04", "=q4=Remains of Overwhelming Power", "", 25 },
8164+
{ 55106, "INV_Scroll_04", "=q4=Bindings of Contained Magic", "", 25 },
8165+
{ 55097, "INV_Scroll_04", "=q4=Choker of Chromatic Power", "", 25 },
8166+
{ 55098, "INV_Scroll_04", "=q4=Gloves of Nourishment", "", 25 },
8167+
};
81308168
UKHKing = {
81318169
{ 55088, "INV_Scroll_04", "=q4=Dragonclaw Gauntlets", "", 12.5 },
81328170
{ 55100, "INV_Scroll_04", "=q4=Checkmate", "", 12.5 },
@@ -8165,39 +8203,6 @@ AtlasLoot_Data["AtlasLootItems"] = {
81658203
{ 55130, "INV_Scroll_04", "=q4=Wristwraps of Exiled Radiance", "", 11.1 },
81668204
{ 55482, "INV_Scroll_04", "=q4=Ephemeral Pendant", "", 4 },
81678205
};
8168-
UKHIncantagos = {
8169-
{ 41403, "INV_Scroll_04", "=q4=Enchanted Amethyst", "", 100 },
8170-
{ 41373, "INV_Scroll_04", "=q4=Draconic Focus", "", -100 },
8171-
{ 55086, "INV_Scroll_04", "=q4=Magehunter Belt", "", 25 },
8172-
{ 55099, "INV_Scroll_04", "=q4=Leysteel Legplates", "", 25 },
8173-
{ 55089, "INV_Scroll_04", "=q4=Bands of the Surgebreaker", "", 25 },
8174-
{ 55507, "INV_Scroll_04", "=q4=Choker of Terminal Arcanum", "", 25 },
8175-
{ 55085, "INV_Scroll_04", "=q4=Magispark Leggings", "", 25 },
8176-
{ 55087, "INV_Scroll_04", "=q4=Jewel of Wild Magics", "", 25 },
8177-
{ 55090, "INV_Scroll_04", "=q4=Scaleshield of Azure Flight", "", 25 },
8178-
{ 55091, "INV_Scroll_04", "=q4=Loop of Infused Renewal", "", 25 },
8179-
};
8180-
UKHAnomalus = {
8181-
{ 41412, "INV_Scroll_04", "=q4=Cosmic Residue", "", -100 },
8182-
{ 55092, "INV_Scroll_04", "=q4=Manahide Slippers", "", "" },
8183-
{ 55095, "INV_Scroll_04", "=q4=Cloak of the Bloody Ravager", "", 25 },
8184-
{ 55096, "INV_Scroll_04", "=q4=Phase-shifting Crossbow", "", 25 },
8185-
{ 55279, "INV_Scroll_04", "=q4=Branch of Resolute Defense", "", 25 },
8186-
{ 55093, "INV_Scroll_04", "=q4=Remains of Overwhelming Power", "", 25 },
8187-
{ 55106, "INV_Scroll_04", "=q4=Bindings of Contained Magic", "", 25 },
8188-
{ 55097, "INV_Scroll_04", "=q4=Choker of Chromatic Power", "", 25 },
8189-
{ 55098, "INV_Scroll_04", "=q4=Gloves of Nourishment", "", 25 },
8190-
};
8191-
UKHGnarlmoon = {
8192-
{ 55078, "INV_Scroll_04", "=q4=Ley-attuned Choker", "", 25 },
8193-
{ 55084, "INV_Scroll_04", "=q4=Torn Wings of Midnight", "", 25 },
8194-
{ 55081, "INV_Scroll_04", "=q4=Manadrenched Feather Slippers", "", 25 },
8195-
{ 55285, "INV_Scroll_04", "=q4=Crite's Holy Hands", "", 25 },
8196-
{ 55079, "INV_Scroll_04", "=q4=Ravenkeeper’s Frenzied Embrace", "", 25 },
8197-
{ 55080, "INV_Scroll_04", "=q4=Bloodmoon, Sickle of the Murderous Flight", "", 25 },
8198-
{ 55082, "INV_Scroll_04", "=q4=Idol of Laceration", "", 25 },
8199-
{ 55083, "INV_Scroll_04", "=q4=Crown of the Wildpack", "", 25 },
8200-
};
82018206
UKHUnknown = {
82028207
{ 55107, "INV_Scroll_04", "=q4=Gloves of Leyline Convergence", "", 25 },
82038208
{ 55109, "INV_Scroll_04", "=q4=Legwraps of Meticulous Planning", "", 25 },

0 commit comments

Comments
 (0)