Ssateneth

Untitled

Mar 30th, 2024
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 228.50 KB | Source Code | 0 0
  1. -----------------------------------------------------------------------
  2. -- Upvalued Lua API.
  3. -----------------------------------------------------------------------
  4. local _G = getfenv(0)
  5. local select = _G.select
  6. local string = _G.string
  7. local format = string.format
  8.  
  9. -- WoW
  10.  
  11. -- ----------------------------------------------------------------------------
  12. -- AddOn namespace.
  13. -- ----------------------------------------------------------------------------
  14. local addonname = ...
  15. local AtlasLoot = _G.AtlasLoot
  16. local data = AtlasLoot.ItemDB:Add(addonname, 1, AtlasLoot.CLASSIC_VERSION_NUM)
  17.  
  18. local AL = AtlasLoot.Locales
  19. local ALIL = AtlasLoot.IngameLocales
  20.  
  21. local GetForVersion = AtlasLoot.ReturnForGameVersion
  22.  
  23. local NORMAL_DIFF = data:AddDifficulty("NORMAL", nil, nil, nil, true)
  24. local RAID10_DIFF = data:AddDifficulty("10RAID")
  25. local RAID20_DIFF = data:AddDifficulty("20RAID")
  26. local RAID40_DIFF = data:AddDifficulty("40RAID")
  27.  
  28. local ALLIANCE_DIFF, HORDE_DIFF, LOAD_DIFF
  29. if UnitFactionGroup("player") == "Horde" then
  30.     HORDE_DIFF = data:AddDifficulty(FACTION_HORDE, "horde", nil, 1)
  31.     ALLIANCE_DIFF = data:AddDifficulty(FACTION_ALLIANCE, "alliance", nil, 1)
  32.     LOAD_DIFF = HORDE_DIFF
  33. else
  34.     ALLIANCE_DIFF = data:AddDifficulty(FACTION_ALLIANCE, "alliance", nil, 1)
  35.     HORDE_DIFF = data:AddDifficulty(FACTION_HORDE, "horde", nil, 1)
  36.     LOAD_DIFF = ALLIANCE_DIFF
  37. end
  38.  
  39. local NORMAL_ITTYPE = data:AddItemTableType("Item", "Item")
  40. local SET_ITTYPE = data:AddItemTableType("Set", "Item")
  41.  
  42. local QUEST_EXTRA_ITTYPE = data:AddExtraItemTableType("Quest")
  43. local PRICE_EXTRA_ITTYPE = data:AddExtraItemTableType("Price")
  44.  
  45. local DUNGEON_CONTENT = data:AddContentType(AL["Dungeons"], ATLASLOOT_DUNGEON_COLOR)
  46. local RAID_CONTENT = data:AddContentType(AL["SoD Raids"], ATLASLOOT_RAID20_COLOR)
  47. local RAID20_CONTENT = data:AddContentType(AL["20 Raids"], ATLASLOOT_RAID20_COLOR)
  48. local RAID40_CONTENT = data:AddContentType(AL["40 Raids"], ATLASLOOT_RAID40_COLOR)
  49.  
  50. local ATLAS_MODULE_NAME = "Atlas_ClassicWoW"
  51.  
  52. local BLUE = "|cff6666ff%s|r"
  53. --local GREY = "|cff999999%s|r"
  54. local GREEN = "|cff66cc33%s|r"
  55. local _RED = "|cffcc6666%s|r"
  56. local PURP = "|cff9900ff%s|r"
  57. local WHIT = "|cffffffff%s|r"
  58.  
  59. local NAME_COLOR, NAME_COLOR_BOSS = "|cffC0C0C0", "|cffC0C0C0"
  60. local NAME_BRD_RING_OF_LAW = NAME_COLOR_BOSS..AL["Ring of Law"]..":|r %s" -- Tempest Keep
  61.  
  62. local KEYS = {  -- Keys
  63.     name = AL["Keys"],
  64.     TableType = NORMAL_ITTYPE,
  65.     ExtraList = true,
  66.     IgnoreAsSource = true,
  67.     [NORMAL_DIFF] = {
  68.         { 1, "INV_Box_01", nil, AL["Key"], nil },
  69.         { 2, 16309,},
  70.         { 3, 12344,},
  71.         { 4, 17191,},
  72.         { 5, 7146, },
  73.         { 6, 12382,},
  74.         { 7, 6893, },
  75.         { 8, 11000,},
  76.         { 9, 11140,},
  77.         { 10, 18249, },
  78.         { 11, 13704, },
  79.         { 12, 11197, },
  80.         { 13, 18266, },
  81.         { 14, 18268, },
  82.         { 15, 13873, },
  83.         { 16, "INV_Box_01", nil, AL["Misc"], nil },
  84.         { 17, 19931 },
  85.         { 18, 18250 },
  86.         { 19, 9240 },
  87.         { 20, 17333 },
  88.         { 21, 22754 },
  89.         { 22, 13523 },
  90.         { 23, 18746 },
  91.         { 24, 18663 },
  92.         { 25, 19974 },
  93.         { 26, 7733 },
  94.         { 27, 10818 },
  95.         { 29, 22057 },
  96.         { 30, 21986 },
  97.     },
  98. }
  99.  
  100. local T1_SET = {
  101.     name = format(AL["Tier %s Sets"], "1"),
  102.     ExtraList = true,
  103.     LoadDifficulty = LOAD_DIFF,
  104.     TableType = SET_ITTYPE,
  105.     IgnoreAsSource = true,
  106.     [ALLIANCE_DIFF] = {
  107.         { 1, 203 }, -- Warlock
  108.         { 3, 202 }, -- Priest
  109.         { 16, 201 }, -- Mage
  110.         { 5, 204 }, -- Rogue
  111.         { 20, 205 }, -- Druid
  112.         { 7, 206 }, -- Hunter
  113.         { 9, 209 }, -- Warrior
  114.         { 24, 208 }, -- Paladin
  115.     },
  116.  
  117.     [HORDE_DIFF] = {
  118.         GetItemsFromDiff = ALLIANCE_DIFF,
  119.         { 22, 207 }, -- Shaman
  120.         { 24 }, -- Paladin
  121.     },
  122. }
  123.  
  124. local T2_SET = {
  125.     name = format(AL["Tier %s Sets"], "2"),
  126.     ExtraList = true,
  127.     LoadDifficulty = LOAD_DIFF,
  128.     TableType = SET_ITTYPE,
  129.     ContentPhase = 3,
  130.     IgnoreAsSource = true,
  131.     [ALLIANCE_DIFF] = {
  132.         { 1, 212 }, -- Warlock
  133.         { 3, 211 }, -- Priest
  134.         { 16, 210 }, -- Mage
  135.         { 5, 213 }, -- Rogue
  136.         { 20, 214 }, -- Druid
  137.         { 7, 215 }, -- Hunter
  138.         { 9, 218 }, -- Warrior
  139.         { 24, 217 }, -- Paladin
  140.     },
  141.  
  142.     [HORDE_DIFF] = {
  143.         GetItemsFromDiff = ALLIANCE_DIFF,
  144.         { 22, 216 }, -- Shaman
  145.         { 24 }, -- Paladin
  146.     },
  147. }
  148.  
  149. local T3_SET = {
  150.     name = format(AL["Tier %s Sets"], "3"),
  151.     ExtraList = true,
  152.     LoadDifficulty = LOAD_DIFF,
  153.     TableType = SET_ITTYPE,
  154.     ContentPhase = 6,
  155.     IgnoreAsSource = true,
  156.     [ALLIANCE_DIFF] = {
  157.         { 1, 529 }, -- Warlock
  158.         { 3, 525 }, -- Priest
  159.         { 16, 526 }, -- Mage
  160.         { 5, 524 }, -- Rogue
  161.         { 20, 521 }, -- Druid
  162.         { 7, 530 }, -- Hunter
  163.         { 9, 523 }, -- Warrior
  164.         { 24, 528 }, -- Paladin
  165.     },
  166.  
  167.     [HORDE_DIFF] = {
  168.         GetItemsFromDiff = ALLIANCE_DIFF,
  169.         { 22, 527 }, -- Shaman
  170.         { 24 }, -- Paladin
  171.     },
  172. }
  173.  
  174. local AQ_SCARABS = { -- AQ40Trash2
  175.     name = AL["Ahn'Qiraj scarabs"],
  176.     ExtraList = true,
  177.     [NORMAL_DIFF] = {
  178.         { 1,  20876 }, -- Idol of Death
  179.         { 2,  20879 }, -- Idol of Life
  180.         { 3,  20875 }, -- Idol of Night
  181.         { 4,  20878 }, -- Idol of Rebirth
  182.         { 5,  20881 }, -- Idol of Strife
  183.         { 6,  20877 }, -- Idol of the Sage
  184.         { 7,  20874 }, -- Idol of the Sun
  185.         { 8,  20882 }, -- Idol of War
  186.         { 10, 21762 }, -- Greater Scarab Coffer Key
  187.         { 12, 21156 }, -- Scarab Bag
  188.         { 14, 21230 }, -- Ancient Qiraji Artifact
  189.         { 16, 20864 }, -- Bone Scarab
  190.         { 17, 20861 }, -- Bronze Scarab
  191.         { 18, 20863 }, -- Clay Scarab
  192.         { 19, 20862 }, -- Crystal Scarab
  193.         { 20, 20859 }, -- Gold Scarab
  194.         { 21, 20865 }, -- Ivory Scarab
  195.         { 22, 20860 }, -- Silver Scarab
  196.         { 23, 20858 }, -- Stone Scarab
  197.         { 26, 22203 }, -- Large Obsidian Shard
  198.         { 27, 22202 }, -- Small Obsidian Shard
  199.         { 29, 21229 }, -- Qiraji Lord's Insignia
  200.     },
  201. }
  202.  
  203. local AQ_ENCHANTS = { -- AQEnchants
  204.     name = AL["Ahn'Qiraj enchants"],
  205.     ExtraList = true,
  206.     [NORMAL_DIFF] = {
  207.         { 1,  20728 }, -- Formula: Enchant Gloves - Frost Power
  208.         { 2,  20731 }, -- Formula: Enchant Gloves - Superior Agility
  209.         { 3,  20734 }, -- Formula: Enchant Cloak - Stealth
  210.         { 4,  20729 }, -- Formula: Enchant Gloves - Fire Power
  211.         { 5,  20736 }, -- Formula: Enchant Cloak - Dodge
  212.         { 6,  20730 }, -- Formula: Enchant Gloves - Healing Power
  213.         { 7,  20727 }, -- Formula: Enchant Gloves - Shadow Power
  214.     },
  215. }
  216.  
  217. local AQ_OPENING = {    -- Keys
  218.     name = AL["AQ opening"],
  219.     TableType = NORMAL_ITTYPE,
  220.     ExtraList = true,
  221.     ContentPhase = 5,
  222.     IgnoreAsSource = true,
  223.     [NORMAL_DIFF] = {
  224.         { 1,  21138 }, -- Red Scepter Shard
  225.         { 2,  21529 }, -- Amulet of Shadow Shielding
  226.         { 3,  21530 }, -- Onyx Embedded Leggings
  227.         { 5,  21139 }, -- Green Scepter Shard
  228.         { 6,  21531 }, -- Drake Tooth Necklace
  229.         { 7,  21532 }, -- Drudge Boots
  230.         { 9,  21137 }, -- Blue Scepter Shard
  231.         { 10, 21517 }, -- Gnomish Turban of Psychic Might
  232.         { 11, 21527 }, -- Darkwater Robes
  233.         { 12, 21526 }, -- Band of Icy Depths
  234.         { 13, 21025 }, -- Recipe: Dirge's Kickin' Chimaerok Chops
  235.         { 16, 21175 }, -- The Scepter of the Shifting Sands
  236.         { 17, 21176 }, -- Black Qiraji Resonating Crystal
  237.         { 18, 21523 }, -- Fang of Korialstrasz
  238.         { 19, 21521 }, -- Runesword of the Red
  239.         { 20, 21522 }, -- Shadowsong's Sorrow
  240.         { 21, 21520 }, -- Ravencrest's Legacy
  241.     },
  242. }
  243.  
  244. local DM_BOOKS = { -- DMBooks
  245.     name = AL["Books"],
  246.     ExtraList = true,
  247.     IgnoreAsSource = true,
  248.     [NORMAL_DIFF] = {
  249.         { 1,  18401 }, -- Foror's Compendium of Dragon Slaying
  250.         { 3,  18362 }, -- Holy Bologna: What the Light Won't Tell You
  251.         { 4,  18358 }, -- The Arcanist's Cookbook
  252.         { 5,  18360 }, -- Harnessing Shadows
  253.         { 6,  18356 }, -- Garona: A Study on Stealth and Treachery
  254.         { 7,  18364 }, -- The Emerald Dream
  255.         { 8,  18361 }, -- The Greatest Race of Hunters
  256.         { 9,  18363 }, -- Frost Shock and You
  257.         { 10, 18359 }, -- The Light and How to Swing It
  258.         { 11, 18357 }, -- Codex of Defense
  259.         --{ 16, 18348 }, -- Quel'Serrar
  260.         { 18, 18333 }, -- Libram of Focus
  261.         { 19, 18334 }, -- Libram of Protection
  262.         { 20, 18332 }, -- Libram of Rapidity
  263.         { 22, 11733 }, -- Libram of Constitution
  264.         { 23, 11736 }, -- Libram of Resilience
  265.         { 24, 11732 }, -- Libram of Rumination
  266.         { 25, 11734 }, -- Libram of Tenacity
  267.         { 26, 11737 }, -- Libram of Voracity
  268.     },
  269. }
  270.  
  271. data["Ragefire"] = {
  272.     MapID = 2437,
  273.     InstanceID = 389,
  274.     AtlasModule = ATLAS_MODULE_NAME,
  275.     AtlasMapID = "Ragefire",
  276.     AtlasMapFile = "RagefireChasm",
  277.     ContentType = DUNGEON_CONTENT,
  278.     LoadDifficulty = NORMAL_DIFF,
  279.     LevelRange = GetForVersion({10, 13, 18}, {8, 13, 16}),
  280.     items = {
  281.         { -- RFCTaragaman
  282.             name = AL["Taragaman the Hungerer"],
  283.             npcID = 11520,
  284.             Level = 16,
  285.             DisplayIDs = {{7970}},
  286.             AtlasMapBossID = 2,
  287.             [NORMAL_DIFF] = {
  288.                 { 1,  14149 }, -- Subterranean Cape
  289.                 { 2,  14148 }, -- Crystalline Cuffs
  290.                 { 3,  14145 }, -- Cursed Felblade
  291.             },
  292.         },
  293.         { -- RFCJergosh
  294.             name = AL["Jergosh the Invoker"],
  295.             npcID = 11518,
  296.             Level = 16,
  297.             DisplayIDs = {{11429}},
  298.             AtlasMapBossID = 3,
  299.             [NORMAL_DIFF] = {
  300.                 { 1,  14150 }, -- Robe of Evocation
  301.                 { 2,  14147 }, -- Cavedweller Bracers
  302.                 { 3,  14151 }, -- Chanting Blade
  303.             },
  304.         },
  305.     },
  306. }
  307.  
  308. data["WailingCaverns"] = {
  309.     MapID = 718,
  310.     InstanceID = 43,
  311.     SubAreaIDs = { 15285, 15301, 15294, 15300, 15292, 17731 },
  312.     AtlasModule = ATLAS_MODULE_NAME,
  313.     AtlasMapID = "WailingCaverns",
  314.     AtlasMapFile = {"CL_WailingCaverns", "CL_WailingCavernsEnt"},
  315.     AtlasMapFile_AL = {"WailingCaverns", "WailingCavernsEnt"},
  316.     ContentType = DUNGEON_CONTENT,
  317.     LoadDifficulty = NORMAL_DIFF,
  318.     LevelRange = GetForVersion({10, 17, 24}, {10, 17, 21}),
  319.     items = {
  320.         { -- WCLordCobrahn
  321.             name = AL["Lord Cobrahn"],
  322.             npcID = 3669,
  323.             Level = 20,
  324.             SubAreaID = 15300,
  325.             DisplayIDs = {{4213}},
  326.             AtlasMapBossID = 2,
  327.             [NORMAL_DIFF] = {
  328.                 { 1,  6460 }, -- Cobrahn's Grasp
  329.                 { 2,  10410 }, -- Leggings of the Fang
  330.                 { 4,  6465 }, -- Robe of the Moccasin
  331.             },
  332.         },
  333.         { -- WCLadyAnacondra
  334.             name = AL["Lady Anacondra"],
  335.             npcID = 3671,
  336.             Level = 20,
  337.             DisplayIDs = {{4313}},
  338.             AtlasMapBossID = 3,
  339.             [NORMAL_DIFF] = {
  340.                 { 1,  10412 }, -- Belt of the Fang
  341.                 { 3,  5404 }, -- Serpent's Shoulders
  342.                 { 4,  6446 }, -- Snakeskin Bag
  343.             },
  344.         },
  345.         { -- WCKresh
  346.             name = AL["Kresh"],
  347.             npcID = 3653,
  348.             Level = 20,
  349.             DisplayIDs = {{5126}},
  350.             AtlasMapBossID = 4,
  351.             [NORMAL_DIFF] = {
  352.                 { 1,  13245 }, -- Kresh's Back
  353.                 { 3,  6447 }, -- Worn Turtle Shell Shield
  354.             },
  355.         },
  356.         { -- WCLordPythas
  357.             name = AL["Lord Pythas"],
  358.             npcID = 3670,
  359.             Level = GetForVersion(21, 20),
  360.             SubAreaID = 17731,
  361.             DisplayIDs = {{4214}},
  362.             AtlasMapBossID = 5,
  363.             [NORMAL_DIFF] = {
  364.                 { 1,  6472 }, -- Stinging Viper
  365.                 { 3,  6473 }, -- Armor of the Fang
  366.             },
  367.         },
  368.         { -- WCSkum
  369.             name = AL["Skum"],
  370.             npcID = 3674,
  371.             Level = GetForVersion(21, 20),
  372.             DisplayIDs = {{4203}},
  373.             AtlasMapBossID = 6,
  374.             [NORMAL_DIFF] = {
  375.                 { 1,  6449 }, -- Glowing Lizardscale Cloak
  376.                 { 3,  6448 }, -- Tail Spike
  377.             },
  378.         },
  379.         { -- WCLordSerpentis
  380.             name = AL["Lord Serpentis"],
  381.             npcID = 3673,
  382.             Level = GetForVersion(21, 20),
  383.             DisplayIDs = {{4215}},
  384.             AtlasMapBossID = 7,
  385.             [NORMAL_DIFF] = {
  386.                 { 1,  6469 }, -- Venomstrike
  387.                 { 3,  5970 }, -- Serpent Gloves
  388.                 { 4,  10411 }, -- Footpads of the Fang
  389.                 { 5,  6459 }, -- Savage Trodders
  390.             },
  391.         },
  392.         { -- WCVerdan
  393.             name = AL["Verdan the Everliving"],
  394.             npcID = 5775,
  395.             Level = GetForVersion(21, 20),
  396.             DisplayIDs = {{4256}},
  397.             AtlasMapBossID = 8,
  398.             [NORMAL_DIFF] = {
  399.                 { 1,  6630 }, -- Seedcloud Buckler
  400.                 { 2,  6631 }, -- Living Root
  401.                 { 4,  6629 }, -- Sporid Cape
  402.             },
  403.         },
  404.         { -- WCMutanus
  405.             name = AL["Mutanus the Devourer"],
  406.             npcID = 3654,
  407.             Level = GetForVersion(22, 20),
  408.             SubAreaID = 15294,
  409.             DisplayIDs = {{4088}},
  410.             AtlasMapBossID = 9,
  411.             [NORMAL_DIFF] = {
  412.                 { 1,  6461 }, -- Slime-encrusted Pads
  413.                 { 2,  6627 }, -- Mutant Scale Breastplate
  414.                 { 3,  6463 }, -- Deep Fathom Ring
  415.                 { 16,  10441 }, -- Glowing Shard
  416.             },
  417.         },
  418.         { -- WCDeviateFaerieDragon
  419.             name = AL["Deviate Faerie Dragon"],
  420.             npcID = 5912,
  421.             Level = GetForVersion(19, 20),
  422.             DisplayIDs = {{1267}},
  423.             AtlasMapBossID = 10,
  424.             specialType = "rare",
  425.             [NORMAL_DIFF] = {
  426.                 { 1,  5243 }, -- Firebelcher
  427.                 { 3,  6632 }, -- Feyscale Cloak
  428.             },
  429.         },
  430.         { -- WCTrash
  431.             name = AL["Trash"],
  432.             ExtraList = true,
  433.             [NORMAL_DIFF] = {
  434.                 { 1,  10413 }, -- Gloves of the Fang
  435.             },
  436.         },
  437.     },
  438. }
  439.  
  440. data["TheDeadmines"] = {
  441.     MapID = 1581,
  442.     InstanceID = 36,
  443.     SubAreaIDs = { 19444, 19529, 19502, 26104 },
  444.     AtlasModule = ATLAS_MODULE_NAME,
  445.     AtlasMapID = "TheDeadmines",
  446.     AtlasMapFile_AL = {"TheDeadmines", "TheDeadminesEnt"},
  447.     AtlasMapFile = {"CL_TheDeadmines", "CL_TheDeadminesEnt"},
  448.     ContentType = DUNGEON_CONTENT,
  449.     LoadDifficulty = NORMAL_DIFF,
  450.     LevelRange = GetForVersion({10, 17, 26}, {10, 18, 22}),
  451.     items = {
  452.         {   --DMRhahkZor
  453.             name = AL["Rhahk'Zor"],
  454.             npcID = 644,
  455.             Level = 19,
  456.             DisplayIDs = {{14403}},
  457.             AtlasMapBossID = 1,
  458.             [NORMAL_DIFF] = {
  459.                 { 1, 872 }, -- Rockslicer
  460.                 { 3, 5187 },    -- Rhahk'Zor's Hammer
  461.             },
  462.         },
  463.         {   --DMMinerJohnson
  464.             name = AL["Miner Johnson"],
  465.             npcID = 3586,
  466.             Level = 19,
  467.             DisplayIDs = {{556}},
  468.             specialType = "rare",
  469.             AtlasMapBossID = 2,
  470.             [NORMAL_DIFF] = {
  471.                 { 1, 5443 },    -- Gold-plated Buckler
  472.                 { 3, 5444 },    -- Miner's Cape
  473.             },
  474.         },
  475.         {   --DMSneed
  476.             name = AL["Sneed"],
  477.             npcID = 643,
  478.             Level = 20,
  479.             SubAreaID = 19529,
  480.             DisplayIDs = {{7125}},
  481.             AtlasMapBossID = 3,
  482.             [NORMAL_DIFF] = {
  483.                 { 1, 5194 },    -- Taskmaster Axe
  484.                 { 3, 5195 },    -- Gold-flecked Gloves
  485.             },
  486.         },
  487.         {   --DMSneedsShredder
  488.             name = AL["Sneed's Shredder"],
  489.             npcID = 642,
  490.             Level = 20,
  491.             DisplayIDs = {{1269}},
  492.             AtlasMapBossID = 3,
  493.             [NORMAL_DIFF] = {
  494.                 { 1, 1937 },    -- Buzz Saw
  495.                 { 3, 2169 },    -- Buzzer Blade
  496.             },
  497.         },
  498.         {   --DMGilnid
  499.             name = AL["Gilnid"],
  500.             npcID = 1763,
  501.             Level = 20,
  502.             SubAreaID = 19502,
  503.             DisplayIDs = {{7124}},
  504.             AtlasMapBossID = 4,
  505.             [NORMAL_DIFF] = {
  506.                 { 1, 1156 },    -- Lavishly Jeweled Ring
  507.                 { 3, 5199 },    -- Smelting Pants
  508.             },
  509.         },
  510.         {   --DMMrSmite
  511.             name = AL["Mr. Smite"],
  512.             npcID = 646,
  513.             Level = 20,
  514.             SubAreaID = 26104,
  515.             DisplayIDs = {{2026}},
  516.             AtlasMapBossID = 6,
  517.             [NORMAL_DIFF] = {
  518.                 { 1, 7230 },    -- Smite's Mighty Hammer
  519.                 { 3, 5192 },    -- Thief's Blade
  520.                 { 4, 5196 },    -- Smite's Reaver
  521.             },
  522.         },
  523.         {   --DMCaptainGreenskin
  524.             name = AL["Captain Greenskin"],
  525.             npcID = 647,
  526.             Level = 20,
  527.             DisplayIDs = {{7113},{2349},{2347},{5207}},
  528.             AtlasMapBossID = 6,
  529.             [NORMAL_DIFF] = {
  530.                 { 1, 5201 },    -- Emberstone Staff
  531.                 { 3, 10403 },   -- Blackened Defias Belt
  532.                 { 4, 5200 },    -- Impaling Harpoon
  533.             },
  534.         },
  535.         {   --DMVanCleef
  536.             name = AL["Edwin VanCleef"],
  537.             npcID = 639,
  538.             Level = GetForVersion(21,20),
  539.             DisplayIDs = {{2029}},
  540.             AtlasMapBossID = 6,
  541.             [NORMAL_DIFF] = {
  542.                 { 1, 5193 },    -- Cape of the Brotherhood
  543.                 { 2, 5202 },    -- Corsair's Overshirt
  544.                 { 3, 10399 },   -- Blackened Defias Armor
  545.                 { 4, 5191 },    -- Cruel Barb
  546.                 { 6, 2874 },    -- An Unsent Letter
  547.             },
  548.         },
  549.         {   --DMCookie
  550.             name = AL["Cookie"],
  551.             npcID = 645,
  552.             Level = 20,
  553.             DisplayIDs = {{1305}},
  554.             specialType = "elite",
  555.             AtlasMapBossID = 6,
  556.             [NORMAL_DIFF] = {
  557.                 { 1, 5198 },    -- Cookie's Stirring Rod
  558.                 { 3, 5197 },    -- Cookie's Tenderizer
  559.                 { 5, 8490 },    -- Cat Carrier (Siamese)
  560.             },
  561.         },
  562.         {   --DMDefiasGunpowder
  563.             name = AL["Defias Gunpowder"],
  564.             ExtraList = true,
  565.             AtlasMapBossID = 5,
  566.             [NORMAL_DIFF] = {
  567.                 { 1, 5397 },    -- Defias Gunpowder
  568.             },
  569.         },
  570.         {   --DMTrash
  571.             name = AL["Trash Mobs"],
  572.             ExtraList = true,
  573.             [NORMAL_DIFF] = {
  574.                 { 1, 8492 },    -- Parrot Cage (Green Wing Macaw)
  575.             },
  576.         },
  577.         KEYS,
  578.     }
  579. }
  580.  
  581. data["ShadowfangKeep"] = {
  582.     MapID = 209,
  583.     InstanceID = 33,
  584.     AtlasModule = ATLAS_MODULE_NAME,
  585.     AtlasMapID = "ShadowfangKeep",
  586.     AtlasMapFile = "CL_ShadowfangKeep",
  587.     AtlasMapFile_AL = "ShadowfangKeep",
  588.     ContentType = DUNGEON_CONTENT,
  589.     LoadDifficulty = NORMAL_DIFF,
  590.     LevelRange = GetForVersion({11, 22, 30}, {14, 18, 21}),
  591.     items = {
  592.         { -- SFKRethilgore
  593.             name = AL["Rethilgore"],
  594.             npcID = 3914,
  595.             Level = 20,
  596.             DisplayIDs = {{524}},
  597.             AtlasMapBossID = 1,
  598.             [NORMAL_DIFF] = {
  599.                 { 1,  5254 }, -- Rugged Spaulders
  600.             },
  601.         },
  602.         { -- SFKFelSteed
  603.             name = AL["Fel Steed / Shadow Charger"],
  604.             npcID = {3865, 3864},
  605.             Level = GetForVersion({19, 20}, {18,19}),
  606.             DisplayIDs = {{1952},{1951}},
  607.             AtlasMapBossID = 3,
  608.             [NORMAL_DIFF] = {
  609.                 { 1,  6341 }, -- Eerie Stable Lantern
  610.                 { 3,  932 }, -- Fel Steed Saddlebags
  611.             },
  612.         },
  613.         { -- SFKRazorclawtheButcher
  614.             name = AL["Razorclaw the Butcher"],
  615.             npcID = 3886,
  616.             Level = GetForVersion(22,20),
  617.             DisplayIDs = {{524}},
  618.             AtlasMapBossID = 4,
  619.             [NORMAL_DIFF] = {
  620.                 { 1,  1292 }, -- Butcher's Cleaver
  621.                 { 3,  6226 }, -- Bloody Apron
  622.                 { 4,  6633 }, -- Butcher's Slicer
  623.             },
  624.         },
  625.         { -- SFKSilverlaine
  626.             name = AL["Baron Silverlaine"],
  627.             npcID = 3887,
  628.             Level = GetForVersion(24,20),
  629.             DisplayIDs = {{3222}},
  630.             AtlasMapBossID = 5,
  631.             [NORMAL_DIFF] = {
  632.                 { 1,  6321 }, -- Silverlaine's Family Seal
  633.                 { 3,  6323 }, -- Baron's Scepter
  634.             },
  635.         },
  636.         { -- SFKSpringvale
  637.             name = AL["Commander Springvale"],
  638.             npcID = 4278,
  639.             Level = GetForVersion(24,20),
  640.             DisplayIDs = {{3223}},
  641.             AtlasMapBossID = 6,
  642.             [NORMAL_DIFF] = {
  643.                 { 1,  6320 }, -- Commander's Crest
  644.                 { 3,  3191 }, -- Arced War Axe
  645.             },
  646.         },
  647.         { -- SFKOdotheBlindwatcher
  648.             name = AL["Odo the Blindwatcher"],
  649.             npcID = 4279,
  650.             Level = GetForVersion(24,21),
  651.             DisplayIDs = {{522}},
  652.             AtlasMapBossID = 8,
  653.             [NORMAL_DIFF] = {
  654.                 { 1,  6318 }, -- Odo's Ley Staff
  655.                 { 3,  6319 }, -- Girdle of the Blindwatcher
  656.             },
  657.         },
  658.         { -- SFKDeathswornCaptain
  659.             name = AL["Deathsworn Captain"],
  660.             npcID = 3872,
  661.             Level = GetForVersion(25,21),
  662.             DisplayIDs = {{3224}},
  663.             specialType = "rare",
  664.             AtlasMapBossID = 9,
  665.             [NORMAL_DIFF] = {
  666.                 { 1,  6642 }, -- Phantom Armor
  667.                 { 3,  6641 }, -- Haunting Blade
  668.             },
  669.         },
  670.         { -- SFKArugalsVoidwalker
  671.             name = AL["Arugal's Voidwalker"],
  672.             npcID = 4627,
  673.             Level = GetForVersion({24, 25}, 20),
  674.             DisplayIDs = {{1131}},
  675.             AtlasMapBossID = 10,
  676.             [NORMAL_DIFF] = {
  677.                 { 1,  5943 }, -- Rift Bracers
  678.             },
  679.         },
  680.         { -- SFKFenrustheDevourer
  681.             name = AL["Fenrus the Devourer"],
  682.             npcID = 4274,
  683.             Level = GetForVersion(25,21),
  684.             DisplayIDs = {{2352}},
  685.             AtlasMapBossID = 10,
  686.             [NORMAL_DIFF] = {
  687.                 { 1,  6340 }, -- Fenrus' Hide
  688.                 { 2,  3230 }, -- Black Wolf Bracers
  689.             },
  690.         },
  691.         { -- SFKWolfMasterNandos
  692.             name = AL["Wolf Master Nandos"],
  693.             npcID = 3927,
  694.             Level = GetForVersion(25,21),
  695.             DisplayIDs = {{11179}},
  696.             AtlasMapBossID = 11,
  697.             [NORMAL_DIFF] = {
  698.                 { 1,  3748 }, -- Feline Mantle
  699.                 { 3,  6314 }, -- Wolfmaster Cape
  700.             },
  701.         },
  702.         { -- SFKArchmageArugal
  703.             name = AL["Archmage Arugal"],
  704.             npcID = 4275,
  705.             Level = GetForVersion(25,21),
  706.             DisplayIDs = {{2353}},
  707.             AtlasMapBossID = 12,
  708.             [NORMAL_DIFF] = {
  709.                 { 1,  6324 }, -- Robes of Arugal
  710.                 { 2,  6392 }, -- Belt of Arugal
  711.                 { 3,  6220 }, -- Meteor Shard
  712.             },
  713.         },
  714.         { -- SFKTrash
  715.             name = AL["Trash"],
  716.             ExtraList = true,
  717.             [NORMAL_DIFF] = {
  718.                 { 1,  2292 }, -- Necrology Robes
  719.                 { 2,  1489 }, -- Gloomshroud Armor
  720.                 { 3,  1974 }, -- Mindthrust Bracers
  721.                 { 4,  2807 }, -- Guillotine Axe
  722.                 { 5,  1482 }, -- Shadowfang
  723.                 { 6,  1935 }, -- Assassin's Blade
  724.                 { 7,  1483 }, -- Face Smasher
  725.                 { 8,  1318 }, -- Night Reaver
  726.                 { 9,  3194 }, -- Black Malice
  727.                 { 10, 2205 }, -- Duskbringer
  728.                 { 11, 1484 }, -- Witching Stave
  729.             },
  730.         },
  731.         { -- SFKSever
  732.             name = AL["Sever"],
  733.             npcID = 14682,
  734.             DisplayIDs = {{1061}},
  735.             AtlasMapBossID = 7,
  736.             ContentPhase = 6,
  737.             specialType = "scourgeInvasion",
  738.             ExtraList = true,
  739.             [NORMAL_DIFF] = {
  740.                 { 1,  23173 }, -- Abomination Skin Leggings
  741.                 { 2,  23171 }, -- The Axe of Severing
  742.             },
  743.         },
  744.         AtlasLoot:GameVersion_GE(AtlasLoot.WRATH_VERSION_NUM, { -- SFKApothecaryH
  745.             name = AL["Apothecary Hummel <Crown Chemical Co.>"],
  746.             npcID = 36296,
  747.             Level = 83,
  748.             DisplayIDs = {{31167}},
  749.             AtlasMapBossID = 3,
  750.             ExtraList = true,
  751.             [NORMAL_DIFF] = {
  752.                 { 1,  51804 }, -- Winking Eye of Love
  753.                 { 2,  51805 }, -- Heartbreak Charm
  754.                 { 3,  51806 }, -- Shard of Pirouetting Happiness
  755.                 { 4,  51807 }, -- Sweet Perfume Broach
  756.                 { 5,  51808 }, -- Choker of the Pure Heart
  757.                 { 7,  49641 }, -- Faded Lovely Greeting Card
  758.                 { 8,  49715 }, -- Forever-Lovely Rose
  759.                 { 9,  50250 }, -- X-45 Heartbreaker
  760.                 { 10,  50446 }, -- Toxic Wasteling
  761.                 { 11,  50471 }, -- The Heartbreaker
  762.                 { 12,  50741 }, -- Vile Fumigator's Mask
  763.             },
  764.         }),
  765.         { -- SFKJordansHammer
  766.             name = AL["Jordan's Smithing Hammer"],
  767.             ExtraList = true,
  768.             AtlasMapBossID = 3,
  769.             [NORMAL_DIFF] = {
  770.                 { 1,  6895 }, -- Jordan's Smithing Hammer
  771.             },
  772.         },
  773.         { -- SFKBookofUr
  774.             name = AL["The Book of Ur"],
  775.             ExtraList = true,
  776.             AtlasMapBossID = 10,
  777.             [NORMAL_DIFF] = {
  778.                 { 1,  6283 }, -- The Book of Ur
  779.             },
  780.         },
  781.     },
  782. }
  783.  
  784. data["BlackfathomDeeps"] = {
  785.     MapID = 719,
  786.     InstanceID = 198,
  787.     AtlasModule = ATLAS_MODULE_NAME,
  788.     AtlasMapID = "BlackfathomDeeps",
  789.     AtlasMapFile = {"CL_BlackfathomDeepsA", "CL_BlackfathomDeepsEnt"},
  790.     AtlasMapFile_AL = {"BlackfathomDeeps", "BlackfathomDeepsEnt"},
  791.     ContentType = DUNGEON_CONTENT,
  792.     LoadDifficulty = NORMAL_DIFF,
  793.     LevelRange = GetForVersion({15, 24, 32}, {19, 22, 24}),
  794.     items = {
  795.         { -- BFDGhamoora
  796.             name = AL["Ghamoo-ra"],
  797.             npcID = 4887,
  798.             Level = GetForVersion(25,23),
  799.             DisplayIDs = {{5027}},
  800.             AtlasMapBossID = 1,
  801.             [NORMAL_DIFF] = {
  802.                 { 1,  6907 }, -- Tortoise Armor
  803.                 { 3,  6908 }, -- Ghamoo-ra's Bind
  804.             },
  805.         },
  806.         { -- BFDLadySarevess
  807.             name = AL["Lady Sarevess"],
  808.             npcID = 4831,
  809.             Level = GetForVersion(25,23),
  810.             DisplayIDs = {{4979}},
  811.             AtlasMapBossID = 3,
  812.             [NORMAL_DIFF] = {
  813.                 { 1,  888 }, -- Naga Battle Gloves
  814.                 { 3,  3078 }, -- Naga Heartpiercer
  815.                 { 4,  11121 }, -- Darkwater Talwar
  816.             },
  817.         },
  818.         { -- BFDGelihast
  819.             name = AL["Gelihast"],
  820.             npcID = 6243,
  821.             Level = GetForVersion(26,24),
  822.             DisplayIDs = {{1773}},
  823.             AtlasMapBossID = 5,
  824.             [NORMAL_DIFF] = {
  825.                 { 1,  6906 }, -- Algae Fists
  826.                 { 3,  6905 }, -- Reef Axe
  827.                 { 5,  1470 }, -- Murloc Skin Bag
  828.             },
  829.         },
  830.         { -- BFDBaronAquanis
  831.             name = AL["Baron Aquanis"],
  832.             npcID = 12876,
  833.             Level = GetForVersion(28,24),
  834.             DisplayIDs = {{110}},
  835.             AtlasMapFile = {"CL_BlackfathomDeepsB", "CL_BlackfathomDeepsEnt"},
  836.             AtlasMapBossID = 7,
  837.             [NORMAL_DIFF] = {
  838.                 { 1,  16782 }, -- Strange Water Globe
  839.             },
  840.         },
  841.         { -- BFDTwilightLordKelris
  842.             name = AL["Twilight Lord Kelris"],
  843.             npcID = 4832,
  844.             Level = GetForVersion(27,24),
  845.             DisplayIDs = {{4939}},
  846.             AtlasMapFile = {"CL_BlackfathomDeepsB", "CL_BlackfathomDeepsEnt"},
  847.             AtlasMapBossID = 8,
  848.             [NORMAL_DIFF] = {
  849.                 { 1,  1155 }, -- Rod of the Sleepwalker
  850.                 { 3,  6903 }, -- Gaze Dreamer Pants
  851.             },
  852.         },
  853.         { -- BFDOldSerrakis
  854.             name = AL["Old Serra'kis"],
  855.             npcID = 4830,
  856.             Level = GetForVersion(26,24),
  857.             DisplayIDs = {{1816}},
  858.             AtlasMapFile = {"CL_BlackfathomDeepsC", "CL_BlackfathomDeepsEnt"},
  859.             AtlasMapBossID = 9,
  860.             [NORMAL_DIFF] = {
  861.                 { 1,  6901 }, -- Glowing Thresher Cape
  862.                 { 2,  6904 }, -- Bite of Serra'kis
  863.                 { 4,  6902 }, -- Bands of Serra'kis
  864.             },
  865.         },
  866.         { -- BFDAkumai
  867.             name = AL["Aku'mai"],
  868.             npcID = 4829,
  869.             Level = GetForVersion(28,24),
  870.             DisplayIDs = {{2837}},
  871.             AtlasMapBossID = 10,
  872.             AtlasMapFile = {"CL_BlackfathomDeepsB", "CL_BlackfathomDeepsEnt"},
  873.             [NORMAL_DIFF] = {
  874.                 { 1,  6911 }, -- Moss Cinch
  875.                 { 2,  6910 }, -- Leech Pants
  876.                 { 3,  6909 }, -- Strike of the Hydra
  877.             },
  878.         },
  879.         { -- BFDTrash
  880.             name = AL["Trash"],
  881.             ExtraList = true,
  882.             [NORMAL_DIFF] = {
  883.                 { 1,  1486 }, -- Tree Bark Jacket
  884.                 { 2,  3416 }, -- Martyr's Chain
  885.                 { 3,  1491 }, -- Ring of Precision
  886.                 { 4,  3414 }, -- Crested Scepter
  887.                 { 5,  1454 }, -- Axe of the Enforcer
  888.                 { 6,  1481 }, -- Grimclaw
  889.                 { 7,  2567 }, -- Evocator's Blade
  890.                 { 8,  3413 }, -- Doomspike
  891.                 { 9,  3417 }, -- Onyx Claymore
  892.                 { 10, 3415 }, -- Staff of the Friar
  893.                 { 11, 2271 }, -- Staff of the Blessed Seer
  894.             },
  895.         },
  896.     },
  897. }
  898.  
  899. data["TheStockade"] = {
  900.     MapID = 717,
  901.     InstanceID = 34,
  902.     AtlasModule = ATLAS_MODULE_NAME,
  903.     AtlasMapID = "TheStockade",
  904.     AtlasMapFile = "CL_TheStockade",
  905.     AtlasMapFile_AL = "TheStockade",
  906.     ContentType = DUNGEON_CONTENT,
  907.     LoadDifficulty = NORMAL_DIFF,
  908.     LevelRange = GetForVersion({15, 24, 32}, {15, 23, 29}),
  909.     items = {
  910.         { -- SWStKamDeepfury
  911.             name = AL["Kam Deepfury"],
  912.             npcID = 1666,
  913.             Level = GetForVersion(27, 25),
  914.             DisplayIDs = {{825}},
  915.             AtlasMapBossID = 2,
  916.             [NORMAL_DIFF] = {
  917.                 { 1,  2280 }, -- Kam's Walking Stick
  918.             },
  919.         },
  920.         { -- SWStBruegalIronknuckle
  921.             name = AL["Bruegal Ironknuckle"],
  922.             npcID = 1720,
  923.             Level = GetForVersion(26, 25),
  924.             DisplayIDs = {{2142}},
  925.             AtlasMapBossID = 6,
  926.             specialType = "rare",
  927.             [NORMAL_DIFF] = {
  928.                 { 1,  3228 }, -- Jimmied Handcuffs
  929.                 { 2,  2941 }, -- Prison Shank
  930.                 { 3,  2942 }, -- Iron Knuckles
  931.             },
  932.         },
  933.         { -- SWStTrash
  934.             name = AL["Trash"],
  935.             ExtraList = true,
  936.             [NORMAL_DIFF] = {
  937.                 { 1,  1076 }, -- Defias Renegade Ring
  938.             },
  939.         },
  940.     },
  941. }
  942.  
  943. data["Gnomeregan"] = {
  944.     MapID = 721,
  945.     InstanceID = 200,
  946.     AtlasModule = ATLAS_MODULE_NAME,
  947.     AtlasMapID = "Gnomeregan",
  948.     AtlasMapFile = {"CL_Gnomeregan", "CL_GnomereganEnt"},
  949.     AtlasMapFile_AL = {"Gnomeregan", "GnomereganEnt"},
  950.     ContentType = DUNGEON_CONTENT,
  951.     LoadDifficulty = NORMAL_DIFF,
  952.     LevelRange = GetForVersion({19, 29, 38},{15, 25, 28}),
  953.     items = {
  954.         { -- GnTechbot
  955.             name = AL["Techbot"],
  956.             npcID = 6231,
  957.             Level = 26,
  958.             DisplayIDs = {{7288}},
  959.             [NORMAL_DIFF] = {
  960.                 { 1,  9444 }, -- Techbot CPU Shell
  961.             },
  962.         },
  963.         { -- GnGrubbis
  964.             name = AL["Grubbis"],
  965.             npcID = 7361,
  966.             Level = GetForVersion(32,28),
  967.             DisplayIDs = {{6533}},
  968.             AtlasMapBossID = 1,
  969.             [NORMAL_DIFF] = {
  970.                 { 1,  9445 }, -- Grubbis Paws
  971.             },
  972.         },
  973.         { -- GnViscousFallout
  974.             name = AL["Viscous Fallout"],
  975.             npcID = 7079,
  976.             Level = GetForVersion(30,28),
  977.             DisplayIDs = {{5497}},
  978.             AtlasMapBossID = 4,
  979.             [NORMAL_DIFF] = {
  980.                 { 1,  9454 }, -- Acidic Walkers
  981.                 { 2,  9453 }, -- Toxic Revenger
  982.                 { 3,  9452 }, -- Hydrocane
  983.             },
  984.         },
  985.         { -- GnElectrocutioner6000
  986.             name = AL["Electrocutioner 6000"],
  987.             npcID = 6235,
  988.             Level = GetForVersion(32,28),
  989.             DisplayIDs = {{6915}},
  990.             AtlasMapBossID = 5,
  991.             [NORMAL_DIFF] = {
  992.                 { 1,  9447 }, -- Electrocutioner Lagnut
  993.                 { 2,  9446 }, -- Electrocutioner Leg
  994.                 { 4,  9448 }, -- Spidertank Oilrag
  995.                 { 6,  6893 }, -- Workshop Key
  996.             },
  997.         },
  998.         { -- GnCrowdPummeler960
  999.             name = AL["Crowd Pummeler 9-60"],
  1000.             npcID = 6229,
  1001.             Level = GetForVersion(32,28),
  1002.             DisplayIDs = {{6774}},
  1003.             AtlasMapBossID = 6,
  1004.             [NORMAL_DIFF] = {
  1005.                 { 1,  9449 }, -- Manual Crowd Pummeler
  1006.                 { 3,  9450 }, -- Gnomebot Operating Boots
  1007.             },
  1008.         },
  1009.         { -- GnDIAmbassador
  1010.             name = AL["Dark Iron Ambassador"],
  1011.             npcID = 6228,
  1012.             Level = GetForVersion(33,28),
  1013.             DisplayIDs = {{6669}},
  1014.             AtlasMapBossID = 7,
  1015.             specialType = "rare",
  1016.             [NORMAL_DIFF] = {
  1017.                 { 1,  9455 }, -- Emissary Cuffs
  1018.                 { 2,  9456 }, -- Glass Shooter
  1019.                 { 3,  9457 }, -- Royal Diplomatic Scepter
  1020.             },
  1021.         },
  1022.         { -- GnMekgineerThermaplugg
  1023.             name = AL["Mekgineer Thermaplugg"],
  1024.             npcID = 7800,
  1025.             Level = GetForVersion(34,28),
  1026.             DisplayIDs = {{6980}},
  1027.             AtlasMapBossID = 8,
  1028.             [NORMAL_DIFF] = {
  1029.                 { 1,  9492 }, -- Electromagnetic Gigaflux Reactivator
  1030.                 { 2,  9461 }, -- Charged Gear
  1031.                 { 3,  9458 }, -- Thermaplugg's Central Core
  1032.                 { 4,  9459 }, -- Thermaplugg's Left Arm
  1033.                 { 16, 4415 }, -- Schematic: Craftsman's Monocle
  1034.                 --{ 17, 4393 }, -- Craftsman's Monocle
  1035.                 { 17, 4413 }, -- Schematic: Discombobulator Ray
  1036.                 --{ 20, 4388 }, -- Discombobulator Ray
  1037.                 { 18, 4411 }, -- Schematic: Flame Deflector
  1038.                 --{ 23, 4376 }, -- Flame Deflector
  1039.                 { 19, 7742 }, -- Schematic: Gnomish Cloaking Device
  1040.                 --{ 26, 4397 }, -- Gnomish Cloaking Device
  1041.                 { 20, 11828 }, -- Schematic: Pet Bombling
  1042.                 --{ 29, 11825 }, -- Pet Bombling
  1043.             },
  1044.         },
  1045.         { -- GnTrash
  1046.             name = AL["Trash"],
  1047.             ExtraList = true,
  1048.             [NORMAL_DIFF] = {
  1049.                 { 1,  9508 }, -- Mechbuilder's Overalls
  1050.                 { 2,  9491 }, -- Hotshot Pilot's Gloves
  1051.                 { 3,  9509 }, -- Petrolspill Leggings
  1052.                 { 4,  9510 }, -- Caverndeep Trudgers
  1053.                 { 5,  9487 }, -- Hi-tech Supergun
  1054.                 { 6,  9485 }, -- Vibroblade
  1055.                 { 7,  9488 }, -- Oscillating Power Hammer
  1056.                 { 8,  9486 }, -- Supercharger Battle Axe
  1057.                 { 9,  9490 }, -- Gizmotron Megachopper
  1058.                 { 11, 9489 }, -- Gyromatic Icemaker
  1059.                 { 12, 11827 }, -- Schematic: Lil' Smoky
  1060.                 --{ 15, 11826 }, -- Lil' Smoky
  1061.                 { 16, 9327 }, -- Security DELTA Data Access Card
  1062.                 { 18, 7191 }, -- Fused Wiring
  1063.                 { 19, 9308 }, -- Grime-Encrusted Object
  1064.                 { 20, 9326 }, -- Grime-Encrusted Ring
  1065.                 { 22, 9279 }, -- White Punch Card
  1066.                 { 23, 9280 }, -- Yellow Punch Card
  1067.                 { 24, 9282 }, -- Blue Punch Card
  1068.                 { 25, 9281 }, -- Red Punch Card
  1069.                 { 26, 9316 }, -- Prismatic Punch Card
  1070.             },
  1071.         },
  1072.  
  1073.     },
  1074. }
  1075.  
  1076. data["RazorfenKraul"] = {
  1077.     MapID = 491,
  1078.     InstanceID = 47,
  1079.     AtlasModule = ATLAS_MODULE_NAME,
  1080.     AtlasMapID = "RazorfenKraul",
  1081.     AtlasMapFile = "CL_RazorfenKraul",
  1082.     AtlasMapFile_AL = "RazorfenKraul",
  1083.     ContentType = DUNGEON_CONTENT,
  1084.     LoadDifficulty = NORMAL_DIFF,
  1085.     LevelRange = GetForVersion({25, 29, 38},{17, 24, 27}),
  1086.     items = {
  1087.         { -- RFKAggem
  1088.             name = AL["Aggem Thorncurse"],
  1089.             npcID = 4424,
  1090.             Level = GetForVersion(30,26),
  1091.             DisplayIDs = {{6097}},
  1092.             AtlasMapBossID = 2,
  1093.             [NORMAL_DIFF] = {
  1094.                 { 1,  6681 }, -- Thornspike
  1095.             },
  1096.         },
  1097.         { -- RFKDeathSpeakerJargba
  1098.             name = AL["Death Speaker Jargba"],
  1099.             npcID = 4428,
  1100.             Level = GetForVersion(30,27),
  1101.             DisplayIDs = {{4644}},
  1102.             AtlasMapBossID = 3,
  1103.             [NORMAL_DIFF] = {
  1104.                 { 1,  2816 }, -- Death Speaker Scepter
  1105.                 { 3,  6685 }, -- Death Speaker Mantle
  1106.                 { 4,  6682 }, -- Death Speaker Robes
  1107.             },
  1108.         },
  1109.         { -- RFKOverlordRamtusk
  1110.             name = AL["Overlord Ramtusk"],
  1111.             npcID = 4420,
  1112.             Level = GetForVersion(32,27),
  1113.             DisplayIDs = {{4652}},
  1114.             AtlasMapBossID = 4,
  1115.             [NORMAL_DIFF] = {
  1116.                 { 1,  6687 }, -- Corpsemaker
  1117.                 { 3,  6686 }, -- Tusken Helm
  1118.             },
  1119.         },
  1120.         { -- RFKRazorfenSpearhide
  1121.             name = AL["Razorfen Spearhide"],
  1122.             npcID = 4438,
  1123.             Level = GetForVersion({29, 30},27),
  1124.             DisplayIDs = {{6078}},
  1125.             AtlasMapBossID = 4,
  1126.             [NORMAL_DIFF] = {
  1127.                 { 1,  6679 }, -- Armor Piercer
  1128.             },
  1129.         },
  1130.         { -- RFKAgathelos
  1131.             name = AL["Agathelos the Raging"],
  1132.             npcID = 4422,
  1133.             Level = GetForVersion(33,27),
  1134.             DisplayIDs = {{2450}},
  1135.             AtlasMapBossID = 5,
  1136.             [NORMAL_DIFF] = {
  1137.                 { 1,  6691 }, -- Swinetusk Shank
  1138.                 { 3,  6690 }, -- Ferine Leggings
  1139.             },
  1140.         },
  1141.         { -- RFKBlindHunter
  1142.             name = AL["Blind Hunter"],
  1143.             npcID = 4425,
  1144.             Level = GetForVersion(32,27),
  1145.             DisplayIDs = {{4735}},
  1146.             AtlasMapBossID = 6,
  1147.             specialType = "rare",
  1148.             [NORMAL_DIFF] = {
  1149.                 { 1,  6695 }, -- Stygian Bone Amulet
  1150.                 { 2,  6697 }, -- Batwing Mantle
  1151.                 { 3,  6696 }, -- Nightstalker Bow
  1152.             },
  1153.         },
  1154.         { -- RFKCharlgaRazorflank
  1155.             name = AL["Charlga Razorflank"],
  1156.             npcID = 4421,
  1157.             Level = GetForVersion(33,27),
  1158.             DisplayIDs = {{4642}},
  1159.             AtlasMapBossID = 7,
  1160.             [NORMAL_DIFF] = {
  1161.                 { 1,  6693 }, -- Agamaggan's Clutch
  1162.                 { 2,  6694 }, -- Heart of Agamaggan
  1163.                 { 3,  6692 }, -- Pronged Reaver
  1164.                 { 16,  17008 }, -- Small Scroll
  1165.             },
  1166.         },
  1167.         { -- RFKEarthcallerHalmgar
  1168.             name = AL["Earthcaller Halmgar"],
  1169.             npcID = 4842,
  1170.             Level = GetForVersion(32,27),
  1171.             DisplayIDs = {{6102}},
  1172.             AtlasMapBossID = 9,
  1173.             specialType = "rare",
  1174.             [NORMAL_DIFF] = {
  1175.                 { 1,  6689 }, -- Wind Spirit Staff
  1176.                 { 3,  6688 }, -- Whisperwind Headdress
  1177.             },
  1178.         },
  1179.         { -- RFKTrash
  1180.             name = AL["Trash"],
  1181.             ExtraList = true,
  1182.             [NORMAL_DIFF] = {
  1183.                 { 1,  2264 }, -- Mantle of Thieves
  1184.                 { 2,  1488 }, -- Avenger's Armor
  1185.                 { 3,  4438 }, -- Pugilist Bracers
  1186.                 { 4,  1978 }, -- Wolfclaw Gloves
  1187.                 { 5,  2039 }, -- Plains Ring
  1188.                 { 6,  1727 }, -- Sword of Decay
  1189.                 { 7,  776 }, -- Vendetta
  1190.                 { 8,  1976 }, -- Slaghammer
  1191.                 { 9,  1975 }, -- Pysan's Old Greatsword
  1192.                 { 10, 2549 }, -- Staff of the Shade
  1193.             },
  1194.         },
  1195.     },
  1196. }
  1197.  
  1198. data["ScarletMonasteryGraveyard"] = {
  1199.     MapID = 796,
  1200.     InstanceID = 189,
  1201.     SubAreaIDs = { 21379, 24000, 23805 },
  1202.     name = C_Map.GetAreaInfo(796) .." - ".. AL["Graveyard"],
  1203.     AtlasModule = ATLAS_MODULE_NAME,
  1204.     AtlasMapID = "ScarletMonastery",
  1205.     AtlasMapFile = {"CL_SMGraveyard", "CL_ScarletMonasteryEnt"},
  1206.     AtlasMapFile_AL = {"SMGraveyard", "SMEnt"},
  1207.     ContentType = DUNGEON_CONTENT,
  1208.     LoadDifficulty = NORMAL_DIFF,
  1209.     LevelRange = GetForVersion({20, 26, 36},{20, 30, 32}),
  1210.     items = {
  1211.         -- Graveyard
  1212.         { -- SMVishas
  1213.             name = AL["Interrogator Vishas"],
  1214.             npcID = 3983,
  1215.             Level = 32,
  1216.             DisplayIDs = {{2044}},
  1217.             SubAreaID = 21379,
  1218.             AtlasMapBossID = 1,
  1219.             [NORMAL_DIFF] = {
  1220.                 { 1,  7682 }, -- Torturing Poker
  1221.                 { 3,  7683 }, -- Bloody Brass Knuckles
  1222.             },
  1223.         },
  1224.         { -- SMAzshir
  1225.             name = AL["Azshir the Sleepless"],
  1226.             npcID = 6490,
  1227.             Level = GetForVersion(33,32),
  1228.             DisplayIDs = {{5534}},
  1229.             SubAreaID = 24000,
  1230.             AtlasMapBossID = "1'",
  1231.             specialType = "rare",
  1232.             [NORMAL_DIFF] = {
  1233.                 { 1,  7709 }, -- Blighted Leggings
  1234.                 { 2,  7708 }, -- Necrotic Wand
  1235.                 { 3,  7731 }, -- Ghostshard Talisman
  1236.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1237.                 { 17, 217295 }, -- Necrotic Wand
  1238.                 { 18, 217296 }, -- Ghostshard Talisman         
  1239.             },
  1240.         },
  1241.         { -- SMFallenChampion
  1242.             name = AL["Fallen Champion"],
  1243.             npcID = 6488,
  1244.             Level = GetForVersion(33,32),
  1245.             DisplayIDs = {{5230}},
  1246.             specialType = "rare",
  1247.             AtlasMapBossID = "1'",
  1248.             [NORMAL_DIFF] = {
  1249.                 { 1,  7691 }, -- Embalmed Shroud
  1250.                 { 2,  7690 }, -- Ebon Vise
  1251.                 { 3,  7689 }, -- Morbid Dawn
  1252.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1253.                 { 17, 217294 }, -- Embalmed Shroud
  1254.             },
  1255.         },
  1256.         { -- SMIronspine
  1257.             name = AL["Ironspine"],
  1258.             npcID = 6489,
  1259.             Level = GetForVersion(33,32),
  1260.             DisplayIDs = {{5231}},
  1261.             AtlasMapBossID = "1'",
  1262.             specialType = "rare",
  1263.             [NORMAL_DIFF] = {
  1264.                 { 1,  7688 }, -- Ironspine's Ribcage
  1265.                 { 2,  7687 }, -- Ironspine's Fist
  1266.                 { 3,  7686 }, -- Ironspine's Eye
  1267.             },
  1268.         },
  1269.         { -- SMBloodmageThalnos
  1270.             name = AL["Bloodmage Thalnos"],
  1271.             npcID = 4543,
  1272.             Level = GetForVersion(33,32),
  1273.             SubAreaID = 23805,
  1274.             DisplayIDs = {{11396}},
  1275.             AtlasMapBossID = 3,
  1276.             [NORMAL_DIFF] = {
  1277.                 { 1,  7685 }, -- Orb of the Forgotten Seer
  1278.                 { 3,  7684 }, -- Bloodmage Mantle
  1279.             },
  1280.         },
  1281.         { -- SMGTrash
  1282.             name = AL["Trash"],
  1283.             ExtraList = true,
  1284.             [NORMAL_DIFF] = {
  1285.                 { 1,  5819 }, -- Sunblaze Coif
  1286.                 { 2,  7727 }, -- Watchman Pauldrons
  1287.                 { 3,  7728 }, -- Beguiler Robes
  1288.                 { 4,  7754 }, -- Harbinger Boots
  1289.                 { 5,  10332 }, -- Scarlet Boots
  1290.                 { 6,  2262 }, -- Mark of Kern
  1291.                 { 7,  7787 }, -- Resplendent Guardian
  1292.                 { 8,  7729 }, -- Chesterfall Musket
  1293.                 { 9,  7761 }, -- Steelclaw Reaver
  1294.                 { 10, 7752 }, -- Dreamslayer
  1295.                 { 11, 8226 }, -- The Butcher
  1296.                 { 12, 7786 }, -- Headsplitter
  1297.                 { 13, 7753 }, -- Bloodspiller
  1298.                 { 14, 7730 }, -- Cobalt Crusher
  1299.             },
  1300.         },
  1301.         { -- SMScorn
  1302.             name = AL["Scorn"],
  1303.             npcID = 14693,
  1304.             DisplayIDs = {{16197}},
  1305.             AtlasMapBossID = 1,
  1306.             ContentPhase = 6,
  1307.             specialType = "scourgeInvasion",
  1308.             ExtraList = true,
  1309.             [NORMAL_DIFF] = {
  1310.                 { 1, 23169 }, -- Scorn's Icy Choker
  1311.                 { 2, 23170 }, -- The Frozen Clutch
  1312.                 { 3, 23168 }, -- Scorn's Focal Dagger
  1313.             },
  1314.         },
  1315.         AtlasLoot:GameVersion_GE(AtlasLoot.WRATH_VERSION_NUM, { -- SMHeadlessHorseman
  1316.             name = AL["Headless Horseman"],
  1317.             npcID = 23682,
  1318.             Level = 83,
  1319.             DisplayIDs = {{22351}},
  1320.             AtlasMapBossID = nil,
  1321.             ExtraList = true,
  1322.             [NORMAL_DIFF] = {
  1323.                 { 1, 211817 }, -- Ring of Ghoulish Glee
  1324.                 { 2, 211844 }, -- The Horseman's Seal
  1325.                 { 3, 211847 }, -- Wicked Witch's Band
  1326.                 { 5, 211850 }, -- The Horseman's Horrific Helm
  1327.                 { 6, 211851 }, -- The Horseman's Baleful Blade
  1328.                 { 8, 33292 }, -- Hallowed Helm
  1329.                 { 10, 34068 }, -- Weighted Jack-o'-Lantern
  1330.                 { 12, 33277 }, -- Tome of Thomas Thomson
  1331.                 { 16, 37012 }, -- The Horseman's Reins
  1332.                 { 18, 33182 }, -- Swift Flying Broom        280% flying
  1333.                 { 19, 33176 }, -- Flying Broom              60% flying
  1334.                 { 21, 33184 }, -- Swift Magic Broom         100% ground
  1335.                 { 22, 37011 }, -- Magic Broom               60% ground
  1336.                 { 24, 33154 }, -- Sinister Squashling
  1337.             }
  1338.         }),
  1339.         KEYS,
  1340.     },
  1341. }
  1342.  
  1343. data["ScarletMonasteryLibrary"] = {
  1344.     MapID = 796,
  1345.     InstanceID = 189,
  1346.     SubAreaIDs = { 21426, 21444, 21420 },
  1347.     name = C_Map.GetAreaInfo(796) .." - ".. AL["Library"],
  1348.     AtlasModule = ATLAS_MODULE_NAME,
  1349.     AtlasMapID = "ScarletMonastery",
  1350.     AtlasMapFile = {"CL_SMLibrary", "CL_ScarletMonasteryEnt"},
  1351.     AtlasMapFile_AL = {"SMLibrary", "SMEnt"},
  1352.     ContentType = DUNGEON_CONTENT,
  1353.     LoadDifficulty = NORMAL_DIFF,
  1354.     LevelRange = GetForVersion({20, 29, 39},{20, 33, 35}),
  1355.     items = {
  1356.         -- Library
  1357.         { -- SMHoundmasterLoksey
  1358.             name = AL["Houndmaster Loksey"],
  1359.             npcID = 3974,
  1360.             Level = 34,
  1361.             SubAreaID = 21444,
  1362.             DisplayIDs = {{2040}},
  1363.             AtlasMapBossID = 1,
  1364.             [NORMAL_DIFF] = {
  1365.                 { 1,  7710 }, -- Loksey's Training Stick
  1366.                 { 3,  7756 }, -- Dog Training Gloves
  1367.                 { 4,  3456 }, -- Dog Whistle
  1368.             },
  1369.         },
  1370.         { -- SMDoan
  1371.             name = AL["Arcanist Doan"],
  1372.             npcID = 6487,
  1373.             Level = GetForVersion(37,34),
  1374.             SubAreaID = 21420,
  1375.             DisplayIDs = {{5266}},
  1376.             AtlasMapBossID = 2,
  1377.             [NORMAL_DIFF] = {
  1378.                 { 1,  7714 }, -- Hypnotic Blade
  1379.                 { 2,  7713 }, -- Illusionary Rod
  1380.                 { 4,  7712 }, -- Mantle of Doan
  1381.                 { 5,  7711 }, -- Robe of Doan
  1382.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1383.                 { 17, 217299 }, -- Illusionary Rod
  1384.                 { 19, 217298 }, -- Mantle of Doan
  1385.                 { 20, 217297 }, -- Robe of Doan
  1386.                 AtlasLoot:GameVersion_GE(AtlasLoot.BC_VERSION_NUM, { 22,  34227 }), -- Deadman's Hand
  1387.             },
  1388.         },
  1389.         { -- SMLTrash
  1390.             name = AL["Trash"],
  1391.             ExtraList = true,
  1392.             [NORMAL_DIFF] = {
  1393.                 { 1,  5819 }, -- Sunblaze Coif
  1394.                 { 2,  7755 }, -- Flintrock Shoulders
  1395.                 { 3,  7727 }, -- Watchman Pauldrons
  1396.                 { 4,  7728 }, -- Beguiler Robes
  1397.                 { 5,  7759 }, -- Archon Chestpiece
  1398.                 { 6,  7760 }, -- Warchief Kilt
  1399.                 { 7,  7754 }, -- Harbinger Boots
  1400.                 { 8,  10332 }, -- Scarlet Boots
  1401.                 { 9,  1992 }, -- Swampchill Fetish
  1402.                 { 10, 2262 }, -- Mark of Kern
  1403.                 { 11, 7787 }, -- Resplendent Guardian
  1404.                 { 12, 7729 }, -- Chesterfall Musket
  1405.                 { 13, 7761 }, -- Steelclaw Reaver
  1406.                 { 14, 7752 }, -- Dreamslayer
  1407.                 { 15, 8226 }, -- The Butcher
  1408.                 { 16, 7786 }, -- Headsplitter
  1409.                 { 17, 5756 }, -- Sliverblade
  1410.                 { 18, 7736 }, -- Fight Club
  1411.                 { 19, 8225 }, -- Tainted Pierce
  1412.                 { 20, 7753 }, -- Bloodspiller
  1413.                 { 21, 7730 }, -- Cobalt Crusher
  1414.                 { 22, 7758 }, -- Ruthless Shiv
  1415.                 { 23, 7757 }, -- Windweaver Staff
  1416.             },
  1417.         },
  1418.         {
  1419.             name = AL["Doan's Strongbox"],
  1420.             ExtraList = true,
  1421.             AtlasMapBossID = "1'",
  1422.             [NORMAL_DIFF] = {
  1423.                 { 1,  7146 }, -- The Scarlet Key
  1424.             },
  1425.         },
  1426.         KEYS,
  1427.     },
  1428. }
  1429.  
  1430. data["ScarletMonasteryArmory"] = {
  1431.     MapID = 796,
  1432.     InstanceID = 189,
  1433.     SubAreaIDs = { 21460, 21455, 21448, 21457 },
  1434.     name = C_Map.GetAreaInfo(796) .." - ".. AL["Armory"],
  1435.     AtlasModule = ATLAS_MODULE_NAME,
  1436.     AtlasMapID = "ScarletMonastery",
  1437.     AtlasMapFile = {"CL_SMArmory", "CL_ScarletMonasteryEnt"},
  1438.     AtlasMapFile_AL = {"SMArmory", "SMEnt"},
  1439.     ContentType = DUNGEON_CONTENT,
  1440.     LoadDifficulty = NORMAL_DIFF,
  1441.     LevelRange = GetForVersion({20, 32, 42},{20, 35, 37}),
  1442.     items = {
  1443.         -- Armory
  1444.         { -- SMHerod
  1445.             name = AL["Herod"],
  1446.             npcID = 3975,
  1447.             Level = GetForVersion(40,37),
  1448.             SubAreaID = 21448,
  1449.             DisplayIDs = {{2041}},
  1450.             AtlasMapBossID = 1,
  1451.             [NORMAL_DIFF] = {
  1452.                 { 1,  7719 }, -- Raging Berserker's Helm
  1453.                 { 2,  7718 }, -- Herod's Shoulder
  1454.                 { 3,  10330 }, -- Scarlet Leggings
  1455.                 { 4,  7717 }, -- Ravager
  1456.             },
  1457.         },
  1458.         { -- SMATrash
  1459.             name = AL["Trash"],
  1460.             ExtraList = true,
  1461.             [NORMAL_DIFF] = {
  1462.                 { 1,  5819 }, -- Sunblaze Coif
  1463.                 { 2,  7755 }, -- Flintrock Shoulders
  1464.                 { 3,  7727 }, -- Watchman Pauldrons
  1465.                 { 4,  7728 }, -- Beguiler Robes
  1466.                 { 5,  7759 }, -- Archon Chestpiece
  1467.                 { 6,  7754 }, -- Harbinger Boots
  1468.                 { 7,  10332 }, -- Scarlet Boots
  1469.                 { 8,  1992 }, -- Swampchill Fetish
  1470.                 { 9,  2262 }, -- Mark of Kern
  1471.                 { 10, 7787 }, -- Resplendent Guardian
  1472.                 { 11, 7729 }, -- Chesterfall Musket
  1473.                 { 12, 7761 }, -- Steelclaw Reaver
  1474.                 { 13, 7752 }, -- Dreamslayer
  1475.                 { 14, 8226 }, -- The Butcher
  1476.                 { 15, 7786 }, -- Headsplitter
  1477.                 { 16, 5756 }, -- Sliverblade
  1478.                 { 17, 7736 }, -- Fight Club
  1479.                 { 18, 8225 }, -- Tainted Pierce
  1480.                 { 19, 7753 }, -- Bloodspiller
  1481.                 { 20, 7730 }, -- Cobalt Crusher
  1482.                 { 21, 7757 }, -- Windweaver Staff
  1483.                 { 23, 10333 }, -- Scarlet Wristguards
  1484.                 { 24, 10329 }, -- Scarlet Belt
  1485.                 { 26, 23192 }, -- Tabard of the Scarlet Crusade
  1486.             },
  1487.         },
  1488.         KEYS,
  1489.     },
  1490. }
  1491.  
  1492. data["ScarletMonasteryCathedral"] = {
  1493.     MapID = 796,
  1494.     InstanceID = 189,
  1495.     SubAreaIDs = { 21401, 21410 },
  1496.     name = C_Map.GetAreaInfo(796) .." - ".. AL["Cathedral"],
  1497.     AtlasModule = ATLAS_MODULE_NAME,
  1498.     AtlasMapID = "ScarletMonastery",
  1499.     AtlasMapFile = {"CL_SMCathedral", "CL_ScarletMonasteryEnt"},
  1500.     AtlasMapFile_AL = {"SMCathedral", "SMEnt"},
  1501.     ContentType = DUNGEON_CONTENT,
  1502.     LoadDifficulty = NORMAL_DIFF,
  1503.     LevelRange = GetForVersion({20, 35, 45},{20, 36, 40}),
  1504.     items = {
  1505.         -- Cathedral
  1506.         { -- SMFairbanks
  1507.             name = AL["High Inquisitor Fairbanks"],
  1508.             npcID = 4542,
  1509.             Level = 40,
  1510.             DisplayIDs = {{2605}},
  1511.             AtlasMapBossID = 1,
  1512.             [NORMAL_DIFF] = {
  1513.                 { 1,  19507 }, -- Inquisitor's Shawl
  1514.                 { 2,  19508 }, -- Branded Leather Bracers
  1515.                 { 3,  19509 }, -- Dusty Mail Boots
  1516.             },
  1517.         },
  1518.         { -- SMMograine
  1519.             name = AL["Scarlet Commander Mograine"],
  1520.             npcID = 3976,
  1521.             Level = GetForVersion(42,40),
  1522.             DisplayIDs = {{2042}},
  1523.             AtlasMapBossID = 2,
  1524.             [NORMAL_DIFF] = {
  1525.                 { 1,  7724 }, -- Gauntlets of Divinity
  1526.                 { 2,  10330 }, -- Scarlet Leggings
  1527.                 { 3,  7726 }, -- Aegis of the Scarlet Commander
  1528.                 { 4,  7723 }, -- Mograine's Might
  1529.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1530.                 { 17, 217302 }, -- Mograine's Might
  1531.             },
  1532.         },
  1533.         { -- SMWhitemane
  1534.             name = AL["High Inquisitor Whitemane"],
  1535.             npcID = 3977,
  1536.             Level = GetForVersion(42,40),
  1537.             DisplayIDs = {{2043}},
  1538.             AtlasMapBossID = 3,
  1539.             [NORMAL_DIFF] = {
  1540.                 { 1,  7720 }, -- Whitemane's Chapeau
  1541.                 { 2,  7722 }, -- Triune Amulet
  1542.                 { 3,  7721 }, -- Hand of Righteousness
  1543.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1544.                 { 17, 217300 }, -- Whitemane's Chapeau
  1545.                 { 18, 217301 }, -- Triune Amulet
  1546.  
  1547.             },
  1548.         },
  1549.         { -- SMCTrash
  1550.             name = AL["Trash"],
  1551.             ExtraList = true,
  1552.             [NORMAL_DIFF] = {
  1553.                 { 1,  5819 }, -- Sunblaze Coif
  1554.                 { 2,  7755 }, -- Flintrock Shoulders
  1555.                 { 3,  7727 }, -- Watchman Pauldrons
  1556.                 { 4,  7728 }, -- Beguiler Robes
  1557.                 { 5,  7759 }, -- Archon Chestpiece
  1558.                 { 6,  7760 }, -- Warchief Kilt
  1559.                 { 7,  7754 }, -- Harbinger Boots
  1560.                 { 8,  10332 }, -- Scarlet Boots
  1561.                 { 9,  1992 }, -- Swampchill Fetish
  1562.                 { 10, 2262 }, -- Mark of Kern
  1563.                 { 11, 7787 }, -- Resplendent Guardian
  1564.                 { 12, 7729 }, -- Chesterfall Musket
  1565.                 { 13, 7761 }, -- Steelclaw Reaver
  1566.                 { 14, 7752 }, -- Dreamslayer
  1567.                 { 15, 8226 }, -- The Butcher
  1568.                 { 16, 7786 }, -- Headsplitter
  1569.                 { 17, 5756 }, -- Sliverblade
  1570.                 { 18, 7736 }, -- Fight Club
  1571.                 { 19, 8225 }, -- Tainted Pierce
  1572.                 { 20, 7753 }, -- Bloodspiller
  1573.                 { 21, 7730 }, -- Cobalt Crusher
  1574.                 { 22, 7758 }, -- Ruthless Shiv
  1575.                 { 23, 7757 }, -- Windweaver Staff
  1576.                 { 25, 10328 }, -- Scarlet Chestpiece
  1577.                 { 26, 10331 }, -- Scarlet Gauntlets
  1578.                 { 27, 10329 }, -- Scarlet Belt
  1579.             },
  1580.         },
  1581.         KEYS,
  1582.     },
  1583. }
  1584.  
  1585. data["RazorfenDowns"] = {
  1586.     MapID = 722,
  1587.     InstanceID = 129,
  1588.     AtlasModule = ATLAS_MODULE_NAME,
  1589.     AtlasMapID = "RazorfenDowns",
  1590.     AtlasMapFile = "CL_RazorfenDowns",
  1591.     AtlasMapFile_AL = "RazorfenDowns",
  1592.     ContentType = DUNGEON_CONTENT,
  1593.     LoadDifficulty = NORMAL_DIFF,
  1594.     LevelRange = GetForVersion({35, 37, 46},{25, 34, 37}),
  1595.     items = {
  1596.         { -- RFDTutenkash
  1597.             name = AL["Tuten'kash"],
  1598.             npcID = 7355,
  1599.             Level = GetForVersion(40,37),
  1600.             DisplayIDs = {{7845}},
  1601.             AtlasMapBossID = 1,
  1602.             [NORMAL_DIFF] = {
  1603.                 { 1,  10776 }, -- Silky Spider Cape
  1604.                 { 2,  10775 }, -- Carapace of Tuten'kash
  1605.                 { 3,  10777 }, -- Arachnid Gloves
  1606.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1607.                 { 17, 217293 }, -- Silky Spider Cape
  1608.             },
  1609.         },
  1610.         { -- RFDMordreshFireEye
  1611.             name = AL["Mordresh Fire Eye"],
  1612.             npcID = 7357,
  1613.             Level = GetForVersion(39,37),
  1614.             DisplayIDs = {{8055}},
  1615.             AtlasMapBossID = 3,
  1616.             [NORMAL_DIFF] = {
  1617.                 { 1,  10769 }, -- Glowing Eye of Mordresh
  1618.                 { 2,  10771 }, -- Deathmage Sash
  1619.                 { 3,  10770 }, -- Mordresh's Lifeless Skull
  1620.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1621.                 { 17, 217290 }, -- Glowing Eye of Mordresh
  1622.                 { 18, 217292 }, -- Deathmage Sash
  1623.                 { 19, 217291 }, -- Mordresh's Lifeless Skull
  1624.  
  1625.             },
  1626.         },
  1627.         { -- RFDGlutton
  1628.             name = AL["Glutton"],
  1629.             npcID = 8567,
  1630.             Level = GetForVersion(40,37),
  1631.             DisplayIDs = {{7864}},
  1632.             AtlasMapBossID = 4,
  1633.             [NORMAL_DIFF] = {
  1634.                 { 1,  10774 }, -- Fleshhide Shoulders
  1635.                 { 3,  10772 }, -- Glutton's Cleaver
  1636.             },
  1637.         },
  1638.         { -- RFDRagglesnout
  1639.             name = AL["Ragglesnout"],
  1640.             npcID = 7354,
  1641.             Level = GetForVersion(40,37),
  1642.             DisplayIDs = {{11382}},
  1643.             AtlasMapBossID = 5,
  1644.             specialType = "rare",
  1645.             [NORMAL_DIFF] = {
  1646.                 { 1,  10768 }, -- Boar Champion's Belt
  1647.                 { 2,  10767 }, -- Savage Boar's Guard
  1648.                 { 3,  10758 }, -- X'caliboar
  1649.             },
  1650.         },
  1651.         { -- RFDAmnennar
  1652.             name = AL["Amnennar the Coldbringer"],
  1653.             npcID = 7358,
  1654.             Level = GetForVersion(41,37),
  1655.             DisplayIDs = {{7971}},
  1656.             AtlasMapBossID = 6,
  1657.             [NORMAL_DIFF] = {
  1658.                 { 1,  10763 }, -- Icemetal Barbute
  1659.                 { 2,  10762 }, -- Robes of the Lich
  1660.                 { 3,  10764 }, -- Deathchill Armor
  1661.                 { 4,  10761 }, -- Coldrage Dagger
  1662.                 { 6,  10765 }, -- Bonefingers
  1663.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1664.                 { 17, 217288 }, -- Robes of the Lich
  1665.                 { 18, 217289 }, -- Deathchill Armor
  1666.             },
  1667.         },
  1668.         { -- RFDPlaguemaw
  1669.             name = AL["Plaguemaw the Rotting"],
  1670.             npcID = 7356,
  1671.             Level = GetForVersion(40,37),
  1672.             DisplayIDs = {{6124}},
  1673.             AtlasMapBossID = 7,
  1674.             [NORMAL_DIFF] = {
  1675.                 { 1,  10766 }, -- Plaguerot Sprig
  1676.                 { 3,  10760 }, -- Swine Fists
  1677.             },
  1678.         },
  1679.  
  1680.         { -- RFDTrash
  1681.             name = AL["Trash"],
  1682.             ExtraList = true,
  1683.             [NORMAL_DIFF] = {
  1684.                 { 1,  10574 }, -- Corpseshroud
  1685.                 { 2,  10581 }, -- Death's Head Vestment
  1686.                 { 3,  10583 }, -- Quillward Harness
  1687.                 { 4,  10584 }, -- Stormgale Fists
  1688.                 { 5,  10578 }, -- Thoughtcast Boots
  1689.                 { 6,  10582 }, -- Briar Tredders
  1690.                 { 7,  10572 }, -- Freezing Shard
  1691.                 { 8,  10567 }, -- Quillshooter
  1692.                 { 9,  10571 }, -- Ebony Boneclub
  1693.                 { 10, 10570 }, -- Manslayer
  1694.                 { 11, 10573 }, -- Boneslasher
  1695.             },
  1696.         },
  1697.         { -- RFDLadyF
  1698.             name = AL["Lady Falther'ess"],
  1699.             npcID = 14686,
  1700.             DisplayIDs = {{10698}},
  1701.             AtlasMapBossID = 2,
  1702.             ContentPhase = 6,
  1703.             specialType = "scourgeInvasion",
  1704.             ExtraList = true,
  1705.             [NORMAL_DIFF] = {
  1706.                 { 1,  23178 }, -- Mantle of Lady Falther'ess
  1707.                 { 2,  23177 }, -- Lady Falther'ess' Finger
  1708.             },
  1709.         },
  1710.         { -- RFDHenryStern
  1711.             name = AL["Henry Stern"],
  1712.             npcID = 8696,
  1713.             DisplayIDs = {{8029}},
  1714.             AtlasMapBossID = 2,
  1715.             ExtraList = true,
  1716.             [NORMAL_DIFF] = {
  1717.                 { 1,  3826 }, -- Mighty Troll's Blood Potion
  1718.                 { 2,  10841 }, -- Goldthorn Tea
  1719.             },
  1720.         },
  1721.     },
  1722. }
  1723.  
  1724. data["Uldaman"] = {
  1725.     MapID = 1337, -- just no...
  1726.     InstanceID = 70,
  1727.     AtlasModule = ATLAS_MODULE_NAME,
  1728.     AtlasMapID = "Uldaman",
  1729.     ContentType = DUNGEON_CONTENT,
  1730.     LoadDifficulty = NORMAL_DIFF,
  1731.     AtlasMapFile = {"CL_Uldaman", "CL_UldamanEnt"},
  1732.     AtlasMapFile_AL = {"Uldaman", "UldamanEnt"},
  1733.     LevelRange = GetForVersion({30, 41, 51},{30, 36, 40}),
  1734.     items = {
  1735.         { -- UldEric
  1736.             name = AL["Eric \"The Swift\""],
  1737.             npcID = 6907,
  1738.             Level = GetForVersion(40,39),
  1739.             DisplayIDs = {{5708}},
  1740.             AtlasMapBossID = 1,
  1741.             [NORMAL_DIFF] = {
  1742.                 { 1,  9394 }, -- Horned Viking Helmet
  1743.                 { 3,  9398 }, -- Worn Running Boots
  1744.                 { 5,  2459 }, -- Swiftness Potion
  1745.             },
  1746.         },
  1747.         { -- UldBaelog
  1748.             name = AL["Baelog"],
  1749.             npcID = 6906,
  1750.             Level = GetForVersion(41,39),
  1751.             DisplayIDs = {{5710}},
  1752.             AtlasMapBossID = 1,
  1753.             [NORMAL_DIFF] = {
  1754.                 { 1,  9401 }, -- Nordic Longshank
  1755.                 { 3,  9399 }, -- Precision Arrow
  1756.                 { 5,  9400 }, -- Baelog's Shortbow
  1757.             },
  1758.         },
  1759.         { -- UldOlaf
  1760.             name = AL["Olaf"],
  1761.             npcID = 6908,
  1762.             Level = GetForVersion(40,39),
  1763.             DisplayIDs = {{5709}},
  1764.             AtlasMapBossID = 1,
  1765.             [NORMAL_DIFF] = {
  1766.                 { 1,  9404 }, -- Olaf's All Purpose Shield
  1767.                 { 3,  9403 }, -- Battered Viking Shield
  1768.                 { 4,  1177 }, -- Oil of Olaf
  1769.             },
  1770.         },
  1771.         { -- UldRevelosh
  1772.             name = AL["Revelosh"],
  1773.             npcID = 6910,
  1774.             Level = GetForVersion(40,39),
  1775.             DisplayIDs = {{5945}},
  1776.             AtlasMapBossID = 3,
  1777.             [NORMAL_DIFF] = {
  1778.                 { 1,  9389 }, -- Revelosh's Spaulders
  1779.                 { 2,  9388 }, -- Revelosh's Armguards
  1780.                 { 3,  9390 }, -- Revelosh's Gloves
  1781.                 { 4,  9387 }, -- Revelosh's Boots
  1782.                 { 6,  7741 }, -- The Shaft of Tsol
  1783.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1784.                 { 17, 217304 }, -- Revelosh's Gloves
  1785.                 { 18, 217307 }, -- Revelosh's Spaulders
  1786.                 { 19, 217305 }, -- Revelosh's Armguards
  1787.                 { 20, 217306 }, -- Revelosh's Boots
  1788.             },
  1789.         },
  1790.         { -- UldIronaya
  1791.             name = AL["Ironaya"],
  1792.             npcID = 7228,
  1793.             Level = GetForVersion(40,39),
  1794.             DisplayIDs = {{6089}},
  1795.             AtlasMapBossID = 4,
  1796.             [NORMAL_DIFF] = {
  1797.                 { 1,  9409 }, -- Ironaya's Bracers
  1798.                 { 2,  9407 }, -- Stoneweaver Leggings
  1799.                 { 3,  9408 }, -- Ironshod Bludgeon
  1800.                 { 16, "INV_Box_01", nil, AL["Updated in SoD"], nil },
  1801.                 { 17, 217303 }, -- Whitemane's Chapeau
  1802.             },
  1803.         },
  1804.         { -- UldObsidianSentinel
  1805.             name = AL["Obsidian Sentinel"],
  1806.             npcID = 7023,
  1807.             Level = GetForVersion(42,40),
  1808.             DisplayIDs = {{5285}},
  1809.             AtlasMapBossID = 5,
  1810.             [NORMAL_DIFF] = {
  1811.                 { 1,  8053 }, -- Obsidian Power Source
  1812.             },
  1813.         },
  1814.         { -- UldAncientStoneKeeper
  1815.             name = AL["Ancient Stone Keeper"],
  1816.             npcID = 7206,
  1817.             Level = GetForVersion(44,40),
  1818.             DisplayIDs = {{10798}},
  1819.             AtlasMapBossID = 7,
  1820.             [NORMAL_DIFF] = {
  1821.                 { 1,  9410 }, -- Cragfists
  1822.                 { 3,  9411 }, -- Rockshard Pauldrons
  1823.             },
  1824.         },
  1825.         { -- UldGalgannFirehammer
  1826.             name = AL["Galgann Firehammer"],
  1827.             npcID = 7291,
  1828.             Level = GetForVersion(45,40),
  1829.             DisplayIDs = {{6059}},
  1830.             AtlasMapBossID = 8,
  1831.             [NORMAL_DIFF] = {
  1832.                 { 1,  11310 }, -- Flameseer Mantle
  1833.                 { 2,  9412 }, -- Galgann's Fireblaster
  1834.                 { 4,  11311 }, -- Emberscale Cape
  1835.                 { 5,  9419 }, -- Galgann's Firehammer
  1836.             },
  1837.         },
  1838.         { -- UldGrimlok
  1839.             name = AL["Grimlok"],
  1840.             npcID = 4854,
  1841.             Level = GetForVersion(45,40),
  1842.             DisplayIDs = {{11165}},
  1843.             AtlasMapBossID = 9,
  1844.             [NORMAL_DIFF] = {
  1845.                 { 1,  9415 }, -- Grimlok's Tribal Vestments
  1846.                 { 2,  9416 }, -- Grimlok's Charge
  1847.                 { 4,  9414 }, -- Oilskin Leggings
  1848.                 { 16, 7670 }, -- Shattered Necklace Sapphire
  1849.             },
  1850.         },
  1851.         { -- UldArchaedas
  1852.             name = AL["Archaedas"],
  1853.             npcID = 2748,
  1854.             Level = GetForVersion(47,40),
  1855.             DisplayIDs = {{5988}},
  1856.             AtlasMapBossID = 10,
  1857.             [NORMAL_DIFF] = {
  1858.                 { 1,  11118 }, -- Archaedic Stone
  1859.                 { 2,  9413 }, -- The Rockpounder
  1860.                 { 3,  9418 }, -- Stoneslayer
  1861.             },
  1862.         },
  1863.         { -- UldTrash
  1864.             name = AL["Trash"],
  1865.             ExtraList = true,
  1866.             [NORMAL_DIFF] = {
  1867.                 { 1,  9431 }, -- Papal Fez
  1868.                 { 2,  9429 }, -- Miner's Hat of the Deep
  1869.                 { 3,  9420 }, -- Adventurer's Pith Helmet
  1870.                 { 4,  9430 }, -- Spaulders of a Lost Age
  1871.                 { 5,  9397 }, -- Energy Cloak
  1872.                 { 6,  9406 }, -- Spirewind Fetter
  1873.                 { 7,  9428 }, -- Unearthed Bands
  1874.                 { 8,  9432 }, -- Skullplate Bracers
  1875.                 { 9,  9396 }, -- Legguards of the Vault
  1876.                 { 10, 9393 }, -- Beacon of Hope
  1877.                 { 12, 7666 }, -- Shattered Necklace
  1878.                 --{ 13, 7673 }, -- Talvash's Enhancing Necklace
  1879.                 { 16, 9381 }, -- Earthen Rod
  1880.                 { 17, 9426 }, -- Monolithic Bow
  1881.                 { 18, 9422 }, -- Shadowforge Bushmaster
  1882.                 { 19, 9465 }, -- Digmaster 5000
  1883.                 { 20, 9384 }, -- Stonevault Shiv
  1884.                 { 21, 9386 }, -- Excavator's Brand
  1885.                 { 22, 9427 }, -- Stonevault Bonebreaker
  1886.                 { 23, 9392 }, -- Annealed Blade
  1887.                 { 24, 9424 }, -- Ginn-su Sword
  1888.                 { 25, 9383 }, -- Obsidian Cleaver
  1889.                 { 26, 9425 }, -- Pendulum of Doom
  1890.                 { 27, 9423 }, -- The Jackhammer
  1891.                 { 28, 9391 }, -- The Shoveler
  1892.             },
  1893.         },
  1894.         { -- UldBaelogsChest
  1895.             name = AL["Baelog's Chest"],
  1896.             ExtraList = true,
  1897.             AtlasMapBossID = 1,
  1898.             [NORMAL_DIFF] = {
  1899.                 { 1,  7740 }, -- Gni'kiv Medallion
  1900.             },
  1901.         },
  1902.         { -- UldConspicuousUrn
  1903.             name = AL["Conspicuous Urn"],
  1904.             ExtraList = true,
  1905.             AtlasMapBossID = 1,
  1906.             [NORMAL_DIFF] = {
  1907.                 { 1,  7671 }, -- Shattered Necklace Topaz
  1908.             },
  1909.         },
  1910.         { -- UldShadowforgeCache
  1911.             name = AL["Shadowforge Cache"],
  1912.             ExtraList = true,
  1913.             AtlasMapBossID = 8,
  1914.             [NORMAL_DIFF] = {
  1915.                 { 1,  7669 }, -- Shattered Necklace Ruby
  1916.             },
  1917.         },
  1918.         { -- UldTabletofWill
  1919.             name = AL["Tablet of Will"],
  1920.             ExtraList = true,
  1921.             AtlasMapBossID = 8,
  1922.             [NORMAL_DIFF] = {
  1923.                 { 1,  5824 }, -- Tablet of Will
  1924.             },
  1925.         },
  1926.     },
  1927. }
  1928.  
  1929. data["Zul'Farrak"] = {
  1930.     MapID = 1176,
  1931.     InstanceID = 209,
  1932.     AtlasModule = ATLAS_MODULE_NAME,
  1933.     AtlasMapID = "Zul'Farrak",
  1934.     AtlasMapFile = "CL_ZulFarrak",
  1935.     AtlasMapFile_AL = "ZulFarrak",
  1936.     ContentType = DUNGEON_CONTENT,
  1937.     LoadDifficulty = NORMAL_DIFF,
  1938.     LevelRange = GetForVersion({39, 44, 54},{35, 42, 46}),
  1939.     items = {
  1940.         { -- ZFAntusul
  1941.             name = AL["Antu'sul"],
  1942.             npcID = 8127,
  1943.             Level = GetForVersion(48,46),
  1944.             DisplayIDs = {{7353}},
  1945.             AtlasMapBossID = 1,
  1946.             [NORMAL_DIFF] = {
  1947.                 { 1,  9640 }, -- Vice Grips
  1948.                 { 2,  9641 }, -- Lifeblood Amulet
  1949.                 { 3,  9639 }, -- The Hand of Antu'sul
  1950.                 { 5,  9379 }, -- Sang'thraze the Deflector
  1951.             },
  1952.         },
  1953.         { -- ZFThekatheMartyr
  1954.             name = AL["Theka the Martyr"],
  1955.             npcID = 7272,
  1956.             Level = GetForVersion({45, 46},46),
  1957.             DisplayIDs = {{6696}},
  1958.             AtlasMapBossID = 2,
  1959.             specialType = "quest",
  1960.             [NORMAL_DIFF] = {
  1961.                 { 1,  10660 }, -- First Mosh'aru Tablet
  1962.             },
  1963.         },
  1964.         { -- ZFSandarrDunereaver
  1965.             name = AL["Sandarr Dunereaver"],
  1966.             npcID = 10080,
  1967.             Level = 45,
  1968.             DisplayIDs = {{9291}},
  1969.             IgnoreAsSource = true,
  1970.             --AtlasMapBossID = 2,
  1971.             specialType = "rare",
  1972.             [NORMAL_DIFF] = {
  1973.                 { 1,  9523, [ATLASLOOT_IT_AMOUNT1] = "2-4" }, -- First Mosh'aru Tablet
  1974.             },
  1975.         },
  1976.         { -- ZFWitchDoctorZumrah
  1977.             name = AL["Witch Doctor Zum'rah"],
  1978.             npcID = 7271,
  1979.             Level = 46,
  1980.             DisplayIDs = {{6434}},
  1981.             AtlasMapBossID = 3,
  1982.             [NORMAL_DIFF] = {
  1983.                 { 1,  18083 }, -- Jumanza Grips
  1984.                 { 2,  18082 }, -- Zum'rah's Vexing Cane
  1985.             },
  1986.         },
  1987.         { -- ZFNekrumGutchewer
  1988.             name = AL["Nekrum Gutchewer"],
  1989.             npcID = 7796,
  1990.             Level = GetForVersion({45, 46},45),
  1991.             DisplayIDs = {{6690}},
  1992.             AtlasMapBossID = 4,
  1993.             specialType = "quest",
  1994.             [NORMAL_DIFF] = {
  1995.                 { 1,  9471 }, -- Nekrum's Medallion
  1996.             },
  1997.         },
  1998.         { -- ZFSezzziz
  1999.             name = AL["Shadowpriest Sezz'ziz"],
  2000.             npcID = 7275,
  2001.             Level = GetForVersion(47,46),
  2002.             DisplayIDs = {{6441}},
  2003.             AtlasMapBossID = 4,
  2004.             [NORMAL_DIFF] = {
  2005.                 { 1,  9470 }, -- Bad Mojo Mask
  2006.                 { 2,  9473 }, -- Jinxed Hoodoo Skin
  2007.                 { 3,  9474 }, -- Jinxed Hoodoo Kilt
  2008.                 { 4,  9475 }, -- Diabolic Skiver
  2009.             },
  2010.         },
  2011.         { -- ZFDustwraith
  2012.             name = AL["Dustwraith"],
  2013.             npcID = 10081,
  2014.             Level = GetForVersion(47,46),
  2015.             DisplayIDs = {{9292}},
  2016.             AtlasMapBossID = 4,
  2017.             specialType = "rare",
  2018.             [NORMAL_DIFF] = {
  2019.                 { 1,  12471 }, -- Desertwalker Cane
  2020.             },
  2021.         },
  2022.         { -- ZFSandfury
  2023.             name = AL["Sandfury Executioner"],
  2024.             npcID = 7274,
  2025.             Level = 46,
  2026.             DisplayIDs = {{6440}},
  2027.             AtlasMapBossID = 5,
  2028.             [NORMAL_DIFF] = {
  2029.                 { 1,  8444 }, -- Executioner's Key
  2030.             },
  2031.         },
  2032.         { -- ZFSergeantBly
  2033.             name = AL["Sergeant Bly"],
  2034.             npcID = 7604,
  2035.             Level = 45,
  2036.             DisplayIDs = {{6433}},
  2037.             AtlasMapBossID = 5,
  2038.             specialType = "quest",
  2039.             [NORMAL_DIFF] = {
  2040.                 { 1,  8548 }, -- Divino-matic Rod
  2041.             },
  2042.         },
  2043.         { -- ZFHydromancerVelratha
  2044.             name = AL["Hydromancer Velratha"],
  2045.             npcID = 7795,
  2046.             Level = 46,
  2047.             DisplayIDs = {{6685}},
  2048.             AtlasMapBossID = 6,
  2049.             specialType = "quest",
  2050.             [NORMAL_DIFF] = {
  2051.                 { 1,  9234 }, -- Tiara of the Deep
  2052.                 { 2,  10661 }, -- Second Mosh'aru Tablet
  2053.             },
  2054.         },
  2055.         { -- ZFGahzrilla
  2056.             name = AL["Gahz'rilla"],
  2057.             npcID = 7273,
  2058.             Level = 46,
  2059.             DisplayIDs = {{7271}},
  2060.             AtlasMapBossID = 6,
  2061.             [NORMAL_DIFF] = {
  2062.                 { 1,  9469 }, -- Gahz'rilla Scale Armor
  2063.                 { 3,  9467 }, -- Gahz'rilla Fang
  2064.             },
  2065.         },
  2066.         { -- ZFChiefUkorzSandscalp
  2067.             name = AL["Chief Ukorz Sandscalp"],
  2068.             npcID = 7267,
  2069.             Level = GetForVersion(48,46),
  2070.             DisplayIDs = {{6439}},
  2071.             AtlasMapBossID = 7,
  2072.             [NORMAL_DIFF] = {
  2073.                 { 1,  9479 }, -- Embrace of the Lycan
  2074.                 { 2,  9476 }, -- Big Bad Pauldrons
  2075.                 { 3,  9478 }, -- Ripsaw
  2076.                 { 4,  9477 }, -- The Chief's Enforcer
  2077.                 { 6,  11086 }, -- Jang'thraze the Protector
  2078.             },
  2079.         },
  2080.         { -- ZFZerillis
  2081.             name = AL["Zerillis"],
  2082.             npcID = 10082,
  2083.             Level = 45,
  2084.             DisplayIDs = {{9293}},
  2085.             AtlasMapBossID = 8,
  2086.             specialType = "rare",
  2087.             [NORMAL_DIFF] = {
  2088.                 { 1,  12470 }, -- Sandstalker Ankleguards
  2089.             },
  2090.         },
  2091.         { -- ZFTrash
  2092.             name = AL["Trash"],
  2093.             ExtraList = true,
  2094.             [NORMAL_DIFF] = {
  2095.                 { 1,  9512 }, -- Blackmetal Cape
  2096.                 { 2,  9484 }, -- Spellshock Leggings
  2097.                 { 3,  862 }, -- Runed Ring
  2098.                 { 4,  6440 }, -- Brainlash
  2099.                 { 5,  9483 }, -- Flaming Incinerator
  2100.                 { 6,  2040 }, -- Troll Protector
  2101.                 { 7,  5616 }, -- Gutwrencher
  2102.                 { 8,  9511 }, -- Bloodletter Scalpel
  2103.                 { 9,  9481 }, -- The Minotaur
  2104.                 { 10, 9480 }, -- Eyegouger
  2105.                 { 11, 9482 }, -- Witch Doctor's Cane
  2106.                 { 13, 9243 }, -- Shriveled Heart
  2107.             },
  2108.         },
  2109.     },
  2110. }
  2111.  
  2112. data["Maraudon"] = {
  2113.     MapID = 2100,
  2114.     InstanceID = 349,
  2115.     AtlasModule = ATLAS_MODULE_NAME,
  2116.     AtlasMapID = "Maraudon",
  2117.     AtlasMapFile = {"CL_Maraudon", "CL_MaraudonEnt"},
  2118.     AtlasMapFile_AL = {"Maraudon", "MaraudonEnt"},
  2119.     ContentType = DUNGEON_CONTENT,
  2120.     LoadDifficulty = NORMAL_DIFF,
  2121.     LevelRange = GetForVersion({25, 46, 55},{30, 43, 48}),
  2122.     items = {
  2123.         { -- MaraKhanVeng
  2124.             name = AL["Veng"],
  2125.             npcID = 13738,
  2126.             DisplayIDs = {{9418}},
  2127.             AtlasMapBossID = 1,
  2128.             specialType = "quest",
  2129.             [NORMAL_DIFF] = {
  2130.                 { 1,  17765 }, -- Gem of the Fifth Khan
  2131.             },
  2132.         },
  2133.         { -- MaraNoxxion
  2134.             name = AL["Noxxion"],
  2135.             npcID = 13282,
  2136.             Level = GetForVersion(48,46),
  2137.             DisplayIDs = {{11172}},
  2138.             AtlasMapBossID = 2,
  2139.             [NORMAL_DIFF] = {
  2140.                 { 1,  17746 }, -- Noxxion's Shackles
  2141.                 { 2,  17744 }, -- Heart of Noxxion
  2142.                 { 3,  17745 }, -- Noxious Shooter
  2143.             },
  2144.         },
  2145.         { -- MaraRazorlash
  2146.             name = AL["Razorlash"],
  2147.             npcID = 12258,
  2148.             Level = GetForVersion(48,46),
  2149.             DisplayIDs = {{12389}},
  2150.             AtlasMapBossID = 3,
  2151.             [NORMAL_DIFF] = {
  2152.                 { 1,  17749 }, -- Phytoskin Spaulders
  2153.                 { 2,  17748 }, -- Vinerot Sandals
  2154.                 { 4,  17750 }, -- Chloromesh Girdle
  2155.                 { 5,  17751 }, -- Brusslehide Leggings
  2156.             },
  2157.         },
  2158.         { -- MaraKhanMaraudos
  2159.             name = AL["Maraudos"],
  2160.             npcID = 13739,
  2161.             DisplayIDs = {{9441}},
  2162.             AtlasMapBossID = 4,
  2163.             specialType = "quest",
  2164.             [NORMAL_DIFF] = {
  2165.                 { 1,  17764 }, -- Gem of the Fourth Khan
  2166.             },
  2167.         },
  2168.         { -- MaraLordVyletongue
  2169.             name = AL["Lord Vyletongue"],
  2170.             npcID = 12236,
  2171.             Level = GetForVersion(47,44),
  2172.             DisplayIDs = {{12334}},
  2173.             AtlasMapBossID = 5,
  2174.             [NORMAL_DIFF] = {
  2175.                 { 1,  17755 }, -- Satyrmane Sash
  2176.                 { 2,  17754 }, -- Infernal Trickster Leggings
  2177.                 { 3,  17752 }, -- Satyr's Lash
  2178.             },
  2179.         },
  2180.         { -- MaraMeshlok
  2181.             name = AL["Meshlok the Harvester"],
  2182.             npcID = 12237,
  2183.             Level = 48,
  2184.             DisplayIDs = {{9014}},
  2185.             AtlasMapBossID = 6,
  2186.             specialType = "rare",
  2187.             [NORMAL_DIFF] = {
  2188.                 { 1,  17767 }, -- Bloomsprout Headpiece
  2189.                 { 2,  17741 }, -- Nature's Embrace
  2190.                 { 3,  17742 }, -- Fungus Shroud Armor
  2191.             },
  2192.         },
  2193.         { -- MaraCelebras
  2194.             name = AL["Celebras the Cursed"],
  2195.             npcID = 12225,
  2196.             Level = GetForVersion(49,46),
  2197.             DisplayIDs = {{12350}},
  2198.             AtlasMapBossID = 7,
  2199.             [NORMAL_DIFF] = {
  2200.                 { 1,  17740 }, -- Soothsayer's Headdress
  2201.                 { 2,  17739 }, -- Grovekeeper's Drape
  2202.                 { 3,  17738 }, -- Claw of Celebras
  2203.             },
  2204.         },
  2205.         { -- MaraLandslide
  2206.             name = AL["Landslide"],
  2207.             npcID = 12203,
  2208.             Level = GetForVersion(50,48),
  2209.             DisplayIDs = {{12293}},
  2210.             AtlasMapBossID = 8,
  2211.             [NORMAL_DIFF] = {
  2212.                 { 1,  17734 }, -- Helm of the Mountain
  2213.                 { 2,  17736 }, -- Rockgrip Gauntlets
  2214.                 { 3,  17737 }, -- Cloud Stone
  2215.                 { 4,  17943 }, -- Fist of Stone
  2216.             },
  2217.         },
  2218.         { -- MaraTinkererGizlock
  2219.             name = AL["Tinkerer Gizlock"],
  2220.             npcID = 13601,
  2221.             Level = GetForVersion(50,48),
  2222.             DisplayIDs = {{7125}},
  2223.             AtlasMapBossID = 9,
  2224.             [NORMAL_DIFF] = {
  2225.                 { 1,  17718 }, -- Gizlock's Hypertech Buckler
  2226.                 { 2,  17717 }, -- Megashot Rifle
  2227.                 { 3,  17719 }, -- Inventor's Focal Sword
  2228.             },
  2229.         },
  2230.         { -- MaraRotgrip
  2231.             name = AL["Rotgrip"],
  2232.             npcID = 13596,
  2233.             Level = GetForVersion(50,48),
  2234.             DisplayIDs = {{13589}},
  2235.             AtlasMapBossID = 10,
  2236.             [NORMAL_DIFF] = {
  2237.                 { 1,  17732 }, -- Rotgrip Mantle
  2238.                 { 2,  17728 }, -- Albino Crocscale Boots
  2239.                 { 3,  17730 }, -- Gatorbite Axe
  2240.             },
  2241.         },
  2242.         { -- MaraPrincessTheradras
  2243.             name = AL["Princess Theradras"],
  2244.             npcID = 12201,
  2245.             Level = GetForVersion(51,48),
  2246.             DisplayIDs = {{12292}},
  2247.             AtlasMapBossID = 11,
  2248.             [NORMAL_DIFF] = {
  2249.                 { 1,  17780 }, -- Blade of Eternal Darkness
  2250.                 { 3,  17715 }, -- Eye of Theradras
  2251.                 { 4,  17707 }, -- Gemshard Heart
  2252.                 { 5,  17714 }, -- Bracers of the Stone Princess
  2253.                 { 6,  17711 }, -- Elemental Rockridge Leggings
  2254.                 { 7,  17713 }, -- Blackstone Ring
  2255.                 { 8,  17710 }, -- Charstone Dirk
  2256.                 { 9,  17766 }, -- Princess Theradras' Scepter
  2257.             },
  2258.         },
  2259.         { -- MaraNamelesProphet
  2260.             name = AL["The Nameless Prophet"],
  2261.             npcID = 13718,
  2262.             DisplayIDs = {{9426}},
  2263.             AtlasMapFile = "CL_MaraudonEnt",
  2264.             AtlasMapFile_AL = "MaraudonEnt",
  2265.             AtlasMapBossID = "*A",
  2266.             ExtraList = true,
  2267.             specialType = "quest",
  2268.             [NORMAL_DIFF] = {
  2269.                 { 1,  17757 }, -- Amulet of Spirits
  2270.             },
  2271.         },
  2272.         { -- MaraKhanKolk
  2273.             name = AL["Kolk"],
  2274.             npcID = 13742,
  2275.             DisplayIDs = {{4860}},
  2276.             AtlasMapFile = "CL_MaraudonEnt",
  2277.             AtlasMapFile_AL = "MaraudonEnt",
  2278.             AtlasMapBossID = "*1",
  2279.             ExtraList = true,
  2280.             specialType = "quest",
  2281.             [NORMAL_DIFF] = {
  2282.                 { 1,  17761 }, -- Gem of the First Khan
  2283.             },
  2284.         },
  2285.         { -- MaraKhanGelk
  2286.             name = AL["Gelk"],
  2287.             npcID = 13741,
  2288.             DisplayIDs = {{9427}},
  2289.             AtlasMapFile = "CL_MaraudonEnt",
  2290.             AtlasMapFile_AL = "MaraudonEnt",
  2291.             AtlasMapBossID = "*2",
  2292.             ExtraList = true,
  2293.             specialType = "quest",
  2294.             [NORMAL_DIFF] = {
  2295.                 { 1,  17762 }, -- Gem of the Second Khan
  2296.             },
  2297.         },
  2298.         { -- MaraKhanMagra
  2299.             name = AL["Magra"],
  2300.             npcID = 13740,
  2301.             DisplayIDs = {{9433}},
  2302.             AtlasMapFile = "CL_MaraudonEnt",
  2303.             AtlasMapFile_AL = "MaraudonEnt",
  2304.             AtlasMapBossID = "*3",
  2305.             ExtraList = true,
  2306.             specialType = "quest",
  2307.             [NORMAL_DIFF] = {
  2308.                 { 1,  17763 }, -- Gem of the Third Khan
  2309.             },
  2310.         },
  2311.     },
  2312. }
  2313.  
  2314. data["TheTempleOfAtal'Hakkar"] = {
  2315.     MapID = 1477,
  2316.     InstanceID = 109,
  2317.     AtlasModule = ATLAS_MODULE_NAME,
  2318.     AtlasMapID = "TheTempleOfAtal'Hakkar",
  2319.     AtlasMapFile = { "CL_TheSunkenTemple", "CL_TheSunkenTempleEnt" },
  2320.     AtlasMapFile_AL = { "TheSunkenTemple", "TheSunkenTempleEnt" },
  2321.     ContentType = DUNGEON_CONTENT,
  2322.     LoadDifficulty = NORMAL_DIFF,
  2323.     LevelRange = GetForVersion({45, 50, 60},{35, 47, 50}),
  2324.     items = {
  2325.         { -- STBalconyMinibosses
  2326.             name = AL["Balcony Minibosses"],
  2327.             npcID = {5716, 5712, 5717, 5714, 5715, 5713},
  2328.             Level = GetForVersion({51, 52}, {459,50}),
  2329.             DisplayIDs = {{6701},{6699},{6707},{6700},{6702},{6698}},
  2330.             AtlasMapBossID = "C",
  2331.             [NORMAL_DIFF] = {
  2332.                 { 1,  10783 }, -- Atal'ai Spaulders
  2333.                 { 2,  10784 }, -- Atal'ai Breastplate
  2334.                 { 3,  10787 }, -- Atal'ai Gloves
  2335.                 { 5,  10788 }, -- Atal'ai Girdle
  2336.                 { 6,  10785 }, -- Atal'ai Leggings
  2337.                 { 7,  10786 }, -- Atal'ai Boots
  2338.                 { 9,  20606 }, -- Amber Voodoo Feather
  2339.                 { 10, 20607 }, -- Blue Voodoo Feather
  2340.                 { 11, 20608 }, -- Green Voodoo Feather
  2341.             },
  2342.         },
  2343.         { -- STAtalalarion
  2344.             name = AL["Atal'alarion"],
  2345.             npcID = 8580,
  2346.             Level = GetForVersion(50,49),
  2347.             DisplayIDs = {{7873}},
  2348.             AtlasMapBossID = 1,
  2349.             [NORMAL_DIFF] = {
  2350.                 { 1,  10800 }, -- Darkwater Bracers
  2351.                 { 2,  10798 }, -- Atal'alarion's Tusk Ring
  2352.                 { 3,  10799 }, -- Headspike
  2353.             },
  2354.         },
  2355.         { -- STSpawnOfHakkar
  2356.             name = AL["Spawn of Hakkar"],
  2357.             npcID = 5708,
  2358.             Level = GetForVersion(51,49),
  2359.             DisplayIDs = {{4065}},
  2360.             AtlasMapBossID = 2,
  2361.             [NORMAL_DIFF] = {
  2362.                 { 1,  10801 }, -- Slitherscale Boots
  2363.                 { 3,  10802 }, -- Wingveil Cloak
  2364.             },
  2365.         },
  2366.         { -- STAvatarofHakkar
  2367.             name = AL["Avatar of Hakkar"],
  2368.             npcID = 8443,
  2369.             DisplayIDs = {{8053}},
  2370.             AtlasMapBossID = 3,
  2371.             Level = 48,
  2372.             [NORMAL_DIFF] = {
  2373.                 { 1,  12462 }, -- Embrace of the Wind Serpent
  2374.                 { 3,  10843 }, -- Featherskin Cape
  2375.                 { 4,  10845 }, -- Warrior's Embrace
  2376.                 { 5,  10842 }, -- Windscale Sarong
  2377.                 { 6,  10846 }, -- Bloodshot Greaves
  2378.                 { 7,  10838 }, -- Might of Hakkar
  2379.                 { 8,  10844 }, -- Spire of Hakkar
  2380.             },
  2381.         },
  2382.         { -- STJammalan
  2383.             name = AL["Jammal'an the Prophet"],
  2384.             npcID = 5710,
  2385.             Level = GetForVersion(54,50),
  2386.             DisplayIDs = {{6708}},
  2387.             AtlasMapBossID = 4,
  2388.             [NORMAL_DIFF] = {
  2389.                 { 1,  10806 }, -- Vestments of the Atal'ai Prophet
  2390.                 { 2,  10808 }, -- Gloves of the Atal'ai Prophet
  2391.                 { 3,  10807 }, -- Kilt of the Atal'ai Prophet
  2392.             },
  2393.         },
  2394.         { -- STOgom
  2395.             name = AL["Ogom the Wretched"],
  2396.             npcID = 5711,
  2397.             Level = GetForVersion(53,49),
  2398.             DisplayIDs = {{6709}},
  2399.             AtlasMapBossID = 4,
  2400.             [NORMAL_DIFF] = {
  2401.                 { 1,  10805 }, -- Eater of the Dead
  2402.                 { 2,  10803 }, -- Blade of the Wretched
  2403.                 { 3,  10804 }, -- Fist of the Damned
  2404.             },
  2405.         },
  2406.         { -- STDreamscythe
  2407.             name = AL["Dreamscythe"],
  2408.             npcID = 5721,
  2409.             Level = GetForVersion(53,50),
  2410.             DisplayIDs = {{7553}},
  2411.             AtlasMapBossID = 6,
  2412.             [NORMAL_DIFF] = {
  2413.                 { 1,  12465 }, -- Nightfall Drape
  2414.                 { 2,  12466 }, -- Dawnspire Cord
  2415.                 { 3,  12464 }, -- Bloodfire Talons
  2416.                 { 4,  10797 }, -- Firebreather
  2417.                 { 5,  12463 }, -- Drakefang Butcher
  2418.                 { 6,  12243 }, -- Smoldering Claw
  2419.                 { 7,  10795 }, -- Drakeclaw Band
  2420.                 { 8,  10796 }, -- Drakestone
  2421.             },
  2422.         },
  2423.         { -- STWeaver
  2424.             name = AL["Weaver"],
  2425.             npcID = 5720,
  2426.             Level = GetForVersion(51,50),
  2427.             DisplayIDs = {{6375}},
  2428.             AtlasMapBossID = 6,
  2429.             [NORMAL_DIFF] = {
  2430.                 { 1,  12465 }, -- Nightfall Drape
  2431.                 { 2,  12466 }, -- Dawnspire Cord
  2432.                 { 3,  12464 }, -- Bloodfire Talons
  2433.                 { 4,  10797 }, -- Firebreather
  2434.                 { 5,  12463 }, -- Drakefang Butcher
  2435.                 { 6,  12243 }, -- Smoldering Claw
  2436.                 { 7,  10795 }, -- Drakeclaw Band
  2437.                 { 8,  10796 }, -- Drakestone
  2438.             },
  2439.         },
  2440.         { -- STHazzas
  2441.             name = AL["Hazzas"],
  2442.             npcID = 5722,
  2443.             Level = GetForVersion(53,50),
  2444.             DisplayIDs = {{9584}},
  2445.             AtlasMapBossID = 7,
  2446.             [NORMAL_DIFF] = {
  2447.                 { 1,  12465 }, -- Nightfall Drape
  2448.                 { 2,  12466 }, -- Dawnspire Cord
  2449.                 { 3,  12464 }, -- Bloodfire Talons
  2450.                 { 4,  10797 }, -- Firebreather
  2451.                 { 5,  12463 }, -- Drakefang Butcher
  2452.                 { 6,  12243 }, -- Smoldering Claw
  2453.                 { 7,  10795 }, -- Drakeclaw Band
  2454.                 { 8,  10796 }, -- Drakestone
  2455.             },
  2456.         },
  2457.         { -- STMorphaz
  2458.             name = AL["Morphaz"],
  2459.             npcID = 5719,
  2460.             Level = GetForVersion(52,50),
  2461.             DisplayIDs = {{7975}},
  2462.             AtlasMapBossID = 7,
  2463.             [NORMAL_DIFF] = {
  2464.                 { 1,  12465 }, -- Nightfall Drape
  2465.                 { 2,  12466 }, -- Dawnspire Cord
  2466.                 { 3,  12464 }, -- Bloodfire Talons
  2467.                 { 4,  10797 }, -- Firebreather
  2468.                 { 5,  12463 }, -- Drakefang Butcher
  2469.                 { 6,  12243 }, -- Smoldering Claw
  2470.                 { 7,  10795 }, -- Drakeclaw Band
  2471.                 { 8,  10796 }, -- Drakestone
  2472.             },
  2473.         },
  2474.         { -- STEranikus
  2475.             name = AL["Shade of Eranikus"],
  2476.             npcID = 5709,
  2477.             Level = GetForVersion(55,50),
  2478.             DisplayIDs = {{7806}},
  2479.             AtlasMapBossID = 8,
  2480.             [NORMAL_DIFF] = {
  2481.                 { 1,  10847 }, -- Dragon's Call
  2482.                 { 3,  10833 }, -- Horns of Eranikus
  2483.                 { 4,  10829 }, -- Dragon's Eye
  2484.                 { 5,  10836 }, -- Rod of Corrosion
  2485.                 { 6,  10835 }, -- Crest of Supremacy
  2486.                 { 7,  10837 }, -- Tooth of Eranikus
  2487.                 { 8,  10828 }, -- Dire Nail
  2488.                 { 10, 10454 }, -- Essence of Eranikus
  2489.             },
  2490.         },
  2491.         { -- STTrash
  2492.             name = AL["Trash"],
  2493.             ExtraList = true,
  2494.             [NORMAL_DIFF] = {
  2495.                 { 1,  10630 }, -- Soulcatcher Halo
  2496.                 { 2,  10632 }, -- Slimescale Bracers
  2497.                 { 3,  10631 }, -- Murkwater Gauntlets
  2498.                 { 4,  10633 }, -- Silvershell Leggings
  2499.                 { 5,  10629 }, -- Mistwalker Boots
  2500.                 { 6,  10634 }, -- Mindseye Circle
  2501.                 { 7,  10624 }, -- Stinging Bow
  2502.                 { 8,  10623 }, -- Winter's Bite
  2503.                 { 9,  10625 }, -- Stealthblade
  2504.                 { 10, 10626 }, -- Ragehammer
  2505.                 { 11, 10628 }, -- Deathblow
  2506.                 { 12, 10627 }, -- Bludgeon of the Grinning Dog
  2507.                 { 16, 10782 }, -- Hakkari Shroud
  2508.                 { 17, 10781 }, -- Hakkari Breastplate
  2509.                 { 18, 10780 }, -- Mark of Hakkar
  2510.                 { 20, 16216 }, -- Formula: Enchant Cloak - Greater Resistance
  2511.                 { 21, 15733 }, -- Pattern: Green Dragonscale Leggings
  2512.             },
  2513.         },
  2514.     },
  2515. }
  2516.  
  2517. data["BlackrockDepths"] = {
  2518.     MapID = 1584,
  2519.     InstanceID = 230,
  2520.     SubAreaIDs = { 26758, 26761, 26747, 26733, 26755, 26740, 26751, 26759, 26735, 26769, 26768, 26766, 26781, 26765, 26764, 26742, 26750, 26745, 26784, 26749 },
  2521.     AtlasModule = ATLAS_MODULE_NAME,
  2522.     AtlasMapID = "BlackrockDepths",
  2523.     AtlasMapFile = {"CL_BlackrockDepths", "CL_BlackrockMountainEnt"},
  2524.     AtlasMapFile_AL = {"BlackrockDepths", "BlackrockMountainEnt"},
  2525.     ContentType = DUNGEON_CONTENT,
  2526.     LoadDifficulty = NORMAL_DIFF,
  2527.     LevelRange = GetForVersion({42, 52, 60},{40, 48, 56}),
  2528.     items = {
  2529.         { -- BRDLordRoccor
  2530.             name = AL["Lord Roccor"],
  2531.             npcID = 9025,
  2532.             Level = 51,
  2533.             SubAreaID = 26735,
  2534.             DisplayIDs = {{5781}},
  2535.             AtlasMapBossID = 1,
  2536.             [NORMAL_DIFF] = {
  2537.                 { 1,  22234 }, -- Mantle of Lost Hope
  2538.                 { 2,  11632 }, -- Earthslag Shoulders
  2539.                 { 3,  11631 }, -- Stoneshell Guard
  2540.                 { 4,  22397 }, -- Idol of Ferocity
  2541.                 { 5,  11630 }, -- Rockshard Pellets
  2542.                 { 7,  11813 }, -- Formula: Smoking Heart of the Mountain
  2543.                 --{ 8,  11811 }, -- Smoking Heart of the Mountain
  2544.             },
  2545.         },
  2546.         { -- BRDHighInterrogatorGerstahn
  2547.             name = AL["High Interrogator Gerstahn "],
  2548.             npcID = 9018,
  2549.             Level = 52,
  2550.             SubAreaID = 26733,
  2551.             DisplayIDs = {{8761}},
  2552.             AtlasMapBossID = 5,
  2553.             [NORMAL_DIFF] = {
  2554.                 { 1,  11626 }, -- Blackveil Cape
  2555.                 { 2,  11624 }, -- Kentic Amice
  2556.                 { 3,  22240 }, -- Greaves of Withering Despair
  2557.                 { 4,  11625 }, -- Enthralled Sphere
  2558.                 { 16,  11140 }, -- Prison Cell Key
  2559.             },
  2560.         },
  2561.         { -- BRDHoundmaster
  2562.             name = AL["Houndmaster Grebmar"],
  2563.             npcID = 9319,
  2564.             Level = 52,
  2565.             SubAreaID = 26735,
  2566.             DisplayIDs = {{9212}},
  2567.             AtlasMapBossID = 6,
  2568.             [NORMAL_DIFF] = {
  2569.                 { 1,  11623 }, -- Spritecaster Cape
  2570.                 { 2,  11627 }, -- Fleetfoot Greaves
  2571.                 { 3,  11628 }, -- Houndmaster's Bow
  2572.                 { 4,  11629 }, -- Houndmaster's Rifle
  2573.             },
  2574.         },
  2575.         -- ## RING START
  2576.         { -- BRDGorosh
  2577.             name = AL["Gorosh the Dervish"],
  2578.             nameFormat = NAME_BRD_RING_OF_LAW,
  2579.             npcID = 9027,
  2580.             Level = GetForVersion(56,52),
  2581.             SubAreaID = 26742,
  2582.             DisplayIDs = {{8760}},
  2583.             AtlasMapBossID = 6,
  2584.             [NORMAL_DIFF] = {
  2585.                 { 1,  11726 }, -- Savage Gladiator Chain
  2586.                 { 2,  22271 }, -- Leggings of Frenzied Magic
  2587.                 { 3,  22257 }, -- Bloodclot Band
  2588.                 { 4,  22266 }, -- Flarethorn
  2589.             },
  2590.         },
  2591.         { -- BRDGrizzle
  2592.             name = AL["Grizzle"],
  2593.             nameFormat = NAME_BRD_RING_OF_LAW,
  2594.             npcID = 9028,
  2595.             Level = GetForVersion(54,52),
  2596.             DisplayIDs = {{7873}},
  2597.             AtlasMapBossID = 6,
  2598.             [NORMAL_DIFF] = {
  2599.                 { 1,  11722 }, -- Dregmetal Spaulders
  2600.                 { 2,  11703 }, -- Stonewall Girdle
  2601.                 { 3,  22270 }, -- Entrenching Boots
  2602.                 { 4,  11702 }, -- Grizzle's Skinner
  2603.                 { 6,  11610 }, -- Plans: Dark Iron Pulverizer
  2604.                 --{ 2,  11608 }, -- Dark Iron Pulverizer
  2605.             },
  2606.         },
  2607.         { -- BRDEviscerator
  2608.             name = AL["Eviscerator"],
  2609.             nameFormat = NAME_BRD_RING_OF_LAW,
  2610.             npcID = 9029,
  2611.             Level = GetForVersion(54,52),
  2612.             DisplayIDs = {{523}},
  2613.             AtlasMapBossID = 6,
  2614.             [NORMAL_DIFF] = {
  2615.                 { 1,  11685 }, -- Splinthide Shoulders
  2616.                 { 2,  11679 }, -- Rubicund Armguards
  2617.                 { 4,  11686 }, -- Girdle of Beastial Fury
  2618.                 { 5,  11730 }, -- Savage Gladiator Grips
  2619.             },
  2620.         },
  2621.         { -- BRDOkthor
  2622.             name = AL["Ok'thor the Breaker"],
  2623.             nameFormat = NAME_BRD_RING_OF_LAW,
  2624.             npcID = 9030,
  2625.             Level = GetForVersion(54,53),
  2626.             DisplayIDs = {{11538}},
  2627.             AtlasMapBossID = 6,
  2628.             [NORMAL_DIFF] = {
  2629.                 { 1,  11665 }, -- Ogreseer Fists
  2630.                 { 2,  11662 }, -- Ban'thok Sash
  2631.                 { 3,  11728 }, -- Savage Gladiator Leggings
  2632.                 { 4,  11824 }, -- Cyclopean Band
  2633.             },
  2634.         },
  2635.         { -- BRDAnubshiah
  2636.             name = AL["Anub'shiah"],
  2637.             nameFormat = NAME_BRD_RING_OF_LAW,
  2638.             npcID = 9031,
  2639.             Level = GetForVersion(54,52),
  2640.             DisplayIDs = {{3004}},
  2641.             AtlasMapBossID = 6,
  2642.             [NORMAL_DIFF] = {
  2643.                 { 1,  11678 }, -- Carapace of Anub'shiah
  2644.                 { 2,  11677 }, -- Graverot Cape
  2645.                 { 3,  11675 }, -- Shadefiend Boots
  2646.                 { 4,  11731 }, -- Savage Gladiator Greaves
  2647.             },
  2648.         },
  2649.         { -- BRDHedrum
  2650.             name = AL["Hedrum the Creeper"],
  2651.             nameFormat = NAME_BRD_RING_OF_LAW,
  2652.             npcID = 9032,
  2653.             Level = GetForVersion(53,52),
  2654.             DisplayIDs = {{8271}},
  2655.             AtlasMapBossID = 6,
  2656.             [NORMAL_DIFF] = {
  2657.                 { 1,  11633 }, -- Spiderfang Carapace
  2658.                 { 2,  11634 }, -- Silkweb Gloves
  2659.                 { 3,  11635 }, -- Hookfang Shanker
  2660.                 { 4,  11729 }, -- Savage Gladiator Helm
  2661.             },
  2662.         },
  2663.         -- ## RING END
  2664.         { -- BRDPyromancerLoregrain
  2665.             name = AL["Pyromancer Loregrain"],
  2666.             npcID = 9024,
  2667.             Level = 52,
  2668.             SubAreaID = 26745,
  2669.             DisplayIDs = {{8762}},
  2670.             AtlasMapBossID = 7,
  2671.             specialType = "rare",
  2672.             [NORMAL_DIFF] = {
  2673.                 { 1,  11747 }, -- Flamestrider Robes
  2674.                 { 2,  11749 }, -- Searingscale Leggings
  2675.                 { 3,  11748 }, -- Pyric Caduceus
  2676.                 { 4,  11750 }, -- Kindling Stave
  2677.                 { 6,  11207 }, -- Formula: Enchant Weapon - Fiery Weapon
  2678.             },
  2679.         },
  2680.         { -- BRDTheVault
  2681.             name = AL["Dark Coffer"],
  2682.             SubAreaID = 26758,
  2683.             npcID = {9438, 9442, 9443, 9439, 9437, 9441},
  2684.             DisplayIDs = {{8592},{8595},{8596},{8593},{8591},{8594}},
  2685.             AtlasMapBossID = 8,
  2686.             [NORMAL_DIFF] = {
  2687.                 { 1, "INV_Box_01", nil, AL["Dark Keeper"], nil },
  2688.                 { 2,  11197 }, -- Dark Keeper Key
  2689.                 { 5, "INV_Box_01", nil, AL["Secret Safe"], nil },
  2690.                 { 6,  22256 }, -- Mana Shaping Handwraps
  2691.                 { 7,  22205 }, -- Black Steel Bindings
  2692.                 { 8,  22255 }, -- Magma Forged Band
  2693.                 { 9,  22254 }, -- Wand of Eternal Light
  2694.                 { 10,  11923 }, -- The Hammer of Grace
  2695.                 { 16, "INV_Box_01", nil, AL["Relic Coffer"], nil },
  2696.                 { 17, 11945 }, -- Dark Iron Ring
  2697.                 { 18, 11946 }, -- Fire Opal Necklace
  2698.                 { 20, "INV_Box_01", nil, AL["Dark Coffer"], nil },
  2699.                 { 21, 11752 }, -- Black Blood of the Tormented
  2700.                 { 22, 11751 }, -- Burning Essence
  2701.                 { 23, 11753 }, -- Eye of Kajal
  2702.             },
  2703.         },
  2704.         { -- BRDWarderStilgiss
  2705.             name = AL["Warder Stilgiss"],
  2706.             npcID = 9041,
  2707.             Level = GetForVersion(56,54),
  2708.             SubAreaID = 26758,
  2709.             DisplayIDs = {{9089}},
  2710.             AtlasMapBossID = 8,
  2711.             [NORMAL_DIFF] = {
  2712.                 { 1,  11782 }, -- Boreal Mantle
  2713.                 { 2,  22241 }, -- Dark Warder's Pauldrons
  2714.                 { 3,  11783 }, -- Chillsteel Girdle
  2715.                 { 4,  11784 }, -- Arbiter's Blade
  2716.             },
  2717.         },
  2718.         { -- BRDVerek
  2719.             name = AL["Verek"],
  2720.             npcID = 9042,
  2721.             Level = GetForVersion(55,53),
  2722.             SubAreaID = 26758,
  2723.             DisplayIDs = {{9019}},
  2724.             AtlasMapBossID = 8,
  2725.             [NORMAL_DIFF] = {
  2726.                 { 1,  11755 }, -- Verek's Collar
  2727.                 { 2,  22242 }, -- Verek's Leash
  2728.             },
  2729.         },
  2730.         { -- BRDWatchmanDoomgrip
  2731.             name = AL["Watchman Doomgrip"],
  2732.             npcID = 9476,
  2733.             Level = GetForVersion(55,54),
  2734.             SubAreaID = 26758,
  2735.             DisplayIDs = {{8655}},
  2736.             AtlasMapBossID = 8,
  2737.             [NORMAL_DIFF] = {
  2738.                 { 1,  22205 }, -- Black Steel Bindings
  2739.                 { 2,  22255 }, -- Magma Forged Band
  2740.                 { 3,  22256 }, -- Mana Shaping Handwraps
  2741.                 { 4,  22254 }, -- Wand of Eternal Light
  2742.             },
  2743.         },
  2744.         { -- BRDFineousDarkvire
  2745.             name = AL["Fineous Darkvire"],
  2746.             npcID = 9056,
  2747.             Level = GetForVersion(54,53),
  2748.             SubAreaID = 26759,
  2749.             DisplayIDs = {{8704}},
  2750.             AtlasMapBossID = 9,
  2751.             [NORMAL_DIFF] = {
  2752.                 { 1,  11839 }, -- Chief Architect's Monocle
  2753.                 { 2,  22223 }, -- Foreman's Head Protector
  2754.                 { 3,  11842 }, -- Lead Surveyor's Mantle
  2755.                 { 4,  11841 }, -- Senior Designer's Pantaloons
  2756.                 { 6,  11840 }, -- Master Builder's Shirt
  2757.             },
  2758.         },
  2759.         { -- BRDLordIncendius
  2760.             name = AL["Lord Incendius"],
  2761.             npcID = 9017,
  2762.             Level = GetForVersion(55,53),
  2763.             SubAreaID = 26750,
  2764.             DisplayIDs = {{1204}},
  2765.             AtlasMapBossID = 10,
  2766.             [NORMAL_DIFF] = {
  2767.                 { 1,  11766 }, -- Flameweave Cuffs
  2768.                 { 2,  11764 }, -- Cinderhide Armsplints
  2769.                 { 3,  11765 }, -- Pyremail Wristguards
  2770.                 { 4,  11767 }, -- Emberplate Armguards
  2771.                 { 6,  19268 }, -- Ace of Elementals
  2772.                 { 8,  11768 }, -- Incendic Bracers
  2773.             },
  2774.         },
  2775.         { -- BRDBaelGar
  2776.             name = AL["Bael'Gar"],
  2777.             npcID = 9016,
  2778.             Level = GetForVersion(54,52),
  2779.             SubAreaID = 26747,
  2780.             DisplayIDs = {{12162}},
  2781.             AtlasMapBossID = 11,
  2782.             [NORMAL_DIFF] = {
  2783.                 { 1,  11807 }, -- Sash of the Burning Heart
  2784.                 { 2,  11802 }, -- Lavacrest Leggings
  2785.                 { 3,  11805 }, -- Rubidium Hammer
  2786.                 { 4,  11803 }, -- Force of Magma
  2787.             },
  2788.         },
  2789.         { -- BRDGeneralAngerforge
  2790.             name = AL["General Angerforge"],
  2791.             npcID = 9033,
  2792.             Level = GetForVersion(57,55),
  2793.             SubAreaID = 26749,
  2794.             DisplayIDs = {{8756}},
  2795.             AtlasMapBossID = 13,
  2796.             [NORMAL_DIFF] = {
  2797.                 { 1,  11820 }, -- Royal Decorated Armor
  2798.                 { 2,  11821 }, -- Warstrife Leggings
  2799.                 { 3, 11810 }, -- Force of Will
  2800.                 { 4,  11817 }, -- Lord General's Sword
  2801.                 { 5,  11816 }, -- Angerforge's Battle Axe
  2802.                 { 6,  11841 }, -- Senior Designer's Pantaloons
  2803.             },
  2804.         },
  2805.         { -- BRDGolemLordArgelmach
  2806.             name = AL["Golem Lord Argelmach"],
  2807.             npcID = 8983,
  2808.             Level = GetForVersion(57,55),
  2809.             SubAreaID = 26781,
  2810.             DisplayIDs = {{8759}},
  2811.             AtlasMapBossID = 14,
  2812.             [NORMAL_DIFF] = {
  2813.                 { 1,  11823 }, -- Luminary Kilt
  2814.                 { 2,  11822 }, -- Omnicast Boots
  2815.                 { 3,  11669 }, -- Naglering
  2816.                 { 4,  11819 }, -- Second Wind
  2817.             },
  2818.         },
  2819.         { -- BRDGuzzler
  2820.             name = AL["Guzzler"],
  2821.             SubAreaID = 26751,
  2822.             npcID = {9537, 12944, 9543, 9499},
  2823.             Level = 55,
  2824.             DisplayIDs = {{8658},{14666},{8667},{8652}},
  2825.             AtlasMapBossID = 15,
  2826.             [NORMAL_DIFF] = {
  2827.                 { 1, "INV_Box_01", nil, AL["Hurley Blackbreath"], nil },
  2828.                 { 2,  11735 }, -- Ragefury Eyepatch
  2829.                 { 3,  18043 }, -- Coal Miner Boots
  2830.                 { 4,  22275 }, -- Firemoss Boots
  2831.                 { 5,  18044 }, -- Hurley's Tankard
  2832.                 { 7, "INV_Box_01", nil, AL["Lokhtos Darkbargainer"], nil },
  2833.                 { 8, 18592 }, -- Plans: Sulfuron Hammer
  2834.                 { 16, "INV_Box_01", nil, AL["Ribbly Screwspigot"], nil },
  2835.                 { 17, 11612 }, -- Plans: Dark Iron Plate
  2836.                 { 18, 2662 }, -- Ribbly's Quiver
  2837.                 { 19, 2663 }, -- Ribbly's Bandolier
  2838.                 { 20, 11742 }, -- Wayfarer's Knapsack
  2839.                 { 22, "INV_Box_01", nil, AL["Plugger Spazzring"], nil },
  2840.                 { 23, 12793 }, -- Mixologist's Tunic
  2841.                 { 24, 12791 }, -- Barman Shanker
  2842.                 { 25, 18653 }, -- Schematic: Goblin Jumper Cables XL
  2843.                 { 26, 13483 }, -- Recipe: Transmute Fire to Earth
  2844.                 { 27, 15759 }, -- Pattern: Black Dragonscale Breastplate
  2845.                 { 28, 11325 }, -- Dark Iron Ale Mug
  2846.                 { 29, 11602 }, -- Grim Guzzler Key
  2847.             },
  2848.         },
  2849.         { -- Phalanx
  2850.             name = AL["Phalanx"],
  2851.             npcID = 9502,
  2852.             Level = 55,
  2853.             SubAreaID = 26751,
  2854.             DisplayIDs = {{8177}},
  2855.             AtlasMapBossID = 15,
  2856.             [NORMAL_DIFF] = {
  2857.                 { 1,  22212 }, -- Golem Fitted Pauldrons
  2858.                 { 2,  11745 }, -- Fists of Phalanx
  2859.                 { 3, 11744 }, -- Bloodfist
  2860.                 { 4, 11743 }, -- Rockfist
  2861.             },
  2862.         },
  2863.         { -- BRDFlamelash
  2864.             name = AL["Ambassador Flamelash"],
  2865.             npcID = 9156,
  2866.             Level = GetForVersion(57,55),
  2867.             SubAreaID = 26761,
  2868.             DisplayIDs = {{8329}},
  2869.             AtlasMapBossID = 16,
  2870.             [NORMAL_DIFF] = {
  2871.                 { 1,  11808 }, -- Circle of Flame
  2872.                 { 3,  11812 }, -- Cape of the Fire Salamander
  2873.                 { 4,  11814 }, -- Molten Fists
  2874.                 { 5,  11832 }, -- Burst of Knowledge
  2875.                 { 6,  11809 }, -- Flame Wrath
  2876.                 { 8,  23320 }, -- Tablet of Flame Shock VI
  2877.             },
  2878.         },
  2879.         { -- BRDPanzor
  2880.             name = AL["Panzor the Invincible"],
  2881.             npcID = 8923,
  2882.             Level = GetForVersion(57,56),
  2883.             SubAreaID = 26764,
  2884.             DisplayIDs = {{8270}},
  2885.             AtlasMapBossID = 17,
  2886.             specialType = "rare",
  2887.             [NORMAL_DIFF] = {
  2888.                 { 1,  22245 }, -- Soot Encrusted Footwear
  2889.                 { 2,  11787 }, -- Shalehusk Boots
  2890.                 { 3,  11785 }, -- Rock Golem Bulwark
  2891.                 { 4,  11786 }, -- Stone of the Earth
  2892.             },
  2893.         },
  2894.         { -- BRDTomb
  2895.             name = AL["Chest of The Seven"],
  2896.             SubAreaID = 26784,
  2897.             npcID = {9034, 9035, 9036, 9037, 9038, 9039, 9040},
  2898.             ObjectID = 169243,
  2899.             Level = GetForVersion({55, 57},{55, 56}),
  2900.             DisplayIDs = {{8690},{8686},{8692},{8689},{8691},{8687},{8688}},
  2901.             AtlasMapBossID = 18,
  2902.             [NORMAL_DIFF] = {
  2903.                 { 1,  11925 }, -- Ghostshroud
  2904.                 { 2,  11926 }, -- Deathdealer Breastplate
  2905.                 { 3,  11929 }, -- Haunting Specter Leggings
  2906.                 { 4,  11927 }, -- Legplates of the Eternal Guardian
  2907.                 { 5,  11920 }, -- Wraith Scythe
  2908.                 { 6,  11923 }, -- The Hammer of Grace
  2909.                 { 7,  11922 }, -- Blood-etched Blade
  2910.                 { 8,  11921 }, -- Impervious Giant
  2911.             },
  2912.         },
  2913.         { -- BRDMagmus
  2914.             name = AL["Magmus"],
  2915.             npcID = 9938,
  2916.             Level = GetForVersion(57,56),
  2917.             SubAreaID = 26768,
  2918.             DisplayIDs = {{12162}},
  2919.             AtlasMapBossID = 20,
  2920.             [NORMAL_DIFF] = {
  2921.                 { 1,  11746 }, -- Golem Skull Helm
  2922.                 { 2,  11935 }, -- Magmus Stone
  2923.                 { 3,  22395 }, -- Totem of Rage
  2924.                 { 4,  22400 }, -- Libram of Truth
  2925.                 { 5,  22208 }, -- Lavastone Hammer
  2926.             },
  2927.         },
  2928.         { -- BRDPrincess
  2929.             name = AL["Princess Moira Bronzebeard "],
  2930.             npcID = 8929,
  2931.             Level = GetForVersion(58,55),
  2932.             SubAreaID = 26769,
  2933.             DisplayIDs = {{8705}},
  2934.             AtlasMapBossID = 21,
  2935.             [NORMAL_DIFF] = {
  2936.                 { 1,  12557 }, -- Ebonsteel Spaulders
  2937.                 { 2,  12554 }, -- Hands of the Exalted Herald
  2938.                 { 3,  12556 }, -- High Priestess Boots
  2939.                 { 4,  12553 }, -- Swiftwalker Boots
  2940.             },
  2941.         },
  2942.         { -- BRDEmperorDagranThaurissan
  2943.             name = AL["Emperor Dagran Thaurissan"],
  2944.             npcID = 9019,
  2945.             Level = GetForVersion(59,56),
  2946.             SubAreaID = 26769,
  2947.             DisplayIDs = {{8807}},
  2948.             AtlasMapBossID = 21,
  2949.             [NORMAL_DIFF] = {
  2950.                 { 1,  11684 }, -- Ironfoe
  2951.                 { 3,  11933 }, -- Imperial Jewel
  2952.                 { 4,  11930 }, -- The Emperor's New Cape
  2953.                 { 5,  11924 }, -- Robes of the Royal Crown
  2954.                 { 6,  22204 }, -- Wristguards of Renown
  2955.                 { 7,  22207 }, -- Sash of the Grand Hunt
  2956.                 { 8,  11934 }, -- Emperor's Seal
  2957.                 { 9,  11815 }, -- Hand of Justice
  2958.                 { 10, 11928 }, -- Thaurissan's Royal Scepter
  2959.                 { 11, 11931 }, -- Dreadforge Retaliator
  2960.                 { 12, 11932 }, -- Guiding Stave of Wisdom
  2961.                 { 16, 12033 }, -- Thaurissan Family Jewels
  2962.             },
  2963.         },
  2964.         { -- BRDTrash
  2965.             name = AL["Trash"],
  2966.             ExtraList = true,
  2967.             [NORMAL_DIFF] = {
  2968.                 { 1,  12549 }, -- Braincage
  2969.                 { 2,  12552 }, -- Blisterbane Wrap
  2970.                 { 3,  12551 }, -- Stoneshield Cloak
  2971.                 { 4,  12542 }, -- Funeral Pyre Vestment
  2972.                 { 5,  12546 }, -- Aristocratic Cuffs
  2973.                 { 6,  12550 }, -- Runed Golem Shackles
  2974.                 { 7,  12547 }, -- Mar Alom's Grip
  2975.                 { 8,  12555 }, -- Battlechaser's Greaves
  2976.                 { 9,  12527 }, -- Ribsplitter
  2977.                 { 10, 12531 }, -- Searing Needle
  2978.                 { 11, 12535 }, -- Doomforged Straightedge
  2979.                 { 12, 12528 }, -- The Judge's Gavel
  2980.                 { 13, 12532 }, -- Spire of the Stoneshaper
  2981.                 { 16, 15781 }, -- Pattern: Black Dragonscale Leggings
  2982.                 { 17, 15770 }, -- Pattern: Black Dragonscale Shoulders
  2983.                 { 19, 11611 }, -- Plans: Dark Iron Sunderer
  2984.                 { 20, 11614 }, -- Plans: Dark Iron Mail
  2985.                 { 21, 11615 }, -- Plans: Dark Iron Shoulders
  2986.                 { 23, 16048 }, -- Schematic: Dark Iron Rifle
  2987.                 { 24, 16053 }, -- Schematic: Master Engineer's Goggles
  2988.                 { 25, 16049 }, -- Schematic: Dark Iron Bomb
  2989.                 { 26, 18654 }, -- Schematic: Gnomish Alarm-O-Bot
  2990.                 { 27, 18661 }, -- Schematic: World Enlarger
  2991.             },
  2992.         },
  2993.         { -- BRDBSPlans
  2994.             name = AL["Plans"],
  2995.             ExtraList = true,
  2996.             IgnoreAsSource = true,
  2997.             [NORMAL_DIFF] = {
  2998.                 { 1,  11614 }, -- Plans: Dark Iron Mail
  2999.                 { 2,  11615 }, -- Plans: Dark Iron Shoulders
  3000.             },
  3001.         },
  3002.         { -- BRDTheldren
  3003.             name = AL["Theldren"].." - "..format(AL["Tier %s Sets"], "0.5"),
  3004.             npcID = 16059,
  3005.             DisplayIDs = {{15981}},
  3006.             AtlasMapBossID = 6,
  3007.             Level = 60,
  3008.             ExtraList = true,
  3009.             [NORMAL_DIFF] = {
  3010.                 { 1,  22305 }, -- Ironweave Mantle
  3011.                 { 2,  22330 }, -- Shroud of Arcane Mastery
  3012.                 { 3,  22318 }, -- Malgen's Long Bow
  3013.                 { 4,  22317 }, -- Lefty's Brass Knuckle
  3014.             },
  3015.         },
  3016.         AtlasLoot:GameVersion_GE(AtlasLoot.WRATH_VERSION_NUM, { -- BRRDCorenDirebrew
  3017.             name = AL["Coren Direbrew"],
  3018.             npcID = 23872,
  3019.             DisplayIDs = {{21824}},
  3020.             AtlasMapBossID = 15,
  3021.             Level = 82,
  3022.             ExtraList = true,
  3023.             [NORMAL_DIFF] = {
  3024.                 { 1,  49116 }, -- Bitter Balebrew Charm
  3025.                 { 2,  49118 }, -- Bubbling Brightbrew Charm
  3026.                 { 3,  49074 }, -- Coren's Chromium Coaster
  3027.                 { 4,  49076 }, -- Mithril Pocketwatch
  3028.                 { 5,  49078 }, -- Ancient Pickled Egg
  3029.                 { 6,  49080 }, -- Brawler's Souvenir
  3030.                 { 8,  49120 }, -- Direbrew's Bloody Shanker
  3031.                 { 9,  48663 }, -- Tankard O' Terror
  3032.                 { 16,  33977 }, -- Swift Brewfest Ram
  3033.                 { 17,  37828 }, -- Great Brewfest Kodo
  3034.                 { 19,  37863 }, -- Direbrew's Remote
  3035.                 { 21,  38280 }, -- Direbrew's Dire Brew
  3036.             },
  3037.         }),
  3038.     },
  3039. }
  3040.  
  3041. data["LowerBlackrockSpire"] = {
  3042.     name = AL["Lower Blackrock Spire"],
  3043.     MapID = 1583,
  3044.     InstanceID = 229,
  3045.     SubAreaIDs = { 26683, 26718, 26711, 26713, 26686, 32528, 26688 },
  3046.     AtlasModule = ATLAS_MODULE_NAME,
  3047.     AtlasMapID = "LowerBlackrockSpire",
  3048.     AtlasMapFile = {"CL_BlackrockSpireLower", "CL_BlackrockMountainEnt"},
  3049.     AtlasMapFile_AL = {"BlackrockSpireLower", "BlackrockMountainEnt"},
  3050.     ContentType = DUNGEON_CONTENT,
  3051.     LoadDifficulty = NORMAL_DIFF,
  3052.     LevelRange = GetForVersion({48, 55, 60}, {45, 54, 60}),
  3053.     items = {
  3054.         { -- LBRSFelguard
  3055.             name = AL["Burning Felguard"],
  3056.             npcID = 10263,
  3057.             Level = {56, 57},
  3058.             DisplayIDs = {{5047}},
  3059.             AtlasMapBossID = 1,
  3060.             specialType = "rare",
  3061.             [NORMAL_DIFF] = {
  3062.                 { 1,  13181 }, -- Demonskin Gloves
  3063.                 { 2,  13182 }, -- Phase Blade
  3064.             },
  3065.         },
  3066.         { -- LBRSSpirestoneButcher
  3067.             name = AL["Spirestone Butcher"],
  3068.             npcID = 9219,
  3069.             Level = 57,
  3070.             DisplayIDs = {{11574}},
  3071.             AtlasMapBossID = 4,
  3072.             specialType = "rare",
  3073.             [NORMAL_DIFF] = {
  3074.                 { 1,  12608 }, -- Butcher's Apron
  3075.                 { 2,  13286 }, -- Rivenspike
  3076.             },
  3077.         },
  3078.         { -- LBRSOmokk
  3079.             name = AL["Highlord Omokk"],
  3080.             npcID = 9196,
  3081.             Level = GetForVersion(59,57),
  3082.             SubAreaID = 26713,
  3083.             DisplayIDs = {{11565}},
  3084.             AtlasMapBossID = 5,
  3085.             [NORMAL_DIFF] = {
  3086.                 { 1,  16670 }, -- Boots of Elements
  3087.                 { 3,  13166 }, -- Slamshot Shoulders
  3088.                 { 4,  13168 }, -- Plate of the Shaman King
  3089.                 { 5,  13170 }, -- Skyshroud Leggings
  3090.                 { 6,  13169 }, -- Tressermane Leggings
  3091.                 { 7,  13167 }, -- Fist of Omokk
  3092.                 { 8,  12336 }, -- Gemstone of Spirestone
  3093.                 { 16, 12534 }, -- Omokk's Head
  3094.             },
  3095.         },
  3096.         { -- LBRSSpirestoneBattleLord
  3097.             name = AL["Spirestone Battle Lord"],
  3098.             npcID = 9218,
  3099.             Level = 58,
  3100.             DisplayIDs = {{11576}},
  3101.             AtlasMapBossID = 6,
  3102.             specialType = "rare",
  3103.             [NORMAL_DIFF] = {
  3104.                 { 1,  13284 }, -- Swiftdart Battleboots
  3105.                 { 2,  13285 }, -- The Nicker
  3106.             },
  3107.         },
  3108.         { -- LBRSSpirestoneLordMagus
  3109.             name = AL["Spirestone Lord Magus"],
  3110.             npcID = 9217,
  3111.             Level = {57, 58},
  3112.             DisplayIDs = {{11578}},
  3113.             AtlasMapBossID = 6,
  3114.             specialType = "rare",
  3115.             [NORMAL_DIFF] = {
  3116.                 { 1,  13282 }, -- Ogreseer Tower Boots
  3117.                 { 2,  13283 }, -- Magus Ring
  3118.                 { 3,  13261 }, -- Globe of D'sak
  3119.             },
  3120.         },
  3121.         { -- LBRSVosh
  3122.             name = AL["Shadow Hunter Vosh'gajin"],
  3123.             npcID = 9236,
  3124.             Level = 58,
  3125.             SubAreaID = 26688,
  3126.             DisplayIDs = {{9732}},
  3127.             AtlasMapBossID = 7,
  3128.             [NORMAL_DIFF] = {
  3129.                 { 1,  16712 }, -- Shadowcraft Gloves
  3130.                 { 3,  13257 }, -- Demonic Runed Spaulders
  3131.                 { 4,  12626 }, -- Funeral Cuffs
  3132.                 { 5,  13255 }, -- Trueaim Gauntlets
  3133.                 { 6,  12653 }, -- Riphook
  3134.                 { 7,  12651 }, -- Blackcrow
  3135.                 { 8,  12654 }, -- Doomshot
  3136.             },
  3137.         },
  3138.         { -- LBRSVoone
  3139.             name = AL["War Master Voone"],
  3140.             npcID = 9237,
  3141.             Level = GetForVersion(59,58),
  3142.             SubAreaID = 26688,
  3143.             DisplayIDs = {{9733}},
  3144.             AtlasMapBossID = 9,
  3145.             [NORMAL_DIFF] = {
  3146.                 { 1,  16676 }, -- Beaststalker's Gloves
  3147.                 { 3,  13177 }, -- Talisman of Evasion
  3148.                 { 4,  13179 }, -- Brazecore Armguards
  3149.                 { 5,  22231 }, -- Kayser's Boots of Precision
  3150.                 { 6,  13173 }, -- Flightblade Throwing Axe
  3151.                 { 7,  12582 }, -- Keris of Zul'Serak
  3152.                 { 9,  12335 }, -- Gemstone of Smolderthorn
  3153.             },
  3154.         },
  3155.         { -- LBRSGrimaxe
  3156.             name = AL["Bannok Grimaxe"],
  3157.             npcID = 9596,
  3158.             Level = 59,
  3159.             DisplayIDs = {{9668}},
  3160.             AtlasMapBossID = 12,
  3161.             specialType = "rare",
  3162.             [NORMAL_DIFF] = {
  3163.                 { 1,  12637 }, -- Backusarian Gauntlets
  3164.                 { 2,  12634 }, -- Chiselbrand Girdle
  3165.                 { 3,  12621 }, -- Demonfork
  3166.                 { 5,  12838 }, -- Plans: Arcanite Reaper
  3167.                 --{ 6,  12784 }, -- Arcanite Reaper
  3168.             },
  3169.         },
  3170.         { -- LBRSSmolderweb
  3171.             name = AL["Mother Smolderweb"],
  3172.             npcID = 10596,
  3173.             Level = 59,
  3174.             SubAreaID = 26686,
  3175.             DisplayIDs = {{9929}},
  3176.             AtlasMapBossID = 13,
  3177.             [NORMAL_DIFF] = {
  3178.                 { 1,  16715 }, -- Wildheart Boots
  3179.                 { 3,  13244 }, -- Gilded Gauntlets
  3180.                 { 4,  13213 }, -- Smolderweb's Eye
  3181.                 { 5,  13183 }, -- Venomspitter
  3182.             },
  3183.         },
  3184.         { -- LBRSCrystalFang
  3185.             name = AL["Crystal Fang"],
  3186.             npcID = 10376,
  3187.             Level = 60,
  3188.             SubAreaID = 26686,
  3189.             DisplayIDs = {{9755}},
  3190.             AtlasMapBossID = 14,
  3191.             specialType = "rare",
  3192.             [NORMAL_DIFF] = {
  3193.                 { 1,  13185 }, -- Sunderseer Mantle
  3194.                 { 2,  13184 }, -- Fallbrush Handgrips
  3195.                 { 3,  13218 }, -- Fang of the Crystal Spider
  3196.             },
  3197.         },
  3198.         { -- LBRSDoomhowl
  3199.             name = AL["Urok Doomhowl"],
  3200.             npcID = 10584,
  3201.             Level = 60,
  3202.             DisplayIDs = {{11583}},
  3203.             AtlasMapBossID = 15,
  3204.             [NORMAL_DIFF] = {
  3205.                 { 1,  13258 }, -- Slaghide Gauntlets
  3206.                 { 2,  22232 }, -- Marksman's Girdle
  3207.                 { 3,  13259 }, -- Ribsteel Footguards
  3208.                 { 4,  13178 }, -- Rosewine Circle
  3209.                 { 16,  18784 }, -- Top Half of Advanced Armorsmithing: Volume III
  3210.             },
  3211.         },
  3212.         { -- LBRSZigris
  3213.             name = AL["Quartermaster Zigris"],
  3214.             npcID = 9736,
  3215.             Level = 59,
  3216.             SubAreaID = 32528,
  3217.             DisplayIDs = {{9738}},
  3218.             AtlasMapBossID = 16,
  3219.             [NORMAL_DIFF] = {
  3220.                 { 1,  13247 }, -- Quartermaster Zigris' Footlocker
  3221.                 { 3,  13253 }, -- Hands of Power
  3222.                 { 4,  13252 }, -- Cloudrunner Girdle
  3223.                 { 6,  12835 }, -- Plans: Annihilator
  3224.                 --{ 5,  12798 }, -- Annihilator
  3225.             },
  3226.         },
  3227.         { -- LBRSHalycon
  3228.             name = AL["Halycon"],
  3229.             npcID = 10220,
  3230.             Level = 59,
  3231.             SubAreaID = 26711,
  3232.             DisplayIDs = {{9567}},
  3233.             AtlasMapBossID = 17,
  3234.             [NORMAL_DIFF] = {
  3235.                 { 1,  13212 }, -- Halycon's Spiked Collar
  3236.                 { 2,  22313 }, -- Ironweave Bracers
  3237.                 { 3,  13211 }, -- Slashclaw Bracers
  3238.                 { 4,  13210 }, -- Pads of the Dread Wolf
  3239.             },
  3240.         },
  3241.         { -- LBRSSlavener
  3242.             name = AL["Gizrul the Slavener"],
  3243.             npcID = 10268,
  3244.             Level = 60,
  3245.             SubAreaID = 26711,
  3246.             DisplayIDs = {{9564}},
  3247.             AtlasMapBossID = 17,
  3248.             [NORMAL_DIFF] = {
  3249.                 { 1,  16718 }, -- Wildheart Spaulders
  3250.                 { 3,  13208 }, -- Bleak Howler Armguards
  3251.                 { 4,  13206 }, -- Wolfshear Leggings
  3252.                 { 5,  13205 }, -- Rhombeard Protector
  3253.             },
  3254.         },
  3255.         { -- LBRSBashguud
  3256.             name = AL["Ghok Bashguud"],
  3257.             npcID = 9718,
  3258.             Level = 59,
  3259.             DisplayIDs = {{11809}},
  3260.             AtlasMapBossID = 18,
  3261.             specialType = "rare",
  3262.             [NORMAL_DIFF] = {
  3263.                 { 1,  13203 }, -- Armswake Cloak
  3264.                 { 2,  13198 }, -- Hurd Smasher
  3265.                 { 3,  13204 }, -- Bashguuder
  3266.             },
  3267.         },
  3268.         { -- LBRSWyrmthalak
  3269.             name = AL["Overlord Wyrmthalak"],
  3270.             npcID = 9568,
  3271.             Level = 60,
  3272.             SubAreaID = 26718,
  3273.             DisplayIDs = {{8711}},
  3274.             AtlasMapBossID = 19,
  3275.             [NORMAL_DIFF] = {
  3276.                 { 1,  13143 }, -- Mark of the Dragon Lord
  3277.                 { 3,  16679 }, -- Beaststalker's Mantle
  3278.                 { 5,  13162 }, -- Reiver Claws
  3279.                 { 6,  13164 }, -- Heart of the Scale
  3280.                 { 7,  22321 }, -- Heart of Wyrmthalak
  3281.                 { 8,  13163 }, -- Relentless Scythe
  3282.                 { 9,  13148 }, -- Chillpike
  3283.                 { 10, 13161 }, -- Trindlehaven Staff
  3284.                 { 12, 12337 }, -- Gemstone of Bloodaxe
  3285.                 { 16, 12780 }, -- General Drakkisath's Command
  3286.             },
  3287.         },
  3288.  
  3289.         { -- LBRSTrash
  3290.             name = AL["Trash"],
  3291.             ExtraList = true,
  3292.             [NORMAL_DIFF] = {
  3293.                 { 1,  14513 }, -- Pattern: Robe of the Archmage
  3294.                 --{ 2,  14152 }, -- Robe of the Archmage
  3295.                 { 3,  16696 }, -- Devout Belt
  3296.                 { 4,  16685 }, -- Magister's Belt
  3297.                 { 5,  16683 }, -- Magister's Bindings
  3298.                 { 6,  16703 }, -- Dreadmist Bracers
  3299.                 { 7,  16713 }, -- Shadowcraft Belt
  3300.                 { 8,  16716 }, -- Wildheart Belt
  3301.                 { 9, 16680 }, -- Beaststalker's Belt
  3302.                 { 10, 16673 }, -- Cord of Elements
  3303.                 { 11, 16736 }, -- Belt of Valor
  3304.                 { 12, 16735 }, -- Bracers of Valor
  3305.                 { 16, 15749 }, -- Pattern: Volcanic Breastplate
  3306.                 { 17, 15775 }, -- Pattern: Volcanic Shoulders
  3307.                 { 18, 13494 }, -- Recipe: Greater Fire Protection Potion
  3308.                 { 19, 16250 }, -- Formula: Enchant Weapon - Superior Striking
  3309.                 { 20, 16244 }, -- Formula: Enchant Gloves - Greater Strength
  3310.                 { 21, 9214 }, -- Grimoire of Inferno
  3311.                 { 23, 12219 }, -- Unadorned Seal of Ascension
  3312.                 { 24, 12586 }, -- Immature Venom Sac
  3313.             },
  3314.         },
  3315.         { -- LBRSGrayhoof
  3316.             name = AL["Mor Grayhoof"].." - "..format(AL["Tier %s Sets"], "0.5"),
  3317.             npcID = 16080,
  3318.             DisplayIDs = {{15997}},
  3319.             ExtraList = true,
  3320.             ContentPhase = 5,
  3321.             AtlasMapBossID = 9,
  3322.             [NORMAL_DIFF] = {
  3323.                 { 1,  22306 }, -- Ironweave Belt
  3324.                 { 2,  22325 }, -- Belt of the Trickster
  3325.                 { 3,  22319 }, -- Tome of Divine Right
  3326.                 { 4,  22398 }, -- Idol of Rejuvenation
  3327.                 { 5,  22322 }, -- The Jaw Breaker
  3328.             },
  3329.         },
  3330.     },
  3331. }
  3332.  
  3333. data["UpperBlackrockSpire"] = {
  3334.     name = AL["Upper Blackrock Spire"],
  3335.     MapID = 1583,
  3336.     InstanceID = 229,
  3337.     SubAreaIDs = { 26670, 26668, 26684, 26662, 26642, 26683, 15492, 26666, 26715 },
  3338.     AtlasModule = ATLAS_MODULE_NAME,
  3339.     AtlasMapID = "UpperBlackrockSpire",
  3340.     AtlasMapFile = {"CL_BlackrockSpireUpper", "CL_BlackrockMountainEnt"},
  3341.     AtlasMapFile_AL = {"BlackrockSpireUpper", "BlackrockMountainEnt"},
  3342.     ContentType = DUNGEON_CONTENT,
  3343.     LoadDifficulty = NORMAL_DIFF,
  3344.     LevelRange = GetForVersion({48, 55, 60}, {45, 58, 60}),
  3345.     items = {
  3346.         { -- UBRSEmberseer
  3347.             name = AL["Pyroguard Emberseer"],
  3348.             npcID = 9816,
  3349.             Level = 60,
  3350.             SubAreaID = 26662,
  3351.             DisplayIDs = {{2172}},
  3352.             AtlasMapBossID = 1,
  3353.             [NORMAL_DIFF] = {
  3354.                 { 1,  16672 }, -- Gauntlets of Elements
  3355.                 { 3,  12929 }, -- Emberfury Talisman
  3356.                 { 4,  12927 }, -- TruestrikeShoulders
  3357.                 { 5,  12905 }, -- Wildfire Cape
  3358.                 { 6,  12926 }, -- Flaming Band
  3359.                 { 8,  23320 }, -- Tablet of Flame Shock VI
  3360.             },
  3361.         },
  3362.         { -- UBRSSolakar
  3363.             name = AL["Solakar Flamewreath"],
  3364.             npcID = 10264,
  3365.             Level = 60,
  3366.             SubAreaID = 26666,
  3367.             DisplayIDs = {{9581}},
  3368.             AtlasMapBossID = 2,
  3369.             [NORMAL_DIFF] = {
  3370.                 { 1,  16695 }, -- Devout Mantle
  3371.                 { 3,  12609 }, -- Polychromatic Visionwrap
  3372.                 { 4,  12603 }, -- Nightbrace Tunic
  3373.                 { 5,  12589 }, -- Dustfeather Sash
  3374.                 { 6,  12606 }, -- Crystallized Girdle
  3375.                 { 8,  18657 }, -- Schematic: Hyper-Radiant Flame Reflector
  3376.             },
  3377.         },
  3378.         { -- UBRSRunewatcher
  3379.             name = AL["Jed Runewatcher"],
  3380.             npcID = 10509,
  3381.             Level = 59,
  3382.             SubAreaID = 26642,
  3383.             DisplayIDs = {{9686}},
  3384.             AtlasMapBossID = 4,
  3385.             specialType = "rare",
  3386.             [NORMAL_DIFF] = {
  3387.                 { 1,  12604 }, -- Starfire Tiara
  3388.                 { 2,  12930 }, -- Briarwood Reed
  3389.                 { 3,  12605 }, -- Serpentine Skuller
  3390.             },
  3391.         },
  3392.         { -- UBRSAnvilcrack
  3393.             name = AL["Goraluk Anvilcrack "],
  3394.             npcID = 10899,
  3395.             Level = 61,
  3396.             SubAreaID = 26642,
  3397.             DisplayIDs = {{10222}},
  3398.             AtlasMapBossID = 5,
  3399.             [NORMAL_DIFF] = {
  3400.                 { 1,  13502 }, -- Handcrafted Mastersmith Girdle
  3401.                 { 2,  13498 }, -- Handcrafted Mastersmith Leggings
  3402.                 { 3,  18047 }, -- Flame Walkers
  3403.                 { 4,  18048 }, -- Mastersmith's Hammer
  3404.                 { 6,  12834 }, -- Plans: Arcanite Champion
  3405.                 { 7,  12837 }, -- Plans: Masterwork Stormhammer
  3406.                 { 9, 18779 }, -- Bottom Half of Advanced Armorsmithing: Volume I
  3407.                 { 16, "INV_Box_01", nil, AL["Unforged Rune Covered Breastplate"], nil },
  3408.                 { 17, 12806 }, -- Unforged Rune Covered Breastplate
  3409.                 { 18, 12696 }, -- Plans: Demon Forged Breastplate
  3410.             },
  3411.         },
  3412.         { -- UBRSGyth
  3413.             name = AL["Gyth"],
  3414.             npcID = 10339,
  3415.             Level = 62,
  3416.             SubAreaID = 26670,
  3417.             DisplayIDs = {{9806}},
  3418.             AtlasMapBossID = 6,
  3419.             [NORMAL_DIFF] = {
  3420.                 { 1,  12871 }, -- Chromatic Carapace
  3421.                 { 3,  16669 }, -- Pauldrons of Elements
  3422.                 { 5,  22225 }, -- Dragonskin Cowl
  3423.                 { 6,  12960 }, -- Tribal War Feathers
  3424.                 { 7,  12953 }, -- Dragoneye Coif
  3425.                 { 8,  12952 }, -- Gyth's Skull
  3426.                 { 10, 13522 }, -- Recipe: Flask of Chromatic Resistance
  3427.             },
  3428.         },
  3429.         { -- UBRSRend
  3430.             name = AL["Warchief Rend Blackhand"],
  3431.             npcID = 10429,
  3432.             Level = 62,
  3433.             SubAreaID = 26670,
  3434.             DisplayIDs = {{9778}},
  3435.             AtlasMapBossID = 6,
  3436.             [NORMAL_DIFF] = {
  3437.                 { 1,  12590 }, -- Felstriker
  3438.                 { 3,  16733 }, -- Spaulders of Valor
  3439.                 { 5,  12587 }, -- Eye of Rend
  3440.                 { 6,  12588 }, -- Bonespike Shoulder
  3441.                 { 7,  12936 }, -- Battleborn Armbraces
  3442.                 { 8,  18104 }, -- Feralsurge Girdle
  3443.                 { 9,  12935 }, -- Warmaster Legguards
  3444.                 { 10, 18102 }, -- Dragonrider Boots
  3445.                 { 11, 22247 }, -- Faith Healer's Boots
  3446.                 { 12, 18103 }, -- Band of Rumination
  3447.                 { 13, 12940 }, -- Dal'Rend's Sacred Charge
  3448.                 { 14, 12939 }, -- Dal'Rend's Tribal Guardian
  3449.                 { 15, 12583 }, -- Blackhand Doomsaw
  3450.             },
  3451.         },
  3452.         { -- UBRSBeast
  3453.             name = AL["The Beast"],
  3454.             npcID = 10430,
  3455.             Level = 62,
  3456.             SubAreaID = 26684,
  3457.             DisplayIDs = {{10193}},
  3458.             AtlasMapBossID = 8,
  3459.             [NORMAL_DIFF] = {
  3460.                 { 1,  12731 }, -- Pristine Hide of the Beast
  3461.                 { 3,  16729 }, -- Lightforge Spaulders
  3462.                 { 5,  12967 }, -- Bloodmoon Cloak
  3463.                 { 6,  12968 }, -- Frostweaver Cape
  3464.                 { 7,  12966 }, -- Blackmist Armguards
  3465.                 { 8,  12965 }, -- Spiritshroud Leggings
  3466.                 { 9,  12963 }, -- Blademaster Leggings
  3467.                 { 10, 12964 }, -- Tristam Legguards
  3468.                 { 11, 22311 }, -- Ironweave Boots
  3469.                 { 12, 12709 }, -- Finkle's Skinner
  3470.                 { 13, 12969 }, -- Seeping Willow
  3471.                 { 15, 24101 }, -- Book of Ferocious Bite V
  3472.                 { 16, 19227 }, -- Ace of Beasts
  3473.             },
  3474.         },
  3475.         { -- UBRSDrakkisath
  3476.             name = AL["General Drakkisath"],
  3477.             npcID = 10363,
  3478.             Level = 62,
  3479.             SubAreaID = 26715,
  3480.             DisplayIDs = {{10115}},
  3481.             AtlasMapBossID = 9,
  3482.             [NORMAL_DIFF] = {
  3483.                 { 1,  12592 }, -- Blackblade of Shahram
  3484.                 { 3,  22267 }, -- Spellweaver's Turban
  3485.                 { 4,  13141 }, -- Tooth of Gnarr
  3486.                 { 5,  22269 }, -- Shadow Prowler's Cloak
  3487.                 { 6,  13142 }, -- Brigam Girdle
  3488.                 { 7,  13098 }, -- Painweaver Band
  3489.                 { 8,  22268 }, -- Draconic Infused Emblem
  3490.                 { 9,  22253 }, -- Tome of the Lost
  3491.                 { 10, 12602 }, -- Draconian Deflector
  3492.                 { 12, 15730 }, -- Pattern: Red Dragonscale Breastplate
  3493.                 { 14, 13519 }, -- Recipe: Flask of the Titans
  3494.                 { 16, 16690 }, -- Devout Robe
  3495.                 { 17, 16688 }, -- Magister's Robes
  3496.                 { 18, 16700 }, -- Dreadmist Robe
  3497.                 { 19, 16721 }, -- Shadowcraft Tunic
  3498.                 { 20, 16706 }, -- Wildheart Vest
  3499.                 { 21, 16674 }, -- Beaststalker's Tunic
  3500.                 { 22, 16666 }, -- Vest of Elements
  3501.                 { 23, 16726 }, -- Lightforge Breastplate
  3502.                 { 24, 16730 }, -- Breastplate of Valor
  3503.             },
  3504.         },
  3505.         { -- UBRSTrash
  3506.             name = AL["Trash"],
  3507.             ExtraList = true,
  3508.             [NORMAL_DIFF] = {
  3509.                 { 1,  24102 }, -- Manual of Eviscerate IX
  3510.                 { 2,  13260 }, -- Wind Dancer Boots
  3511.                 { 4,  16696 }, -- Devout Belt
  3512.                 { 5,  16683 }, -- Magister's Bindings
  3513.                 { 6,  16703 }, -- Dreadmist Bracers
  3514.                 { 7,  16713 }, -- Shadowcraft Belt
  3515.                 { 8,  16681 }, -- Beaststalker's Bindings
  3516.                 { 9,  16680 }, -- Beaststalker's Belt
  3517.                 { 10, 16673 }, -- Cord of Elements
  3518.                 { 11, 16735 }, -- Bracers of Valor
  3519.                 { 16, 16247 }, -- Formula: Enchant 2H Weapon - Superior Impact
  3520.             },
  3521.         },
  3522.         {
  3523.             name = AL["Darkstone Tablet"],
  3524.             ExtraList = true,
  3525.             AtlasMapBossID = 3,
  3526.             specialType = "quest",
  3527.             [NORMAL_DIFF] = {
  3528.                 { 1,  12358 }, -- Darkstone Tablet
  3529.             },
  3530.         },
  3531.         { -- UBRSValthalak
  3532.             name = AL["Lord Valthalak"].." - "..format(AL["Tier %s Sets"], "0.5"),
  3533.             npcID = 16042,
  3534.             DisplayIDs = {{14308}},
  3535.             ExtraList = true,
  3536.             ContentPhase = 5,
  3537.             AtlasMapBossID = 8,
  3538.             [NORMAL_DIFF] = {
  3539.                 { 1,  22302 }, -- Ironweave Cowl
  3540.                 { 2,  22340 }, -- Pendant of Celerity
  3541.                 { 3,  22337 }, -- Shroud of Domination
  3542.                 { 4,  22343 }, -- Handguards of Savagery
  3543.                 { 5,  22342 }, -- Leggings of Torment
  3544.                 { 6,  22339 }, -- Rune Band of Wizardry
  3545.                 { 7,  22336 }, -- Draconian Aegis of the Legion
  3546.                 { 8,  22335 }, -- Lord Valthalak's Staff of Command
  3547.             },
  3548.         },
  3549.     },
  3550. }
  3551.  
  3552. data["DireMaulEast"] = {
  3553.     name = AL["Dire Maul East"],
  3554.     MapID = 2557,
  3555.     --InstanceID = 429,
  3556.     SubAreaIDs = { 34776, 33730 },
  3557.     AtlasModule = ATLAS_MODULE_NAME,
  3558.     AtlasMapID = "DireMaul",
  3559.     AtlasMapFile = {"DireMaulEast", "DireMaulEnt"},
  3560.     ContentType = DUNGEON_CONTENT,
  3561.     LoadDifficulty = NORMAL_DIFF,
  3562.     LevelRange = {31, 55, 60},
  3563.     items = {
  3564.         { -- DMEPusillin
  3565.             name = AL["Pusillin"],
  3566.             npcID = 14354,
  3567.             Level = 57,
  3568.             DisplayIDs = {{7552}},
  3569.             AtlasMapBossID = "1-2",
  3570.             [NORMAL_DIFF] = {
  3571.                 { 1,  18267 }, -- Recipe: Runn Tum Tuber Surprise
  3572.                 { 3,  18249 }, -- Crescent Key
  3573.             },
  3574.         },
  3575.         { -- DMEZevrimThornhoof
  3576.             name = AL["Zevrim Thornhoof"],
  3577.             npcID = 11490,
  3578.             Level = 57,
  3579.             DisplayIDs = {{11335}},
  3580.             AtlasMapBossID = 3,
  3581.             [NORMAL_DIFF] = {
  3582.                 { 1,  18319 }, -- Fervent Helm
  3583.                 { 2,  18313 }, -- Helm of Awareness
  3584.                 { 3,  18323 }, -- Satyr's Bow
  3585.                 { 5,  18308 }, -- Clever Hat
  3586.                 { 6,  18306 }, -- Gloves of Shadowy Mist
  3587.             },
  3588.         },
  3589.         { -- DMEHydro
  3590.             name = AL["Hydrospawn"],
  3591.             npcID = 13280,
  3592.             Level = 57,
  3593.             DisplayIDs = {{5489}},
  3594.             AtlasMapBossID = 3,
  3595.             [NORMAL_DIFF] = {
  3596.                 { 1,  18317 }, -- Tempest Talisman
  3597.                 { 2,  18322 }, -- Waterspout Boots
  3598.                 { 3,  18324 }, -- Waveslicer
  3599.                 { 5,  19268 }, -- Ace of Elementals
  3600.                 { 7,  18305 }, -- Breakwater Legguards
  3601.                 { 8,  18307 }, -- Riptide Shoes
  3602.             },
  3603.         },
  3604.         { -- DMELethtendris
  3605.             name = AL["Lethtendris"],
  3606.             npcID = 14327,
  3607.             Level = 57,
  3608.             DisplayIDs = {{14378}},
  3609.             AtlasMapBossID = 3,
  3610.             [NORMAL_DIFF] = {
  3611.                 { 1,  18325 }, -- Felhide Cap
  3612.                 { 2,  18311 }, -- Quel'dorai Channeling Rod
  3613.                 { 4,  18301 }, -- Lethtendris's Wand
  3614.                 { 5,  18302 }, -- Band of Vigor
  3615.             },
  3616.         },
  3617.         { -- DMEAlzzin
  3618.             name = AL["Alzzin the Wildshaper"],
  3619.             npcID = 11492,
  3620.             Level = 58,
  3621.             DisplayIDs = {{14416}},
  3622.             AtlasMapBossID = 5,
  3623.             SubAreaID = 33730,
  3624.             [NORMAL_DIFF] = {
  3625.                 { 1,  18328 }, -- Shadewood Cloak
  3626.                 { 2,  18312 }, -- Energized Chestplate
  3627.                 { 3,  18309 }, -- Gloves of Restoration
  3628.                 { 4,  18326 }, -- Razor Gauntlets
  3629.                 { 5,  18327 }, -- Whipvine Cord
  3630.                 { 6,  18318 }, -- Merciful Greaves
  3631.                 { 7,  18321 }, -- Energetic Rod
  3632.                 { 8,  18310 }, -- Fiendish Machete
  3633.                 { 9,  18314 }, -- Ring of Demonic Guile
  3634.                 { 10, 18315 }, -- Ring of Demonic Potency
  3635.             },
  3636.         },
  3637.         { -- DMETrash
  3638.             name = AL["Trash"],
  3639.             ExtraList = true,
  3640.             [NORMAL_DIFF] = {
  3641.                 { 1,  18289 }, -- Barbed Thorn Necklace
  3642.                 { 2,  18296 }, -- Marksman Bands
  3643.                 { 3,  18298 }, -- Unbridled Leggings
  3644.                 { 4,  18295 }, -- Phasing Boots
  3645.                 { 6,  18333 }, -- Libram of Focus
  3646.                 { 7,  18334 }, -- Libram of Protection
  3647.                 { 8,  18332 }, -- Libram of Rapidity
  3648.                 { 10, 18255 }, -- Runn Tum Tuber
  3649.                 { 11, 18297 }, -- Thornling Seed
  3650.             },
  3651.         },
  3652.         { -- DMEIsalien
  3653.             name = AL["Isalien"].." - "..format(AL["Tier %s Sets"], "0.5"),
  3654.             npcID = 16097,
  3655.             DisplayIDs = {{16000}},
  3656.             ExtraList = true,
  3657.             ContentPhase = 5,
  3658.             AtlasMapBossID = 5,
  3659.             [NORMAL_DIFF] = {
  3660.                 { 1,  22304 }, -- Ironweave Gloves
  3661.                 { 2,  22472 }, -- Boots of Ferocity
  3662.                 { 3,  22401 }, -- Libram of Hope
  3663.                 { 4,  22345 }, -- Totem of Rebirth
  3664.                 { 5,  22315 }, -- Hammer of Revitalization
  3665.                 { 6,  22314 }, -- Huntsman's Harpoon
  3666.             },
  3667.         },
  3668.         DM_BOOKS,
  3669.         KEYS,
  3670.     },
  3671. }
  3672.  
  3673. data["DireMaulWest"] = {
  3674.     name = AL["Dire Maul West"],
  3675.     MapID = 2557,
  3676.     --InstanceID = 429,
  3677.     SubAreaIDs = { 33748, 33749, 33750, 33710 },
  3678.     AtlasModule = ATLAS_MODULE_NAME,
  3679.     AtlasMapID = "DireMaul",
  3680.     AtlasMapFile = {"DireMaulWest", "DireMaulEnt"},
  3681.     ContentType = DUNGEON_CONTENT,
  3682.     LoadDifficulty = NORMAL_DIFF,
  3683.     LevelRange = {31, 58, 60},
  3684.     items = {
  3685.         { -- DMWTendrisWarpwood
  3686.             name = AL["Tendris Warpwood"],
  3687.             npcID = 11489,
  3688.             Level = 60,
  3689.             DisplayIDs = {{14383}},
  3690.             AtlasMapBossID = 2,
  3691.             SubAreaID = 33748,
  3692.             [NORMAL_DIFF] = {
  3693.                 { 1,  18393 }, -- Warpwood Binding
  3694.                 { 2,  18390 }, -- Tanglemoss Leggings
  3695.                 { 4,  18352 }, -- Petrified Bark Shield
  3696.                 { 5,  18353 }, -- Stoneflower Staff
  3697.             },
  3698.         },
  3699.         { -- DMWIllyannaRavenoak
  3700.             name = AL["Illyanna Ravenoak"],
  3701.             npcID = 11488,
  3702.             Level = 60,
  3703.             DisplayIDs = {{11270}},
  3704.             SubAreaID = 33749,
  3705.             AtlasMapBossID = 3,
  3706.             [NORMAL_DIFF] = {
  3707.                 { 1,  18383 }, -- Force Imbued Gauntlets
  3708.                 { 2,  18386 }, -- Padre's Trousers
  3709.                 { 4,  18349 }, -- Gauntlets of Accuracy
  3710.                 { 5,  18347 }, -- Well Balanced Axe
  3711.             },
  3712.         },
  3713.         { -- DMWMagisterKalendris
  3714.             name = AL["Magister Kalendris"],
  3715.             npcID = 11487,
  3716.             Level = 60,
  3717.             DisplayIDs = {{14384}},
  3718.             AtlasMapBossID = 4,
  3719.             SubAreaID = 33749,
  3720.             [NORMAL_DIFF] = {
  3721.                 { 1,  18374 }, -- Flamescarred Shoulders
  3722.                 { 2,  18397 }, -- Elder Magus Pendant
  3723.                 { 3,  18371 }, -- Mindtap Talisman
  3724.                 { 5,  18350 }, -- Amplifying Cloak
  3725.                 { 6,  18351 }, -- Magically Sealed Bracers
  3726.                 { 8,  22309 }, -- Pattern: Big Bag of Enchantment
  3727.                 --{ 9,  22249 }, -- Big Bag of Enchantment
  3728.             },
  3729.         },
  3730.         { -- DMWTsuzee
  3731.             name = AL["Tsu'zee"],
  3732.             npcID = 11467,
  3733.             Level = 60,
  3734.             DisplayIDs = {{11250}},
  3735.             specialType = "rare",
  3736.             AtlasMapBossID = 5,
  3737.             SubAreaID = 33749,
  3738.             [NORMAL_DIFF] = {
  3739.                 { 1,  18387 }, -- Brightspark Gloves
  3740.                 { 3,  18346 }, -- Threadbare Trousers
  3741.                 { 4,  18345 }, -- Murmuring Ring
  3742.             },
  3743.         },
  3744.         { -- DMWImmolthar
  3745.             name = AL["Immol'thar"],
  3746.             npcID = 11496,
  3747.             Level = 61,
  3748.             DisplayIDs = {{14173}},
  3749.             AtlasMapBossID = 6,
  3750.             SubAreaID = 33750,
  3751.             [NORMAL_DIFF] = {
  3752.                 { 1,  18381 }, -- Evil Eye Pendant
  3753.                 { 2,  18384 }, -- Bile-etched Spaulders
  3754.                 { 3,  18389 }, -- Cloak of the Cosmos
  3755.                 { 4,  18385 }, -- Robe of Everlasting Night
  3756.                 { 5,  18394 }, -- Demon Howl Wristguards
  3757.                 { 6,  18377 }, -- Quickdraw Gloves
  3758.                 { 7,  18391 }, -- Eyestalk Cord
  3759.                 { 8,  18379 }, -- Odious Greaves
  3760.                 { 9,  18370 }, -- Vigilance Charm
  3761.                 { 10, 18372 }, -- Blade of the New Moon
  3762.             },
  3763.         },
  3764.         { -- DMWPrinceTortheldrin
  3765.             name = AL["Prince Tortheldrin"],
  3766.             npcID = 11486,
  3767.             Level = 61,
  3768.             DisplayIDs = {{11256}},
  3769.             AtlasMapBossID = 7,
  3770.             [NORMAL_DIFF] = {
  3771.                 { 1,  18382 }, -- Fluctuating Cloak
  3772.                 { 2,  18373 }, -- Chestplate of Tranquility
  3773.                 { 3,  18375 }, -- Bracers of the Eclipse
  3774.                 { 4,  18378 }, -- Silvermoon Leggings
  3775.                 { 5,  18380 }, -- Eldritch Reinforced Legplates
  3776.                 { 6,  18395 }, -- Emerald Flame Ring
  3777.                 { 7,  18388 }, -- Stoneshatter
  3778.                 { 8,  18396 }, -- Mind Carver
  3779.                 { 9,  18376 }, -- Timeworn Mace
  3780.                 { 10, 18392 }, -- Distracting Dagger
  3781.             },
  3782.         },
  3783.         { -- DMWTrash
  3784.             name = AL["Trash"],
  3785.             ExtraList = true,
  3786.             [NORMAL_DIFF] = {
  3787.                 { 1,  18340 }, -- Eidolon Talisman
  3788.                 { 2,  18344 }, -- Stonebark Gauntlets
  3789.                 { 3,  18338 }, -- Wand of Arcane Potency
  3790.                 { 5,  18333 }, -- Libram of Focus
  3791.                 { 6,  18334 }, -- Libram of Protection
  3792.                 { 7,  18332 }, -- Libram of Rapidity
  3793.             },
  3794.         },
  3795.         { -- DMWRevanchion
  3796.             name = AL["Revanchion"],
  3797.             npcID = 14690,
  3798.             DisplayIDs = {{14695}},
  3799.             AtlasMapBossID = 2,
  3800.             ContentPhase = 6,
  3801.             specialType = "scourgeInvasion",
  3802.             ExtraList = true,
  3803.             [NORMAL_DIFF] = {
  3804.                 { 1, 23127 }, -- Cloak of Revanchion
  3805.                 { 2, 23129 }, -- Bracers of Mending
  3806.                 { 3, 23128 }, -- The Shadow's Grasp
  3807.             },
  3808.         },
  3809.         { -- DMWShendralarProvisioner
  3810.             name = AL["Shen'dralar Provisioner"],
  3811.             npcID = 14371,
  3812.             DisplayIDs = {{14412}},
  3813.             ExtraList = true,
  3814.             AtlasMapBossID = "1'",
  3815.             IgnoreAsSource = true,
  3816.             [NORMAL_DIFF] = {
  3817.                 { 1,  18487, [PRICE_EXTRA_ITTYPE] = "money:40000" }, -- Pattern: Mooncloth Robe
  3818.                 --{ 2,  18486 }, -- Mooncloth Robe
  3819.             },
  3820.         },
  3821.         { -- DMWHelnurath
  3822.             name = AL["Lord Hel'nurath"],
  3823.             npcID = 14506,
  3824.             DisplayIDs = {{14556}},
  3825.             ExtraList = true,
  3826.             AtlasMapBossID = 6,
  3827.             [NORMAL_DIFF] = {
  3828.                 { 1,  18757 }, -- Diabolic Mantle
  3829.                 { 2,  18754 }, -- Fel Hardened Bracers
  3830.                 { 3,  18755 }, -- Xorothian Firestick
  3831.                 { 4,  18756 }, -- Dreadguard's Protector
  3832.             },
  3833.         },
  3834.         DM_BOOKS,
  3835.         KEYS,
  3836.     },
  3837. }
  3838.  
  3839. data["DireMaulNorth"] = {
  3840.     name = AL["Dire Maul North"],
  3841.     MapID = 2557,
  3842.     --InstanceID = 429,
  3843.     SubAreaIDs = { 33774, 33775 },
  3844.     AtlasModule = ATLAS_MODULE_NAME,
  3845.     AtlasMapID = "DireMaulNorth",
  3846.     AtlasMapFile = {"DireMaulNorth", "DireMaulEnt"},
  3847.     ContentType = DUNGEON_CONTENT,
  3848.     LoadDifficulty = NORMAL_DIFF,
  3849.     LevelRange = {31, 58, 60},
  3850.     items = {
  3851.         { -- DMNGuardMoldar
  3852.             name = AL["Guard Mol'dar"],
  3853.             npcID = 14326,
  3854.             Level = 59,
  3855.             DisplayIDs = {{11561}},
  3856.             AtlasMapBossID = 1,
  3857.             [NORMAL_DIFF] = {
  3858.                 { 1,  18494 }, -- Denwatcher's Shoulders
  3859.                 { 2,  18493 }, -- Bulky Iron Spaulders
  3860.                 { 3,  18496 }, -- Heliotrope Cloak
  3861.                 { 4,  18497 }, -- Sublime Wristguards
  3862.                 { 5,  18498 }, -- Hedgecutter
  3863.                 { 7,  18450 }, -- Robe of Combustion
  3864.                 { 8,  18458 }, -- Modest Armguards
  3865.                 { 9,  18459 }, -- Gallant's Wristguards
  3866.                 { 10, 18451 }, -- Hyena Hide Belt
  3867.                 { 11, 18462 }, -- Jagged Bone Fist
  3868.                 { 12, 18463 }, -- Ogre Pocket Knife
  3869.                 { 13, 18464 }, -- Gordok Nose Ring
  3870.                 { 14, 18460 }, -- Unsophisticated Hand Cannon
  3871.                 { 16, 18250 }, -- Gordok Shackle Key
  3872.                 { 17, 18268 }, -- Gordok Inner Door Key
  3873.             },
  3874.         },
  3875.         { -- DMNStomperKreeg
  3876.             name = AL["Stomper Kreeg"],
  3877.             npcID = 14322,
  3878.             Level = 59,
  3879.             DisplayIDs = {{11545}},
  3880.             AtlasMapBossID = 2,
  3881.             [NORMAL_DIFF] = {
  3882.                 { 1,  18425 }, -- Kreeg's Mug
  3883.                 { 16, "INV_Box_01", nil, AL["Sells:"], nil },
  3884.                 { 17, 18269, [PRICE_EXTRA_ITTYPE] = "money:1500" }, -- Gordok Green Grog
  3885.                 { 18, 18284, [PRICE_EXTRA_ITTYPE] = "money:1500" }, -- Kreeg's Stout Beatdown
  3886.                 { 19, 18287, [PRICE_EXTRA_ITTYPE] = "money:200" }, -- Evermurky
  3887.                 { 20, 18288, [PRICE_EXTRA_ITTYPE] = "money:1500" }, -- Molasses Firewater
  3888.                 { 21, 9260, [PRICE_EXTRA_ITTYPE] = "money:1600" }, -- Volatile Rum
  3889.             },
  3890.         },
  3891.         { -- DMNGuardFengus
  3892.             name = AL["Guard Fengus"],
  3893.             npcID = 14321,
  3894.             Level = 59,
  3895.             DisplayIDs = {{11561}},
  3896.             AtlasMapBossID = 3,
  3897.             [NORMAL_DIFF] = {
  3898.                 { 1,  18450 }, -- Robe of Combustion
  3899.                 { 2,  18458 }, -- Modest Armguards
  3900.                 { 3,  18459 }, -- Gallant's Wristguards
  3901.                 { 4,  18451 }, -- Hyena Hide Belt
  3902.                 { 5,  18462 }, -- Jagged Bone Fist
  3903.                 { 6,  18463 }, -- Ogre Pocket Knife
  3904.                 { 7,  18464 }, -- Gordok Nose Ring
  3905.                 { 8,  18460 }, -- Unsophisticated Hand Cannon
  3906.                 { 10, 18250 }, -- Gordok Shackle Key
  3907.                 { 16, "INV_Box_01", nil, AL["Fengus's Chest"], nil },
  3908.                 { 17, 18266 }, -- Gordok Courtyard Key
  3909.             },
  3910.         },
  3911.         { -- DMNGuardSlipkik
  3912.             name = AL["Guard Slip'kik"],
  3913.             npcID = 14323,
  3914.             Level = 59,
  3915.             DisplayIDs = {{11561}},
  3916.             AtlasMapBossID = 4,
  3917.             [NORMAL_DIFF] = {
  3918.                 { 1,  18494 }, -- Denwatcher's Shoulders
  3919.                 { 2,  18493 }, -- Bulky Iron Spaulders
  3920.                 { 3,  18496 }, -- Heliotrope Cloak
  3921.                 { 4,  18497 }, -- Sublime Wristguards
  3922.                 { 5,  18498 }, -- Hedgecutter
  3923.                 { 7,  18450 }, -- Robe of Combustion
  3924.                 { 8,  18458 }, -- Modest Armguards
  3925.                 { 9,  18459 }, -- Gallant's Wristguards
  3926.                 { 10, 18451 }, -- Hyena Hide Belt
  3927.                 { 11, 18462 }, -- Jagged Bone Fist
  3928.                 { 12, 18463 }, -- Ogre Pocket Knife
  3929.                 { 13, 18464 }, -- Gordok Nose Ring
  3930.                 { 14, 18460 }, -- Unsophisticated Hand Cannon
  3931.                 { 16, 18250 }, -- Gordok Shackle Key
  3932.             },
  3933.         },
  3934.         { -- DMNThimblejack
  3935.             name = AL["Knot Thimblejack's Cache"],
  3936.             AtlasMapBossID = 4,
  3937.             npcID = 14338,
  3938.             ObjectID = 179501,
  3939.             [NORMAL_DIFF] = {
  3940.                 { 1,  18414 }, -- Pattern: Belt of the Archmage
  3941.                 { 16,  18517 }, -- Pattern: Chromatic Cloak
  3942.                 { 17,  18518 }, -- Pattern: Hide of the Wild
  3943.                 { 18,  18519 }, -- Pattern: Shifting Cloak
  3944.                 { 5,  18415 }, -- Pattern: Felcloth Gloves
  3945.                 { 6,  18416 }, -- Pattern: Inferno Gloves
  3946.                 { 7,  18417 }, -- Pattern: Mooncloth Gloves
  3947.                 { 8,  18418 }, -- Pattern: Cloak of Warding
  3948.                 { 20, 18514 }, -- Pattern: Girdle of Insight
  3949.                 { 21, 18515 }, -- Pattern: Mongoose Boots
  3950.                 { 22, 18516 }, -- Pattern: Swift Flight Bracers
  3951.                 { 10, 18258 }, -- Gordok Ogre Suit
  3952.                 { 11, 18240 }, -- Ogre Tannin
  3953.             },
  3954.         },
  3955.         { -- DMNCaptainKromcrush
  3956.             name = AL["Captain Kromcrush"],
  3957.             npcID = 14325,
  3958.             Level = 61,
  3959.             DisplayIDs = {{11564}},
  3960.             AtlasMapBossID = 5,
  3961.             [NORMAL_DIFF] = {
  3962.                 { 1,  18503 }, -- Kromcrush's Chestplate
  3963.                 { 2,  18505 }, -- Mugger's Belt
  3964.                 { 3,  18507 }, -- Boots of the Full Moon
  3965.                 { 4,  18502 }, -- Monstrous Glaive
  3966.             },
  3967.         },
  3968.         { -- DMNChoRush
  3969.             name = AL["Cho'Rush the Observer"],
  3970.             npcID = 14324,
  3971.             Level = 60,
  3972.             DisplayIDs = {{11537}},
  3973.             AtlasMapBossID = 6,
  3974.             [NORMAL_DIFF] = {
  3975.                 { 1,  18490 }, -- Insightful Hood
  3976.                 { 2,  18483 }, -- Mana Channeling Wand
  3977.                 { 3,  18485 }, -- Observer's Shield
  3978.                 { 4,  18484 }, -- Cho'Rush's Blade
  3979.             },
  3980.         },
  3981.         { -- DMNKingGordok
  3982.             name = AL["King Gordok"],
  3983.             npcID = 11501,
  3984.             Level = 62,
  3985.             DisplayIDs = {{11583}},
  3986.             AtlasMapBossID = 6,
  3987.             [NORMAL_DIFF] = {
  3988.                 { 1,  18526 }, -- Crown of the Ogre King
  3989.                 { 2,  18525 }, -- Bracers of Prosperity
  3990.                 { 3,  18527 }, -- Harmonious Gauntlets
  3991.                 { 4,  18524 }, -- Leggings of Destruction
  3992.                 { 5,  18521 }, -- Grimy Metal Boots
  3993.                 { 6,  18522 }, -- Band of the Ogre King
  3994.                 { 7,  18523 }, -- Brightly Glowing Stone
  3995.                 { 8,  18520 }, -- Barbarous Blade
  3996.                 { 16, 19258 }, -- Ace of Warlords
  3997.                 { 18, 18780 }, -- Top Half of Advanced Armorsmithing: Volume I
  3998.             },
  3999.         },
  4000.         { -- DMNTRIBUTERUN
  4001.             name = AL["Tribute"],
  4002.             ExtraList = true,
  4003.             npcID = 14324,
  4004.             ObjectID = 179564,
  4005.             [NORMAL_DIFF] = {
  4006.                 { 1,  18538 }, -- Treant's Bane
  4007.                 { 3,  18528 }, -- Cyclone Spaulders
  4008.                 { 4,  18495 }, -- Redoubt Cloak
  4009.                 { 5,  18532 }, -- Mindsurge Robe
  4010.                 { 6,  18530 }, -- Ogre Forged Hauberk
  4011.                 { 7,  18533 }, -- Gordok Bracers of Power
  4012.                 { 8,  18529 }, -- Elemental Plate Girdle
  4013.                 { 9,  18500 }, -- Tarnished Elven Ring
  4014.                 { 10, 18537 }, -- Counterattack Lodestone
  4015.                 { 11, 18499 }, -- Barrier Shield
  4016.                 { 12, 18531 }, -- Unyielding Maul
  4017.                 { 13, 18534 }, -- Rod of the Ogre Magi
  4018.                 { 16, 18479 }, -- Carrion Scorpid Helm
  4019.                 { 17, 18480 }, -- Scarab Plate Helm
  4020.                 { 18, 18478 }, -- Hyena Hide Jerkin
  4021.                 { 19, 18475 }, -- Oddly Magical Belt
  4022.                 { 20, 18477 }, -- Shaggy Leggings
  4023.                 { 21, 18476 }, -- Mud Stained Boots
  4024.                 { 22, 18482 }, -- Ogre Toothpick Shooter
  4025.                 { 23, 18481 }, -- Skullcracking Mace
  4026.                 { 25, 18655 }, -- Schematic: Major Recombobulator
  4027.             },
  4028.         },
  4029.         { -- DMNTrash
  4030.             name = AL["Trash"],
  4031.             ExtraList = true,
  4032.             [NORMAL_DIFF] = {
  4033.                 { 1,  18250 }, -- Gordok Shackle Key
  4034.                 { 3,  18333 }, -- Libram of Focus
  4035.                 { 4,  18334 }, -- Libram of Protection
  4036.                 { 5,  18332 }, -- Libram of Rapidity
  4037.                 { 7,  18640 }, -- Happy Fun Rock
  4038.             },
  4039.         },
  4040.         DM_BOOKS,
  4041.         KEYS,
  4042.     },
  4043. }
  4044.  
  4045. data["Scholomance"] = {
  4046.     MapID = 2057,
  4047.     InstanceID = 289,
  4048.     SubAreaIDs = { 32549, 32574, 32567, 32577, 32566, 32565, 32581, 32579, 32573, 32568, 32576, 32569 },
  4049.     AtlasModule = ATLAS_MODULE_NAME,
  4050.     AtlasMapID = "Scholomance",
  4051.     AtlasMapFile = "CL_Scholomance",
  4052.     AtlasMapFile_AL = "Scholomance",
  4053.     ContentType = DUNGEON_CONTENT,
  4054.     LoadDifficulty = NORMAL_DIFF,
  4055.     LevelRange = {45, 58, 60},
  4056.     items = {
  4057.         { -- SCHOLOBlood
  4058.             name = AL["Blood Steward of Kirtonos"],
  4059.             npcID = 14861,
  4060.             Level = 61,
  4061.             SubAreaID = 32573,
  4062.             DisplayIDs = {{10925}},
  4063.             AtlasMapBossID = 1,
  4064.             [NORMAL_DIFF] = {
  4065.                 { 1,  13523 }, -- Blood of Innocents
  4066.             },
  4067.         },
  4068.         { -- SCHOLOKirtonostheHerald
  4069.             name = AL["Kirtonos the Herald"],
  4070.             npcID = 10506,
  4071.             Level = 60,
  4072.             SubAreaID = 32574,
  4073.             DisplayIDs = {{7534}},
  4074.             AtlasMapBossID = 2,
  4075.             [NORMAL_DIFF] = {
  4076.                 { 1,  16734 }, -- Boots of Valor
  4077.                 { 3,  13960 }, -- Heart of the Fiend
  4078.                 { 4,  13955 }, -- Stoneform Shoulders
  4079.                 { 5,  13969 }, -- Loomguard Armbraces
  4080.                 { 6,  13957 }, -- Gargoyle Slashers
  4081.                 { 7,  13956 }, -- Clutch of Andros
  4082.                 { 8,  13967 }, -- Windreaver Greaves
  4083.                 { 9,  14024 }, -- Frightalon
  4084.                 { 10, 13983 }, -- Gravestone War Axe
  4085.             },
  4086.         },
  4087.         { -- SCHOLOJandiceBarov
  4088.             name = AL["Jandice Barov"],
  4089.             npcID = 10503,
  4090.             Level = 61,
  4091.             DisplayIDs = {{11073}},
  4092.             AtlasMapBossID = 3,
  4093.             [NORMAL_DIFF] = {
  4094.                 { 1,  16701 }, -- Dreadmist Mantle
  4095.                 { 3,  14548 }, -- Royal Cap Spaulders
  4096.                 { 4,  18689 }, -- Phantasmal Cloak
  4097.                 { 5,  14543 }, -- Darkshade Gloves
  4098.                 { 6,  14545 }, -- Ghostloom Leggings
  4099.                 { 7,  18690 }, -- Wraithplate Leggings
  4100.                 { 8,  14541 }, -- Barovian Family Sword
  4101.                 { 9,  22394 }, -- Staff of Metanoia
  4102.                 { 12, 13523 }, -- Blood of Innocents
  4103.             },
  4104.         },
  4105.         { -- SCHOLORattlegore
  4106.             name = AL["Rattlegore"],
  4107.             npcID = 11622,
  4108.             Level = 61,
  4109.             SubAreaID = 32577,
  4110.             DisplayIDs = {{12073}},
  4111.             AtlasMapBossID = 5,
  4112.             [NORMAL_DIFF] = {
  4113.                 { 1,  16711 }, -- Shadowcraft Boots
  4114.                 { 3,  14539 }, -- Bone Ring Helm
  4115.                 { 4,  14538 }, -- Deadwalker Mantle
  4116.                 { 5,  18686 }, -- Bone Golem Shoulders
  4117.                 { 6,  14537 }, -- Corpselight Greaves
  4118.                 { 7,  14528 }, -- Rattlecage Buckler
  4119.                 { 8,  14531 }, -- Frightskull Shaft
  4120.                 { 10, 18782 }, -- Top Half of Advanced Armorsmithing: Volume II
  4121.                 { 12, 13873 }, -- Viewing Room Key
  4122.             },
  4123.         },
  4124.         { -- SCHOLODeathKnight
  4125.             name = AL["Death Knight Darkreaver"],
  4126.             npcID = 14516,
  4127.             Level = 61,
  4128.             SubAreaID = 32577,
  4129.             DisplayIDs = {{14591}},
  4130.             AtlasMapBossID = 5,
  4131.             [NORMAL_DIFF] = {
  4132.                 { 1,  18760 }, -- Necromantic Band
  4133.                 { 2,  18761 }, -- Oblivion's Touch
  4134.                 { 3,  18758 }, -- Specter's Blade
  4135.                 { 4,  18759 }, -- Malicious Axe
  4136.             },
  4137.         },
  4138.         { -- SCHOLOMarduk
  4139.             name = AL["Marduk Blackpool"],
  4140.             npcID = 10433,
  4141.             Level = 58,
  4142.             SubAreaID = 32576,
  4143.             DisplayIDs = {{10248}},
  4144.             AtlasMapBossID = 6,
  4145.             [NORMAL_DIFF] = {
  4146.                 { 1,  18692 }, -- Death Knight Sabatons
  4147.                 { 2,  14576 }, -- Ebon Hilt of Marduk
  4148.             },
  4149.         },
  4150.         { -- SCHOLOVectus
  4151.             name = AL["Vectus"],
  4152.             npcID = 10432,
  4153.             Level = 60,
  4154.             SubAreaID = 32576,
  4155.             DisplayIDs = {{2606}},
  4156.             AtlasMapBossID = 6,
  4157.             [NORMAL_DIFF] = {
  4158.                 { 1,  18691 }, -- Dark Advisor's Pendant
  4159.                 { 2,  14577 }, -- Skullsmoke Pants
  4160.             },
  4161.         },
  4162.         { -- SCHOLORasFrostwhisper
  4163.             name = AL["Ras Frostwhisper"],
  4164.             npcID = 10508,
  4165.             Level = 62,
  4166.             SubAreaID = 32579,
  4167.             DisplayIDs = {{7919}},
  4168.             AtlasMapBossID = 7,
  4169.             [NORMAL_DIFF] = {
  4170.                 { 1,  13314 }, -- Alanna's Embrace
  4171.                 { 3,  16689 }, -- Magister's Mantle
  4172.                 { 5,  14503 }, -- Death's Clutch
  4173.                 { 6,  14340 }, -- Freezing Lich Robes
  4174.                 { 7,  18693 }, -- Shivery Handwraps
  4175.                 { 8,  14525 }, -- Boneclenched Gauntlets
  4176.                 { 9,  14502 }, -- Frostbite Girdle
  4177.                 { 10, 14522 }, -- Maelstrom Leggings
  4178.                 { 11, 18694 }, -- Shadowy Mail Greaves
  4179.                 { 12, 18695 }, -- Spellbound Tome
  4180.                 { 13, 18696 }, -- Intricately Runed Shield
  4181.                 { 14, 13952 }, -- Iceblade Hacker
  4182.                 { 15, 14487 }, -- Bonechill Hammer
  4183.                 { 16, 13521 }, -- Recipe: Flask of Supreme Power
  4184.             },
  4185.         },
  4186.         { -- SCHOLOInstructorMalicia
  4187.             name = AL["Instructor Malicia"],
  4188.             npcID = 10505,
  4189.             Level = 60,
  4190.             SubAreaID = 32567,
  4191.             DisplayIDs = {{11069}},
  4192.             AtlasMapBossID = 8,
  4193.             [NORMAL_DIFF] = {
  4194.                 { 1,  16710 }, -- Shadowcraft Bracers
  4195.                 { 4,  18681 }, -- Burial Shawl
  4196.                 { 5,  14633 }, -- Necropile Mantle
  4197.                 { 6,  14626 }, -- Necropile Robe
  4198.                 { 7,  14637 }, -- Cadaverous Armor
  4199.                 { 8,  14611 }, -- Bloodmail Hauberk
  4200.                 { 9,  14624 }, -- Deathbone Chestplate
  4201.                 { 10, 14629 }, -- Necropile Cuffs
  4202.                 { 11, 14640 }, -- Cadaverous Gloves
  4203.                 { 12, 14615 }, -- Bloodmail Gauntlets
  4204.                 { 13, 14622 }, -- Deathbone Gauntlets
  4205.                 { 14, 14636 }, -- Cadaverous Belt
  4206.                 { 15, 14614 }, -- Bloodmail Belt
  4207.                 { 16, 14620 }, -- Deathbone Girdle
  4208.                 { 17, 14632 }, -- Necropile Leggings
  4209.                 { 18, 14638 }, -- Cadaverous Leggings
  4210.                 { 19, 18682 }, -- Ghoul Skin Leggings
  4211.                 { 20, 14612 }, -- Bloodmail Legguards
  4212.                 { 21, 14623 }, -- Deathbone Legguards
  4213.                 { 22, 14631 }, -- Necropile Boots
  4214.                 { 23, 14641 }, -- Cadaverous Walkers
  4215.                 { 24, 14616 }, -- Bloodmail Boots
  4216.                 { 25, 14621 }, -- Deathbone Sabatons
  4217.                 { 26, 18684 }, -- Dimly Opalescent Ring
  4218.                 { 27, 23201 }, -- Libram of Divinity
  4219.                 { 28, 23200 }, -- Totem of Sustaining
  4220.                 { 29, 18680 }, -- Ancient Bone Bow
  4221.                 { 30, 18683 }, -- Hammer of the Vesper
  4222.             },
  4223.         },
  4224.         { -- SCHOLODoctorTheolenKrastinov
  4225.             name = AL["Doctor Theolen Krastinov"],
  4226.             npcID = 11261,
  4227.             Level = 60,
  4228.             SubAreaID = 32565,
  4229.             DisplayIDs = {{10901}},
  4230.             AtlasMapBossID = 9,
  4231.             [NORMAL_DIFF] = {
  4232.                 { 1,  16684 }, -- Magister's Gloves
  4233.                 { 2,  14617 }, -- Sawbones Shirt
  4234.                 { 4,  18681 }, -- Burial Shawl
  4235.                 { 5,  14633 }, -- Necropile Mantle
  4236.                 { 6,  14626 }, -- Necropile Robe
  4237.                 { 7,  14637 }, -- Cadaverous Armor
  4238.                 { 8,  14611 }, -- Bloodmail Hauberk
  4239.                 { 9,  14624 }, -- Deathbone Chestplate
  4240.                 { 10, 14629 }, -- Necropile Cuffs
  4241.                 { 11, 14640 }, -- Cadaverous Gloves
  4242.                 { 12, 14615 }, -- Bloodmail Gauntlets
  4243.                 { 13, 14622 }, -- Deathbone Gauntlets
  4244.                 { 14, 14636 }, -- Cadaverous Belt
  4245.                 { 15, 14614 }, -- Bloodmail Belt
  4246.                 { 16, 14620 }, -- Deathbone Girdle
  4247.                 { 17, 14632 }, -- Necropile Leggings
  4248.                 { 18, 14638 }, -- Cadaverous Leggings
  4249.                 { 19, 18682 }, -- Ghoul Skin Leggings
  4250.                 { 20, 14612 }, -- Bloodmail Legguards
  4251.                 { 21, 14623 }, -- Deathbone Legguards
  4252.                 { 22, 14631 }, -- Necropile Boots
  4253.                 { 23, 14641 }, -- Cadaverous Walkers
  4254.                 { 24, 14616 }, -- Bloodmail Boots
  4255.                 { 25, 14621 }, -- Deathbone Sabatons
  4256.                 { 26, 18684 }, -- Dimly Opalescent Ring
  4257.                 { 27, 23201 }, -- Libram of Divinity
  4258.                 { 28, 23200 }, -- Totem of Sustaining
  4259.                 { 29, 18680 }, -- Ancient Bone Bow
  4260.                 { 30, 18683 }, -- Hammer of the Vesper
  4261.             },
  4262.         },
  4263.         { -- SCHOLOLorekeeperPolkelt
  4264.             name = AL["Lorekeeper Polkelt"],
  4265.             npcID = 10901,
  4266.             Level = 60,
  4267.             SubAreaID = 32566,
  4268.             DisplayIDs = {{11492}},
  4269.             AtlasMapBossID = 10,
  4270.             [NORMAL_DIFF] = {
  4271.                 { 1,  16705 }, -- Dreadmist Wraps
  4272.                 { 4,  18681 }, -- Burial Shawl
  4273.                 { 5,  14633 }, -- Necropile Mantle
  4274.                 { 6,  14626 }, -- Necropile Robe
  4275.                 { 7,  14637 }, -- Cadaverous Armor
  4276.                 { 8,  14611 }, -- Bloodmail Hauberk
  4277.                 { 9,  14624 }, -- Deathbone Chestplate
  4278.                 { 10, 14629 }, -- Necropile Cuffs
  4279.                 { 11, 14640 }, -- Cadaverous Gloves
  4280.                 { 12, 14615 }, -- Bloodmail Gauntlets
  4281.                 { 13, 14622 }, -- Deathbone Gauntlets
  4282.                 { 14, 14636 }, -- Cadaverous Belt
  4283.                 { 15, 14614 }, -- Bloodmail Belt
  4284.                 { 16, 14620 }, -- Deathbone Girdle
  4285.                 { 17, 14632 }, -- Necropile Leggings
  4286.                 { 18, 14638 }, -- Cadaverous Leggings
  4287.                 { 19, 18682 }, -- Ghoul Skin Leggings
  4288.                 { 20, 14612 }, -- Bloodmail Legguards
  4289.                 { 21, 14623 }, -- Deathbone Legguards
  4290.                 { 22, 14631 }, -- Necropile Boots
  4291.                 { 23, 14641 }, -- Cadaverous Walkers
  4292.                 { 24, 14616 }, -- Bloodmail Boots
  4293.                 { 25, 14621 }, -- Deathbone Sabatons
  4294.                 { 26, 18684 }, -- Dimly Opalescent Ring
  4295.                 { 27, 23201 }, -- Libram of Divinity
  4296.                 { 28, 23200 }, -- Totem of Sustaining
  4297.                 { 29, 18680 }, -- Ancient Bone Bow
  4298.                 { 30, 18683 }, -- Hammer of the Vesper
  4299.             },
  4300.         },
  4301.         { -- SCHOLOTheRavenian
  4302.             name = AL["The Ravenian"],
  4303.             npcID = 10507,
  4304.             Level = 60,
  4305.             SubAreaID = 32569,
  4306.             DisplayIDs = {{10433}},
  4307.             AtlasMapBossID = 11,
  4308.             [NORMAL_DIFF] = {
  4309.                 { 1,  16716 }, -- Wildheart Belt
  4310.                 { 4,  18681 }, -- Burial Shawl
  4311.                 { 5,  14633 }, -- Necropile Mantle
  4312.                 { 6,  14626 }, -- Necropile Robe
  4313.                 { 7,  14637 }, -- Cadaverous Armor
  4314.                 { 8,  14611 }, -- Bloodmail Hauberk
  4315.                 { 9,  14624 }, -- Deathbone Chestplate
  4316.                 { 10, 14629 }, -- Necropile Cuffs
  4317.                 { 11, 14640 }, -- Cadaverous Gloves
  4318.                 { 12, 14615 }, -- Bloodmail Gauntlets
  4319.                 { 13, 14622 }, -- Deathbone Gauntlets
  4320.                 { 14, 14636 }, -- Cadaverous Belt
  4321.                 { 15, 14614 }, -- Bloodmail Belt
  4322.                 { 16, 14620 }, -- Deathbone Girdle
  4323.                 { 17, 14632 }, -- Necropile Leggings
  4324.                 { 18, 14638 }, -- Cadaverous Leggings
  4325.                 { 19, 18682 }, -- Ghoul Skin Leggings
  4326.                 { 20, 14612 }, -- Bloodmail Legguards
  4327.                 { 21, 14623 }, -- Deathbone Legguards
  4328.                 { 22, 14631 }, -- Necropile Boots
  4329.                 { 23, 14641 }, -- Cadaverous Walkers
  4330.                 { 24, 14616 }, -- Bloodmail Boots
  4331.                 { 25, 14621 }, -- Deathbone Sabatons
  4332.                 { 26, 18684 }, -- Dimly Opalescent Ring
  4333.                 { 27, 23201 }, -- Libram of Divinity
  4334.                 { 28, 23200 }, -- Totem of Sustaining
  4335.                 { 29, 18680 }, -- Ancient Bone Bow
  4336.                 { 30, 18683 }, -- Hammer of the Vesper
  4337.             },
  4338.         },
  4339.         { -- SCHOLOLordAlexeiBarov
  4340.             name = AL["Lord Alexei Barov"],
  4341.             npcID = 10504,
  4342.             Level = 60,
  4343.             SubAreaID = 32549,
  4344.             DisplayIDs = {{11072}},
  4345.             AtlasMapBossID = 12,
  4346.             [NORMAL_DIFF] = {
  4347.                 { 1,  16722 }, -- Lightforge Bracers
  4348.                 { 4,  18681 }, -- Burial Shawl
  4349.                 { 5,  14633 }, -- Necropile Mantle
  4350.                 { 6,  14626 }, -- Necropile Robe
  4351.                 { 7,  14637 }, -- Cadaverous Armor
  4352.                 { 8,  14611 }, -- Bloodmail Hauberk
  4353.                 { 9,  14624 }, -- Deathbone Chestplate
  4354.                 { 10, 14629 }, -- Necropile Cuffs
  4355.                 { 11, 14640 }, -- Cadaverous Gloves
  4356.                 { 12, 14615 }, -- Bloodmail Gauntlets
  4357.                 { 13, 14622 }, -- Deathbone Gauntlets
  4358.                 { 14, 14636 }, -- Cadaverous Belt
  4359.                 { 15, 14614 }, -- Bloodmail Belt
  4360.                 { 16, 14620 }, -- Deathbone Girdle
  4361.                 { 17, 14632 }, -- Necropile Leggings
  4362.                 { 18, 14638 }, -- Cadaverous Leggings
  4363.                 { 19, 18682 }, -- Ghoul Skin Leggings
  4364.                 { 20, 14612 }, -- Bloodmail Legguards
  4365.                 { 21, 14623 }, -- Deathbone Legguards
  4366.                 { 22, 14631 }, -- Necropile Boots
  4367.                 { 23, 14641 }, -- Cadaverous Walkers
  4368.                 { 24, 14616 }, -- Bloodmail Boots
  4369.                 { 25, 14621 }, -- Deathbone Sabatons
  4370.                 { 26, 18684 }, -- Dimly Opalescent Ring
  4371.                 { 27, 23201 }, -- Libram of Divinity
  4372.                 { 28, 23200 }, -- Totem of Sustaining
  4373.                 { 29, 18680 }, -- Ancient Bone Bow
  4374.                 { 30, 18683 }, -- Hammer of the Vesper
  4375.             },
  4376.         },
  4377.         { -- SCHOLOLadyIlluciaBarov
  4378.             name = AL["Lady Illucia Barov"],
  4379.             npcID = 10502,
  4380.             Level = 60,
  4381.             SubAreaID = 32568,
  4382.             DisplayIDs = {{11835}},
  4383.             AtlasMapBossID = 13,
  4384.             [NORMAL_DIFF] = {
  4385.                 { 4,  18681 }, -- Burial Shawl
  4386.                 { 5,  14633 }, -- Necropile Mantle
  4387.                 { 6,  14626 }, -- Necropile Robe
  4388.                 { 7,  14637 }, -- Cadaverous Armor
  4389.                 { 8,  14611 }, -- Bloodmail Hauberk
  4390.                 { 9,  14624 }, -- Deathbone Chestplate
  4391.                 { 10, 14629 }, -- Necropile Cuffs
  4392.                 { 11, 14640 }, -- Cadaverous Gloves
  4393.                 { 12, 14615 }, -- Bloodmail Gauntlets
  4394.                 { 13, 14622 }, -- Deathbone Gauntlets
  4395.                 { 14, 14636 }, -- Cadaverous Belt
  4396.                 { 15, 14614 }, -- Bloodmail Belt
  4397.                 { 16, 14620 }, -- Deathbone Girdle
  4398.                 { 17, 14632 }, -- Necropile Leggings
  4399.                 { 18, 14638 }, -- Cadaverous Leggings
  4400.                 { 19, 18682 }, -- Ghoul Skin Leggings
  4401.                 { 20, 14612 }, -- Bloodmail Legguards
  4402.                 { 21, 14623 }, -- Deathbone Legguards
  4403.                 { 22, 14631 }, -- Necropile Boots
  4404.                 { 23, 14641 }, -- Cadaverous Walkers
  4405.                 { 24, 14616 }, -- Bloodmail Boots
  4406.                 { 25, 14621 }, -- Deathbone Sabatons
  4407.                 { 26, 18684 }, -- Dimly Opalescent Ring
  4408.                 { 27, 23201 }, -- Libram of Divinity
  4409.                 { 28, 23200 }, -- Totem of Sustaining
  4410.                 { 29, 18680 }, -- Ancient Bone Bow
  4411.                 { 30, 18683 }, -- Hammer of the Vesper
  4412.             },
  4413.         },
  4414.         { -- SCHOLODarkmasterGandling
  4415.             name = AL["Darkmaster Gandling"],
  4416.             npcID = 1853,
  4417.             Level = 61,
  4418.             SubAreaID = 32581,
  4419.             DisplayIDs = {{11070}},
  4420.             AtlasMapBossID = 14,
  4421.             [NORMAL_DIFF] = {
  4422.                 { 1,  13937 }, -- Headmaster's Charge
  4423.                 { 2,  14514 }, -- Pattern: Robe of the Void
  4424.                 { 4,  16693 }, -- Devout Crown
  4425.                 { 5,  16686 }, -- Magister's Crown
  4426.                 { 6,  16698 }, -- Dreadmist Mask
  4427.                 { 7,  16707 }, -- Shadowcraft Cap
  4428.                 { 8,  16720 }, -- Wildheart Cowl
  4429.                 { 9, 16677 }, -- Beaststalker's Cap
  4430.                 { 10, 16667 }, -- Coif of Elements
  4431.                 { 11, 16727 }, -- Lightforge Helm
  4432.                 { 12, 16731 }, -- Helm of Valor
  4433.                 { 16, 13944 }, -- Tombstone Breastplate
  4434.                 { 17, 13951 }, -- Vigorsteel Vambraces
  4435.                 { 18, 13950 }, -- Detention Strap
  4436.                 { 19, 13398 }, -- Boots of the Shrieker
  4437.                 { 20, 22433 }, -- Don Mauricio's Band of Domination
  4438.                 { 21, 13938 }, -- Bonecreeper Stylus
  4439.                 { 22, 13953 }, -- Silent Fang
  4440.                 { 23, 13964 }, -- Witchblade
  4441.                 { 25, 19276 }, -- Ace of Portals
  4442.                 { 27, 13501 }, -- Recipe: Major Mana Potion
  4443.             },
  4444.         },
  4445.         { -- SCHOLOTrash
  4446.             name = AL["Trash"],
  4447.             ExtraList = true,
  4448.             [NORMAL_DIFF] = {
  4449.                 { 1,  16685 }, -- Magister's Belt
  4450.                 { 2,  16702 }, -- Dreadmist Belt
  4451.                 { 3,  16710 }, -- Shadowcraft Bracers
  4452.                 { 4,  16714 }, -- Wildheart Bracers
  4453.                 { 5,  16716 }, -- Wildheart Belt
  4454.                 { 6,  16671 }, -- Bindings of Elements
  4455.                 { 7,  16722 }, -- Lightforge Bracers
  4456.                 { 9,  12843 }, -- Corruptor's Scourgestone
  4457.                 { 10, 12841 }, -- Invader's Scourgestone
  4458.                 { 11, 12840 }, -- Minion's Scourgestone
  4459.                 { 13, 20520 }, -- Dark Rune
  4460.                 { 14, 12753 }, -- Skin of Shadow
  4461.                 { 16, 18698 }, -- Tattered Leather Hood
  4462.                 { 17, 18699 }, -- Icy Tomb Spaulders
  4463.                 { 18, 14536 }, -- Bonebrace Hauberk
  4464.                 { 19, 18700 }, -- Malefic Bracers
  4465.                 { 20, 18702 }, -- Belt of the Ordained
  4466.                 { 21, 18697 }, -- Coldstone Slippers
  4467.                 { 22, 18701 }, -- Innervating Band
  4468.                 { 24, 16254 }, -- Formula: Enchant Weapon - Lifestealing
  4469.                 { 25, 16255 }, -- Formula: Enchant 2H Weapon - Major Spirit
  4470.                 { 26, 15773 }, -- Pattern: Wicked Leather Armor
  4471.                 { 27, 15776 }, -- Pattern: Runic Leather Armor
  4472.                 { 29, 13920 }, -- Healthy Dragon Scale
  4473.             },
  4474.         },
  4475.         { -- SCHOLOLordB
  4476.             name = AL["Lord Blackwood"],
  4477.             npcID = 14695,
  4478.             DisplayIDs = {{14699}},
  4479.             AtlasMapBossID = 2,
  4480.             ContentPhase = 6,
  4481.             specialType = "scourgeInvasion",
  4482.             ExtraList = true,
  4483.             [NORMAL_DIFF] = {
  4484.                 { 1,  23132 }, -- Lord Blackwood's Blade
  4485.                 { 2,  23156 }, -- Blackwood's Thigh
  4486.                 { 3,  23139 }, -- Lord Blackwood's Buckler
  4487.             },
  4488.         },
  4489.         { -- SCHOLOKormok
  4490.             name = AL["Kormok"].." - "..format(AL["Tier %s Sets"], "0.5"),
  4491.             npcID = 16118,
  4492.             DisplayIDs = {{16020}},
  4493.             ExtraList = true,
  4494.             ContentPhase = 5,
  4495.             AtlasMapBossID = 7,
  4496.             [NORMAL_DIFF] = {
  4497.                 { 1,  22303 }, -- Ironweave Pants
  4498.                 { 2,  22326 }, -- Amalgam's Band
  4499.                 { 3,  22331 }, -- Band of the Steadfast Hero
  4500.                 { 4,  22332 }, -- Blade of Necromancy
  4501.                 { 5,  22333 }, -- Hammer of Divine Might
  4502.             },
  4503.         },
  4504.         KEYS,
  4505.     },
  4506. }
  4507.  
  4508. data["Stratholme"] = {
  4509.     MapID = 2017,
  4510.     InstanceID = 329,
  4511.     SubAreaIDs = {
  4512.         -- Living
  4513.         32319, 32320, 32367, 32331, 32357, 32281, 32285, 32277,
  4514.         -- Undead
  4515.         32342, 32322, 32303, 32301, 32352,
  4516.         -- Ziggurats
  4517.         32344, 32345, 32349,
  4518.     },
  4519.     AtlasModule = ATLAS_MODULE_NAME,
  4520.     AtlasMapID = "Stratholme",
  4521.     AtlasMapFile = "CL_Stratholme",
  4522.     AtlasMapFile_AL = "Stratholme",
  4523.     ContentType = DUNGEON_CONTENT,
  4524.     LoadDifficulty = NORMAL_DIFF,
  4525.     LevelRange = GetForVersion({37, 58, 60}, {45, 58, 60}),
  4526.     items = {
  4527.         { -- STRATSkull
  4528.             name = AL["Skul"],
  4529.             NameColor = GREEN,
  4530.             npcID = 10393,
  4531.             Level = 58,
  4532.             DisplayIDs = {{2606}},
  4533.             AtlasMapBossID = 1,
  4534.             specialType = "rare",
  4535.             [NORMAL_DIFF] = {
  4536.                 { 1,  13395 }, -- Skul's Fingerbone Claws
  4537.                 { 2,  13394 }, -- Skul's Cold Embrace
  4538.                 { 3,  13396 }, -- Skul's Ghastly Touch
  4539.             },
  4540.         },
  4541.         { -- STRATStratholmeCourier
  4542.             name = AL["Stratholme Courier"],
  4543.             NameColor = GREEN,
  4544.             npcID = 11082,
  4545.             Level = 57,
  4546.             DisplayIDs = {{10547}},
  4547.             AtlasMapBossID = 1,
  4548.             [NORMAL_DIFF] = {
  4549.                 { 1,  13303 }, -- Crusaders' Square Postbox Key
  4550.                 { 2,  13305 }, -- Elders' Square Postbox Key
  4551.                 { 3,  13304 }, -- Festival Lane Postbox Key
  4552.                 { 4,  13307 }, -- Fras Siabi's Postbox Key
  4553.                 { 5,  13306 }, -- King's Square Postbox Key
  4554.                 { 6,  13302 }, -- Market Row Postbox Key
  4555.             },
  4556.         },
  4557.         { -- STRATHearthsingerForresten
  4558.             name = AL["Hearthsinger Forresten"],
  4559.             NameColor = GREEN,
  4560.             npcID = 10558,
  4561.             Level = 57,
  4562.             SubAreaID = 32277,
  4563.             DisplayIDs = {{10482}},
  4564.             AtlasMapBossID = 3,
  4565.             specialType = "rare",
  4566.             [NORMAL_DIFF] = {
  4567.                 { 1,  16682 }, -- Magister's Boots
  4568.                 { 3,  13378 }, -- Songbird Blouse
  4569.                 { 4,  13384 }, -- Rainbow Girdle
  4570.                 { 5,  13383 }, -- Woollies of the Prancing Minstrel
  4571.                 { 6,  13379 }, -- Piccolo of the Flaming Fire
  4572.             },
  4573.         },
  4574.         { -- STRATTheUnforgiven
  4575.             name = AL["The Unforgiven"],
  4576.             NameColor = GREEN,
  4577.             npcID = 10516,
  4578.             Level = 57,
  4579.             SubAreaID = 32281,
  4580.             DisplayIDs = {{10771}},
  4581.             AtlasMapBossID = 4,
  4582.             [NORMAL_DIFF] = {
  4583.                 { 1,  16717 }, -- Wildheart Gloves
  4584.                 { 3,  13404 }, -- Mask of the Unforgiven
  4585.                 { 4,  13405 }, -- Wailing Nightbane Pauldrons
  4586.                 { 5,  13409 }, -- Tearfall Bracers
  4587.                 { 6,  13408 }, -- Soul Breaker
  4588.             },
  4589.         },
  4590.         { -- STRATPostmaster
  4591.             name = AL["Postmaster Malown"],
  4592.             NameColor = GREEN,
  4593.             npcID = 11143,
  4594.             Level = 60,
  4595.             DisplayIDs = {{10669}},
  4596.             AtlasMapBossID = "6'",
  4597.             [NORMAL_DIFF] = {
  4598.                 { 1,  13390 }, -- The Postmaster's Band
  4599.                 { 2,  13388 }, -- The Postmaster's Tunic
  4600.                 { 3,  13389 }, -- The Postmaster's Trousers
  4601.                 { 4,  13391 }, -- The Postmaster's Treads
  4602.                 { 5,  13392 }, -- The Postmaster's Seal
  4603.                 { 6,  13393 }, -- Malown's Slam
  4604.             },
  4605.         },
  4606.         { -- STRATTimmytheCruel
  4607.             name = AL["Timmy the Cruel"],
  4608.             NameColor = GREEN,
  4609.             npcID = 10808,
  4610.             Level = 58,
  4611.             SubAreaID = 32319,
  4612.             DisplayIDs = {{571}},
  4613.             AtlasMapBossID = 6,
  4614.             [NORMAL_DIFF] = {
  4615.                 { 1,  16724 }, -- Lightforge Gauntlets
  4616.                 { 3,  13400 }, -- Vambraces of the Sadist
  4617.                 { 4,  13403 }, -- Grimgore Noose
  4618.                 { 5,  13402 }, -- Timmy's Galoshes
  4619.                 { 6,  13401 }, -- The Cruel Hand of Timmy
  4620.             },
  4621.         },
  4622.         { -- STRATMalorsStrongbox
  4623.             name = AL["Malor the Zealous"],
  4624.             NameColor = GREEN,
  4625.             npcID = 11032,
  4626.             ObjectID = 176112,
  4627.             Level = 60,
  4628.             SubAreaID = 32319,
  4629.             DisplayIDs = {{10458}},
  4630.             AtlasMapBossID = 7,
  4631.             [NORMAL_DIFF] = {
  4632.                 { 1, "INV_Box_01", nil, AL["Malors Strongbox"], nil },
  4633.                 { 2,  12845 }, -- Medallion of Faith
  4634.             },
  4635.         },
  4636.         { -- STRATCrimsonHammersmith
  4637.             name = AL["Crimson Hammersmith"],
  4638.             NameColor = GREEN,
  4639.             npcID = 11120,
  4640.             Level = 60,
  4641.             SubAreaID = 32357,
  4642.             DisplayIDs = {{10637}},
  4643.             AtlasMapBossID = 8,
  4644.             [NORMAL_DIFF] = {
  4645.                 { 1,  18781 }, -- Bottom Half of Advanced Armorsmithing: Volume II
  4646.                 --{ 3,  12824 }, -- Plans: Enchanted Battlehammer
  4647.             },
  4648.         },
  4649.         { -- STRATCannonMasterWilley
  4650.             name = AL["Cannon Master Willey"],
  4651.             NameColor = GREEN,
  4652.             npcID = 10997,
  4653.             Level = 60,
  4654.             SubAreaID = 32357,
  4655.             DisplayIDs = {{10674}},
  4656.             AtlasMapBossID = 9,
  4657.             [NORMAL_DIFF] = {
  4658.                 { 1,  16708 }, -- Shadowcraft Spaulders
  4659.                 { 3,  22407 }, -- Helm of the New Moon
  4660.                 { 4,  22403 }, -- Diana's Pearl Necklace
  4661.                 { 5,  22405 }, -- Mantle of the Scarlet Crusade
  4662.                 { 6,  18721 }, -- Barrage Girdle
  4663.                 { 7,  13381 }, -- Master Cannoneer Boots
  4664.                 { 8,  13382 }, -- Cannonball Runner
  4665.                 { 9,  13380 }, -- Willey's Portable Howitzer
  4666.                 { 10, 13377 }, -- Miniature Cannon Balls
  4667.                 { 11, 22404 }, -- Willey's Back Scratcher
  4668.                 { 12, 22406 }, -- Redemption
  4669.                 { 16, 12839 }, -- Plans: Heartseeker
  4670.             },
  4671.         },
  4672.         { -- STRATArchivistGalford
  4673.             name = AL["Archivist Galford"],
  4674.             NameColor = GREEN,
  4675.             npcID = 10811,
  4676.             Level = 60,
  4677.             SubAreaID = 32331,
  4678.             DisplayIDs = {{10544}},
  4679.             AtlasMapBossID = 10,
  4680.             [NORMAL_DIFF] = {
  4681.                 { 1,  16692 }, -- Devout Gloves
  4682.                 { 3,  13386 }, -- Archivist Cape
  4683.                 { 4,  13387 }, -- Foresight Girdle
  4684.                 { 5,  18716 }, -- Ash Covered Boots
  4685.                 { 6,  13385 }, -- Tome of Knowledge
  4686.                 { 8,  12811 }, -- Righteous Orb
  4687.                 { 10, 22897 }, -- Tome of Conjure Food VII
  4688.             },
  4689.         },
  4690.         { -- STRATBalnazzar
  4691.             name = AL["Balnazzar"],
  4692.             NameColor = GREEN,
  4693.             npcID = {10812, 10813},
  4694.             Level = 999,
  4695.             SubAreaID = 32367,
  4696.             DisplayIDs = {{10545}, {10691}},
  4697.             AtlasMapBossID = 11,
  4698.             [NORMAL_DIFF] = {
  4699.                 { 1,  13353 }, -- Book of the Dead
  4700.                 { 2,  14512 }, -- Pattern: Truefaith Vestments
  4701.                 { 4,  16725 }, -- Lightforge Boots
  4702.                 { 6,  13359 }, -- Crown of Tyranny
  4703.                 { 7,  18718 }, -- Grand Crusader's Helm
  4704.                 { 8,  12103 }, -- Star of Mystaria
  4705.                 { 9, 18720 }, -- Shroud of the Nathrezim
  4706.                 { 10, 13358 }, -- Wyrmtongue Shoulders
  4707.                 { 11, 13369 }, -- Fire Striders
  4708.                 { 12, 13360 }, -- Gift of the Elven Magi
  4709.                 { 13, 18717 }, -- Hammer of the Grand Crusader
  4710.                 { 14,  22334 }, -- Band of Mending
  4711.                 { 15, 13348 }, -- Demonshear
  4712.                 { 16, 13520 }, -- Recipe: Flask of Distilled Wisdom
  4713.                 { 18, 13250 }, -- Head of Balnazzar
  4714.             },
  4715.         },
  4716.         { -- STRATMagistrateBarthilas
  4717.             name = AL["Magistrate Barthilas"],
  4718.             NameColor = PURP,
  4719.             npcID = 10435,
  4720.             Level = 58,
  4721.             SubAreaID = 32342,
  4722.             DisplayIDs = {{10433}},
  4723.             AtlasMapBossID = 12,
  4724.             [NORMAL_DIFF] = {
  4725.                 { 1,  18727 }, -- Crimson Felt Hat
  4726.                 { 2,  13376 }, -- Royal Tribunal Cloak
  4727.                 { 3,  18726 }, -- Magistrate's Cuffs
  4728.                 { 4,  18722 }, -- Death Grips
  4729.                 { 5,  23198 }, -- Idol of Brutality
  4730.                 { 6,  18725 }, -- Peacemaker
  4731.                 { 8,  12382 }, -- Key to the City
  4732.             },
  4733.         },
  4734.         { -- STRATStonespine
  4735.             name = AL["Stonespine"],
  4736.             NameColor = PURP,
  4737.             npcID = 10809,
  4738.             Level = 60,
  4739.             SubAreaID = 32303,
  4740.             DisplayIDs = {{7856}},
  4741.             AtlasMapBossID = 14,
  4742.             specialType = "rare",
  4743.             [NORMAL_DIFF] = {
  4744.                 { 1,  13397 }, -- Stoneskin Gargoyle Cape
  4745.                 { 2,  13954 }, -- Verdant Footpads
  4746.                 { 3,  13399 }, -- Gargoyle Shredder Talons
  4747.             },
  4748.         },
  4749.         { -- STRATBaronessAnastari
  4750.             name = AL["Baroness Anastari"],
  4751.             NameColor = PURP,
  4752.             npcID = 10436,
  4753.             Level = 59,
  4754.             SubAreaID = 32344,
  4755.             DisplayIDs = {{10698}},
  4756.             AtlasMapBossID = 15,
  4757.             [NORMAL_DIFF] = {
  4758.                 { 1,  16704 }, -- Dreadmist Sandals
  4759.                 { 3,  18728 }, -- Anastari Heirloom
  4760.                 { 4,  18730 }, -- Shadowy Laced Handwraps
  4761.                 { 5,  18729 }, -- Screeching Bow
  4762.                 { 6,  13534 }, -- Banshee Finger
  4763.                 { 8,  13538 }, -- Windshrieker Pauldrons
  4764.                 { 9,  13535 }, -- Coldtouch Phantom Wraps
  4765.                 { 10, 13537 }, -- Chillhide Bracers
  4766.                 { 11, 13539 }, -- Banshee's Touch
  4767.                 { 12, 13514 }, -- Wail of the Banshee
  4768.             },
  4769.         },
  4770.         { -- STRATBlackGuardSwordsmith
  4771.             name = AL["Black Guard Swordsmith"],
  4772.             NameColor = PURP,
  4773.             npcID = 11121,
  4774.             Level = {61, 62},
  4775.             SubAreaID = 32345,
  4776.             DisplayIDs = {{775}},
  4777.             AtlasMapBossID = 15,
  4778.             [NORMAL_DIFF] = {
  4779.                 { 1,  18783 }, -- Bottom Half of Advanced Armorsmithing: Volume III
  4780.                 --{ 2,  12725 }, -- Plans: Enchanted Thorium Helm
  4781.                 --{ 3,  12620 }, -- Enchanted Thorium Helm
  4782.                 --{ 3,  12825 }, -- Plans: Blazing Rapier
  4783.                 --{ 6,  12777 }, -- Blazing Rapier
  4784.             },
  4785.         },
  4786.         { -- STRATNerubenkan
  4787.             name = AL["Nerub'enkan"],
  4788.             NameColor = PURP,
  4789.             npcID = 10437,
  4790.             Level = 60,
  4791.             SubAreaID = 32345,
  4792.             DisplayIDs = {{9793}},
  4793.             AtlasMapBossID = 16,
  4794.             [NORMAL_DIFF] = {
  4795.                 { 1,  16675 }, -- Beaststalker's Boots
  4796.                 { 3,  18740 }, -- Thuzadin Sash
  4797.                 { 4,  18739 }, -- Chitinous Plate Legguards
  4798.                 { 5,  18738 }, -- Carapace Spine Crossbow
  4799.                 { 6,  13529 }, -- Husk of Nerub'enkan
  4800.                 { 8,  13533 }, -- Acid-etched Pauldrons
  4801.                 { 9,  13532 }, -- Darkspinner Claws
  4802.                 { 10, 13531 }, -- Crypt Stalker Leggings
  4803.                 { 11, 13530 }, -- Fangdrip Runners
  4804.                 { 12, 13508 }, -- Eye of Arachnida
  4805.             },
  4806.         },
  4807.         { -- STRATMalekithePallid
  4808.             name = AL["Maleki the Pallid"],
  4809.             NameColor = PURP,
  4810.             npcID = 10438,
  4811.             Level = 61,
  4812.             SubAreaID = 32349,
  4813.             DisplayIDs = {{10546}},
  4814.             AtlasMapBossID = 17,
  4815.             [NORMAL_DIFF] = {
  4816.                 { 1,  16691 }, -- Devout Sandals
  4817.                 { 3,  18734 }, -- Pale Moon Cloak
  4818.                 { 4,  18735 }, -- Maleki's Footwraps
  4819.                 { 5,  13524 }, -- Skull of Burning Shadows
  4820.                 { 6,  18737 }, -- Bone Slicing Hatchet
  4821.                 { 8,  13528 }, -- Twilight Void Bracers
  4822.                 { 9,  13525 }, -- Darkbind Fingers
  4823.                 { 10, 13526 }, -- Flamescarred Girdle
  4824.                 { 11, 13527 }, -- Lavawalker Greaves
  4825.                 { 12, 13509 }, -- Clutch of Foresight
  4826.                 { 16, 12833 }, -- Plans: Hammer of the Titans
  4827.             },
  4828.         },
  4829.         { -- STRATRamsteintheGorger
  4830.             name = AL["Ramstein the Gorger"],
  4831.             NameColor = PURP,
  4832.             npcID = 10439,
  4833.             Level = 61,
  4834.             SubAreaID = 32301,
  4835.             DisplayIDs = {{12818}},
  4836.             AtlasMapBossID = 18,
  4837.             [NORMAL_DIFF] = {
  4838.                 { 1,  16737 }, -- Gauntlets of Valor
  4839.                 { 3,  18723 }, -- Animated Chain Necklace
  4840.                 { 4,  13374 }, -- Soulstealer Mantle
  4841.                 { 5,  13373 }, -- Band of Flesh
  4842.                 { 6,  13515 }, -- Ramstein's Lightning Bolts
  4843.                 { 7,  13375 }, -- Crest of Retribution
  4844.                 { 8,  13372 }, -- Slavedriver's Cane
  4845.             },
  4846.         },
  4847.         { -- STRATBaronRivendare
  4848.             name = AL["Baron Rivendare"],
  4849.             NameColor = PURP,
  4850.             npcID = 10440,
  4851.             Level = 62,
  4852.             SubAreaID = 32352,
  4853.             DisplayIDs = {{10729}},
  4854.             AtlasMapBossID = 19,
  4855.             [NORMAL_DIFF] = {
  4856.                 { 1,  13335 }, -- Deathcharger's Reins
  4857.                 { 2,  13505 }, -- Runeblade of Baron Rivendare
  4858.                 { 4,  22411 }, -- Helm of the Executioner
  4859.                 { 5,  22412 }, -- Thuzadin Mantle
  4860.                 { 6,  13340 }, -- Cape of the Black Baron
  4861.                 { 7,  13346 }, -- Robes of the Exalted
  4862.                 { 8,  22409 }, -- Tunic of the Crescent Moon
  4863.                 { 9,  13344 }, -- Dracorian Gauntlets
  4864.                 { 10, 22410 }, -- Gauntlets of Deftness
  4865.                 { 11, 13345 }, -- Seal of Rivendare
  4866.                 { 12, 22408 }, -- Ritssyn's Wand of Bad Mojo
  4867.                 { 13, 13349 }, -- Scepter of the Unholy
  4868.                 { 14, 13368 }, -- Bonescraper
  4869.                 { 15, 13361 }, -- Skullforge Reaver
  4870.                 { 16, 16694 }, -- Devout Skirt
  4871.                 { 17, 16687 }, -- Magister's Leggings
  4872.                 { 18, 16699 }, -- Dreadmist Leggings
  4873.                 { 19, 16709 }, -- Shadowcraft Pants
  4874.                 { 20, 16719 }, -- Wildheart Kilt
  4875.                 { 21, 16678 }, -- Beaststalker's Pants
  4876.                 { 22, 16668 }, -- Kilt of Elements
  4877.                 { 23, 16728 }, -- Lightforge Legplates
  4878.                 { 24, 16732 }, -- Legplates of Valor
  4879.             },
  4880.         },
  4881.         { -- STRATTrash
  4882.             name = AL["Trash"],
  4883.             ExtraList = true,
  4884.             [NORMAL_DIFF] = {
  4885.                 { 1,  16697 }, -- Devout Bracers
  4886.                 { 2,  16685 }, -- Magister's Belt
  4887.                 { 3,  16702 }, -- Dreadmist Belt
  4888.                 { 4,  16710 }, -- Shadowcraft Bracers
  4889.                 { 5,  16714 }, -- Wildheart Bracers
  4890.                 { 6,  16681 }, -- Beaststalker's Bindings
  4891.                 { 7,  16671 }, -- Bindings of Elements
  4892.                 { 8,  16723 }, -- Lightforge Belt
  4893.                 { 9,  16736 }, -- Belt of Valor
  4894.                 { 11, 12811 }, -- Righteous Orb
  4895.                 { 12, 12735 }, -- Frayed Abomination Stitching
  4896.                 { 13, 12843 }, -- Corruptor's Scourgestone
  4897.                 { 14, 12841 }, -- Invader's Scourgestone
  4898.                 { 15, 12840 }, -- Minion's Scourgestone
  4899.                 { 16, 18742 }, -- Stratholme Militia Shoulderguard
  4900.                 { 17, 18743 }, -- Gracious Cape
  4901.                 { 18, 17061 }, -- Juno's Shadow
  4902.                 { 19, 18741 }, -- Morlune's Bracer
  4903.                 { 20, 18744 }, -- Plaguebat Fur Gloves
  4904.                 { 21, 18745 }, -- Sacred Cloth Leggings
  4905.                 { 22, 18736 }, -- Plaguehound Leggings
  4906.                 { 24, 16249 }, -- Formula: Enchant 2H Weapon - Major Intellect
  4907.                 { 25, 16248 }, -- Formula: Enchant Weapon - Unholy
  4908.                 { 26, 14495 }, -- Pattern: Ghostweave Pants
  4909.                 { 27, 15777 }, -- Pattern: Runic Leather Shoulders
  4910.                 { 28, 15768 }, -- Pattern: Wicked Leather Belt
  4911.                 { 29, 18658 }, -- Schematic: Ultra-Flash Shadow Reflector
  4912.                 { 30, 16052 }, -- Schematic: Voice Amplification Modulator
  4913.             },
  4914.         },
  4915.         { -- STRATBSPlansSerenity / STRATBSPlansCorruption
  4916.             name = AL["Plans"],
  4917.             ExtraList = true,
  4918.             IgnoreAsSource = true,
  4919.             [NORMAL_DIFF] = {
  4920.                 { 1,  12827 }, -- Plans: Serenity
  4921.                 { 16,  12830 }, -- Plans: Corruption
  4922.             },
  4923.         },
  4924.         { -- STRATAtiesh
  4925.             name = AL["Atiesh"],
  4926.             NameColor = GREEN,
  4927.             ExtraList = true,
  4928.             AtlasMapBossID = 2,
  4929.             ContentPhase = 6,
  4930.             [NORMAL_DIFF] = {
  4931.                 { 1,  22736 }, -- Andonisus, Reaper of Souls
  4932.             },
  4933.         },
  4934.         { -- STRATBalzaphon
  4935.             name = AL["Balzaphon"],
  4936.             NameColor = GREEN,
  4937.             ExtraList = true,
  4938.             specialType = "scourgeInvasion",
  4939.             npcID = 14684,
  4940.             DisplayIDs = {{7919}},
  4941.             AtlasMapBossID = 2,
  4942.             ContentPhase = 6,
  4943.             [NORMAL_DIFF] = {
  4944.                 { 1,  23126 }, -- Waistband of Balzaphon
  4945.                 { 2,  23125 }, -- Chains of the Lich
  4946.                 { 3,  23124 }, -- Staff of Balzaphon
  4947.             },
  4948.         },
  4949.         { -- STRATSothosJarien
  4950.             name = AL["Sothos and Jarien's Heirlooms"].." - "..format(AL["Tier %s Sets"], "0.5"),
  4951.             NameColor = GREEN,
  4952.             ExtraList = true,
  4953.             ContentPhase = 5,
  4954.             AtlasMapBossID = 11,
  4955.             [NORMAL_DIFF] = {
  4956.                 { 1,  22327 }, -- Amulet of the Redeemed
  4957.                 { 2,  22301 }, -- Ironweave Robe
  4958.                 { 3,  22328 }, -- Legplates of Vigilance
  4959.                 { 4,  22334 }, -- Band of Mending
  4960.                 { 5,  22329 }, -- Scepter of Interminable Focus
  4961.             },
  4962.         },
  4963.         KEYS,
  4964.     },
  4965. }
  4966.  
  4967. -- ########################
  4968. -- Raids
  4969. -- ########################
  4970. data["WorldBosses"] = {
  4971.     name = AL["World Bosses"],
  4972.     AtlasMapFile = "Azuregos",
  4973.     ContentType = RAID40_CONTENT,
  4974.     LoadDifficulty = LOAD_DIFF,
  4975.     ContentPhase = 2,
  4976.     items = {
  4977.         { -- AAzuregos
  4978.             name = AL["Azuregos"],
  4979.             AtlasMapFile = "Azuregos",
  4980.             npcID = 6109,
  4981.             Level = 999,
  4982.             ContentPhase = 2,
  4983.             DisplayIDs = {{11460}},
  4984.             AtlasMapBossID = 1,
  4985.             [NORMAL_DIFF] = {
  4986.                 { 1,  19132 }, -- Crystal Adorned Crown
  4987.                 { 2,  18208 }, -- Drape of Benediction
  4988.                 { 3,  18541 }, -- Puissant Cape
  4989.                 { 4,  18547 }, -- Unmelting Ice Girdle
  4990.                 { 5,  18545 }, -- Leggings of Arcane Supremacy
  4991.                 { 6,  19131 }, -- Snowblind Shoes
  4992.                 { 7,  19130 }, -- Cold Snap
  4993.                 { 8,  17070 }, -- Fang of the Mystics
  4994.                 { 9,  18202 }, -- Eskhandar's Left Claw
  4995.                 { 10, 18542 }, -- Typhoon
  4996.                 { 16, 18704 }, -- Mature Blue Dragon Sinew
  4997.                 { 18, 11938 }, -- Sack of Gems
  4998.                 -- Hidden items
  4999.                 { 0, 17962 }, -- Blue Sack of Gems
  5000.                 { 0, 17963 }, -- Green Sack of Gems
  5001.                 { 0, 17964 }, -- Gray Sack of Gems
  5002.                 { 0, 17965 }, -- Yellow Sack of Gems
  5003.                 { 0, 17969 }, -- Red Sack of Gems
  5004.             },
  5005.         },
  5006.         { -- KKazzak
  5007.             name = AL["Lord Kazzak"],
  5008.             AtlasMapFile = "LordKazzak",
  5009.             npcID = 12397,
  5010.             Level = 999,
  5011.             ContentPhase = 2,
  5012.             DisplayIDs = {{12449}},
  5013.             AtlasMapBossID = 1,
  5014.             [NORMAL_DIFF] = {
  5015.                 { 1,  18546 }, -- Infernal Headcage
  5016.                 { 2,  17111 }, -- Blazefury Medallion
  5017.                 { 3,  18204 }, -- Eskhandar's Pelt
  5018.                 { 4,  19135 }, -- Blacklight Bracer
  5019.                 { 5,  18544 }, -- Doomhide Gauntlets
  5020.                 { 6,  19134 }, -- Flayed Doomguard Belt
  5021.                 { 7,  19133 }, -- Fel Infused Leggings
  5022.                 { 8,  18543 }, -- Ring of Entropy
  5023.                 { 9,  17112 }, -- Empyrean Demolisher
  5024.                 { 10, 17113 }, -- Amberseal Keeper
  5025.                 { 16, 18665 }, -- The Eye of Shadow
  5026.                 { 18, 11938 }, -- Sack of Gems
  5027.                 -- Hidden items
  5028.                 { 0, 17962 }, -- Blue Sack of Gems
  5029.                 { 0, 17963 }, -- Green Sack of Gems
  5030.                 { 0, 17964 }, -- Gray Sack of Gems
  5031.                 { 0, 17965 }, -- Yellow Sack of Gems
  5032.                 { 0, 17969 }, -- Red Sack of Gems
  5033.             },
  5034.         },
  5035.         { -- DLethon
  5036.             name = AL["Lethon"],
  5037.             AtlasMapFile = "FourDragons",
  5038.             npcID = 14888,
  5039.             Level = 999,
  5040.             ContentPhase = 4,
  5041.             DisplayIDs = {{15365}},
  5042.             [NORMAL_DIFF] = {
  5043.                 { 1,  20628 }, -- Deviate Growth Cap
  5044.                 { 2,  20626 }, -- Black Bark Wristbands
  5045.                 { 3,  20630 }, -- Gauntlets of the Shining Light
  5046.                 { 4,  20625 }, -- Belt of the Dark Bog
  5047.                 { 5,  20627 }, -- Dark Heart Pants
  5048.                 { 6,  20629 }, -- Malignant Footguards
  5049.                 { 9,  20579 }, -- Green Dragonskin Cloak
  5050.                 { 10, 20615 }, -- Dragonspur Wraps
  5051.                 { 11, 20616 }, -- Dragonbone Wristguards
  5052.                 { 12, 20618 }, -- Gloves of Delusional Power
  5053.                 { 13, 20617 }, -- Ancient Corroded Leggings
  5054.                 { 14, 20619 }, -- Acid Inscribed Greaves
  5055.                 { 15, 20582 }, -- Trance Stone
  5056.                 { 16, 20644 }, -- Nightmare Engulfed Object
  5057.                 { 17, 20600 }, -- Malfurion's Signet Ring
  5058.                 { 24, 20580 }, -- Hammer of Bestial Fury
  5059.                 { 25, 20581 }, -- Staff of Rampant Growth
  5060.                 { 29, 20381 }, -- Dreamscale
  5061.                 { 30, 11938 }, -- Sack of Gems
  5062.                 -- Hidden items
  5063.                 { 0, 17962 }, -- Blue Sack of Gems
  5064.                 { 0, 17963 }, -- Green Sack of Gems
  5065.                 { 0, 17964 }, -- Gray Sack of Gems
  5066.                 { 0, 17965 }, -- Yellow Sack of Gems
  5067.                 { 0, 17969 }, -- Red Sack of Gems
  5068.             },
  5069.         },
  5070.         { -- DEmeriss
  5071.             name = AL["Emeriss"],
  5072.             AtlasMapFile = "FourDragons",
  5073.             npcID = 14889,
  5074.             Level = 999,
  5075.             ContentPhase = 4,
  5076.             DisplayIDs = {{15366}},
  5077.             [NORMAL_DIFF] = {
  5078.                 { 1,  20623 }, -- Circlet of Restless Dreams
  5079.                 { 2,  20622 }, -- Dragonheart Necklace
  5080.                 { 3,  20624 }, -- Ring of the Unliving
  5081.                 { 4,  20621 }, -- Boots of the Endless Moor
  5082.                 { 5,  20599 }, -- Polished Ironwood Crossbow
  5083.                 { 9,  20579 }, -- Green Dragonskin Cloak
  5084.                 { 10, 20615 }, -- Dragonspur Wraps
  5085.                 { 11, 20616 }, -- Dragonbone Wristguards
  5086.                 { 12, 20618 }, -- Gloves of Delusional Power
  5087.                 { 13, 20617 }, -- Ancient Corroded Leggings
  5088.                 { 14, 20619 }, -- Acid Inscribed Greaves
  5089.                 { 15, 20582 }, -- Trance Stone
  5090.                 { 16, 20644 }, -- Nightmare Engulfed Object
  5091.                 { 17, 20600 }, -- Malfurion's Signet Ring
  5092.                 { 24, 20580 }, -- Hammer of Bestial Fury
  5093.                 { 25, 20581 }, -- Staff of Rampant Growth
  5094.                 { 30, 11938 }, -- Sack of Gems
  5095.                 -- Hidden items
  5096.                 { 0, 17962 }, -- Blue Sack of Gems
  5097.                 { 0, 17963 }, -- Green Sack of Gems
  5098.                 { 0, 17964 }, -- Gray Sack of Gems
  5099.                 { 0, 17965 }, -- Yellow Sack of Gems
  5100.                 { 0, 17969 }, -- Red Sack of Gems
  5101.             },
  5102.         },
  5103.         { -- DTaerar
  5104.             name = AL["Taerar"],
  5105.             AtlasMapFile = "FourDragons",
  5106.             npcID = 14890,
  5107.             Level = 999,
  5108.             ContentPhase = 4,
  5109.             DisplayIDs = {{15363}, {15367}},
  5110.             [NORMAL_DIFF] = {
  5111.                 { 1,  20633 }, -- Unnatural Leather Spaulders
  5112.                 { 2,  20631 }, -- Mendicant's Slippers
  5113.                 { 3,  20634 }, -- Boots of Fright
  5114.                 { 4,  20632 }, -- Mindtear Band
  5115.                 { 5,  20577 }, -- Nightmare Blade
  5116.                 { 9,  20579 }, -- Green Dragonskin Cloak
  5117.                 { 10, 20615 }, -- Dragonspur Wraps
  5118.                 { 11, 20616 }, -- Dragonbone Wristguards
  5119.                 { 12, 20618 }, -- Gloves of Delusional Power
  5120.                 { 13, 20617 }, -- Ancient Corroded Leggings
  5121.                 { 14, 20619 }, -- Acid Inscribed Greaves
  5122.                 { 15, 20582 }, -- Trance Stone
  5123.                 { 16, 20644 }, -- Nightmare Engulfed Object
  5124.                 { 17, 20600 }, -- Malfurion's Signet Ring
  5125.                 { 24, 20580 }, -- Hammer of Bestial Fury
  5126.                 { 25, 20581 }, -- Staff of Rampant Growth
  5127.                 { 30, 11938 }, -- Sack of Gems
  5128.                 -- Hidden items
  5129.                 { 0, 17962 }, -- Blue Sack of Gems
  5130.                 { 0, 17963 }, -- Green Sack of Gems
  5131.                 { 0, 17964 }, -- Gray Sack of Gems
  5132.                 { 0, 17965 }, -- Yellow Sack of Gems
  5133.                 { 0, 17969 }, -- Red Sack of Gems
  5134.             },
  5135.         },
  5136.         { -- DYsondre
  5137.             name = AL["Ysondre"],
  5138.             AtlasMapFile = "FourDragons",
  5139.             npcID = 14887,
  5140.             Level = 999,
  5141.             ContentPhase = 4,
  5142.             DisplayIDs = {{15364}},
  5143.             [NORMAL_DIFF] = {
  5144.                 { 1,  20637 }, -- Acid Inscribed Pauldrons
  5145.                 { 2,  20635 }, -- Jade Inlaid Vestments
  5146.                 { 3,  20638 }, -- Leggings of the Demented Mind
  5147.                 { 4,  20639 }, -- Strangely Glyphed Legplates
  5148.                 { 5,  20636 }, -- Hibernation Crystal
  5149.                 { 6,  20578 }, -- Emerald Dragonfang
  5150.                 { 9,  20579 }, -- Green Dragonskin Cloak
  5151.                 { 10, 20615 }, -- Dragonspur Wraps
  5152.                 { 11, 20616 }, -- Dragonbone Wristguards
  5153.                 { 12, 20618 }, -- Gloves of Delusional Power
  5154.                 { 13, 20617 }, -- Ancient Corroded Leggings
  5155.                 { 14, 20619 }, -- Acid Inscribed Greaves
  5156.                 { 15, 20582 }, -- Trance Stone
  5157.                 { 16, 20644 }, -- Nightmare Engulfed Object
  5158.                 { 17, 20600 }, -- Malfurion's Signet Ring
  5159.                 { 24, 20580 }, -- Hammer of Bestial Fury
  5160.                 { 25, 20581 }, -- Staff of Rampant Growth
  5161.                 { 30, 11938 }, -- Sack of Gems
  5162.                 -- Hidden items
  5163.                 { 0, 17962 }, -- Blue Sack of Gems
  5164.                 { 0, 17963 }, -- Green Sack of Gems
  5165.                 { 0, 17964 }, -- Gray Sack of Gems
  5166.                 { 0, 17965 }, -- Yellow Sack of Gems
  5167.                 { 0, 17969 }, -- Red Sack of Gems
  5168.             },
  5169.         },
  5170.     }
  5171. }
  5172.  
  5173. data["MoltenCore"] = {
  5174.     MapID = 2717,
  5175.     InstanceID = 409,
  5176.     AtlasModule = ATLAS_MODULE_NAME,
  5177.     AtlasMapID = "MoltenCore",
  5178.     AtlasMapFile = "CL_MoltenCore",
  5179.     AtlasMapFile_AL = "MoltenCore",
  5180.     ContentType = RAID40_CONTENT,
  5181.     LoadDifficulty = RAID40_DIFF,
  5182.     items = {
  5183.         {   --MCLucifron
  5184.             name = AL["Lucifron"],
  5185.             npcID = 12118,
  5186.             Level = 999,
  5187.             DisplayIDs = {{13031},{12030}},
  5188.             AtlasMapBossID = 1,
  5189.             [NORMAL_DIFF] = {
  5190.                 { 1, 16800 },   -- Arcanist Boots
  5191.                 { 2, 16805 },   -- Felheart Gloves
  5192.                 { 3, 16829 },   -- Cenarion Boots
  5193.                 { 4, 16837 },   -- Earthfury Boots
  5194.                 { 5, 16859 },   -- Lawbringer Boots
  5195.                 { 6, 16863 },   -- Gauntlets of Might
  5196.                 { 16, 18870 },  -- Helm of the Lifegiver
  5197.                 { 17, 17109 },  -- Choker of Enlightenment
  5198.                 { 18, 19145 },  -- Robe of Volatile Power
  5199.                 { 19, 19146 },  -- Wristguards of Stability
  5200.                 { 20, 18872 },  -- Manastorm Leggings
  5201.                 { 21, 18875 },  -- Salamander Scale Pants
  5202.                 { 22, 18861 },  -- Flamewaker Legplates
  5203.                 { 23, 18879 },  -- Heavy Dark Iron Ring
  5204.                 { 24, 19147 },  -- Ring of Spell Power
  5205.                 { 25, 17077 },  -- Crimson Shocker
  5206.                 { 26, 18878 },  -- Sorcerous Dagger
  5207.                 { 30, 16665 },  -- Tome of Tranquilizing Shot
  5208.             },
  5209.         },
  5210.         {   --MCMagmadar
  5211.             name = AL["Magmadar"],
  5212.             npcID = 11982,
  5213.             Level = 999,
  5214.             DisplayIDs = {{10193}},
  5215.             AtlasMapBossID = 2,
  5216.             [NORMAL_DIFF] = {
  5217.                 { 1,  16814 },  -- Pants of Prophecy
  5218.                 { 2,  16796 },  -- Arcanist Leggings
  5219.                 { 3,  16810 },  -- Felheart Pants
  5220.                 { 4,  16822 },  -- Nightslayer Pants
  5221.                 { 5,  16835 },  -- Cenarion Leggings
  5222.                 { 6,  16847 },  -- Giantstalker's Leggings
  5223.                 { 7,  16843 },  -- Earthfury Legguards
  5224.                 { 8,  16855 },  -- Lawbringer Legplates
  5225.                 { 9,  16867 },  -- Legplates of Might
  5226.                 { 11, 18203 },  -- Eskhandar's Right Claw
  5227.                 { 16, 17065 },  -- Medallion of Steadfast Might
  5228.                 { 17, 18829 },  -- Deep Earth Spaulders
  5229.                 { 18, 18823 },  -- Aged Core Leather Gloves
  5230.                 { 19, 19143 },  -- Flameguard Gauntlets
  5231.                 { 20, 19136 },  -- Mana Igniting Cord
  5232.                 { 21, 18861 },  -- Flamewaker Legplates
  5233.                 { 22, 19144 },  -- Sabatons of the Flamewalker
  5234.                 { 23, 18824 },  -- Magma Tempered Boots
  5235.                 { 24, 18821 },  -- Quick Strike Ring
  5236.                 { 25, 18820 },  -- Talisman of Ephemeral Power
  5237.                 { 26, 19142 },  -- Fire Runed Grimoire
  5238.                 { 27, 17069 },  -- Striker's Mark
  5239.                 { 28, 17073 },  -- Earthshaker
  5240.                 { 29, 18822 },  -- Obsidian Edged Blade
  5241.             },
  5242.         },
  5243.         {   --MCGehennas
  5244.             name = AL["Gehennas"],
  5245.             npcID = 12259,
  5246.             Level = 999,
  5247.             DisplayIDs = {{13030},{12002}},
  5248.             AtlasMapBossID = 3,
  5249.             [NORMAL_DIFF] = {
  5250.                 { 1,  16812 },  -- Gloves of Prophecy
  5251.                 { 2,  16826 },  -- Nightslayer Gloves
  5252.                 { 3,  16849 },  -- Giantstalker's Boots
  5253.                 { 4,  16839 },  -- Earthfury Gauntlets
  5254.                 { 5,  16860 },  -- Lawbringer Gauntlets
  5255.                 { 6,  16862 },  -- Sabatons of Might
  5256.                 { 16, 18870 },  -- Helm of the Lifegiver
  5257.                 { 17, 19145 },  -- Robe of Volatile Power
  5258.                 { 18, 19146 },  -- Wristguards of Stability
  5259.                 { 19, 18872 },  -- Manastorm Leggings
  5260.                 { 20, 18875 },  -- Salamander Scale Pants
  5261.                 { 21, 18861 },  -- Flamewaker Legplates
  5262.                 { 22, 18879 },  -- Heavy Dark Iron Ring
  5263.                 { 23, 19147 },  -- Ring of Spell Power
  5264.                 { 24, 17077 },  -- Crimson Shocker
  5265.                 { 25, 18878 },  -- Sorcerous Dagger
  5266.             },
  5267.         },
  5268.         {   --MCGarr
  5269.             name = AL["Garr"],
  5270.             npcID = 12057,
  5271.             Level = 999,
  5272.             DisplayIDs = {{12110}, {5781}},
  5273.             AtlasMapBossID = 4,
  5274.             [NORMAL_DIFF] = {
  5275.                 { 1, 18564 },   -- Bindings of the Windseeker
  5276.                 { 3,  16813 },  -- Circlet of Prophecy
  5277.                 { 4,  16795 },  -- Arcanist Crown
  5278.                 { 5,  16808 },  -- Felheart Horns
  5279.                 { 6,  16821 },  -- Nightslayer Cover
  5280.                 { 7,  16834 },  -- Cenarion Helm
  5281.                 { 8,  16846 },  -- Giantstalker's Helmet
  5282.                 { 9,  16842 },  -- Earthfury Helmet
  5283.                 { 10,  16854 }, -- Lawbringer Helm
  5284.                 { 11,  16866 }, -- Helm of Might
  5285.                 { 16, 18829 },  -- Deep Earth Spaulders
  5286.                 { 17, 18823 },  -- Aged Core Leather Gloves
  5287.                 { 18, 19143 },  -- Flameguard Gauntlets
  5288.                 { 19, 19136 },  -- Mana Igniting Cord
  5289.                 { 20, 18861 },  -- Flamewaker Legplates
  5290.                 { 21, 19144 },  -- Sabatons of the Flamewalker
  5291.                 { 22, 18824 },  -- Magma Tempered Boots
  5292.                 { 23, 18821 },  -- Quick Strike Ring
  5293.                 { 24, 18820 },  -- Talisman of Ephemeral Power
  5294.                 { 25, 19142 },  -- Fire Runed Grimoire
  5295.                 { 26, 17066 },  -- Drillborer Disk
  5296.                 { 27, 17071 },  -- Gutgore Ripper
  5297.                 { 28, 17105 },  -- Aurastone Hammer
  5298.                 { 29, 18832 },  -- Brutality Blade
  5299.                 { 30, 18822 },  -- Obsidian Edged Blade
  5300.             },
  5301.         },
  5302.         {   --MCShazzrah
  5303.             name = AL["Shazzrah"],
  5304.             npcID = 12264,
  5305.             Level = 999,
  5306.             DisplayIDs = {{13032}},
  5307.             AtlasMapBossID = 5,
  5308.             [NORMAL_DIFF] = {
  5309.                 { 1,  16811 },  -- Boots of Prophecy
  5310.                 { 2,  16801 },  -- Arcanist Gloves
  5311.                 { 3,  16803 },  -- Felheart Slippers
  5312.                 { 4,  16824 },  -- Nightslayer Boots
  5313.                 { 5,  16831 },  -- Cenarion Gloves
  5314.                 { 6,  16852 },  -- Giantstalker's Gloves
  5315.                 { 16, 18870 },  -- Helm of the Lifegiver
  5316.                 { 17, 19145 },  -- Robe of Volatile Power
  5317.                 { 18, 19146 },  -- Wristguards of Stability
  5318.                 { 19, 18872 },  -- Manastorm Leggings
  5319.                 { 20, 18875 },  -- Salamander Scale Pants
  5320.                 { 21, 18861 },  -- Flamewaker Legplates
  5321.                 { 22, 18879 },  -- Heavy Dark Iron Ring
  5322.                 { 23, 19147 },  -- Ring of Spell Power
  5323.                 { 24, 17077 },  -- Crimson Shocker
  5324.                 { 25, 18878 },  -- Sorcerous Dagger
  5325.             },
  5326.         },
  5327.         {   --MCGeddon
  5328.             name = AL["Baron Geddon"],
  5329.             npcID = 12056,
  5330.             Level = 999,
  5331.             DisplayIDs = {{12129}},
  5332.             AtlasMapBossID = 6,
  5333.             [NORMAL_DIFF] = {
  5334.                 { 1,  18563 },  -- Bindings of the Windseeker
  5335.                 { 3,  16797 },  -- Arcanist Mantle
  5336.                 { 4,  16807 },  -- Felheart Shoulder Pads
  5337.                 { 5,  16836 },  -- Cenarion Spaulders
  5338.                 { 6,  16844 },  -- Earthfury Epaulets
  5339.                 { 7,  16856 },  -- Lawbringer Spaulders
  5340.                 { 16, 18829 },  -- Deep Earth Spaulders
  5341.                 { 17, 18823 },  -- Aged Core Leather Gloves
  5342.                 { 18, 19143 },  -- Flameguard Gauntlets
  5343.                 { 19, 19136 },  -- Mana Igniting Cord
  5344.                 { 20, 18861 },  -- Flamewaker Legplates
  5345.                 { 21, 19144 },  -- Sabatons of the Flamewalker
  5346.                 { 22, 18824 },  -- Magma Tempered Boots
  5347.                 { 23, 18821 },  -- Quick Strike Ring
  5348.                 { 24, 17110 },  -- Seal of the Archmagus
  5349.                 { 25, 18820 },  -- Talisman of Ephemeral Power
  5350.                 { 26, 19142 },  -- Fire Runed Grimoire
  5351.                 { 27, 18822 },  -- Obsidian Edged Blade
  5352.             },
  5353.         },
  5354.         {   --MCGolemagg
  5355.             name = AL["Golemagg the Incinerator"],
  5356.             npcID = 11988,
  5357.             Level = 999,
  5358.             DisplayIDs = {{11986}},
  5359.             AtlasMapBossID = 7,
  5360.             [NORMAL_DIFF] = {
  5361.                 { 1,  16815 },  -- Robes of Prophecy
  5362.                 { 2,  16798 },  -- Arcanist Robes
  5363.                 { 3,  16809 },  -- Felheart Robes
  5364.                 { 4,  16820 },  -- Nightslayer Chestpiece
  5365.                 { 5,  16833 },  -- Cenarion Vestments
  5366.                 { 6,  16845 },  -- Giantstalker's Breastplate
  5367.                 { 7,  16841 },  -- Earthfury Vestments
  5368.                 { 8,  16853 },  -- Lawbringer Chestguard
  5369.                 { 9,  16865 },  -- Breastplate of Might
  5370.                 { 11, 17203 },  -- Sulfuron Ingot
  5371.                 { 16, 18829 },  -- Deep Earth Spaulders
  5372.                 { 17, 18823 },  -- Aged Core Leather Gloves
  5373.                 { 18, 19143 },  -- Flameguard Gauntlets
  5374.                 { 19, 19136 },  -- Mana Igniting Cord
  5375.                 { 20, 18861 },  -- Flamewaker Legplates
  5376.                 { 21, 19144 },  -- Sabatons of the Flamewalker
  5377.                 { 22, 18824 },  -- Magma Tempered Boots
  5378.                 { 23, 18821 },  -- Quick Strike Ring
  5379.                 { 24, 18820 },  -- Talisman of Ephemeral Power
  5380.                 { 25, 19142 },  -- Fire Runed Grimoire
  5381.                 { 26, 17072 },  -- Blastershot Launcher
  5382.                 { 27, 17103 },  -- Azuresong Mageblade
  5383.                 { 28, 18822 },  -- Obsidian Edged Blade
  5384.                 { 29, 18842 },  -- Staff of Dominance
  5385.             },
  5386.         },
  5387.         { -- MCSulfuron
  5388.             name = AL["Sulfuron Harbinger"],
  5389.             npcID = 12098,
  5390.             Level = 999,
  5391.             DisplayIDs = {{13030},{12030}},
  5392.             AtlasMapBossID = 8,
  5393.             [NORMAL_DIFF] = {
  5394.                 { 1,  16816 }, -- Mantle of Prophecy
  5395.                 { 2,  16823 }, -- Nightslayer Shoulder Pads
  5396.                 { 3,  16848 }, -- Giantstalker's Epaulets
  5397.                 { 4,  16868 }, -- Pauldrons of Might
  5398.                 { 16, 18870 }, -- Helm of the Lifegiver
  5399.                 { 17, 19145 }, -- Robe of Volatile Power
  5400.                 { 18, 19146 }, -- Wristguards of Stability
  5401.                 { 19, 18872 }, -- Manastorm Leggings
  5402.                 { 20, 18875 }, -- Salamander Scale Pants
  5403.                 { 21, 18861 }, -- Flamewaker Legplates
  5404.                 { 22, 18879 }, -- Heavy Dark Iron Ring
  5405.                 { 23, 19147 }, -- Ring of Spell Power
  5406.                 { 24, 17077 }, -- Crimson Shocker
  5407.                 { 25, 18878 }, -- Sorcerous Dagger
  5408.                 { 26, 17074 }, -- Shadowstrike
  5409.             },
  5410.         },
  5411.         { -- MCMajordomo
  5412.             name = AL["Majordomo Executus"],
  5413.             npcID = 12018,
  5414.             Level = 999,
  5415.             ObjectID = 179703,
  5416.             DisplayIDs = {{12029},{13029},{12002}},
  5417.             AtlasMapBossID = 9,
  5418.             [NORMAL_DIFF] = {
  5419.                 { 1,  19139 }, -- Fireguard Shoulders
  5420.                 { 2,  18810 }, -- Wild Growth Spaulders
  5421.                 { 3,  18811 }, -- Fireproof Cloak
  5422.                 { 4,  18808 }, -- Gloves of the Hypnotic Flame
  5423.                 { 5,  18809 }, -- Sash of Whispered Secrets
  5424.                 { 6,  18812 }, -- Wristguards of True Flight
  5425.                 { 7,  18806 }, -- Core Forged Greaves
  5426.                 { 8,  19140 }, -- Cauterizing Band
  5427.                 { 9,  18805 }, -- Core Hound Tooth
  5428.                 { 10, 18803 }, -- Finkle's Lava Dredger
  5429.                 { 16, 18703 }, -- Ancient Petrified Leaf
  5430.                 { 18, 18646 }, -- The Eye of Divinity
  5431.             },
  5432.         },
  5433.         { -- MCRagnaros
  5434.             name = AL["Ragnaros"],
  5435.             npcID = 11502,
  5436.             Level = 999,
  5437.             DisplayIDs = {{11121}},
  5438.             AtlasMapBossID = 10,
  5439.             [NORMAL_DIFF] = {
  5440.                 { 1, 17204 }, -- Eye of Sulfuras
  5441.                 { 2, 19017 }, -- Essence of the Firelord
  5442.                 { 4,  16922 }, -- Leggings of Transcendence
  5443.                 { 5,  16915 }, -- Netherwind Pants
  5444.                 { 6,  16930 }, -- Nemesis Leggings
  5445.                 { 7,  16909 }, -- Bloodfang Pants
  5446.                 { 8,  16901 }, -- Stormrage Legguards
  5447.                 { 9,  16938 }, -- Dragonstalker's Legguards
  5448.                 { 10,  16946 }, -- Legplates of Ten Storms
  5449.                 { 11,  16954 }, -- Judgement Legplates
  5450.                 { 12,  16962 }, -- Legplates of Wrath
  5451.                 { 14, 17082 }, -- Shard of the Flame
  5452.                 { 16, 18817 }, -- Crown of Destruction
  5453.                 { 17, 18814 }, -- Choker of the Fire Lord
  5454.                 { 18, 17102 }, -- Cloak of the Shrouded Mists
  5455.                 { 19, 17107 }, -- Dragon's Blood Cape
  5456.                 { 20, 19137 }, -- Onslaught Girdle
  5457.                 { 21, 17063 }, -- Band of Accuria
  5458.                 { 22, 19138 }, -- Band of Sulfuras
  5459.                 { 23, 18815 }, -- Essence of the Pure Flame
  5460.                 { 24, 17106 }, -- Malistar's Defender
  5461.                 { 25, 18816 }, -- Perdition's Blade
  5462.                 { 26, 17104 }, -- Spinal Reaper
  5463.                 { 27, 17076 }, -- Bonereaver's Edge
  5464.             },
  5465.         },
  5466.         { -- MCRANDOMBOSSDROPS
  5467.             name = AL["All bosses"],
  5468.             ExtraList = true,
  5469.             [NORMAL_DIFF] = {
  5470.                 { 1,  18264 }, -- Plans: Elemental Sharpening Stone
  5471.                 { 3,  18292 }, -- Schematic: Core Marksman Rifle
  5472.                 { 4,  18291 }, -- Schematic: Force Reactive Disk
  5473.                 { 5, 18290 }, -- Schematic: Biznicks 247x128 Accurascope
  5474.                 { 7, 18259 }, -- Formula: Enchant Weapon - Spell Power
  5475.                 { 8, 18260 }, -- Formula: Enchant Weapon - Healing Power
  5476.                 { 16, 18252 }, -- Pattern: Core Armor Kit
  5477.                 { 18, 18265 }, -- Pattern: Flarecore Wraps
  5478.                 { 19, 21371 }, -- Pattern: Core Felcloth Bag
  5479.                 { 21, 18257 }, -- Recipe: Major Rejuvenation Potion
  5480.             },
  5481.         },
  5482.         { -- MCTrashMobs
  5483.             name = AL["Trash"],
  5484.             ExtraList = true,
  5485.             [NORMAL_DIFF] = {
  5486.                 { 1,  16817 }, -- Girdle of Prophecy
  5487.                 { 2,  16802 }, -- Arcanist Belt
  5488.                 { 3,  16806 }, -- Felheart Belt
  5489.                 { 4,  16827 }, -- Nightslayer Belt
  5490.                 { 5,  16828 }, -- Cenarion Belt
  5491.                 { 6,  16851 }, -- Giantstalker's Belt
  5492.                 { 7,  16838 }, -- Earthfury Belt
  5493.                 { 8,  16858 }, -- Lawbringer Belt
  5494.                 { 9,  16864 }, -- Belt of Might
  5495.                 { 12, 17011 }, -- Lava Core
  5496.                 { 13, 17010 }, -- Fiery Core
  5497.                 { 14, 11382 }, -- Blood of the Mountain
  5498.                 { 15, 17012 }, -- Core Leather
  5499.                 { 16, 16819 }, -- Vambraces of Prophecy
  5500.                 { 17, 16799 }, -- Arcanist Bindings
  5501.                 { 18, 16804 }, -- Felheart Bracers
  5502.                 { 19, 16825 }, -- Nightslayer Bracelets
  5503.                 { 20, 16830 }, -- Cenarion Bracers
  5504.                 { 21, 16850 }, -- Giantstalker's Bracers
  5505.                 { 22, 16840 }, -- Earthfury Bracers
  5506.                 { 23, 16857 }, -- Lawbringer Bracers
  5507.                 { 24, 16861 }, -- Bracers of Might
  5508.             },
  5509.         },
  5510.         T1_SET,
  5511.     }
  5512. }
  5513.  
  5514. data["Onyxia"] = {
  5515.     MapID = 2159,
  5516.     InstanceID = 249,
  5517.     AtlasModule = ATLAS_MODULE_NAME,
  5518.     AtlasMapID = "Onyxia",
  5519.     AtlasMapFile = "CL_OnyxiasLair",
  5520.     AtlasMapFile_AL = "OnyxiasLair",
  5521.     ContentType = RAID40_CONTENT,
  5522.     LoadDifficulty = RAID40_DIFF,
  5523.     items = {
  5524.         { -- Onyxia
  5525.             name = AL["Onyxia"],
  5526.             npcID = 10184,
  5527.             Level = 999,
  5528.             DisplayIDs = {{8570}},
  5529.             AtlasMapBossID = 3,
  5530.             [NORMAL_DIFF] = {
  5531.                 { 1,  16921 }, -- Halo of Transcendence
  5532.                 { 2,  16914 }, -- Netherwind Crown
  5533.                 { 3,  16929 }, -- Nemesis Skullcap
  5534.                 { 4,  16908 }, -- Bloodfang Hood
  5535.                 { 5,  16900 }, -- Stormrage Cover
  5536.                 { 6,  16939 }, -- Dragonstalker's Helm
  5537.                 { 7,  16947 }, -- Helmet of Ten Storms
  5538.                 { 8,  16955 }, -- Judgement Crown
  5539.                 { 9,  16963 }, -- Helm of Wrath
  5540.                 { 11, 18423 }, -- Head of Onyxia
  5541.                 { 12, 15410 }, -- Scale of Onyxia
  5542.                 { 16, 18705 }, -- Mature Black Dragon Sinew
  5543.                 { 18, 18205 }, -- Eskhandar's Collar
  5544.                 { 19, 17078 }, -- Sapphiron Drape
  5545.                 { 20, 18813 }, -- Ring of Binding
  5546.                 { 21, 17064 }, -- Shard of the Scale
  5547.                 { 22, 17067 }, -- Ancient Cornerstone Grimoire
  5548.                 { 23, 17068 }, -- Deathbringer
  5549.                 { 24, 17075 }, -- Vis'kag the Bloodletter
  5550.                 { 26, 17966 }, -- Onyxia Hide Backpack
  5551.                 { 27, 11938 }, -- Sack of Gems
  5552.                 -- Hidden items
  5553.                 { 0, 17962 }, -- Blue Sack of Gems
  5554.                 { 0, 17963 }, -- Green Sack of Gems
  5555.                 { 0, 17964 }, -- Gray Sack of Gems
  5556.                 { 0, 17965 }, -- Yellow Sack of Gems
  5557.                 { 0, 17969 }, -- Red Sack of Gems
  5558.             },
  5559.         },
  5560.     },
  5561. }
  5562.  
  5563. data["Zul'Gurub"] = {
  5564.     MapID = 1977,
  5565.     InstanceID = 309,
  5566.     AtlasModule = ATLAS_MODULE_NAME,
  5567.     AtlasMapID = "Zul'Gurub", -- ??
  5568.     AtlasMapFile = "CL_ZulGurub",
  5569.     AtlasMapFile_AL = "ZulGurub",
  5570.     ContentType = RAID20_CONTENT,
  5571.     LoadDifficulty = RAID20_DIFF,
  5572.     ContentPhase = 4,
  5573.     items = {
  5574.         { -- ZGJeklik
  5575.             name = AL["High Priestess Jeklik"],
  5576.             npcID = 14517,
  5577.             Level = 999,
  5578.             DisplayIDs = {{15219}},
  5579.             AtlasMapBossID = 1,
  5580.             [NORMAL_DIFF] = {
  5581.                 { 1,  19721 }, -- Primal Hakkari Shawl
  5582.                 { 2,  19724 }, -- Primal Hakkari Aegis
  5583.                 { 3,  19723 }, -- Primal Hakkari Kossack
  5584.                 { 4,  19722 }, -- Primal Hakkari Tabard
  5585.                 { 5,  19717 }, -- Primal Hakkari Armsplint
  5586.                 { 6,  19716 }, -- Primal Hakkari Bindings
  5587.                 { 7,  19718 }, -- Primal Hakkari Stanchion
  5588.                 { 8,  19719 }, -- Primal Hakkari Girdle
  5589.                 { 9,  19720 }, -- Primal Hakkari Sash
  5590.                 { 16, 19918 }, -- Jeklik's Crusher
  5591.                 { 18, 19923 }, -- Jeklik's Opaline Talisman
  5592.                 { 19, 19928 }, -- Animist's Spaulders
  5593.                 { 20, 20262 }, -- Seafury Boots
  5594.                 { 21, 20265 }, -- Peacekeeper Boots
  5595.                 { 22, 19920 }, -- Primalist's Band
  5596.                 { 23, 19915 }, -- Zulian Defender
  5597.             },
  5598.         },
  5599.         { -- ZGVenoxis
  5600.             name = AL["High Priest Venoxis"],
  5601.             npcID = 14507,
  5602.             Level = 999,
  5603.             DisplayIDs = {{15217}},
  5604.             AtlasMapBossID = 2,
  5605.             [NORMAL_DIFF] = {
  5606.                 { 1,  19721 }, -- Primal Hakkari Shawl
  5607.                 { 2,  19724 }, -- Primal Hakkari Aegis
  5608.                 { 3,  19723 }, -- Primal Hakkari Kossack
  5609.                 { 4,  19722 }, -- Primal Hakkari Tabard
  5610.                 { 5,  19717 }, -- Primal Hakkari Armsplint
  5611.                 { 6,  19716 }, -- Primal Hakkari Bindings
  5612.                 { 7,  19718 }, -- Primal Hakkari Stanchion
  5613.                 { 8,  19719 }, -- Primal Hakkari Girdle
  5614.                 { 9,  19720 }, -- Primal Hakkari Sash
  5615.                 { 16, 19904 }, -- Runed Bloodstained Hauberk
  5616.                 { 17, 19903 }, -- Fang of Venoxis
  5617.                 { 19, 19907 }, -- Zulian Tigerhide Cloak
  5618.                 { 20, 19906 }, -- Blooddrenched Footpads
  5619.                 { 21, 19905 }, -- Zanzil's Band
  5620.                 { 22, 19900 }, -- Zulian Stone Axe
  5621.             },
  5622.         },
  5623.         { -- ZGMarli
  5624.             name = AL["High Priestess Mar'li"],
  5625.             npcID = 14510,
  5626.             Level = 999,
  5627.             DisplayIDs = {{15220}},
  5628.             AtlasMapBossID = 4,
  5629.             [NORMAL_DIFF] = {
  5630.                 { 1,  19721 }, -- Primal Hakkari Shawl
  5631.                 { 2,  19724 }, -- Primal Hakkari Aegis
  5632.                 { 3,  19723 }, -- Primal Hakkari Kossack
  5633.                 { 4,  19722 }, -- Primal Hakkari Tabard
  5634.                 { 5,  19717 }, -- Primal Hakkari Armsplint
  5635.                 { 6,  19716 }, -- Primal Hakkari Bindings
  5636.                 { 7,  19718 }, -- Primal Hakkari Stanchion
  5637.                 { 8,  19719 }, -- Primal Hakkari Girdle
  5638.                 { 9,  19720 }, -- Primal Hakkari Sash
  5639.                 { 16, 20032 }, -- Flowing Ritual Robes
  5640.                 { 17, 19927 }, -- Mar'li's Touch
  5641.                 { 19, 19871 }, -- Talisman of Protection
  5642.                 { 20, 19919 }, -- Bloodstained Greaves
  5643.                 { 21, 19925 }, -- Band of Jin
  5644.                 { 22, 19930 }, -- Mar'li's Eye
  5645.             },
  5646.         },
  5647.         { -- ZGMandokir
  5648.             name = AL["Bloodlord Mandokir"],
  5649.             npcID = 11382,
  5650.             Level = 999,
  5651.             DisplayIDs = {{11288}},
  5652.             AtlasMapBossID = 5,
  5653.             [NORMAL_DIFF] = {
  5654.                 { 1,  19721 }, -- Primal Hakkari Shawl
  5655.                 { 2,  19724 }, -- Primal Hakkari Aegis
  5656.                 { 3,  19723 }, -- Primal Hakkari Kossack
  5657.                 { 4,  19722 }, -- Primal Hakkari Tabard
  5658.                 { 5,  19717 }, -- Primal Hakkari Armsplint
  5659.                 { 6,  19716 }, -- Primal Hakkari Bindings
  5660.                 { 7,  19718 }, -- Primal Hakkari Stanchion
  5661.                 { 8,  19719 }, -- Primal Hakkari Girdle
  5662.                 { 9,  19720 }, -- Primal Hakkari Sash
  5663.                 { 11, 22637 }, -- Primal Hakkari Idol
  5664.                 { 16, 19872 }, -- Swift Razzashi Raptor
  5665.                 { 17, 20038 }, -- Mandokir's Sting
  5666.                 { 18, 19867 }, -- Bloodlord's Defender
  5667.                 { 19, 19866 }, -- Warblade of the Hakkari
  5668.                 { 20, 19874 }, -- Halberd of Smiting
  5669.                 { 22, 19878 }, -- Bloodsoaked Pauldrons
  5670.                 { 23, 19870 }, -- Hakkari Loa Cloak
  5671.                 { 24, 19869 }, -- Blooddrenched Grips
  5672.                 { 25, 19895 }, -- Bloodtinged Kilt
  5673.                 { 26, 19877 }, -- Animist's Leggings
  5674.                 { 27, 19873 }, -- Overlord's Crimson Band
  5675.                 { 28, 19863 }, -- Primalist's Seal
  5676.                 { 29, 19893 }, -- Zanzil's Seal
  5677.             },
  5678.         },
  5679.         { -- ZGGrilek
  5680.             name = AL["Gri'lek"],
  5681.             npcID = 15082,
  5682.             Level = 999,
  5683.             DisplayIDs = {{8390}},
  5684.             AtlasMapBossID = 6,
  5685.             [NORMAL_DIFF] = {
  5686.                 { 1,  19961 }, -- Gri'lek's Grinder
  5687.                 { 2,  19962 }, -- Gri'lek's Carver
  5688.                 { 4,  19939 }, -- Gri'lek's Blood
  5689.             },
  5690.         },
  5691.         { -- ZGHazzarah
  5692.             name = AL["Hazza'rah"],
  5693.             npcID = 15083,
  5694.             Level = 999,
  5695.             DisplayIDs = {{15267}},
  5696.             AtlasMapBossID = 6,
  5697.             [NORMAL_DIFF] = {
  5698.                 { 1,  19967 }, -- Thoughtblighter
  5699.                 { 2,  19968 }, -- Fiery Retributer
  5700.                 { 4,  19942 }, -- Hazza'rah's Dream Thread
  5701.             },
  5702.         },
  5703.         { -- ZGRenataki
  5704.             name = AL["Renataki"],
  5705.             npcID = 15084,
  5706.             Level = 999,
  5707.             DisplayIDs = {{15268}},
  5708.             AtlasMapBossID = 6,
  5709.             [NORMAL_DIFF] = {
  5710.                 { 1,  19964 }, -- Renataki's Soul Conduit
  5711.                 { 2,  19963 }, -- Pitchfork of Madness
  5712.                 { 4,  19940 }, -- Renataki's Tooth
  5713.             },
  5714.         },
  5715.         { -- ZGWushoolay
  5716.             name = AL["Wushoolay"],
  5717.             npcID = 15085,
  5718.             Level = 999,
  5719.             DisplayIDs = {{15269}},
  5720.             AtlasMapBossID = 6,
  5721.             [NORMAL_DIFF] = {
  5722.                 { 1,  19993 }, -- Hoodoo Hunting Bow
  5723.                 { 2,  19965 }, -- Wushoolay's Poker
  5724.                 { 4,  19941 }, -- Wushoolay's Mane
  5725.             },
  5726.         },
  5727.         { -- ZGGahzranka
  5728.             name = AL["Gahz'ranka"],
  5729.             npcID = 15114,
  5730.             Level = 999,
  5731.             DisplayIDs = {{15288}},
  5732.             AtlasMapBossID = 7,
  5733.             [NORMAL_DIFF] = {
  5734.                 { 1,  19945 }, -- Foror's Eyepatch
  5735.                 { 2,  19944 }, -- Nat Pagle's Fish Terminator
  5736.                 { 4,  19947 }, -- Nat Pagle's Broken Reel
  5737.                 { 5,  19946 }, -- Tigule's Harpoon
  5738.                 { 7,  22739 }, -- Tome of Polymorph: Turtle
  5739.             },
  5740.         },
  5741.         { -- ZGThekal
  5742.             name = AL["High Priest Thekal"],
  5743.             npcID = 14509,
  5744.             Level = 999,
  5745.             DisplayIDs = {{15216}},
  5746.             AtlasMapBossID = 8,
  5747.             [NORMAL_DIFF] = {
  5748.                 { 1,  19721 }, -- Primal Hakkari Shawl
  5749.                 { 2,  19724 }, -- Primal Hakkari Aegis
  5750.                 { 3,  19723 }, -- Primal Hakkari Kossack
  5751.                 { 4,  19722 }, -- Primal Hakkari Tabard
  5752.                 { 5,  19717 }, -- Primal Hakkari Armsplint
  5753.                 { 6,  19716 }, -- Primal Hakkari Bindings
  5754.                 { 7,  19718 }, -- Primal Hakkari Stanchion
  5755.                 { 8,  19719 }, -- Primal Hakkari Girdle
  5756.                 { 9,  19720 }, -- Primal Hakkari Sash
  5757.                 { 16, 19902 }, -- Swift Zulian Tiger
  5758.                 { 17, 19897 }, -- Betrayer's Boots
  5759.                 { 18, 19896 }, -- Thekal's Grasp
  5760.                 { 20, 19899 }, -- Ritualistic Legguards
  5761.                 { 21, 20260 }, -- Seafury Leggings
  5762.                 { 22, 20266 }, -- Peacekeeper Leggings
  5763.                 { 23, 19898 }, -- Seal of Jin
  5764.                 { 24, 19901 }, -- Zulian Slicer
  5765.             },
  5766.         },
  5767.         { -- ZGArlokk
  5768.             name = AL["High Priestess Arlokk"],
  5769.             npcID = 14515,
  5770.             Level = 999,
  5771.             DisplayIDs = {{15218}},
  5772.             AtlasMapBossID = 9,
  5773.             [NORMAL_DIFF] = {
  5774.                 { 1,  19721 }, -- Primal Hakkari Shawl
  5775.                 { 2,  19724 }, -- Primal Hakkari Aegis
  5776.                 { 3,  19723 }, -- Primal Hakkari Kossack
  5777.                 { 4,  19722 }, -- Primal Hakkari Tabard
  5778.                 { 5,  19717 }, -- Primal Hakkari Armsplint
  5779.                 { 6,  19716 }, -- Primal Hakkari Bindings
  5780.                 { 7,  19718 }, -- Primal Hakkari Stanchion
  5781.                 { 8,  19719 }, -- Primal Hakkari Girdle
  5782.                 { 9,  19720 }, -- Primal Hakkari Sash
  5783.                 { 16, 19910 }, -- Arlokk's Grasp
  5784.                 { 17, 19909 }, -- Will of Arlokk
  5785.                 { 19, 19913 }, -- Bloodsoaked Greaves
  5786.                 { 20, 19912 }, -- Overlord's Onyx Band
  5787.                 { 21, 19922 }, -- Arlokk's Hoodoo Stick
  5788.                 { 23, 19914 }, -- Panther Hide Sack
  5789.             },
  5790.         },
  5791.         { -- ZGJindo
  5792.             name = AL["Jin'do the Hexxer"],
  5793.             npcID = 11380,
  5794.             Level = 999,
  5795.             DisplayIDs = {{11311}},
  5796.             AtlasMapBossID = 10,
  5797.             [NORMAL_DIFF] = {
  5798.                 { 1,  19721 }, -- Primal Hakkari Shawl
  5799.                 { 2,  19724 }, -- Primal Hakkari Aegis
  5800.                 { 3,  19723 }, -- Primal Hakkari Kossack
  5801.                 { 4,  19722 }, -- Primal Hakkari Tabard
  5802.                 { 5,  19717 }, -- Primal Hakkari Armsplint
  5803.                 { 6,  19716 }, -- Primal Hakkari Bindings
  5804.                 { 7,  19718 }, -- Primal Hakkari Stanchion
  5805.                 { 8,  19719 }, -- Primal Hakkari Girdle
  5806.                 { 9,  19720 }, -- Primal Hakkari Sash
  5807.                 { 11, 22637 }, -- Primal Hakkari Idol
  5808.                 { 16, 19885 }, -- Jin'do's Evil Eye
  5809.                 { 17, 19891 }, -- Jin'do's Bag of Whammies
  5810.                 { 18, 19890 }, -- Jin'do's Hexxer
  5811.                 { 19, 19884 }, -- Jin'do's Judgement
  5812.                 { 21, 19886 }, -- The Hexxer's Cover
  5813.                 { 22, 19875 }, -- Bloodstained Coif
  5814.                 { 23, 19888 }, -- Overlord's Embrace
  5815.                 { 24, 19929 }, -- Bloodtinged Gloves
  5816.                 { 25, 19894 }, -- Bloodsoaked Gauntlets
  5817.                 { 26, 19889 }, -- Blooddrenched Leggings
  5818.                 { 27, 19887 }, -- Bloodstained Legplates
  5819.                 { 28, 19892 }, -- Animist's Boots
  5820.             },
  5821.         },
  5822.         { -- ZGHakkar
  5823.             name = AL["Hakkar"],
  5824.             npcID = 14834,
  5825.             Level = 999,
  5826.             DisplayIDs = {{15295}},
  5827.             AtlasMapBossID = 11,
  5828.             [NORMAL_DIFF] = {
  5829.                 { 1,  19857 }, -- Cloak of Consumption
  5830.                 { 2,  20257, [ATLASLOOT_IT_ALLIANCE] = 20264 }, -- Seafury Gauntlets
  5831.                 --{ 3,  20264, [ATLASLOOT_IT_HORDE] = 20257 }, -- Peacekeeper Gauntlets
  5832.                 { 3,  19855 }, -- Bloodsoaked Legplates
  5833.                 { 4,  19876 }, -- Soul Corrupter's Necklace
  5834.                 { 5,  19856 }, -- The Eye of Hakkar
  5835.                 { 7, 19802 }, -- Heart of Hakkar
  5836.                 { 16,  19861 }, -- Touch of Chaos
  5837.                 { 17,  19853 }, -- Gurubashi Dwarf Destroyer
  5838.                 { 18, 19862 }, -- Aegis of the Blood God
  5839.                 { 19, 19864 }, -- Bloodcaller
  5840.                 { 20, 19865 }, -- Warblade of the Hakkari
  5841.                 { 21, 19866 }, -- Warblade of the Hakkari
  5842.                 { 22, 19852 }, -- Ancient Hakkari Manslayer
  5843.                 { 23, 19859 }, -- Fang of the Faceless
  5844.                 { 24, 19854 }, -- Zin'rokh, Destroyer of Worlds
  5845.             },
  5846.         },
  5847.         { -- ZGShared
  5848.             name = AL["High Priest Shared loot"],
  5849.             ExtraList = true,
  5850.             [NORMAL_DIFF] = {
  5851.                 { 1,  22721 }, -- Band of Servitude
  5852.                 { 2,  22722 }, -- Seal of the Gurubashi Berserker
  5853.                 { 4,  22720 }, -- Zulian Headdress
  5854.                 { 5,  22718 }, -- Blooddrenched Mask
  5855.                 { 6,  22711 }, -- Cloak of the Hakkari Worshipers
  5856.                 { 7,  22712 }, -- Might of the Tribe
  5857.                 { 8,  22715 }, -- Gloves of the Tormented
  5858.                 { 9,  22714 }, -- Sacrificial Gauntlets
  5859.                 { 10, 22716 }, -- Belt of Untapped Power
  5860.                 { 11, 22713 }, -- Zulian Scepter of Rites
  5861.             },
  5862.         },
  5863.         { -- ZGTrash1
  5864.             name = AL["Trash"],
  5865.             ExtraList = true,
  5866.             [NORMAL_DIFF] = {
  5867.                 { 1,  20263 }, -- Gurubashi Helm
  5868.                 { 2,  20259 }, -- Shadow Panther Hide Gloves
  5869.                 { 3,  20261 }, -- Shadow Panther Hide Belt
  5870.                 { 4,  19921 }, -- Zulian Hacker
  5871.                 { 5,  19908 }, -- Sceptre of Smiting
  5872.                 { 16,  20258 }, -- Zulian Ceremonial Staff
  5873.                 { 17, 19726 }, -- Bloodvine
  5874.                 { 18, 19774 }, -- Souldarite
  5875.                 { 19, 19767 }, -- Primal Bat Leather
  5876.                 { 20, 19768 }, -- Primal Tiger Leather
  5877.                 { 7, 19706 }, -- Bloodscalp Coin
  5878.                 { 8, 19701 }, -- Gurubashi Coin
  5879.                 { 9, 19700 }, -- Hakkari Coin
  5880.                 { 10, 19699 }, -- Razzashi Coin
  5881.                 { 11, 19704 }, -- Sandfury Coin
  5882.                 { 12, 19705 }, -- Skullsplitter Coin
  5883.                 { 13, 19702 }, -- Vilebranch Coin
  5884.                 { 14, 19703 }, -- Witherbark Coin
  5885.                 { 15, 19698 }, -- Zulian Coin
  5886.                 { 22, 19708 }, -- Blue Hakkari Bijou
  5887.                 { 23, 19713 }, -- Bronze Hakkari Bijou
  5888.                 { 24, 19715 }, -- Gold Hakkari Bijou
  5889.                 { 25, 19711 }, -- Green Hakkari Bijou
  5890.                 { 26, 19710 }, -- Orange Hakkari Bijou
  5891.                 { 27, 19712 }, -- Purple Hakkari Bijou
  5892.                 { 28, 19707 }, -- Red Hakkari Bijou
  5893.                 { 29, 19714 }, -- Silver Hakkari Bijou
  5894.                 { 30, 19709 }, -- Yellow Hakkari Bijou
  5895.             },
  5896.         },
  5897.         { -- ZGEnchants
  5898.             name = AL["Enchants"],
  5899.             ExtraList = true,
  5900.             [NORMAL_DIFF] = {
  5901.                 { 1,  19789 }, -- Prophetic Aura
  5902.                 { 2,  19787 }, -- Presence of Sight
  5903.                 { 3,  19788 }, -- Hoodoo Hex
  5904.                 { 4,  19784 }, -- Death's Embrace
  5905.                 { 5,  19790 }, -- Animist's Caress
  5906.                 { 6,  19785 }, -- Falcon's Call
  5907.                 { 7,  19786 }, -- Vodouisant's Vigilant Embrace
  5908.                 { 8,  19783 }, -- Syncretist's Sigil
  5909.                 { 9,  19782 }, -- Presence of Might
  5910.                 { 16, 20077 }, -- Zandalar Signet of Might
  5911.                 { 17, 20076 }, -- Zandalar Signet of Mojo
  5912.                 { 18, 20078 }, -- Zandalar Signet of Serenity
  5913.                 { 20, 22635 }, -- Savage Guard
  5914.             },
  5915.         },
  5916.         { -- ZGMuddyChurningWaters
  5917.             name = AL["Muddy Churning Waters"],
  5918.             ExtraList = true,
  5919.             AtlasMapBossID = "1'",
  5920.             [NORMAL_DIFF] = {
  5921.                 { 1,  19975 }, -- Zulian Mudskunk
  5922.             },
  5923.         },
  5924.         { -- ZGJinxedHoodooPile
  5925.             name = AL["Jinxed Hoodoo Pile"],
  5926.             ExtraList = true,
  5927.             AtlasMapBossID = "2'",
  5928.             [NORMAL_DIFF] = {
  5929.                 { 1,  19727 }, -- Blood Scythe
  5930.                 { 3,  19820 }, -- Punctured Voodoo Doll
  5931.                 { 4,  19818 }, -- Punctured Voodoo Doll
  5932.                 { 5,  19819 }, -- Punctured Voodoo Doll
  5933.                 { 6,  19814 }, -- Punctured Voodoo Doll
  5934.                 { 7,  19821 }, -- Punctured Voodoo Doll
  5935.                 { 8,  19816 }, -- Punctured Voodoo Doll
  5936.                 { 9,  19817 }, -- Punctured Voodoo Doll
  5937.                 { 10, 19815 }, -- Punctured Voodoo Doll
  5938.                 { 11, 19813 }, -- Punctured Voodoo Doll
  5939.             },
  5940.         },
  5941.     },
  5942. }
  5943.  
  5944. data["BlackwingLair"] = {
  5945.     MapID = 2677,
  5946.     InstanceID = 469,
  5947.     AtlasModule = ATLAS_MODULE_NAME,
  5948.     AtlasMapID = "BlackwingLair",
  5949.     AtlasMapFile = "CL_BlackwingLair",
  5950.     AtlasMapFile_AL = "BlackwingLair",
  5951.     ContentType = RAID40_CONTENT,
  5952.     LoadDifficulty = RAID40_DIFF,
  5953.     ContentPhase = 3,
  5954.     items = {
  5955.         { -- BWLRazorgore
  5956.             name = AL["Razorgore the Untamed"],
  5957.             npcID = 12435,
  5958.             Level = 999,
  5959.             DisplayIDs = {{10115}},
  5960.             AtlasMapBossID = 1,
  5961.             [NORMAL_DIFF] = {
  5962.                 { 1,  16926 }, -- Bindings of Transcendence
  5963.                 { 2,  16918 }, -- Netherwind Bindings
  5964.                 { 3,  16934 }, -- Nemesis Bracers
  5965.                 { 4,  16911 }, -- Bloodfang Bracers
  5966.                 { 5,  16904 }, -- Stormrage Bracers
  5967.                 { 6,  16935 }, -- Dragonstalker's Bracers
  5968.                 { 7,  16943 }, -- Bracers of Ten Storms
  5969.                 { 8,  16951 }, -- Judgement Bindings
  5970.                 { 9,  16959 }, -- Bracelets of Wrath
  5971.                 { 16, 19336 }, -- Arcane Infused Gem
  5972.                 { 17, 19337 }, -- The Black Book
  5973.                 { 19, 19370 }, -- Mantle of the Blackwing Cabal
  5974.                 { 20, 19369 }, -- Gloves of Rapid Evolution
  5975.                 { 21, 19335 }, -- Spineshatter
  5976.                 { 22, 19334 }, -- The Untamed Blade
  5977.             },
  5978.         },
  5979.         { -- BWLVaelastrasz
  5980.             name = AL["Vaelastrasz the Corrupt"],
  5981.             npcID = 13020,
  5982.             Level = 999,
  5983.             DisplayIDs = {{13992}},
  5984.             AtlasMapBossID = 2,
  5985.             [NORMAL_DIFF] = {
  5986.                 { 1,  16925 }, -- Belt of Transcendence
  5987.                 { 2,  16818 }, -- Netherwind Belt
  5988.                 { 3,  16933 }, -- Nemesis Belt
  5989.                 { 4,  16910 }, -- Bloodfang Belt
  5990.                 { 5,  16903 }, -- Stormrage Belt
  5991.                 { 6,  16936 }, -- Dragonstalker's Belt
  5992.                 { 7,  16944 }, -- Belt of Ten Storms
  5993.                 { 8,  16952 }, -- Judgement Belt
  5994.                 { 9,  16960 }, -- Waistband of Wrath
  5995.                 { 16, 19339 }, -- Mind Quickening Gem
  5996.                 { 17, 19340 }, -- Rune of Metamorphosis
  5997.                 { 19, 19372 }, -- Helm of Endless Rage
  5998.                 { 20, 19371 }, -- Pendant of the Fallen Dragon
  5999.                 { 21, 19348 }, -- Red Dragonscale Protector
  6000.                 { 22, 19346 }, -- Dragonfang Blade
  6001.             },
  6002.         },
  6003.         { -- BWLLashlayer
  6004.             name = AL["Broodlord Lashlayer"],
  6005.             npcID = 12017,
  6006.             Level = 999,
  6007.             DisplayIDs = {{14308}},
  6008.             AtlasMapBossID = 3,
  6009.             [NORMAL_DIFF] = {
  6010.                 { 1,  16919 }, -- Boots of Transcendence
  6011.                 { 2,  16912 }, -- Netherwind Boots
  6012.                 { 3,  16927 }, -- Nemesis Boots
  6013.                 { 4,  16906 }, -- Bloodfang Boots
  6014.                 { 5,  16898 }, -- Stormrage Boots
  6015.                 { 6,  16941 }, -- Dragonstalker's Greaves
  6016.                 { 7,  16949 }, -- Greaves of Ten Storms
  6017.                 { 8,  16957 }, -- Judgement Sabatons
  6018.                 { 9,  16965 }, -- Sabatons of Wrath
  6019.                 { 16, 19341 }, -- Lifegiving Gem
  6020.                 { 17, 19342 }, -- Venomous Totem
  6021.                 { 19, 19373 }, -- Black Brood Pauldrons
  6022.                 { 20, 19374 }, -- Bracers of Arcane Accuracy
  6023.                 { 21, 19350 }, -- Heartstriker
  6024.                 { 22, 19351 }, -- Maladath, Runed Blade of the Black Flight
  6025.                 { 24, 20383 }, -- Head of the Broodlord Lashlayer
  6026.             },
  6027.         },
  6028.         { -- BWLFiremaw
  6029.             name = AL["Firemaw"],
  6030.             npcID = 11983,
  6031.             Level = 999,
  6032.             DisplayIDs = {{6377}},
  6033.             AtlasMapBossID = 4,
  6034.             [NORMAL_DIFF] = {
  6035.                 { 1,  16920 }, -- Handguards of Transcendence
  6036.                 { 2,  16913 }, -- Netherwind Gloves
  6037.                 { 3,  16928 }, -- Nemesis Gloves
  6038.                 { 4,  16907 }, -- Bloodfang Gloves
  6039.                 { 5,  16899 }, -- Stormrage Handguards
  6040.                 { 6,  16940 }, -- Dragonstalker's Gauntlets
  6041.                 { 7,  16948 }, -- Gauntlets of Ten Storms
  6042.                 { 8,  16956 }, -- Judgement Gauntlets
  6043.                 { 9,  16964 }, -- Gauntlets of Wrath
  6044.                 { 13, 19344 }, -- Natural Alignment Crystal
  6045.                 { 14, 19343 }, -- Scrolls of Blinding Light
  6046.                 { 16, 19394 }, -- Drake Talon Pauldrons
  6047.                 { 17, 19398 }, -- Cloak of Firemaw
  6048.                 { 18, 19399 }, -- Black Ash Robe
  6049.                 { 19, 19400 }, -- Firemaw's Clutch
  6050.                 { 20, 19396 }, -- Taut Dragonhide Belt
  6051.                 { 21, 19401 }, -- Primalist's Linked Legguards
  6052.                 { 22, 19402 }, -- Legguards of the Fallen Crusader
  6053.                 { 24, 19365 }, -- Claw of the Black Drake
  6054.                 { 25, 19353 }, -- Drake Talon Cleaver
  6055.                 { 26, 19355 }, -- Shadow Wing Focus Staff
  6056.                 { 28, 19397 }, -- Ring of Blackrock
  6057.                 { 29, 19395 }, -- Rejuvenating Gem
  6058.             },
  6059.         },
  6060.         { -- BWLEbonroc
  6061.             name = AL["Ebonroc"],
  6062.             npcID = 14601,
  6063.             Level = 999,
  6064.             DisplayIDs = {{6377}},
  6065.             AtlasMapBossID = 5,
  6066.             [NORMAL_DIFF] = {
  6067.                 { 1,  16920 }, -- Handguards of Transcendence
  6068.                 { 2,  16913 }, -- Netherwind Gloves
  6069.                 { 3,  16928 }, -- Nemesis Gloves
  6070.                 { 4,  16907 }, -- Bloodfang Gloves
  6071.                 { 5,  16899 }, -- Stormrage Handguards
  6072.                 { 6,  16940 }, -- Dragonstalker's Gauntlets
  6073.                 { 7,  16948 }, -- Gauntlets of Ten Storms
  6074.                 { 8,  16956 }, -- Judgement Gauntlets
  6075.                 { 9,  16964 }, -- Gauntlets of Wrath
  6076.                 { 11, 19345 }, -- Aegis of Preservation
  6077.                 { 12, 19406 }, -- Drake Fang Talisman
  6078.                 { 13, 19395 }, -- Rejuvenating Gem
  6079.                 { 16, 19394 }, -- Drake Talon Pauldrons
  6080.                 { 17, 19407 }, -- Ebony Flame Gloves
  6081.                 { 18, 19396 }, -- Taut Dragonhide Belt
  6082.                 { 19, 19405 }, -- Malfurion's Blessed Bulwark
  6083.                 { 21, 19368 }, -- Dragonbreath Hand Cannon
  6084.                 { 22, 19353 }, -- Drake Talon Cleaver
  6085.                 { 23, 19355 }, -- Shadow Wing Focus Staff
  6086.                 { 26, 19403 }, -- Band of Forced Concentration
  6087.                 { 27, 19397 }, -- Ring of Blackrock
  6088.  
  6089.             },
  6090.         },
  6091.         { -- BWLFlamegor
  6092.             name = AL["Flamegor"],
  6093.             npcID = 11981,
  6094.             Level = 999,
  6095.             DisplayIDs = {{6377}},
  6096.             AtlasMapBossID = 6,
  6097.             [NORMAL_DIFF] = {
  6098.                 { 1,  16920 }, -- Handguards of Transcendence
  6099.                 { 2,  16913 }, -- Netherwind Gloves
  6100.                 { 3,  16928 }, -- Nemesis Gloves
  6101.                 { 4,  16907 }, -- Bloodfang Gloves
  6102.                 { 5,  16899 }, -- Stormrage Handguards
  6103.                 { 6,  16940 }, -- Dragonstalker's Gauntlets
  6104.                 { 7,  16948 }, -- Gauntlets of Ten Storms
  6105.                 { 8,  16956 }, -- Judgement Gauntlets
  6106.                 { 9,  16964 }, -- Gauntlets of Wrath
  6107.                 { 11, 19395 }, -- Rejuvenating Gem
  6108.                 { 12, 19431 }, -- Styleen's Impeding Scarab
  6109.                 { 16, 19394 }, -- Drake Talon Pauldrons
  6110.                 { 17, 19430 }, -- Shroud of Pure Thought
  6111.                 { 18, 19396 }, -- Taut Dragonhide Belt
  6112.                 { 19, 19433 }, -- Emberweave Leggings
  6113.                 { 21, 19367 }, -- Dragon's Touch
  6114.                 { 22, 19353 }, -- Drake Talon Cleaver
  6115.                 { 23, 19357 }, -- Herald of Woe
  6116.                 { 24, 19355 }, -- Shadow Wing Focus Staff
  6117.                 { 26, 19432 }, -- Circle of Applied Force
  6118.                 { 27, 19397 }, -- Ring of Blackrock
  6119.             },
  6120.         },
  6121.         { -- BWLChromaggus
  6122.             name = AL["Chromaggus"],
  6123.             npcID = 14020,
  6124.             Level = 999,
  6125.             DisplayIDs = {{14367}},
  6126.             AtlasMapBossID = 7,
  6127.             [NORMAL_DIFF] = {
  6128.                 { 1,  16924 }, -- Pauldrons of Transcendence
  6129.                 { 2,  16917 }, -- Netherwind Mantle
  6130.                 { 3,  16932 }, -- Nemesis Spaulders
  6131.                 { 4,  16832 }, -- Bloodfang Spaulders
  6132.                 { 5,  16902 }, -- Stormrage Pauldrons
  6133.                 { 6,  16937 }, -- Dragonstalker's Spaulders
  6134.                 { 7,  16945 }, -- Epaulets of Ten Storms
  6135.                 { 8,  16953 }, -- Judgement Spaulders
  6136.                 { 9,  16961 }, -- Pauldrons of Wrath
  6137.                 { 16, 19389 }, -- Taut Dragonhide Shoulderpads
  6138.                 { 17, 19386 }, -- Elementium Threaded Cloak
  6139.                 { 18, 19390 }, -- Taut Dragonhide Gloves
  6140.                 { 19, 19388 }, -- Angelista's Grasp
  6141.                 { 20, 19393 }, -- Primalist's Linked Waistguard
  6142.                 { 21, 19392 }, -- Girdle of the Fallen Crusader
  6143.                 { 22, 19385 }, -- Empowered Leggings
  6144.                 { 23, 19391 }, -- Shimmering Geta
  6145.                 { 24, 19387 }, -- Chromatic Boots
  6146.                 { 26, 19361 }, -- Ashjre'thul, Crossbow of Smiting
  6147.                 { 27, 19349 }, -- Elementium Reinforced Bulwark
  6148.                 { 28, 19347 }, -- Claw of Chromaggus
  6149.                 { 29, 19352 }, -- Chromatically Tempered Sword
  6150.             },
  6151.         },
  6152.         { -- BWLNefarian
  6153.             name = AL["Nefarian"],
  6154.             npcID = 11583,
  6155.             Level = 999,
  6156.             DisplayIDs = {{11380}},
  6157.             AtlasMapBossID = 8,
  6158.             [NORMAL_DIFF] = {
  6159.                 { 1,  16923 }, -- Robes of Transcendence
  6160.                 { 2,  16916 }, -- Netherwind Robes
  6161.                 { 3,  16931 }, -- Nemesis Robes
  6162.                 { 4,  16905 }, -- Bloodfang Chestpiece
  6163.                 { 5,  16897 }, -- Stormrage Chestguard
  6164.                 { 6,  16942 }, -- Dragonstalker's Breastplate
  6165.                 { 7,  16950 }, -- Breastplate of Ten Storms
  6166.                 { 8,  16958 }, -- Judgement Breastplate
  6167.                 { 9,  16966 }, -- Breastplate of Wrath
  6168.                 { 11, 19003 }, -- Head of Nefarian
  6169.                 { 16, 19360 }, -- Lok'amir il Romathis
  6170.                 { 17, 19363 }, -- Crul'shorukh, Edge of Chaos
  6171.                 { 18, 19364 }, -- Ashkandi, Greatsword of the Brotherhood
  6172.                 { 19, 19356 }, -- Staff of the Shadow Flame
  6173.                 { 21, 19375 }, -- Mish'undare, Circlet of the Mind Flayer
  6174.                 { 22, 19377 }, -- Prestor's Talisman of Connivery
  6175.                 { 23, 19378 }, -- Cloak of the Brood Lord
  6176.                 { 24, 19380 }, -- Therazane's Link
  6177.                 { 25, 19381 }, -- Boots of the Shadow Flame
  6178.                 { 26, 19376 }, -- Archimtiros' Ring of Reckoning
  6179.                 { 27, 19382 }, -- Pure Elementium Band
  6180.                 { 28, 19379 }, -- Neltharion's Tear
  6181.                 { 30, 11938 }, -- Sack of Gems
  6182.                 -- Hidden items
  6183.                 { 0, 17962 }, -- Blue Sack of Gems
  6184.                 { 0, 17963 }, -- Green Sack of Gems
  6185.                 { 0, 17964 }, -- Gray Sack of Gems
  6186.                 { 0, 17965 }, -- Yellow Sack of Gems
  6187.                 { 0, 17969 }, -- Red Sack of Gems
  6188.             },
  6189.         },
  6190.         { -- BWLTrashMobs
  6191.             name = AL["Trash"],
  6192.             ExtraList = true,
  6193.             [NORMAL_DIFF] = {
  6194.                 { 1,  19436 }, -- Cloak of Draconic Might
  6195.                 { 2,  19439 }, -- Interlaced Shadow Jerkin
  6196.                 { 3,  19437 }, -- Boots of Pure Thought
  6197.                 { 4,  19438 }, -- Ringo's Blizzard Boots
  6198.                 { 5,  19434 }, -- Band of Dark Dominion
  6199.                 { 6,  19435 }, -- Essence Gatherer
  6200.                 { 7,  19362 }, -- Doom's Edge
  6201.                 { 8,  19354 }, -- Draconic Avenger
  6202.                 { 9,  19358 }, -- Draconic Maul
  6203.                 { 11, 18562 }, -- Elementium Ore
  6204.             },
  6205.         },
  6206.         T2_SET,
  6207.     },
  6208. }
  6209.  
  6210. data["TheRuinsofAhnQiraj"] = { -- AQ20
  6211.     MapID = 3429,
  6212.     InstanceID = 509,
  6213.     AtlasModule = ATLAS_MODULE_NAME,
  6214.     AtlasMapID = "TheRuinsofAhnQiraj",
  6215.     AtlasMapFile = "CL_TheRuinsofAhnQiraj",
  6216.     AtlasMapFile_AL = "TheRuinsofAhnQiraj",
  6217.     ContentType = RAID20_CONTENT,
  6218.     LoadDifficulty = RAID20_DIFF,
  6219.     ContentPhase = 5,
  6220.     items = {
  6221.         { -- AQ20Kurinnaxx
  6222.             name = AL["Kurinnaxx"],
  6223.             npcID = 15348,
  6224.             Level = 999,
  6225.             DisplayIDs = {{15742}},
  6226.             AtlasMapBossID = 1,
  6227.             [NORMAL_DIFF] = {
  6228.                 { 1,  21499 }, -- Vestments of the Shifting Sands
  6229.                 { 2,  21498 }, -- Qiraji Sacrificial Dagger
  6230.                 { 4,  21502 }, -- Sand Reaver Wristguards
  6231.                 { 5,  21501 }, -- Toughened Silithid Hide Gloves
  6232.                 { 6,  21500 }, -- Belt of the Inquisition
  6233.                 { 7,  21503 }, -- Belt of the Sand Reaver
  6234.                 { 19, 20885 }, -- Qiraji Martial Drape
  6235.                 { 20, 20889 }, -- Qiraji Regal Drape
  6236.                 { 21, 20888 }, -- Qiraji Ceremonial Ring
  6237.                 { 22, 20884 }, -- Qiraji Magisterial Ring
  6238.             },
  6239.         },
  6240.         { -- AQ20Rajaxx
  6241.             name = AL["General Rajaxx"],
  6242.             npcID = 15341,
  6243.             Level = 999,
  6244.             DisplayIDs = {{15376}},
  6245.             AtlasMapBossID = 2,
  6246.             [NORMAL_DIFF] = {
  6247.                 { 1,  21493 }, -- Boots of the Vanguard
  6248.                 { 2,  21492 }, -- Manslayer of the Qiraji
  6249.                 { 4,  21496 }, -- Bracers of Qiraji Command
  6250.                 { 5,  21494 }, -- Southwind's Grasp
  6251.                 { 6,  21495 }, -- Legplates of the Qiraji Command
  6252.                 { 7,  21497 }, -- Boots of the Qiraji General
  6253.                 { 9,  "INV_Box_01", nil, AL["Trash"] },
  6254.                 { 10,  21810 }, -- Treads of the Wandering Nomad
  6255.                 { 11,  21809 }, -- Fury of the Forgotten Swarm
  6256.                 { 12,  21806 }, -- Gavel of Qiraji Authority
  6257.                 { 19, 20885 }, -- Qiraji Martial Drape
  6258.                 { 20, 20889 }, -- Qiraji Regal Drape
  6259.                 { 21, 20888 }, -- Qiraji Ceremonial Ring
  6260.                 { 22, 20884 }, -- Qiraji Magisterial Ring
  6261.             },
  6262.         },
  6263.         { -- AQ20Moam
  6264.             name = AL["Moam"],
  6265.             npcID = 15340,
  6266.             Level = 999,
  6267.             DisplayIDs = {{15392}},
  6268.             AtlasMapBossID = 3,
  6269.             [NORMAL_DIFF] = {
  6270.                 { 1,  21472 }, -- Dustwind Turban
  6271.                 { 2,  21467 }, -- Thick Silithid Chestguard
  6272.                 { 3,  21479 }, -- Gauntlets of the Immovable
  6273.                 { 4,  21471 }, -- Talon of Furious Concentration
  6274.                 { 6,  21455 }, -- Southwind Helm
  6275.                 { 7,  21468 }, -- Mantle of Maz'Nadir
  6276.                 { 8,  21474 }, -- Chitinous Shoulderguards
  6277.                 { 9,  21470 }, -- Cloak of the Savior
  6278.                 { 10, 21469 }, -- Gauntlets of Southwind
  6279.                 { 11, 21476 }, -- Obsidian Scaled Leggings
  6280.                 { 12, 21475 }, -- Legplates of the Destroyer
  6281.                 { 13, 21477 }, -- Ring of Fury
  6282.                 { 14, 21473 }, -- Eye of Moam
  6283.                 { 16, 20890 }, -- Qiraji Ornate Hilt
  6284.                 { 17, 20886 }, -- Qiraji Spiked Hilt
  6285.                 { 21, 20888 }, -- Qiraji Ceremonial Ring
  6286.                 { 22, 20884 }, -- Qiraji Magisterial Ring
  6287.                 { 24, 22220 }, -- Plans: Black Grasp of the Destroyer
  6288.                 --{ 24, 22194 }, -- Black Grasp of the Destroyer
  6289.             },
  6290.         },
  6291.         { -- AQ20Buru
  6292.             name = AL["Buru the Gorger"],
  6293.             npcID = 15370,
  6294.             Level = 999,
  6295.             DisplayIDs = {{15654}},
  6296.             AtlasMapBossID = 4,
  6297.             [NORMAL_DIFF] = {
  6298.                 { 1,  21487, [ATLASLOOT_IT_ALLIANCE] = 21486 }, -- Slimy Scaled Gauntlets
  6299.                 --{ 2,  21486 }, -- Gloves of the Swarm
  6300.                 { 2,  21485 }, -- Buru's Skull Fragment
  6301.                 { 5,  21491 }, -- Scaled Bracers of the Gorger
  6302.                 { 6,  21489 }, -- Quicksand Waders
  6303.                 { 7,  21490 }, -- Slime Kickers
  6304.                 { 8,  21488 }, -- Fetish of Chitinous Spikes
  6305.                 { 16, 20890 }, -- Qiraji Ornate Hilt
  6306.                 { 17, 20886 }, -- Qiraji Spiked Hilt
  6307.                 { 20, 20885 }, -- Qiraji Martial Drape
  6308.                 { 21, 20889 }, -- Qiraji Regal Drape
  6309.                 { 22, 20888 }, -- Qiraji Ceremonial Ring
  6310.                 { 23, 20884 }, -- Qiraji Magisterial Ring
  6311.             },
  6312.         },
  6313.         { -- AQ20Ayamiss
  6314.             name = AL["Ayamiss the Hunter"],
  6315.             npcID = 15369,
  6316.             Level = 999,
  6317.             DisplayIDs = {{15431}},
  6318.             AtlasMapBossID = 5,
  6319.             [NORMAL_DIFF] = {
  6320.                 { 1,  21479 }, -- Gauntlets of the Immovable
  6321.                 { 2,  21478 }, -- Bow of Taut Sinew
  6322.                 { 3,  21466 }, -- Stinger of Ayamiss
  6323.                 { 5,  21484 }, -- Helm of Regrowth
  6324.                 { 6,  21480 }, -- Scaled Silithid Gauntlets
  6325.                 { 7,  21482 }, -- Boots of the Fiery Sands
  6326.                 { 8,  21481 }, -- Boots of the Desert Protector
  6327.                 { 9,  21483 }, -- Ring of the Desert Winds
  6328.                 { 16, 20890 }, -- Qiraji Ornate Hilt
  6329.                 { 17, 20886 }, -- Qiraji Spiked Hilt
  6330.                 { 20, 20885 }, -- Qiraji Martial Drape
  6331.                 { 21, 20889 }, -- Qiraji Regal Drape
  6332.                 { 22, 20888 }, -- Qiraji Ceremonial Ring
  6333.                 { 23, 20884 }, -- Qiraji Magisterial Ring
  6334.             },
  6335.         },
  6336.         { -- AQ20Ossirian
  6337.             name = AL["Ossirian the Unscarred"],
  6338.             npcID = 15339,
  6339.             Level = 999,
  6340.             DisplayIDs = {{15432}},
  6341.             AtlasMapBossID = 6,
  6342.             [NORMAL_DIFF] = {
  6343.                 { 1,  21460 }, -- Helm of Domination
  6344.                 { 2,  21454, [ATLASLOOT_IT_ALLIANCE] = 21453 }, -- Runic Stone Shoulders
  6345.                 --{ 3,  21453 }, -- Mantle of the Horusath
  6346.                 { 3,  21456 }, -- Sandstorm Cloak
  6347.                 { 4,  21464 }, -- Shackles of the Unscarred
  6348.                 { 5,  21457 }, -- Bracers of Brutality
  6349.                 { 6,  21462 }, -- Gloves of Dark Wisdom
  6350.                 { 7,  21458 }, -- Gauntlets of New Life
  6351.                 { 8,  21463 }, -- Ossirian's Binding
  6352.                 { 9, 21461 }, -- Leggings of the Black Blizzard
  6353.                 { 10, 21459 }, -- Crossbow of Imminent Doom
  6354.                 { 11, 21715 }, -- Sand Polished Hammer
  6355.                 { 12, 21452 }, -- Staff of the Ruins
  6356.                 { 16, 20890 }, -- Qiraji Ornate Hilt
  6357.                 { 17, 20886 }, -- Qiraji Spiked Hilt
  6358.                 { 20, 20888 }, -- Qiraji Ceremonial Ring
  6359.                 { 21, 20884 }, -- Qiraji Magisterial Ring
  6360.                 { 23, 21220 }, -- Head of Ossirian the Unscarred
  6361.             },
  6362.         },
  6363.         { -- AQ20Trash
  6364.             name = AL["Trash"],
  6365.             ExtraList = true,
  6366.             [NORMAL_DIFF] = {
  6367.                 { 1,  21804, [ATLASLOOT_IT_ALLIANCE] = 21803 }, -- Coif of Elemental Fury
  6368.                 --{ 2,  21803 }, -- Helm of the Holy Avenger
  6369.                 { 2,  21805 }, -- Polished Obsidian Pauldrons
  6370.                 { 5,  20873 }, -- Alabaster Idol
  6371.                 { 6,  20869 }, -- Amber Idol
  6372.                 { 7,  20866 }, -- Azure Idol
  6373.                 { 8,  20870 }, -- Jasper Idol
  6374.                 { 9,  20868 }, -- Lambent Idol
  6375.                 { 10, 20871 }, -- Obsidian Idol
  6376.                 { 11, 20867 }, -- Onyx Idol
  6377.                 { 12, 20872 }, -- Vermillion Idol
  6378.                 { 14, 21761 }, -- Scarab Coffer Key
  6379.                 { 15, 21156 }, -- Scarab Bag
  6380.                 { 16, 21801 }, -- Antenna of Invigoration
  6381.                 { 17, 21800 }, -- Silithid Husked Launcher
  6382.                 { 18, 21802 }, -- The Lost Kris of Zedd
  6383.                 { 20, 20864 }, -- Bone Scarab
  6384.                 { 21, 20861 }, -- Bronze Scarab
  6385.                 { 22, 20863 }, -- Clay Scarab
  6386.                 { 23, 20862 }, -- Crystal Scarab
  6387.                 { 24, 20859 }, -- Gold Scarab
  6388.                 { 25, 20865 }, -- Ivory Scarab
  6389.                 { 26, 20860 }, -- Silver Scarab
  6390.                 { 27, 20858 }, -- Stone Scarab
  6391.                 { 29, 22203 }, -- Large Obsidian Shard
  6392.                 { 30, 22202 }, -- Small Obsidian Shard
  6393.             },
  6394.         },
  6395.         { -- AQ20ClassBooks
  6396.             name = AL["Class books"],
  6397.             ExtraList = true,
  6398.             [NORMAL_DIFF] = {
  6399.                 { 1,  21284 }, -- Codex of Greater Heal V
  6400.                 { 2,  21287 }, -- Codex of Prayer of Healing V
  6401.                 { 3,  21285 }, -- Codex of Renew X
  6402.                 { 4,  21279 }, -- Tome of Fireball XII
  6403.                 { 5,  21214 }, -- Tome of Frostbolt XI
  6404.                 { 6,  21280 }, -- Tome of Arcane Missiles VIII
  6405.                 { 7,  21281 }, -- Grimoire of Shadow Bolt X
  6406.                 { 8,  21283 }, -- Grimoire of Corruption VII
  6407.                 { 9,  21282 }, -- Grimoire of Immolate VIII
  6408.                 { 10, 21300 }, -- Handbook of Backstab IX
  6409.                 { 11, 21303 }, -- Handbook of Feint V
  6410.                 { 12, 21302 }, -- Handbook of Deadly Poison V
  6411.                 { 13, 21294 }, -- Book of Healing Touch XI
  6412.                 { 14, 21296 }, -- Book of Rejuvenation XI
  6413.                 { 15, 21295 }, -- Book of Starfire VII
  6414.                 { 16, 21306 }, -- Guide: Serpent Sting IX
  6415.                 { 17, 21304 }, -- Guide: Multi-Shot V
  6416.                 { 18, 21307 }, -- Guide: Aspect of the Hawk VII
  6417.                 { 19, 21291 }, -- Tablet of Healing Wave X
  6418.                 { 20, 21292 }, -- Tablet of Strength of Earth Totem V
  6419.                 { 21, 21293 }, -- Tablet of Grace of Air Totem III
  6420.                 { 22, 21288 }, -- Libram: Blessing of Wisdom VI
  6421.                 { 23, 21289 }, -- Libram: Blessing of Might VII
  6422.                 { 24, 21290 }, -- Libram: Holy Light IX
  6423.                 { 25, 21298 }, -- Manual of Battle Shout VII
  6424.                 { 26, 21299 }, -- Manual of Revenge VI
  6425.                 { 27, 21297 }, -- Manual of Heroic Strike IX
  6426.             },
  6427.         },
  6428.         AQ_SCARABS,
  6429.         AQ_ENCHANTS,
  6430.         AQ_OPENING,
  6431.     },
  6432. }
  6433.  
  6434. data["TheTempleofAhnQiraj"] = { -- AQ40
  6435.     MapID = 3428,
  6436.     InstanceID = 531,
  6437.     AtlasModule = ATLAS_MODULE_NAME,
  6438.     AtlasMapID = "TheTempleofAhnQiraj",
  6439.     AtlasMapFile = "CL_TheTempleofAhnQiraj",
  6440.     AtlasMapFile_AL = "TheTempleofAhnQiraj",
  6441.     ContentType = RAID40_CONTENT,
  6442.     LoadDifficulty = RAID40_DIFF,
  6443.     ContentPhase = 5,
  6444.     items = {
  6445.         { -- AQ40Skeram
  6446.             name = AL["The Prophet Skeram"],
  6447.             npcID = 15263,
  6448.             Level = 999,
  6449.             DisplayIDs = {{15345}},
  6450.             AtlasMapBossID = 1,
  6451.             [NORMAL_DIFF] = {
  6452.                 { 1,  21699 }, -- Barrage Shoulders
  6453.                 { 2,  21814 }, -- Breastplate of Annihilation
  6454.                 { 3,  21708 }, -- Beetle Scaled Wristguards
  6455.                 { 4,  21698 }, -- Leggings of Immersion
  6456.                 { 5,  21705 }, -- Boots of the Fallen Prophet
  6457.                 { 6,  21704 }, -- Boots of the Redeemed Prophecy
  6458.                 { 7,  21706 }, -- Boots of the Unwavering Will
  6459.                 { 9,  21702 }, -- Amulet of Foul Warding
  6460.                 { 10, 21700 }, -- Pendant of the Qiraji Guardian
  6461.                 { 11, 21701 }, -- Cloak of Concentrated Hatred
  6462.                 { 12, 21707 }, -- Ring of Swarming Thought
  6463.                 { 13, 21703 }, -- Hammer of Ji'zhi
  6464.                 { 14, 21128 }, -- Staff of the Qiraji Prophets
  6465.                 { 16, 21237 }, -- Imperial Qiraji Regalia
  6466.                 { 17, 21232 }, -- Imperial Qiraji Armaments
  6467.                 { 19, 22222 }, -- Plans: Thick Obsidian Breastplate
  6468.                 --{ 20, 22196 }, -- Thick Obsidian Breastplate
  6469.             },
  6470.         },
  6471.         { -- AQ40Trio
  6472.             name = AL["Bug Trio"],
  6473.             npcID = {15543, 15544, 15511},
  6474.             Level = 999,
  6475.             DisplayIDs = {{15657},{15658},{15656}},
  6476.             AtlasMapBossID = 2,
  6477.             [NORMAL_DIFF] = {
  6478.                 { 1,  21693 }, -- Guise of the Devourer
  6479.                 { 2,  21694 }, -- Ternary Mantle
  6480.                 { 3,  21697 }, -- Cape of the Trinity
  6481.                 { 4,  21696 }, -- Robes of the Triumvirate
  6482.                 { 5,  21692 }, -- Triad Girdle
  6483.                 { 6,  21695 }, -- Angelista's Touch
  6484.                 { 8,  21237 }, -- Imperial Qiraji Regalia
  6485.                 { 9,  21232 }, -- Imperial Qiraji Armaments
  6486.                 { 11, "INV_BOX_02", nil, format(AL["%s killed last"], AL["Lord Kri"]) },
  6487.                 { 12, 21680 }, -- Vest of Swift Execution
  6488.                 { 13, 21681 }, -- Ring of the Devoured
  6489.                 { 14, 21685 }, -- Petrified Scarab
  6490.                 { 15, 21603 }, -- Wand of Qiraji Nobility
  6491.                 { 16, "INV_BOX_02", nil, format(AL["%s killed last"], AL["Vem"]) },
  6492.                 { 17, 21690 }, -- Angelista's Charm
  6493.                 { 18, 21689 }, -- Gloves of Ebru
  6494.                 { 19, 21691 }, -- Ooze-ridden Gauntlets
  6495.                 { 20, 21688 }, -- Boots of the Fallen Hero
  6496.                 { 22, "INV_BOX_02", nil, format(AL["%s killed last"], AL["Princess Yauj"]) },
  6497.                 { 23, 21686 }, -- Mantle of Phrenic Power
  6498.                 { 24, 21684 }, -- Mantle of the Desert's Fury
  6499.                 { 25, 21683 }, -- Mantle of the Desert Crusade
  6500.                 { 26, 21682 }, -- Bile-Covered Gauntlets
  6501.                 { 27, 21687 }, -- Ukko's Ring of Darkness
  6502.             },
  6503.         },
  6504.         { -- AQ40Sartura
  6505.             name = AL["Battleguard Sartura"],
  6506.             npcID = 15516,
  6507.             Level = 999,
  6508.             DisplayIDs = {{15583}},
  6509.             AtlasMapBossID = 3,
  6510.             [NORMAL_DIFF] = {
  6511.                 { 1,  21669 }, -- Creeping Vine Helm
  6512.                 { 2,  21678 }, -- Necklace of Purity
  6513.                 { 3,  21671 }, -- Robes of the Battleguard
  6514.                 { 4,  21672 }, -- Gloves of Enforcement
  6515.                 { 5,  21674 }, -- Gauntlets of Steadfast Determination
  6516.                 { 6,  21675 }, -- Thick Qirajihide Belt
  6517.                 { 7,  21676 }, -- Leggings of the Festering Swarm
  6518.                 { 8,  21668 }, -- Scaled Leggings of Qiraji Fury
  6519.                 { 9,  21667 }, -- Legplates of Blazing Light
  6520.                 { 10, 21648 }, -- Recomposed Boots
  6521.                 { 11, 21670 }, -- Badge of the Swarmguard
  6522.                 { 12, 21666 }, -- Sartura's Might
  6523.                 { 13, 21673 }, -- Silithid Claw
  6524.                 { 16, 21237 }, -- Imperial Qiraji Regalia
  6525.                 { 17, 21232 }, -- Imperial Qiraji Armaments
  6526.             },
  6527.         },
  6528.         { -- AQ40Fankriss
  6529.             name = AL["Fankriss the Unyielding"],
  6530.             npcID = 15510,
  6531.             Level = 999,
  6532.             DisplayIDs = {{15743}},
  6533.             AtlasMapBossID = 4,
  6534.             [NORMAL_DIFF] = {
  6535.                 { 1,  21665 }, -- Mantle of Wicked Revenge
  6536.                 { 2,  21639 }, -- Pauldrons of the Unrelenting
  6537.                 { 3,  21627 }, -- Cloak of Untold Secrets
  6538.                 { 4,  21663 }, -- Robes of the Guardian Saint
  6539.                 { 5,  21652 }, -- Silithid Carapace Chestguard
  6540.                 { 6,  21651 }, -- Scaled Sand Reaver Leggings
  6541.                 { 7,  21645 }, -- Hive Tunneler's Boots
  6542.                 { 8,  21650 }, -- Ancient Qiraji Ripper
  6543.                 { 9,  21635 }, -- Barb of the Sand Reaver
  6544.                 { 11, 21664 }, -- Barbed Choker
  6545.                 { 12, 21647 }, -- Fetish of the Sand Reaver
  6546.                 { 13, 22402 }, -- Libram of Grace
  6547.                 { 14, 22396 }, -- Totem of Life
  6548.                 { 16, 21237 }, -- Imperial Qiraji Regalia
  6549.                 { 17, 21232 }, -- Imperial Qiraji Armaments
  6550.             },
  6551.         },
  6552.         { -- AQ40Viscidus
  6553.             name = AL["Viscidus"],
  6554.             npcID = 15299,
  6555.             Level = 999,
  6556.             DisplayIDs = {{15686}},
  6557.             AtlasMapBossID = 5,
  6558.             [NORMAL_DIFF] = {
  6559.                 { 1,  21624 }, -- Gauntlets of Kalimdor
  6560.                 { 2,  21623 }, -- Gauntlets of the Righteous Champion
  6561.                 { 3,  21626 }, -- Slime-coated Leggings
  6562.                 { 4,  21622 }, -- Sharpened Silithid Femur
  6563.                 { 6,  21677 }, -- Ring of the Qiraji Fury
  6564.                 { 7,  21625 }, -- Scarab Brooch
  6565.                 { 8,  22399 }, -- Idol of Health
  6566.                 { 16, 21237 }, -- Imperial Qiraji Regalia
  6567.                 { 17, 21232 }, -- Imperial Qiraji Armaments
  6568.                 { 19, 20928 }, -- Qiraji Bindings of Command
  6569.                 { 20, 20932 }, -- Qiraji Bindings of Dominance
  6570.             },
  6571.         },
  6572.         { -- AQ40Huhuran
  6573.             name = AL["Princess Huhuran"],
  6574.             npcID = 15509,
  6575.             Level = 999,
  6576.             DisplayIDs = {{15739}},
  6577.             AtlasMapBossID = 6,
  6578.             [NORMAL_DIFF] = {
  6579.                 { 1,  21621 }, -- Cloak of the Golden Hive
  6580.                 { 2,  21618 }, -- Hive Defiler Wristguards
  6581.                 { 3,  21619 }, -- Gloves of the Messiah
  6582.                 { 4,  21617 }, -- Wasphide Gauntlets
  6583.                 { 5,  21620 }, -- Ring of the Martyr
  6584.                 { 6,  21616 }, -- Huhuran's Stinger
  6585.                 { 16, 21237 }, -- Imperial Qiraji Regalia
  6586.                 { 17, 21232 }, -- Imperial Qiraji Armaments
  6587.                 { 19, 20928 }, -- Qiraji Bindings of Command
  6588.                 { 20, 20932 }, -- Qiraji Bindings of Dominance
  6589.             },
  6590.         },
  6591.         { -- AQ40Emperors
  6592.             name = AL["Twin Emperors"],
  6593.             npcID = {15275, 15276},
  6594.             Level = 999,
  6595.             DisplayIDs = {{15761},{15778}},
  6596.             AtlasMapBossID = 7,
  6597.             [NORMAL_DIFF] = {
  6598.                 { 1, "INV_Box_01", nil, AL["Emperor Vek'lor"], nil },
  6599.                 { 2,  20930 }, -- Vek'lor's Diadem
  6600.                 { 3,  21602 }, -- Qiraji Execution Bracers
  6601.                 { 4,  21599 }, -- Vek'lor's Gloves of Devastation
  6602.                 { 5,  21598 }, -- Royal Qiraji Belt
  6603.                 { 6,  21600 }, -- Boots of Epiphany
  6604.                 { 7,  21601 }, -- Ring of Emperor Vek'lor
  6605.                 { 8,  21597 }, -- Royal Scepter of Vek'lor
  6606.                 { 9,  20735 }, -- Formula: Enchant Cloak - Subtlety
  6607.                 { 12, 21232 }, -- Imperial Qiraji Armaments
  6608.                 { 16, "INV_Box_01", nil, AL["Emperor Vek'nilash"], nil },
  6609.                 { 17, 20926 }, -- Vek'nilash's Circlet
  6610.                 { 18, 21608 }, -- Amulet of Vek'nilash
  6611.                 { 19, 21604 }, -- Bracelets of Royal Redemption
  6612.                 { 20, 21605 }, -- Gloves of the Hidden Temple
  6613.                 { 21, 21609 }, -- Regenerating Belt of Vek'nilash
  6614.                 { 22, 21607 }, -- Grasp of the Fallen Emperor
  6615.                 { 23, 21606 }, -- Belt of the Fallen Emperor
  6616.                 { 24, 21679 }, -- Kalimdor's Revenge
  6617.                 { 25, 20726 }, -- Formula: Enchant Gloves - Threat
  6618.                 { 27, 21237 }, -- Imperial Qiraji Regalia
  6619.             },
  6620.         },
  6621.         { -- AQ40Ouro
  6622.             name = AL["Ouro"],
  6623.             npcID = 15517,
  6624.             Level = 999,
  6625.             DisplayIDs = {{15509}},
  6626.             AtlasMapBossID = 8,
  6627.             [NORMAL_DIFF] = {
  6628.                 { 1,  21615 }, -- Don Rigoberto's Lost Hat
  6629.                 { 2,  21611 }, -- Burrower Bracers
  6630.                 { 3,  23558 }, -- The Burrower's Shell
  6631.                 { 4,  23570 }, -- Jom Gabbar
  6632.                 { 5,  21610 }, -- Wormscale Blocker
  6633.                 { 6,  23557 }, -- Larvae of the Great Worm
  6634.                 { 16, 21237 }, -- Imperial Qiraji Regalia
  6635.                 { 17, 21232 }, -- Imperial Qiraji Armaments
  6636.                 { 19,  20927 }, -- Ouro's Intact Hide
  6637.                 { 20,  20931 }, -- Skin of the Great Sandworm
  6638.             },
  6639.         },
  6640.         { -- AQ40CThun
  6641.             name = AL["C'Thun"],
  6642.             npcID = 15727,
  6643.             Level = 999,
  6644.             DisplayIDs = {{15787}},
  6645.             AtlasMapBossID = 9,
  6646.             [NORMAL_DIFF] = {
  6647.                 { 1,  22732 }, -- Mark of C'Thun
  6648.                 { 2,  21583 }, -- Cloak of Clarity
  6649.                 { 3,  22731 }, -- Cloak of the Devoured
  6650.                 { 4,  22730 }, -- Eyestalk Waist Cord
  6651.                 { 5,  21582 }, -- Grasp of the Old God
  6652.                 { 6,  21586 }, -- Belt of Never-ending Agony
  6653.                 { 7,  21585 }, -- Dark Storm Gauntlets
  6654.                 { 8,  21581 }, -- Gauntlets of Annihilation
  6655.                 { 9,  21596 }, -- Ring of the Godslayer
  6656.                 { 10, 21579 }, -- Vanquished Tentacle of C'Thun
  6657.                 { 11, 21839 }, -- Scepter of the False Prophet
  6658.                 { 12, 21126 }, -- Death's Sting
  6659.                 { 13, 21134 }, -- Dark Edge of Insanity
  6660.                 { 16, 20929 }, -- Carapace of the Old God
  6661.                 { 17, 20933 }, -- Husk of the Old God
  6662.                 { 19, 21221 }, -- Eye of C'Thun
  6663.                 { 21, 22734 }, -- Base of Atiesh
  6664.             },
  6665.         },
  6666.         { -- AQ40Trash1
  6667.             name = AL["Trash"],
  6668.             ExtraList = true,
  6669.             [NORMAL_DIFF] = {
  6670.                 { 1,  21838 }, -- Garb of Royal Ascension
  6671.                 { 2,  21888 }, -- Gloves of the Immortal
  6672.                 { 3,  21889 }, -- Gloves of the Redeemed Prophecy
  6673.                 { 4,  21856 }, -- Neretzek, The Blood Drinker
  6674.                 { 5,  21837 }, -- Anubisath Warhammer
  6675.                 { 6,  21836 }, -- Ritssyn's Ring of Chaos
  6676.                 { 7,  21891 }, -- Shard of the Fallen Star
  6677.                 { 16, 21218 }, -- Blue Qiraji Resonating Crystal
  6678.                 { 17, 21324 }, -- Yellow Qiraji Resonating Crystal
  6679.                 { 18, 21323 }, -- Green Qiraji Resonating Crystal
  6680.                 { 19, 21321 }, -- Red Qiraji Resonating Crystal
  6681.             },
  6682.         },
  6683.         AQ_SCARABS,
  6684.         AQ_ENCHANTS,
  6685.         AQ_OPENING,
  6686.     },
  6687. }
  6688.  
  6689. data["Naxxramas"] = {
  6690.     MapID = 3456,
  6691.     InstanceID = AtlasLoot:GameVersion_LT(AtlasLoot.WRATH_VERSION_NUM,533,nil),
  6692.     AtlasModule = ATLAS_MODULE_NAME,
  6693.     AtlasMapID = "Naxxramas",
  6694.     AtlasMapFile = "CL_Naxxramas",
  6695.     AtlasMapFile_AL = "Naxxramas",
  6696.     ContentType = RAID40_CONTENT,
  6697.     LoadDifficulty = RAID40_DIFF,
  6698.     ContentPhase = 6,
  6699.     items = {
  6700.         -- The Arachnid Quarter
  6701.         { -- NAXAnubRekhan
  6702.             name = AL["Anub'Rekhan"],
  6703.             npcID = 15956,
  6704.             Level = 999,
  6705.             DisplayIDs = {{15931}},
  6706.             AtlasMapBossID = "1",
  6707.             NameColor = BLUE,
  6708.             [NORMAL_DIFF] = {
  6709.                 { 1,  22726 }, -- Splinter of Atiesh
  6710.                 { 2,  22727 }, -- Frame of Atiesh
  6711.                 { 4,  22369 }, -- Desecrated Bindings
  6712.                 { 5,  22362 }, -- Desecrated Wristguards
  6713.                 { 6,  22355 }, -- Desecrated Bracers
  6714.                 { 8,  22935 }, -- Touch of Frost
  6715.                 { 9,  22938 }, -- Cryptfiend Silk Cloak
  6716.                 { 10, 22936 }, -- Wristguards of Vengeance
  6717.                 { 11, 22939 }, -- Band of Unanswered Prayers
  6718.                 { 12, 22937 }, -- Gem of Nerubis
  6719.             },
  6720.         },
  6721.         { -- NAXGrandWidowFaerlina
  6722.             name = AL["Grand Widow Faerlina"],
  6723.             npcID = 15953,
  6724.             Level = 999,
  6725.             DisplayIDs = {{15940}},
  6726.             AtlasMapBossID = "2",
  6727.             NameColor = BLUE,
  6728.             [NORMAL_DIFF] = {
  6729.                 { 1,  22726 }, -- Splinter of Atiesh
  6730.                 { 2,  22727 }, -- Frame of Atiesh
  6731.                 { 4,  22369 }, -- Desecrated Bindings
  6732.                 { 5,  22362 }, -- Desecrated Wristguards
  6733.                 { 6,  22355 }, -- Desecrated Bracers
  6734.                 { 8,  22943 }, -- Malice Stone Pendant
  6735.                 { 9,  22941 }, -- Polar Shoulder Pads
  6736.                 { 10, 22940 }, -- Icebane Pauldrons
  6737.                 { 11, 22942 }, -- The Widow's Embrace
  6738.                 { 12, 22806 }, -- Widow's Remorse
  6739.             },
  6740.         },
  6741.         { -- NAXMaexxna
  6742.             name = AL["Maexxna"],
  6743.             npcID = 15952,
  6744.             Level = 999,
  6745.             DisplayIDs = {{15928}},
  6746.             AtlasMapBossID = "3",
  6747.             NameColor = BLUE,
  6748.             [NORMAL_DIFF] = {
  6749.                 { 1,  22726 }, -- Splinter of Atiesh
  6750.                 { 2,  22727 }, -- Frame of Atiesh
  6751.                 { 4,  22371 }, -- Desecrated Gloves
  6752.                 { 5,  22364 }, -- Desecrated Handguards
  6753.                 { 6,  22357 }, -- Desecrated Gauntlets
  6754.                 { 8,  22947 }, -- Pendant of Forgotten Names
  6755.                 { 9,  23220 }, -- Crystal Webbed Robe
  6756.                 { 10, 22954 }, -- Kiss of the Spider
  6757.                 { 11, 22807 }, -- Wraith Blade
  6758.                 { 12, 22804 }, -- Maexxna's Fang
  6759.             },
  6760.         },
  6761.         -- The Plague Quarter
  6762.         { -- NAXNoththePlaguebringer
  6763.             name = AL["Noth the Plaguebringer"],
  6764.             npcID = 15954,
  6765.             Level = 999,
  6766.             DisplayIDs = {{16590}},
  6767.             AtlasMapBossID = "1",
  6768.             NameColor = PURP,
  6769.             [NORMAL_DIFF] = {
  6770.                 { 1,  22726 }, -- Splinter of Atiesh
  6771.                 { 2,  22727 }, -- Frame of Atiesh
  6772.                 { 4,  22370 }, -- Desecrated Belt
  6773.                 { 5,  22363 }, -- Desecrated Girdle
  6774.                 { 6,  22356 }, -- Desecrated Waistguard
  6775.                 { 8,  23030 }, -- Cloak of the Scourge
  6776.                 { 9,  23031 }, -- Band of the Inevitable
  6777.                 { 10, 23028 }, -- Hailstone Band
  6778.                 { 11, 23029 }, -- Noth's Frigid Heart
  6779.                 { 12, 23006 }, -- Libram of Light
  6780.                 { 13, 23005 }, -- Totem of Flowing Water
  6781.                 { 14, 22816 }, -- Hatchet of Sundered Bone
  6782.             },
  6783.         },
  6784.         { -- NAXHeigantheUnclean
  6785.             name = AL["Heigan the Unclean"],
  6786.             npcID = 15936,
  6787.             Level = 999,
  6788.             DisplayIDs = {{16309}},
  6789.             AtlasMapBossID = "2",
  6790.             NameColor = PURP,
  6791.             [NORMAL_DIFF] = {
  6792.                 { 1,  22726 }, -- Splinter of Atiesh
  6793.                 { 2,  22727 }, -- Frame of Atiesh
  6794.                 { 4,  22370 }, -- Desecrated Belt
  6795.                 { 5,  22363 }, -- Desecrated Girdle
  6796.                 { 6,  22356 }, -- Desecrated Waistguard
  6797.                 { 8,  23035 }, -- Preceptor's Hat
  6798.                 { 9,  23033 }, -- Icy Scale Coif
  6799.                 { 10, 23019 }, -- Icebane Helmet
  6800.                 { 11, 23036 }, -- Necklace of Necropsy
  6801.                 { 12, 23068 }, -- Legplates of Carnage
  6802.             },
  6803.         },
  6804.         { -- NAXLoatheb
  6805.             name = AL["Loatheb"],
  6806.             npcID = 16011,
  6807.             Level = 999,
  6808.             DisplayIDs = {{16110}},
  6809.             AtlasMapBossID = "3",
  6810.             NameColor = PURP,
  6811.             [NORMAL_DIFF] = {
  6812.                 { 1,  22726 }, -- Splinter of Atiesh
  6813.                 { 2,  22727 }, -- Frame of Atiesh
  6814.                 { 4,  22366 }, -- Desecrated Leggings
  6815.                 { 5,  22359 }, -- Desecrated Legguards
  6816.                 { 6,  22352 }, -- Desecrated Legplates
  6817.                 { 8,  23038 }, -- Band of Unnatural Forces
  6818.                 { 9,  23037 }, -- Ring of Spiritual Fervor
  6819.                 { 10, 23042 }, -- Loatheb's Reflection
  6820.                 { 11, 23039 }, -- The Eye of Nerub
  6821.                 { 12, 22800 }, -- Brimstone Staff
  6822.             },
  6823.         },
  6824.         -- The Military Quarter
  6825.         { -- NAXInstructorRazuvious
  6826.             name = AL["Instructor Razuvious"],
  6827.             npcID = 16061,
  6828.             Level = 999,
  6829.             DisplayIDs = {{16582}},
  6830.             AtlasMapBossID = "1",
  6831.             NameColor = _RED,
  6832.             [NORMAL_DIFF] = {
  6833.                 { 1,  22726 }, -- Splinter of Atiesh
  6834.                 { 2,  22727 }, -- Frame of Atiesh
  6835.                 { 4,  22372 }, -- Desecrated Sandals
  6836.                 { 5,  22365 }, -- Desecrated Boots
  6837.                 { 6,  22358 }, -- Desecrated Sabatons
  6838.                 { 8,  23017 }, -- Veil of Eclipse
  6839.                 { 9,  23219 }, -- Girdle of the Mentor
  6840.                 { 10, 23018 }, -- Signet of the Fallen Defender
  6841.                 { 11, 23004 }, -- Idol of Longevity
  6842.                 { 12, 23009 }, -- Wand of the Whispering Dead
  6843.                 { 13, 23014 }, -- Iblis, Blade of the Fallen Seraph
  6844.             },
  6845.         },
  6846.         { -- NAXGothiktheHarvester
  6847.             name = AL["Gothik the Harvester"],
  6848.             npcID = 16060,
  6849.             Level = 999,
  6850.             DisplayIDs = {{16279}},
  6851.             AtlasMapBossID = "2",
  6852.             NameColor = _RED,
  6853.             [NORMAL_DIFF] = {
  6854.                 { 1,  22726 }, -- Splinter of Atiesh
  6855.                 { 2,  22727 }, -- Frame of Atiesh
  6856.                 { 4,  22372 }, -- Desecrated Sandals
  6857.                 { 5,  22365 }, -- Desecrated Boots
  6858.                 { 6,  22358 }, -- Desecrated Sabatons
  6859.                 { 8,  23032 }, -- Glacial Headdress
  6860.                 { 9,  23020 }, -- Polar Helmet
  6861.                 { 10, 23023 }, -- Sadist's Collar
  6862.                 { 11, 23021 }, -- The Soul Harvester's Bindings
  6863.                 { 12, 23073 }, -- Boots of Displacement
  6864.             },
  6865.         },
  6866.         { -- NAXTheFourHorsemen
  6867.             name = AL["The Four Horsemen"],
  6868.             npcID = {16064, 16065, 16062, 16063},
  6869.             Level = 999,
  6870.             DisplayIDs = {{16155},{16153},{16139},{16154}},
  6871.             AtlasMapBossID = "3",
  6872.             NameColor = _RED,
  6873.             [NORMAL_DIFF] = {
  6874.                 { 1,  22726 }, -- Splinter of Atiesh
  6875.                 { 2,  22727 }, -- Frame of Atiesh
  6876.                 { 4,  22351 }, -- Desecrated Robe
  6877.                 { 5,  22350 }, -- Desecrated Tunic
  6878.                 { 6,  22349 }, -- Desecrated Breastplate
  6879.                 { 8,  23071 }, -- Leggings of Apocalypse
  6880.                 { 9,  23025 }, -- Seal of the Damned
  6881.                 { 10, 23027 }, -- Warmth of Forgiveness
  6882.                 { 11, 22811 }, -- Soulstring
  6883.                 { 12, 22809 }, -- Maul of the Redeemed Crusader
  6884.                 { 13, 22691 }, -- Corrupted Ashbringer
  6885.             },
  6886.         },
  6887.         -- The Construct Quarter
  6888.         { -- NAXPatchwerk
  6889.             name = AL["Patchwerk"],
  6890.             npcID = 16028,
  6891.             Level = 999,
  6892.             DisplayIDs = {{16174}},
  6893.             AtlasMapBossID = 1,
  6894.             [NORMAL_DIFF] = {
  6895.                 { 1,  22726 }, -- Splinter of Atiesh
  6896.                 { 2,  22727 }, -- Frame of Atiesh
  6897.                 { 4,  22368 }, -- Desecrated Shoulderpads
  6898.                 { 5,  22361 }, -- Desecrated Spaulders
  6899.                 { 6,  22354 }, -- Desecrated Pauldrons
  6900.                 { 8,  22960 }, -- Cloak of Suturing
  6901.                 { 9,  22961 }, -- Band of Reanimation
  6902.                 { 10, 22820 }, -- Wand of Fates
  6903.                 { 11, 22818 }, -- The Plague Bearer
  6904.                 { 12, 22815 }, -- Severance
  6905.             },
  6906.         },
  6907.         { -- NAXGrobbulus
  6908.             name = AL["Grobbulus"],
  6909.             npcID = 15931,
  6910.             Level = 999,
  6911.             DisplayIDs = {{16035}},
  6912.             AtlasMapBossID = 2,
  6913.             [NORMAL_DIFF] = {
  6914.                 { 1,  22726 }, -- Splinter of Atiesh
  6915.                 { 2,  22727 }, -- Frame of Atiesh
  6916.                 { 4,  22368 }, -- Desecrated Shoulderpads
  6917.                 { 5,  22361 }, -- Desecrated Spaulders
  6918.                 { 6,  22354 }, -- Desecrated Pauldrons
  6919.                 { 8,  22968 }, -- Glacial Mantle
  6920.                 { 9,  22967 }, -- Icy Scale Spaulders
  6921.                 { 10, 22810 }, -- Toxin Injector
  6922.                 { 11, 22803 }, -- Midnight Haze
  6923.                 { 12, 22988 }, -- The End of Dreams
  6924.             },
  6925.         },
  6926.         { -- NAXGluth
  6927.             name = AL["Gluth"],
  6928.             npcID = 15932,
  6929.             Level = 999,
  6930.             DisplayIDs = {{16064}},
  6931.             AtlasMapBossID = 3,
  6932.             [NORMAL_DIFF] = {
  6933.                 { 1,  22726 }, -- Splinter of Atiesh
  6934.                 { 2,  22727 }, -- Frame of Atiesh
  6935.                 { 4,  22983 }, -- Rime Covered Mantle
  6936.                 { 5,  22981 }, -- Gluth's Missing Collar
  6937.                 { 6,  22994 }, -- Digested Hand of Power
  6938.                 { 7,  23075 }, -- Death's Bargain
  6939.                 { 8,  22813 }, -- Claymore of Unholy Might
  6940.                 { 16, 22368 }, -- Desecrated Shoulderpads
  6941.                 { 17, 22369 }, -- Desecrated Bindings
  6942.                 { 18, 22370 }, -- Desecrated Belt
  6943.                 { 19, 22372 }, -- Desecrated Sandals
  6944.                 { 20, 22361 }, -- Desecrated Spaulders
  6945.                 { 21, 22362 }, -- Desecrated Wristguards
  6946.                 { 22, 22363 }, -- Desecrated Girdle
  6947.                 { 23, 22365 }, -- Desecrated Boots
  6948.                 { 24, 22354 }, -- Desecrated Pauldrons
  6949.                 { 25, 22355 }, -- Desecrated Bracers
  6950.                 { 26, 22356 }, -- Desecrated Waistguard
  6951.                 { 27, 22358 }, -- Desecrated Sabatons
  6952.             },
  6953.         },
  6954.         { -- NAXThaddius
  6955.             name = AL["Thaddius"],
  6956.             npcID = 15928,
  6957.             Level = 999,
  6958.             DisplayIDs = {{16137}},
  6959.             AtlasMapBossID = 4,
  6960.             [NORMAL_DIFF] = {
  6961.                 { 1,  22726 }, -- Splinter of Atiesh
  6962.                 { 2,  22727 }, -- Frame of Atiesh
  6963.                 { 4,  22367 }, -- Desecrated Circlet
  6964.                 { 5,  22360 }, -- Desecrated Headpiece
  6965.                 { 6,  22353 }, -- Desecrated Helmet
  6966.                 { 8,  23000 }, -- Plated Abomination Ribcage
  6967.                 { 9,  23070 }, -- Leggings of Polarity
  6968.                 { 10, 23001 }, -- Eye of Diminution
  6969.                 { 11, 22808 }, -- The Castigator
  6970.                 { 12, 22801 }, -- Spire of Twilight
  6971.             },
  6972.         },
  6973.         -- Frostwyrm Lair
  6974.         { -- NAXSapphiron
  6975.             name = AL["Sapphiron"],
  6976.             npcID = 15989,
  6977.             Level = 999,
  6978.             DisplayIDs = {{16033}},
  6979.             AtlasMapBossID = "1",
  6980.             NameColor = GREEN,
  6981.             [NORMAL_DIFF] = {
  6982.                 { 1,  23050 }, -- Cloak of the Necropolis
  6983.                 { 2,  23045 }, -- Shroud of Dominion
  6984.                 { 3,  23040 }, -- Glyph of Deflection
  6985.                 { 4,  23047 }, -- Eye of the Dead
  6986.                 { 5,  23041 }, -- Slayer's Crest
  6987.                 { 6,  23046 }, -- The Restrained Essence of Sapphiron
  6988.                 { 7,  23049 }, -- Sapphiron's Left Eye
  6989.                 { 8,  23048 }, -- Sapphiron's Right Eye
  6990.                 { 9,  23043 }, -- The Face of Death
  6991.                 { 10, 23242 }, -- Claw of the Frost Wyrm
  6992.                 { 16, 23549 }, -- Fortitude of the Scourge
  6993.                 { 17, 23548 }, -- Might of the Scourge
  6994.                 { 18, 23545 }, -- Power of the Scourge
  6995.                 { 19, 23547 }, -- Resilience of the Scourge
  6996.             },
  6997.         },
  6998.         { -- NAXKelThuzard
  6999.             name = AL["Kel'Thuzad"],
  7000.             npcID = 15990,
  7001.             Level = 999,
  7002.             DisplayIDs = {{15945}},
  7003.             AtlasMapBossID = "2",
  7004.             NameColor = GREEN,
  7005.             [NORMAL_DIFF] = {
  7006.                 { 1,  23057 }, -- Gem of Trapped Innocents
  7007.                 { 2,  23053 }, -- Stormrage's Talisman of Seething
  7008.                 { 3,  22812 }, -- Nerubian Slavemaker
  7009.                 { 4,  22821 }, -- Doomfinger
  7010.                 { 5,  22819 }, -- Shield of Condemnation
  7011.                 { 6,  22802 }, -- Kingsfall
  7012.                 { 7,  23056 }, -- Hammer of the Twisting Nether
  7013.                 { 8,  23054 }, -- Gressil, Dawn of Ruin
  7014.                 { 9,  23577 }, -- The Hungering Cold
  7015.                 { 10, 22798 }, -- Might of Menethil
  7016.                 { 11, 22799 }, -- Soulseeker
  7017.                 { 13, 22520 }, -- The Phylactery of Kel'Thuzad
  7018.                 { 16, 23061 }, -- Ring of Faith
  7019.                 { 17, 23062 }, -- Frostfire Ring
  7020.                 { 18, 23063 }, -- Plagueheart Ring
  7021.                 { 19, 23060 }, -- Bonescythe Ring
  7022.                 { 20, 23064 }, -- Ring of the Dreamwalker
  7023.                 { 21, 23067 }, -- Ring of the Cryptstalker
  7024.                 { 22, 23065 }, -- Ring of the Earthshatterer
  7025.                 { 23, 23066 }, -- Ring of Redemption
  7026.                 { 24, 23059 }, -- Ring of the Dreadnaught
  7027.                 { 26, 22733 }, -- Staff Head of Atiesh
  7028.             },
  7029.         },
  7030.         { -- NAXTrash
  7031.             name = AL["Trash"],
  7032.             ExtraList = true,
  7033.             [NORMAL_DIFF] = {
  7034.                 { 1,  23664 }, -- Pauldrons of Elemental Fury
  7035.                 { 2,  23667 }, -- Spaulders of the Grand Crusader
  7036.                 { 3,  23069 }, -- Necro-Knight's Garb
  7037.                 { 4,  23226 }, -- Ghoul Skin Tunic
  7038.                 { 5,  23663 }, -- Girdle of Elemental Fury
  7039.                 { 6,  23666 }, -- Belt of the Grand Crusader
  7040.                 { 7,  23665 }, -- Leggings of Elemental Fury
  7041.                 { 8,  23668 }, -- Leggings of the Grand Crusader
  7042.                 { 9,  23237 }, -- Ring of the Eternal Flame
  7043.                 { 10, 23238 }, -- Stygian Buckler
  7044.                 { 11, 23044 }, -- Harbinger of Doom
  7045.                 { 12, 23221 }, -- Misplaced Servo Arm
  7046.                 { 16, 22376 }, -- Wartorn Cloth Scrap
  7047.                 { 17, 22373 }, -- Wartorn Leather Scrap
  7048.                 { 18, 22374 }, -- Wartorn Chain Scrap
  7049.                 { 19, 22375 }, -- Wartorn Plate Scrap
  7050.                 { 21, 23055 }, -- Word of Thawing
  7051.                 { 22, 22682 }, -- Frozen Rune
  7052.             },
  7053.         },
  7054.         T3_SET,
  7055.     },
  7056. }
  7057. data["BlackfathomDeeps2"] = {
  7058.     MapID = 719,
  7059.     InstanceID = 48,
  7060.     AtlasModule = ATLAS_MODULE_NAME,
  7061.     AtlasMapID = "BlackfathomDeeps",
  7062.     AtlasMapFile = {"CL_BlackfathomDeepsA", "CL_BlackfathomDeepsEnt"},
  7063.     AtlasMapFile_AL = {"BlackfathomDeeps", "BlackfathomDeepsEnt"},
  7064.     ContentType = RAID_CONTENT,
  7065.     LevelRange = {25, 25, 25},
  7066.     items = {
  7067.         { -- BFDBaronAquanis
  7068.             name = AL["Baron Aquanis"],
  7069.             npcID = 202699,
  7070.             Level = GetForVersion(28,24),
  7071.             DisplayIDs = {{110}},
  7072.             [NORMAL_DIFF] = {
  7073.                 { 1,  204807 }, -- Fathomblade
  7074.                 { 3,  211852 }, -- Handwraps of Befouled Water
  7075.                 { 4,  209828 }, -- Sub-Zero Pauldrons
  7076.                 { 6,  209421 }, -- Cord of Aquanis
  7077.                 { 8,  209676 }, -- Shoulderguards of Crushing Depths
  7078.                 { 9,  204804 }, -- Hydraxian Bangles
  7079.                 { 16,  209590 }, -- Cracked Water Globe
  7080.                 { 18,  209422 }, -- High Tide Choker
  7081.                 { 19,  209825 }, -- Droplet Choker
  7082.                 { 21,  209423 }, -- Flowing Scarf
  7083.                 { 23,  209677 }, -- Loop of Swift Currents
  7084.         { 25,  211454 }, -- Strange Water Globe
  7085.             },
  7086.         },
  7087.         { -- BFDGhamoora
  7088.             name = AL["Ghamoo-ra"],
  7089.             npcID = 201722,
  7090.             Level = GetForVersion(25,23),
  7091.             DisplayIDs = {{5027}},
  7092.             [NORMAL_DIFF] = {
  7093.                 { 1,  209436 }, -- Chipped Bite of Serra'kis
  7094.                 { 2,  209830 }, -- Ironhide Arbalest
  7095.                 { 4,  209675 }, -- Clamweave Tunic
  7096.                 { 5,  209432 }, -- Ghamoo-ra's Cinch
  7097.                 { 7,  209524 }, -- Bindings of Serra'kis
  7098.                 { 8,  209678 }, -- Mantle of the Thresher Slayer
  7099.                 { 10,  209418 }, -- Adamantine Tortoise Armor
  7100.                 { 11,  209824 }, -- Shimmering Shoulderpads
  7101.                 { 16,  209523 }, -- Shimmering Thresher Cape
  7102.                 { 18,  209424 }, -- Shell Plate Barrier
  7103.             },
  7104.         },
  7105.         { -- BFDLadySarevess
  7106.             name = AL["Lady Sarevess"],
  7107.             npcID = 204068,
  7108.             Level = GetForVersion(25,23),
  7109.             DisplayIDs = {{4979}},
  7110.             [NORMAL_DIFF] = {
  7111.                 { 1,  209525 }, -- Honed Darkwater Talwar
  7112.                 { 2,  209564 }, -- Guardian's Trident
  7113.                 { 3,  209563 }, -- Naga Heartrender
  7114.                 { 4,  209822 }, -- Strength of Purpose
  7115.                 { 6,  211842 }, -- Rakkamar's Tattered Thinking Cap
  7116.                 { 7,  209679 }, -- Azshari Novice's Shoulderpads
  7117.                 { 9,  211789 }, -- Artemis Cowl
  7118.                 { 10,  209527 }, -- Naga Battle Gauntlets
  7119.                 { 12,  211843 }, -- Mask of Scorn        
  7120.                 { 13,  209566 }, -- Leggings of the Faithful
  7121.                 { 16,  209680 }, -- Waterproof Scarf
  7122.                 { 18,  209565 }, -- Band of Deep Places        
  7123.                 { 19,  209823 }, -- Signet of Beasts
  7124.             },
  7125.         },
  7126.         { -- BFDGelihast
  7127.             name = AL["Gelihast"],
  7128.             npcID = 204921,
  7129.             Level = GetForVersion(26,24),
  7130.             DisplayIDs = {{1773}},
  7131.             [NORMAL_DIFF] = {
  7132.                 { 1,  209567 }, -- Coral Reef Axe
  7133.                 { 2,  209559 }, -- Twilight Sage's Walking Stick
  7134.                 { 3,  209573 }, -- Wrathful Spire
  7135.                 { 4,  209571 }, -- Deadlight
  7136.                 { 5,  209670 }, -- Skinwalkers
  7137.                 { 6,  209572 }, -- Black Boiled Leathers
  7138.                 { 7,  209569 }, -- Murloc Hide Kneeboots        
  7139.                 { 8,  209568 }, -- Algae Gauntlets        
  7140.                 { 9,  209820 }, -- Black Shroud Choker
  7141.                 { 10,  209570 }, -- Tome of Cavern Lore
  7142.                 { 13,  209821 }, -- Ring of Shadowsight
  7143.                 { 14,  209681 }, -- Black Murloc Egg
  7144.                 { 15,  211491 }, -- Bottomless Murloc Skin Bag
  7145.                 { 16,  211505 }, -- Twilight Avenger's Helm
  7146.                 { 17,  211504 }, -- Twilight Avenger's Chain
  7147.                 { 18,  211506 }, -- Twilight Avenger's Boots
  7148.                 { 20,  211507 }, -- Twilight Elementalist's Cowl
  7149.                 { 21,  211509 }, -- Twilight Elementalist's Robe
  7150.                 { 22,  211508 }, -- Twilight Elementalist's Footpads
  7151.                 { 24,  211510 }, -- Twilight Slayer's Cowl
  7152.                 { 25,  211512 }, -- Twilight Slayer's Tunic
  7153.                 { 26,  211511 }, -- Twilight Slayer's Footpads
  7154.                 { 28,  209683 }, -- Twilight Invoker's Shawl
  7155.                 { 29,  209671 }, -- Twilight Invoker's Robes
  7156.                 { 30,  209669 }, -- Twilight Invoker's Shoes
  7157.             },
  7158.         },
  7159.         { -- BFDOldSerrakis
  7160.             name = AL["Lorgus Jett"],
  7161.             npcID = 207356,
  7162.             Level = GetForVersion(26,24),
  7163.             DisplayIDs = {{1816}},
  7164.             [NORMAL_DIFF] = {
  7165.                 { 1,  209577 }, -- Fist of the Wild
  7166.                 { 2,  209560 }, -- Hammer of Righteous Judgement
  7167.                 { 3,  209818 }, -- Sun-Touched Crescent
  7168.                 { 4,  209579 }, -- Crashing Thunder        
  7169.                 { 6,  209578 }, -- Glowing Leather Bands
  7170.                 { 7,  209682 }, -- Sturdy Hood
  7171.                 { 9,  209581 }, -- Silver Hand Sabatons
  7172.                 { 11,  209574 }, -- Discarded Tenets of the Silver Hand        
  7173.                 { 12,  209575 }, -- Carved Driftwood Icon
  7174.                 { 13,  209576 }, -- Mind-Expanding Mushroom        
  7175.                 { 16,  211505 }, -- Twilight Avenger's Helm
  7176.                 { 17,  211504 }, -- Twilight Avenger's Chain
  7177.                 { 18,  211506 }, -- Twilight Avenger's Boots
  7178.                 { 20,  211507 }, -- Twilight Elementalist's Cowl
  7179.                 { 21,  211509 }, -- Twilight Elementalist's Robe
  7180.                 { 22,  211508 }, -- Twilight Elementalist's Footpads
  7181.                 { 24,  211510 }, -- Twilight Slayer's Cowl
  7182.                 { 25,  211512 }, -- Twilight Slayer's Tunic
  7183.                 { 26,  211511 }, -- Twilight Slayer's Footpads
  7184.                 { 28,  209683 }, -- Twilight Invoker's Shawl
  7185.                 { 29,  209671 }, -- Twilight Invoker's Robes
  7186.                 { 30,  209669 }, -- Twilight Invoker's Shoes
  7187.  
  7188.             },
  7189.         },
  7190.         { -- BFDTwilightLordKelris
  7191.             name = AL["Twilight Lord Kelris"],
  7192.             npcID = 4832,
  7193.             Level = GetForVersion(27,24),
  7194.             DisplayIDs = {{4939}},
  7195.             AtlasMapFile = {"CL_BlackfathomDeepsB", "CL_BlackfathomDeepsEnt"},
  7196.             [NORMAL_DIFF] = {
  7197.                 { 1,  209561 }, -- Rod of the Ancient Sleepwalker
  7198.                 { 2,  209694 }, -- Blackfathom Ritual Dagger        
  7199.                 { 3,  209674 }, -- Phoenix Ignition
  7200.                 { 4,  209672 }, -- Black Fingerless Gloves
  7201.                 { 5,  209667 }, -- Gaze Dreamer Leggings
  7202.                 { 6,  211455 }, -- Slick Fingerless Gloves
  7203.                 { 7,  211457 }, -- Twilight Defender's Girdle
  7204.                 { 8,  209686 }, -- Jagged Bone Necklace
  7205.                 { 9,  209817 }, -- Voidwalker Brooch
  7206.                 { 10,  209673 }, -- Glowing Fetish Amulet
  7207.                 { 11,  209668 }, -- Signet of the Twilight Lord
  7208.                 { 12,  211458 }, -- Tome of Shadow Warding
  7209.                 { 13,  209816 }, -- Fetish of Mischief
  7210.                 { 15,  211492 }, -- Kelris's Satchel
  7211.                 { 16,  211505 }, -- Twilight Avenger's Helm
  7212.                 { 17,  211504 }, -- Twilight Avenger's Chain
  7213.                 { 18,  211506 }, -- Twilight Avenger's Boots
  7214.                 { 20,  211507 }, -- Twilight Elementalist's Cowl
  7215.                 { 21,  211509 }, -- Twilight Elementalist's Robe
  7216.                 { 22,  211508 }, -- Twilight Elementalist's Footpads
  7217.                 { 24,  211510 }, -- Twilight Slayer's Cowl
  7218.                 { 25,  211512 }, -- Twilight Slayer's Tunic
  7219.                 { 26,  211511 }, -- Twilight Slayer's Footpads
  7220.                 { 28,  209683 }, -- Twilight Invoker's Shawl
  7221.                 { 29,  209671 }, -- Twilight Invoker's Robes
  7222.                 { 30,  209669 }, -- Twilight Invoker's Shoes
  7223.             },
  7224.         },
  7225.        
  7226.         { -- BFDAkumai
  7227.             name = AL["Aku'mai"],
  7228.             npcID = 213334,
  7229.             Level = GetForVersion(28,24),
  7230.             DisplayIDs = {{2837}},
  7231.             AtlasMapFile = {"CL_BlackfathomDeepsB", "CL_BlackfathomDeepsEnt"},
  7232.             [NORMAL_DIFF] = {
  7233.                 { 1,  209562 }, -- Deadly Strike of the Hydra
  7234.                 { 2,  209534 }, -- Azshari Arbalest
  7235.                 { 3,  211456 }, -- Dagger of Willing Sacrifice
  7236.                 { 4,  209688 }, -- Bael Modan Blunderbuss        
  7237.                 { 5,  209691 }, -- Vampiric Boot Knife
  7238.                 { 6,  209580 }, -- Gusting Wind        
  7239.                 { 7,  209684 }, -- Soul Leech Pants
  7240.                 { 8,  209692 }, -- Sentinel Pauldrons
  7241.                 { 9,  209687 }, -- Hydra Hide Cuirass
  7242.                 { 10,  209685 }, -- Ancient Moss Cinch
  7243.                 { 11,  209690 }, -- Shadowscale Coif
  7244.                 { 12,  209689 }, -- Crabshell Waders
  7245.                 { 14,  209693 }, -- Perfect Blackfathom Pearl
  7246.                 { 15,  211452 }, -- Perfect Blackfathom Pearl
  7247.                 { 16,  211505 }, -- Twilight Avenger's Helm
  7248.                 { 17,  211504 }, -- Twilight Avenger's Chain
  7249.                 { 18,  211506 }, -- Twilight Avenger's Boots
  7250.                 { 20,  211507 }, -- Twilight Elementalist's Cowl
  7251.                 { 21,  211509 }, -- Twilight Elementalist's Robe
  7252.                 { 22,  211508 }, -- Twilight Elementalist's Footpads
  7253.                 { 24,  211510 }, -- Twilight Slayer's Cowl
  7254.                 { 25,  211512 }, -- Twilight Slayer's Tunic
  7255.                 { 26,  211511 }, -- Twilight Slayer's Footpads
  7256.                 { 28,  209683 }, -- Twilight Invoker's Shawl
  7257.                 { 29,  209671 }, -- Twilight Invoker's Robes
  7258.                 { 30,  209669 }, -- Twilight Invoker's Shoes
  7259.             },
  7260.         },
  7261.         { -- BFDTrash
  7262.             name = AL["Trash"],
  7263.             ExtraList = true,
  7264.             [NORMAL_DIFF] = {
  7265.                 { 1,  1486 }, -- Tree Bark Jacket
  7266.                 { 2,  3416 }, -- Martyr's Chain
  7267.                 { 3,  1491 }, -- Ring of Precision
  7268.                 { 4,  3414 }, -- Crested Scepter
  7269.                 { 5,  1454 }, -- Axe of the Enforcer
  7270.                 { 6,  1481 }, -- Grimclaw
  7271.                 { 7,  2567 }, -- Evocator's Blade
  7272.                 { 8,  3413 }, -- Doomspike
  7273.                 { 9,  3417 }, -- Onyx Claymore
  7274.                 { 10, 3415 }, -- Staff of the Friar
  7275.                 { 11, 2271 }, -- Staff of the Blessed Seer
  7276.             },
  7277.         },
  7278.     },
  7279. }
  7280. data["Gnomeregan2"] = {
  7281.     MapID = 721,
  7282.     InstanceID = 90,
  7283.     AtlasModule = ATLAS_MODULE_NAME,
  7284.     AtlasMapID = "Gnomeregan",
  7285.     AtlasMapFile = {"CL_Gnomeregan", "CL_GnomereganEnt"},
  7286.     AtlasMapFile_AL = {"Gnomeregan", "GnomereganEnt"},
  7287.     ContentType = RAID_CONTENT,
  7288.     LoadDifficulty = NORMAL_DIFF,
  7289.     LevelRange = {40, 40, 40},
  7290.     items = {
  7291.         { -- Grubbis
  7292.             name = AL["Grubbis"],
  7293.             npcID = 217280,
  7294.             Level = 40,
  7295.             DisplayIDs = {{117047}},
  7296.       AtlasMapBossID = 1,
  7297.             [NORMAL_DIFF] = {
  7298.         { 1,  213321 }, -- Volatile Concoction Belt
  7299.                 { 3,  213322 }, -- Skullduggery Waistband
  7300.                 { 4,  213323 }, -- Cord of Deep Earth
  7301.                 { 6,  213304 }, -- Troggslayer Pauldrons
  7302.                 { 7,  213324 }, -- Electromagnetic Waistcord
  7303.                 { 9,  213288 }, -- Grubbis Grubby Gauntlets
  7304.                 { 10,  213294 }, -- Caverndeep Sabatons
  7305.                 { 11,  213327 }, -- Belt of the Trogg Berserker            
  7306.                 { 12,  213326 }, -- Girdle of Reclamation
  7307.                 { 16,  213351 }, -- Irradiated Tower Shield
  7308.                 { 18,  213542 }, -- The Necro-Gnomicon
  7309.                 { 20,  215435 }, -- Libram of Benediction
  7310.                 { 21,  215436 }, -- Totem of Invigorating Flame
  7311.                 { 22,  216490 }, -- Idol of Wrath
  7312.                 { 24,  215437 }, -- Trogg Transfigurator 3000
  7313.             },
  7314.         },
  7315.         { -- GnViscousFallout
  7316.             name = AL["Viscous Fallout"],
  7317.             npcID = 220007,
  7318.             Level = GetForVersion(32,28),
  7319.             DisplayIDs = {{5497}},
  7320.       AtlasMapBossID = 2,
  7321.             [NORMAL_DIFF] = {
  7322.                 { 1,  213291 }, -- Toxic Revenger II
  7323.                 { 2,  213353 }, -- Defibrillating Staff
  7324.                 { 3,  213352 }, -- Gear-Mender's Grace
  7325.                 { 4,  213355 }, -- Falco's Sting
  7326.                 { 6,  213285 }, -- Lev's Oil-Stained Bindings
  7327.                 { 7,  213301 }, -- Synthetic Mantle
  7328.                 { 8,  213290 }, -- Acidic Waders
  7329.                 { 10,  213302 }, -- Mantle of the Cunning Negotiator
  7330.                 { 11,  213413 }, -- Generously Padded Shoulderpads
  7331.                 { 12,  213299 }, -- Petrolspill Pants
  7332.                 { 16,  213307 }, -- Drape of Dismantling
  7333.                 { 18,  213289 }, -- Hydrostaff
  7334.             },
  7335.         },
  7336.         { -- GnCrowdPummeler960
  7337.             name = AL["Crowd Pummeler 9-60"],
  7338.             npcID = 215728,
  7339.             Level = GetForVersion(32,28),
  7340.             DisplayIDs = {{6774}},
  7341.             AtlasMapBossID = 3,
  7342.             [NORMAL_DIFF] = {
  7343.                 { 1,  210741 }, -- Automatic Crowd Pummeler
  7344.                 { 2,  213295 }, -- Ultrasonic Vibroblade
  7345.                 { 3,  213408 }, -- Gyromatic Macro-Adjustor
  7346.                 { 4,  213442 }, -- Cogmaster's Claw
  7347.                 { 5,  213292 }, -- Gizmotron Gigachopper
  7348.                 { 7,  213415 }, -- Tinker's Wrist Wraps
  7349.                 { 9,  213278 }, -- Bonk-Maestro's Handguards
  7350.                 { 10,  213340 }, -- Gnomebot Operators Boots
  7351.                 { 12,  213317 }, -- Experimental Aim Stabilizers
  7352.                 { 14,  213305 }, -- Machined Alloy Shoulderplates
  7353.                 { 16,  213412 }, -- Dielectric Safety Shield
  7354.                 { 18,  213419 }, -- 9-60 Repair Manual
  7355.                 { 20,  215449 }, -- World Shrinker
  7356.             },
  7357.         },
  7358.         { -- GnElectrocutioner6000
  7359.             name = AL["Electrocutioner 6000"],
  7360.             npcID = 220072,
  7361.             Level = GetForVersion(30,28),
  7362.             DisplayIDs = {{118007}},
  7363.       AtlasMapBossID = 4,
  7364.             [NORMAL_DIFF] = {
  7365.                 { 1,  213286 }, -- Electrocutioner's Needle
  7366.                 { 2,  213560 }, -- Mechanostrider Muffler
  7367.                 { 3,  213354 }, -- Staff of the Evil Genius
  7368.                 { 4,  213293}, -- Hi-tech Supergun Mk.VII
  7369.                 { 5,  213559 }, -- Mechanostrider Gear Shifter
  7370.                 { 7,  215377 }, -- Irradiated Robe
  7371.                 { 8,  215379 }, -- Irradiated Trousers
  7372.                 { 9,  215378 }, -- Irradiated Boots        
  7373.                 { 10,  213300 }, -- Fighter Ace Gloves
  7374.                 { 11,  213298 }, -- Mechbuilder's Overalls
  7375.                 { 12,  213414 }, -- Mech-Mender's Sash
  7376.         { 14,  213319 }, -- Machinist's Gloves
  7377.                 { 16,  213279 }, -- Reflective Skullcap
  7378.                 { 18,  213418 }, -- Welded Truesilver Ringlets
  7379.                 { 20,  213309 }, -- Cloak of Invention
  7380.                 { 22,  213287 }, -- Electrocutioner Hexnut
  7381.                 { 24,  217008 }, -- Power Depleted Chest
  7382.                 { 25,  217009 }, -- Power Depleted Legs
  7383.                 { 26,  217007 }, -- Power Depleted Boots
  7384.                 { 28,  216494}, -- Aragriar's Whimsical World Warper
  7385.             },
  7386.         },
  7387.         { -- GnMechanicalMenagerie
  7388.             name = AL["The Mechanical Menagerie"],
  7389.             npcID = 218242,
  7390.             Level = GetForVersion(33,28),
  7391.             DisplayIDs = {{117365}},
  7392.       AtlasMapBossID = 5,
  7393.             [NORMAL_DIFF] = {
  7394.                 { 1,  213410 }, -- Glimmering Gizmoblade
  7395.                 { 2,  213296 }, -- Supercharged Headchopper
  7396.                 { 3,  213297 }, -- Oscillating Blasthammer
  7397.                 { 4,  213411 }, -- Izzleflick's Inextinguishable Igniter
  7398.                 { 6,  215378 }, -- Irradiated Boots
  7399.                 { 7,  215379 }, -- Irradiated Trousers
  7400.                 { 8,  215377 }, -- Irradiated Robe
  7401.                 { 10,  213318 }, -- Ornate Dark Iron Bangles
  7402.                 { 16,  215380 }, -- Power-Assisted Lifting Belt            
  7403.                 { 17,  213303 }, -- Lightning Rod Spaulders
  7404.                 { 18,  213320 }, -- Fingers of Arcane Accuracy        
  7405.                 { 19,  213280 }, -- Marksman's Scopevisor        
  7406.         { 20,  213325 }, -- Darkvision Girdle
  7407.                 { 22,  213417 }, -- Truesilver Filament Coif
  7408.                 { 24,  213306 }, -- Ingenuity's Cover
  7409.                 { 25,  213308 }, -- Prototype Parachute Cloak
  7410.                 { 27,  217008 }, -- Power Depleted Chest
  7411.                 { 28,  217009 }, -- Power Depleted Legs
  7412.                 { 29,  217007 }, -- Power Depleted Boots       
  7413.             },
  7414.         },
  7415.         { -- GnMekgineerThermaplugg
  7416.             name = AL["Mekgineer Thermaplugg"],
  7417.             npcID = 218537,
  7418.             Level = GetForVersion(34,28),
  7419.             DisplayIDs = {{117499}},
  7420.       AtlasMapBossID = 6,
  7421.             [NORMAL_DIFF] = {
  7422.                 { 1,  213416 }, -- Thermaplugg's Rocket Cleaver
  7423.                 { 2,  213409 }, -- Mekgatorque's Arcano-Shredder
  7424.                 { 3,  213356 }, -- Thermaplugg's Custom Blaster
  7425.                 { 5,  215379 }, -- Irradiated Trousers
  7426.                 { 6,  215377 }, -- Irradiated Robe
  7427.                 { 7,  215378 }, -- Irradiated Boots
  7428.                 { 8,  213281 }, -- Electromagnetic Hyperflux Reactivator
  7429.                 { 10,  217350 }, -- Thermaplugg's Engineering Notes
  7430.                 { 11,  217351 }, -- Thermaplugg's Engineering Notes
  7431.                 { 13,  213283 }, -- Hypercharged Gear of Conflagration
  7432.                 { 14,  213284 }, -- Hypercharged Gear of Devastation
  7433.                 { 15,  213282 }, -- Hypercharged Gear of Innovation
  7434.                 { 16,  213348 }, -- Gyromatic Experiment 420b
  7435.                 { 17,  213349 }, -- Gniodine Pill Bottle
  7436.                 { 18,  213350 }, -- Wirdal's Hardened Core
  7437.                 { 19,  213347 }, -- Miniaturized Combustion Chamber
  7438.                 { 20,  215461 }, -- Domesticated Attack Chicken
  7439.                 { 22,  217008 }, -- Power Depleted Chest
  7440.                 { 23,  217009 }, -- Power Depleted Legs
  7441.                 { 24,  217007 }, -- Power Depleted Boots
  7442.                 { 26,  216608 }, -- Radiant Ray Reflectors
  7443.                 { 27,  13325 }, -- Fluorescent Green Mechanostrider
  7444.             },
  7445.         },
  7446.         { -- GnTrash
  7447.             name = AL["Trash"],
  7448.             ExtraList = true,
  7449.             [NORMAL_DIFF] = {
  7450.                 { 1,  9508 }, -- Mechbuilder's Overalls
  7451.                 { 2,  9491 }, -- Hotshot Pilot's Gloves
  7452.                 { 3,  9509 }, -- Petrolspill Leggings
  7453.                 { 4,  9510 }, -- Caverndeep Trudgers
  7454.                 { 5,  9487 }, -- Hi-tech Supergun
  7455.                 { 6,  9485 }, -- Vibroblade
  7456.                 { 7,  9488 }, -- Oscillating Power Hammer
  7457.                 { 8,  9486 }, -- Supercharger Battle Axe
  7458.                 { 9,  9490 }, -- Gizmotron Megachopper
  7459.                 { 11, 9489 }, -- Gyromatic Icemaker
  7460.                 { 12, 11827 }, -- Schematic: Lil' Smoky
  7461.                 --{ 15, 11826 }, -- Lil' Smoky
  7462.                 { 16, 9327 }, -- Security DELTA Data Access Card
  7463.                 { 18, 7191 }, -- Fused Wiring
  7464.                 { 19, 9308 }, -- Grime-Encrusted Object
  7465.                 { 20, 9326 }, -- Grime-Encrusted Ring
  7466.                 { 22, 9279 }, -- White Punch Card
  7467.                 { 23, 9280 }, -- Yellow Punch Card
  7468.                 { 24, 9282 }, -- Blue Punch Card
  7469.                 { 25, 9281 }, -- Red Punch Card
  7470.                 { 26, 9316 }, -- Prismatic Punch Card
  7471.                 { 28, "INV_Box_01", nil, AL["SoD Only:"], nil },
  7472.                 { 29, 213427 }, -- Grime-Encrusted Salvage
  7473.             },
  7474.         },
  7475.  
  7476.     },
  7477. }
Add Comment
Please, Sign In to add comment