Added Guard Captain Gort
Added Guard Captain Gort https://database.turtle-wow.org/?npc=92935 to Kara Crypts
This commit is contained in:
+5
-2
@@ -349,8 +349,10 @@ function AtlasLoot_OnVariablesLoaded()
|
||||
--We also create a helper table here which store IDs that need to search for
|
||||
local idsToSearch = {};
|
||||
for i = 1, table.getn(AtlasLootCharDB["WishList"]) do
|
||||
if (AtlasLootCharDB["WishList"][i][1] > 0 and not AtlasLootCharDB["WishList"][i][5]) then
|
||||
tinsert(idsToSearch, i, AtlasLootCharDB["WishList"][i][1]);
|
||||
if (type(AtlasLootCharDB["WishList"][i][1]) == "number") then
|
||||
if (AtlasLootCharDB["WishList"][i][1] > 0 and not AtlasLootCharDB["WishList"][i][5]) then
|
||||
tinsert(idsToSearch, i, AtlasLootCharDB["WishList"][i][1]);
|
||||
end
|
||||
end
|
||||
end
|
||||
if table.getn(idsToSearch) > 0 then
|
||||
@@ -2485,6 +2487,7 @@ AtlasLoot_DewDropDown_SubTables = {
|
||||
{ AL["Marrowspike"], "KCMarrowspike" },
|
||||
{ AL["Hivaxxis"], "KCHivaxxis" },
|
||||
{ AL["Corpsemuncher"], "KCCorpsemuncher" },
|
||||
{ AL["Guard Captain Gort"], "KCGuardCaptainGort" },
|
||||
{ AL["Archlich Enkhraz"], "KCArchlichEnkhraz" },
|
||||
{ AL["Alarus"], "KCAlarus" },
|
||||
},
|
||||
|
||||
@@ -633,6 +633,7 @@ AtlasLootBossButtons = {
|
||||
"KCMarrowspike";
|
||||
"KCHivaxxis";
|
||||
"KCCorpsemuncher";
|
||||
"KCGuardCaptainGort";
|
||||
"KCArchlichEnkhraz";
|
||||
"KCAlarus";
|
||||
};
|
||||
@@ -2795,6 +2796,14 @@ AtlasLoot_Data["AtlasLootItems"] = {
|
||||
{ 83463, "INV_gauntlets_23", "=q3=Rotworm Grips", "=ds=#s9#, #a2#", "18%" },
|
||||
{ 83458, "INV_misc_organ_01", "=q3=Wormheart", "=ds=#s2#", "10%" },
|
||||
};
|
||||
KCGuardCaptainGort = {
|
||||
{ 60792, "inv_shoulder_22", "=q3=Pauldrons of Elusiveness", "=ds=#s3#, #a3#", "17%" },
|
||||
{ 60793, "inv_jewelry_ring_43", "=q3=Signet of Expertise", "=ds=#s13#", "17%" },
|
||||
{ 60794, "inv_chest_cloth_04", "=q3=Battle Bishop's Robe", "=ds=#s5#, #a1#", "17%" },
|
||||
{ 60795, "inv_bracer_09.png", "=q3=Naturalist Wristbands", "=ds=#s8#, #a2#", "17%" },
|
||||
{ 60790, "inv_jewelry_necklace_04", "=q3=Memento of the Lost", "=ds=#s2#", "17%" },
|
||||
{ 60791, "inv_gauntlets_31", "=q3=Skullcrushing Gauntlets", "=ds=#s9#, #a4#", "17%" },
|
||||
};
|
||||
KCArchlichEnkhraz = {
|
||||
{ 83453, "INV_misc_book_09", "=q3=Tome of Shivering Secrets", "=ds=#h4#", "18%" },
|
||||
{ 83454, "INV_pants_11", "=q3=Deathrune Leggings", "=ds=#s11#, #a2#", "18%" },
|
||||
|
||||
@@ -914,6 +914,7 @@ AL:RegisterTranslations("enUS", function() return {
|
||||
["Marrowspike"] = true,
|
||||
["Hivaxxis"] = true,
|
||||
["Corpsemuncher"] = true,
|
||||
["Guard Captain Gort"] = true,
|
||||
["Archlich Enkhraz"] = true,
|
||||
["Alarus"] = true,
|
||||
["Caverns of Time: Black Morass"] = true,
|
||||
|
||||
@@ -371,6 +371,7 @@ AtlasLoot_TableNames = {
|
||||
["KCMarrowspike"] = { AL["Marrowspike"], "AtlasLootItems" },
|
||||
["KCHivaxxis"] = { AL["Hivaxxis"], "AtlasLootItems" },
|
||||
["KCCorpsemuncher"] = { AL["Corpsemuncher"], "AtlasLootItems" },
|
||||
["KCGuardCaptainGort"] = { AL["Guard Captain Gort"], "AtlasLootItems" },
|
||||
["KCArchlichEnkhraz"] = { AL["Archlich Enkhraz"], "AtlasLootItems" },
|
||||
["KCAlarus"] = { AL["Alarus"], "AtlasLootItems" },
|
||||
-- Caverns of Time: Black Morass
|
||||
|
||||
Reference in New Issue
Block a user