Added Guard Captain Gort

Added Guard Captain Gort https://database.turtle-wow.org/?npc=92935 to Kara Crypts
This commit is contained in:
Lexie
2022-09-03 19:42:10 +10:00
committed by GitHub
parent 148f94c80c
commit 0fbf3ba321
4 changed files with 16 additions and 2 deletions
+5 -2
View File
@@ -349,8 +349,10 @@ function AtlasLoot_OnVariablesLoaded()
--We also create a helper table here which store IDs that need to search for --We also create a helper table here which store IDs that need to search for
local idsToSearch = {}; local idsToSearch = {};
for i = 1, table.getn(AtlasLootCharDB["WishList"]) do for i = 1, table.getn(AtlasLootCharDB["WishList"]) do
if (AtlasLootCharDB["WishList"][i][1] > 0 and not AtlasLootCharDB["WishList"][i][5]) then if (type(AtlasLootCharDB["WishList"][i][1]) == "number") then
tinsert(idsToSearch, i, AtlasLootCharDB["WishList"][i][1]); if (AtlasLootCharDB["WishList"][i][1] > 0 and not AtlasLootCharDB["WishList"][i][5]) then
tinsert(idsToSearch, i, AtlasLootCharDB["WishList"][i][1]);
end
end end
end end
if table.getn(idsToSearch) > 0 then if table.getn(idsToSearch) > 0 then
@@ -2485,6 +2487,7 @@ AtlasLoot_DewDropDown_SubTables = {
{ AL["Marrowspike"], "KCMarrowspike" }, { AL["Marrowspike"], "KCMarrowspike" },
{ AL["Hivaxxis"], "KCHivaxxis" }, { AL["Hivaxxis"], "KCHivaxxis" },
{ AL["Corpsemuncher"], "KCCorpsemuncher" }, { AL["Corpsemuncher"], "KCCorpsemuncher" },
{ AL["Guard Captain Gort"], "KCGuardCaptainGort" },
{ AL["Archlich Enkhraz"], "KCArchlichEnkhraz" }, { AL["Archlich Enkhraz"], "KCArchlichEnkhraz" },
{ AL["Alarus"], "KCAlarus" }, { AL["Alarus"], "KCAlarus" },
}, },
+9
View File
@@ -633,6 +633,7 @@ AtlasLootBossButtons = {
"KCMarrowspike"; "KCMarrowspike";
"KCHivaxxis"; "KCHivaxxis";
"KCCorpsemuncher"; "KCCorpsemuncher";
"KCGuardCaptainGort";
"KCArchlichEnkhraz"; "KCArchlichEnkhraz";
"KCAlarus"; "KCAlarus";
}; };
@@ -2795,6 +2796,14 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 83463, "INV_gauntlets_23", "=q3=Rotworm Grips", "=ds=#s9#, #a2#", "18%" }, { 83463, "INV_gauntlets_23", "=q3=Rotworm Grips", "=ds=#s9#, #a2#", "18%" },
{ 83458, "INV_misc_organ_01", "=q3=Wormheart", "=ds=#s2#", "10%" }, { 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 = { KCArchlichEnkhraz = {
{ 83453, "INV_misc_book_09", "=q3=Tome of Shivering Secrets", "=ds=#h4#", "18%" }, { 83453, "INV_misc_book_09", "=q3=Tome of Shivering Secrets", "=ds=#h4#", "18%" },
{ 83454, "INV_pants_11", "=q3=Deathrune Leggings", "=ds=#s11#, #a2#", "18%" }, { 83454, "INV_pants_11", "=q3=Deathrune Leggings", "=ds=#s11#, #a2#", "18%" },
+1
View File
@@ -914,6 +914,7 @@ AL:RegisterTranslations("enUS", function() return {
["Marrowspike"] = true, ["Marrowspike"] = true,
["Hivaxxis"] = true, ["Hivaxxis"] = true,
["Corpsemuncher"] = true, ["Corpsemuncher"] = true,
["Guard Captain Gort"] = true,
["Archlich Enkhraz"] = true, ["Archlich Enkhraz"] = true,
["Alarus"] = true, ["Alarus"] = true,
["Caverns of Time: Black Morass"] = true, ["Caverns of Time: Black Morass"] = true,
+1
View File
@@ -371,6 +371,7 @@ AtlasLoot_TableNames = {
["KCMarrowspike"] = { AL["Marrowspike"], "AtlasLootItems" }, ["KCMarrowspike"] = { AL["Marrowspike"], "AtlasLootItems" },
["KCHivaxxis"] = { AL["Hivaxxis"], "AtlasLootItems" }, ["KCHivaxxis"] = { AL["Hivaxxis"], "AtlasLootItems" },
["KCCorpsemuncher"] = { AL["Corpsemuncher"], "AtlasLootItems" }, ["KCCorpsemuncher"] = { AL["Corpsemuncher"], "AtlasLootItems" },
["KCGuardCaptainGort"] = { AL["Guard Captain Gort"], "AtlasLootItems" },
["KCArchlichEnkhraz"] = { AL["Archlich Enkhraz"], "AtlasLootItems" }, ["KCArchlichEnkhraz"] = { AL["Archlich Enkhraz"], "AtlasLootItems" },
["KCAlarus"] = { AL["Alarus"], "AtlasLootItems" }, ["KCAlarus"] = { AL["Alarus"], "AtlasLootItems" },
-- Caverns of Time: Black Morass -- Caverns of Time: Black Morass