kara40 sets, alt sets, jewelcrafting

This commit is contained in:
Spit
2024-11-04 13:30:53 +03:00
parent 8101523941
commit 680d612f4e
12 changed files with 5189 additions and 315 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
## Notes: Shows possible loot from dungeon bosses and other sources.
## Author: Shagu (pfUI update code), Lexie (Turtle WoW fixes/updates), Otari (overhaul/revamp, menu changes, bugfixes/updates)
## LegacyAuthor: Daviesh, Pompa (Turtle WoW World Bosses), Xerron (Turtle WoW World Bosses), Gurky (Turtle WoW 1.16/1.16.1 Dungeons)
## Version: 3.0.2
## Version: 3.0.3
## SavedVariables: AtlasLoot_updateavailable
## SavedVariablesPerCharacter: AtlasLootCharDB
## OptionalDeps: Alphamap, AtlasLoader, LootLink, ItemSync, HewdropLib, Ace2, EquipCompare, EQCompare
+30 -22
View File
@@ -79,7 +79,7 @@ local AL = AceLibrary("AceLocale-2.2"):new("AtlasLoot");
--Establish version number and compatible version of Atlas
local VERSION_MAJOR = "3";
local VERSION_MINOR = "0";
local VERSION_BOSSES = "2";
local VERSION_BOSSES = "3";
ATLASLOOT_VERSION = "|cffFF8400AtlasLoot TW Edition v"..VERSION_MAJOR.."."..VERSION_MINOR.."."..VERSION_BOSSES.."|r";
ATLASLOOT_CURRENT_ATLAS = "1.13.4";
ATLASLOOT_PREVIEW_ATLAS = "1.13.3";
@@ -187,6 +187,7 @@ AtlasLoot_MenuList = {
"SETMENU",
"AQ20SET",
"AQ40SET",
"KARASET",
"PRE60SET",
"ZGSET",
"T3SET",
@@ -205,7 +206,8 @@ AtlasLoot_MenuList = {
"TAILORINGMENU",
"CRAFTSET",
"COOKINGMENU",
"WORLDBOSSMENU"
"WORLDBOSSMENU",
"JEWELCRAFTMENU"
};
--entrance maps to instance maps NOT NEEDED FOR ATLAS 1.12
@@ -1173,6 +1175,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLootAQ40SetMenu();
elseif(dataID=="AQ20SET") then
AtlasLootAQ20SetMenu();
elseif(dataID=="KARASET") then
AtlasLoot_Kara40SetMenu();
elseif(dataID=="T3SET") then
AtlasLootT3SetMenu();
elseif(dataID=="T2SET") then
@@ -1225,6 +1229,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame)
AtlasLoot_DungeonsMenu1();
elseif(dataID=="DUNGEONSMENU2") then
AtlasLoot_DungeonsMenu2();
elseif(dataID=="JEWELCRAFTMENU") then
AtlasLoot_JewelcraftingMenu();
else
--Iterate through each item object and set its properties
for i = 1, 30, 1 do
@@ -2393,16 +2399,17 @@ AtlasLoot_HewdropDown = {
[2] = {{ AL["Zul'Gurub Sets"], "ZGSET", "Table" },},
[3] = {{ AL["Ruins of Ahn'Qiraj Sets"], "AQ20SET", "Table" },},
[4] = {{ AL["Temple of Ahn'Qiraj Sets"], "AQ40SET", "Table" },},
[5] = {{ AL["Dungeon 1/2 Sets"], "T0SET", "Table" },},
[6] = {{ AL["Tier 1 Sets"], "T1SET", "Table" },},
[7] = {{ AL["Tier 2 Sets"], "T2SET", "Table" },},
[8] = {{ AL["Tier 3 Sets"], "T3SET", "Table" },},
[9] = {{ AL["Legendary Items"], "Legendaries", "Table" },},
[10] = {{ AL["World Epics"], "WORLDEPICS", "Table" },},
[11] = {{ AL["Rare Pets"], "RarePets1", "Table" },},
[12] = {{ AL["Rare Mounts"], "RareMounts", "Table" },},
[13] = {{ AL["Fashion"], "DonationRewards2", "Table" },},
[14] = {{ AL["Tabards"], "Tabards", "Table" },},
[5] = {{ AL["Karazhan Sets"], "KARASET", "Table" },},
[6] = {{ AL["Dungeon 1/2 Sets"], "T0SET", "Table" },},
[7] = {{ AL["Tier 1 Sets"], "T1SET", "Table" },},
[8] = {{ AL["Tier 2 Sets"], "T2SET", "Table" },},
[9] = {{ AL["Tier 3 Sets"], "T3SET", "Table" },},
[10] = {{ AL["Legendary Items"], "Legendaries", "Table" },},
[11] = {{ AL["World Epics"], "WORLDEPICS", "Table" },},
[12] = {{ AL["Rare Pets"], "RarePets1", "Table" },},
[13] = {{ AL["Rare Mounts"], "RareMounts", "Table" },},
[14] = {{ AL["Fashion"], "DonationRewards2", "Table" },},
[15] = {{ AL["Tabards"], "Tabards", "Table" },},
--[15] = {{ AL["Old Mounts"], "OldMounts", "Table" },},
--[16] = {{ AL["Unobtainable Mounts"], "UnobMounts", "Table" },},
},
@@ -2464,15 +2471,16 @@ AtlasLoot_HewdropDown = {
[4] = { { (AL["Engineering"]), "ENGINEERINGMENU", "Table" }, },
[5] = { { (AL["Herbalism"]), "Herbalism1", "Table" }, },
[6] = { { (AL["Leatherworking"]), "LEATHERWORKINGMENU", "Table" }, },
[7] = { { (AL["Mining"]), "Mining1", "Table" }, },
[8] = { { (AL["Tailoring"]), "TAILORINGMENU", "Table" }, },
[9] = { { (AL["Cooking"]), "COOKINGMENU", "Table" }, },
[10] = { { (AL["First Aid"]), "FirstAid1", "Table" }, },
[11] = { { (AL["Survival"]), "Survival1", "Table" }, },
[12] = { { (AL["Gardening"]), "Survival2", "Table" }, },
[13] = { { (AL["Poisons"]), "Poisons1", "Table" }, },
[14] = { { AL["Crafted Sets"], "CRAFTSET", "Table" },},
[15] = { { AL["Crafted Epic Weapons"], "CraftedWeapons1", "Table" }, },
[7] = { { (AL["Jewelcrafting"]), "JEWELCRAFTMENU", "Table" }, },
[8] = { { (AL["Mining"]), "Mining1", "Table" }, },
[9] = { { (AL["Tailoring"]), "TAILORINGMENU", "Table" }, },
[10] = { { (AL["Cooking"]), "COOKINGMENU", "Table" }, },
[11] = { { (AL["First Aid"]), "FirstAid1", "Table" }, },
[12] = { { (AL["Survival"]), "Survival1", "Table" }, },
[13] = { { (AL["Gardening"]), "Survival2", "Table" }, },
[14] = { { (AL["Poisons"]), "Poisons1", "Table" }, },
[15] = { { AL["Crafted Sets"], "CRAFTSET", "Table" },},
[16] = { { AL["Crafted Epic Weapons"], "CraftedWeapons1", "Table" }, },
},
},
[8] = {{ "Rare Spawns", "RareSpawns", "Submenu" },},
@@ -2486,7 +2494,7 @@ AtlasLoot_HewdropDown_SubTables = {
{ AL["Engineer Figgles"], "HQEngineerFiggles" },
{ AL["Corrosis"], "HQCorrosis" },
{ AL["Hatereaver Annihilator"], "HQHatereaverAnnihilator" },
{ AL["Hargesh Doomcaller"], "HQHargeshDoomcaller" },
{ AL["Har'gesh Doomcaller"], "HQHargeshDoomcaller" },
{ AL["Trash Mobs"], "HQTrash" },
},
["BlackrockDepths"] = {
+224 -3
View File
@@ -49,14 +49,14 @@ AtlasLoot_ButtonRegistry = {
["HQHatereaverAnnihilator"] = {
Title = AL["Hatereaver Annihilator"];
Next_Page = "HQHargeshDoomcaller";
Next_Title = AL["Hargesh Doomcaller"];
Next_Title = AL["Har'gesh Doomcaller"];
Prev_Page = "HQCorrosis";
Prev_Title = AL["Corrosis"];
Back_Page = "DUNGEONSMENU1";
Back_Title = AL["Dungeons & Raids"];
};
["HQHargeshDoomcaller"] = {
Title = AL["Hargesh Doomcaller"];
Title = AL["Har'gesh Doomcaller"];
Next_Page = "HQTrash";
Next_Title = AL["Trash Mobs"];
Prev_Page = "HQHatereaverAnnihilator";
@@ -67,7 +67,7 @@ AtlasLoot_ButtonRegistry = {
["HQTrash"] = {
Title = AL["Trash Mobs"];
Prev_Page = "HQHargeshDoomcaller";
Prev_Title = AL["Hargesh Doomcaller"];
Prev_Title = AL["Har'gesh Doomcaller"];
Back_Page = "DUNGEONSMENU1";
Back_Title = AL["Dungeons & Raids"];
};
@@ -4521,6 +4521,51 @@ AtlasLoot_ButtonRegistry = {
Back_Page = "T3SET";
Back_Title = AL["Tier 3 Sets"];
};
["T35Druid"] = {
Title = AL["Druid"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["T35Hunter"] = {
Title = AL["Hunter"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["T35Mage"] = {
Title = AL["Mage"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["T35Paladin"] = {
Title = AL["Paladin"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["T35Priest"] = {
Title = AL["Priest"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["T35Rogue"] = {
Title = AL["Rogue"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["T35Shaman"] = {
Title = AL["Shaman"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["T35Warlock"] = {
Title = AL["Warlock"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["T35Warrior"] = {
Title = AL["Warrior"];
Back_Page = "KARASET";
Back_Title = AL["Karazhan"].." "..AL["Sets"];
};
["AQ40Druid"] = {
Title = AL["Druid"];
Back_Page = "AQ40SET";
@@ -5989,6 +6034,182 @@ AtlasLoot_ButtonRegistry = {
Prev_Page = "Elemental1";
Prev_Title = AL["Leatherworking"] .. ": " .. AL["Elemental Leatherworking"];
};
["JewelcraftingApprentice1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Apprentice"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Next_Page = "JewelcraftingJourneyman1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Journeyman"];
};
["JewelcraftingJourneyman1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Journeyman"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingApprentice1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Journeyman"];
Next_Page = "JewelcraftingJourneyman2";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Journeyman"];
};
["JewelcraftingJourneyman2"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Journeyman"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingJourneyman1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Journeyman"];
Next_Page = "JewelcraftingExpert1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Expert"];
};
["JewelcraftingExpert1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Expert"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingJourneyman2";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Journeyman"];
Next_Page = "JewelcraftingExpert2";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Expert"];
};
["JewelcraftingExpert2"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Expert"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingExpert1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Expert"];
Next_Page = "JewelcraftingExpert3";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Artisan"];
};
["JewelcraftingExpert3"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Expert"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingExpert2";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Expert"];
Next_Page = "JewelcraftingArtisan1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Artisan"];
};
["JewelcraftingArtisan1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Artisan"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingExpert3";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Expert"];
Next_Page = "JewelcraftingArtisan2";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Artisan"];
};
["JewelcraftingArtisan2"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Artisan"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingArtisan1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Artisan"];
Next_Page = "JewelcraftingGemstones1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Gemstones"];
};
["JewelcraftingGemstones1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Gemstones"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingArtisan2";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Artisan"];
Next_Page = "JewelcraftingRings1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Rings"];
};
["JewelcraftingRings1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Rings"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingGemstones1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Gemstones"];
Next_Page = "JewelcraftingRings2";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Rings"];
};
["JewelcraftingRings2"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Rings"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingRings1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Rings"];
Next_Page = "JewelcraftingAmulets1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Amulets"];
};
["JewelcraftingAmulets1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Amulets"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingRings2";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Rings"];
Next_Page = "JewelcraftingHelm1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Head"];
};
["JewelcraftingHelm1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Head"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingAmulets1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Amulets"];
Next_Page = "JewelcraftingBracers1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Bracers"];
};
["JewelcraftingBracers1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Bracers"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingHelm1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Head"];
Next_Page = "JewelcraftingOffHands1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Off-hand"];
};
["JewelcraftingOffHands1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Off-hand"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingBracers1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Bracers"];
Next_Page = "JewelcraftingStaves1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Staff"];
};
["JewelcraftingStaves1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Staff"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingOffHands1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Off-hand"];
Next_Page = "JewelcraftingTrinkets1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Trinkets"];
};
["JewelcraftingTrinkets1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Trinkets"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingStaves1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Staff"];
Next_Page = "JewelcraftingMisc1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Misc"];
};
["JewelcraftingMisc1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Misc"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingTrinkets1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Trinkets"];
Next_Page = "JewelcraftingGemology1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Gemology"];
};
["JewelcraftingGemology1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Gemology"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingMisc1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Misc"];
Next_Page = "JewelcraftingGoldsmithing1";
Next_Title = AL["Jewelcrafting"] .. ": " .. AL["Goldsmithing"];
};
["JewelcraftingGoldsmithing1"] = {
Title = AL["Jewelcrafting"] .. ": " .. AL["Goldsmithing"];
Back_Page = "JEWELCRAFTMENU";
Back_Title = AL["Jewelcrafting"];
Prev_Page = "JewelcraftingGemology1";
Prev_Title = AL["Jewelcrafting"] .. ": " .. AL["Gemology"];
};
["Herbalism1"] = {
Title = AL["Herbalism"];
Back_Page = "CRAFTINGMENU";
+180 -64
View File
@@ -19,40 +19,46 @@ function AtlasLoot_CraftingMenu()
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootServerQueryButton"):Hide();
--Alchemy
AtlasLootMenuItem_2_Name:SetText(AL["Alchemy"]);
AtlasLootMenuItem_2_Extra:SetText("");
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_2.lootpage="ALCHEMYMENU";
AtlasLootMenuItem_2:Show();
AtlasLootMenuItem_1_Name:SetText(AL["Alchemy"]);
AtlasLootMenuItem_1_Extra:SetText("");
AtlasLootMenuItem_1_Icon:SetTexture("Interface\\Icons\\Trade_Alchemy");
AtlasLootMenuItem_1.lootpage="ALCHEMYMENU";
AtlasLootMenuItem_1:Show();
--Enchanting
AtlasLootMenuItem_3_Name:SetText(AL["Enchanting"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_3.lootpage="ENCHANTINGMENU";
AtlasLootMenuItem_3:Show();
AtlasLootMenuItem_2_Name:SetText(AL["Enchanting"]);
AtlasLootMenuItem_2_Extra:SetText("");
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_2.lootpage="ENCHANTINGMENU";
AtlasLootMenuItem_2:Show();
--Engineering
AtlasLootMenuItem_4_Name:SetText(AL["Engineering"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_4.lootpage="ENGINEERINGMENU";
AtlasLootMenuItem_4:Show();
AtlasLootMenuItem_3_Name:SetText(AL["Engineering"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Trade_Engineering");
AtlasLootMenuItem_3.lootpage="ENGINEERINGMENU";
AtlasLootMenuItem_3:Show();
--Leatherworking
AtlasLootMenuItem_5_Name:SetText(AL["Leatherworking"]);
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_5.lootpage="LEATHERWORKINGMENU";
AtlasLootMenuItem_5:Show();
AtlasLootMenuItem_4_Name:SetText(AL["Leatherworking"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Misc_ArmorKit_17");
AtlasLootMenuItem_4.lootpage="LEATHERWORKINGMENU";
AtlasLootMenuItem_4:Show();
--Blacksmithing
AtlasLootMenuItem_6_Name:SetText(AL["Blacksmithing"]);
AtlasLootMenuItem_6_Extra:SetText("");
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_6.lootpage="SMITHINGMENU";
AtlasLootMenuItem_6:Show();
AtlasLootMenuItem_5_Name:SetText(AL["Blacksmithing"]);
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Trade_BlackSmithing");
AtlasLootMenuItem_5.lootpage="SMITHINGMENU";
AtlasLootMenuItem_5:Show();
--Tailoring
AtlasLootMenuItem_7_Name:SetText(AL["Tailoring"]);
AtlasLootMenuItem_6_Name:SetText(AL["Tailoring"]);
AtlasLootMenuItem_6_Extra:SetText("");
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_6.lootpage="TAILORINGMENU";
AtlasLootMenuItem_6:Show();
--Jewelcrafting
AtlasLootMenuItem_7_Name:SetText(AL["Jewelcrafting"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Trade_Tailoring");
AtlasLootMenuItem_7.lootpage="TAILORINGMENU";
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_7.lootpage="JEWELCRAFTMENU";
AtlasLootMenuItem_7:Show();
--Herbalism
AtlasLootMenuItem_8_Name:SetText(AL["Herbalism"]);
@@ -97,17 +103,17 @@ function AtlasLoot_CraftingMenu()
AtlasLootMenuItem_15.lootpage="Poisons1";
AtlasLootMenuItem_15:Show();
--Crafted Armor Sets
AtlasLootMenuItem_17_Name:SetText(AL["Crafted Sets"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Pants_Wolf");
AtlasLootMenuItem_17.lootpage="CRAFTSET";
AtlasLootMenuItem_17:Show();
AtlasLootMenuItem_16_Name:SetText(AL["Crafted Sets"]);
AtlasLootMenuItem_16_Extra:SetText("");
AtlasLootMenuItem_16_Icon:SetTexture("Interface\\Icons\\INV_Pants_Wolf");
AtlasLootMenuItem_16.lootpage="CRAFTSET";
AtlasLootMenuItem_16:Show();
--Crafted Epic Weapons
AtlasLootMenuItem_19_Name:SetText(AL["Crafted Epic Weapons"]);
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\INV_Hammer_Unique_Sulfuras");
AtlasLootMenuItem_19.lootpage="CraftedWeapons1";
AtlasLootMenuItem_19:Show();
AtlasLootMenuItem_18_Name:SetText(AL["Crafted Epic Weapons"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Hammer_Unique_Sulfuras");
AtlasLootMenuItem_18.lootpage="CraftedWeapons1";
AtlasLootMenuItem_18:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -512,35 +518,35 @@ function AtlasLoot_SmithingMenu()
AtlasLootMenuItem_22.lootpage="SmithingMisc1";
AtlasLootMenuItem_22:Show();
--Armorsmith
AtlasLootMenuItem_26_Name:SetText(AL["Blacksmithing"]..": "..AL["Armorsmith"]);
AtlasLootMenuItem_26_Extra:SetText("");
AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate04");
AtlasLootMenuItem_26.lootpage="Armorsmith1";
AtlasLootMenuItem_26:Show();
AtlasLootMenuItem_24_Name:SetText(AL["Armorsmith"]);
AtlasLootMenuItem_24_Extra:SetText("");
AtlasLootMenuItem_24_Icon:SetTexture("Interface\\Icons\\INV_Chest_Plate04");
AtlasLootMenuItem_24.lootpage="Armorsmith1";
AtlasLootMenuItem_24:Show();
--Weaponsmith
AtlasLootMenuItem_27_Name:SetText(AL["Blacksmithing"]..": "..AL["Weaponsmith"]);
AtlasLootMenuItem_27_Extra:SetText("");
AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Sword_25");
AtlasLootMenuItem_27.lootpage="Weaponsmith1";
AtlasLootMenuItem_27:Show();
AtlasLootMenuItem_25_Name:SetText(AL["Weaponsmith"]);
AtlasLootMenuItem_25_Extra:SetText("");
AtlasLootMenuItem_25_Icon:SetTexture("Interface\\Icons\\INV_Sword_25");
AtlasLootMenuItem_25.lootpage="Weaponsmith1";
AtlasLootMenuItem_25:Show();
--Master Axesmith
AtlasLootMenuItem_28_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Axesmith"]);
AtlasLootMenuItem_28_Extra:SetText("");
AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\INV_Axe_05");
AtlasLootMenuItem_28.lootpage="Axesmith1";
AtlasLootMenuItem_28:Show();
AtlasLootMenuItem_26_Name:SetText(AL["Master Axesmith"]);
AtlasLootMenuItem_26_Extra:SetText("");
AtlasLootMenuItem_26_Icon:SetTexture("Interface\\Icons\\INV_Axe_05");
AtlasLootMenuItem_26.lootpage="Axesmith1";
AtlasLootMenuItem_26:Show();
--Master Hammersmith
AtlasLootMenuItem_29_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Hammersmith"]);
AtlasLootMenuItem_29_Extra:SetText("");
AtlasLootMenuItem_29_Icon:SetTexture("Interface\\Icons\\INV_Hammer_23");
AtlasLootMenuItem_29.lootpage="Hammersmith1";
AtlasLootMenuItem_29:Show();
AtlasLootMenuItem_27_Name:SetText(AL["Master Hammersmith"]);
AtlasLootMenuItem_27_Extra:SetText("");
AtlasLootMenuItem_27_Icon:SetTexture("Interface\\Icons\\INV_Hammer_23");
AtlasLootMenuItem_27.lootpage="Hammersmith1";
AtlasLootMenuItem_27:Show();
--Master Swordsmith
AtlasLootMenuItem_30_Name:SetText(AL["Blacksmithing"]..": "..AL["Master Swordsmith"]);
AtlasLootMenuItem_30_Extra:SetText("");
AtlasLootMenuItem_30_Icon:SetTexture("Interface\\Icons\\INV_Sword_41");
AtlasLootMenuItem_30.lootpage="Swordsmith1";
AtlasLootMenuItem_30:Show();
AtlasLootMenuItem_28_Name:SetText(AL["Master Swordsmith"]);
AtlasLootMenuItem_28_Extra:SetText("");
AtlasLootMenuItem_28_Icon:SetTexture("Interface\\Icons\\INV_Sword_41");
AtlasLootMenuItem_28.lootpage="Swordsmith1";
AtlasLootMenuItem_28:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
@@ -598,7 +604,7 @@ function AtlasLoot_EnchantingMenu()
AtlasLootMenuItem_8.lootpage="EnchantingChest1";
AtlasLootMenuItem_8:Show();
--Enchanting Bracer
AtlasLootMenuItem_9_Name:SetText(AL["Enchanting"]..": "..AL["Bracer"]);
AtlasLootMenuItem_9_Name:SetText(AL["Enchanting"]..": "..AL["Bracers"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\Trade_Engraving");
AtlasLootMenuItem_9.lootpage="EnchantingBracer1";
@@ -1027,3 +1033,113 @@ function AtlasLoot_CookingMenu()
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Cooking"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
function AtlasLoot_JewelcraftingMenu()
for i = 1, 30, 1 do
getglobal("AtlasLootItem_"..i):Hide();
end
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
getglobal("AtlasLootItemsFrame_BACK"):Show();
getglobal("AtlasLootItemsFrame_BACK").lootpage = "CRAFTINGMENU";
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootServerQueryButton"):Hide();
--Apprentice
AtlasLootMenuItem_2_Name:SetText(AL["Jewelcrafting"]..": "..AL["Apprentice"]);
AtlasLootMenuItem_2_Extra:SetText("");
AtlasLootMenuItem_2_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_2.lootpage = "JewelcraftingApprentice1";
AtlasLootMenuItem_2:Show();
--Journeyman
AtlasLootMenuItem_3_Name:SetText(AL["Jewelcrafting"]..": "..AL["Journeyman"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_3.lootpage = "JewelcraftingJourneyman1";
AtlasLootMenuItem_3:Show();
--Expert
AtlasLootMenuItem_4_Name:SetText(AL["Jewelcrafting"]..": "..AL["Expert"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_4.lootpage="JewelcraftingExpert1";
AtlasLootMenuItem_4:Show();
--Artisan
AtlasLootMenuItem_5_Name:SetText(AL["Jewelcrafting"]..": "..AL["Artisan"]);
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_5.lootpage="JewelcraftingArtisan1";
AtlasLootMenuItem_5:Show();
--Gemstones
AtlasLootMenuItem_7_Name:SetText(AL["Jewelcrafting"]..": "..AL["Gemstones"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_7.lootpage="JewelcraftingGemstones1";
AtlasLootMenuItem_7:Show();
--Rings
AtlasLootMenuItem_8_Name:SetText(AL["Jewelcrafting"]..": "..AL["Rings"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_8.lootpage="JewelcraftingRings1";
AtlasLootMenuItem_8:Show();
--Amulets
AtlasLootMenuItem_9_Name:SetText(AL["Jewelcrafting"]..": "..AL["Amulets"]);
AtlasLootMenuItem_9_Extra:SetText("");
AtlasLootMenuItem_9_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_9.lootpage="JewelcraftingAmulets1";
AtlasLootMenuItem_9:Show();
--Head
AtlasLootMenuItem_10_Name:SetText(AL["Jewelcrafting"]..": "..AL["Head"]);
AtlasLootMenuItem_10_Extra:SetText("");
AtlasLootMenuItem_10_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_10.lootpage="JewelcraftingHelm1";
AtlasLootMenuItem_10:Show();
--Bracers
AtlasLootMenuItem_11_Name:SetText(AL["Jewelcrafting"]..": "..AL["Bracers"]);
AtlasLootMenuItem_11_Extra:SetText("");
AtlasLootMenuItem_11_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_11.lootpage="JewelcraftingBracers1";
AtlasLootMenuItem_11:Show();
--Offhands
AtlasLootMenuItem_12_Name:SetText(AL["Jewelcrafting"]..": "..AL["Off-hand"]);
AtlasLootMenuItem_12_Extra:SetText("");
AtlasLootMenuItem_12_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_12.lootpage="JewelcraftingOffHands1";
AtlasLootMenuItem_12:Show();
--Staves
AtlasLootMenuItem_13_Name:SetText(AL["Jewelcrafting"]..": "..AL["Staff"]);
AtlasLootMenuItem_13_Extra:SetText("");
AtlasLootMenuItem_13_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_13.lootpage="JewelcraftingStaves1";
AtlasLootMenuItem_13:Show();
--Trinkets
AtlasLootMenuItem_14_Name:SetText(AL["Jewelcrafting"]..": "..AL["Trinkets"]);
AtlasLootMenuItem_14_Extra:SetText("");
AtlasLootMenuItem_14_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_14.lootpage="JewelcraftingTrinkets1";
AtlasLootMenuItem_14:Show();
--Misc
AtlasLootMenuItem_15_Name:SetText(AL["Jewelcrafting"]..": "..AL["Misc"]);
AtlasLootMenuItem_15_Extra:SetText("");
AtlasLootMenuItem_15_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Necklace_01");
AtlasLootMenuItem_15.lootpage="JewelcraftingMisc1";
AtlasLootMenuItem_15:Show();
--Gemology
AtlasLootMenuItem_17_Name:SetText(AL["Jewelcrafting"]..": "..AL["Gemology"]);
AtlasLootMenuItem_17_Extra:SetText("");
AtlasLootMenuItem_17_Icon:SetTexture("Interface\\Icons\\INV_Misc_Gem_Variety_01");
AtlasLootMenuItem_17.lootpage="JewelcraftingGemology1";
AtlasLootMenuItem_17:Show();
--Goldsmithing
AtlasLootMenuItem_18_Name:SetText(AL["Jewelcrafting"]..": "..AL["Goldsmithing"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\INV_Jewelry_Ring_03");
AtlasLootMenuItem_18.lootpage="JewelcraftingGoldsmithing1";
AtlasLootMenuItem_18:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Jewelcrafting"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
+85 -5
View File
@@ -34,12 +34,18 @@ function AtlasLootSetMenu()
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\INV_Shoulder_35");
AtlasLootMenuItem_5.lootpage="AQ40SET";
AtlasLootMenuItem_5:Show();
--Karazhan
AtlasLootMenuItem_6_Name:SetText(AL["Karazhan"].." "..AL["Sets"]);
AtlasLootMenuItem_6_Extra:SetText("");
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\INV_Staff_Medivh");
AtlasLootMenuItem_6.lootpage="KARASET";
AtlasLootMenuItem_6:Show();
--Legendaries
AtlasLootMenuItem_7_Name:SetText(AL["Legendary Items"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\INV_Staff_Medivh");
AtlasLootMenuItem_7.lootpage="Legendaries";
AtlasLootMenuItem_7:Show();
AtlasLootMenuItem_8_Name:SetText(AL["Legendary Items"]);
AtlasLootMenuItem_8_Extra:SetText("");
AtlasLootMenuItem_8_Icon:SetTexture("Interface\\Icons\\INV_Hammer_Unique_Sulfuras");
AtlasLootMenuItem_8.lootpage="Legendaries";
AtlasLootMenuItem_8:Show();
--Artifacts
--[[
AtlasLootMenuItem_8_Name:SetText(AL["Artifact Items"]);
@@ -814,3 +820,77 @@ function AtlasLootT3SetMenu()
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Tier 3 Sets"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
function AtlasLoot_Kara40SetMenu()
for i = 1, 30, 1 do
getglobal("AtlasLootItem_"..i):Hide();
end
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i):Hide();
getglobal("AtlasLootMenuItem_"..i).isheader = false;
end
getglobal("AtlasLootItemsFrame_BACK"):Show();
getglobal("AtlasLootItemsFrame_BACK").lootpage = "SETMENU";
getglobal("AtlasLootItemsFrame_NEXT"):Hide();
getglobal("AtlasLootItemsFrame_PREV"):Hide();
getglobal("AtlasLootServerQueryButton"):Hide();
--Priest
AtlasLootMenuItem_3_Name:SetText("|cffffffff"..AL["Priest"]);
AtlasLootMenuItem_3_Extra:SetText("");
AtlasLootMenuItem_3_Icon:SetTexture("Interface\\Icons\\Spell_Holy_PowerWordShield");
AtlasLootMenuItem_3.lootpage="T35Priest";
AtlasLootMenuItem_3:Show();
--Mage
AtlasLootMenuItem_4_Name:SetText("|cff68ccef"..AL["Mage"]);
AtlasLootMenuItem_4_Extra:SetText("");
AtlasLootMenuItem_4_Icon:SetTexture("Interface\\Icons\\Spell_Frost_IceStorm");
AtlasLootMenuItem_4.lootpage="T35Mage";
AtlasLootMenuItem_4:Show();
--Warlock
AtlasLootMenuItem_5_Name:SetText("|cff9382c9"..AL["Warlock"]);
AtlasLootMenuItem_5_Extra:SetText("");
AtlasLootMenuItem_5_Icon:SetTexture("Interface\\Icons\\Spell_Shadow_CurseOfTounges");
AtlasLootMenuItem_5.lootpage="T35Warlock";
AtlasLootMenuItem_5:Show();
--Rogue
AtlasLootMenuItem_6_Name:SetText("|cfffff468"..AL["Rogue"]);
AtlasLootMenuItem_6_Extra:SetText("");
AtlasLootMenuItem_6_Icon:SetTexture("Interface\\Icons\\Ability_BackStab");
AtlasLootMenuItem_6.lootpage="T35Rogue";
AtlasLootMenuItem_6:Show();
--Druid
AtlasLootMenuItem_7_Name:SetText("|cffff7c0a"..AL["Druid"]);
AtlasLootMenuItem_7_Extra:SetText("");
AtlasLootMenuItem_7_Icon:SetTexture("Interface\\Icons\\Spell_Nature_Regeneration");
AtlasLootMenuItem_7.lootpage="T35Druid";
AtlasLootMenuItem_7:Show();
--Hunter
AtlasLootMenuItem_18_Name:SetText("|cffaad372"..AL["Hunter"]);
AtlasLootMenuItem_18_Extra:SetText("");
AtlasLootMenuItem_18_Icon:SetTexture("Interface\\Icons\\Ability_Hunter_RunningShot");
AtlasLootMenuItem_18.lootpage="T35Hunter";
AtlasLootMenuItem_18:Show();
--Shaman
AtlasLootMenuItem_19_Name:SetText("|cff2773ff"..AL["Shaman"]);
AtlasLootMenuItem_19_Extra:SetText("");
AtlasLootMenuItem_19_Icon:SetTexture("Interface\\Icons\\Spell_FireResistanceTotem_01");
AtlasLootMenuItem_19.lootpage="T35Shaman";
AtlasLootMenuItem_19:Show();
--Paladin
AtlasLootMenuItem_20_Name:SetText("|cfff48cba"..AL["Paladin"]);
AtlasLootMenuItem_20_Extra:SetText("");
AtlasLootMenuItem_20_Icon:SetTexture("Interface\\Icons\\Spell_Holy_SealOfMight");
AtlasLootMenuItem_20.lootpage="T35Paladin";
AtlasLootMenuItem_20:Show();
--Warrior
AtlasLootMenuItem_21_Name:SetText("|cffc69b6d"..AL["Warrior"]);
AtlasLootMenuItem_21_Extra:SetText("");
AtlasLootMenuItem_21_Icon:SetTexture("Interface\\Icons\\INV_Shield_05");
AtlasLootMenuItem_21.lootpage="T35Warrior";
AtlasLootMenuItem_21:Show();
for i = 1, 30, 1 do
getglobal("AtlasLootMenuItem_"..i.."_Extra"):Show();
end
AtlasLoot_BossName:SetText("|cffFFFFFF"..AL["Karazhan"].." "..AL["Sets"]);
AtlasLoot_SetItemInfoFrame(AtlasLoot_AnchorFrame);
end
+3391
View File
File diff suppressed because it is too large Load Diff
+57 -62
View File
@@ -1,14 +1,12 @@
-- extra info on GameTooltip and ItemRefTooltip
local AtlasLootTip = CreateFrame("Frame", "AtlasLootTip", GameTooltip)
local strfind = string.find
local tonumber = tonumber
local GREY = "|cff999999"
local LastSearchName = nil
local lastSearchName = nil
local lastSearchLink = nil
local function GetItemLinkByName(name)
if name ~= LastSearchName then
if name ~= lastSearchName then
for itemID = 1, 90000 do
local itemName, hyperLink, itemQuality = GetItemInfo(itemID)
if (itemName and itemName == name) then
@@ -16,7 +14,7 @@ local function GetItemLinkByName(name)
lastSearchLink = hex.. "|H"..hyperLink.."|h["..itemName.."]|h|r"
end
end
LastSearchName = name
lastSearchName = name
end
return lastSearchLink
end
@@ -52,15 +50,6 @@ function GameTooltip.SetBagItem(self, container, slot)
return HookSetBagItem(self, container, slot)
end
local HookSetLootItem = GameTooltip.SetLootItem
function GameTooltip.SetLootItem(self, slot)
if GetLootSlotLink(slot) then
local _, _, id = string.find(GetLootSlotLink(slot),"item:(%d+):.*")
GameTooltip.itemID = id
end
HookSetLootItem(self, slot)
end
local HookSetInboxItem = GameTooltip.SetInboxItem
function GameTooltip.SetInboxItem(self, mailID, attachmentIndex)
local itemName = GetInboxItem(mailID)
@@ -143,25 +132,18 @@ function GameTooltip.SetTradeTargetItem(self, index)
return HookSetTradeTargetItem(self, index)
end
local lastItemName = nil
local lastItemID = nil
local lastSourceStr = nil
local lastDropRate = nil
local lastItemName, lastItemID, lastSourceStr, lastDropRate
function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
if AtlasLootCharDB.ShowSource ~= true then return end
local originalTooltip = {}
local itemName = getglobal(tooltipTypeStr .. "TextLeft1"):GetText()
local line2 = getglobal(tooltipTypeStr .. "TextLeft2")
if not line2:GetText() then return end
local craftSpell = nil
local source = nil
local sourceStr = nil
local dropRate = nil
local craftSpell, source, sourceStr, dropRate
local isCraft = false
local isWBLoot = false
local isPvP = false
local isRepReward = false
local isSetPiece = false
local isWBLoot = false
local isWorldEvent = false
if itemName and itemName ~= "Fashion Coin" and tooltip.itemID then
if itemName ~= lastItemName or tooltip.itemID ~= lastItemID then
@@ -176,7 +158,7 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
end
end
for row=1, table.getn(originalTooltip) do
if strfind(originalTooltip[row].text, "",1,true) then -- skip items that state which rep they require
if string.find(originalTooltip[row].text, "",1,true) then -- skip items that state which rep they require
return
end
end
@@ -188,29 +170,31 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
end
for k1,v1 in pairs(AtlasLoot_Data["AtlasLootCrafting"]) do
for k2,v2 in pairs(AtlasLoot_Data["AtlasLootCrafting"][k1]) do
if type(v2[1]) == "string" and v2[1] ~= "" and string.sub(v2[1], 1, 1) ~= "e" then
if v2[1] == craftSpell
if v2[1] ~= 0 and v2[1] ~= "" and string.sub(v2[1], 1, 1) ~= "e" then
if (v2[1] == craftSpell or v2[1] == tonumber(tooltip.itemID))
and
(strfind(k1, "Apprentice",1,true) or
strfind(k1, "Journeyman",1,true) or
strfind(k1, "Expert",1,true) or
strfind(k1, "Artisan",1,true) or
strfind(k1, "Goblin",1,true) or
strfind(k1, "Gnomish",1,true) or
strfind(k1, "Survival",1,true) or
strfind(k1, "Herbalism",1,true) or
strfind(k1, "FirstAid",1,true) or
strfind(k1, "Poisons",1,true) or
strfind(k1, "Mining",1,true) or
strfind(k1, "Smelting",1,true) or
strfind(k1, "Elemental",1,true) or
strfind(k1, "Tribal",1,true) or
strfind(k1, "Dragonscale",1,true)or
strfind(k1, "Weaponsmith",1,true)or
strfind(k1, "Axesmith",1,true)or
strfind(k1, "Hammersmith",1,true)or
strfind(k1, "Swordsmith",1,true)or
strfind(k1, "Armorsmith",1,true))
(string.find(k1, "Apprentice",1,true) or
string.find(k1, "Journeyman",1,true) or
string.find(k1, "Expert",1,true) or
string.find(k1, "Artisan",1,true) or
string.find(k1, "Goblin",1,true) or
string.find(k1, "Gnomish",1,true) or
string.find(k1, "Survival",1,true) or
string.find(k1, "Herbalism",1,true) or
string.find(k1, "FirstAid",1,true) or
string.find(k1, "Poisons",1,true) or
string.find(k1, "Mining",1,true) or
string.find(k1, "Smelting",1,true) or
string.find(k1, "Elemental",1,true) or
string.find(k1, "Tribal",1,true) or
string.find(k1, "Dragonscale",1,true)or
string.find(k1, "Weaponsmith",1,true)or
string.find(k1, "Axesmith",1,true)or
string.find(k1, "Hammersmith",1,true)or
string.find(k1, "Swordsmith",1,true)or
string.find(k1, "Armorsmith",1,true)or
string.find(k1, "Gemology",1,true)or
string.find(k1, "Goldsmithing",1,true))
then
source = k1
isCraft = true
@@ -223,7 +207,7 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
if not isCraft then
for k1,v1 in pairs(AtlasLoot_Data["AtlasLootWBItems"]) do
for k2,v2 in pairs(AtlasLoot_Data["AtlasLootWBItems"][k1]) do
if v2[1] == tonumber(tooltip.itemID) and strfind(v2[3], itemName, 1, true) then
if v2[1] == tonumber(tooltip.itemID) and string.find(v2[3], itemName, 1, true) then
source = k1
isWBLoot = true
if v2[5] then
@@ -240,7 +224,7 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
if not isCraft and not isWBLoot then
for k1,v1 in pairs(AtlasLoot_Data["AtlasLootGeneralPvPItems"]) do
for k2,v2 in pairs(AtlasLoot_Data["AtlasLootGeneralPvPItems"][k1]) do
if v2[1] == tonumber(tooltip.itemID) and strfind(v2[3], itemName, 1, true) then
if v2[1] == tonumber(tooltip.itemID) and string.find(v2[3], itemName, 1, true) then
source = k1
isPvP = true
lastDropRate = nil
@@ -249,10 +233,11 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
end
end
-- check if its a rep reward
-- bgs
if not isCraft and not isWBLoot and not isPvP then
for k1,v1 in pairs(AtlasLoot_Data["AtlasLootBGItems"]) do
for k2,v2 in pairs(AtlasLoot_Data["AtlasLootBGItems"][k1]) do
if v2[1] == tonumber(tooltip.itemID) and strfind(v2[3], itemName, 1, true) then
if v2[1] == tonumber(tooltip.itemID) and string.find(v2[3], itemName, 1, true) then
source = k1
isRepReward = true
if v2[5] then
@@ -264,12 +249,13 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
end
end
end
-- factions
for k1,v1 in pairs(AtlasLoot_Data["AtlasLootRepItems"]) do
for k2,v2 in pairs(AtlasLoot_Data["AtlasLootRepItems"][k1]) do
if v2[1] == tonumber(tooltip.itemID) and strfind(v2[3], itemName, 1, true) then
if v2[1] == tonumber(tooltip.itemID) and string.find(v2[3], itemName, 1, true) then
source = k1
isRepReward = true
if v2[5] and source ~= "Darkmoon" and not strfind(source, "Cenarion",1,true) then
if v2[5] and source ~= "Darkmoon" and not string.find(source, "Cenarion",1,true) then
dropRate = v2[5]
lastDropRate = dropRate
else
@@ -283,9 +269,10 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
if not isCraft and not isWBLoot and not isPvP and not isRepReward then
for k1,v1 in pairs(AtlasLoot_Data["AtlasLootSetItems"]) do
for k2,v2 in pairs(AtlasLoot_Data["AtlasLootSetItems"][k1]) do
if v2[1] == tonumber(tooltip.itemID) and strfind(v2[3], itemName, 1, true) then
if v2[1] == tonumber(tooltip.itemID) and string.find(v2[3], itemName, 1, true) then
source = k1
if not (source == "SpiritofEskhandar" or
isSetPiece = true
if (source == "SpiritofEskhandar" or
source == "HakkariBlades" or
source == "PrimalBlessing" or
source == "ShardOfGods" or
@@ -295,8 +282,9 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
source == "Legendaries" or
source == "Artifacts" or
source == "ZGRings" or
source == "Tabards") then
isSetPiece = true
source == "Tabards" or string.find(source, "WorldEpics",1,true)) then
source = nil
isSetPiece = false
end
lastDropRate = nil
end
@@ -307,8 +295,11 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
if not isCraft and not isWBLoot and not isPvP and not isRepReward and not isSetPiece then
for k1,v1 in pairs(AtlasLoot_Data["AtlasLootWorldEvents"]) do
for k2,v2 in pairs(AtlasLoot_Data["AtlasLootWorldEvents"][k1]) do
if v2[1] == tonumber(tooltip.itemID) and strfind(v2[3], itemName, 1, true) then
if v2[1] == tonumber(tooltip.itemID) and string.find(v2[3], itemName, 1, true) then
source = k1
if source == "WintervielSnowball" and not (tonumber(tooltip.itemID) == 51249 or tonumber(tooltip.itemID) == 61089) then
return
end
isWorldEvent = true
if v2[5] then
dropRate = v2[5]
@@ -325,7 +316,7 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
for k1,v1 in pairs(AtlasLoot_Data["AtlasLootItems"]) do
for k2,v2 in pairs(AtlasLoot_Data["AtlasLootItems"][k1]) do
if v2[1] ~= 0 then
if v2[1] == tonumber(tooltip.itemID) and strfind(v2[3], itemName,1,true) then
if v2[1] == tonumber(tooltip.itemID) and string.find(v2[3], itemName,1,true) then
if k1 ~= "VanillaKeys" then
source = k1
end
@@ -380,11 +371,17 @@ function AtlasLootTip.extendTooltip(tooltip, tooltipTypeStr)
else
line2:SetText(GREY..lastSourceStr.."|r\n"..line2:GetText())
end
else
if lastDropRate then
tooltip:AddLine(GREY..lastSourceStr.." ("..lastDropRate..")|r")
else
tooltip:AddLine(GREY..lastSourceStr.."|r")
end
end
end
end
tooltip:Show()
end
tooltip:Show()
end
AtlasLootTip:SetScript("OnHide", function()
@@ -393,7 +390,5 @@ AtlasLootTip:SetScript("OnHide", function()
end)
AtlasLootTip:SetScript("OnShow", function()
if GameTooltip.itemID then
AtlasLootTip.extendTooltip(GameTooltip, "GameTooltip")
end
AtlasLootTip.extendTooltip(GameTooltip, "GameTooltip")
end)
+471 -2
View File
@@ -3434,7 +3434,7 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ 0, "", "", "" },
{ "s46075", "inv_misc_lantern_01", "=q2=Iron Lantern", "=ds=#sr# =so1=30 =so2=30 =so3=45 =so4=60" },
{ 0, "", "", "" },
{ "s46068", "inv_misc_bandage_07", "=q1=Cleaning Cloth", "=ds=#sr# =so1=50, =q6=Requires Rogue Poisons" },
{ "s46068", "inv_misc_bandage_07", "=q1=Cleaning Cloth", "=ds=#sr# =so1=50 =so2=? =so3=? =so4=?" },
{ "s46072", "Trade_Survival", "=q2=Traveler's Tent", "=ds=#sr# =so1=50 =so2=100 =so3=? =so4=?" },
{ 0, "", "", "" },
{ "s46074", "trade_herbalism", "=q2=Simple Woodern Planter", "=ds=#sr# =so1=75 =so2=100 =so3=112 =so4=125" },
@@ -3501,7 +3501,476 @@ AtlasLoot_Data["AtlasLootCrafting"] = {
{ "s65032", "spell_nature_nullifypoison", "=q1=Agitating Poison I", "=ds=#lr#=q1= 60 =ds=#sr# =so1=? =so2=? =so3=? =so4=?" },
{ 0, "", "", "" },
{ "s6510", "inv_misc_ammo_gunpowder_01", "=q1=Blinding Powder", "=ds=#lr#=q1= 34 =ds=#sr# =so1=1 =so2=170 =so3=195 =so4=220" },
{ "s46068", "inv_misc_bandage_07", "=q1=Cleaning Cloth", "=q6=Requires 50 Survival" },
};
-----------------
-- Jewelcrafting --
-----------------
JewelcraftingApprentice1 = {
{ "s29728", "INV_Misc_Bandage_08", "=q1=Rough Gritted Paper", "=ds=#sr# =so1=1 =so2=21 =so3=25 =so4=30" },
{ "s29730", "BTNCopperring01", "=q1=Rough Copper Ring", "=ds=#sr# =so1=1 =so2=21 =so3=30 =so4=40" },
{ "s29732", "INV_Bracer_03", "=q1=Copper Bangle", "=ds=#sr# =so1=1 =so2=21 =so3=33 =so4=45" },
{ "s41001", "INV_Jewelry_Ring_12", "=q2=Bright Copper Ring", "=ds=#sr# =so1=15 =so2=35 =so3=45 =so4=55" },
{ "s41003", "INV_Jewelry_Ring_18", "=q2=Malachite Ring", "=ds=#sr# =so1=20 =so2=40 =so3=47 =so4=55" },
{ "s41249", "INV_Jewelry_Ring_07", "=q2=Bulky Copper Ring", "=ds=#sr# =so1=25 =so2=25 =so3=45 =so4=65" },
{ "s41005", "INV_Jewelry_Ring_13", "=q2=Sturdy Copper Ring", "=ds=#sr# =so1=25 =so2=45 =so3=52 =so4=60" },
{ "s41031", "INV_Ore_Tin_01", "=q1=Rough Gemstone Cluster", "=ds=#sr# =so1=35 =so2=45 =so3=50 =so4=55" },
{ "s41007", "INV_Jewelry_Ring_06", "=q2=Inlaid Copper Ring", "=ds=#sr# =so1=35 =so2=55 =so3=62 =so4=70" },
{ "s41009", "INV_Staff_07", "=q1=Copper Staff", "=ds=#sr# =so1=45 =so2=60 =so3=67 =so4=75" },
{ "s41011", "INV_Bracer_09", "=q2=Encrusted Copper Bangle", "=ds=#sr# =so1=50 =so2=70 =so3=75 =so4=80" },
{ "s41013", "INV_Jewelry_Ring_19", "=q2=Lesser Fortification Ring", "=ds=#sr# =so1=50 =so2=70 =so3=77 =so4=85" },
{ "s41015", "INV_Jewelry_Ring_02", "=q2=Tigercrest Ring", "=ds=#sr# =so1=50 =so2=70 =so3=77 =so4=85" },
{ "s41231", "INV_Jewelry_Ring_27", "=q2=Minor Trollblood Ring", "=ds=#sr# =so1=50 =so2=70 =so3=80 =so4=90" },
{ "s41017", "INV_Staff_10", "=q2=Small Pearlstone Staff", "=ds=#sr# =so1=55 =so2=75 =so3=82 =so4=90" },
{ "s41019", "INV_Jewelry_Ring_03", "=q2=Amber Ring", "=ds=#sr# =so1=60 =so2=80 =so3=87 =so4=95" },
{ "s41021", "INV_Jewelry_Ring_07", "=q2=Azure Ring", "=ds=#sr# =so1=60 =so2=80 =so3=87 =so4=95" },
{ "s41023", "INV_Jewelry_Necklace_01", "=q2=Bright Copper Necklace", "=ds=#sr# =so1=65 =so2=85 =so3=92 =so4=100" },
{ "s41025", "INV_Jewelry_Ring_04", "=q2=Softglow Ring", "=ds=#sr# =so1=65 =so2=85 =so3=92 =so4=100" },
{ "s41027", "INV_Jewelry_Ring_33", "=q2=Topaz Studded Ring", "=ds=#sr# =so1=70 =so2=90 =so3=95 =so4=100" },
{ "s41029", "INV_Misc_Bandage_10", "=q1=Coarse Gritted Paper", "=ds=#sr# =so1=70 =so2=90 =so3=95 =so4=100" },
{ "s41560", "INV_Jewelry_Ring_03", "=q2=Ebon Ring", "=ds=#sr# =so1=75 =so2=95 =so3=105 =so4=115" },
{ "s41033", "INV_Jewelry_Necklace_08", "=q2=Lavish Gemmed Necklace", "=ds=#sr# =so1=80 =so2=100 =so3=110 =so4=120" },
};
JewelcraftingJourneyman1 = {
{ "s41321", "INV_Belt_32", "=q2=Gleaming Chain", "=ds=#sr# =so1=80 =so2=100 =so3=110 =so4=120" },
{ "s41035", "INV_Jewelry_Necklace_02", "=q2=Amberstone Pendant", "=ds=#sr# =so1=80 =so2=105 =so3=115 =so4=125" },
{ "s41587", "INV_Bracer_12", "=q2=Gloomweed Bindings", "=ds=#sr# =so1=80 =so2=160 =so3=170 =so4=180" },
{ "s41037", "INV_Jewelry_Necklace_16", "=q2=Deepmist Choker", "=ds=#sr# =so1=85 =so2=105 =so3=115 =so4=125" },
{ "s41562", "INV_Jewelry_Ring_05", "=q2=The King's Conviction", "=ds=#sr# =so1=85 =so2=105 =so3=115 =so4=125" },
{ "s41732", "INV_Misc_Orb_04", "=q2=Shadowmoon Orb", "=ds=#sr# =so1=85 =so2=105 =so3=115 =so4=125" },
{ "s41746", "INV_Misc_ShadowEgg", "=q2=Shadowforged Eye", "=ds=#sr# =so1=85 =so2=105 =so3=115 =so4=125" },
{ "s41039", "INV_Jewelry_Ring_26", "=q1=Rough Bronze Ring", "=ds=#sr# =so1=90 =so2=100 =so3=107 =so4=115" },
{ "s41041", "INV_Jewelry_Ring_22", "=q2=Shimmering Bronze Ring", "=ds=#sr# =so1=90 =so2=105 =so3=112 =so4=120" },
{ "s41043", "INV_Misc_Orb_01", "=q2=Amber Orb", "=ds=#sr# =so1=95 =so2=110 =so3=120 =so4=130" },
{ "s41045", "INV_Staff_08", "=q2=Encrusted Bronze Staff", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" },
{ "s41047", "INV_Jewelry_Ring_01", "=q2=Earthrock Loop", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" },
{ "s41564", "INV_Jewelry_Ring_16", "=q2=Shadowfall Jewel", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" },
{ "s41581", "INV_Staff_13", "=q2=Serpent's Coil Staff", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" },
{ "s41323", "INV_Jewelry_Necklace_22", "=q2=Talisman of Stone", "=ds=#sr# =so1=100 =so2=125 =so3=135 =so4=145" },
{ "s41049", "INV_Bracer_01", "=q1=Bronze Cuffed Bangles", "=ds=#sr# =so1=105 =so2=120 =so3=132 =so4=145" },
{ "s41051", "INV_Belt_29", "=q2=Shadowgem Band", "=ds=#sr# =so1=105 =so2=125 =so3=135 =so4=145" },
{ "s41726", "INV_Bracer_19", "=q2=Hydrathorn Bracers", "=ds=#sr# =so1=105 =so2=125 =so3=135 =so4=145" },
{ "s41740", "INV_Crown_01", "=q2=Mistwood Tiara", "=ds=#sr# =so1=105 =so2=135 =so3=145 =so4=155" },
{ "s41053", "INV_Mace_08", "=q2=Bronze Scepter", "=ds=#sr# =so1=110 =so2=130 =so3=140 =so4=150" },
{ "s41325", "INV_Jewelry_Necklace_15", "=q2=Medallion of Flame", "=ds=#sr# =so1=110 =so2=130 =so3=140 =so4=150" },
{ "s41566", "INV_Jewelry_Ring_22", "=q2=Ocean's Wrath", "=ds=#sr# =so1=115 =so2=120 =so3=130 =so4=140" },
{ "s41337", "INV_Bracer_19", "=q2=Dawnbright Cuffs", "=ds=#sr# =so1=115 =so2=135 =so3=142 =so4=150" },
{ "s41734", "INV_Misc_Gem_Pearl_02", "=q3=Fangclaw Relic", "=ds=#sr# =so1=120 =so2=140 =so3=150 =so4=160" },
{ "s41055", "BTNBlackPendant", "=q2=Pendant of Midnight", "=ds=#sr# =so1=120 =so2=145 =so3=155 =so4=165" },
{ "s41067", "INV_Jewelry_Ring_01", "=q1=Rough Silver Ring", "=ds=#sr# =so1=125 =so2=135 =so3=145 =so4=155" },
{ "s41065", "INV_Stone_08", "=q1=Coarse Gemstone Cluster", "=ds=#sr# =so1=125 =so2=140 =so3=142 =so4=145" },
{ "s41057", "INV_Crown_01", "=q2=Agatestone Crown", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" },
{ "s41061", "INV_Belt_31", "=q2=Binding Signet", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" },
};
JewelcraftingJourneyman2 = {
{ "s41063", "INV_Bracer_14", "=q2=Enchanted Bracelets", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" },
{ "s41776", "INV_Jewelry_Ring_24", "=q2=Ring of Midnight", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" },
{ "s41059", "INV_Staff_15", "=q2=Moonlight Staff", "=ds=#sr# =so1=125 =so2=150 =so3=160 =so4=170" },
{ "s41568", "INV_Jewelry_Ring_10", "=q2=Dazzling Moonstone Band", "=ds=#sr# =so1=130 =so2=150 =so3=160 =so4=170" },
{ "s41760", "INV_Misc_Gem_Emerald_02", "=q2=Graceful Agate Gemstone", "=ds=#sr# =so1=135 =so2=135 =so3=137 =so4=140" },
{ "s41069", "INV_Jewelry_Talisman_06", "=q2=Silver Medallion", "=ds=#sr# =so1=135 =so2=150 =so3=160 =so4=170" },
{ "s41071", "BTNLancelot_Ring", "=q3=Ring of Purified Silver", "=ds=#sr# =so1=135 =so2=155 =so3=165 =so4=175" },
{ "s41327", "INV_Jewelry_Necklace_07", "=q2=Gleaming Silver Necklace", "=ds=#sr# =so1=135 =so2=155 =so3=165 =so4=175" },
{ "s41339", "INV_Crown_02", "=q2=Circlet of Dampening", "=ds=#sr# =so1=135 =so2=155 =so3=165 =so4=175" },
{ "s41748", "INV_QirajIdol_Life", "=q3=Totem of Self Preservation", "=ds=#sr# =so1=135 =so2=155 =so3=165 =so4=175" },
{ "s41583", "INV_Staff_18", "=q3=Farraki Ceremony Totem", "=ds=#sr# =so1=140 =so2=160 =so3=170 =so4=180" },
{ "s41728", "INV_Bracer_09", "=q3=Blackrock Ironclamps", "=ds=#sr# =so1=140 =so2=160 =so3=170 =so4=180" },
{ "s41570", "INV_Jewelry_Ring_26", "=q2=Harpy Talon Ring", "=ds=#sr# =so1=145 =so2=165 =so3=175 =so4=185" },
{ "s41742", "INV_Crown_01", "=q3=Venomspire Diadem", "=ds=#sr# =so1=145 =so2=165 =so3=175 =so4=185" },
{ "s41201", "INV_Misc_Bandage_18", "=q1=Heavy Gritted Paper", "=ds=#sr# =so1=150 =so2=150 =so3=155 =so4=160" },
{ "s41203", "INV_Stone_13", "=q1=Heavy Gemstone Cluster", "=ds=#sr# =so1=150 =so2=150 =so3=152 =so4=155" },
{ "s41627", "INV_Misc_Gem_Diamond_02", "=q2=Pristine Crystal Gemstone", "=ds=#sr# =so1=150 =so2=155 =so3=157 =so4=160" },
{ "s41607", "INV_Misc_Gem_Crystal_02", "=q2=Shimmering Aqua Gemstone", "=ds=#sr# =so1=150 =so2=155 =so3=157 =so4=160" },
{ "s41081", "INV_Jewelry_Ring_27", "=q1=Rough Iron Ring", "=ds=#sr# =so1=150 =so2=165 =so3=170 =so4=175" },
{ "s41083", "INV_Jewelry_Ring_03", "=q1=Rough Gold Ring", "=ds=#sr# =so1=150 =so2=165 =so3=170 =so4=175" },
};
JewelcraftingExpert1 = {
{ "s41205", "INV_Bracer_10", "=q2=Goldfire Crystal Bracelet", "=ds=#sr# =so1=155 =so2=155 =so3=160 =so4=165" },
{ "s41207", "INV_Jewelry_Ring_31", "=q2=Quartz Halo", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" },
{ "s41275", "INV_Jewelry_Necklace_06", "=q3=Gemmed Citrine Pendant", "=ds=#sr# =so1=160 =so2=160 =so3=180 =so4=200" },
{ "s41572", "INV_Jewelry_Ring_47", "=q2=Centaur Hoof Circlet", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
{ "s41331", "INV_Jewelry_Amulet_05", "=q2=Gem Encrusted Choker", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
{ "s41736", "INV_Wand_05", "=q2=Netherbane Rod", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
{ "s41329", "BTNTurtlePendant", "=q2=Ring of The Turtle", "=ds=#sr# =so1=160 =so2=185 =so3=195 =so4=205" },
{ "s41283", "BTNEnchantedNecklace", "=q2=Astral Amulet", "=ds=#sr# =so1=??? =so2=175 =so3=192 =so4=210" },
{ "s41209", "INV_Wand_04", "=q2=Staff of Blossomed Jade", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" },
{ "s41333", "INV_Jewelry_Amulet_03", "=q2=Goldcrest Amulet", "=ds=#sr# =so1=170 =so2=180 =so3=190 =so4=200" },
{ "s41730", "INV_Bracer_09", "=q2=Monastery Emberbrace", "=ds=#sr# =so1=170 =so2=185 =so3=195 =so4=205" },
{ "s41211", "INV_Jewelry_Ring_12", "=q2=Jade Harmony Circlet", "=ds=#sr# =so1=170 =so2=190 =so3=197 =so4=205" },
{ "s41585", "INV_Staff_12", "=q2=Sphinx's Wisdom Staff", "=ds=#sr# =so1=170 =so2=190 =so3=200 =so4=210" },
{ "s41574", "INV_Jewelry_Ring_32", "=q3=Ogre Bone Band", "=ds=#sr# =so1=170 =so2=200 =so3=210 =so4=220" },
{ "s41219", "INV_Jewelry_Ring_12", "=q1=Rough Mithril Ring", "=ds=#sr# =so1=175 =so2=175 =so3=177 =so4=180" },
{ "s41629", "INV_Misc_Gem_Stone_01", "=q2=Gleaming Jade Gemstone", "=ds=#sr# =so1=175 =so2=180 =so3=182 =so4=185" },
{ "s41623", "INV_Misc_Gem_Crystal_03", "=q2=Pure Shining Moonstone", "=ds=#sr# =so1=175 =so2=180 =so3=182 =so4=185" },
{ "s41752", "INV_Misc_Gem_Pearl_01", "=q2=Obsidian Brooch", "=ds=#sr# =so1=175 =so2=190 =so3=197 =so4=205" },
{ "s41213", "INV_Helmet_19", "=q2=Goldenshade Quartz Crown", "=ds=#sr# =so1=175 =so2=195 =so3=202 =so4=210" },
{ "s41215", "BTNHL_Holy_Grail", "=q2=The Golden Goblet", "=ds=#sr# =so1=175 =so2=195 =so3=202 =so4=210" },
{ "s41217", "INV_Jewelry_Necklace_06", "=q3=Powerful Citrine Pendant", "=ds=#sr# =so1=175 =so2=195 =so3=202 =so4=210" },
{ "s41556", "INV_Jewelry_Talisman_10", "=q2=Delicate Mithril Amulet", "=ds=#sr# =so1=180 =so2=200 =so3=210 =so4=220" },
{ "s41221", "INV_Jewelry_Ring_22", "=q2=Ironsun Citrine Ring", "=ds=#sr# =so1=185 =so2=200 =so3=210 =so4=220" },
{ "s41750", "INV_Misc_Gem_Pearl_06", "=q2=Facetted Moonstone Brooch", "=ds=#sr# =so1=185 =so2=200 =so3=207 =so4=215" },
{ "s41589", "INV_Jewelry_Ring_07", "=q2=Crystal Earring", "=ds=#sr# =so1=185 =so2=205 =so3=215 =so4=225" },
{ "s41263", "INV_Jewelry_Ring_29", "=q2=Ocean's Gaze", "=ds=#sr# =so1=190 =so2=190 =so3=210 =so4=230" },
{ "s41223", "INV_Belt_19", "=q2=Shimmering Gold Necklace", "=ds=#sr# =so1=190 =so2=205 =so3=215 =so4=225" },
{ "s41225", "INV_Jewelry_Ring_20", "=q2=Ironbloom Ring", "=ds=#sr# =so1=190 =so2=205 =so3=215 =so4=225" },
{ "s41541", "INV_Jewelry_Ring_28", "=q2=Dazzling Aquamarine Loop", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
{ "s41579", "INV_Jewelry_Ring_12", "=q2=Marine's Demise", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
};
JewelcraftingExpert2 = {
{ "s41285", "INV_Ingot_08", "=q2=Shimmering Moonstone Tablet", "=ds=#sr# =so1=195 =so2=195 =so3=217 =so4=240" },
{ "s41229", "INV_Misc_Bandage_17", "=q1=Solid Gritted Paper", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
{ "s41233", "INV_Jewelry_Ring_07", "=q1=Rough Truesilver Ring", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
{ "s41237", "INV_Stone_07", "=q1=Solid Gemstone Cluster", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
{ "s41601", "INV_Misc_Gem_Opal_02", "=q2=Sharpened Citrine Gemstone", "=ds=#sr# =so1=200 =so2=205 =so3=207 =so4=210" },
{ "s41603", "INV_Misc_Gem_Ruby_01", "=q2=Radiant Ember Gemstone", "=ds=#sr# =so1=200 =so2=205 =so3=207 =so4=210" },
{ "s41605", "INV_Misc_Gem_Ruby_02", "=q2=Glowing Ruby Gemstone", "=ds=#sr# =so1=200 =so2=205 =so3=207 =so4=210" },
{ "s41631", "INV_Misc_Gem_Crystal_03", "=q2=Illuminated Gemstone", "=ds=#sr# =so1=200 =so2=205 =so3=205 =so4=205" },
{ "s41738", "INV_Misc_Orb_01", "=q2=Marine Root", "=ds=#sr# =so1=200 =so2=215 =so3=225 =so4=235" },
{ "s41227", "INV_Staff_07", "=q2=Ornate Mithril Scepter", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41546", "INV_Belt_27", "=q2=Alluring Citrine Choker", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41548", "INV_Bracer_19", "=q2=Elaborate Golden Bracelets", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41550", "INV_Wand_05", "=q2=Heart of the Sea", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41744", "INV_Jewelry_Ring_03", "=q2=Bloodfire Circlet", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41754", "INV_Misc_Gem_Pearl_04", "=q2=Smoldering Brooch", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41552", "INV_Staff_11", "=q2=Staff of Gallitrea", "=ds=#sr# =so1=200 =so2=225 =so3=235 =so4=245" },
{ "s41558", "INV_Misc_Gem_Sapphire_02", "=q2=Draenethyst Baton", "=ds=#sr# =so1=200 =so2=225 =so3=235 =so4=245" },
{ "s41718", "INV_Bracer_14", "=q3=Ornate Mithril Bracelets", "=ds=#sr# =so1=200 =so2=225 =so3=237 =so4=250" },
{ "s41756", "INV_Misc_Gem_Sapphire_03", "=q2=Vitriol Brooch", "=ds=#sr# =so1=205 =so2=220 =so3=227 =so4=235" },
{ "s41239", "INV_Belt_31", "=q2=Greater Binding Signet", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
{ "s41786", "INV_Helmet_06", "=q2=Ornate Mithril Crown", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
{ "s41554", "INV_Jewelry_Ring_Emerald", "=q3=Golden Jade Ring", "=ds=#sr# =so1=210 =so2=235 =so3=245 =so4=255" },
{ "s41352", "INV_Staff_13", "=q3=Opaline Illuminator", "=ds=#sr# =so1=210 =so2=235 =so3=245 =so4=255" },
{ "s41307", "INV_Wand_11", "=q3=Gemkeeper's Folio", "=ds=#sr# =so1=??? =so2=235 =so3=245 =so4=255" },
{ "s41235", "INV_Jewelry_Necklace_03", "=q2=Aquamarine Pendant", "=ds=#sr# =so1=215 =so2=215 =so3=225 =so4=235" },
{ "s41241", "INV_Staff_32", "=q2=Royal Gemstone Staff", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" },
{ "s41277", "INV_Jewelry_Necklace_07", "=q2=Starforge Amulet", "=ds=#sr# =so1=220 =so2=220 =so3=240 =so4=260" },
{ "s41243", "INV_Misc_Orb_05", "=q2=Emberstone Idol", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
{ "s41245", "BTNIrongRingUPG2", "=q2=Runed Truesilver Ring", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
{ "s41633", "INV_Misc_Gem_Ruby_02", "=q2=Burning Star Gemstone", "=ds=#sr# =so1=225 =so2=225 =so3=227 =so4=230" },
};
JewelcraftingExpert3 = {
{ "s41085", "INV_Jewelry_Ring_25", "=q2=Emberstone Studded Ring", "=ds=#sr# =so1=225 =so2=240 =so3=247 =so4=255" },
{ "s41281", "INV_Jewelry_Talisman_05", "=q3=Runebound Amulet", "=ds=#sr# =so1=230 =so2=230 =so3=252 =so4=275" },
{ "s41716", "INV_Jewelry_Ring_03", "=q3=Crown of Elegance", "=ds=#sr# =so1=230 =so2=260 =so3=270 =so4=280" },
{ "s41784", "INV_Jewelry_Ring_Jade", "=q4=Mana Binding Signet", "=ds=#sr# =so1=230 =so2=260 =so3=275 =so4=290" },
{ "s41305", "INV_Wand_09", "=q2=Golden Scepter of Authority", "=ds=#sr# =so1=??? =so2=260 =so3=270 =so4=280" },
{ "s41635", "INV_Misc_Gem_Opal_01", "=q2=Brilliant Opal Gemstone", "=ds=#sr# =so1=235 =so2=235 =so3=237 =so4=240" },
{ "s41770", "INV_Stone_14", "=q1=Dense Gemstone Cluster", "=ds=#sr# =so1=235 =so2=240 =so3=240 =so4=240" },
{ "s41087", "BTNring02", "=q1=Rough Thorium Ring", "=ds=#sr# =so1=235 =so2=245 =so3=250 =so4=255" },
{ "s41720", "INV_Staff_32", "=q3=Regal Twilight Staff", "=ds=#sr# =so1=240 =so2=260 =so3=275 =so4=290" },
{ "s41724", "Spell_Shadow_GrimWard", "=q3=Ornament of Restraint", "=ds=#sr# =so1=245 =so2=245 =so3=265 =so4=285" },
{ "s41089", "BTNEmptyAmulet", "=q2=Mithril Blackstone Necklace", "=ds=#sr# =so1=245 =so2=265 =so3=275 =so4=285" },
{ "s41261", "INV_Jewelry_Amulet_05", "=q2=Sunburst Tiara", "=ds=#sr# =so1=250 =so2=250 =so3=270 =so4=290" },
{ "s41091", "INV_Misc_LeatherScrap_08", "=q1=Dense Gritted Paper", "=ds=#sr# =so1=250 =so2=260 =so3=265 =so4=270" },
{ "s41714", "INV_Bracer_19", "=q3=Opal Guided Bangles", "=ds=#sr# =so1=250 =so2=280 =so3=290 =so4=300" },
{ "s41637", "INV_Misc_Gem_Emerald_01", "=q2=Elegant Emerald Gemstone", "=ds=#sr# =so1=??? =so2=250 =so3=252 =so4=255" },
{ "s41639", "INV_Misc_Gem_Sapphire_02", "=q2=Shining Sapphire Gemstone", "=ds=#sr# =so1=??? =so2=250 =so3=252 =so4=255" },
};
JewelcraftingArtisan1 = {
{ "s41093", "INV_Jewelry_Ring_10", "=q2=Radiant Thorium Twilight", "=ds=#sr# =so1=255 =so2=270 =so3=277 =so4=285" },
{ "s41348", "INV_Bracer_10", "=q2=Crystalfire Armlets", "=ds=#sr# =so1=255 =so2=275 =so3=285 =so4=295" },
{ "s41265", "INV_Jewelry_Ring_31", "=q2=Starry Thorium Band", "=ds=#sr# =so1=260 =so2=260 =so3=275 =so4=290" },
{ "s41611", "INV_Misc_Gem_01", "=q2=Gloomy Diamond Gemstone", "=ds=#sr# =so1=260 =so2=265 =so3=267 =so4=270" },
{ "s41095", "INV_Ore_Arcanite_02", "=q2=Glyph Codex", "=ds=#sr# =so1=260 =so2=280 =so3=287 =so4=295" },
{ "s41350", "INV_Jewelry_Ring_19", "=q2=Cinderfall Band", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
{ "s41251", "INV_Jewelry_Ring_29", "=q2=Blue Starfire", "=ds=#sr# =so1=265 =so2=265 =so3=285 =so4=305" },
{ "s41273", "INV_Jewelry_Necklace_16", "=q2=Prism Amulet", "=ds=#sr# =so1=265 =so2=265 =so3=285 =so4=305" },
{ "s41774", "INV_Jewelry_Necklace_07", "=q2=Spellweaver Pendant", "=ds=#sr# =so1=265 =so2=275 =so3=285 =so4=295" },
{ "s41097", "INV_Staff_13", "=q2=Spellweaver Rod", "=ds=#sr# =so1=265 =so2=285 =so3=292 =so4=300" },
{ "s41099", "INV_Misc_Orb_01", "=q2=Quicksilver Whirl", "=ds=#sr# =so1=265 =so2=285 =so3=292 =so4=300" },
{ "s41762", "INV_Misc_Gem_03", "=q2=Dreary Opal Gemstone", "=ds=#sr# =so1=270 =so2=270 =so3=272 =so4=275" },
{ "s41311", "INV_Bracer_03", "=q2=Stellar Gemguards", "=ds=#sr# =so1=??? =so2=270 =so3=280 =so4=290" },
{ "s41315", "INV_Jewelry_Necklace_11", "=q2=Moonlit Charm", "=ds=#sr# =so1=??? =so2=275 =so3=285 =so4=295" },
{ "s41641", "INV_Misc_Gem_Topaz_01", "=q2=Unstable Arcane Gemstone", "=ds=#sr# =so1=??? =so2=275 =so3=277 =so4=280" },
{ "s41356", "INV_Misc_Book_09", "=q3=Gemstone Compendium", "=ds=#sr# =so1=275 =so2=275 =so3=297 =so4=320" },
{ "s41279", "INV_Jewelry_Necklace_Banshee", "=q2=Voidheart Charm", "=ds=#sr# =so1=280 =so2=280 =so3=300 =so4=320" },
{ "s41101", "INV_Bracer_13", "=q2=Crystalweft Bracers", "=ds=#sr# =so1=280 =so2=285 =so3=297 =so4=310" },
{ "s41103", "INV_Helmet_53", "=q2=Ethereal Frostspark Crown", "=ds=#sr# =so1=280 =so2=285 =so3=297 =so4=310" },
{ "s41105", "INV_Jewelry_Amulet_04", "=q2=Pendant of Arcane Radiance", "=ds=#sr# =so1=280 =so2=300 =so3=305 =so4=310" },
{ "s41313", "INV_Wand_07", "=q2=Garnet Guardian Staff", "=ds=#sr# =so1=??? =so2=290 =so3=300 =so4=310" },
{ "s41643", "INV_Misc_Gem_Sapphire_02", "=q2=Glittering Sapphire Gemstone", "=ds=#sr# =so1=??? =so2=290 =so3=292 =so4=295" },
{ "s41309", "BTNEyeRing", "=q2=Stellar Ruby Ring", "=ds=#sr# =so1=??? =so2=300 =so3=310 =so4=320" },
{ "s41287", "INV_Jewelry_Talisman_05", "=q2=Stormcloud Sigil", "=ds=#sr# =so1=290 =so2=310 =so3=325 =so4=340" },
{ "s41708", "INV_Jewelry_Ring_21", "=q3=Opalstone Circle", "=ds=#sr# =so1=290 =so2=320 =so3=330 =so4=340" },
{ "s41712", "BTNHarbingerRing", "=q3=Dark Iron Signet Ring", "=ds=#sr# =so1=290 =so2=320 =so3=330 =so4=340" },
{ "s41722", "INV_Jewelry_Necklace_06", "=q4=Pendant of Instability", "=ds=#sr# =so1=300 =so2=300 =so3=307 =so4=315" },
{ "s41253", "INV_Jewelry_Ring_37", "=q2=Emerald Monarch's Glow", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41257", "INV_Staff_28", "=q2=Arcanum Baton", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41700", "INV_Bracer_13", "=q4=Embergem Cuffs", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
};
JewelcraftingArtisan2 = {
{ "s41706", "INV_Crown_02", "=q4=Mastercrafted Diamond Crown", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41764", "INV_Misc_Gem_Topaz_02", "=q3=Resurged Topaz Gemstone", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41768", "INV_Misc_Gem_Topaz_03", "=q3=Resilient Arcane Gemstone", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41798", "INV_Misc_Gem_03", "=q3=Guardbreaker Charm", "=ds=#sr# =so1=300 =so2=320 =so3=325 =so4=330" },
{ "s41804", "INV_Bracer_13", "=q3=Bindings of Luminance", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41806", "INV_Crown_01", "=q3=Crown of the Illustrious Queen", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41802", "INV_Staff_20", "=q3=Spire of Channeled Power", "=ds=#sr# =so1=300 =so2=325 =so3=335 =so4=345" },
{ "s41808", "INV_Bracer_03", "=q4=Mastercrafted Diamond Bangles", "=ds=#sr# =so1=300 =so2=325 =so3=332 =so4=340" },
{ "s41778", "INV_Bracer_01", "=q2=Stormcloud Shackles", "=ds=#sr# =so1=??? =so2=310 =so3=320 =so4=330" },
{ "s41303", "INV_Jewelry_Ring_08", "=q2=Massive Jewel Circlet", "=ds=#sr# =so1=??? =so2=315 =so3=322 =so4=330" },
{ "s41317", "INV_Jewelry_Ring_24", "=q3=Twilight Opal Cascade", "=ds=#sr# =so1=??? =so2=320 =so3=330 =so4=340" },
{ "s41271", "INV_Jewelry_Ring_Gold", "=q1=Pure Gold Ring", "=ds=#sr# =so1=??? =so2=325 =so3=335 =so4=345" },
};
JewelcraftingGemology1 = {
{ "s41621", "INV_Stone_03", "=q2=Enchanted Emerald Gemstone", "=ds=#sr# =so1=250 =so2=255 =so3=257 =so4=260" },
{ "s41625", "INV_Misc_Gem_Diamond_01", "=q2=Beautiful Diamond Gemstone", "=ds=#sr# =so1=270 =so2=275 =so3=277 =so4=280" },
{ "s41609", "INV_Misc_Gem_Bloodstone_01", "=q3=Azerothian Ruby Gemstone", "=ds=#sr# =so1=275 =so2=280 =so3=282 =so4=285" },
{ "s41617", "INV_Stone_01", "=q2=Tempered Azerothian Gemstone", "=ds=#sr# =so1=275 =so2=280 =so3=282 =so4=285" },
{ "s41613", "INV_Misc_Gem_02", "=q3=Flawless Black Gemstone", "=ds=#sr# =so1=285 =so2=290 =so3=292 =so4=295" },
{ "s41615", "INV_Misc_Gem_Sapphire_01", "=q3=Arcane Emerald Gemstone", "=ds=#sr# =so1=295 =so2=300 =so3=302 =so4=305" },
{ "s41619", "INV_Misc_Gem_Topaz_02", "=q3=Stunning Imperial Gemstone", "=ds=#sr# =so1=300 =so2=310 =so3=315 =so4=320" },
{ "s41821", "INV_Misc_Gem_Topaz_02", "=q3=Gorgeous Mountain Gemstone", "=ds=#sr# =so1=300 =so2=330 =so3=345 =so4=360" },
};
JewelcraftingGoldsmithing1 = {
{ "s41782", "INV_Jewelry_Ring_Truesight", "=q4=Golden Runed Ring", "=ds=#sr# =so1=285 =so2=310 =so3=320 =so4=330" },
{ "s41780", "INV_Jewelry_Ring_Saphire", "=q3=Stormcloud Signet", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
{ "s41710", "INV_Jewelry_Ring_DragonPaw", "=q3=Deep Sapphire Circlet", "=ds=#sr# =so1=290 =so2=320 =so3=330 =so4=340" },
{ "s41790", "INV_Jewelry_Ring_DragonPaw", "=q4=Ring of Unleashed Potential", "=ds=#sr# =so1=290 =so2=320 =so3=330 =so4=340" },
{ "s41255", "INV_Jewelry_Ring_35", "=q3=Sapphire Luminescence", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41696", "INV_Jewelry_Ring_42", "=q4=Shimmering Diamond Band", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41698", "INV_Misc_Gem_Ruby_03", "=q4=Crown of Molten Ascension", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41702", "INV_Belt_29", "=q4=Blackwing Signet of Command", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41704", "INV_Jewelry_Amulet_01", "=q4=Talisman of Hinderance", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41788", "INV_Jewelry_Ring_Gold", "=q4=Blazefury Circlet", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41267", "BTNGoldMysticRing", "=q4=Ruby Ring of Ruin", "=ds=#sr# =so1=300 =so2=330 =so3=350 =so4=370" },
{ "s41269", "BTNRingOfInfiniteGems", "=q4=Encrusted Gemstone Ring", "=ds=#sr# =so1=300 =so2=330 =so3=350 =so4=370" },
{ "s41792", "INV_Staff_11", "=q4=Empowered Domination Rod", "=ds=#sr# =so1=300 =so2=330 =so3=340 =so4=350" },
{ "s41796", "INV_Jewelry_Trinket_VampiricGrail", "=q4=Grail of Forgotten Memories", "=ds=#sr# =so1=300 =so2=330 =so3=340 =so4=350" },
{ "s41800", "inv_staff_14", "=q4=Rudeus' Focusing Cane", "=ds=#sr# =so1=300 =so2=330 =so3=340 =so4=350" },
};
JewelcraftingGemstones1 = {
{ "s41760", "INV_Misc_Gem_Emerald_02", "=q2=Graceful Agate Gemstone", "=ds=#sr# =so1=135 =so2=135 =so3=137 =so4=140" },
{ "s41627", "INV_Misc_Gem_Diamond_02", "=q2=Pristine Crystal Gemstone", "=ds=#sr# =so1=150 =so2=155 =so3=157 =so4=160" },
{ "s41607", "INV_Misc_Gem_Crystal_02", "=q2=Shimmering Aqua Gemstone", "=ds=#sr# =so1=150 =so2=155 =so3=157 =so4=160" },
{ "s41629", "INV_Misc_Gem_Stone_01", "=q2=Gleaming Jade Gemstone", "=ds=#sr# =so1=175 =so2=180 =so3=182 =so4=185" },
{ "s41601", "INV_Misc_Gem_Opal_02", "=q2=Sharpened Citrine Gemstone", "=ds=#sr# =so1=200 =so2=205 =so3=207 =so4=210" },
{ "s41603", "INV_Misc_Gem_Ruby_01", "=q2=Radiant Ember Gemstone", "=ds=#sr# =so1=200 =so2=205 =so3=207 =so4=210" },
{ "s41605", "INV_Misc_Gem_Ruby_02", "=q2=Glowing Ruby Gemstone", "=ds=#sr# =so1=200 =so2=205 =so3=207 =so4=210" },
{ "s41631", "INV_Misc_Gem_Crystal_03", "=q2=Illuminated Gemstone", "=ds=#sr# =so1=200 =so2=205 =so3=205 =so4=205" },
{ "s41633", "INV_Misc_Gem_Ruby_02", "=q2=Burning Star Gemstone", "=ds=#sr# =so1=225 =so2=225 =so3=227 =so4=230" },
{ "s41635", "INV_Misc_Gem_Opal_01", "=q2=Brilliant Opal Gemstone", "=ds=#sr# =so1=235 =so2=235 =so3=237 =so4=240" },
{ "s41637", "INV_Misc_Gem_Emerald_01", "=q2=Elegant Emerald Gemstone", "=ds=#sr# =so1=??? =so2=250 =so3=252 =so4=255" },
{ "s41639", "INV_Misc_Gem_Sapphire_02", "=q2=Shining Sapphire Gemstone", "=ds=#sr# =so1=??? =so2=250 =so3=252 =so4=255" },
{ "s41611", "INV_Misc_Gem_01", "=q2=Gloomy Diamond Gemstone", "=ds=#sr# =so1=260 =so2=265 =so3=267 =so4=270" },
{ "s41762", "INV_Misc_Gem_03", "=q2=Dreary Opal Gemstone", "=ds=#sr# =so1=270 =so2=270 =so3=272 =so4=275" },
{ "s41625", "INV_Misc_Gem_Diamond_01", "=q2=Beautiful Diamond Gemstone", "=ds=#sr# =so1=270 =so2=275 =so3=277 =so4=280" },
{ "s41641", "INV_Misc_Gem_Topaz_01", "=q2=Unstable Arcane Gemstone", "=ds=#sr# =so1=??? =so2=275 =so3=277 =so4=280" },
{ "s41643", "INV_Misc_Gem_Sapphire_02", "=q2=Glittering Sapphire Gemstone", "=ds=#sr# =so1=??? =so2=290 =so3=292 =so4=295" },
{ "s41764", "INV_Misc_Gem_Topaz_02", "=q3=Resurged Topaz Gemstone", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41768", "INV_Misc_Gem_Topaz_03", "=q3=Resilient Arcane Gemstone", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41621", "INV_Stone_03", "=q2=Enchanted Emerald Gemstone", "=ds=#sr# =so1=250 =so2=255 =so3=257 =so4=260" },
{ "s41609", "INV_Misc_Gem_Bloodstone_01", "=q3=Azerothian Ruby Gemstone", "=ds=#sr# =so1=275 =so2=280 =so3=282 =so4=285" },
{ "s41617", "INV_Stone_01", "=q2=Tempered Azerothian Gemstone", "=ds=#sr# =so1=275 =so2=280 =so3=282 =so4=285" },
{ "s41613", "INV_Misc_Gem_02", "=q3=Flawless Black Gemstone", "=ds=#sr# =so1=285 =so2=290 =so3=292 =so4=295" },
{ "s41615", "INV_Misc_Gem_Sapphire_01", "=q3=Arcane Emerald Gemstone", "=ds=#sr# =so1=295 =so2=300 =so3=302 =so4=305" },
{ "s41619", "INV_Misc_Gem_Topaz_02", "=q3=Stunning Imperial Gemstone", "=ds=#sr# =so1=300 =so2=310 =so3=315 =so4=320" },
{ "s41821", "INV_Misc_Gem_Topaz_02", "=q3=Gorgeous Mountain Gemstone", "=ds=#sr# =so1=300 =so2=330 =so3=345 =so4=360" },
};
JewelcraftingRings1 = {
{ "s41001", "INV_Jewelry_Ring_12", "=q2=Bright Copper Ring", "=ds=#sr# =so1=15 =so2=35 =so3=45 =so4=55" },
{ "s41003", "INV_Jewelry_Ring_18", "=q2=Malachite Ring", "=ds=#sr# =so1=20 =so2=40 =so3=47 =so4=55" },
{ "s41249", "INV_Jewelry_Ring_07", "=q2=Bulky Copper Ring", "=ds=#sr# =so1=25 =so2=25 =so3=45 =so4=65" },
{ "s41005", "INV_Jewelry_Ring_13", "=q2=Sturdy Copper Ring", "=ds=#sr# =so1=25 =so2=45 =so3=52 =so4=60" },
{ "s41007", "INV_Jewelry_Ring_06", "=q2=Inlaid Copper Ring", "=ds=#sr# =so1=35 =so2=55 =so3=62 =so4=70" },
{ "s41013", "INV_Jewelry_Ring_19", "=q2=Lesser Fortification Ring", "=ds=#sr# =so1=50 =so2=70 =so3=77 =so4=85" },
{ "s41015", "INV_Jewelry_Ring_02", "=q2=Tigercrest Ring", "=ds=#sr# =so1=50 =so2=70 =so3=77 =so4=85" },
{ "s41231", "INV_Jewelry_Ring_27", "=q2=Minor Trollblood Ring", "=ds=#sr# =so1=50 =so2=70 =so3=80 =so4=90" },
{ "s41019", "INV_Jewelry_Ring_03", "=q2=Amber Ring", "=ds=#sr# =so1=60 =so2=80 =so3=87 =so4=95" },
{ "s41021", "INV_Jewelry_Ring_07", "=q2=Azure Ring", "=ds=#sr# =so1=60 =so2=80 =so3=87 =so4=95" },
{ "s41025", "INV_Jewelry_Ring_04", "=q2=Softglow Ring", "=ds=#sr# =so1=65 =so2=85 =so3=92 =so4=100" },
{ "s41027", "INV_Jewelry_Ring_33", "=q2=Topaz Studded Ring", "=ds=#sr# =so1=70 =so2=90 =so3=95 =so4=100" },
{ "s41560", "INV_Jewelry_Ring_03", "=q2=Ebon Ring", "=ds=#sr# =so1=75 =so2=95 =so3=105 =so4=115" },
{ "s41562", "INV_Jewelry_Ring_05", "=q2=The King's Conviction", "=ds=#sr# =so1=85 =so2=105 =so3=115 =so4=125" },
{ "s41041", "INV_Jewelry_Ring_22", "=q2=Shimmering Bronze Ring", "=ds=#sr# =so1=90 =so2=105 =so3=112 =so4=120" },
{ "s41047", "INV_Jewelry_Ring_01", "=q2=Earthrock Loop", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" },
{ "s41564", "INV_Jewelry_Ring_16", "=q2=Shadowfall Jewel", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" },
{ "s41566", "INV_Jewelry_Ring_22", "=q2=Ocean's Wrath", "=ds=#sr# =so1=115 =so2=120 =so3=130 =so4=140" },
{ "s41776", "INV_Jewelry_Ring_24", "=q2=Ring of Midnight", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" },
{ "s41568", "INV_Jewelry_Ring_10", "=q2=Dazzling Moonstone Band", "=ds=#sr# =so1=130 =so2=150 =so3=160 =so4=170" },
{ "s41570", "INV_Jewelry_Ring_26", "=q2=Harpy Talon Ring", "=ds=#sr# =so1=145 =so2=165 =so3=175 =so4=185" },
{ "s41207", "INV_Jewelry_Ring_31", "=q2=Quartz Halo", "=ds=#sr# =so1=155 =so2=175 =so3=185 =so4=195" },
{ "s41572", "INV_Jewelry_Ring_47", "=q2=Centaur Hoof Circlet", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
{ "s41211", "INV_Jewelry_Ring_12", "=q2=Jade Harmony Circlet", "=ds=#sr# =so1=170 =so2=190 =so3=197 =so4=205" },
{ "s41574", "INV_Jewelry_Ring_32", "=q3=Ogre Bone Band", "=ds=#sr# =so1=170 =so2=200 =so3=210 =so4=220" },
{ "s41221", "INV_Jewelry_Ring_22", "=q2=Ironsun Citrine Ring", "=ds=#sr# =so1=185 =so2=200 =so3=210 =so4=220" },
{ "s41589", "INV_Jewelry_Ring_07", "=q2=Crystal Earring", "=ds=#sr# =so1=185 =so2=205 =so3=215 =so4=225" },
{ "s41263", "INV_Jewelry_Ring_29", "=q2=Ocean's Gaze", "=ds=#sr# =so1=190 =so2=190 =so3=210 =so4=230" },
{ "s41225", "INV_Jewelry_Ring_20", "=q2=Ironbloom Ring", "=ds=#sr# =so1=190 =so2=205 =so3=215 =so4=225" },
{ "s41541", "INV_Jewelry_Ring_28", "=q2=Dazzling Aquamarine Loop", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
};
JewelcraftingRings2 = {
{ "s41579", "INV_Jewelry_Ring_12", "=q2=Marine's Demise", "=ds=#sr# =so1=190 =so2=210 =so3=220 =so4=230" },
{ "s41744", "INV_Jewelry_Ring_03", "=q2=Bloodfire Circlet", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41554", "INV_Jewelry_Ring_Emerald", "=q3=Golden Jade Ring", "=ds=#sr# =so1=210 =so2=235 =so3=245 =so4=255" },
{ "s41085", "INV_Jewelry_Ring_25", "=q2=Emberstone Studded Ring", "=ds=#sr# =so1=225 =so2=240 =so3=247 =so4=255" },
{ "s41784", "INV_Jewelry_Ring_Jade", "=q4=Mana Binding Signet", "=ds=#sr# =so1=230 =so2=260 =so3=275 =so4=290" },
{ "s41093", "INV_Jewelry_Ring_10", "=q2=Radiant Thorium Twilight", "=ds=#sr# =so1=255 =so2=270 =so3=277 =so4=285" },
{ "s41265", "INV_Jewelry_Ring_31", "=q2=Starry Thorium Band", "=ds=#sr# =so1=260 =so2=260 =so3=275 =so4=290" },
{ "s41350", "INV_Jewelry_Ring_19", "=q2=Cinderfall Band", "=ds=#sr# =so1=260 =so2=280 =so3=290 =so4=300" },
{ "s41251", "INV_Jewelry_Ring_29", "=q2=Blue Starfire", "=ds=#sr# =so1=265 =so2=265 =so3=285 =so4=305" },
{ "s41708", "INV_Jewelry_Ring_21", "=q3=Opalstone Circle", "=ds=#sr# =so1=290 =so2=320 =so3=330 =so4=340" },
{ "s41253", "INV_Jewelry_Ring_37", "=q2=Emerald Monarch's Glow", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41303", "INV_Jewelry_Ring_08", "=q2=Massive Jewel Circlet", "=ds=#sr# =so1=??? =so2=315 =so3=322 =so4=330" },
{ "s41317", "INV_Jewelry_Ring_24", "=q3=Twilight Opal Cascade", "=ds=#sr# =so1=??? =so2=320 =so3=330 =so4=340" },
{ 0, "", "", "" },
{ 0, "", "", "" },
{ "s41782", "INV_Jewelry_Ring_Truesight", "=q4=Golden Runed Ring", "=ds=#sr# =so1=285 =so2=310 =so3=320 =so4=330" },
{ "s41780", "INV_Jewelry_Ring_Saphire", "=q3=Stormcloud Signet", "=ds=#sr# =so1=290 =so2=310 =so3=320 =so4=330" },
{ "s41710", "INV_Jewelry_Ring_DragonPaw", "=q3=Deep Sapphire Circlet", "=ds=#sr# =so1=290 =so2=320 =so3=330 =so4=340" },
{ "s41790", "INV_Jewelry_Ring_DragonPaw", "=q4=Ring of Unleashed Potential", "=ds=#sr# =so1=290 =so2=320 =so3=330 =so4=340" },
{ "s41255", "INV_Jewelry_Ring_35", "=q3=Sapphire Luminescence", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41696", "INV_Jewelry_Ring_42", "=q4=Shimmering Diamond Band", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41702", "INV_Belt_29", "=q4=Blackwing Signet of Command", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41788", "INV_Jewelry_Ring_Gold", "=q4=Blazefury Circlet", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41267", "BTNGoldMysticRing", "=q4=Ruby Ring of Ruin", "=ds=#sr# =so1=300 =so2=330 =so3=350 =so4=370" },
{ "s41269", "BTNRingOfInfiniteGems", "=q4=Encrusted Gemstone Ring", "=ds=#sr# =so1=300 =so2=330 =so3=350 =so4=370" },
};
JewelcraftingAmulets1 = {
{ "s41023", "INV_Jewelry_Necklace_01", "=q2=Bright Copper Necklace", "=ds=#sr# =so1=65 =so2=85 =so3=92 =so4=100" },
{ "s41033", "INV_Jewelry_Necklace_08", "=q2=Lavish Gemmed Necklace", "=ds=#sr# =so1=80 =so2=100 =so3=110 =so4=120" },
{ "s41321", "INV_Belt_32", "=q2=Gleaming Chain", "=ds=#sr# =so1=80 =so2=100 =so3=110 =so4=120" },
{ "s41035", "INV_Jewelry_Necklace_02", "=q2=Amberstone Pendant", "=ds=#sr# =so1=80 =so2=105 =so3=115 =so4=125" },
{ "s41037", "INV_Jewelry_Necklace_16", "=q2=Deepmist Choker", "=ds=#sr# =so1=85 =so2=105 =so3=115 =so4=125" },
{ "s41323", "INV_Jewelry_Necklace_22", "=q2=Talisman of Stone", "=ds=#sr# =so1=100 =so2=125 =so3=135 =so4=145" },
{ "s41325", "INV_Jewelry_Necklace_15", "=q2=Medallion of Flame", "=ds=#sr# =so1=110 =so2=130 =so3=140 =so4=150" },
{ "s41055", "BTNBlackPendant", "=q2=Pendant of Midnight", "=ds=#sr# =so1=120 =so2=145 =so3=155 =so4=165" },
{ "s41327", "INV_Jewelry_Necklace_07", "=q2=Gleaming Silver Necklace", "=ds=#sr# =so1=135 =so2=155 =so3=165 =so4=175" },
{ "s41275", "INV_Jewelry_Necklace_06", "=q3=Gemmed Citrine Pendant", "=ds=#sr# =so1=160 =so2=160 =so3=180 =so4=200" },
{ "s41331", "INV_Jewelry_Amulet_05", "=q2=Gem Encrusted Choker", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
{ "s41283", "BTNEnchantedNecklace", "=q2=Astral Amulet", "=ds=#sr# =so1=??? =so2=175 =so3=192 =so4=210" },
{ "s41333", "INV_Jewelry_Amulet_03", "=q2=Goldcrest Amulet", "=ds=#sr# =so1=170 =so2=180 =so3=190 =so4=200" },
{ "s41217", "INV_Jewelry_Necklace_06", "=q3=Powerful Citrine Pendant", "=ds=#sr# =so1=175 =so2=195 =so3=202 =so4=210" },
{ "s41556", "INV_Jewelry_Talisman_10", "=q2=Delicate Mithril Amulet", "=ds=#sr# =so1=180 =so2=200 =so3=210 =so4=220" },
{ "s41223", "INV_Belt_19", "=q2=Shimmering Gold Necklace", "=ds=#sr# =so1=190 =so2=205 =so3=215 =so4=225" },
{ "s41546", "INV_Belt_27", "=q2=Alluring Citrine Choker", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41235", "INV_Jewelry_Necklace_03", "=q2=Aquamarine Pendant", "=ds=#sr# =so1=215 =so2=215 =so3=225 =so4=235" },
{ "s41277", "INV_Jewelry_Necklace_07", "=q2=Starforge Amulet", "=ds=#sr# =so1=220 =so2=220 =so3=240 =so4=260" },
{ "s41281", "INV_Jewelry_Talisman_05", "=q3=Runebound Amulet", "=ds=#sr# =so1=230 =so2=230 =so3=252 =so4=275" },
{ "s41089", "BTNEmptyAmulet", "=q2=Mithril Blackstone Necklace", "=ds=#sr# =so1=245 =so2=265 =so3=275 =so4=285" },
{ "s41273", "INV_Jewelry_Necklace_16", "=q2=Prism Amulet", "=ds=#sr# =so1=265 =so2=265 =so3=285 =so4=305" },
{ "s41774", "INV_Jewelry_Necklace_07", "=q2=Spellweaver Pendant", "=ds=#sr# =so1=265 =so2=275 =so3=285 =so4=295" },
{ "s41315", "INV_Jewelry_Necklace_11", "=q2=Moonlit Charm", "=ds=#sr# =so1=??? =so2=275 =so3=285 =so4=295" },
{ "s41279", "INV_Jewelry_Necklace_Banshee", "=q2=Voidheart Charm", "=ds=#sr# =so1=280 =so2=280 =so3=300 =so4=320" },
{ "s41105", "INV_Jewelry_Amulet_04", "=q2=Pendant of Arcane Radiance", "=ds=#sr# =so1=280 =so2=300 =so3=305 =so4=310" },
{ "s41287", "INV_Jewelry_Talisman_05", "=q2=Stormcloud Sigil", "=ds=#sr# =so1=290 =so2=310 =so3=325 =so4=340" },
{ "s41722", "INV_Jewelry_Necklace_06", "=q4=Pendant of Instability", "=ds=#sr# =so1=300 =so2=300 =so3=307 =so4=315" },
{ 0, "", "", "" },
{ "s41704", "INV_Jewelry_Amulet_01", "=q4=Talisman of Hinderance", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
};
JewelcraftingHelm1 = {
{ "s41740", "INV_Crown_01", "=q2=Mistwood Tiara", "=ds=#sr# =so1=105 =so2=135 =so3=145 =so4=155" },
{ "s41057", "INV_Crown_01", "=q2=Agatestone Crown", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" },
{ "s41339", "INV_Crown_02", "=q2=Circlet of Dampening", "=ds=#sr# =so1=135 =so2=155 =so3=165 =so4=175" },
{ "s41742", "INV_Crown_01", "=q3=Venomspire Diadem", "=ds=#sr# =so1=145 =so2=165 =so3=175 =so4=185" },
{ "s41213", "INV_Helmet_19", "=q2=Goldenshade Quartz Crown", "=ds=#sr# =so1=175 =so2=195 =so3=202 =so4=210" },
{ "s41744", "INV_Jewelry_Ring_03", "=q2=Bloodfire Circlet", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41786", "INV_Helmet_06", "=q2=Ornate Mithril Crown", "=ds=#sr# =so1=210 =so2=230 =so3=240 =so4=250" },
{ "s41716", "INV_Jewelry_Ring_03", "=q3=Crown of Elegance", "=ds=#sr# =so1=230 =so2=260 =so3=270 =so4=280" },
{ "s41261", "INV_Jewelry_Amulet_05", "=q2=Sunburst Tiara", "=ds=#sr# =so1=250 =so2=250 =so3=270 =so4=290" },
{ "s41103", "INV_Helmet_53", "=q2=Ethereal Frostspark Crown", "=ds=#sr# =so1=280 =so2=285 =so3=297 =so4=310" },
{ "s41706", "INV_Crown_02", "=q4=Mastercrafted Diamond Crown", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41806", "INV_Crown_01", "=q3=Crown of the Illustrious Queen", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ 0, "", "", "" },
{ "s41698", "INV_Misc_Gem_Ruby_03", "=q4=Crown of Molten Ascension", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
};
JewelcraftingBracers1 = {
{ "s29732", "INV_Bracer_03", "=q1=Copper Bangle", "=ds=#sr# =so1=1 =so2=21 =so3=33 =so4=45" },
{ "s41011", "INV_Bracer_09", "=q2=Encrusted Copper Bangle", "=ds=#sr# =so1=50 =so2=70 =so3=75 =so4=80" },
{ "s41587", "INV_Bracer_12", "=q2=Gloomweed Bindings", "=ds=#sr# =so1=80 =so2=160 =so3=170 =so4=180" },
{ "s41049", "INV_Bracer_01", "=q1=Bronze Cuffed Bangles", "=ds=#sr# =so1=105 =so2=120 =so3=132 =so4=145" },
{ "s41726", "INV_Bracer_19", "=q2=Hydrathorn Bracers", "=ds=#sr# =so1=105 =so2=125 =so3=135 =so4=145" },
{ "s41337", "INV_Bracer_19", "=q2=Dawnbright Cuffs", "=ds=#sr# =so1=115 =so2=135 =so3=142 =so4=150" },
{ "s41063", "INV_Bracer_14", "=q2=Enchanted Bracelets", "=ds=#sr# =so1=125 =so2=145 =so3=155 =so4=165" },
{ "s41728", "INV_Bracer_09", "=q3=Blackrock Ironclamps", "=ds=#sr# =so1=140 =so2=160 =so3=170 =so4=180" },
{ "s41205", "INV_Bracer_10", "=q2=Goldfire Crystal Bracelet", "=ds=#sr# =so1=155 =so2=155 =so3=160 =so4=165" },
{ "s41730", "INV_Bracer_09", "=q2=Monastery Emberbrace", "=ds=#sr# =so1=170 =so2=185 =so3=195 =so4=205" },
{ "s41548", "INV_Bracer_19", "=q2=Elaborate Golden Bracelets", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41718", "INV_Bracer_14", "=q3=Ornate Mithril Bracelets", "=ds=#sr# =so1=200 =so2=225 =so3=237 =so4=250" },
{ "s41714", "INV_Bracer_19", "=q3=Opal Guided Bangles", "=ds=#sr# =so1=250 =so2=280 =so3=290 =so4=300" },
{ "s41348", "INV_Bracer_10", "=q2=Crystalfire Armlets", "=ds=#sr# =so1=255 =so2=275 =so3=285 =so4=295" },
{ "s41311", "INV_Bracer_03", "=q2=Stellar Gemguards", "=ds=#sr# =so1=??? =so2=270 =so3=280 =so4=290" },
{ "s41101", "INV_Bracer_13", "=q2=Crystalweft Bracers", "=ds=#sr# =so1=280 =so2=285 =so3=297 =so4=310" },
{ "s41700", "INV_Bracer_13", "=q4=Embergem Cuffs", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41804", "INV_Bracer_13", "=q3=Bindings of Luminance", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41808", "INV_Bracer_03", "=q4=Mastercrafted Diamond Bangles", "=ds=#sr# =so1=300 =so2=325 =so3=332 =so4=340" },
{ "s41778", "INV_Bracer_01", "=q2=Stormcloud Shackles", "=ds=#sr# =so1=??? =so2=310 =so3=320 =so4=330" },
};
JewelcraftingOffHands1 = {
{ "s41732", "INV_Misc_Orb_04", "=q2=Shadowmoon Orb", "=ds=#sr# =so1=85 =so2=105 =so3=115 =so4=125" },
{ "s41043", "INV_Misc_Orb_01", "=q2=Amber Orb", "=ds=#sr# =so1=95 =so2=110 =so3=120 =so4=130" },
{ "s41053", "INV_Mace_08", "=q2=Bronze Scepter", "=ds=#sr# =so1=110 =so2=130 =so3=140 =so4=150" },
{ "s41734", "INV_Misc_Gem_Pearl_02", "=q3=Fangclaw Relic", "=ds=#sr# =so1=120 =so2=140 =so3=150 =so4=160" },
{ "s41736", "INV_Wand_05", "=q2=Netherbane Rod", "=ds=#sr# =so1=160 =so2=180 =so3=190 =so4=200" },
{ "s41738", "INV_Misc_Orb_01", "=q2=Marine Root", "=ds=#sr# =so1=200 =so2=215 =so3=225 =so4=235" },
{ "s41227", "INV_Staff_07", "=q2=Ornate Mithril Scepter", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41550", "INV_Wand_05", "=q2=Heart of the Sea", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41558", "INV_Misc_Gem_Sapphire_02", "=q2=Draenethyst Baton", "=ds=#sr# =so1=200 =so2=225 =so3=235 =so4=245" },
{ "s41307", "INV_Wand_11", "=q3=Gemkeeper's Folio", "=ds=#sr# =so1=??? =so2=235 =so3=245 =so4=255" },
{ "s41243", "INV_Misc_Orb_05", "=q2=Emberstone Idol", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
{ "s41305", "INV_Wand_09", "=q2=Golden Scepter of Authority", "=ds=#sr# =so1=??? =so2=260 =so3=270 =so4=280" },
{ "s41095", "INV_Ore_Arcanite_02", "=q2=Glyph Codex", "=ds=#sr# =so1=260 =so2=280 =so3=287 =so4=295" },
{ "s41356", "INV_Misc_Book_09", "=q3=Gemstone Compendium", "=ds=#sr# =so1=275 =so2=275 =so3=297 =so4=320" },
{ 0, "", "", "" },
{ "s41792", "INV_Staff_11", "=q4=Empowered Domination Rod", "=ds=#sr# =so1=300 =so2=330 =so3=340 =so4=350" },
};
JewelcraftingStaves1 = {
{ "s41009", "INV_Staff_07", "=q1=Copper Staff", "=ds=#sr# =so1=45 =so2=60 =so3=67 =so4=75" },
{ "s41017", "INV_Staff_10", "=q2=Small Pearlstone Staff", "=ds=#sr# =so1=55 =so2=75 =so3=82 =so4=90" },
{ "s41045", "INV_Staff_08", "=q2=Encrusted Bronze Staff", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" },
{ "s41581", "INV_Staff_13", "=q2=Serpent's Coil Staff", "=ds=#sr# =so1=100 =so2=120 =so3=130 =so4=140" },
{ "s41059", "INV_Staff_15", "=q2=Moonlight Staff", "=ds=#sr# =so1=125 =so2=150 =so3=160 =so4=170" },
{ "s41583", "INV_Staff_18", "=q3=Farraki Ceremony Totem", "=ds=#sr# =so1=140 =so2=160 =so3=170 =so4=180" },
{ "s41209", "INV_Wand_04", "=q2=Staff of Blossomed Jade", "=ds=#sr# =so1=165 =so2=185 =so3=195 =so4=205" },
{ "s41585", "INV_Staff_12", "=q2=Sphinx's Wisdom Staff", "=ds=#sr# =so1=170 =so2=190 =so3=200 =so4=210" },
{ "s41552", "INV_Staff_11", "=q2=Staff of Gallitrea", "=ds=#sr# =so1=200 =so2=225 =so3=235 =so4=245" },
{ "s41352", "INV_Staff_13", "=q3=Opaline Illuminator", "=ds=#sr# =so1=210 =so2=235 =so3=245 =so4=255" },
{ "s41241", "INV_Staff_32", "=q2=Royal Gemstone Staff", "=ds=#sr# =so1=215 =so2=235 =so3=245 =so4=255" },
{ "s41720", "INV_Staff_32", "=q3=Regal Twilight Staff", "=ds=#sr# =so1=240 =so2=260 =so3=275 =so4=290" },
{ "s41097", "INV_Staff_13", "=q2=Spellweaver Rod", "=ds=#sr# =so1=265 =so2=285 =so3=292 =so4=300" },
{ "s41313", "INV_Wand_07", "=q2=Garnet Guardian Staff", "=ds=#sr# =so1=??? =so2=290 =so3=300 =so4=310" },
{ "s41257", "INV_Staff_28", "=q2=Arcanum Baton", "=ds=#sr# =so1=300 =so2=320 =so3=330 =so4=340" },
{ "s41802", "INV_Staff_20", "=q3=Spire of Channeled Power", "=ds=#sr# =so1=300 =so2=325 =so3=335 =so4=345" },
{ 0, "", "", "" },
{ "s41800", "inv_staff_14", "=q4=Rudeus' Focusing Cane", "=ds=#sr# =so1=300 =so2=330 =so3=340 =so4=350" },
};
JewelcraftingTrinkets1 = {
{ "s41746", "INV_Misc_ShadowEgg", "=q2=Shadowforged Eye", "=ds=#sr# =so1=85 =so2=105 =so3=115 =so4=125" },
{ "s41069", "INV_Jewelry_Talisman_06", "=q2=Silver Medallion", "=ds=#sr# =so1=135 =so2=150 =so3=160 =so4=170" },
{ "s41748", "INV_QirajIdol_Life", "=q3=Totem of Self Preservation", "=ds=#sr# =so1=135 =so2=155 =so3=165 =so4=175" },
{ "s41752", "INV_Misc_Gem_Pearl_01", "=q2=Obsidian Brooch", "=ds=#sr# =so1=175 =so2=190 =so3=197 =so4=205" },
{ "s41215", "BTNHL_Holy_Grail", "=q2=The Golden Goblet", "=ds=#sr# =so1=175 =so2=195 =so3=202 =so4=210" },
{ "s41285", "INV_Ingot_08", "=q2=Shimmering Moonstone Tablet", "=ds=#sr# =so1=195 =so2=195 =so3=217 =so4=240" },
{ "s41754", "INV_Misc_Gem_Pearl_04", "=q2=Smoldering Brooch", "=ds=#sr# =so1=200 =so2=220 =so3=230 =so4=240" },
{ "s41756", "INV_Misc_Gem_Sapphire_03", "=q2=Vitriol Brooch", "=ds=#sr# =so1=205 =so2=220 =so3=227 =so4=235" },
{ "s41243", "INV_Misc_Orb_05", "=q2=Emberstone Idol", "=ds=#sr# =so1=220 =so2=240 =so3=250 =so4=260" },
{ "s41724", "Spell_Shadow_GrimWard", "=q3=Ornament of Restraint", "=ds=#sr# =so1=245 =so2=245 =so3=265 =so4=285" },
{ "s41099", "INV_Misc_Orb_01", "=q2=Quicksilver Whirl", "=ds=#sr# =so1=265 =so2=285 =so3=292 =so4=300" },
{ "s41287", "INV_Jewelry_Talisman_05", "=q2=Stormcloud Sigil", "=ds=#sr# =so1=290 =so2=310 =so3=325 =so4=340" },
{ "s41798", "INV_Misc_Gem_03", "=q3=Guardbreaker Charm", "=ds=#sr# =so1=300 =so2=320 =so3=325 =so4=330" },
{ 0, "", "", "" },
{ "s41796", "INV_Jewelry_Trinket_VampiricGrail", "=q4=Grail of Forgotten Memories", "=ds=#sr# =so1=300 =so2=330 =so3=340 =so4=350" },
};
JewelcraftingMisc1 = {
{ "s29730", "BTNCopperring01", "=q1=Rough Copper Ring", "=ds=#sr# =so1=1 =so2=21 =so3=30 =so4=40" },
{ "s41039", "INV_Jewelry_Ring_26", "=q1=Rough Bronze Ring", "=ds=#sr# =so1=90 =so2=100 =so3=107 =so4=115" },
{ "s41067", "INV_Jewelry_Ring_01", "=q1=Rough Silver Ring", "=ds=#sr# =so1=125 =so2=135 =so3=145 =so4=155" },
{ "s41081", "INV_Jewelry_Ring_27", "=q1=Rough Iron Ring", "=ds=#sr# =so1=150 =so2=165 =so3=170 =so4=175" },
{ "s41083", "INV_Jewelry_Ring_03", "=q1=Rough Gold Ring", "=ds=#sr# =so1=150 =so2=165 =so3=170 =so4=175" },
{ "s41219", "INV_Jewelry_Ring_12", "=q1=Rough Mithril Ring", "=ds=#sr# =so1=175 =so2=175 =so3=177 =so4=180" },
{ "s41233", "INV_Jewelry_Ring_07", "=q1=Rough Truesilver Ring", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
{ "s41087", "BTNring02", "=q1=Rough Thorium Ring", "=ds=#sr# =so1=235 =so2=245 =so3=250 =so4=255" },
{ "s41271", "INV_Jewelry_Ring_Gold", "=q1=Pure Gold Ring", "=ds=#sr# =so1=??? =so2=325 =so3=335 =so4=345" },
{ 0, "", "", "" },
{ "s29728", "INV_Misc_Bandage_08", "=q1=Rough Gritted Paper", "=ds=#sr# =so1=1 =so2=21 =so3=25 =so4=30" },
{ "s41029", "INV_Misc_Bandage_10", "=q1=Coarse Gritted Paper", "=ds=#sr# =so1=70 =so2=90 =so3=95 =so4=100" },
{ "s41201", "INV_Misc_Bandage_18", "=q1=Heavy Gritted Paper", "=ds=#sr# =so1=150 =so2=150 =so3=155 =so4=160" },
{ "s41229", "INV_Misc_Bandage_17", "=q1=Solid Gritted Paper", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
{ "s41091", "INV_Misc_LeatherScrap_08", "=q1=Dense Gritted Paper", "=ds=#sr# =so1=250 =so2=260 =so3=265 =so4=270" },
{ "s41031", "INV_Ore_Tin_01", "=q1=Rough Gemstone Cluster", "=ds=#sr# =so1=35 =so2=45 =so3=50 =so4=55" },
{ "s41065", "INV_Stone_08", "=q1=Coarse Gemstone Cluster", "=ds=#sr# =so1=125 =so2=140 =so3=142 =so4=145" },
{ "s41203", "INV_Stone_13", "=q1=Heavy Gemstone Cluster", "=ds=#sr# =so1=150 =so2=150 =so3=152 =so4=155" },
{ "s41237", "INV_Stone_07", "=q1=Solid Gemstone Cluster", "=ds=#sr# =so1=200 =so2=200 =so3=205 =so4=210" },
{ "s41770", "INV_Stone_14", "=q1=Dense Gemstone Cluster", "=ds=#sr# =so1=235 =so2=240 =so3=240 =so4=240" },
};
}
+38 -41
View File
@@ -1235,6 +1235,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 19358, "INV_Mace_05", "=q4=Draconic Maul", "=ds=#h2#, #w6#", "4%" },
{ 0,"","","" },
{ 18562, "INV_Stone_SharpeningStone_01", "=q4=Elementium Ore", "=ds=#e12#", "8%" },
{ 19183, "INV_Misc_Dust_02", "=q1=Hourglass Sand", "=ds=#m25#", "47%" },
};
MCLucifron = { --https://database.turtle-wow.org/?npc=12118
{ 16800, "INV_Boots_07", "=q4=Arcanist Boots", "=ds=#s12#, #a1# =q10=#c3#", "20%" },
@@ -2665,7 +2666,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
};
SWStBazil = {
{ 80729, "INV_Shirt_14", "=q2=Standard Issue Tunic", "=ds=#s5#, #a1#", "35%" },
{ 80730, "INV_Boots_08", "=q2=Convict Moccasins", "=ds=#s12#, #a2#", "3%" },
{ 80730, "INV_Boots_08", "=q2=Convict Moccasins", "=ds=#s12#, #a2#", "35%" },
{ 80731, "INV_Sword_36", "=q3=Runed Hookblade", "=ds=#h3#, #w10#", "30%" },
{ 0, "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "1%" },
@@ -2741,29 +2742,29 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 6465, "INV_Chest_Cloth_36", "=q2=Robe of the Moccasin", "=ds=#s5#, #a1#", "33%" },
};
WCLadyAnacondra = {
{ 10412, "INV_Belt_30", "=q2=Belt of the Fang", "=ds=#s10#, #a2#", "33%" },
{ 5404, "INV_Shoulder_08", "=q1=Serpent's Shoulders", "=ds=#s3#, #a2#", "33%" },
{ 6446, "INV_Misc_Bag_12", "=q1=Snakeskin Bag", "=ds=#m13# #e10#", "33%" },
{ 10412, "INV_Belt_30", "=q2=Belt of the Fang", "=ds=#s10#, #a2#", "25%" },
{ 5404, "INV_Shoulder_08", "=q1=Serpent's Shoulders", "=ds=#s3#, #a2#", "25%" },
{ 6446, "INV_Misc_Bag_12", "=q1=Snakeskin Bag", "=ds=#m13# #e10#", "25%" },
{ 0, "", "", "" },
{ 80709, "INV_STAFF_28", "=q3=Guardian Staff", "=ds=#h2#, #w9#", "60%" },
{ 80709, "INV_STAFF_28", "=q3=Guardian Staff", "=ds=#h2#, #w9#", "25%" },
};
WCKresh = {
{ 13245, "INV_Shield_18", "=q3=Kresh's Back", "=ds=#w8#", "50%" },
{ 6447, "INV_Shield_21", "=q1=Worn Turtle Shell Shield", "=ds=#w8#", "50%" },
{ 13245, "INV_Shield_18", "=q3=Kresh's Back", "=ds=#w8#", "33%" },
{ 6447, "INV_Shield_21", "=q1=Worn Turtle Shell Shield", "=ds=#w8#", "33%" },
{ 0, "", "", "" },
{ 80710, "INV_SHOULDER_18", "=q2=Turtle Scale Shoulderguards", "=ds=#s3#, #a3#", "50%" },
{ 80710, "INV_SHOULDER_18", "=q2=Turtle Scale Shoulderguards", "=ds=#s3#, #a3#", "33%" },
};
WCLordPythas = {
{ 6472, "INV_Wand_10", "=q3=Stinging Viper", "=ds=#h1#, #w6#", "50%" },
{ 6473, "INV_Shirt_16", "=q2=Armor of the Fang", "=ds=#s5#, #a2#", "50%" },
{ 6472, "INV_Wand_10", "=q3=Stinging Viper", "=ds=#h1#, #w6#", "33%" },
{ 6473, "INV_Shirt_16", "=q2=Armor of the Fang", "=ds=#s5#, #a2#", "33%" },
{ 0, "", "", "" },
{ 80711, "INV_BRACER_12", "=q3=Bracers of Wild Growth", "=ds=#s8#, #a2#", "60%" },
{ 80711, "INV_BRACER_12", "=q3=Bracers of Wild Growth", "=ds=#s8#, #a2#", "33%" },
};
WCSkum = {
{ 6449, "INV_Chest_Cloth_15", "=q3=Glowing Lizardscale Cloak", "=ds=#s4#", "50%" },
{ 6448, "INV_Weapon_ShortBlade_10", "=q2=Tail Spike", "=ds=#h1#, #w4#", "50%" },
{ 6449, "INV_Chest_Cloth_15", "=q3=Glowing Lizardscale Cloak", "=ds=#s4#", "33%" },
{ 6448, "INV_Weapon_ShortBlade_10", "=q2=Tail Spike", "=ds=#h1#, #w4#", "33%" },
{ 0, "", "", "" },
{ 80712, "INV_PANTS_08", "=q3=Charged Leggings", "=ds=#s11#, #a1#", "60%" },
{ 80712, "INV_PANTS_08", "=q3=Charged Leggings", "=ds=#s11#, #a1#", "33%" },
};
WCLordSerpentis = {
{ 6469, "INV_Weapon_Bow_10", "=q3=Venomstrike", "=ds=#w2#", "25%" },
@@ -2777,16 +2778,15 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 6629, "INV_Misc_Cape_17", "=q2=Sporid Cape", "=ds=#s4#", "33%" },
};
WCMutanus = {
{ 6461, "INV_Shoulder_05", "=q3=Slime-encrusted Pads", "=ds=#s3#, #a1#", "33%" },
{ 6627, "INV_Chest_Plate08", "=q3=Mutant Scale Breastplate", "=ds=#s5#, #a3#", "33%" },
{ 6463, "INV_Jewelry_Ring_15", "=q3=Deep Fathom Ring", "=ds=#s13#", "33%" },
{ 6461, "INV_Shoulder_05", "=q3=Slime-encrusted Pads", "=ds=#s3#, #a1#", "25%" },
{ 6627, "INV_Chest_Plate08", "=q3=Mutant Scale Breastplate", "=ds=#s5#, #a3#", "25%" },
{ 6463, "INV_Jewelry_Ring_15", "=q3=Deep Fathom Ring", "=ds=#s13#", "25%" },
{ 81006, "INV_HELMET_27", "=q3=Cowl of the Fang", "=ds=#s1#, #a1#", "25%" },
{ 0, "", "", "" },
{ 10441, "INV_Stone_03", "=q1=Glowing Shard", "=ds=#m2#" },
{ 10657, "INV_Shoulder_09", "=q2=Talbar Mantle", "=q1=#m4# =ds=#s3#, #a1#" },
{ 10658, "INV_Boots_07", "=q2=Quagmire Galoshes", "=q1=#m4# =ds=#s12#, #a3#" },
{ 0, "", "", "" },
{ 81006, "INV_HELMET_27", "=q3=Cowl of the Fang", "=ds=#s1#, #a1#", "8%" },
{ 0, "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "1%" },
};
WCDeviateFaerieDragon = {
@@ -2899,10 +2899,6 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 0, "", "", "" },
{ 61368, "INV_Shirt_GuildTabard_01", "=q2=Greymane Tabard", "=ds=#s7#", "3%" },
};
--GCCeliaHarlow = {
--};
--GCMortimerHarlow = {
--};
GCHorsemasterLevvin = {
{ 61734, "INV_Belt_09", "=q2=Horsemaster Belt", "=ds=#s10#, #a2#", "25%" },
{ 61736, "INV_Misc_Pelt_Bear_Ruin_03", "=q2=Horse Rustler Drape", "=ds=#s4#", "25%" },
@@ -2928,7 +2924,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 61328, "INV_Sword_17", "=q3=Wolfblood", "=ds=#h2#, #w10#", "15%" },
{ 61329, "inv_misc_bag_10_red", "=q3=Sack of Gruesome Eminence", "=ds=#s15#", "15%" },
{ 0, "", "", "" },
{ 61406, "INV_Jewelry_Necklace_22", "=q4=Mark of the Worgen", "=ds=#s13#", "0.5%, 1%" },
{ 61406, "INV_Jewelry_Necklace_22", "=q4=Mark of the Worgen", "=ds=#s13#", "0.5%" },
{ 0, "", "", "" },
{ 61738, "INV_Misc_Note_01", "=q2=Formula: Enchant Bracer - Vampirism", "=ds=#p4# #m14#", "6%" },
{ 69000, "INV_Weapon_ShortBlade_16", "=q2=Gilnean Raven", "=ds=#e15#", "1.5%" },
@@ -2970,11 +2966,11 @@ AtlasLoot_Data["AtlasLootItems"] = {
};
KCCorpsemuncher = {
{ 70057, "inv_helmet_19", "=q3=Crown of Eternal Sacrifice", "=ds=#s1#, #a4#", "15%" },
{ 83459, "INV_bracer_03", "=q3=Consumer Shackles", "=ds=#s8#, #a4#", "18%" },
{ 83460, "INV_jewelry_ring_26", "=q3=Deepearth Signet", "=ds=#s13#", "18%" },
{ 83461, "INV_spear_06", "=q3=Cryptkeeper's Pike", "=ds=#h2#, #w7#", "18%" },
{ 83462, "INV_chest_plate08", "=q3=Cadaverlink Vest", "=ds=#s5#, #a3#", "18%" },
{ 83463, "INV_gauntlets_23", "=q3=Rotworm Grips", "=ds=#s9#, #a2#", "18%" },
{ 83459, "INV_bracer_03", "=q3=Consumer Shackles", "=ds=#s8#, #a4#", "15%" },
{ 83460, "INV_jewelry_ring_26", "=q3=Deepearth Signet", "=ds=#s13#", "15%" },
{ 83461, "INV_spear_06", "=q3=Cryptkeeper's Pike", "=ds=#h2#, #w7#", "15%" },
{ 83462, "INV_chest_plate08", "=q3=Cadaverlink Vest", "=ds=#s5#, #a3#", "15%" },
{ 83463, "INV_gauntlets_23", "=q3=Rotworm Grips", "=ds=#s9#, #a2#", "15%" },
{ 83458, "INV_misc_organ_01", "=q3=Wormheart", "=ds=#s2#", "10%" },
{ 0, "", "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" },
@@ -3002,12 +2998,12 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" },
};
KCCommanderAndreon = {
{ 50188, "INV_Belt_03", "=q3=Deathforge Belt", "=ds=#s10#, #a4#", "16% ?" },
{ 50189, "INV_Belt_27", "=q3=Ring of Authority", "=ds=#s13#", "16% ?" },
{ 50190, "INV_Boots_05", "=q3=Boots of the Holy Mentor", "=ds=#s12#, #a1#", "16% ?" },
{ 50191, "INV_Gauntlets_09", "=q3=Frostchain Gauntlets", "=ds=#s9#, #a3#", "16% ?" },
{ 50192, "INV_Jewelry_Ring_35", "=q3=Band of Arcane Dampening", "=ds=#s13#", "16% ?" },
{ 50193, "INV_Shoulder_24", "=q3=Gravewalker Pauldrons", "=ds=#s3#, #a2#", "16% ?" },
{ 50188, "INV_Belt_03", "=q3=Deathforge Belt", "=ds=#s10#, #a4#", "17%" },
{ 50189, "INV_Belt_27", "=q3=Ring of Authority", "=ds=#s13#", "17%" },
{ 50190, "INV_Boots_05", "=q3=Boots of the Holy Mentor", "=ds=#s12#, #a1#", "17%" },
{ 50191, "INV_Gauntlets_09", "=q3=Frostchain Gauntlets", "=ds=#s9#, #a3#", "17%" },
{ 50192, "INV_Jewelry_Ring_35", "=q3=Band of Arcane Dampening", "=ds=#s13#", "17%" },
{ 50193, "INV_Shoulder_24", "=q3=Gravewalker Pauldrons", "=ds=#s3#, #a2#", "17%" },
{ 0, "", "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" },
};
@@ -3026,7 +3022,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 0, "", "", "" },
{ 83571, "inv_misc_book_05", "=q3=Codex: Shadow Mend", "=ds=#c5#", "15%" },
{ 0, "", "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, Quantity of 2", "100%" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, x2", "100%" },
};
KCTreasure = {
{ 5823, "INV_Mushroom_06", "=q1=Poisonous Mushroom", "=ds=#m25#", "100%" },
@@ -3167,7 +3163,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 61043, "Spell_Shadow_SoulGem", "=q4=Eye of the Abyss", "=ds=#s2#", "1.1%" },
{ 51044, "INV_misc_head_dragon_black", "=q1=Antnormi's Head", "=ds=#m3#", "100%" },
{ 0, "", "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, Quantity of 2", "100%" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, x2", "100%" },
};
--[[COTBMInfiniteChromie = {
{ 50203, "INV_enchant_dustsoul", "=q2=Corrupted Sand", "=ds=#m3#, 17-23", "100%" },
@@ -3635,7 +3631,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 80755, "inv_gauntlets_09", "=q3=Befouled Handwraps", "=ds=#s9#, #a1#", "0.01%" },
{ 80749, "inv_belt_03", "=q3=Pysan's Lost Girdle", "=ds=#s10#, #a4#", "0.01%" },
{ 80754, "inv_boots_plate_06", "=q3=Earthsong Treaders", "=ds=#s12#, #a3#", "0.01%" },
{ 80757, "inv_misc_herb_08", "=q3=Thornpod", "=ds=#s14#", "0.01%" },
{ 62008, "inv_misc_herb_08", "=q3=Thornpod", "=ds=#s14#", "0.01%" },
{ 80750, "inv_gauntlets_11", "=q3=Thornfist", "=ds=#h3#, #w13#", "0.01%" },
{ 80751, "inv_hammer_23", "=q3=Thornclad Warhammer", "=ds=#h2#, #w6#", "0.01%" },
{ 80748, "inv_wand_09", "=q3=Corrupter's Focus", "=ds=#w12#", "0.01%" },
@@ -3683,6 +3679,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
ZFGahzrilla = {
{ 9469, "INV_Chest_Chain_06", "=q3=Gahz'rilla Scale Armor", "=ds=#s5#, #a3#", "50%" },
{ 9467, "INV_Misc_MonsterFang_01", "=q2=Gahz'rilla Fang", "=ds=#h1#, #w4#", "50%" },
{ 0, "", "", "" },
{ 80747, "INV_Gauntlets_30", "=q3=Electrified Gloves", "=ds=#s9#, #a2#", "50%" },
{ 0, "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "1%" },
@@ -5174,7 +5171,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 0, "", "", "", "" },
{ 13090, "INV_Chest_Chain_16", "=q3=Breastplate of the Chosen", "=ds=#s5#, #a3#", "10%" },
{ 0, "", "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, Quantity of 3", "100%" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, x3", "100%" },
};
UBRSTrash = {
{ 24102, "INV_Misc_Book_14", "=q3=Manual of Eviscerate IX", "=ds=#e20# =q12=#c6# =q7=#x60#", "10%" },
@@ -5312,7 +5309,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 0, "", "", "", "" },
{ 12811, "INV_Misc_Gem_Pearl_03", "=q2=Righteous Orb", "=ds=#e12#", "18%" },
{ 0, "", "", "", "" },
{ 22897, "INV_Misc_Book_07", "=q1=Tome of Conjure Food VII", "=ds=#e20# =q10=#c3#", "14%" },
{ 22897, "INV_Misc_Book_07", "=q3=Tome of Conjure Food VII", "=ds=#e20# =q10=#c3#", "14%" },
{ 0, "", "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#", "5%" },
};
@@ -5655,7 +5652,7 @@ AtlasLoot_Data["AtlasLootItems"] = {
{ 0, "", "", "", "" },
{ 80760, "INV_Jewelry_Ring_14", "=q3=Spireblade Band","=ds=#s13#", "35%" },
{ 0, "", "", "", "" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, Quantity of 2", "100%" },
{ 51217, "INV_misc_ribbon_01", "=q2=Fashion Coin", "=ds=#e27#, x2", "100%" },
};
LBRSGrimaxe = {
{ 12637, "INV_Gauntlets_26", "=q3=Backusarian Gauntlets", "=ds=#s9#, #a4#", "33%" },
+11 -1
View File
@@ -847,7 +847,7 @@ AL:RegisterTranslations("enUS", function() return {
["Engineer Figgles"] = true,
["Corrosis"] = true,
["Hatereaver Annihilator"] = true,
["Hargesh Doomcaller"] = true,
["Har'gesh Doomcaller"] = true,
["[32-38] The Crescent Grove"] = "|cffffffff[32-38]|cffffd200 The Crescent Grove",
["The Crescent Grove"] = true,
["Grovetender Engryss"] = true,
@@ -1596,5 +1596,15 @@ AL:RegisterTranslations("enUS", function() return {
["Dustwallow Marsh"] = true,
["Mooncloth Regalia"] = true,
["Show Source on Tooltips"] = true,
["Jewelcrafting"] = true,
["Gemology"] = true,
["Gemstones"] = true,
["Goldsmithing"] = true,
["Off-hand"] = true,
["Amulets"] = true,
["Rings"] = true,
["Karazhan"] = true,
["Tier 3.5"] = true,
["Karazhan Sets"] = true,
}
end)
+630 -108
View File
File diff suppressed because it is too large Load Diff
+71 -6
View File
@@ -249,8 +249,8 @@ AtlasLoot_TableNames = {
["AQ20Ayamiss"] = { AL["Ruins of Ahn'Qiraj"].." - "..AL["Ayamiss the Hunter"], "AtlasLootItems" },
["AQ20Ossirian"] = { AL["Ruins of Ahn'Qiraj"].." - "..AL["Ossirian the Unscarred"], "AtlasLootItems" },
["AQ20Trash"] = { AL["Ruins of Ahn'Qiraj"].." - "..AL["Trash Mobs"], "AtlasLootItems" },
["AQ20ClassBooks"] = { AL["Ruins of Ahn'Qiraj"].." - ".."AQ Class Books", "AtlasLootItems" },
["AQ20Enchants"] = { AL["Ruins of Ahn'Qiraj"].." - ".."AQ Enchants", "AtlasLootItems" },
["AQ20ClassBooks"] = { AL["Ruins of Ahn'Qiraj"].." - ".."Class Books", "AtlasLootItems" },
["AQ20Enchants"] = { AL["Ruins of Ahn'Qiraj"].." - ".."Enchants", "AtlasLootItems" },
--Scarlet Monestery - Armory
["SMHerod"] = { AL["Scarlet Monastery (Armory)"].." - "..AL["Herod"], "AtlasLootItems" },
["SMATrash"] = { AL["Scarlet Monastery (Armory)"].." - "..AL["Trash Mobs"], "AtlasLootItems" },
@@ -361,7 +361,7 @@ AtlasLoot_TableNames = {
["HQEngineerFiggles"] = { AL["Hateforge Quarry"].." - "..AL["Engineer Figgles"], "AtlasLootItems" },
["HQCorrosis"] = { AL["Hateforge Quarry"].." - "..AL["Corrosis"], "AtlasLootItems" },
["HQHatereaverAnnihilator"] = { AL["Hateforge Quarry"].." - "..AL["Hatereaver Annihilator"], "AtlasLootItems" },
["HQHargeshDoomcaller"] = { AL["Hateforge Quarry"].." - "..AL["Hargesh Doomcaller"], "AtlasLootItems" },
["HQHargeshDoomcaller"] = { AL["Hateforge Quarry"].." - "..AL["Har'gesh Doomcaller"], "AtlasLootItems" },
["HQTrash"] = { AL["Hateforge Quarry"].." - "..AL["Trash Mobs"], "AtlasLootItems" },
-- The Cresant Grove
["TCGGrovetenderEngryss"] = { AL["The Crescent Grove"].." - "..AL["Grovetender Engryss"], "AtlasLootItems" },
@@ -637,7 +637,16 @@ AtlasLoot_TableNames = {
["T3Shaman"] = { AL["Naxxramas"].." - "..AL["Tier 3"].." "..AL["Set"], "AtlasLootSetItems" },
["T3Warlock"] = { AL["Naxxramas"].." - "..AL["Tier 3"].." "..AL["Set"], "AtlasLootSetItems" },
["T3Warrior"] = { AL["Naxxramas"].." - "..AL["Tier 3"].." "..AL["Set"], "AtlasLootSetItems" },
--T3.5 Sets
["T35Druid"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Hunter"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Mage"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Paladin"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Priest"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Rogue"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Shaman"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Warlock"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Warrior"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
------------------------
--- Misc Collections ---
------------------------
@@ -954,6 +963,28 @@ AtlasLoot_TableNames = {
["TailoringBags1"] = { AL["Tailoring"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
["TailoringShirt1"] = { AL["Tailoring"] .. ": " .. AL["Shirt"], "AtlasLootCrafting" },
["TailoringMisc1"] = { AL["Tailoring"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Jewelcrafting
["JewelcraftingApprentice1"] = { AL["Jewelcrafting"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["JewelcraftingJourneyman1"] = { AL["Jewelcrafting"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
["JewelcraftingJourneyman2"] = { AL["Jewelcrafting"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
["JewelcraftingExpert1"] = { AL["Jewelcrafting"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["JewelcraftingExpert2"] = { AL["Jewelcrafting"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["JewelcraftingExpert3"] = { AL["Jewelcrafting"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["JewelcraftingArtisan1"] = { AL["Jewelcrafting"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["JewelcraftingArtisan2"] = { AL["Jewelcrafting"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["JewelcraftingArtisan3"] = { AL["Jewelcrafting"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["JewelcraftingGemstones1"] = { AL["Jewelcrafting"] .. ": " .. AL["Gemstones"], "AtlasLootCrafting" },
["JewelcraftingRings1"] = { AL["Jewelcrafting"] .. ": " .. AL["Rings"], "AtlasLootCrafting" },
["JewelcraftingRings2"] = { AL["Jewelcrafting"] .. ": " .. AL["Rings"], "AtlasLootCrafting" },
["JewelcraftingAmulets1"] = { AL["Jewelcrafting"] .. ": " .. AL["Amulets"], "AtlasLootCrafting" },
["JewelcraftingHelm1"] = { AL["Jewelcrafting"] .. ": " .. AL["Head"], "AtlasLootCrafting" },
["JewelcraftingBracers1"] = { AL["Jewelcrafting"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
["JewelcraftingOffHands1"] = { AL["Jewelcrafting"] .. ": " .. AL["Off-hand"], "AtlasLootCrafting" },
["JewelcraftingStaves1"] = { AL["Jewelcrafting"] .. ": " .. AL["Staff"], "AtlasLootCrafting" },
["JewelcraftingTrinkets1"] = { AL["Jewelcrafting"] .. ": " .. AL["Trinkets"], "AtlasLootCrafting" },
["JewelcraftingMisc1"] = { AL["Jewelcrafting"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["JewelcraftingGemology1"] = { AL["Jewelcrafting"] .. ": " .. AL["Gemology"], "AtlasLootCrafting" },
["JewelcraftingGoldsmithing1"] = { AL["Jewelcrafting"] .. ": " .. AL["Goldsmithing"], "AtlasLootCrafting" },
--Cooking
["CookingApprentice1"] = { AL["Cooking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["CookingJourneyman1"] = { AL["Cooking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
@@ -1068,6 +1099,8 @@ AtlasLoot_TableNames = {
["COOKINGMENU"] = { "dummy", "dummy" },
["FIRSTAIDMENU"] = { "dummy", "dummy" },
["WORLDBOSSMENU"] = { "dummy", "dummy" },
["JEWELCRAFTMENU"] = { "dummy", "dummy" },
["KARASET"] = { "dummy", "dummy" },
["WishList"] = { AL["WishList"], "AtlasLootCharDB" },
--If all else fails!
["EmptyInstance"] = { "AtlasLoot", "AtlasLootFallback" },
@@ -1180,7 +1213,7 @@ AtlasLoot_TableNamesBoss = {
["HQEngineerFiggles"] = { AL["Engineer Figgles"], "AtlasLootItems" },
["HQCorrosis"] = { AL["Corrosis"], "AtlasLootItems" },
["HQHatereaverAnnihilator"] = { AL["Hatereaver Annihilator"], "AtlasLootItems" },
["HQHargeshDoomcaller"] = { AL["Hargesh Doomcaller"], "AtlasLootItems" },
["HQHargeshDoomcaller"] = { AL["Har'gesh Doomcaller"], "AtlasLootItems" },
["HQTrash"] = { AL["Trash Mobs"], "AtlasLootItems" },
},
["The Crescent Grove"] = {
@@ -1767,7 +1800,17 @@ AtlasLoot_TableNamesBoss = {
["T3Warlock"] = { AL["Warlock"] .. " - " .. AL["Tier 3 Sets"], "AtlasLootSetItems" },
["T3Warrior"] = { AL["Warrior"] .. " - " .. AL["Tier 3 Sets"], "AtlasLootSetItems" },
},
["Karazhan Sets"] = {
["T35Druid"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Hunter"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Mage"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Paladin"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Priest"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Rogue"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Shaman"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Warlock"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
["T35Warrior"] = { AL["Karazhan"].." - "..AL["Tier 3.5"].." "..AL["Set"], "AtlasLootSetItems" },
},
------------------------
--- Misc Collections ---
------------------------
@@ -2078,6 +2121,28 @@ AtlasLoot_TableNamesBoss = {
["TailoringBags1"] = { AL["Tailoring"] .. ": " .. AL["Bags"], "AtlasLootCrafting" },
["TailoringShirt1"] = { AL["Tailoring"] .. ": " .. AL["Shirt"], "AtlasLootCrafting" },
["TailoringMisc1"] = { AL["Tailoring"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
--Jewelcrafting
["JewelcraftingApprentice1"] = { AL["Jewelcrafting"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["JewelcraftingJourneyman1"] = { AL["Jewelcrafting"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
["JewelcraftingJourneyman2"] = { AL["Jewelcrafting"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },
["JewelcraftingExpert1"] = { AL["Jewelcrafting"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["JewelcraftingExpert2"] = { AL["Jewelcrafting"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["JewelcraftingExpert3"] = { AL["Jewelcrafting"] .. ": " .. AL["Expert"], "AtlasLootCrafting" },
["JewelcraftingArtisan1"] = { AL["Jewelcrafting"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["JewelcraftingArtisan2"] = { AL["Jewelcrafting"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["JewelcraftingArtisan3"] = { AL["Jewelcrafting"] .. ": " .. AL["Artisan"], "AtlasLootCrafting" },
["JewelcraftingGemstones1"] = { AL["Jewelcrafting"] .. ": " .. AL["Gemstones"], "AtlasLootCrafting" },
["JewelcraftingRings1"] = { AL["Jewelcrafting"] .. ": " .. AL["Rings"], "AtlasLootCrafting" },
["JewelcraftingRings2"] = { AL["Jewelcrafting"] .. ": " .. AL["Rings"], "AtlasLootCrafting" },
["JewelcraftingAmulets1"] = { AL["Jewelcrafting"] .. ": " .. AL["Amulets"], "AtlasLootCrafting" },
["JewelcraftingHelm1"] = { AL["Jewelcrafting"] .. ": " .. AL["Head"], "AtlasLootCrafting" },
["JewelcraftingBracers1"] = { AL["Jewelcrafting"] .. ": " .. AL["Bracers"], "AtlasLootCrafting" },
["JewelcraftingOffHands1"] = { AL["Jewelcrafting"] .. ": " .. AL["Off-hand"], "AtlasLootCrafting" },
["JewelcraftingStaves1"] = { AL["Jewelcrafting"] .. ": " .. AL["Staff"], "AtlasLootCrafting" },
["JewelcraftingTrinkets1"] = { AL["Jewelcrafting"] .. ": " .. AL["Trinkets"], "AtlasLootCrafting" },
["JewelcraftingMisc1"] = { AL["Jewelcrafting"] .. ": " .. AL["Misc"], "AtlasLootCrafting" },
["JewelcraftingGemology1"] = { AL["Jewelcrafting"] .. ": " .. AL["Gemology"], "AtlasLootCrafting" },
["JewelcraftingGoldsmithing1"] = { AL["Jewelcrafting"] .. ": " .. AL["Goldsmithing"], "AtlasLootCrafting" },
--Cooking
["CookingApprentice1"] = { AL["Cooking"] .. ": " .. AL["Apprentice"], "AtlasLootCrafting" },
["CookingJourneyman1"] = { AL["Cooking"] .. ": " .. AL["Journeyman"], "AtlasLootCrafting" },