diff --git a/AtlasLootClassic/AtlasLoot.lua b/AtlasLootClassic/AtlasLoot.lua index f9a53fa3..e8b2f5f8 100644 --- a/AtlasLootClassic/AtlasLoot.lua +++ b/AtlasLootClassic/AtlasLoot.lua @@ -53,7 +53,7 @@ function AtlasLoot:Print(msg) end function AtlasLoot:OnInitialize() - if not AtlasLootClassicCharDB.__addonrevision then --or AtlasLootDB.__addonrevision < AtlasLoot.__addonrevision then + if not AtlasLootClassicCharDB.__addonrevision or AtlasLootClassicCharDB.__addonrevision < AtlasLoot.__addonrevision then wipe(AtlasLootClassicCharDB) AtlasLootClassicCharDB.__addonrevision = AtlasLoot.__addonrevision end diff --git a/AtlasLootClassic/Button/Profession_type.lua b/AtlasLootClassic/Button/Profession_type.lua index 672fcd20..0f89e2a9 100644 --- a/AtlasLootClassic/Button/Profession_type.lua +++ b/AtlasLootClassic/Button/Profession_type.lua @@ -2,6 +2,7 @@ local AtlasLoot = _G.AtlasLoot local Prof = AtlasLoot.Button:AddType("Profession", "prof") local AL = AtlasLoot.Locales local GetAlTooltip = AtlasLoot.Tooltip.GetTooltip +local Profession = AtlasLoot.Data.Profession --lua local str_match = string.match @@ -11,21 +12,8 @@ local GetTradeskillLink = AtlasLoot.TooltipScan.GetTradeskillLink local ProfClickHandler = nil local PROF_COLOR = "|cffffff00" - -local TRADESKILLS = { - [GetSpellInfo(2259)] = GetSpellTexture(2259), -- Alchemy - [GetSpellInfo(2018)] = GetSpellTexture(2018), -- Blacksmithing - [GetSpellInfo(2550)] = GetSpellTexture(2550), -- Cooking - [GetSpellInfo(7411)] = GetSpellTexture(7411), -- Enchanting - [GetSpellInfo(4036)] = GetSpellTexture(4036), -- Engineering - [GetSpellInfo(3273)] = GetSpellTexture(3273), -- First Aid - [GetSpellInfo(2108)] = GetSpellTexture(2108), -- Leatherworking - [GetSpellInfo(3908)] = GetSpellTexture(3908), -- Tailoring - [GetSpellInfo(2575)] = GetSpellTexture(2575), -- Mining - --[GetSpellInfo(63275)] = GetSpellTexture(63275), -- Fishing - [GetSpellInfo(2366)] = GetSpellTexture(2366), -- Herbalism - [GetSpellInfo(921)] = GetSpellTexture(921), -- Pick Pocket -} +local ITEM_COLORS = {} +local WHITE_ICON_FRAME = "Interface\\Common\\WhiteIconFrame" function Prof.OnSet(button, second) if not ProfClickHandler then @@ -33,14 +21,22 @@ function Prof.OnSet(button, second) "Profession", { ChatLink = { "LeftButton", "Shift" }, + ShowExtraItems = { "LeftButton", "None" }, types = { ChatLink = true, + ShowExtraItems = true, }, }, AtlasLoot.db.Button.Profession.ClickHandler, { { "ChatLink", AL["Chat Link"], AL["Add profession link into chat"] }, + { "ShowExtraItems", AL["Show extra items"], AL["Shows extra items (tokens,mats)"] }, }) + -- create item colors + for i=0,7 do + local _, _, _, itemQuality = GetItemQualityColor(i) + ITEM_COLORS[i] = itemQuality + end end if not button then return end if second and button.__atlaslootinfo.secType then @@ -61,14 +57,17 @@ function Prof.OnClear(button) button.secButton.Profession = nil button.secButton.SpellID = nil button.secButton.tsLink, button.secButton.tsName = nil, nil - + if button.ExtraFrameShown then + AtlasLoot.Button:ExtraItemFrame_ClearFrame() + button.ExtraFrameShown = false + end end function Prof.OnEnter(button) local tooltip = GetAlTooltip() tooltip:ClearLines() tooltip:SetOwner(button, "ANCHOR_RIGHT", -(button:GetWidth() * 0.5), 24) - tooltip:SetHyperlink(button.tsLink) + tooltip:SetSpellByID(button.SpellID) tooltip:Show() end @@ -80,24 +79,47 @@ function Prof.OnMouseAction(button, mouseButton) if not mouseButton then return end mouseButton = ProfClickHandler:Get(mouseButton) if mouseButton == "ChatLink" then - AtlasLoot.Button:AddChatLink(button.tsLink or "spell:"..button.SpellID) + --AtlasLoot.Button:AddChatLink(button.tsLink or "spell:"..button.SpellID) + elseif mouseButton == "ShowExtraItems" then + if Profession.IsProfessionSpell(button.SpellID) then + button.ExtraFrameShown = true + AtlasLoot.Button:ExtraItemFrame_GetFrame(button, Profession.GetDataForExtraFrame(button.SpellID)) + end end end - +-- TODO: Add Query? function Prof.Refresh(button) local spellName, _, spellTexture = GetSpellInfo(button.SpellID) - button.tsLink, button.tsName = GetTradeskillLink(button.SpellID) - if button.type == "secButton" then - - else - button.name:SetText(PROF_COLOR..spellName) - button.extra:SetText(button.tsName) + if Profession.IsProfessionSpell(button.SpellID) then + local itemName, _, itemQuality, _, _, _, _, _, _, itemTexture + if Profession.GetCreatedItemID(button.SpellID) then + itemName, _, itemQuality, _, _, _, _, _, _, itemTexture = GetItemInfo(Profession.GetCreatedItemID(button.SpellID)) + end + itemQuality = itemQuality or 0 + + button.overlay:Show() + button.overlay:SetTexture(WHITE_ICON_FRAME) + button.overlay:SetAtlas(LOOT_BORDER_BY_QUALITY[itemQuality] or LOOT_BORDER_BY_QUALITY[LE_ITEM_QUALITY_UNCOMMON]) + if not LOOT_BORDER_BY_QUALITY[itemQuality] then + button.overlay:SetDesaturated(true) + end + + if button.type == "secButton" then + + else + if itemName then + button.name:SetText("|c"..ITEM_COLORS[itemQuality or 0]..itemName) + else + button.name:SetText(PROF_COLOR..spellName) + end + button.extra:SetText(Profession.GetSpellDescription(button.SpellID).." ( "..Profession.GetColorSkillRank(button.SpellID).." )") + end + + button.icon:SetTexture(itemTexture or Profession.GetIcon(button.SpellID) or spellTexture) end - button.icon:SetTexture(TRADESKILLS[button.tsName] or spellTexture) - end --[[ diff --git a/AtlasLootClassic/Data/Profession.lua b/AtlasLootClassic/Data/Profession.lua index e69de29b..81aa0f34 100644 --- a/AtlasLootClassic/Data/Profession.lua +++ b/AtlasLootClassic/Data/Profession.lua @@ -0,0 +1,1365 @@ +local AtlasLoot = _G.AtlasLoot +local Profession = {} +AtlasLoot.Data.Profession = Profession +local AL = AtlasLoot.Locales + +local format = string.format + +local LOC_STRING_DESC = AL["|cff00ff00Left-Click:|r %s"] +local LOC_STRING_DESC2 = AL["|cff00ff00Left-Click:|r Show reagents."] +local FORMAT_STRING_SKILL = "|cffff8040%d|r |cffffff00%d|r |cff40bf40%d|r |cff808080%d|r" + +local PROFESSION_DEFAULT = 0 +local PROFESSION_TEXT = { + [0] = LOC_STRING_DESC2, -- UNKNOWN + [1] = format(LOC_STRING_DESC, GetSpellInfo(3273)), -- First Aid + [2] = format(LOC_STRING_DESC, GetSpellInfo(2018)), -- Blacksmithing + [3] = format(LOC_STRING_DESC, GetSpellInfo(2108)), -- Leatherworking + [4] = format(LOC_STRING_DESC, GetSpellInfo(2259)), -- Alchemy + [5] = format(LOC_STRING_DESC, GetSpellInfo(2366)), -- Herbalism + [6] = format(LOC_STRING_DESC, GetSpellInfo(2550)), -- Cooking + [7] = format(LOC_STRING_DESC, GetSpellInfo(2575)), -- Mining + [8] = format(LOC_STRING_DESC, GetSpellInfo(3908)), -- Tailoring + [9] = format(LOC_STRING_DESC, GetSpellInfo(4036)), -- Engineering + [10] = format(LOC_STRING_DESC, GetSpellInfo(7411)), -- Enchanting + [11] = format(LOC_STRING_DESC, GetSpellInfo(7732)), -- Fishing + [12] = format(LOC_STRING_DESC, GetSpellInfo(8618)), -- Skinning +} +Profession.PROFESSION_TEXT = PROFESSION_TEXT + +local DUMMY_ICON = "Interface\\Icons\\INV_Misc_QuestionMark"; +local PROFESSION_ICON = { + [0] = DUMMY_ICON, -- UNKNOWN + [1] = GetSpellTexture(3273), -- First Aid + [2] = GetSpellTexture(2018), -- Blacksmithing + [3] = GetSpellTexture(2108), -- Leatherworking + [4] = GetSpellTexture(2259), -- Alchemy + [5] = GetSpellTexture(2366), -- Herbalism + [6] = GetSpellTexture(2550), -- Cooking + [7] = GetSpellTexture(2575), -- Mining + [8] = GetSpellTexture(3908), -- Tailoring + [9] = GetSpellTexture(4036), -- Engineering + [10] = GetSpellTexture(7411), -- Enchanting + [11] = GetSpellTexture(7732), -- Fishing + [12] = GetSpellTexture(8618), -- Skinning +} + +local PROFESSION = { + -- [spellID] = { createdItemID, prof, minLvl, maxLvl, reagents{}, reagentsCount{} } + [10015] = { 7960, 2, 1, 285, 310, {3860,6037,7910,7081,7966,4304}, {30,16,6,4,8,6} }, -- Truesilver Champion + [2544] = { 2683, 6, 75, 115, 155, {2674,2678}, {1,1} }, -- Crab Cake + [2795] = { 2888, 6, 40, 60, 100, {2886,2894}, {1,1} }, -- Beer Basted Boar Ribs + [2541] = { 2684, 6, 65, 90, 130, {2673}, {1} }, -- Coyote Steak + [2542] = { 724, 6, 65, 90, 130, {723,2678}, {1,1} }, -- Goretusk Liver Pie + [2543] = { 733, 6, 75, 115, 155, {729,730,731}, {1,1,1} }, -- Westfall Stew + [2399] = { 2582, 8, 1, 110, 145, {2997,2321,2605}, {2,2,1} }, -- Green Woolen Vest + [2539] = { 2680, 6, 30, 50, 90, {2672,2678}, {1,1} }, -- Spiced Wolf Meat + [2540] = { 2681, 6, 1, 45, 85, {769}, {1} }, -- Roasted Boar Meat + [2333] = { 3390, 4, 1, 165, 205, {3355,2452,3372}, {1,1,1} }, -- Elixir of Lesser Agility + [2334] = { 2458, 4, 50, 80, 120, {2449,2447,3371}, {2,1,1} }, -- Elixir of Minor Fortitude + [2335] = { 2459, 4, 60, 90, 130, {2452,2450,3371}, {1,1,1} }, -- Swiftness Potion + [2336] = { 2460, 4, 70, 100, 140, {2449,785,3371}, {2,2,1} }, -- Elixir of Tongues + [2337] = { 858, 4, 80, 85, 125, {118,2450}, {1,1} }, -- Lesser Healing Potion + [8880] = { 7166, 2, 1, 70, 110, {2840,2880,3470,2318}, {6,1,1,1} }, -- Copper Dagger + [2663] = { 2853, 2, 1, 20, 60, {2840}, {2} }, -- Copper Bracers + [2664] = { 2854, 2, 65, 115, 140, {2840,3470}, {10,3} }, -- Runed Copper Bracers + [2665] = { 2863, 2, 75, 65, 80, {2836}, {1} }, -- Coarse Sharpening Stone + [2162] = { 2310, 3, 65, 90, 120, {2318,2320}, {5,2} }, -- Embossed Leather Cloak + [2163] = { 2311, 3, 70, 90, 120, {2318,2320,2324}, {8,2,1} }, -- White Leather Jerkin + [2158] = { 2307, 3, 45, 120, 150, {2318,2320}, {7,2} }, -- Fine Leather Boots + [2159] = { 2308, 3, 1, 105, 135, {2318,2321}, {10,2} }, -- Fine Leather Cloak + [2666] = { 2857, 2, 80, 110, 150, {2840}, {10} }, -- Runed Copper Belt + [3297] = { 3492, 2, 1, 175, 205, {3575,3466,3391,1705,3478,2319}, {6,2,1,2,2,2} }, -- Mighty Iron Hammer + [3515] = { 3847, 2, 1, 225, 250, {3859,3577,3486,3864}, {10,4,4,1} }, -- Golden Scale Boots + [3816] = { 4231, 3, 1, 55, 75, {783,4289}, {1,1} }, -- Cured Light Hide + [3817] = { 4233, 3, 1, 115, 130, {4232,4289}, {1,1} }, -- Cured Medium Hide + [3818] = { 4236, 3, 1, 160, 170, {4235,4289}, {1,3} }, -- Cured Heavy Hide + [3295] = { 3490, 2, 1, 155, 185, {2841,3466,2459,1210,3478,2319}, {4,1,1,2,2,2} }, -- Deadly Bronze Poniard + [3296] = { 3491, 2, 1, 160, 190, {2841,3466,1206,1210,3478,2319}, {8,1,1,1,2,2} }, -- Heavy Bronze Mace + [3495] = { 3852, 2, 1, 195, 220, {3575,3577,1705,3466,4234,3486}, {10,4,2,2,2,2} }, -- Golden Iron Destroyer + [2164] = { 2312, 3, 70, 105, 135, {4231,2318,2320}, {1,4,2} }, -- Fine Leather Gloves + [3973] = { 4404, 9, 1, 110, 140, {2842}, {1} }, -- Silver Contact + [3496] = { 3853, 2, 1, 205, 230, {3859,3466,3486,1705,4234}, {8,2,2,3,3} }, -- Moonsteel Broadsword + [3955] = { 4384, 9, 1, 175, 200, {4382,4375,4377,2592}, {1,1,2,2} }, -- Explosive Sheep + [3956] = { 4385, 9, 1, 175, 200, {2319,1206,4368}, {4,2,1} }, -- Green Tinted Goggles + [3957] = { 4386, 9, 1, 175, 195, {4375,3829}, {1,1} }, -- Ice Deflector + [3958] = { 4387, 9, 1, 160, 180, {3575}, {2} }, -- Iron Strut + [3502] = { 3836, 2, 1, 195, 220, {3575,3864,2605}, {12,1,1} }, -- Green Iron Helm + [3494] = { 3851, 2, 1, 180, 205, {3575,3466,3486,2842,4234}, {8,2,1,4,2} }, -- Solid Iron Maul + [3503] = { 3837, 2, 1, 215, 240, {3859,3577,3486}, {8,2,2} }, -- Golden Scale Coif + [3959] = { 4388, 9, 1, 180, 200, {4375,4306,1529,4371}, {3,2,1,1} }, -- Discombobulator Ray + [3960] = { 4403, 9, 1, 185, 205, {4371,4387,4377,2319}, {4,1,4,4} }, -- Portable Bronze Mortar + [3961] = { 4389, 9, 1, 170, 210, {3575,10558}, {1,1} }, -- Gyrochronatom + [2165] = { 2313, 3, 75, 115, 130, {2319,2320}, {4,1} }, -- Medium Armor Kit + [3504] = { 3840, 2, 1, 185, 210, {3575,3486,2605}, {7,1,1} }, -- Green Iron Shoulders + [3505] = { 3841, 2, 1, 200, 225, {3859,3577,3486}, {6,2,1} }, -- Golden Scale Shoulders + [3333] = { 3483, 2, 1, 165, 195, {2841,2842,3478}, {8,1,2} }, -- Silvered Bronze Gauntlets + [3938] = { 4371, 9, 1, 105, 155, {2841,2880}, {2,1} }, -- Bronze Tube + [2385] = { 2568, 8, 1, 45, 70, {2996,2320}, {1,1} }, -- Brown Linen Vest + [3491] = { 3848, 2, 1, 135, 165, {2841,2880,3470,818,2319}, {6,4,2,1,1} }, -- Big Bronze Knife + [3492] = { 3849, 2, 1, 185, 210, {3575,3466,3486,1705,4234}, {6,2,1,2,3} }, -- Hardened Iron Shortsword + [3493] = { 3850, 2, 1, 200, 225, {3575,3466,3486,1529,4234}, {8,2,2,2,3} }, -- Jade Serpentblade + [2403] = { 2585, 8, 1, 130, 165, {2997,2321,4340}, {4,3,1} }, -- Gray Woolen Robe + [2406] = { 2587, 8, 1, 110, 130, {2997,2321,4340}, {2,1,1} }, -- Gray Woolen Shirt + [2389] = { 2572, 8, 1, 65, 100, {2996,2320,2604}, {3,2,2} }, -- Red Linen Robe + [2392] = { 2575, 8, 1, 65, 100, {2996,2320,2604}, {2,1,1} }, -- Red Linen Shirt + [3932] = { 4366, 9, 1, 115, 145, {4363,4359,2841,2592}, {1,2,1,1} }, -- Target Dummy + [3336] = { 3485, 2, 1, 180, 210, {3575,5498,3478,2605}, {4,2,2,1} }, -- Green Iron Gauntlets + [3337] = { 3486, 2, 1, 125, 150, {2838}, {3} }, -- Heavy Grinding Stone + [3454] = { 3829, 4, 1, 220, 260, {3358,3819,3372}, {4,2,1} }, -- Frost Oil + [2393] = { 2576, 8, 1, 35, 60, {2996,2320,2324}, {1,1,1} }, -- White Linen Shirt + [2331] = { 2455, 4, 30, 65, 105, {785,765,3371}, {1,1,1} }, -- Minor Mana Potion + [2332] = { 2456, 4, 40, 70, 110, {785,2447,3371}, {2,1,1} }, -- Minor Rejuvenation Potion + [2402] = { 2584, 8, 1, 100, 135, {2997,2321}, {1,1} }, -- Woolen Cape + [2330] = { 118, 4, 1, 55, 95, {2447,765,3371}, {1,1,1} }, -- Minor Healing Potion + [2160] = { 2300, 3, 50, 70, 100, {2318,2320}, {8,4} }, -- Embossed Leather Vest + [2161] = { 2309, 3, 65, 85, 115, {2318,2320}, {8,5} }, -- Embossed Leather Boots + [3933] = { 4367, 9, 1, 130, 160, {4364,4363,2318,159}, {2,1,1,1} }, -- Small Seaforium Charge + [3934] = { 4368, 9, 1, 130, 160, {2318,818}, {6,2} }, -- Flying Tiger Goggles + [3936] = { 4369, 9, 1, 130, 155, {4361,4359,4399,2319}, {2,4,1,2} }, -- Deadly Blunderbuss + [3294] = { 3489, 2, 1, 110, 150, {2840,2880,2842,3470,2318}, {10,2,2,2,2} }, -- Thick War Axe + [12044] = { 10045, 8, 1, 35, 60, {2996,2320}, {1,1} }, -- Simple Linen Pants + [2673] = { 2869, 2, 1, 160, 190, {2841,2842,3478,1705}, {10,2,2,1} }, -- Silvered Bronze Breastplate + [2674] = { 2871, 2, 125, 125, 140, {2838}, {1} }, -- Heavy Sharpening Stone + [2675] = { 2870, 2, 135, 175, 205, {2841,1206,1705,5500,2842}, {20,2,2,2,4} }, -- Shining Silver Breastplate + [2169] = { 2317, 3, 100, 125, 150, {2319,2321,4340}, {6,1,1} }, -- Dark Leather Tunic + [2662] = { 2852, 2, 40, 50, 90, {2840}, {4} }, -- Copper Chain Pants + [2963] = { 2996, 8, 1, 25, 50, {2589}, {2} }, -- Bolt of Linen Cloth + [2964] = { 2997, 8, 1, 90, 105, {2592}, {3} }, -- Bolt of Woolen Cloth + [2401] = { 2583, 8, 1, 120, 155, {2997,2321,2318}, {4,2,2} }, -- Woolen Boots + [2545] = { 2682, 6, 85, 125, 165, {2675,2678}, {1,1} }, -- Cooked Crab Claw + [2546] = { 2687, 6, 110, 120, 160, {2677,2678}, {1,1} }, -- Dry Pork Ribs + [2547] = { 1082, 6, 125, 135, 175, {1081,1080}, {1,1} }, -- Redridge Goulash + [2548] = { 2685, 6, 135, 130, 170, {2677,2692}, {2,1} }, -- Succulent Pork Ribs + [2549] = { 1017, 6, 135, 140, 180, {1015,2665}, {2,1} }, -- Seasoned Wolf Kabob + [2386] = { 2569, 8, 1, 90, 125, {2996,2320,2318}, {3,1,1} }, -- Linen Boots + [2387] = { 2570, 8, 1, 35, 60, {2996,2320}, {1,1} }, -- Linen Cloak + [2657] = { 2840, 7, 1, 25, 70, {2770}, {1} }, -- Smelt Copper + [2658] = { 2842, 7, 1, 100, 125, {2775}, {1} }, -- Smelt Silver + [2659] = { 2841, 7, 1, 65, 115, {2840,3576}, {1,1} }, -- Smelt Bronze + [3774] = { 4257, 3, 1, 180, 200, {4236,4234,2321,2605,7071}, {1,5,1,1,1} }, -- Green Leather Belt + [3776] = { 4259, 3, 1, 200, 220, {4236,4234,2605,2321}, {2,6,1,1} }, -- Green Leather Bracers + [2660] = { 2862, 2, 1, 15, 55, {2835}, {1} }, -- Rough Sharpening Stone + [3777] = { 4260, 3, 1, 215, 235, {4234,4236,4291}, {6,2,1} }, -- Guardian Leather Bracers + [3778] = { 4262, 3, 1, 205, 225, {4236,5500,1529,3864,2321}, {4,2,2,1,1} }, -- Gem-studded Leather Belt + [3779] = { 4264, 3, 1, 220, 240, {4234,4236,4096,5633,4291,7071}, {6,2,2,1,1,1} }, -- Barbaric Belt + [2668] = { 2865, 2, 95, 145, 175, {2841}, {6} }, -- Rough Bronze Leggings + [2670] = { 2866, 2, 105, 145, 175, {2841}, {7} }, -- Rough Bronze Cuirass + [2881] = { 2318, 3, 1, 20, 40, {2934}, {3} }, -- Light Leather + [2149] = { 2302, 3, 1, 40, 70, {2318,2320}, {2,1} }, -- Handstitched Leather Boots + [2152] = { 2304, 3, 1, 30, 60, {2318}, {1} }, -- Light Armor Kit + [2394] = { 2577, 8, 1, 65, 100, {2996,2320,6260}, {2,1,1} }, -- Blue Linen Shirt + [2395] = { 2578, 8, 1, 95, 130, {2996,2318,2321}, {4,1,1} }, -- Barbaric Linen Vest + [2396] = { 2579, 8, 1, 95, 130, {2996,2321,2605}, {3,1,1} }, -- Green Linen Shirt + [2397] = { 2580, 8, 1, 85, 120, {2996,2320}, {2,3} }, -- Reinforced Linen Cape + [2153] = { 2303, 3, 30, 45, 75, {2318,2320}, {4,1} }, -- Handstitched Leather Pants + [2671] = { 2867, 2, 1, 145, 175, {2841}, {4} }, -- Rough Bronze Bracers + [2672] = { 2868, 2, 120, 150, 180, {2841,3478}, {5,2} }, -- Patterned Bronze Bracers + [2166] = { 2314, 3, 125, 145, 170, {2319,4231,2321}, {10,2,2} }, -- Toughened Leather Armor + [2167] = { 2315, 3, 100, 125, 150, {2319,2321,4340}, {4,2,1} }, -- Dark Leather Boots + [2168] = { 2316, 3, 110, 135, 160, {2319,2321,4340}, {8,1,1} }, -- Dark Leather Cloak + [2661] = { 2851, 2, 55, 75, 115, {2840}, {6} }, -- Copper Chain Belt + [2667] = { 2864, 2, 90, 120, 160, {2840,1210,3470}, {12,1,2} }, -- Runed Copper Breastplate + [2329] = { 2454, 4, 1, 55, 95, {2449,765,3371}, {1,1,1} }, -- Elixir of Lion's Strength + [3397] = { 3726, 6, 1, 150, 190, {3730,2692}, {1,1} }, -- Big Bear Steak + [3856] = { 4321, 8, 1, 160, 190, {4305,3182,2321}, {3,1,2} }, -- Spider Silk Slippers + [3922] = { 4359, 9, 1, 45, 60, {2840}, {1} }, -- Handful of Copper Bolts + [3923] = { 4360, 9, 1, 60, 90, {2840,4359,4357,2589}, {1,1,2,1} }, -- Rough Copper Bomb + [3924] = { 4361, 9, 1, 80, 110, {2840,2880}, {2,1} }, -- Copper Tube + [3925] = { 4362, 9, 1, 80, 110, {4361,4359,4399}, {1,1,1} }, -- Rough Boomstick + [3926] = { 4363, 9, 1, 95, 125, {4359,2840,2589}, {2,1,2} }, -- Copper Modulator + [3398] = { 3727, 6, 1, 175, 215, {3731,2692}, {1,1} }, -- Hot Lion Chops + [3177] = { 3389, 4, 1, 155, 195, {3355,3820,3372}, {1,1,1} }, -- Elixir of Defense + [3841] = { 4308, 8, 1, 85, 120, {2996,2320,2605}, {3,2,1} }, -- Green Linen Bracers + [3842] = { 4309, 8, 1, 95, 130, {2996,2321}, {4,2} }, -- Handstitched Linen Britches + [3930] = { 8068, 9, 1, 85, 95, {4364,2840}, {1,1} }, -- Crafted Heavy Shot + [3870] = { 4333, 8, 1, 165, 175, {4305,4340,2321}, {2,2,1} }, -- Dark Silk Shirt + [3962] = { 4390, 9, 1, 175, 215, {3575,4377,4306}, {1,1,1} }, -- Iron Grenade + [3321] = { 3471, 2, 1, 75, 115, {2840,774,3470}, {8,1,2} }, -- Copper Chain Vest + [3868] = { 4331, 8, 1, 150, 185, {2997,5500,2321,2324}, {4,1,4,2} }, -- Phoenix Gloves + [3869] = { 4332, 8, 1, 145, 155, {4305,4341,2321}, {1,1,1} }, -- Bright Yellow Shirt + [3843] = { 4310, 8, 1, 110, 145, {2997,2321}, {3,1} }, -- Heavy Woolen Gloves + [3844] = { 4311, 8, 1, 125, 160, {2997,2321,5498}, {3,2,2} }, -- Heavy Woolen Cloak + [3400] = { 3729, 6, 1, 215, 255, {3712,3713}, {1,1} }, -- Soothing Turtle Bisque + [3839] = { 4305, 8, 1, 135, 145, {4306}, {4} }, -- Bolt of Silk Cloth + [3840] = { 4307, 8, 1, 60, 95, {2996,2320}, {2,1} }, -- Heavy Linen Gloves + [3845] = { 4312, 8, 1, 105, 140, {2996,2318,2321}, {5,2,1} }, -- Soft-soled Linen Boots + [9269] = { 7506, 9, 1, 150, 175, {2841,4375,814,818,774}, {6,1,2,1,1} }, -- Gnomish Universal Remote + [9271] = { 6533, 9, 1, 150, 170, {2841,6530,4364}, {2,1,1} }, -- Aquadynamic Fish Attractor + [3847] = { 4313, 8, 1, 120, 155, {2997,2318,2321,2604}, {4,2,1,2} }, -- Red Woolen Boots + [3848] = { 4314, 8, 1, 135, 170, {2997,2321}, {3,2} }, -- Double-stitched Woolen Shoulders + [3849] = { 4315, 8, 1, 145, 180, {2997,2319,2321}, {6,2,2} }, -- Reinforced Woolen Shoulders + [3850] = { 4316, 8, 1, 135, 170, {2997,2321}, {5,4} }, -- Heavy Woolen Pants + [3979] = { 4407, 9, 1, 200, 220, {4371,1529,3864}, {1,1,1} }, -- Accurate Scope + [3188] = { 3391, 4, 1, 175, 215, {2449,3356,3372}, {1,1,1} }, -- Elixir of Ogre's Strength + [3773] = { 4256, 3, 1, 195, 215, {4236,4234,3824,2321}, {2,12,1,2} }, -- Guardian Armor + [3453] = { 3828, 4, 1, 215, 255, {3358,3818,3372}, {1,1,1} }, -- Elixir of Detect Lesser Invisibility + [3871] = { 4334, 8, 1, 180, 190, {4305,2324,2321}, {3,2,1} }, -- Formal White Shirt + [3173] = { 3385, 4, 1, 145, 185, {785,3820,3371}, {1,1,1} }, -- Lesser Mana Potion + [3447] = { 929, 4, 1, 135, 175, {2453,2450,3372}, {1,1,1} }, -- Healing Potion + [3448] = { 3823, 4, 1, 185, 225, {3818,3355,3372}, {1,1,1} }, -- Lesser Invisibility Potion + [3174] = { 3386, 4, 1, 145, 185, {1288,2453,3372}, {1,1,1} }, -- Elixir of Poison Resistance + [3866] = { 4330, 8, 1, 135, 170, {2997,2604,2321}, {3,2,1} }, -- Stylish Red Shirt + [3914] = { 4343, 8, 1, 55, 90, {2996,2320}, {2,1} }, -- Brown Linen Pants + [3915] = { 4344, 8, 1, 35, 60, {2996,2320}, {1,1} }, -- Brown Linen Shirt + [3275] = { 1251, 1, 1, 30, 60, {2589}, {1} }, -- Linen Bandage + [3276] = { 2581, 1, 1, 50, 100, {2589}, {2} }, -- Heavy Linen Bandage + [3277] = { 3530, 1, 1, 80, 150, {2592}, {1} }, -- Wool Bandage + [3278] = { 3531, 1, 1, 115, 185, {2592}, {2} }, -- Heavy Wool Bandage + [3449] = { 3824, 4, 1, 190, 230, {3818,3369,3372}, {4,4,1} }, -- Shadow Oil + [3450] = { 3825, 4, 1, 195, 235, {3355,3821,3372}, {1,1,1} }, -- Elixir of Fortitude + [3175] = { 3387, 4, 1, 275, 315, {8839,8845,8925}, {2,1,1} }, -- Limited Invulnerability Potion + [3176] = { 3388, 4, 1, 150, 190, {2453,2450,3372}, {2,2,1} }, -- Strong Troll's Blood Potion + [3928] = { 4401, 9, 1, 105, 135, {4363,4359,2840,774}, {1,1,1,2} }, -- Mechanical Squirrel + [3929] = { 4364, 9, 1, 85, 95, {2836}, {1} }, -- Coarse Blasting Powder + [3451] = { 3826, 4, 1, 200, 240, {3357,2453,3372}, {1,1,1} }, -- Mighty Troll's Blood Potion + [3452] = { 3827, 4, 1, 180, 220, {3820,3356,3372}, {1,1,1} }, -- Mana Potion + [3172] = { 3384, 4, 1, 135, 175, {785,3355,3371}, {3,1,1} }, -- Minor Magic Resistance Potion + [3399] = { 3728, 6, 1, 190, 230, {3731,3713}, {2,1} }, -- Tasty Lion Steak + [2737] = { 2844, 2, 30, 55, 95, {2840,2880,2589}, {6,1,2} }, -- Copper Mace + [2738] = { 2845, 2, 35, 60, 100, {2840,2880,2589}, {6,1,2} }, -- Copper Axe + [2739] = { 2847, 2, 40, 65, 105, {2840,2880,2589}, {6,1,2} }, -- Copper Shortsword + [2740] = { 2848, 2, 75, 140, 170, {2841,2880,2319}, {6,4,1} }, -- Bronze Mace + [3506] = { 3842, 2, 1, 180, 205, {3575,3486,2605}, {8,1,1} }, -- Green Iron Leggings + [3292] = { 3487, 2, 1, 135, 175, {2840,2880,818,2319}, {14,2,2,2} }, -- Heavy Copper Broadsword + [3511] = { 3845, 2, 1, 220, 245, {3859,3577,3486,1529}, {12,2,4,2} }, -- Golden Scale Cuirass + [3972] = { 4398, 9, 1, 200, 240, {10505,4234,159}, {2,2,1} }, -- Large Seaforium Charge + [3756] = { 4239, 3, 1, 85, 115, {2318,2320}, {3,2} }, -- Embossed Leather Gloves + [3813] = { 4245, 8, 1, 170, 200, {4305,4234,2321}, {3,2,3} }, -- Small Silk Pack + [3293] = { 3488, 2, 1, 75, 115, {2840,2880,774,3470,2318}, {12,2,2,2,2} }, -- Copper Battle Axe + [3857] = { 4322, 8, 1, 185, 215, {4305,2321,4337}, {3,2,2} }, -- Enchanter's Cowl + [3858] = { 4323, 8, 1, 190, 220, {4305,4291,3824}, {4,1,1} }, -- Shadow Hood + [3334] = { 3484, 2, 1, 175, 205, {3575,1705,3478,2605}, {4,2,2,1} }, -- Green Iron Boots + [3308] = { 3577, 7, 1, 170, 185, {2776}, {1} }, -- Smelt Gold + [3864] = { 4329, 8, 1, 220, 250, {4339,4234,3864,7071,4291}, {4,4,1,1,1} }, -- Star Belt + [3865] = { 4339, 8, 1, 180, 185, {4338}, {5} }, -- Bolt of Mageweave + [3965] = { 4392, 9, 1, 185, 225, {4387,4382,4389,4234}, {1,1,1,4} }, -- Advanced Target Dummy + [3966] = { 4393, 9, 1, 205, 225, {4234,3864}, {6,2} }, -- Craftsman's Monocle + [3859] = { 4324, 8, 1, 170, 200, {4305,6260}, {5,4} }, -- Azure Silk Vest + [3860] = { 4325, 8, 1, 195, 225, {4305,4291,4337}, {4,1,2} }, -- Boots of the Enchanter + [3861] = { 4326, 8, 1, 205, 235, {4305,3827,4291}, {4,1,1} }, -- Long Silken Cloak + [3947] = { 8069, 9, 1, 125, 145, {4377,2841}, {1,1} }, -- Crafted Solid Shot + [3949] = { 4379, 9, 1, 155, 180, {4371,4375,4400,2842}, {2,2,1,3} }, -- Silver-plated Shotgun + [3937] = { 4370, 9, 1, 105, 155, {2840,4364,4404}, {3,4,1} }, -- Large Copper Bomb + [3952] = { 4381, 9, 1, 165, 190, {4371,4375,2319,1206}, {1,2,2,1} }, -- Minor Recombobulator + [3953] = { 4382, 9, 1, 145, 195, {2841,2319,2592}, {2,1,1} }, -- Bronze Framework + [3954] = { 4383, 9, 1, 170, 195, {4371,4375,4400,1705}, {3,3,1,2} }, -- Moonsight Rifle + [2741] = { 2849, 2, 85, 145, 175, {2841,2880,2319}, {7,4,1} }, -- Bronze Axe + [3950] = { 4380, 9, 1, 140, 190, {4377,2841,4404}, {2,3,1} }, -- Big Bronze Bomb + [3323] = { 3472, 2, 1, 80, 120, {2840,3470}, {8,2} }, -- Runed Copper Gauntlets + [3170] = { 3382, 4, 1, 60, 100, {2447,2449,3371}, {1,2,1} }, -- Weak Troll's Blood Potion + [3171] = { 3383, 4, 1, 120, 160, {785,2450,3371}, {1,2,1} }, -- Elixir of Wisdom + [3971] = { 4397, 9, 1, 220, 240, {4389,1529,1705,3864,7191}, {4,2,2,2,1} }, -- Gnomish Cloaking Device + [3330] = { 3481, 2, 1, 155, 185, {2841,2842,3478}, {8,2,2} }, -- Silvered Bronze Shoulders + [3331] = { 3482, 2, 1, 160, 190, {2841,2842,3478}, {6,1,2} }, -- Silvered Bronze Boots + [3304] = { 3576, 7, 1, 50, 75, {2771}, {1} }, -- Smelt Tin + [3967] = { 4394, 9, 1, 190, 230, {3575,4377,4404}, {3,3,1} }, -- Big Iron Bomb + [3968] = { 4395, 9, 1, 215, 235, {4377,3575,4389}, {3,2,1} }, -- Goblin Land Mine + [3969] = { 4396, 9, 1, 220, 240, {4382,4387,4389,3864,7191}, {1,4,4,2,1} }, -- Mechanical Dragonling + [3370] = { 3662, 6, 1, 120, 160, {2924,2678}, {1,1} }, -- Crocolisk Steak + [3862] = { 4327, 8, 1, 220, 250, {4339,4291,3829,4337}, {3,2,1,2} }, -- Icy Cloak + [3863] = { 4328, 8, 1, 200, 230, {4305,4337,7071}, {4,2,1} }, -- Spider Belt + [3307] = { 3575, 7, 1, 130, 140, {2772}, {1} }, -- Smelt Iron + [3507] = { 3843, 2, 1, 195, 220, {3575,3577,3486}, {10,2,1} }, -- Golden Scale Leggings + [3508] = { 3844, 2, 1, 205, 230, {3575,3486,1529,1206,4255}, {20,4,2,2,1} }, -- Green Iron Hauberk + [3855] = { 4320, 8, 1, 150, 185, {4305,2319,3182,5500}, {2,4,4,2} }, -- Spidersilk Boots + [3569] = { 3859, 7, 1, 165, 165, {3575,3857}, {1,1} }, -- Smelt Steel + [3872] = { 4335, 8, 1, 195, 205, {4305,4342,4291}, {4,1,1} }, -- Rich Purple Silk Shirt + [3873] = { 4336, 8, 1, 210, 220, {4305,2325,4291}, {5,1,1} }, -- Black Swashbuckler's Shirt + [3963] = { 4391, 9, 1, 175, 215, {4387,4382,4389,4234}, {2,1,2,4} }, -- Compact Harvest Reaper Kit + [3764] = { 4247, 3, 1, 170, 195, {2319,2321}, {14,4} }, -- Hillman's Leather Gloves + [3513] = { 3846, 2, 1, 210, 235, {3859,3864,1705,3486}, {8,1,1,2} }, -- Polished Steel Boots + [3772] = { 4255, 3, 1, 175, 195, {4234,2605,2321}, {9,2,4} }, -- Green Leather Armor + [3931] = { 4365, 9, 1, 90, 105, {4364,2589}, {3,1} }, -- Coarse Dynamite + [3780] = { 4265, 3, 1, 170, 190, {4234,2321}, {5,1} }, -- Heavy Armor Kit + [3497] = { 3854, 2, 1, 225, 250, {3859,3466,3486,1529,3829,4234}, {8,2,2,2,1,4} }, -- Frost Tiger Blade + [3498] = { 3855, 2, 1, 210, 235, {3575,3466,3486,3577,4234}, {14,2,2,4,2} }, -- Massive Iron Axe + [3500] = { 3856, 2, 1, 225, 250, {3859,3466,3486,3864,3824,4234}, {10,2,3,2,1,3} }, -- Shadow Crescent Axe + [3765] = { 4248, 3, 1, 155, 180, {2312,4233,2321,4340}, {1,1,1,1} }, -- Dark Leather Gloves + [3766] = { 4249, 3, 1, 150, 175, {4246,4233,2321,4340}, {1,1,2,1} }, -- Dark Leather Belt + [3767] = { 4250, 3, 1, 145, 170, {2319,3383,2321}, {8,1,2} }, -- Hillman's Belt + [3768] = { 4251, 3, 1, 155, 180, {4233,2319,2321}, {1,4,1} }, -- Hillman's Shoulders + [3944] = { 4376, 9, 1, 125, 175, {4375,4402}, {1,1} }, -- Flame Deflector + [3945] = { 4377, 9, 1, 125, 145, {2838}, {1} }, -- Heavy Blasting Powder + [3946] = { 4378, 9, 1, 125, 145, {4377,2592}, {2,1} }, -- Heavy Dynamite + [3319] = { 3469, 2, 1, 60, 100, {2840}, {8} }, -- Copper Chain Boots + [3320] = { 3470, 2, 1, 45, 85, {2835}, {2} }, -- Rough Grinding Stone + [3759] = { 4242, 3, 1, 105, 135, {4231,2318,2320}, {1,6,2} }, -- Embossed Leather Pants + [3760] = { 3719, 3, 1, 170, 190, {4234,2321}, {5,2} }, -- Hillman's Cloak + [3324] = { 3473, 2, 1, 85, 125, {2840,2321,3470}, {8,2,3} }, -- Runed Copper Pants + [3939] = { 4372, 9, 1, 145, 170, {4371,4359,4400,1206}, {2,2,1,3} }, -- Lovingly Crafted Boomstick + [3940] = { 4373, 9, 1, 145, 170, {2319,1210}, {4,2} }, -- Shadow Goggles + [3761] = { 4243, 3, 1, 115, 145, {4231,2318,2320}, {3,6,4} }, -- Fine Leather Tunic + [3230] = { 2457, 4, 1, 80, 120, {2452,765,3371}, {1,1,1} }, -- Elixir of Minor Agility + [3371] = { 3220, 6, 1, 100, 140, {3173,3172,3174}, {1,1,1} }, -- Blood Sausage + [3372] = { 3663, 6, 1, 130, 170, {1468,2692}, {2,1} }, -- Murloc Fin Soup + [3373] = { 3664, 6, 1, 160, 200, {3667,2692}, {1,1} }, -- Crocolisk Gumbo + [3377] = { 3666, 6, 1, 150, 190, {2251,2692}, {2,1} }, -- Gooey Spider Cake + [3753] = { 4237, 3, 1, 55, 85, {2318,2320}, {6,1} }, -- Handstitched Leather Belt + [3755] = { 4238, 8, 1, 70, 105, {2996,2320}, {3,3} }, -- Linen Bag + [3762] = { 4244, 3, 1, 125, 150, {4243,4231,2320}, {1,2,2} }, -- Hillman's Leather Vest + [3763] = { 4246, 3, 1, 110, 140, {2318,2320}, {6,2} }, -- Fine Leather Belt + [3115] = { 3239, 2, 1, 15, 55, {2835,2589}, {1,1} }, -- Rough Weightstone + [3854] = { 4319, 8, 1, 165, 195, {4305,4234,6260,2321}, {3,2,2,2} }, -- Azure Silk Gloves + [3769] = { 4252, 3, 1, 165, 190, {2319,3390,4340,2321}, {12,1,1,2} }, -- Dark Leather Shoulders + [3770] = { 4253, 3, 1, 160, 185, {2319,4233,3389,3182,2321}, {4,2,2,2,2} }, -- Toughened Leather Gloves + [3771] = { 4254, 3, 1, 170, 190, {4234,5637,2321}, {6,2,1} }, -- Barbaric Gloves + [3116] = { 3240, 2, 1, 65, 80, {2836,2592}, {1,1} }, -- Coarse Weightstone + [3117] = { 3241, 2, 1, 125, 140, {2838,2592}, {1,1} }, -- Heavy Weightstone + [2742] = { 2850, 2, 95, 150, 180, {2841,2880,2319}, {5,4,2} }, -- Bronze Shortsword + [3941] = { 4374, 9, 1, 120, 170, {4364,2841,4404,2592}, {4,2,1,1} }, -- Small Bronze Bomb + [3942] = { 4375, 9, 1, 125, 175, {2841,2592}, {2,1} }, -- Whirring Bronze Gizmo + [3325] = { 3474, 2, 1, 100, 140, {2840,818,774}, {8,1,1} }, -- Gemmed Copper Gauntlets + [3326] = { 3478, 2, 1, 75, 100, {2836}, {2} }, -- Coarse Grinding Stone + [3328] = { 3480, 2, 1, 140, 170, {2841,1210,3478}, {5,1,1} }, -- Rough Bronze Shoulders + [4096] = { 4455, 3, 1, 185, 205, {4461,4234,2321}, {6,4,2} }, -- Raptor Hide Harness + [4097] = { 4456, 3, 1, 185, 205, {4461,4234,2321}, {4,4,2} }, -- Raptor Hide Belt + [3851] = { 4317, 8, 1, 150, 185, {2997,5500,2321}, {6,1,3} }, -- Phoenix Pants + [3501] = { 3835, 2, 1, 190, 215, {3575,2605}, {6,1} }, -- Green Iron Bracers + [3977] = { 4405, 9, 1, 90, 120, {4361,774,4359}, {1,1,1} }, -- Crude Scope + [3978] = { 4406, 9, 1, 135, 160, {4371,1206}, {1,1} }, -- Standard Scope + [4508] = { 4596, 4, 1, 80, 120, {3164,2447,3371}, {1,1,1} }, -- Discolored Healing Potion + [3918] = { 4357, 9, 1, 20, 40, {2835}, {1} }, -- Rough Blasting Powder + [3919] = { 4358, 9, 1, 30, 60, {4357,2589}, {2,1} }, -- Rough Dynamite + [3920] = { 8067, 9, 1, 30, 60, {4357,2840}, {1,1} }, -- Crafted Light Shot + [3852] = { 4318, 8, 1, 150, 180, {2997,2321,3383}, {4,3,1} }, -- Gloves of Meditation + [5244] = { 5081, 3, 1, 70, 100, {5082,2318,2320}, {3,4,1} }, -- Kodo Hide Bag + [4094] = { 4457, 6, 1, 215, 255, {3404,2692}, {1,1} }, -- Barbecued Buzzard Wing + [14293] = { 11287, 10, 1, 75, 115, {4470,10938}, {1,1} }, -- Lesser Magic Wand + [4942] = { 4623, 4, 1, 230, 270, {3858,3821,3372}, {1,1,1} }, -- Lesser Stoneshield Potion + [6500] = { 5527, 6, 1, 165, 205, {5504,2692}, {1,1} }, -- Goblin Deviled Clams + [6501] = { 5526, 6, 1, 130, 170, {5503,1179,2678}, {1,1,1} }, -- Clam Chowder + [7149] = { 5963, 3, 1, 190, 210, {4234,2321,1206}, {10,2,1} }, -- Barbaric Leggings + [6499] = { 5525, 6, 1, 90, 130, {5503,159}, {1,1} }, -- Boiled Clams + [7255] = { 6051, 4, 1, 130, 170, {2453,2452,3371}, {1,1,1} }, -- Holy Protection Potion + [7256] = { 6048, 4, 1, 160, 200, {3369,3356,3372}, {1,1,1} }, -- Shadow Protection Potion + [7257] = { 6049, 4, 1, 210, 250, {4402,6371,3372}, {1,1,1} }, -- Fire Protection Potion + [7258] = { 6050, 4, 1, 205, 245, {3819,3821,3372}, {1,1,1} }, -- Frost Protection Potion + [6458] = { 5507, 9, 1, 160, 185, {4371,4375,4363,1206}, {2,2,1,1} }, -- Ornate Spyglass + [6695] = { 5765, 8, 1, 205, 235, {4305,2325,2321}, {5,1,4} }, -- Black Silk Pack + [6686] = { 5762, 8, 1, 95, 130, {2996,2321,2604}, {4,1,1} }, -- Red Linen Bag + [6688] = { 5763, 8, 1, 140, 175, {2997,2604,2321}, {4,1,1} }, -- Red Woolen Bag + [6517] = { 5540, 2, 1, 140, 170, {2841,3466,5498,3478}, {6,1,2,2} }, -- Pearl-handled Dagger + [6619] = { 5632, 4, 1, 150, 190, {5636,3356,3372}, {1,1,1} }, -- Cowardly Flight Potion + [7151] = { 5964, 3, 1, 195, 215, {4234,4236,2321}, {8,1,2} }, -- Barbaric Shoulders + [6518] = { 5541, 2, 1, 170, 200, {2841,3466,5500,3478,2319}, {10,1,1,2,2} }, -- Iridescent Hammer + [7153] = { 5965, 3, 1, 205, 225, {4234,4305,4291}, {14,2,2} }, -- Guardian Cloak + [7818] = { 6338, 2, 1, 105, 110, {2842,3470}, {1,2} }, -- Silver Rod + [7179] = { 5996, 4, 1, 120, 160, {3820,6370,3371}, {1,2,1} }, -- Elixir of Water Breathing + [7181] = { 1710, 4, 1, 175, 215, {3357,3356,3372}, {1,1,1} }, -- Greater Healing Potion + [6661] = { 5739, 3, 1, 210, 230, {4234,2321,7071}, {14,2,1} }, -- Barbaric Harness + [6521] = { 5542, 8, 1, 115, 150, {2997,2321,5498}, {3,2,1} }, -- Pearl-clasped Cloak + [7183] = { 5997, 4, 1, 55, 95, {765,3371}, {2,1} }, -- Elixir of Minor Defense + [6703] = { 5781, 3, 1, 125, 155, {5784,4231,2318,2321}, {12,1,8,1} }, -- Murloc Scale Breastplate + [6704] = { 5782, 3, 1, 190, 210, {5785,4236,4234,2321}, {12,1,10,3} }, -- Thick Murloc Armor + [6705] = { 5783, 3, 1, 210, 230, {5785,4236,4234,4291}, {16,1,14,1} }, -- Murloc Scale Bracers + [7259] = { 6052, 4, 1, 210, 250, {3357,3820,3372}, {1,1,1} }, -- Nature Protection Potion + [7223] = { 6040, 2, 1, 210, 235, {3859,3486}, {5,2} }, -- Golden Scale Bracers + [7224] = { 6041, 2, 1, 215, 240, {3859,3486,4234}, {8,2,4} }, -- Steel Weapon Chain + [7126] = { 5957, 3, 1, 40, 70, {2318,2320}, {3,1} }, -- Handstitched Leather Vest + [7147] = { 5962, 3, 1, 180, 200, {4234,4305,2321}, {12,2,2} }, -- Guardian Pants + [6690] = { 5766, 8, 1, 155, 185, {4305,2321,3182}, {2,2,2} }, -- Lesser Wizard's Robe + [6692] = { 5770, 8, 1, 170, 200, {4305,2321,3182}, {4,2,2} }, -- Robes of Arcana + [6693] = { 5764, 8, 1, 195, 225, {4305,4234,2321,2605}, {4,3,3,1} }, -- Green Silk Pack + [7133] = { 5958, 3, 1, 130, 155, {2319,2997,2321}, {8,1,1} }, -- Fine Leather Pants + [7135] = { 5961, 3, 1, 140, 165, {2319,4340,2321}, {12,1,1} }, -- Dark Leather Pants + [6702] = { 5780, 3, 1, 120, 150, {5784,2318,2321}, {8,6,1} }, -- Murloc Scale Belt + [7430] = { 6219, 9, 1, 70, 90, {2840}, {6} }, -- Arclight Spanner + [7624] = { 6241, 8, 1, 55, 90, {2996,2320,2324}, {3,1,1} }, -- White Linen Robe + [7629] = { 6239, 8, 1, 80, 115, {2996,2320,2604}, {3,1,1} }, -- Red Linen Vest + [7793] = { nil, 10, 1, 130, 170, {10939}, {3} }, -- Enchant 2H Weapon - Lesser Intellect + [7421] = { 6218, 10, 1, 5, 10, {6217,10940,10938}, {1,1,1} }, -- Runed Copper Rod + [7776] = { nil, 10, 1, 115, 155, {10939,10938}, {1,1} }, -- Enchant Chest - Lesser Mana + [7745] = { nil, 10, 1, 130, 170, {10940,10978}, {4,1} }, -- Enchant 2H Weapon - Minor Impact + [7934] = { 6452, 1, 1, 80, 150, {1475}, {1} }, -- Anti-Venom + [7935] = { 6453, 1, 1, 130, 200, {1288}, {1} }, -- Strong Anti-Venom + [7643] = { 6264, 8, 1, 140, 175, {2997,2321,2604}, {5,3,3} }, -- Greater Adept's Robe + [7786] = { nil, 10, 1, 120, 160, {10940,10939}, {4,2} }, -- Enchant Weapon - Minor Beastslayer + [7953] = { 6466, 3, 1, 120, 150, {6470,4231,2321}, {8,1,1} }, -- Deviate Scale Cloak + [7788] = { nil, 10, 1, 120, 160, {10940,10939,10978}, {2,1,1} }, -- Enchant Weapon - Minor Striking + [7633] = { 6242, 8, 1, 95, 130, {2996,2320,6260}, {4,2,2} }, -- Blue Linen Robe + [3775] = { 4258, 3, 1, 190, 210, {4236,4234,2321,7071}, {2,4,1,1} }, -- Guardian Belt + [8776] = { 7026, 8, 1, 50, 85, {2996,2320}, {1,1} }, -- Linen Belt + [7408] = { 6214, 2, 1, 105, 145, {2840,2880,2318}, {12,2,2} }, -- Heavy Copper Maul + [7845] = { 6373, 4, 1, 165, 205, {6371,3356,3372}, {2,1,1} }, -- Elixir of Firepower + [6415] = { 5476, 6, 1, 90, 130, {5468,2678}, {1,1} }, -- Fillet of Frenzy + [7639] = { 6263, 8, 1, 125, 160, {2997,2321,6260}, {4,2,2} }, -- Blue Overalls + [7928] = { 6450, 1, 1, 150, 210, {4306}, {1} }, -- Silk Bandage + [6618] = { 5633, 4, 1, 195, 235, {5637,3356,3372}, {1,1,1} }, -- Great Rage Potion + [7859] = { nil, 10, 1, 145, 185, {10998}, {2} }, -- Enchant Bracer - Lesser Spirit + [7623] = { 6238, 8, 1, 55, 90, {2996,2320}, {3,1} }, -- Brown Linen Robe + [7795] = { 6339, 10, 1, 130, 170, {6338,10940,10939,1210}, {1,6,3,1} }, -- Runed Silver Rod + [7954] = { 6467, 3, 1, 130, 155, {6471,6470,2321}, {2,6,2} }, -- Deviate Scale Gloves + [7955] = { 6468, 3, 1, 140, 165, {6471,6470,2321}, {10,10,2} }, -- Deviate Scale Belt + [7817] = { 6350, 2, 1, 125, 155, {2841,3470}, {6,6} }, -- Rough Bronze Boots + [7636] = { 6243, 8, 1, 115, 150, {2997,2321,2605}, {3,2,1} }, -- Green Woolen Robe + [3376] = { 3665, 6, 1, 170, 210, {3685,2692}, {1,1} }, -- Curiously Tasty Omelet + [7841] = { 6372, 4, 1, 130, 170, {2452,6370,3371}, {1,1,1} }, -- Swim Speed Potion + [7863] = { nil, 10, 1, 150, 190, {10940}, {8} }, -- Enchant Boots - Minor Stamina + [6624] = { 5634, 4, 1, 175, 215, {6370,3820,3372}, {2,1,1} }, -- Free Action Potion + [7748] = { nil, 10, 1, 105, 145, {10940,10938}, {2,2} }, -- Enchant Chest - Lesser Health + [7420] = { nil, 10, 1, 70, 110, {10940}, {1} }, -- Enchant Chest - Minor Health + [7867] = { nil, 10, 1, 150, 190, {10940,10998}, {6,2} }, -- Enchant Boots - Minor Agility + [7221] = { 6042, 2, 1, 180, 210, {3575,3478}, {6,4} }, -- Iron Shield Spike + [8762] = { 7050, 8, 1, 170, 180, {4305,2321}, {3,2} }, -- Silk Headband + [6413] = { 5473, 6, 1, 60, 100, {5466}, {1} }, -- Scorpid Surprise + [6414] = { 5474, 6, 1, 75, 115, {5467,2678}, {1,1} }, -- Roasted Kodo Meat + [6418] = { 5479, 6, 1, 140, 180, {5470,2692}, {1,1} }, -- Crispy Lizard Tail + [6419] = { 5480, 6, 1, 150, 190, {5471,2678}, {1,4} }, -- Lean Venison + [7222] = { 6043, 2, 1, 190, 215, {3575,3478,1705}, {4,2,1} }, -- Iron Counterweight + [7428] = { nil, 10, 1, 80, 120, {10938,10940}, {1,1} }, -- Enchant Bracer - Minor Deflect + [7771] = { nil, 10, 1, 110, 150, {10940,10939}, {3,1} }, -- Enchant Cloak - Minor Protection + [7861] = { nil, 10, 1, 150, 190, {6371,10998}, {1,1} }, -- Enchant Cloak - Lesser Fire Resistance + [7892] = { 6384, 8, 1, 145, 180, {2997,6260,4340,2321}, {4,2,1,1} }, -- Stylish Blue Shirt + [7893] = { 6385, 8, 1, 145, 180, {2997,2605,4340,2321}, {4,2,1,1} }, -- Stylish Green Shirt + [7857] = { nil, 10, 1, 145, 185, {10940,10998}, {4,1} }, -- Enchant Chest - Health + [7630] = { 6240, 8, 1, 80, 115, {2996,2320,6260}, {3,1,1} }, -- Blue Linen Vest + [7156] = { 5966, 3, 1, 210, 230, {4234,4236,4291}, {4,1,1} }, -- Guardian Gloves + [7213] = { 6038, 6, 1, 215, 255, {4655,2692}, {1,1} }, -- Giant Clam Scorcho + [6417] = { 5478, 6, 1, 130, 170, {5051}, {1} }, -- Dig Rat Stew + [8607] = { 6890, 6, 1, 80, 120, {3173}, {1} }, -- Smoked Bear Meat + [8795] = { 7060, 8, 1, 210, 240, {4305,7072,6260,4291}, {6,2,2,2} }, -- Azure Shoulders + [8804] = { 7064, 8, 1, 225, 255, {4305,7068,6371,4304,2604,4291}, {6,2,2,2,4,2} }, -- Crimson Silk Gloves + [8483] = { 6795, 8, 1, 170, 180, {4305,2324,4291}, {3,2,1} }, -- White Swashbuckler's Shirt + [8797] = { 7061, 8, 1, 215, 245, {4305,7067,4234,7071,4291}, {5,4,4,1,2} }, -- Earthen Silk Belt + [8789] = { 7056, 8, 1, 200, 230, {4305,2604,6371,4291}, {5,2,2,1} }, -- Crimson Silk Cloak + [8243] = { 4852, 9, 1, 185, 225, {4611,4377,4306}, {1,1,1} }, -- Flash Bomb + [3757] = { 4240, 8, 1, 105, 140, {2997,2321}, {3,1} }, -- Woolen Bag + [9062] = { 7279, 3, 1, 60, 90, {2318,2320}, {3,4} }, -- Small Leather Ammo Pouch + [9064] = { 7280, 3, 1, 65, 95, {2318,2320}, {5,5} }, -- Rugged Leather Pants + [7454] = { nil, 10, 1, 95, 135, {10940,10938}, {1,2} }, -- Enchant Cloak - Minor Resistance + [7457] = { nil, 10, 1, 100, 140, {10940}, {3} }, -- Enchant Bracer - Minor Stamina + [7828] = { 4594, 6, 1, 190, 230, {6362}, {1} }, -- Rockscale Cod + [8895] = { 7189, 9, 1, 245, 265, {10026,10559,4234,9061,10560}, {1,2,4,2,1} }, -- Goblin Rocket Boots + [8339] = { 6714, 9, 1, 115, 130, {4364,2592}, {4,1} }, -- EZ-Thro Dynamite + [6416] = { 5477, 6, 1, 90, 130, {5469,4536}, {1,1} }, -- Strider Stew + [8768] = { 7071, 2, 1, 150, 155, {3575}, {1} }, -- Iron Buckle + [7753] = { 4592, 6, 1, 90, 130, {6289}, {1} }, -- Longjaw Mud Snapper + [7754] = { 6316, 6, 1, 90, 130, {6317,2678}, {1,1} }, -- Loch Frenzy Delight + [7755] = { 4593, 6, 1, 140, 180, {6308}, {1} }, -- Bristle Whisker Catfish + [9065] = { 7281, 3, 1, 100, 130, {2318,2320}, {6,4} }, -- Light Leather Bracers + [8770] = { 7054, 8, 1, 210, 240, {4339,7067,7070,7068,7069,4291}, {2,2,2,2,2,2} }, -- Robe of Power + [7752] = { 787, 6, 1, 45, 85, {6303}, {1} }, -- Slitherskin Mackerel + [8791] = { 7058, 8, 1, 205, 225, {4305,2604,2321}, {4,2,2} }, -- Crimson Silk Vest + [8793] = { 7059, 8, 1, 210, 240, {4305,6371,2604,4291}, {5,2,2,2} }, -- Crimson Silk Shoulders + [7779] = { nil, 10, 1, 115, 155, {10940,10939}, {2,1} }, -- Enchant Bracer - Minor Agility + [7766] = { nil, 10, 1, 105, 145, {10938}, {2} }, -- Enchant Bracer - Minor Spirit + [8489] = { 6796, 8, 1, 185, 195, {4305,2604,4291}, {3,2,1} }, -- Red Swashbuckler's Shirt + [8465] = { 6786, 8, 1, 65, 100, {2996,2320,6260,2324}, {2,1,1,1} }, -- Simple Dress + [8238] = { 6657, 6, 1, 125, 165, {6522,2678}, {1,1} }, -- Savory Deviate Delight + [8240] = { 6662, 4, 1, 120, 160, {6522,2449,3371}, {1,1,1} }, -- Elixir of Giant Growth + [8758] = { 7046, 8, 1, 160, 190, {4305,6260,2321}, {4,2,3} }, -- Azure Silk Pants + [7426] = { nil, 10, 1, 90, 130, {10940,10938}, {2,1} }, -- Enchant Chest - Minor Absorption + [7418] = { nil, 10, 1, 70, 110, {10940}, {1} }, -- Enchant Bracer - Minor Health + [6412] = { 5472, 6, 1, 50, 90, {5465}, {1} }, -- Kaldorei Spider Kabob + [8467] = { 6787, 8, 1, 135, 170, {2997,2324,2321}, {3,4,1} }, -- White Woolen Dress + [8760] = { 7048, 8, 1, 155, 165, {4305,6260,2321}, {2,2,1} }, -- Azure Silk Hood + [7751] = { 6290, 6, 1, 45, 85, {6291}, {1} }, -- Brilliant Smallfish + [8772] = { 7055, 8, 1, 195, 225, {4305,7071,2604,4291}, {4,1,2,1} }, -- Crimson Silk Belt + [8774] = { 7057, 8, 1, 200, 230, {4305,4291}, {5,2} }, -- Green Silken Shoulders + [8784] = { 7065, 8, 1, 185, 215, {4305,2605,4291}, {5,2,1} }, -- Green Silk Armor + [8786] = { 7053, 8, 1, 195, 225, {4305,6260,2321}, {3,2,2} }, -- Azure Silk Cloak + [8604] = { 6888, 6, 1, 45, 85, {6889,2678}, {1,1} }, -- Herb Baked Egg + [8782] = { 7049, 8, 1, 170, 200, {4305,4234,929,2321}, {3,2,4,1} }, -- Truefaith Gloves + [3758] = { 4241, 8, 1, 120, 155, {2997,2605,2321}, {4,1,1} }, -- Green Woolen Bag + [7782] = { nil, 10, 1, 115, 155, {10940}, {5} }, -- Enchant Bracer - Minor Strength + [7827] = { 5095, 6, 1, 90, 130, {6361}, {1} }, -- Rainbow Fin Albacore + [7836] = { 6370, 4, 1, 80, 100, {6358,3371}, {2,1} }, -- Blackmouth Oil + [7837] = { 6371, 4, 1, 150, 170, {6359,3371}, {2,1} }, -- Fire Oil + [8766] = { 7052, 8, 1, 195, 225, {4305,7070,6260,2321,7071}, {4,1,2,2,1} }, -- Azure Silk Belt + [8322] = { 6709, 3, 1, 115, 145, {2318,4231,2320,5498}, {6,1,4,1} }, -- Moonglow Vest + [8334] = { 6712, 9, 1, 115, 130, {2841,4359,2880}, {1,2,1} }, -- Practice Lock + [8764] = { 7051, 8, 1, 190, 220, {4305,7067,2321}, {3,1,2} }, -- Earthen Vest + [9196] = { 7374, 3, 1, 195, 215, {4234,3824,2321}, {10,1,2} }, -- Dusky Leather Armor + [9197] = { 7375, 3, 1, 195, 215, {7392,4234,2321}, {4,10,2} }, -- Green Whelp Armor + [9926] = { 7918, 2, 1, 225, 245, {3860,4234}, {8,6} }, -- Heavy Mithril Shoulder + [9928] = { 7919, 2, 1, 225, 245, {3860,4338}, {6,4} }, -- Heavy Mithril Gauntlet + [9942] = { 7925, 2, 1, 240, 260, {3860,4234,4338}, {8,6,4} }, -- Mithril Scale Gloves + [9931] = { 7920, 2, 1, 230, 250, {3860}, {12} }, -- Mithril Scale Pants + [9201] = { 7378, 3, 1, 205, 225, {4234,2325,4291}, {16,1,2} }, -- Dusky Bracers + [9202] = { 7386, 3, 1, 210, 230, {7392,4234,4291}, {6,8,2} }, -- Green Whelp Bracers + [8366] = { 6730, 2, 1, 110, 150, {2840,774,3470}, {12,2,2} }, -- Ironforge Chain + [9811] = { 7913, 2, 1, 185, 210, {3575,5635,1210,3486}, {8,4,2,2} }, -- Barbaric Iron Shoulders + [27725] = { 22252, 8, 1, 315, 345, {14048,14342,13468,14227}, {6,2,1,4} }, -- Satchel of Cenarius + [9959] = { 7930, 2, 1, 250, 270, {3860}, {16} }, -- Heavy Mithril Breastplate + [9997] = { 7943, 2, 1, 250, 275, {3860,6037,7966,4304}, {14,4,1,2} }, -- Wicked Mithril Blade + [9957] = { 7929, 2, 1, 250, 270, {3860,7067}, {12,1} }, -- Orcish War Leggings + [9206] = { 7387, 3, 1, 215, 235, {4234,4305,2325,7071}, {10,2,2,1} }, -- Dusky Belt + [9813] = { 7914, 2, 1, 185, 210, {3575,3486}, {20,4} }, -- Barbaric Iron Breastplate + [9814] = { 7915, 2, 1, 200, 225, {3575,5637,5635}, {10,2,2} }, -- Barbaric Iron Helm + [8780] = { 7047, 8, 1, 165, 195, {4305,4234,6048,2321}, {3,2,2,2} }, -- Hands of Darkness + [9194] = { 7372, 3, 1, 170, 190, {4234,2321}, {8,2} }, -- Heavy Leather Ammo Pouch + [9979] = { 7936, 2, 1, 265, 285, {3860,6037,4304,7966,7909}, {14,2,4,1,1} }, -- Ornate Mithril Boots + [9980] = { 7937, 2, 1, 265, 285, {3860,6037,7971,7966}, {16,2,1,1} }, -- Ornate Mithril Helm + [9939] = { 7967, 2, 1, 235, 255, {3860,6037,7966}, {4,2,4} }, -- Mithril Shield Spike + [8778] = { 7027, 8, 1, 160, 190, {4305,2319,6048,2321}, {3,2,1,2} }, -- Boots of Darkness + [7929] = { 6451, 1, 1, 180, 240, {4306}, {2} }, -- Heavy Silk Bandage + [9950] = { 7927, 2, 1, 240, 260, {3860,4338,6037,7966}, {10,6,1,1} }, -- Ornate Mithril Gloves + [9145] = { 7348, 3, 1, 150, 175, {2319,5116,2321}, {8,4,2} }, -- Fletcher's Gloves + [9964] = { 7969, 2, 1, 255, 275, {3860,7966}, {4,3} }, -- Mithril Spurs + [8367] = { 6731, 2, 1, 140, 180, {2840,818,3470}, {16,2,3} }, -- Ironforge Breastplate + [9818] = { 7916, 2, 1, 205, 230, {3575,5637,818,3486}, {12,4,4,2} }, -- Barbaric Iron Boots + [9820] = { 7917, 2, 1, 210, 235, {3575,3486,5637}, {14,3,2} }, -- Barbaric Iron Gloves + [9058] = { 7276, 3, 1, 40, 70, {2318,2320}, {2,1} }, -- Handstitched Leather Cloak + [9059] = { 7277, 3, 1, 40, 70, {2318,2320}, {2,3} }, -- Handstitched Leather Bracers + [9060] = { 7278, 3, 1, 60, 90, {2318,2320}, {4,2} }, -- Light Leather Quiver + [7443] = { nil, 10, 1, 80, 120, {10938}, {1} }, -- Enchant Chest - Minor Mana + [9935] = { 7922, 2, 1, 235, 255, {3859,7966}, {14,1} }, -- Steel Plate Helm + [9937] = { 7924, 2, 1, 235, 255, {3860,3864}, {8,2} }, -- Mithril Scale Bracers + [9983] = { 7955, 2, 1, 70, 110, {2840,2880,3470,2318}, {10,2,1,1} }, -- Copper Claymore + [9198] = { 7377, 3, 1, 200, 220, {4234,7067,7070,2321}, {6,2,2,2} }, -- Frost Leather Cloak + [9068] = { 7282, 3, 1, 125, 155, {2318,4231,2321}, {10,1,1} }, -- Light Leather Pants + [9995] = { 7942, 2, 1, 245, 270, {3860,7909,7966,4304}, {16,2,1,4} }, -- Blue Glittering Axe + [9146] = { 7349, 3, 1, 160, 185, {2319,3356,2321}, {8,4,2} }, -- Herbalist's Gloves + [9966] = { 7932, 2, 1, 255, 275, {3860,4304,3864}, {14,4,4} }, -- Mithril Scale Shoulders + [9968] = { 7933, 2, 1, 255, 275, {3860,4304}, {14,4} }, -- Heavy Mithril Boots + [9970] = { 7934, 2, 1, 255, 275, {3860,7909}, {14,1} }, -- Heavy Mithril Helm + [9972] = { 7935, 2, 1, 260, 280, {3860,6037,7077,7966}, {16,6,1,1} }, -- Ornate Mithril Breastplate + [8802] = { 7063, 8, 1, 220, 250, {4305,7068,3827,2604,4291}, {8,4,2,4,1} }, -- Crimson Silk Robe + [9193] = { 7371, 3, 1, 170, 190, {4234,2321}, {8,2} }, -- Heavy Quiver + [9974] = { 7939, 2, 1, 265, 285, {3860,6037,7910,7971,7966}, {12,24,4,4,2} }, -- Truesilver Breastplate + [9993] = { 7941, 2, 1, 235, 260, {3860,3864,7966,4234}, {12,2,1,4} }, -- Heavy Mithril Axe + [9954] = { 7938, 2, 1, 245, 265, {3860,6037,7909,3864,5966,7966}, {10,8,3,3,1,2} }, -- Truesilver Gauntlets + [9933] = { 7921, 2, 1, 230, 250, {3860,1705}, {10,2} }, -- Heavy Mithril Pants + [8799] = { 7062, 8, 1, 215, 235, {4305,2604,4291}, {4,2,2} }, -- Crimson Silk Pantaloons + [9961] = { 7931, 2, 1, 250, 270, {3860,4338}, {10,6} }, -- Mithril Coif + [10550] = { 8195, 3, 1, 250, 270, {4304,4291}, {12,4} }, -- Nightscape Cloak + [10007] = { 7961, 2, 1, 270, 295, {3860,7081,6037,3823,7909,7966,4304}, {28,6,8,2,6,4,2} }, -- Phantom Blade + [10009] = { 7946, 2, 1, 270, 295, {3860,7075,7966,4304}, {18,2,1,4} }, -- Runed Mithril Hammer + [10011] = { 7959, 2, 1, 275, 300, {3860,7972,6037,7966,4304}, {28,10,10,6,6} }, -- Blight + [10499] = { 8175, 3, 1, 225, 245, {4304,4291}, {7,2} }, -- Nightscape Tunic + [9207] = { 7390, 3, 1, 220, 240, {4234,7428,3824,4291}, {8,2,1,2} }, -- Dusky Boots + [9208] = { 7391, 3, 1, 220, 240, {4234,2459,4337,4291}, {10,2,2,1} }, -- Swift Boots + [10621] = { 8345, 3, 1, 245, 265, {4304,8368,8146,8343,8172}, {18,2,8,4,2} }, -- Wolfshead Helm + [9195] = { 7373, 3, 1, 185, 205, {4234,2325,2321}, {10,1,2} }, -- Dusky Leather Leggings + [10560] = { 8202, 3, 1, 260, 280, {4304,8152,8343}, {10,6,2} }, -- Big Voodoo Pants + [10841] = { 8545, 1, 1, 240, 300, {4338}, {2} }, -- Heavy Mageweave Bandage + [10516] = { 8192, 3, 1, 230, 250, {4304,4338,4291}, {8,6,3} }, -- Nightscape Shoulders + [9147] = { 7352, 3, 1, 160, 185, {2319,7067,2321}, {6,1,2} }, -- Earthen Leather Shoulders + [10572] = { 8212, 3, 1, 270, 290, {4304,8153,8172}, {16,6,2} }, -- Wild Leather Leggings + [10840] = { 8544, 1, 1, 210, 270, {4338}, {1} }, -- Mageweave Bandage + [8368] = { 6733, 2, 1, 170, 200, {2841,1210,3478}, {8,3,4} }, -- Ironforge Gauntlets + [10013] = { 7947, 2, 1, 280, 305, {3860,6037,7910,7966,4304}, {12,6,2,1,2} }, -- Ebon Shiv + [10487] = { 8173, 3, 1, 220, 240, {4304,4291}, {5,1} }, -- Thick Armor Kit + [10518] = { 8198, 3, 1, 230, 250, {4304,8167,8343}, {8,12,1} }, -- Turtle Scale Bracers + [10574] = { 8215, 3, 1, 270, 290, {4304,8153,8172}, {16,6,2} }, -- Wild Leather Cloak + [12584] = { 10558, 9, 1, 150, 190, {3577}, {1} }, -- Gold Power Core + [10507] = { 8176, 3, 1, 225, 245, {4304,4291}, {5,2} }, -- Nightscape Headband + [10570] = { 8208, 3, 1, 270, 290, {4304,8154,8343}, {10,20,2} }, -- Tough Scorpid Helm + [9918] = { 7964, 2, 1, 200, 210, {7912}, {1} }, -- Solid Sharpening Stone + [9921] = { 7965, 2, 1, 200, 210, {7912,4306}, {1,1} }, -- Solid Weightstone + [9273] = { 7148, 9, 1, 160, 200, {3575,4375,814,4306,1210,7191}, {6,2,2,2,2,1} }, -- Goblin Jumper Cables + [9916] = { 7963, 2, 1, 225, 250, {3859,3486}, {16,3} }, -- Steel Breastplate + [9952] = { 7928, 2, 1, 245, 265, {3860,6037,4304}, {12,1,6} }, -- Ornate Mithril Shoulders + [9920] = { 7966, 2, 1, 200, 210, {7912}, {4} }, -- Solid Grinding Stone + [9513] = { 7676, 6, 1, 100, 140, {2452,159}, {1,1} }, -- Thistle Tea + [12585] = { 10505, 9, 1, 175, 195, {7912}, {2} }, -- Solid Blasting Powder + [9985] = { 7956, 2, 1, 155, 185, {2841,3466,2319}, {8,1,1} }, -- Bronze Warhammer + [9986] = { 7957, 2, 1, 160, 190, {2841,3466,2319}, {12,2,2} }, -- Bronze Greatsword + [9987] = { 7958, 2, 1, 165, 195, {2841,3466,2319}, {14,1,2} }, -- Bronze Battle Axe + [9148] = { 7358, 3, 1, 165, 190, {2319,5373,2321}, {10,2,2} }, -- Pilferer's Gloves + [9149] = { 7359, 3, 1, 170, 195, {2319,7067,2997,2321}, {12,2,2,2} }, -- Heavy Earthen Gloves + [9072] = { 7284, 3, 1, 145, 170, {7287,2319,2321}, {6,4,1} }, -- Red Whelp Gloves + [9074] = { 7285, 3, 1, 145, 170, {2457,2319,2321}, {1,6,1} }, -- Nimble Leather Gloves + [10098] = { 6037, 7, 1, 230, 230, {7911}, {1} }, -- Smelt Truesilver + [10509] = { 8187, 3, 1, 225, 245, {4304,8167,8343}, {6,8,1} }, -- Turtle Scale Gloves + [9945] = { 7926, 2, 1, 240, 260, {3860,6037,7966,7909}, {12,1,1,1} }, -- Ornate Mithril Pants + [10619] = { 8347, 3, 1, 245, 265, {4304,8165,8343,8172}, {24,12,4,2} }, -- Dragonscale Gauntlets + [10544] = { 8211, 3, 1, 245, 265, {4304,8153,8172}, {12,2,1} }, -- Wild Leather Vest + [10482] = { 8172, 3, 1, 200, 200, {8169,8150}, {1,1} }, -- Cured Thick Hide + [10533] = { 8205, 3, 1, 240, 260, {4304,8154,4291}, {10,4,2} }, -- Tough Scorpid Bracers + [11448] = { 6149, 4, 1, 220, 260, {3358,3821,3372}, {1,1,1} }, -- Greater Mana Potion + [11449] = { 8949, 4, 1, 205, 245, {3820,3821,3372}, {1,1,1} }, -- Elixir of Agility + [12621] = { 10513, 9, 1, 245, 285, {3860,10505}, {2,2} }, -- Mithril Gyro-Shot + [12599] = { 10561, 9, 1, 215, 255, {3860}, {3} }, -- Mithril Casing + [10529] = { 8210, 3, 1, 240, 260, {4304,8153,8172}, {10,1,1} }, -- Wild Leather Shoulders + [12596] = { 10512, 9, 1, 210, 250, {3860,10505}, {1,1} }, -- Hi-Impact Mithril Slugs + [12597] = { 10546, 9, 1, 230, 250, {10559,7909,4304}, {1,2,2} }, -- Deadly Scope + [11447] = { 8827, 4, 1, 190, 230, {6370,3357,3372}, {1,1,1} }, -- Elixir of Waterwalking + [12619] = { 10562, 9, 1, 235, 275, {10561,10560,10505}, {2,1,2} }, -- Hi-Explosive Bomb + [9070] = { 7283, 3, 1, 125, 150, {7286,2319,2321}, {12,4,1} }, -- Black Whelp Cloak + [12048] = { 9998, 8, 1, 220, 250, {4339,4291}, {2,3} }, -- Black Mageweave Vest + [10564] = { 8207, 3, 1, 260, 280, {4304,8154,8343}, {12,16,2} }, -- Tough Scorpid Shoulders + [11459] = { 9149, 4, 1, 240, 280, {3575,9262,8831,4625}, {4,1,4,4} }, -- Philosophers' Stone + [11452] = { 9030, 4, 1, 225, 265, {7067,3821,8925}, {1,1,1} }, -- Restorative Potion + [10632] = { 8348, 3, 1, 270, 290, {4304,7077,7075,8172,8343}, {40,8,4,2,4} }, -- Helm of Fire + [10630] = { 8346, 3, 1, 250, 270, {4304,7079,7075,8172,8343}, {20,8,2,1,4} }, -- Gauntlets of the Sea + [10490] = { 8174, 3, 1, 220, 240, {4234,4236,4291}, {12,2,2} }, -- Comfortable Leather Hat + [10525] = { 8203, 3, 1, 240, 260, {4304,8154,4291}, {12,12,4} }, -- Tough Scorpid Breastplate + [10650] = { 8367, 3, 1, 275, 295, {4304,8165,8343,8172}, {40,30,4,4} }, -- Dragonscale Breastplate + [11643] = { 9366, 2, 1, 225, 245, {3859,3577,3486,3864}, {10,4,4,1} }, -- Golden Scale Gauntlets + [11466] = { 9088, 4, 1, 255, 295, {8836,8839,8925}, {1,1,1} }, -- Gift of Arthas + [10511] = { 8189, 3, 1, 230, 250, {4304,8167,8343}, {6,12,1} }, -- Turtle Scale Breastplate + [12622] = { 10504, 9, 1, 265, 285, {4304,1529,7909,10286,8153}, {8,3,3,2,2} }, -- Green Lens + [10556] = { 8185, 3, 1, 255, 275, {4304,8167,8343}, {14,28,1} }, -- Turtle Scale Leggings + [10558] = { 8197, 3, 1, 255, 275, {4304,8343}, {16,2} }, -- Nightscape Boots + [10562] = { 8216, 3, 1, 260, 280, {4304,8152,8343}, {14,4,2} }, -- Big Voodoo Cloak + [10531] = { 8201, 3, 1, 240, 260, {4304,8151,8343}, {8,6,1} }, -- Big Voodoo Mask + [10546] = { 8214, 3, 1, 245, 265, {4304,8153,8172}, {10,2,1} }, -- Wild Leather Helmet + [10554] = { 8209, 3, 1, 255, 275, {4304,8154,4291}, {12,12,6} }, -- Tough Scorpid Boots + [10568] = { 8206, 3, 1, 265, 285, {4304,8154,8343}, {14,8,2} }, -- Tough Scorpid Leggings + [10542] = { 8204, 3, 1, 245, 265, {4304,8154,4291}, {6,8,2} }, -- Tough Scorpid Gloves + [10005] = { 7944, 2, 1, 265, 290, {3860,7909,1705,1206,7966,4338}, {14,1,2,2,1,2} }, -- Dazzling Mithril Rapier + [12620] = { 10548, 9, 1, 260, 280, {10559,7910,6037}, {1,1,2} }, -- Sniper Scope + [10548] = { 8193, 3, 1, 250, 270, {4304,4291}, {14,4} }, -- Nightscape Pants + [10520] = { 8200, 3, 1, 235, 255, {4304,8151,8343}, {10,4,1} }, -- Big Voodoo Robe + [10552] = { 8191, 3, 1, 250, 270, {4304,8167,8343}, {14,24,1} }, -- Turtle Scale Helm + [12056] = { 10007, 8, 1, 230, 260, {4339,2604,8343}, {3,2,1} }, -- Red Mageweave Vest + [12903] = { 10721, 9, 1, 235, 255, {7387,3860,6037,10560,7909}, {1,4,2,1,2} }, -- Gnomish Harm Prevention Belt + [12085] = { 10034, 8, 1, 245, 255, {4339,8343}, {4,2} }, -- Tuxedo Shirt + [12087] = { 10038, 8, 1, 260, 290, {4339,7079,8343}, {5,6,3} }, -- Stormcloth Shoulders + [12089] = { 10035, 8, 1, 250, 260, {4339,8343}, {4,3} }, -- Tuxedo Pants + [12090] = { 10039, 8, 1, 265, 295, {4339,7079,8343,4304}, {6,6,3,2} }, -- Stormcloth Boots + [12720] = { 10580, 9, 1, 235, 255, {10561,10505,10558,3860}, {1,2,1,2} }, -- Goblin "Boom" Box + [12068] = { 10020, 8, 1, 240, 270, {4339,7079,8343}, {5,3,2} }, -- Stormcloth Vest + [12069] = { 10042, 8, 1, 240, 270, {4339,7077,8343}, {5,2,2} }, -- Cindercloth Robe + [12064] = { 10052, 8, 1, 225, 235, {4339,6261,8343}, {2,2,1} }, -- Orange Martial Shirt + [12065] = { 10050, 8, 1, 240, 270, {4339,4291}, {4,2} }, -- Mageweave Bag + [12259] = { 10423, 2, 1, 180, 205, {2841,2842,3478}, {12,4,2} }, -- Silvered Bronze Leggings + [12091] = { 10040, 8, 1, 255, 265, {4339,8343}, {5,3} }, -- White Wedding Dress + [12586] = { 10507, 9, 1, 175, 195, {10505,4306}, {1,1} }, -- Solid Dynamite + [12591] = { 10560, 9, 1, 200, 240, {3860,4338,10505}, {1,1,1} }, -- Unstable Trigger + [12081] = { 10030, 8, 1, 255, 285, {4339,4589,8343}, {3,6,2} }, -- Admiral's Hat + [12088] = { 10044, 8, 1, 260, 290, {4339,7077,8343,4304}, {5,1,3,2} }, -- Cindercloth Boots + [12070] = { 10021, 8, 1, 240, 270, {4339,8153,10286,8343}, {6,6,2,2} }, -- Dreamweave Vest + [11458] = { 9144, 4, 1, 240, 280, {8153,8831,8925}, {1,1,1} }, -- Wildvine Potion + [11450] = { 8951, 4, 1, 215, 255, {3355,3821,3372}, {1,1,1} }, -- Elixir of Greater Defense + [11451] = { 8956, 4, 1, 220, 260, {4625,3821,8925}, {1,1,1} }, -- Oil of Immolation + [10001] = { 7945, 2, 1, 255, 280, {3860,7971,1210,7966,4304}, {16,1,4,1,2} }, -- Big Black Mace + [10003] = { 7954, 2, 1, 260, 285, {3860,7075,6037,3864,1529,7966,4304}, {24,4,6,5,5,4,4} }, -- The Shatterer + [11453] = { 9036, 4, 1, 225, 265, {3358,8831,8925}, {1,1,1} }, -- Magic Resistance Potion + [11454] = { 9060, 2, 1, 225, 250, {3860,3577,6037}, {5,1,1} }, -- Inlaid Mithril Cylinder + [11456] = { 9061, 4, 1, 225, 265, {4625,9260,3372}, {1,1,1} }, -- Goblin Rocket Fuel + [11457] = { 3928, 4, 1, 230, 270, {8838,3358,8925}, {1,1,1} }, -- Superior Healing Potion + [12758] = { 10588, 9, 1, 265, 285, {10543,9061,3860,10560}, {1,4,4,1} }, -- Goblin Rocket Helmet + [11479] = { 3577, 4, 1, 240, 280, {3575}, {1} }, -- Transmute: Iron to Gold + [12055] = { 10004, 8, 1, 230, 260, {4339,10285,8343}, {3,2,1} }, -- Shadoweave Robe + [17181] = { 12810, 10, 1, 250, 260, {8170,16202}, {1,1} }, -- Enchanted Leather + [12066] = { 10018, 8, 1, 240, 270, {4339,2604,8343}, {3,2,2} }, -- Red Mageweave Gloves + [12082] = { 10031, 8, 1, 255, 285, {4339,10285,8343,4304}, {6,6,3,2} }, -- Shadoweave Boots + [12900] = { 10719, 9, 1, 205, 245, {10559,10560,3860}, {1,1,4} }, -- Mobile Alarm + [12760] = { 10646, 9, 1, 205, 245, {4338,10505,10560}, {1,3,1} }, -- Goblin Sapper Charge + [12083] = { 10032, 8, 1, 255, 285, {4339,7079,8343}, {4,4,2} }, -- Stormcloth Headband + [12084] = { 10033, 8, 1, 255, 285, {4339,2604,8343}, {4,2,2} }, -- Red Mageweave Headband + [12603] = { 10514, 9, 1, 215, 255, {10561,10560,10505}, {1,1,1} }, -- Mithril Frag Bomb + [12718] = { 10543, 9, 1, 225, 245, {3860,3864,7068}, {8,1,4} }, -- Goblin Construction Helmet + [12062] = { 10010, 8, 1, 235, 265, {4339,7079,8343}, {4,2,2} }, -- Stormcloth Pants + [11472] = { 9206, 4, 1, 260, 300, {8838,8846,8925}, {1,1,1} }, -- Elixir of Giants + [10647] = { 8349, 3, 1, 270, 290, {4304,8168,7971,8172,8343}, {40,40,2,4,4} }, -- Feathered Breastplate + [12050] = { 10001, 8, 1, 225, 255, {4339,8343}, {3,1} }, -- Black Mageweave Robe + [11465] = { 9179, 4, 1, 250, 290, {8839,3358,8925}, {1,1,1} }, -- Elixir of Greater Intellect + [11473] = { 9210, 4, 1, 260, 300, {8845,4342,8925}, {2,1,1} }, -- Ghost Dye + [12086] = { 10025, 8, 1, 260, 290, {4339,10285,8343}, {2,8,2} }, -- Shadoweave Mask + [12589] = { 10559, 9, 1, 195, 235, {3860}, {3} }, -- Mithril Tube + [12590] = { 10498, 9, 1, 175, 215, {3859}, {4} }, -- Gyromatic Micro-Adjustor + [12614] = { 10510, 9, 1, 240, 260, {10559,10560,4400,3860,3864}, {2,1,1,6,2} }, -- Mithril Heavy-bore Rifle + [10566] = { 8213, 3, 1, 265, 285, {4304,8153,8172}, {14,4,2} }, -- Wild Leather Boots + [12587] = { 10499, 9, 1, 195, 215, {4234,3864}, {6,2} }, -- Bright-Eye Goggles + [11460] = { 9154, 4, 1, 245, 285, {8836,8925}, {1,1} }, -- Elixir of Detect Undead + [11461] = { 9155, 4, 1, 250, 290, {8839,3821,8925}, {1,1,1} }, -- Arcane Elixir + [11478] = { 9233, 4, 1, 265, 305, {8846,8925}, {2,1} }, -- Elixir of Detect Demon + [11464] = { 9172, 4, 1, 250, 290, {8845,8838,8925}, {1,1,1} }, -- Invisibility Potion + [12063] = { 10011, 8, 1, 235, 265, {4339,7079,8343}, {3,2,2} }, -- Stormcloth Gloves + [11480] = { 6037, 4, 1, 240, 280, {3860}, {1} }, -- Transmute: Mithril to Truesilver + [12045] = { 10046, 8, 1, 50, 85, {2996,2318,2320}, {2,1,1} }, -- Simple Linen Boots + [12046] = { 10047, 8, 1, 100, 135, {2996,2321}, {4,1} }, -- Simple Kilt + [12047] = { 10048, 8, 1, 145, 180, {2997,2604,2321}, {5,3,1} }, -- Colorful Kilt + [12049] = { 9999, 8, 1, 220, 250, {4339,4291}, {2,3} }, -- Black Mageweave Leggings + [12052] = { 10002, 8, 1, 225, 255, {4339,10285,8343}, {3,2,1} }, -- Shadoweave Pants + [12902] = { 10720, 9, 1, 230, 250, {10559,10285,4337,10505,3860}, {1,2,4,2,4} }, -- Gnomish Net-o-Matic Projector + [15628] = { 11825, 9, 1, 205, 205, {4394,7077,7191,3860}, {1,1,1,6} }, -- Pet Bombling + [12905] = { 10724, 9, 1, 245, 265, {10026,10559,4234,10505,4389}, {1,2,4,8,4} }, -- Gnomish Rocket Boots + [12615] = { 10502, 9, 1, 245, 265, {4304,7910}, {4,2} }, -- Spellpower Goggles Xtreme + [13631] = { nil, 10, 1, 175, 215, {11134,11083}, {1,1} }, -- Enchant Shield - Lesser Stamina + [13695] = { nil, 10, 1, 220, 260, {11137,11139}, {4,1} }, -- Enchant 2H Weapon - Impact + [13522] = { nil, 10, 1, 160, 200, {11082,6048}, {1,1} }, -- Enchant Cloak - Lesser Shadow Resistance + [12092] = { 10041, 8, 1, 265, 295, {4339,8153,10286,8343,6037,1529}, {8,4,2,3,1,1} }, -- Dreamweave Circlet + [12899] = { 10716, 9, 1, 225, 245, {10559,10560,3860,8151,1529}, {1,1,4,4,2} }, -- Gnomish Shrink Ray + [12075] = { 10054, 8, 1, 235, 245, {4339,4342,8343}, {2,2,2} }, -- Lavender Mageweave Shirt + [13529] = { nil, 10, 1, 170, 210, {11083,11084}, {3,1} }, -- Enchant 2H Weapon - Lesser Impact + [13935] = { nil, 10, 1, 255, 295, {11175}, {2} }, -- Enchant Boots - Agility + [13887] = { nil, 10, 1, 245, 285, {11174,11137}, {2,3} }, -- Enchant Gloves - Strength + [13646] = { nil, 10, 1, 190, 230, {11134,11083}, {1,2} }, -- Enchant Bracer - Lesser Deflection + [13620] = { nil, 10, 1, 170, 210, {11083,6370}, {1,3} }, -- Enchant Gloves - Fishing + [13628] = { 11130, 10, 1, 175, 215, {11128,5500,11082,11083}, {1,1,2,2} }, -- Runed Golden Rod + [13622] = { nil, 10, 1, 175, 215, {11082}, {2} }, -- Enchant Bracer - Lesser Intellect + [13648] = { nil, 10, 1, 190, 230, {11083}, {6} }, -- Enchant Bracer - Stamina + [19072] = { 15093, 3, 1, 300, 320, {8170,14047,14341}, {12,10,1} }, -- Runic Leather Belt + [11467] = { 9187, 4, 1, 255, 295, {8838,3821,8925}, {1,1,1} }, -- Elixir of Greater Agility + [11468] = { 9197, 4, 1, 255, 295, {8831,8925}, {3,1} }, -- Elixir of Dream Vision + [12061] = { 10056, 8, 1, 220, 230, {4339,6261,8343}, {1,1,1} }, -- Orange Mageweave Shirt + [13890] = { nil, 10, 1, 245, 285, {11177,7909,11174}, {1,1,1} }, -- Enchant Boots - Minor Speed + [13905] = { nil, 10, 1, 250, 290, {11175,11176}, {1,2} }, -- Enchant Shield - Greater Spirit + [12754] = { 10586, 9, 1, 235, 275, {10561,9061,10507,10560}, {1,1,6,1} }, -- The Big One + [13501] = { nil, 10, 1, 155, 195, {11083}, {2} }, -- Enchant Bracer - Lesser Stamina + [12907] = { 10726, 9, 1, 255, 275, {3860,6037,10558,7910,4338}, {10,4,1,2,4} }, -- Gnomish Mind Control Cap + [13380] = { nil, 10, 1, 135, 175, {10998,10940}, {1,6} }, -- Enchant 2H Weapon - Lesser Spirit + [13503] = { nil, 10, 1, 165, 205, {11083,11084}, {2,1} }, -- Enchant Weapon - Lesser Striking + [12906] = { 10725, 9, 1, 250, 270, {10561,6037,3860,9060,10558,1529}, {1,6,6,2,1,2} }, -- Gnomish Battle Chicken + [12077] = { 10053, 8, 1, 240, 250, {4339,2325,8343,2324}, {3,1,1,1} }, -- Simple Black Dress + [12078] = { 10029, 8, 1, 250, 280, {4339,2604,8343}, {4,2,3} }, -- Red Mageweave Shoulders + [12080] = { 10055, 8, 1, 240, 250, {4339,10290,8343}, {3,1,1} }, -- Pink Mageweave Shirt + [12072] = { 10024, 8, 1, 245, 275, {4339,8343}, {3,2} }, -- Black Mageweave Headband + [12073] = { 10026, 8, 1, 245, 275, {4339,8343,4304}, {3,2,2} }, -- Black Mageweave Boots + [13939] = { nil, 10, 1, 260, 300, {11176,11175}, {2,1} }, -- Enchant Bracer - Greater Strength + [12079] = { 10051, 8, 1, 250, 280, {4339,2604,8343}, {4,2,2} }, -- Red Mageweave Bag + [12067] = { 10019, 8, 1, 240, 270, {4339,8153,10286,8343}, {4,4,2,2} }, -- Dreamweave Gloves + [10097] = { 3860, 7, 1, 175, 175, {3858}, {1} }, -- Smelt Mithril + [12908] = { 10727, 9, 1, 260, 280, {10559,9061,3860,6037,10560}, {2,4,6,6,1} }, -- Goblin Dragon Gun + [12897] = { 10545, 9, 1, 230, 250, {10500,10559,10558,8151,4234}, {1,1,2,2,2} }, -- Gnomish Goggles + [13378] = { nil, 10, 1, 130, 170, {10998,10940}, {1,2} }, -- Enchant Shield - Minor Stamina + [12609] = { 10592, 4, 1, 220, 260, {3821,3818,3372}, {1,1,1} }, -- Catseye Elixir + [11477] = { 9224, 4, 1, 265, 305, {8846,8845,8925}, {1,1,1} }, -- Elixir of Demonslaying + [12624] = { 10576, 9, 1, 270, 290, {3860,7077,6037,9060,9061,7910}, {14,4,4,2,2,2} }, -- Mithril Mechanical Dragonling + [12093] = { 10036, 8, 1, 265, 295, {4339,8343}, {5,3} }, -- Tuxedo Jacket + [12260] = { 10421, 2, 1, 15, 55, {2840}, {4} }, -- Rough Copper Vest + [12594] = { 10500, 9, 1, 225, 245, {4385,3864,7068,4234}, {1,2,2,4} }, -- Fire Goggles + [12595] = { 10508, 9, 1, 225, 245, {10559,10560,4400,3860,7068}, {1,1,1,4,2} }, -- Mithril Blunderbuss + [13028] = { 10841, 6, 1, 215, 255, {3821,159}, {1,1} }, -- Goldthorn Tea + [14379] = { 11128, 2, 1, 155, 160, {3577,3478}, {1,2} }, -- Golden Rod + [14380] = { 11144, 2, 1, 205, 210, {6037,3486}, {1,1} }, -- Truesilver Rod + [12074] = { 10027, 8, 1, 245, 275, {4339,8343}, {3,2} }, -- Black Mageweave Shoulders + [12076] = { 10028, 8, 1, 250, 280, {4339,10285,8343}, {5,4,2} }, -- Shadoweave Shoulders + [13612] = { nil, 10, 1, 170, 210, {11083,2772}, {1,3} }, -- Enchant Gloves - Mining + [15633] = { 11826, 9, 1, 205, 205, {7075,4389,7191,3860,6037}, {1,2,1,2,1} }, -- Lil' Smoky + [13635] = { nil, 10, 1, 175, 215, {11138,11083}, {1,3} }, -- Enchant Cloak - Defense + [12607] = { 10501, 9, 1, 240, 260, {4304,7909,10592}, {4,2,1} }, -- Catseye Ultra Goggles + [12071] = { 10023, 8, 1, 240, 270, {4339,10285,8343}, {5,5,2} }, -- Shadoweave Gloves + [12617] = { 10506, 9, 1, 250, 270, {3860,10561,6037,818,774}, {8,1,1,4,4} }, -- Deepdive Helmet + [12618] = { 10503, 9, 1, 250, 270, {4304,7910}, {6,2} }, -- Rose Colored Goggles + [11476] = { 9264, 4, 1, 265, 305, {8845,8925}, {3,1} }, -- Elixir of Shadow Power + [12616] = { 10518, 9, 1, 245, 265, {4339,10285,10560,10505}, {4,2,1,4} }, -- Parachute Cloak + [13841] = { nil, 10, 1, 235, 275, {11137,6037}, {3,3} }, -- Enchant Gloves - Advanced Mining + [13815] = { nil, 10, 1, 230, 270, {11174,11137}, {1,1} }, -- Enchant Gloves - Agility + [13607] = { nil, 10, 1, 170, 210, {11082,10998}, {1,2} }, -- Enchant Chest - Mana + [13941] = { nil, 10, 1, 265, 305, {11178,11176,11175}, {1,3,2} }, -- Enchant Chest - Stats + [13419] = { nil, 10, 1, 135, 175, {10998}, {1} }, -- Enchant Cloak - Minor Agility + [13626] = { nil, 10, 1, 175, 215, {11082,11083,11084}, {1,1,1} }, -- Enchant Chest - Minor Stats + [13817] = { nil, 10, 1, 230, 270, {11137}, {5} }, -- Enchant Shield - Stamina + [13485] = { nil, 10, 1, 155, 195, {10998,10940}, {2,4} }, -- Enchant Shield - Lesser Spirit + [13464] = { nil, 10, 1, 140, 180, {10998,10940,10978}, {1,1,1} }, -- Enchant Shield - Lesser Protection + [13421] = { nil, 10, 1, 140, 180, {10940,10978}, {6,1} }, -- Enchant Cloak - Lesser Protection + [13947] = { nil, 10, 1, 270, 310, {11178,11176}, {2,3} }, -- Enchant Gloves - Riding Skill + [13661] = { nil, 10, 1, 200, 240, {11137}, {1} }, -- Enchant Bracer - Strength + [12053] = { 10003, 8, 1, 230, 260, {4339,8343}, {2,2} }, -- Black Mageweave Gloves + [12895] = { 10713, 9, 1, 205, 205, {10648,10647}, {1,1} }, -- Inlaid Mithril Cylinder Plans + [12059] = { 10008, 8, 1, 220, 230, {4339,2324,8343}, {1,1,1} }, -- White Bandit Mask + [12060] = { 10009, 8, 1, 230, 260, {4339,2604,8343}, {3,2,1} }, -- Red Mageweave Pants + [13822] = { nil, 10, 1, 230, 270, {11174}, {2} }, -- Enchant Bracer - Intellect + [13898] = { nil, 10, 1, 285, 325, {11177,7078}, {4,1} }, -- Enchant Weapon - Fiery Weapon + [13794] = { nil, 10, 1, 225, 265, {11174}, {1} }, -- Enchant Cloak - Resistance + [13663] = { nil, 10, 1, 205, 245, {11135}, {1} }, -- Enchant Chest - Greater Mana + [13836] = { nil, 10, 1, 235, 275, {11137}, {5} }, -- Enchant Boots - Stamina + [13933] = { nil, 10, 1, 255, 295, {11178,3829}, {1,1} }, -- Enchant Shield - Frost Resistance + [13700] = { nil, 10, 1, 220, 260, {11135,11137,11139}, {2,2,1} }, -- Enchant Chest - Lesser Stats + [13687] = { nil, 10, 1, 210, 250, {11135,11134}, {1,2} }, -- Enchant Boots - Lesser Spirit + [13536] = { nil, 10, 1, 165, 205, {11083}, {2} }, -- Enchant Bracer - Lesser Strength + [13917] = { nil, 10, 1, 250, 290, {11175,11174}, {1,2} }, -- Enchant Chest - Superior Mana + [12904] = { 10723, 9, 1, 240, 260, {10561,3860,4389,10560}, {1,2,1,1} }, -- Gnomish Ham Radio + [13943] = { nil, 10, 1, 265, 305, {11178,11175}, {2,2} }, -- Enchant Weapon - Greater Striking + [12722] = { 10585, 9, 1, 240, 260, {10561,3860,4389,10560}, {1,2,1,1} }, -- Goblin Radio + [13538] = { nil, 10, 1, 165, 205, {10940,11082,11084}, {2,1,1} }, -- Enchant Chest - Lesser Absorption + [13931] = { nil, 10, 1, 255, 295, {11175,11176}, {1,2} }, -- Enchant Bracer - Deflection + [13945] = { nil, 10, 1, 265, 305, {11176}, {5} }, -- Enchant Bracer - Greater Stamina + [13637] = { nil, 10, 1, 180, 220, {11083,11134}, {1,1} }, -- Enchant Boots - Lesser Agility + [13640] = { nil, 10, 1, 180, 220, {11083}, {3} }, -- Enchant Chest - Greater Health + [12716] = { 10577, 9, 1, 225, 245, {10559,3860,10505,10558,7068}, {2,4,5,1,1} }, -- Goblin Mortar + [12755] = { 10587, 9, 1, 230, 270, {10561,10505,6037,10560,4407}, {2,4,6,1,2} }, -- Goblin Bomb Dispenser + [12759] = { 10645, 9, 1, 260, 280, {10559,10560,12808,7972,9060}, {2,1,1,4,1} }, -- Gnomish Death Ray + [13693] = { nil, 10, 1, 215, 255, {11135,11139}, {2,1} }, -- Enchant Weapon - Striking + [13689] = { nil, 10, 1, 215, 255, {11135,11137,11139}, {2,2,1} }, -- Enchant Shield - Lesser Block + [13642] = { nil, 10, 1, 185, 225, {11134}, {1} }, -- Enchant Bracer - Spirit + [13240] = { 10577, 9, 1, nil, nil, {10577,3860,10505}, {1,1,3} }, -- The Mortar: Reloaded + [13915] = { nil, 10, 1, 250, 290, {11177,11176,9224}, {1,2,1} }, -- Enchant Weapon - Demonslaying + [12715] = { 10644, 9, 1, 205, 205, {10648,10647}, {1,1} }, -- Goblin Rocket Fuel Recipe + [12717] = { 10542, 9, 1, 225, 245, {3860,3864,7067}, {8,1,4} }, -- Goblin Mining Helmet + [13846] = { nil, 10, 1, 240, 280, {11174,11137}, {3,1} }, -- Enchant Bracer - Greater Spirit + [12719] = { 10579, 9, 1, 210, 250, {3030,10505,3860}, {100,2,2} }, -- Explosive Arrow + [13617] = { nil, 10, 1, 170, 210, {11083,3356}, {1,3} }, -- Enchant Gloves - Herbalism + [13937] = { nil, 10, 1, 260, 300, {11178,11176}, {2,2} }, -- Enchant 2H Weapon - Greater Impact + [13644] = { nil, 10, 1, 190, 230, {11083}, {4} }, -- Enchant Boots - Lesser Stamina + [15255] = { 11590, 9, 1, 200, 240, {3860,4338,10505}, {1,1,1} }, -- Mechanical Repair Kit + [14930] = { 8217, 3, 1, 245, 265, {4304,8172,8949,4291}, {12,1,1,4} }, -- Quickdraw Quiver + [14932] = { 8218, 3, 1, 245, 265, {4304,8172,8951,4291}, {10,1,1,6} }, -- Thick Leather Ammo Pouch + [13882] = { nil, 10, 1, 245, 285, {11174}, {2} }, -- Enchant Cloak - Lesser Agility + [13702] = { 11145, 10, 1, 220, 260, {11144,7971,11135,11137}, {1,1,2,2} }, -- Runed Truesilver Rod + [14810] = { 11290, 10, 1, 195, 235, {11291,11135,11137}, {1,1,1} }, -- Greater Mystic Wand + [13746] = { nil, 10, 1, 225, 265, {11137}, {3} }, -- Enchant Cloak - Greater Defense + [13653] = { nil, 10, 1, 195, 235, {11134,5637,11138}, {1,2,1} }, -- Enchant Weapon - Lesser Beastslayer + [13655] = { nil, 10, 1, 195, 235, {11134,7067,11138}, {1,1,1} }, -- Enchant Weapon - Lesser Elemental Slayer + [14807] = { 11288, 10, 1, 110, 150, {4470,10939}, {1,1} }, -- Greater Magic Wand + [14809] = { 11289, 10, 1, 175, 215, {11291,11134,11083}, {1,1,1} }, -- Lesser Mystic Wand + [13858] = { nil, 10, 1, 240, 280, {11137}, {6} }, -- Enchant Chest - Superior Health + [14891] = { 11371, 7, 1, 230, 230, {11370}, {8} }, -- Smelt Dark Iron + [15973] = { 12260, 2, 1, 215, 240, {3859,3577,7068,4234}, {10,4,2,2} }, -- Searing Golden Blade + [13948] = { nil, 10, 1, 270, 310, {11178,8153}, {2,2} }, -- Enchant Gloves - Minor Haste + [15906] = { 12217, 6, 1, 240, 280, {12037,4402,2692}, {1,1,1} }, -- Dragonbreath Chili + [13868] = { nil, 10, 1, 245, 285, {11137,8838}, {3,3} }, -- Enchant Gloves - Advanced Herbalism + [13657] = { nil, 10, 1, 195, 235, {11134,7068}, {1,1} }, -- Enchant Cloak - Fire Resistance + [13659] = { nil, 10, 1, 200, 240, {11135,11137}, {1,1} }, -- Enchant Shield - Spirit + [13698] = { nil, 10, 1, 220, 260, {11137,7392}, {1,3} }, -- Enchant Gloves - Skinning + [15293] = { 11606, 2, 1, 290, 310, {11371,7077}, {10,2} }, -- Dark Iron Mail + [15294] = { 11607, 2, 1, 295, 315, {11371,7077}, {26,4} }, -- Dark Iron Sunderer + [15295] = { 11605, 2, 1, 300, 320, {11371,7077}, {6,1} }, -- Dark Iron Shoulders + [15296] = { 11604, 2, 1, 305, 325, {11371,7077}, {20,8} }, -- Dark Iron Plate + [15596] = { 11811, 10, 1, 285, 325, {11382,7078,14343}, {1,1,3} }, -- Smoking Heart of the Mountain + [15915] = { 12216, 6, 1, 265, 305, {12206,2692}, {1,2} }, -- Spiced Chili Crab + [16654] = { 12418, 2, 1, 305, 325, {12359,7077}, {18,4} }, -- Radiant Gloves + [16655] = { 12631, 2, 1, 310, 330, {12359,12655,7078,7910}, {20,6,2,4} }, -- Fiery Plate Gauntlets + [16639] = { 12644, 2, 1, 255, 260, {12365}, {4} }, -- Dense Grinding Stone + [16726] = { 12612, 2, 1, 320, 340, {12359,12360,6037,12364}, {30,2,2,1} }, -- Runic Plate Helm + [16728] = { 12636, 2, 1, 320, 340, {12359,12655,8168,12799,12364}, {40,4,60,6,2} }, -- Helm of the Great Chief + [15933] = { 12218, 6, 1, 265, 305, {12207,3713}, {1,2} }, -- Monster Omelet + [15935] = { 12224, 6, 1, 45, 85, {12223,2678}, {1,1} }, -- Crispy Bat Wing + [6617] = { 5631, 4, 1, 90, 130, {5635,2450,3371}, {1,1,1} }, -- Rage Potion + [15863] = { 12213, 6, 1, 215, 255, {12037,2692}, {1,1} }, -- Carrion Surprise + [15865] = { 12214, 6, 1, 215, 255, {12037,2596}, {1,1} }, -- Mystery Stew + [15855] = { 12210, 6, 1, 215, 255, {12184,2692}, {1,1} }, -- Roast Raptor + [15856] = { 13851, 6, 1, 215, 255, {12203,2692}, {1,1} }, -- Hot Wolf Ribs + [16664] = { 12610, 2, 1, 320, 340, {12359,12360,3577}, {20,2,6} }, -- Runic Plate Shoulders + [16153] = { 12359, 7, 1, 250, 250, {10620}, {1} }, -- Smelt Thorium + [15833] = { 12190, 4, 1, 245, 285, {8831,8925}, {3,1} }, -- Dreamless Sleep Potion + [15972] = { 12259, 2, 1, 205, 230, {3859,3466,1206,7067,4234}, {10,2,1,1,1} }, -- Glinting Steel Dagger + [2538] = { 2679, 6, 1, 45, 85, {2672}, {1} }, -- Charred Wolf Meat + [16640] = { 12643, 2, 1, 255, 260, {12365,14047}, {1,1} }, -- Dense Weightstone + [16641] = { 12404, 2, 1, 255, 260, {12365}, {1} }, -- Dense Sharpening Stone + [16642] = { 12405, 2, 1, 270, 290, {12359,12361,11188}, {16,1,4} }, -- Thorium Armor + [16643] = { 12406, 2, 1, 270, 290, {12359,11186}, {12,4} }, -- Thorium Belt + [16652] = { 12409, 2, 1, 300, 320, {12359,8170,11185}, {20,8,4} }, -- Thorium Boots + [16967] = { 12772, 2, 1, 295, 320, {12359,3577,6037,12361,8170}, {30,4,2,2,4} }, -- Inlaid Thorium Hammer + [17187] = { 12360, 4, 1, 275, 290, {12359,12363}, {1,1} }, -- Transmute: Arcanite + [16745] = { 12618, 2, 1, 320, 340, {12360,12655,7076,7080,12364,12800}, {8,24,4,4,2,2} }, -- Enchanted Thorium Breastplate + [16746] = { 12641, 2, 1, 320, 340, {12360,12655,12364,12800}, {30,30,6,6} }, -- Invulnerable Mail + [16969] = { 12773, 2, 1, 300, 325, {12359,12799,12644,8170}, {20,2,2,4} }, -- Ornate Thorium Handaxe + [16742] = { 12620, 2, 1, 320, 340, {12360,12655,7076,12799,12800}, {6,16,6,2,1} }, -- Enchanted Thorium Helm + [17559] = { 7078, 4, 1, 275, 290, {7082}, {1} }, -- Transmute: Air to Fire + [16730] = { 12429, 2, 1, 320, 340, {12359,7910}, {44,2} }, -- Imperial Plate Leggings + [16994] = { 12784, 2, 1, 320, 340, {12360,12810,12644}, {20,6,2} }, -- Arcanite Reaper + [16995] = { 12783, 2, 1, 320, 340, {12360,12655,12810,7910,12800,12799,12644}, {10,10,2,6,6,6,4} }, -- Heartseeker + [17560] = { 7076, 4, 1, 275, 290, {7078}, {1} }, -- Transmute: Fire to Earth + [17561] = { 7080, 4, 1, 275, 290, {7076}, {1} }, -- Transmute: Earth to Water + [16724] = { 12633, 2, 1, 320, 340, {12359,12655,6037,3577,12800}, {20,4,6,6,2} }, -- Whitesoul Helm + [16731] = { 12613, 2, 1, 320, 340, {12359,12360,7910}, {40,2,1} }, -- Runic Breastplate + [16732] = { 12614, 2, 1, 320, 340, {12359,12360,7910}, {40,2,1} }, -- Runic Plate Leggings + [15910] = { 12215, 6, 1, 240, 280, {12204,3713,159}, {2,1,1} }, -- Heavy Kodo Stew + [16665] = { 12611, 2, 1, 320, 340, {12359,12360,2842}, {20,2,10} }, -- Runic Plate Boots + [18242] = { 13929, 6, 1, 280, 320, {13756,2692}, {1,2} }, -- Hot Smoked Bass + [16661] = { 12632, 2, 1, 315, 335, {12359,12655,7080,12361}, {20,4,4,4} }, -- Storm Gauntlets + [16988] = { 12796, 2, 1, 320, 340, {12359,12360,12809,12810,7076}, {50,15,4,6,10} }, -- Hammer of the Titans + [16662] = { 12414, 2, 1, 320, 340, {12359,11186}, {26,4} }, -- Thorium Leggings + [16663] = { 12422, 2, 1, 320, 340, {12359,7910}, {40,2} }, -- Imperial Plate Chest + [17562] = { 7082, 4, 1, 275, 290, {7080}, {1} }, -- Transmute: Water to Air + [17563] = { 7080, 4, 1, 275, 290, {12808}, {1} }, -- Transmute: Undeath to Water + [18243] = { 13931, 6, 1, 290, 330, {13759,159}, {1,1} }, -- Nightfin Soup + [16991] = { 12798, 2, 1, 320, 340, {12359,12360,12808,12364,12644,12810}, {40,12,10,8,2,4} }, -- Annihilator + [16650] = { 12624, 2, 1, 290, 310, {12359,12655,12803,8153,12364}, {40,2,4,4,1} }, -- Wildthorn Mail + [16973] = { 12776, 2, 1, 305, 330, {12359,12655,12364,12804,8170}, {20,6,2,4,4} }, -- Enchanted Battlehammer + [16992] = { 12797, 2, 1, 320, 340, {12360,12361,12800,7080,12644,12810}, {18,8,8,4,2,4} }, -- Frostguard + [16993] = { 12794, 2, 1, 320, 340, {12655,12364,12799,7076,12810}, {20,8,8,6,4} }, -- Masterwork Stormhammer + [16646] = { 12428, 2, 1, 285, 305, {12359,8170,3864}, {24,6,2} }, -- Imperial Plate Shoulders + [18246] = { 13934, 6, 1, 315, 355, {13893,2692,3713}, {1,1,1} }, -- Mightfish Steak + [16651] = { 12645, 2, 1, 295, 315, {12359,12644,7076}, {4,4,2} }, -- Thorium Shield Spike + [16660] = { 12625, 2, 1, 310, 330, {12359,12360,12364,7080}, {20,4,2,2} }, -- Dawnbringer Shoulders + [16741] = { 12639, 2, 1, 320, 340, {12360,12655,7076,12361,12799}, {15,20,10,4,4} }, -- Stronghold Gauntlets + [17180] = { 12655, 10, 1, 250, 260, {12359,11176}, {1,3} }, -- Enchanted Thorium + [15292] = { 11608, 2, 1, 285, 305, {11371,7077}, {18,4} }, -- Dark Iron Pulverizer + [16645] = { 12416, 2, 1, 280, 300, {12359,7077}, {10,2} }, -- Radiant Belt + [16658] = { 12427, 2, 1, 315, 335, {12359,7910}, {34,2} }, -- Imperial Plate Helm + [15853] = { 12209, 6, 1, 165, 205, {1015,2678}, {1,1} }, -- Lean Wolf Steak + [16978] = { 12777, 2, 1, 305, 330, {12655,7078,7077,12800,12644}, {10,4,4,2,2} }, -- Blazing Rapier + [16656] = { 12419, 2, 1, 310, 330, {12359,7077}, {14,4} }, -- Radiant Boots + [16657] = { 12426, 2, 1, 315, 335, {12359,7910,7909}, {34,1,1} }, -- Imperial Plate Boots + [16990] = { 12790, 2, 1, 320, 340, {12360,12800,12811,12799,12810,12644}, {15,8,1,4,8,2} }, -- Arcanite Champion + [16960] = { 12764, 2, 1, 285, 310, {12359,12644,8170}, {16,2,4} }, -- Thorium Greatsword + [16965] = { 12769, 2, 1, 295, 320, {12359,12803,8153,12799,12644,8170}, {30,6,6,6,2,8} }, -- Bleakwood Hew + [16971] = { 12775, 2, 1, 305, 330, {12359,12644,8170}, {40,6,6} }, -- Huge Thorium Battleaxe + [15861] = { 12212, 6, 1, 215, 255, {12202,159,4536}, {1,1,2} }, -- Jungle Stew + [16648] = { 12415, 2, 1, 290, 310, {12359,7077,7910}, {18,2,1} }, -- Radiant Breastplate + [16649] = { 12425, 2, 1, 290, 310, {12359,7910}, {20,1} }, -- Imperial Plate Bracers + [16980] = { 12779, 2, 1, 310, 335, {12359,12799,12644,8170}, {30,2,2,4} }, -- Rune Edge + [16659] = { 12417, 2, 1, 315, 335, {12359,7077}, {18,4} }, -- Radiant Circlet + [16644] = { 12408, 2, 1, 275, 295, {12359,11184}, {12,4} }, -- Thorium Bracers + [16667] = { 12628, 2, 1, 305, 325, {12359,12662,12361,7910}, {40,10,4,4} }, -- Demon Forged Breastplate + [16647] = { 12424, 2, 1, 285, 305, {12359,8170,7909}, {22,6,1} }, -- Imperial Plate Belt + [16729] = { 12640, 2, 1, 320, 340, {12359,12360,8146,12361,12800}, {80,12,40,10,4} }, -- Lionheart Helm + [16744] = { 12619, 2, 1, 320, 340, {12360,12655,7080,12361,12364}, {10,20,6,2,1} }, -- Enchanted Thorium Leggings + [16970] = { 12774, 2, 1, 300, 325, {12359,12655,7910,12361,12644,8170}, {30,4,4,4,2,4} }, -- Dawn's Edge + [16986] = { 12795, 2, 1, 325, 350, {12655,12360,12662,7910,12644}, {10,10,8,10,2} }, -- Blood Talon + [16987] = { 12802, 2, 1, 325, 350, {12655,12804,12364,12800,12644}, {20,20,2,2,2} }, -- Darkspear + [17557] = { 13453, 4, 1, 290, 330, {8846,13466,8925}, {2,2,1} }, -- Elixir of Brute Force + [17576] = { 13458, 4, 1, 305, 345, {7067,13463,8925}, {1,1,1} }, -- Greater Nature Protection Potion + [23653] = { 19169, 2, 1, 320, 340, {17011,17010,12360,11371,12364}, {8,5,10,12,4} }, -- Nightfall + [17577] = { 13461, 4, 1, 305, 345, {11176,13463,8925}, {1,1,1} }, -- Greater Arcane Protection Potion + [17579] = { 13460, 4, 1, 305, 345, {7069,13463,8925}, {1,1,1} }, -- Greater Holy Protection Potion + [17580] = { 13444, 4, 1, 310, 350, {13463,13467,8925}, {3,2,1} }, -- Major Mana Potion + [17555] = { 13447, 4, 1, 285, 325, {13463,13466,8925}, {1,2,1} }, -- Elixir of the Sages + [17556] = { 13446, 4, 1, 290, 330, {13464,13465,8925}, {2,1,1} }, -- Major Healing Potion + [17553] = { 13443, 4, 1, 275, 315, {8838,8839,8925}, {2,2,1} }, -- Superior Mana Potion + [17565] = { 7076, 4, 1, 275, 290, {12803}, {1} }, -- Transmute: Life to Earth + [18420] = { 14103, 8, 1, 290, 320, {14048,3577,14341}, {4,2,1} }, -- Brightcloth Cloak + [18421] = { 14132, 8, 1, 290, 320, {14048,11176,14341}, {6,1,1} }, -- Wizardweave Leggings + [18422] = { 14134, 8, 1, 290, 320, {14048,7078,7077,7068,14341}, {6,4,4,4,1} }, -- Cloak of Fire + [16983] = { 12781, 2, 1, 310, 335, {12655,12360,12804,12799,12361,12364}, {6,2,4,2,2,1} }, -- Serenity + [16984] = { 12792, 2, 1, 315, 340, {12359,7077,7910,8170}, {30,4,4,4} }, -- Volcanic Hammer + [16653] = { 12410, 2, 1, 300, 320, {12359,7910,11188}, {24,1,4} }, -- Thorium Helm + [16985] = { 12782, 2, 1, 315, 340, {12359,12360,12662,12808,12361,12644,8170}, {40,2,16,8,2,2,4} }, -- Corruption + [16725] = { 12420, 2, 1, 320, 340, {12359,7077}, {20,4} }, -- Radiant Leggings + [17554] = { 13445, 4, 1, 280, 320, {13423,8838,8925}, {2,1,1} }, -- Elixir of Superior Defense + [17632] = { 13503, 4, 1, 315, 330, {7078,7076,7082,7080,12803,9262,13468}, {8,8,8,8,8,2,4} }, -- Alchemist's Stone + [18446] = { 14128, 8, 1, 315, 345, {14048,11176,14341}, {8,2,1} }, -- Wizardweave Robe + [17634] = { 13506, 4, 1, 315, 330, {13423,13465,13468,8925}, {30,10,1,1} }, -- Flask of Petrification + [18245] = { 13933, 6, 1, 315, 355, {13888,159}, {1,1} }, -- Lobster Stew + [17551] = { 13423, 4, 1, 250, 260, {13422,3372}, {1,1} }, -- Stonescale Oil + [17552] = { 13442, 4, 1, 270, 310, {8846,8925}, {3,1} }, -- Mighty Rage Potion + [18241] = { 13930, 6, 1, 265, 305, {13758}, {1} }, -- Filet of Redgill + [18247] = { 13935, 6, 1, 315, 355, {13889,3713}, {1,1} }, -- Baked Salmon + [18244] = { 13932, 6, 1, 290, 330, {13760}, {1} }, -- Poached Sunscale Salmon + [18629] = { 14529, 1, 1, 260, 320, {14047}, {1} }, -- Runecloth Bandage + [18630] = { 14530, 1, 1, 290, 350, {14047}, {2} }, -- Heavy Runecloth Bandage + [18416] = { 14141, 8, 1, 290, 320, {14048,9210,14227,14341}, {6,4,1,1} }, -- Ghostweave Vest + [18413] = { 14142, 8, 1, 285, 315, {14048,9210,14227,14341}, {4,2,1,1} }, -- Ghostweave Gloves + [18452] = { 14140, 8, 1, 315, 345, {14048,14342,12800,12810,14341}, {4,6,1,2,2} }, -- Mooncloth Circlet + [18453] = { 14112, 8, 1, 315, 345, {14048,14256,12662,8170,14341}, {7,6,4,4,2} }, -- Felcloth Shoulders + [18454] = { 14146, 8, 1, 315, 345, {14048,14342,9210,13926,12364,12810,14341}, {10,10,10,6,6,8,2} }, -- Gloves of Spell Mastery + [18455] = { 14156, 8, 1, 315, 345, {14048,14342,14344,17012,14341}, {8,12,2,2,2} }, -- Bottomless Bag + [19062] = { 15067, 3, 1, 290, 310, {8170,15420,1529,14341}, {24,80,2,1} }, -- Ironfeather Shoulders + [19058] = { 15564, 3, 1, 250, 270, {8170}, {5} }, -- Rugged Armor Kit + [18239] = { 13927, 6, 1, 265, 305, {13754,3713}, {1,1} }, -- Cooked Glossy Mightfish + [18434] = { 14045, 8, 1, 295, 325, {14048,7078,14341}, {6,1,1} }, -- Cindercloth Pants + [19796] = { 16004, 9, 1, 295, 315, {16000,11371,10546,12361,12799,8170}, {2,6,2,2,2,4} }, -- Dark Iron Rifle + [19068] = { 15064, 3, 1, 295, 315, {8170,15419,14341}, {28,12,1} }, -- Warbear Harness + [19070] = { 15082, 3, 1, 300, 320, {8170,15408,14341}, {6,8,1} }, -- Heavy Scorpid Belt + [19071] = { 15086, 3, 1, 300, 320, {8170,2325,14341}, {12,1,1} }, -- Wicked Leather Headband + [18560] = { 14342, 8, 1, 290, 320, {14256}, {2} }, -- Mooncloth + [18448] = { 14139, 8, 1, 315, 345, {14048,14342,14341}, {5,5,1} }, -- Mooncloth Shoulders + [18449] = { 13867, 8, 1, 315, 345, {14048,14227,8170,14341}, {7,2,4,1} }, -- Runecloth Shoulders + [18410] = { 14143, 8, 1, 280, 310, {14048,9210,14227,14341}, {3,2,1,1} }, -- Ghostweave Belt + [18411] = { 13870, 8, 1, 280, 310, {14048,7080,14341}, {3,1,1} }, -- Frostweave Gloves + [18412] = { 14043, 8, 1, 285, 315, {14048,7077,14341}, {4,3,1} }, -- Cindercloth Gloves + [19073] = { 15072, 3, 1, 300, 320, {8170,15423,14341}, {8,8,1} }, -- Chimeric Leggings + [18240] = { 13928, 6, 1, 280, 320, {13755,3713}, {1,1} }, -- Grilled Squid + [17566] = { 12803, 4, 1, 275, 290, {7076}, {1} }, -- Transmute: Earth to Life + [19799] = { 16005, 9, 1, 305, 325, {15994,11371,15992,14047}, {2,1,3,3} }, -- Dark Iron Bomb + [17564] = { 12808, 4, 1, 275, 290, {7080}, {1} }, -- Transmute: Water to Undeath + [18414] = { 14100, 8, 1, 285, 315, {14048,3577,14341}, {5,2,1} }, -- Brightcloth Robe + [17637] = { 13512, 4, 1, 315, 330, {13463,13465,13468,8925}, {30,10,1,1} }, -- Flask of Supreme Power + [18439] = { 14104, 8, 1, 305, 335, {14048,3577,14227,14341}, {6,4,1,1} }, -- Brightcloth Pants + [18441] = { 14144, 8, 1, 305, 335, {14048,9210,14341}, {6,4,1} }, -- Ghostweave Pants + [18445] = { 14155, 8, 1, 315, 345, {14048,14342,14341}, {4,1,1} }, -- Mooncloth Bag + [17573] = { 13454, 4, 1, 300, 340, {13463,13465,8925}, {3,1,1} }, -- Greater Arcane Elixir + [17574] = { 13457, 4, 1, 305, 345, {7068,13463,8925}, {1,1,1} }, -- Greater Fire Protection Potion + [21143] = { 17197, 6, 1, 45, 85, {6889,17194}, {1,1} }, -- Gingerbread Cookie + [17575] = { 13456, 4, 1, 305, 345, {7070,13463,8925}, {1,1,1} }, -- Greater Frost Protection Potion + [18415] = { 14101, 8, 1, 285, 315, {14048,3577,14341}, {4,2,1} }, -- Brightcloth Gloves + [23633] = { 19057, 2, 1, 320, 340, {12360,6037,12811}, {2,10,1} }, -- Gloves of the Dawn + [18437] = { 14108, 8, 1, 300, 330, {14048,14256,8170,14341}, {6,4,4,1} }, -- Felcloth Boots + [18438] = { 13865, 8, 1, 300, 330, {14048,14227,14341}, {6,2,1} }, -- Runecloth Pants + [18440] = { 14137, 8, 1, 305, 335, {14048,14342,14341}, {6,4,1} }, -- Mooncloth Leggings + [18442] = { 14111, 8, 1, 305, 335, {14048,14256,14341}, {5,4,1} }, -- Felcloth Hood + [18444] = { 13866, 8, 1, 310, 340, {14048,14227,14341}, {4,2,1} }, -- Runecloth Headband + [18418] = { 14044, 8, 1, 290, 320, {14048,7078,14341}, {5,1,1} }, -- Cindercloth Cloak + [18423] = { 13864, 8, 1, 295, 325, {14048,14227,8170,14341}, {4,2,4,1} }, -- Runecloth Boots + [18424] = { 13871, 8, 1, 295, 325, {14048,7080,14341}, {6,1,1} }, -- Frostweave Pants + [18419] = { 14107, 8, 1, 290, 320, {14048,14256,14341}, {5,4,1} }, -- Felcloth Pants + [18417] = { 13863, 8, 1, 290, 320, {14048,8170,14341}, {4,4,1} }, -- Runecloth Gloves + [17572] = { 13462, 4, 1, 300, 340, {13467,13466,8925}, {2,2,1} }, -- Purification Potion + [19814] = { 16023, 9, 1, 295, 315, {10561,16000,15994,6037,8170,14047}, {1,1,2,1,2,4} }, -- Masterwork Target Dummy + [17571] = { 13452, 4, 1, 295, 335, {13465,13466,8925}, {2,2,1} }, -- Elixir of the Mongoose + [23078] = { 18587, 9, 1, 285, 305, {15994,18631,7191,14227,7910}, {2,2,2,2,2} }, -- Goblin Jumper Cables XL + [17635] = { 13510, 4, 1, 315, 330, {8846,13423,13468,8925}, {30,10,1,1} }, -- Flask of the Titans + [17636] = { 13511, 4, 1, 315, 330, {13463,13467,13468,8925}, {30,10,1,1} }, -- Flask of Distilled Wisdom + [17578] = { 13459, 4, 1, 305, 345, {3824,13463,8925}, {1,1,1} }, -- Greater Shadow Protection Potion + [17570] = { 13455, 4, 1, 295, 335, {13423,10620,8925}, {3,1,1} }, -- Greater Stoneshield Potion + [19669] = { 15872, 2, 1, 275, 285, {12360,12644}, {1,1} }, -- Arcanite Skeleton Key + [22808] = { 18294, 4, 1, 230, 270, {7972,8831,8925}, {1,2,1} }, -- Elixir of Greater Water Breathing + [20016] = { nil, 10, 1, 300, 340, {16203,16204}, {2,4} }, -- Enchant Shield - Superior Spirit + [19793] = { 15996, 9, 1, 285, 305, {12803,15994,10558,8170}, {1,4,1,1} }, -- Lifelike Mechanical Toad + [19794] = { 15999, 9, 1, 290, 310, {10502,7910,12810,14047}, {1,4,2,8} }, -- Spellpower Goggles Xtreme Plus + [19098] = { 15085, 3, 1, 320, 340, {8170,15407,14256,2325,14341}, {20,2,6,4,2} }, -- Wicked Leather Armor + [19065] = { 15092, 3, 1, 295, 315, {8170,7971,14047,14341}, {6,1,6,1} }, -- Runic Leather Bracers + [19066] = { 15071, 3, 1, 295, 315, {8170,15422,14341}, {4,6,1} }, -- Frostsaber Boots + [21144] = { 17198, 6, 1, 75, 115, {6889,1179,17196,17194}, {1,1,1,1} }, -- Egg Nog + [18238] = { 6887, 6, 1, 265, 305, {4603}, {1} }, -- Spotted Yellowtail + [19081] = { 15075, 3, 1, 310, 330, {8170,15423,14341}, {10,10,1} }, -- Chimeric Vest + [19082] = { 15094, 3, 1, 310, 330, {8170,14047,14341}, {14,10,1} }, -- Runic Leather Headband + [19091] = { 15095, 3, 1, 320, 340, {8170,14047,12810,14341}, {18,12,2,1} }, -- Runic Leather Pants + [19095] = { 15059, 3, 1, 320, 340, {8170,12803,14342,15407,14341}, {16,8,2,1,2} }, -- Living Breastplate + [20010] = { nil, 10, 1, 315, 355, {16204,16203}, {6,6} }, -- Enchant Bracer - Superior Strength + [19083] = { 15087, 3, 1, 310, 330, {8170,15407,2325,14341}, {16,1,3,1} }, -- Wicked Leather Pants + [19078] = { 15060, 3, 1, 305, 325, {8170,12803,15407,14341}, {16,6,1,1} }, -- Living Leggings + [19079] = { 15056, 3, 1, 305, 325, {8170,7080,7082,15407,14341}, {16,3,3,1,1} }, -- Stormshroud Armor + [19080] = { 15065, 3, 1, 305, 325, {8170,15419,14341}, {24,14,1} }, -- Warbear Woolies + [20015] = { nil, 10, 1, 305, 345, {16204}, {8} }, -- Enchant Cloak - Superior Defense + [19051] = { 15076, 3, 1, 285, 305, {8170,15408,14341}, {6,6,1} }, -- Heavy Scorpid Vest + [19075] = { 15079, 3, 1, 305, 325, {8170,15408,14341}, {8,12,1} }, -- Heavy Scorpid Leggings + [19077] = { 15048, 3, 1, 305, 325, {8170,15415,15407,14341}, {28,30,1,1} }, -- Blue Dragonscale Breastplate + [19052] = { 15084, 3, 1, 285, 305, {8170,2325,14341}, {8,1,1} }, -- Wicked Leather Bracers + [19053] = { 15074, 3, 1, 285, 305, {8170,15423,14341}, {6,6,1} }, -- Chimeric Gloves + [17638] = { 13513, 4, 1, 315, 330, {13467,13465,13468,8925}, {30,10,1,1} }, -- Flask of Chromatic Resistance + [19093] = { 15138, 3, 1, 320, 340, {15410,14044,14341}, {1,1,1} }, -- Onyxia Scale Cloak + [19094] = { 15051, 3, 1, 320, 340, {8170,15416,12810,15407,14341}, {44,45,2,1,1} }, -- Black Dragonscale Shoulders + [19097] = { 15062, 3, 1, 320, 340, {8170,15417,15407,14341}, {30,14,1,1} }, -- Devilsaur Leggings + [18447] = { 14138, 8, 1, 315, 345, {14048,14342,14341}, {6,4,1} }, -- Mooncloth Vest + [18457] = { 14152, 8, 1, 315, 345, {14048,7078,7082,7076,7080,14341}, {12,10,10,10,10,2} }, -- Robe of the Archmage + [18458] = { 14153, 8, 1, 315, 345, {14048,12662,14256,7078,12808,14341}, {12,20,40,12,12,2} }, -- Robe of the Void + [19815] = { 16006, 9, 1, 305, 325, {12360,14227}, {1,1} }, -- Delicate Arcanite Converter + [19825] = { 16008, 9, 1, 310, 330, {10500,12364,12810}, {1,2,4} }, -- Master Engineer's Goggles + [19567] = { 15846, 9, 1, 270, 290, {10561,12359,10558,10560}, {1,6,1,4} }, -- Salt Shaker + [19059] = { 15054, 3, 1, 290, 310, {8170,7078,7075,14341}, {6,1,1,1} }, -- Volcanic Leggings + [18436] = { 14136, 8, 1, 300, 330, {14048,14256,12808,7080,14341}, {10,12,4,4,1} }, -- Robe of Winter Night + [19795] = { 16000, 9, 1, 295, 315, {12359}, {6} }, -- Thorium Tube + [19060] = { 15046, 3, 1, 290, 310, {8170,15412,14341}, {20,25,1} }, -- Green Dragonscale Leggings + [19061] = { 15061, 3, 1, 290, 310, {8170,12803,14341}, {12,4,1} }, -- Living Shoulders + [19063] = { 15073, 3, 1, 295, 315, {8170,15423,14341}, {4,8,1} }, -- Chimeric Boots + [18405] = { 14046, 8, 1, 275, 305, {14048,8170,14341}, {5,2,1} }, -- Runecloth Bag + [19054] = { 15047, 3, 1, 320, 340, {8170,15414,14341}, {40,30,1} }, -- Red Dragonscale Breastplate + [19084] = { 15063, 3, 1, 310, 330, {8170,15417,14341}, {30,8,1} }, -- Devilsaur Gauntlets + [19085] = { 15050, 3, 1, 310, 330, {8170,15416,15407,14341}, {40,60,1,2} }, -- Black Dragonscale Breastplate + [19086] = { 15066, 3, 1, 310, 330, {8170,15420,1529,15407,14341}, {40,120,1,1,1} }, -- Ironfeather Breastplate + [19790] = { 15993, 9, 1, 280, 300, {15994,12359,15992,14047}, {1,3,3,3} }, -- Thorium Grenade + [19791] = { 15994, 9, 1, 280, 300, {12359,14047}, {3,1} }, -- Thorium Widget + [19074] = { 15069, 3, 1, 305, 325, {8170,15422,14341}, {6,8,1} }, -- Frostsaber Leggings + [18401] = { 14048, 8, 1, 255, 260, {14047}, {5} }, -- Bolt of Runecloth + [19102] = { 15090, 3, 1, 320, 340, {8170,12810,14047,15407,14341}, {22,4,16,1,2} }, -- Runic Leather Armor + [19064] = { 15078, 3, 1, 295, 315, {8170,15408,14341}, {6,8,1} }, -- Heavy Scorpid Gauntlets + [19067] = { 15057, 3, 1, 295, 315, {8170,7080,7082,14341}, {16,2,2,1} }, -- Stormshroud Pants + [20017] = { nil, 10, 1, 285, 325, {11176}, {10} }, -- Enchant Shield - Greater Stamina + [19788] = { 15992, 9, 1, 250, 260, {12365}, {2} }, -- Dense Blasting Powder + [19792] = { 15995, 9, 1, 280, 300, {10559,10561,15994,12359,10546}, {2,2,2,4,1} }, -- Thorium Rifle + [18451] = { 14106, 8, 1, 315, 345, {14048,14256,12662,14341}, {8,8,4,2} }, -- Felcloth Robe + [19089] = { 15049, 3, 1, 315, 335, {8170,15415,12810,15407,14341}, {28,30,2,1,1} }, -- Blue Dragonscale Shoulders + [19090] = { 15058, 3, 1, 315, 335, {8170,7080,7082,12810,14341}, {12,3,3,2,1} }, -- Stormshroud Shoulders + [19092] = { 15088, 3, 1, 320, 340, {8170,2325,14341}, {14,2,2} }, -- Wicked Leather Belt + [18406] = { 13858, 8, 1, 275, 305, {14048,14227,14341}, {5,1,1} }, -- Runecloth Robe + [18407] = { 13857, 8, 1, 275, 305, {14048,14227,14341}, {5,1,1} }, -- Runecloth Tunic + [18408] = { 14042, 8, 1, 275, 305, {14048,7077,14341}, {5,3,1} }, -- Cindercloth Vest + [18409] = { 13860, 8, 1, 280, 310, {14048,14227,14341}, {4,1,1} }, -- Runecloth Cloak + [19087] = { 15070, 3, 1, 315, 335, {8170,15422,14341}, {6,10,1} }, -- Frostsaber Gloves + [18456] = { 14154, 8, 1, 315, 345, {14048,14342,12811,13926,9210,14341}, {12,10,4,4,10,2} }, -- Truefaith Vestments + [19088] = { 15080, 3, 1, 315, 335, {8170,15408,15407,14341}, {8,12,1,1} }, -- Heavy Scorpid Helm + [19103] = { 15096, 3, 1, 320, 340, {8170,12810,14047,15407,14341}, {16,4,18,1,2} }, -- Runic Leather Shoulders + [19106] = { 15141, 3, 1, 320, 340, {8170,15410,15416,14341}, {40,12,60,2} }, -- Onyxia Scale Breastplate + [18450] = { 14130, 8, 1, 315, 345, {14048,11176,7910,14341}, {6,4,1,1} }, -- Wizardweave Turban + [19076] = { 15053, 3, 1, 305, 325, {8170,7078,7076,14341}, {8,1,1,1} }, -- Volcanic Breastplate + [20026] = { nil, 10, 1, 295, 335, {16204,14343}, {6,1} }, -- Enchant Chest - Major Health + [20028] = { nil, 10, 1, 310, 350, {16203,14343}, {3,1} }, -- Enchant Chest - Major Mana + [20035] = { nil, 10, 1, 320, 360, {16203,14344}, {12,2} }, -- Enchant 2H Weapon - Major Spirit + [20013] = { nil, 10, 1, 315, 355, {16203,16204}, {4,4} }, -- Enchant Gloves - Greater Strength + [20036] = { nil, 10, 1, 320, 360, {16203,14344}, {12,2} }, -- Enchant 2H Weapon - Major Intellect + [19800] = { 15997, 9, 1, 305, 325, {12359,15992}, {2,1} }, -- Thorium Shells + [18402] = { 13856, 8, 1, 270, 300, {14048,14341}, {3,1} }, -- Runecloth Belt + [18403] = { 13869, 8, 1, 270, 300, {14048,7079,14341}, {5,2,1} }, -- Frostweave Tunic + [18404] = { 13868, 8, 1, 270, 300, {14048,7079,14341}, {5,2,1} }, -- Frostweave Robe + [20029] = { nil, 10, 1, 305, 345, {14343,7080,7082,13467}, {4,1,1,1} }, -- Enchant Weapon - Icy Chill + [20025] = { nil, 10, 1, 320, 360, {14344,16204,16203}, {4,15,10} }, -- Enchant Chest - Greater Stats + [20051] = { 16207, 10, 1, 310, 350, {16206,13926,16204,16203,14343,14344}, {1,1,10,4,4,2} }, -- Runed Arcanite Rod + [24846] = { 20481, 3, 1, 320, 340, {20500,20498,7078}, {1,20,2} }, -- Spitfire Bracers + [19100] = { 15081, 3, 1, 320, 340, {8170,15408,15407,14341}, {14,14,1,2} }, -- Heavy Scorpid Shoulders + [20008] = { nil, 10, 1, 275, 315, {16202}, {3} }, -- Enchant Bracer - Greater Intellect + [20009] = { nil, 10, 1, 290, 330, {16202,11176}, {3,10} }, -- Enchant Bracer - Superior Spirit + [19101] = { 15055, 3, 1, 320, 340, {8170,7078,7076,14341}, {10,1,1,2} }, -- Volcanic Shoulders + [20012] = { nil, 10, 1, 290, 330, {16202,16204}, {3,3} }, -- Enchant Gloves - Greater Agility + [19104] = { 15068, 3, 1, 320, 340, {8170,15422,15407,14341}, {12,12,1,2} }, -- Frostsaber Tunic + [19107] = { 15052, 3, 1, 320, 340, {8170,15416,12810,15407,14341}, {40,60,4,1,2} }, -- Black Dragonscale Leggings + [20023] = { nil, 10, 1, 315, 355, {16203}, {8} }, -- Enchant Boots - Greater Agility + [19666] = { 15869, 2, 1, 100, 120, {2842,3470}, {1,1} }, -- Silver Skeleton Key + [20014] = { nil, 10, 1, 285, 325, {16202,7077,7075,7079,7081,7972}, {2,1,1,1,1,1} }, -- Enchant Cloak - Greater Resistance + [19819] = { 16009, 9, 1, 310, 330, {16006,10558,15994,12799}, {2,1,1,1} }, -- Voice Amplification Modulator + [19830] = { 16022, 9, 1, 320, 340, {10576,16006,12655,15994,10558,12810}, {1,8,10,6,4,6} }, -- Arcanite Dragonling + [20024] = { nil, 10, 1, 295, 335, {16203,16202}, {2,1} }, -- Enchant Boots - Spirit + [19055] = { 15091, 3, 1, 290, 310, {8170,14047,14341}, {10,6,1} }, -- Runic Leather Gauntlets + [19435] = { 15802, 8, 1, 295, 325, {14048,14342,7971,14341}, {6,4,2,1} }, -- Mooncloth Boots + [19047] = { 15407, 3, 1, 250, 260, {8171,15409}, {1,1} }, -- Cured Rugged Hide + [19048] = { 15077, 3, 1, 275, 295, {8170,15408,14341}, {4,4,1} }, -- Heavy Scorpid Bracers + [20020] = { nil, 10, 1, 280, 320, {11176}, {10} }, -- Enchant Boots - Greater Stamina + [20011] = { nil, 10, 1, 320, 360, {16204}, {15} }, -- Enchant Bracer - Superior Stamina + [19049] = { 15083, 3, 1, 280, 300, {8170,2325,14341}, {8,1,1} }, -- Wicked Leather Gauntlets + [19050] = { 15045, 3, 1, 280, 300, {8170,15412,14341}, {20,25,2} }, -- Green Dragonscale Breastplate + [20626] = { 16766, 6, 1, 265, 305, {7974,2692,1179}, {2,1,1} }, -- Undermine Clam Chowder + [19668] = { 15871, 2, 1, 200, 220, {6037,7966}, {1,1} }, -- Truesilver Skeleton Key + [19831] = { 16040, 9, 1, 320, 340, {16006,12359,14047}, {1,3,1} }, -- Arcane Bomb + [19833] = { 16007, 9, 1, 320, 340, {12360,16000,7078,7076,12800,12810}, {10,2,2,2,2,2} }, -- Flawless Arcanite Rifle + [20650] = { 4304, 3, 1, 200, 205, {4234}, {6} }, -- Thick Leather + [20033] = { nil, 10, 1, 315, 355, {14344,12808}, {4,4} }, -- Enchant Weapon - Unholy Weapon + [20030] = { nil, 10, 1, 315, 355, {14344,16204}, {4,10} }, -- Enchant 2H Weapon - Superior Impact + [20031] = { nil, 10, 1, 320, 360, {14344,16203}, {2,10} }, -- Enchant Weapon - Superior Striking + [20648] = { 2319, 3, 1, 100, 110, {2318}, {4} }, -- Medium Leather + [20649] = { 4234, 3, 1, 150, 160, {2319}, {5} }, -- Heavy Leather + [20848] = { 16980, 8, 1, 315, 345, {14048,17010,17011,12810,14341}, {12,4,4,6,2} }, -- Flarecore Mantle + [20897] = { 17016, 2, 1, 320, 340, {11371,17011,11382,12810}, {18,12,2,2} }, -- Dark Iron Destroyer + [20032] = { nil, 10, 1, 320, 360, {14344,12808,12803}, {6,6,6} }, -- Enchant Weapon - Lifestealing + [20890] = { 17015, 2, 1, 320, 340, {11371,17010,11382,12810}, {16,12,2,2} }, -- Dark Iron Reaver + [23629] = { 19048, 2, 1, 320, 340, {12360,7076,12803}, {4,6,6} }, -- Heavy Timbermaw Boots + [20034] = { nil, 10, 1, 320, 360, {14344,12811}, {4,2} }, -- Enchant Weapon - Crusader + [19667] = { 15870, 2, 1, 150, 170, {3577,3486}, {1,1} }, -- Golden Skeleton Key + [22480] = { 18045, 6, 1, 265, 305, {12208,3713}, {1,1} }, -- Tender Wolf Steak + [20201] = { 16206, 2, 1, 275, 285, {12360,12644}, {3,1} }, -- Arcanite Rod + [20853] = { 16982, 3, 1, 315, 335, {17012,17010,17011,14341}, {20,6,2,2} }, -- Corehound Boots + [20854] = { 16983, 3, 1, 320, 340, {17012,17010,17011,14341}, {15,3,6,2} }, -- Molten Helm + [20849] = { 16979, 8, 1, 315, 345, {14048,17010,7078,12810,14341}, {8,6,4,2,2} }, -- Flarecore Gloves + [20872] = { 16989, 2, 1, 315, 335, {11371,17010,17011}, {6,3,3} }, -- Fiery Chain Girdle + [20916] = { 8364, 6, 1, 215, 255, {8365}, {1} }, -- Mithril Headed Trout + [21940] = { 17716, 9, 1, 190, 230, {3860,4389,17202,3829}, {8,4,4,1} }, -- SnowMaster 9000 + [21943] = { 17721, 3, 1, 210, 230, {4234,7067,4291}, {8,4,1} }, -- Gloves of the Greatfather + [22793] = { 18283, 9, 1, 320, 340, {17011,7076,16006,11371,16000}, {2,2,4,6,1} }, -- Biznicks 247x128 Accurascope + [23705] = { 19052, 3, 1, 310, 330, {8170,12809,7080,15407,14341}, {30,2,4,2,2} }, -- Dawn Treaders + [22868] = { 18408, 8, 1, 315, 345, {14048,7078,7910,14341}, {12,10,2,2} }, -- Inferno Gloves + [23632] = { 19051, 2, 1, 310, 330, {12359,6037,12811}, {8,6,1} }, -- Girdle of the Dawn + [22921] = { 18504, 3, 1, 320, 340, {8170,12804,15407,14341}, {12,12,2,4} }, -- Girdle of Insight + [22732] = { 18253, 4, 1, 310, 330, {10286,13464,13463,18256}, {1,4,4,1} }, -- Major Rejuvenation Potion + [23666] = { 19156, 8, 1, 315, 345, {14342,17010,17011,7078,14227}, {10,2,3,6,4} }, -- Flarecore Robe + [22750] = { nil, 10, 1, 320, 360, {14344,16203,12803,7080,12811}, {4,8,6,6,1} }, -- Enchant Weapon - Healing Power + [22704] = { 18232, 9, 1, 320, 340, {12359,8170,7191,7067,7068}, {12,4,1,2,1} }, -- Field Repair Bot 74A + [20855] = { 16984, 3, 1, 320, 340, {12810,15416,17010,17011,14341}, {6,30,4,3,2} }, -- Black Dragonscale Boots + [23704] = { 19049, 3, 1, 320, 340, {12810,12804,12803,15407,14227}, {8,6,6,2,2} }, -- Timbermaw Brawlers + [23706] = { 19058, 3, 1, 320, 340, {12810,12803,12809,15407,14341}, {8,4,4,2,2} }, -- Golden Mantle of the Dawn + [22434] = { 17968, 10, 1, 320, 310, {17967,16204,16203}, {1,2,2} }, -- Charged Scale of Onyxia + [21161] = { 17193, 2, 1, 325, 350, {17203,11371,12360,7078,11382,17011,17010}, {8,20,50,25,10,10,10} }, -- Sulfuron Hammer + [21923] = { 17708, 4, 1, 210, 250, {3819,3358,3372}, {2,1,1} }, -- Elixir of Frost Power + [22711] = { 18238, 3, 1, 210, 230, {4304,7428,7971,4236,1210,8343}, {6,8,2,2,4,1} }, -- Shadowskin Gloves + [21175] = { 17222, 6, 1, 240, 280, {12205}, {2} }, -- Spider Sausage + [22749] = { nil, 10, 1, 320, 360, {14344,16203,7078,7080,7082,13926}, {4,12,4,4,4,2} }, -- Enchant Weapon - Spell Power + [21945] = { 17723, 8, 1, 200, 210, {4305,2605,4291}, {5,4,1} }, -- Green Holiday Shirt + [20876] = { 17013, 2, 1, 320, 340, {11371,17010,17011}, {16,4,6} }, -- Dark Iron Leggings + [21931] = { nil, 10, 1, 210, 250, {11135,11137,11139,3819}, {3,3,1,2} }, -- Enchant Weapon - Winter's Might + [22813] = { 18258, 8, 1, 285, 295, {14048,8170,18240,14341}, {2,4,1,1} }, -- Gordok Ogre Suit + [20873] = { 16988, 2, 1, 320, 340, {11371,17010,17011}, {16,4,5} }, -- Fiery Chain Shoulders + [20874] = { 17014, 2, 1, 315, 335, {11371,17010,17011}, {4,2,2} }, -- Dark Iron Bracers + [21913] = { 17704, 2, 1, 215, 240, {3859,3829,7070,7069,4234}, {10,1,2,2,2} }, -- Edge of Winter + [22926] = { 18509, 3, 1, 320, 340, {8170,12607,15416,15414,15407,14341}, {30,12,30,30,5,8} }, -- Chromatic Cloak + [22430] = { 17967, 4, 1, 315, 330, {15410}, {1} }, -- Refined Scale of Onyxia + [23628] = { 19043, 2, 1, 310, 330, {12359,7076,12803}, {12,3,3} }, -- Heavy Timbermaw Belt + [23799] = { nil, 10, 1, 310, 350, {14344,16203,16204,7076}, {6,6,4,2} }, -- Enchant Weapon - Strength + [23800] = { nil, 10, 1, 310, 350, {14344,16203,16204,7082}, {6,6,4,2} }, -- Enchant Weapon - Agility + [24136] = { 19690, 2, 1, 320, 340, {12359,19774,19726,7910}, {20,10,2,2} }, -- Bloodsoul Breastplate + [23489] = { 18986, 9, 1, 285, 305, {3860,18631,7075,7079,7909,9060}, {12,2,4,2,4,1} }, -- Ultrasafe Transporter - Gadgetzan + [23652] = { 19168, 2, 1, 320, 340, {17011,17010,12360,11371,12809}, {6,6,10,6,12} }, -- Blackguard + [23708] = { 19157, 3, 1, 320, 340, {17010,17011,17012,12607,15407,14227}, {5,2,4,4,4,4} }, -- Chromatic Gauntlets + [23079] = { 18637, 9, 1, 285, 295, {16000,18631,14047}, {2,1,2} }, -- Major Recombobulator + [23709] = { 19162, 3, 1, 320, 340, {17010,17012,12810,15407,14227}, {8,12,10,4,4} }, -- Corehound Belt + [23801] = { nil, 10, 1, 310, 350, {16204,16203,7080}, {16,4,2} }, -- Enchant Bracer - Mana Regeneration + [23703] = { 19044, 3, 1, 310, 330, {8170,12804,12803,15407,14341}, {30,2,4,2,2} }, -- Might of the Timbermaw + [23486] = { 18984, 9, 1, 285, 305, {3860,18631,7077,7910,10586}, {10,1,4,2,1} }, -- Dimensional Ripper - Everlook + [23636] = { 19148, 2, 1, 320, 340, {17011,17010,11371}, {4,2,4} }, -- Dark Iron Helm + [23637] = { 19164, 2, 1, 320, 340, {17011,17010,17012,11371,11382}, {3,5,4,4,2} }, -- Dark Iron Gauntlets + [22902] = { 18486, 8, 1, 315, 345, {14048,14342,13926,14341}, {6,4,2,2} }, -- Mooncloth Robe + [23804] = { nil, 10, 1, 320, 360, {14344,16203,16204}, {15,12,20} }, -- Enchant Weapon - Mighty Intellect + [22967] = { 17771, 7, 1, 310, 320, {18562,12360,17010,18567}, {1,10,1,3} }, -- Smelt Elementium + [22869] = { 18409, 8, 1, 315, 345, {14048,14342,13926,14341}, {12,6,2,2} }, -- Mooncloth Gloves + [22928] = { 18511, 3, 1, 320, 340, {8170,7082,12753,12809,15407,14341}, {30,12,4,8,4,8} }, -- Shifting Cloak + [23667] = { 19165, 8, 1, 315, 345, {14342,17010,17011,7078,14227}, {8,5,3,10,4} }, -- Flarecore Leggings + [22727] = { 18251, 3, 1, 320, 340, {17012,14341}, {3,2} }, -- Core Armor Kit + [23803] = { nil, 10, 1, 320, 360, {14344,16203,16204}, {10,8,15} }, -- Enchant Weapon - Mighty Spirit + [23071] = { 18631, 9, 1, 270, 280, {6037,7067,7069}, {2,2,1} }, -- Truesilver Transformer + [23507] = { 19026, 9, 1, 250, 270, {15992,14047,8150}, {2,2,1} }, -- Snake Burst Firework + [23707] = { 19149, 3, 1, 320, 340, {17011,15407,14227}, {5,4,4} }, -- Lava Belt + [23069] = { 18588, 9, 1, 200, 220, {10505,4338}, {1,2} }, -- EZ-Thro Dynamite II + [23070] = { 18641, 9, 1, 250, 270, {15992,14047}, {2,3} }, -- Dense Dynamite + [23190] = { 18662, 3, 1, 150, 160, {4234,2321}, {2,1} }, -- Heavy Leather Ball + [23710] = { 19163, 3, 1, 320, 340, {17010,17011,7076,15407,14227}, {2,7,6,4,4} }, -- Molten Belt + [23080] = { 18594, 9, 1, 275, 295, {15994,15992,8170,159}, {2,3,2,1} }, -- Powerful Seaforium Charge + [23081] = { 18638, 9, 1, 310, 330, {11371,18631,7080,7910,12800}, {4,3,6,4,2} }, -- Hyper-Radiant Flame Reflector + [23082] = { 18639, 9, 1, 320, 340, {11371,18631,12803,12808,12800,12799}, {8,4,6,4,2,2} }, -- Ultra-Flash Shadow Reflector + [22757] = { 18262, 2, 1, 300, 320, {7067,12365}, {2,3} }, -- Elemental Sharpening Stone + [23077] = { 18634, 9, 1, 280, 300, {15994,18631,12361,7078,3829,13467}, {6,2,2,4,2,4} }, -- Gyrofreeze Ice Reflector + [23638] = { 19166, 2, 1, 320, 340, {17011,17010,12360,11382,11371}, {3,6,12,1,4} }, -- Black Amnesty + [23639] = { 19167, 2, 1, 320, 340, {17011,17010,12360,11371}, {5,2,16,6} }, -- Blackfury + [23068] = { 9313, 9, 1, 150, 175, {4377,4234}, {1,1} }, -- Green Firework + [23662] = { 19047, 8, 1, 305, 335, {14048,7076,12803,14227}, {8,3,3,2} }, -- Wisdom of the Timbermaw + [23663] = { 19050, 8, 1, 315, 345, {14342,7076,12803,14227}, {5,5,5,2} }, -- Mantle of the Timbermaw + [23664] = { 19056, 8, 1, 305, 335, {14048,12810,13926,12809,14227}, {6,4,2,2,2} }, -- Argent Boots + [22795] = { 18282, 9, 1, 320, 340, {17010,17011,12360,16006,16000}, {4,2,6,2,2} }, -- Core Marksman Rifle + [22923] = { 18508, 3, 1, 320, 340, {8170,18512,15420,15407,14341}, {12,8,60,4,4} }, -- Swift Flight Bracers + [22797] = { 18168, 9, 1, 320, 340, {12360,16006,7082,12803,7076}, {6,2,8,12,8} }, -- Force Reactive Disk + [23096] = { 18645, 9, 1, 275, 285, {12359,15994,8170,7910,7191}, {4,2,4,1,1} }, -- Alarm-O-Bot + [22761] = { 18254, 6, 1, 315, 355, {18255,3713}, {1,1} }, -- Runn Tum Tuber Surprise + [23665] = { 19059, 8, 1, 315, 345, {14342,12809,14227}, {5,2,2} }, -- Argent Shoulders + [22815] = { 18258, 3, 1, 285, 295, {8170,14048,18240,14341}, {4,2,1,1} }, -- Gordok Ogre Suit + [22331] = { 8170, 3, 1, 250, 250, {4304}, {6} }, -- Rugged Leather + [22759] = { 18263, 8, 1, 320, 350, {14342,17010,7078,12810,14341}, {6,8,2,6,4} }, -- Flarecore Wraps + [24912] = { 20549, 2, 1, 320, 340, {12359,20520,6037,12810}, {12,6,6,2} }, -- Darkrune Gauntlets + [24399] = { 20039, 2, 1, 320, 340, {17011,17010,17012,11371}, {3,3,4,6} }, -- Dark Iron Boots + [24137] = { 19691, 2, 1, 320, 340, {12359,19774,19726,7910}, {16,8,2,1} }, -- Bloodsoul Shoulders + [24901] = { 20538, 8, 1, 315, 345, {14048,20520,14256,14227}, {6,8,6,2} }, -- Runed Stygian Leggings + [24847] = { 20480, 3, 1, 320, 340, {20500,20498,7078,15407}, {2,30,2,1} }, -- Spitfire Gauntlets + [24141] = { 19695, 2, 1, 320, 340, {12359,19774,12799}, {16,10,1} }, -- Darksoul Shoulders + [22927] = { 18510, 3, 1, 320, 340, {8170,12803,7080,18512,15407,14341}, {30,12,10,8,3,8} }, -- Hide of the Wild + [23650] = { 19170, 2, 1, 320, 340, {17011,17010,12360,11371,12800}, {4,7,12,8,4} }, -- Ebon Hand + [23802] = { nil, 10, 1, 320, 360, {14344,16204,16203,12803}, {2,20,4,6} }, -- Enchant Bracer - Healing Power + [22922] = { 18506, 3, 1, 320, 340, {8170,7082,11754,15407,14341}, {12,6,4,2,4} }, -- Mongoose Boots + [23129] = { 18660, 9, 1, 260, 270, {10561,15994,10558,10560,3864}, {1,2,1,1,1} }, -- World Enlarger + [24138] = { 19692, 2, 1, 320, 340, {12359,19774,19726,12810}, {12,6,2,4} }, -- Bloodsoul Gauntlets + [23066] = { 9318, 9, 1, 150, 175, {4377,4234}, {1,1} }, -- Red Firework + [23067] = { 9312, 9, 1, 150, 175, {4377,4234}, {1,1} }, -- Blue Firework + [24139] = { 19693, 2, 1, 320, 340, {12359,19774,12799}, {20,14,2} }, -- Darksoul Breastplate + [24140] = { 19694, 2, 1, 320, 340, {12359,19774,12799}, {18,12,2} }, -- Darksoul Leggings + [24365] = { 20007, 4, 1, 290, 330, {13463,13466,8925}, {1,2,1} }, -- Mageblood Potion + [24356] = { 19999, 9, 1, 320, 340, {19726,19774,16006,12804,12810}, {4,5,2,8,4} }, -- Bloodvine Goggles + [23399] = { 18948, 3, 1, 175, 195, {4234,4236,5498,4461,5637}, {8,2,4,1,4} }, -- Barbaric Bracers + [24902] = { 20539, 8, 1, 315, 345, {14048,20520,14256,12810,14227}, {2,6,2,2,2} }, -- Runed Stygian Belt + [24903] = { 20537, 8, 1, 315, 345, {14048,20520,14256,12810,14227}, {4,6,4,2,2} }, -- Runed Stygian Boots + [24121] = { 19685, 3, 1, 320, 340, {19767,15407,12803,14341}, {14,5,4,4} }, -- Primal Batskin Jerkin + [24122] = { 19686, 3, 1, 320, 340, {19767,15407,12803,14341}, {10,4,4,3} }, -- Primal Batskin Gloves + [24125] = { 19689, 3, 1, 320, 340, {19768,19726,15407,14341}, {25,2,3,3} }, -- Blood Tiger Shoulders + [22866] = { 18405, 8, 1, 315, 345, {14048,9210,14342,7080,7078,14344,14341}, {16,10,10,12,12,6,6} }, -- Belt of the Archmage + [22867] = { 18407, 8, 1, 315, 345, {14048,14256,12662,12808,14341}, {12,20,6,8,2} }, -- Felcloth Gloves + [22870] = { 18413, 8, 1, 315, 345, {14048,12809,12360,14341}, {12,4,1,2} }, -- Cloak of Warding + [24418] = { 20074, 6, 1, 160, 200, {3667,3713}, {2,1} }, -- Heavy Crocolisk Stew + [24940] = { 20575, 3, 1, 125, 150, {2319,7286,4231,2321}, {8,8,1,2} }, -- Black Whelp Tunic + [24654] = { 20295, 3, 1, 320, 340, {8170,15415,15407,14341}, {28,36,2,2} }, -- Blue Dragonscale Leggings + [27659] = { 22248, 8, 1, 290, 320, {14048,16203,14341}, {5,2,2} }, -- Enchanted Runecloth Bag + [24357] = { 19998, 9, 1, 320, 340, {19726,19774,16006,12804,12810}, {5,5,1,8,4} }, -- Bloodvine Lens + [25127] = { 20747, 10, 1, 260, 280, {11176,8831,8925}, {3,2,1} }, -- Lesser Mana Oil + [25128] = { 20750, 10, 1, 285, 305, {16204,4625,8925}, {3,2,1} }, -- Wizard Oil + [23787] = { 19440, 1, 1, 300, 360, {19441}, {1} }, -- Powerful Anti-Venom + [24266] = { 19931, 4, 1, 315, 330, {12938,19943,12804,13468}, {1,1,6,1} }, -- Gurubashi Mojo Madness + [24124] = { 19688, 3, 1, 320, 340, {19768,19726,15407,14341}, {35,2,3,3} }, -- Blood Tiger Breastplate + [24367] = { 20008, 4, 1, 300, 340, {13467,13465,10286,8925}, {2,2,2,1} }, -- Living Action Potion + [24123] = { 19687, 3, 1, 320, 340, {19767,15407,12803,14341}, {8,3,4,3} }, -- Primal Batskin Bracers + [24850] = { 20477, 3, 1, 320, 340, {20501,20498,18512,15407}, {2,30,2,1} }, -- Sandstalker Gauntlets + [24655] = { 20296, 3, 1, 300, 320, {8170,15412,15407,14341}, {20,30,1,2} }, -- Green Dragonscale Gauntlets + [24366] = { 20002, 4, 1, 290, 330, {13463,13464,8925}, {2,1,1} }, -- Greater Dreamless Sleep Potion + [24703] = { 20380, 3, 1, 320, 340, {12810,20381,12803,15407,14227}, {12,6,4,4,6} }, -- Dreamscale Breastplate + [24092] = { 19683, 8, 1, 315, 345, {14342,19726,12804,14048,14227}, {4,4,4,4,2} }, -- Bloodvine Leggings + [24093] = { 19684, 8, 1, 315, 345, {14342,19726,12810,14048,14227}, {3,3,4,4,4} }, -- Bloodvine Boots + [25129] = { 20749, 10, 1, 310, 330, {14344,4625,18256}, {2,3,1} }, -- Brilliant Wizard Oil + [25130] = { 20748, 10, 1, 310, 330, {14344,8831,18256}, {2,3,1} }, -- Brilliant Mana Oil + [24091] = { 19682, 8, 1, 315, 345, {14342,19726,12804,14048,14227}, {3,5,4,4,2} }, -- Bloodvine Vest + [24801] = { 20452, 6, 1, 325, 365, {20424,3713}, {1,1} }, -- Smoked Desert Dumplings + [25083] = { nil, 10, 1, 320, 360, {20725,14344,13468}, {3,8,2} }, -- Enchant Cloak - Stealth + [25954] = { 21217, 6, 1, 215, 255, {21153,2692}, {1,1} }, -- Sagefish Delight + [24851] = { 20478, 3, 1, 320, 340, {20501,20498,18512,15407}, {3,40,2,2} }, -- Sandstalker Breastplate + [24848] = { 20479, 3, 1, 320, 340, {20500,20498,7078,15407}, {3,40,2,2} }, -- Spitfire Breastplate + [26011] = { 21277, 9, 1, 320, 340, {15407,15994,7079,18631,10558}, {1,4,2,2,1} }, -- Tranquil Mechanical Yeti + [24368] = { 20004, 4, 1, 305, 345, {8846,13466,8925}, {1,2,1} }, -- Major Troll's Blood Potion + [24849] = { 20476, 3, 1, 320, 340, {20501,20498,18512}, {1,20,2} }, -- Sandstalker Bracers + [25086] = { nil, 10, 1, 320, 360, {20725,14344,12809}, {3,8,8} }, -- Enchant Cloak - Dodge + [25146] = { 7068, 4, 1, 301, 310, {7077}, {1} }, -- Transmute: Elemental Fire + [25081] = { nil, 10, 1, 320, 360, {20725,14344,7078}, {3,8,4} }, -- Enchant Cloak - Greater Fire Resistance + [26085] = { 21340, 8, 1, 275, 305, {14048,8170,7972,14341}, {6,4,2,1} }, -- Soul Pouch + [26086] = { 21341, 8, 1, 300, 330, {14256,12810,20520,14227}, {12,6,2,4} }, -- Felcloth Bag + [25084] = { nil, 10, 1, 320, 360, {20725,14344,11754}, {4,6,2} }, -- Enchant Cloak - Subtlety + [25079] = { nil, 10, 1, 320, 360, {20725,14344,12811}, {3,8,1} }, -- Enchant Gloves - Healing Power + [25080] = { nil, 10, 1, 320, 360, {20725,14344,7082}, {3,8,4} }, -- Enchant Gloves - Superior Agility + [25082] = { nil, 10, 1, 320, 360, {20725,14344,12803}, {2,8,4} }, -- Enchant Cloak - Greater Nature Resistance + [26087] = { 21342, 8, 1, 315, 345, {14256,17012,19726,7078,14227}, {20,16,8,4,4} }, -- Core Felcloth Bag + [24913] = { 20551, 2, 1, 320, 340, {12359,20520,6037,11754}, {16,8,8,1} }, -- Darkrune Helm + [25072] = { nil, 10, 1, 320, 360, {20725,14344,18512}, {4,6,8} }, -- Enchant Gloves - Threat + [25073] = { nil, 10, 1, 320, 360, {20725,14344,12808}, {3,10,6} }, -- Enchant Gloves - Shadow Power + [25074] = { nil, 10, 1, 320, 360, {20725,14344,7080}, {3,10,4} }, -- Enchant Gloves - Frost Power + [25704] = { 21072, 6, 1, 120, 160, {21071,2678}, {1,1} }, -- Smoked Sagefish + [25078] = { nil, 10, 1, 320, 360, {20725,14344,7078}, {2,10,4} }, -- Enchant Gloves - Fire Power + [25124] = { 20744, 10, 1, 55, 75, {10940,17034,3371}, {2,1,1} }, -- Minor Wizard Oil + [25125] = { 20745, 10, 1, 160, 180, {11083,17034,3372}, {3,2,1} }, -- Minor Mana Oil + [25126] = { 20746, 10, 1, 210, 230, {11137,17035,3372}, {3,2,1} }, -- Lesser Wizard Oil + [24914] = { 20550, 2, 1, 320, 340, {12359,20520,6037}, {20,10,10} }, -- Darkrune Breastplate + [26424] = { 21574, 9, 1, 225, 250, {10505,4304}, {1,1} }, -- Green Rocket Cluster + [26425] = { 21576, 9, 1, 225, 250, {10505,4304}, {1,1} }, -- Red Rocket Cluster + [26423] = { 21571, 9, 1, 225, 250, {10505,4304}, {1,1} }, -- Blue Rocket Cluster + [27586] = { 22198, 2, 1, 320, 340, {22203,22202,12655,7076}, {8,24,8,4} }, -- Jagged Obsidian Shield + [26418] = { 21557, 9, 1, 125, 150, {4364,2319}, {1,1} }, -- Small Red Rocket + [26420] = { 21589, 9, 1, 175, 200, {4377,4234}, {1,1} }, -- Large Blue Rocket + [26421] = { 21590, 9, 1, 175, 200, {4377,4234}, {1,1} }, -- Large Green Rocket + [26426] = { 21714, 9, 1, 275, 285, {15992,8170}, {1,1} }, -- Large Blue Rocket Cluster + [27589] = { 22194, 2, 1, 320, 340, {22203,22202,12810,13512}, {8,24,8,1} }, -- Black Grasp of the Destroyer + [26403] = { 21154, 8, 1, 265, 295, {14048,4625,2604,14341}, {4,2,2,1} }, -- Festive Red Dress + [26407] = { 21542, 8, 1, 265, 295, {14048,4625,2604,14341}, {4,2,2,1} }, -- Festive Red Pant Suit + [26422] = { 21592, 9, 1, 175, 200, {4377,4234}, {1,1} }, -- Large Red Rocket + [26416] = { 21558, 9, 1, 125, 150, {4364,2319}, {1,1} }, -- Small Blue Rocket + [26417] = { 21559, 9, 1, 125, 150, {4364,2319}, {1,1} }, -- Small Green Rocket + [26427] = { 21716, 9, 1, 275, 285, {15992,8170}, {1,1} }, -- Large Green Rocket Cluster + [26428] = { 21718, 9, 1, 275, 285, {15992,8170}, {1,1} }, -- Large Red Rocket Cluster + [26277] = { 21546, 4, 1, 265, 305, {6371,4625,8925}, {3,3,1} }, -- Elixir of Greater Firepower + [27585] = { 22197, 2, 1, 320, 340, {22202,12655,7076}, {14,4,2} }, -- Heavy Obsidian Belt + [27587] = { 22196, 2, 1, 320, 340, {22203,22202,12655,7076,12364}, {18,40,12,10,4} }, -- Thick Obsidian Breastplate + [25659] = { 21023, 6, 1, 325, 365, {2692,9061,8150,21024}, {1,1,1,1} }, -- Dirge's Kickin' Chimaerok Chops + [27588] = { 22195, 2, 1, 320, 340, {22202,12810}, {14,4} }, -- Light Obsidian Belt + [27590] = { 22191, 2, 1, 320, 340, {22203,22202,12810,12809,12800}, {15,36,12,10,4} }, -- Obsidian Mail Tunic + [26279] = { 21278, 3, 1, 320, 340, {12810,7080,7082,15407,14227}, {6,4,4,2,2} }, -- Stormshroud Gloves + [26443] = { 21570, 9, 1, 295, 315, {9060,9061,18631,10561}, {4,4,2,1} }, -- Firework Cluster Launcher + [26442] = { 21569, 9, 1, 245, 265, {9060,9061,10560,10561}, {1,1,1,1} }, -- Firework Launcher + [28209] = { 22655, 8, 1, 315, 345, {22682,14048,7080,14227}, {4,2,2,4} }, -- Glacial Wrists + [28219] = { 22661, 3, 1, 320, 340, {22682,12810,7080,15407,14227}, {7,16,2,4,4} }, -- Polar Tunic + [28220] = { 22662, 3, 1, 320, 340, {22682,12810,7080,15407,14227}, {5,12,2,3,4} }, -- Polar Gloves + [28205] = { 22654, 8, 1, 315, 345, {22682,14048,7080,14227}, {5,4,4,4} }, -- Glacial Gloves + [28242] = { 22669, 2, 1, 320, 340, {22682,12359,12360,7080}, {7,16,2,4} }, -- Icebane Breastplate + [28243] = { 22670, 2, 1, 320, 340, {22682,12359,12360,7080}, {5,12,2,2} }, -- Icebane Gauntlets + [28221] = { 22663, 3, 1, 320, 340, {22682,12810,7080,15407,14227}, {4,12,2,2,4} }, -- Polar Bracers + [28327] = { 22728, 9, 1, 295, 315, {15994,10561,10558}, {2,1,1} }, -- Steam Tonk Controller + [28207] = { 22652, 8, 1, 315, 345, {22682,14048,7080,14227}, {7,8,6,8} }, -- Glacial Vest + [28208] = { 22658, 8, 1, 315, 345, {22682,14048,7080,14227}, {5,4,2,4} }, -- Glacial Cloak + [27724] = { 22251, 8, 1, 290, 320, {14048,8831,11040,14341}, {5,10,8,2} }, -- Cenarion Herb Bag + [28210] = { 22660, 8, 1, 315, 345, {19726,14342,12803,14227}, {1,2,4,4} }, -- Gaea's Embrace + [27837] = { nil, 10, 1, 310, 350, {14344,16203,16204,7082}, {10,6,14,4} }, -- Enchant 2H Weapon - Agility + [28224] = { 22665, 3, 1, 320, 340, {22682,15408,7080,15407,14227}, {4,16,2,2,4} }, -- Icy Scale Bracers + [28222] = { 22664, 3, 1, 320, 340, {22682,15408,7080,15407,14227}, {7,24,2,4,4} }, -- Icy Scale Breastplate + [28223] = { 22666, 3, 1, 320, 340, {22682,15408,7080,15407,14227}, {5,16,2,3,4} }, -- Icy Scale Gauntlets + [27658] = { 22246, 8, 1, 240, 270, {4339,11137,8343}, {4,4,2} }, -- Enchanted Mageweave Pouch + [27832] = { 22383, 2, 1, 320, 340, {12360,20725,13512,12810}, {12,2,2,4} }, -- Sageblade + [27829] = { 22385, 2, 1, 320, 340, {12360,12655,7076,13510}, {12,20,10,2} }, -- Titanic Leggings + [27830] = { 22384, 2, 1, 320, 340, {12360,11371,12808,20520,15417,12753}, {15,10,20,20,10,2} }, -- Persuader + [27660] = { 22249, 8, 1, 315, 345, {14048,14344,12810,14227}, {6,4,4,4} }, -- Big Bag of Enchantment + [28480] = { 22756, 8, 1, 315, 345, {14048,19726,12803,14227}, {4,2,2,2} }, -- Sylvan Vest + [28474] = { 22761, 3, 1, 320, 340, {12810,12803,15407}, {4,2,1} }, -- Bramblewood Belt + [28481] = { 22757, 8, 1, 315, 345, {14048,14342,12803,14227}, {4,2,2,2} }, -- Sylvan Crown + [28482] = { 22758, 8, 1, 315, 345, {14048,12803,14227}, {2,4,2} }, -- Sylvan Shoulders + [28472] = { 22759, 3, 1, 320, 340, {12810,19726,12803,15407}, {12,2,2,2} }, -- Bramblewood Helm + [28473] = { 22760, 3, 1, 320, 340, {12810,18512,12803,15407}, {6,2,2,2} }, -- Bramblewood Boots + [28462] = { 22763, 2, 1, 320, 340, {12655,19726,12803}, {8,1,2} }, -- Ironvine Gloves + [28461] = { 22762, 2, 1, 320, 340, {12655,19726,12360,12803}, {12,2,2,2} }, -- Ironvine Breastplate + [28463] = { 22764, 2, 1, 320, 340, {12655,12803}, {6,2} }, -- Ironvine Belt + [28244] = { 22671, 2, 1, 320, 340, {22682,12359,12360,7080}, {4,12,2,2} }, -- Icebane Bracers + [30047] = { 23683, 6, 1, 325, 365, {23567,8150}, {1,1} }, -- Crystal Throat Lozenge + [30021] = { 23684, 1, 1, 300, 360, {23567,14047}, {1,10} }, -- Crystal Infused Bandage +} + +-- maybe weak table? +local ProfessionCache = {} + +function Profession.IsProfessionSpell(spellID) + return PROFESSION[spellID or 0] and true or false +end + +function Profession.GetProfessionData(spellID) + return PROFESSION[spellID or 0] and PROFESSION[spellID or 0] or nil +end + +function Profession.GetDataForExtraFrame(spellID) + local prof = Profession.GetProfessionData(spellID) + if not prof then return end + + if not ProfessionCache[spellID] then + local ret + if prof[1] then + ret = { prof[1], 0 } + else + ret = {} + end + for i = 1, #prof[6] do + ret[#ret+1] = {prof[6][i], prof[7][i]} + end + ProfessionCache[spellID] = ret + end + + return ProfessionCache[spellID] +end + +function Profession.GetCreatedItemID(spellID) + return PROFESSION[spellID or 0] and PROFESSION[spellID or 0][1] or nil +end + +function Profession.GetSpellDescription(spellID) + return ( spellID and PROFESSION[spellID] ) and PROFESSION_TEXT[PROFESSION[spellID][2] or PROFESSION_DEFAULT] or nil +end + +function Profession.GetColorSkillRank(spellID) + local spell = Profession.GetProfessionData(spellID) + if not spell then return end + return format(FORMAT_STRING_SKILL, spell[3], spell[4], ((spell[5] - spell[4]) * 0.5)+spell[4], spell[5]) +end + +function Profession.GetIcon(spellID) + local prof = Profession.GetProfessionData(spellID) + if not prof then return PROFESSION_ICON[0] end + return PROFESSION_ICON[prof[2] or 0] or PROFESSION_ICON[0] +end \ No newline at end of file diff --git a/AtlasLootClassic/Data/Recipe.lua b/AtlasLootClassic/Data/Recipe.lua index 9ff30251..1ab24c90 100644 --- a/AtlasLootClassic/Data/Recipe.lua +++ b/AtlasLootClassic/Data/Recipe.lua @@ -1,6 +1,7 @@ local AtlasLoot = _G.AtlasLoot local Recipe = {} AtlasLoot.Data.Recipe = Recipe +local Profession = AtlasLoot.Data.Profession local AL = AtlasLoot.Locales local format = string.format @@ -9,842 +10,827 @@ local format = string.format local LOC_STRING = AL["|cff00ff00Left-Click:|r %s"] local LOC_STRING2 = AL["|cff00ff00Left-Click:|r Show reagents."] local RECIPE_PROF_DEFAULT = 0 -local RECIPE_PROF_TEXT = { - [0] = LOC_STRING2, -- UNKNOWN - --[1] = AL["|cff00ff00Left-Click:|r Show additional items."], -- default - [1] = format(LOC_STRING, GetSpellInfo(3273)), -- First Aid - [2] = format(LOC_STRING, GetSpellInfo(2018)), -- Blacksmithing - [3] = format(LOC_STRING, GetSpellInfo(2108)), -- Leatherworking - [4] = format(LOC_STRING, GetSpellInfo(2259)), -- Alchemy - [5] = format(LOC_STRING, GetSpellInfo(2366)), -- Herbalism - [6] = format(LOC_STRING, GetSpellInfo(2550)), -- Cooking - [7] = format(LOC_STRING, GetSpellInfo(2575)), -- Mining - [8] = format(LOC_STRING, GetSpellInfo(3908)), -- Tailoring - [9] = format(LOC_STRING, GetSpellInfo(4036)), -- Engineering - [10] = format(LOC_STRING, GetSpellInfo(7411)), -- Enchanting - [11] = format(LOC_STRING, GetItemSubClassInfo(9,9)), -- Fishing - [12] = LOC_STRING2, -- Skinning -} +local RECIPE_PROF_TEXT = Profession.PROFESSION_TEXT local RECIPE = { - -- [itemID] = { profession, profRank, reagents{}, reagentCount{} } - [728] = { 6, 75, 733, {729,730,731}, {1,1,1} }, -- Recipe: Westfall Stew - [2404] = { 3, 30, 2305, {2318,2320}, {8,2} }, -- Deprecated Pattern: Light Winter Cloak - [2405] = { 3, 35, 2306, {2318,2320}, {6,2} }, -- Deprecated Pattern: Light Winter Boots - [2406] = { 3, 90, 2307, {2318,2320}, {7,2} }, -- Pattern: Fine Leather Boots - [2407] = { 3, 60, 2311, {2318,2320,2324}, {8,2,1} }, -- Pattern: White Leather Jerkin - [2408] = { 3, 75, 2312, {4231,2318,2320}, {1,4,2} }, -- Pattern: Fine Leather Gloves - [2409] = { 3, 100, 2317, {2319,2321,4340}, {6,1,1} }, -- Pattern: Dark Leather Tunic - [2553] = { 4, 50, 2457, {2452,765,3371}, {1,1,1} }, -- Recipe: Elixir of Minor Agility - [2554] = { 4, 50, 2458, {2449,2447,3371}, {2,1,1} }, -- Deprecated Recipe: Elixir of Fortitude - [2555] = { 4, 60, 2459, {2452,2450,3371}, {1,1,1} }, -- Recipe: Swiftness Potion - [2556] = { 4, 70, 2460, {2449,785,3371}, {2,2,1} }, -- Recipe: Elixir of Tongues - [2598] = { 8, 40, 2572, {2996,2320,2604}, {3,2,2} }, -- Pattern: Red Linen Robe - [2601] = { 8, 105, 2585, {2997,2321,4340}, {4,3,1} }, -- Pattern: Gray Woolen Robe - [2697] = { 6, 50, 724, {723,2678}, {1,1} }, -- Recipe: Goretusk Liver Pie - [2698] = { 6, 85, 2682, {2675,2678}, {1,1} }, -- Recipe: Cooked Crab Claw - [2699] = { 6, 100, 1082, {1081,1080}, {1,1} }, -- Recipe: Redridge Goulash - [2700] = { 6, 110, 2685, {2677,2692}, {2,1} }, -- Recipe: Succulent Pork Ribs - [2701] = { 6, 100, 1017, {1015,2665}, {2,1} }, -- Recipe: Seasoned Wolf Kabob - [2881] = { 2, 80, 2864, {2840,1210,3470}, {12,1,2} }, -- Plans: Runed Copper Breastplate - [2882] = { 2, 125, 3481, {2841,2842,3478}, {8,2,2} }, -- Plans: Silvered Bronze Shoulders - [2883] = { 2, 125, 3490, {2841,3466,2459,1210,3478,2319}, {4,1,1,2,2,2} }, -- Plans: Deadly Bronze Poniard - [2889] = { 6, 25, 2888, {2886,2894}, {1,1} }, -- Recipe: Beer Basted Boar Ribs - [3393] = { 4, 110, 3384, {785,3355,3371}, {3,1,1} }, -- Recipe: Minor Magic Resistance Potion - [3394] = { 4, 120, 3386, {1288,2453,3372}, {1,1,1} }, -- Recipe: Elixir of Poison Resistance - [3395] = { 4, 250, 3387, {8839,8845,8925}, {2,1,1} }, -- Recipe: Limited Invulnerability Potion - [3396] = { 4, 140, 3390, {3355,2452,3372}, {1,1,1} }, -- Recipe: Elixir of Lesser Agility - [3608] = { 2, 145, 3492, {3575,3466,3391,1705,3478,2319}, {6,2,1,2,2,2} }, -- Plans: Mighty Iron Hammer - [3609] = { 2, 35, 3471, {2840,774,3470}, {8,1,2} }, -- Plans: Copper Chain Vest - [3610] = { 2, 60, 3474, {2840,818,774}, {8,1,1} }, -- Plans: Gemmed Copper Gauntlets - [3611] = { 2, 145, 3484, {3575,1705,3478,2605}, {4,2,2,1} }, -- Plans: Green Iron Boots - [3612] = { 2, 150, 3485, {3575,5498,3478,2605}, {4,2,2,1} }, -- Plans: Green Iron Gauntlets - [3678] = { 6, 80, 3662, {2924,2678}, {1,1} }, -- Recipe: Crocolisk Steak - [3679] = { 6, 60, 3220, {3173,3172,3174}, {1,1,1} }, -- Recipe: Blood Sausage - [3680] = { 6, 90, 3663, {1468,2692}, {2,1} }, -- Recipe: Murloc Fin Soup - [3681] = { 6, 120, 3664, {3667,2692}, {1,1} }, -- Recipe: Crocolisk Gumbo - [3682] = { 6, 130, 3665, {3685,2692}, {1,1} }, -- Recipe: Curiously Tasty Omelet - [3683] = { 6, 110, 3666, {2251,2692}, {2,1} }, -- Recipe: Gooey Spider Cake - [3734] = { 6, 110, 3726, {3730,2692}, {1,1} }, -- Recipe: Big Bear Steak - [3735] = { 6, 125, 3727, {3731,2692}, {1,1} }, -- Recipe: Hot Lion Chops - [3736] = { 6, 150, 3728, {3731,3713}, {2,1} }, -- Recipe: Tasty Lion Steak - [3737] = { 6, 175, 3729, {3712,3713}, {1,1} }, -- Recipe: Soothing Turtle Bisque - [3830] = { 4, 175, 3825, {3355,3821,3372}, {1,1,1} }, -- Recipe: Elixir of Fortitude - [3831] = { 4, 180, 3826, {3357,2453,3372}, {1,1,1} }, -- Recipe: Mighty Troll's Blood Potion - [3832] = { 4, 195, 3828, {3358,3818,3372}, {1,1,1} }, -- Recipe: Elixir of Detect Lesser Invisibility - [3866] = { 2, 175, 3850, {3575,3466,3486,1529,4234}, {8,2,2,2,3} }, -- Plans: Jade Serpentblade - [3867] = { 2, 170, 3852, {3575,3577,1705,3466,4234,3486}, {10,4,2,2,2,2} }, -- Plans: Golden Iron Destroyer - [3868] = { 2, 200, 3854, {3859,3466,3486,1529,3829,4234}, {8,2,2,2,1,4} }, -- Plans: Frost Tiger Blade - [3869] = { 2, 200, 3856, {3859,3466,3486,3864,3824,4234}, {10,2,3,2,1,3} }, -- Plans: Shadow Crescent Axe - [3870] = { 2, 160, 3840, {3575,3486,2605}, {7,1,1} }, -- Plans: Green Iron Shoulders - [3871] = { 2, 175, 3841, {3859,3577,3486}, {6,2,1} }, -- Plans: Golden Scale Shoulders - [3872] = { 2, 170, 3843, {3575,3577,3486}, {10,2,1} }, -- Plans: Golden Scale Leggings - [3873] = { 2, 195, 3845, {3859,3577,3486,1529}, {12,2,4,2} }, -- Plans: Golden Scale Cuirass - [3874] = { 2, 185, 3846, {3859,3864,1705,3486}, {8,1,1,2} }, -- Plans: Polished Steel Boots - [3875] = { 2, 200, 3847, {3859,3577,3486,3864}, {10,4,4,1} }, -- Plans: Golden Scale Boots - [4292] = { 8, 95, 4241, {2997,2605,2321}, {4,1,1} }, -- Pattern: Green Woolen Bag - [4293] = { 3, 100, 4244, {4243,4231,2320}, {1,2,2} }, -- Pattern: Hillman's Leather Vest - [4294] = { 3, 120, 4250, {2319,3383,2321}, {8,1,2} }, -- Pattern: Hillman's Belt - [4295] = { 3, 125, 5965, {4234,4305,4291}, {14,2,2} }, -- Pattern: Double-stitched Leather Gloves OLD - [4296] = { 3, 140, 4252, {2319,3390,4340,2321}, {12,1,1,2} }, -- Pattern: Dark Leather Shoulders - [4297] = { 3, 150, 4254, {4234,5637,2321}, {6,2,1} }, -- Pattern: Barbaric Gloves - [4298] = { 3, 170, 4258, {4236,4234,2321,7071}, {2,4,1,1} }, -- Pattern: Guardian Belt - [4299] = { 3, 175, 4256, {4236,4234,3824,2321}, {2,12,1,2} }, -- Pattern: Guardian Armor - [4300] = { 3, 195, 4260, {4234,4236,4291}, {6,2,1} }, -- Pattern: Guardian Leather Bracers - [4301] = { 3, 200, 4264, {4234,4236,4096,5633,4291,7071}, {6,2,2,1,1,1} }, -- Pattern: Barbaric Belt - [4345] = { 8, 95, 4313, {2997,2318,2321,2604}, {4,2,1,2} }, -- Pattern: Red Woolen Boots - [4346] = { 8, 100, 4311, {2997,2321,5498}, {3,2,2} }, -- Pattern: Heavy Woolen Cloak - [4347] = { 8, 120, 4315, {2997,2319,2321}, {6,2,2} }, -- Pattern: Reinforced Woolen Shoulders - [4348] = { 8, 125, 4331, {2997,5500,2321,2324}, {4,1,4,2} }, -- Pattern: Phoenix Gloves - [4349] = { 8, 125, 4317, {2997,5500,2321}, {6,1,3} }, -- Pattern: Phoenix Pants - [4350] = { 8, 140, 4321, {4305,3182,2321}, {3,1,2} }, -- Pattern: Spider Silk Slippers - [4351] = { 8, 170, 4323, {4305,4291,3824}, {4,1,1} }, -- Pattern: Shadow Hood - [4352] = { 8, 175, 4325, {4305,4291,4337}, {4,1,2} }, -- Pattern: Boots of the Enchanter - [4353] = { 8, 180, 4328, {4305,4337,7071}, {4,2,1} }, -- Pattern: Spider Belt - [4354] = { 8, 185, 4335, {4305,4342,4291}, {4,1,1} }, -- Pattern: Rich Purple Silk Shirt - [4355] = { 8, 200, 4327, {4339,4291,3829,4337}, {3,2,1,2} }, -- Pattern: Icy Cloak - [4356] = { 8, 200, 4329, {4339,4234,3864,7071,4291}, {4,4,1,1,1} }, -- Pattern: Star Belt - [4408] = { 9, 75, 4401, {4363,4359,2840,774}, {1,1,1,2} }, -- Schematic: Mechanical Squirrel - [4409] = { 9, 100, 4367, {4364,4363,2318,159}, {2,1,1,1} }, -- Schematic: Small Seaforium Charge - [4410] = { 9, 120, 4373, {2319,1210}, {4,2} }, -- Schematic: Shadow Goggles - [4411] = { 9, 125, 4376, {4375,4402}, {1,1} }, -- Schematic: Flame Deflector - [4412] = { 9, 145, 4383, {4371,4375,4400,1705}, {3,3,1,2} }, -- Schematic: Moonsight Rifle - [4413] = { 9, 160, 4388, {4375,4306,1529,4371}, {3,2,1,1} }, -- Schematic: Discombobulator Ray - [4414] = { 9, 165, 4403, {4371,4387,4377,2319}, {4,1,4,4} }, -- Schematic: Portable Bronze Mortar - [4415] = { 9, 185, 4393, {4234,3864}, {6,2} }, -- Schematic: Craftsman's Monocle - [4416] = { 9, 195, 4395, {4377,3575,4389}, {3,2,1} }, -- Schematic: Goblin Land Mine - [4417] = { 9, 200, 4398, {10505,4234,159}, {2,2,1} }, -- Schematic: Large Seaforium Charge - [4597] = { 4, 50, 4596, {3164,2447,3371}, {1,1,1} }, -- Recipe: Discolored Healing Potion - [4609] = { 6, 175, 4457, {3404,2692}, {1,1} }, -- Recipe: Barbecued Buzzard Wing - [4624] = { 4, 215, 4623, {3858,3821,3372}, {1,1,1} }, -- Recipe: Lesser Stoneshield Potion - [5083] = { 3, 40, 5081, {5082,2318,2320}, {3,4,1} }, -- Pattern: Kodo Hide Bag - [5482] = { 6, 10, 5472, {5465}, {1} }, -- Recipe: Kaldorei Spider Kabob - [5483] = { 6, 20, 5473, {5466}, {1} }, -- Recipe: Scorpid Surprise - [5484] = { 6, 35, 5474, {5467,2678}, {1,1} }, -- Recipe: Roasted Kodo Meat - [5485] = { 6, 50, 5476, {5468,2678}, {1,1} }, -- Recipe: Fillet of Frenzy - [5486] = { 6, 50, 5477, {5469,4536}, {1,1} }, -- Recipe: Strider Stew - [5487] = { 6, 90, 5478, {5051}, {1} }, -- Recipe: Dig Rat Stew - [5488] = { 6, 100, 5479, {5470,2692}, {1,1} }, -- Recipe: Crispy Lizard Tail - [5489] = { 6, 110, 5480, {5471,2678}, {1,4} }, -- Recipe: Lean Venison - [5528] = { 6, 90, 5526, {5503,1179,2678}, {1,1,1} }, -- Recipe: Clam Chowder - [5543] = { 2, 140, 5541, {2841,3466,5500,3478,2319}, {10,1,1,2,2} }, -- Plans: Iridescent Hammer - [5577] = { 2, 100, 2867, {2841}, {4} }, -- Plans: Rough Bronze Bracers - [5578] = { 2, 130, 2869, {2841,2842,3478,1705}, {10,2,2,1} }, -- Plans: Silvered Bronze Breastplate - [5640] = { 4, 60, 5631, {5635,2450,3371}, {1,1,1} }, -- Recipe: Rage Potion - [5641] = { 4, 125, 5632, {5636,3356,3372}, {1,1,1} }, -- Recipe: Cowardly Flight Potion - [5642] = { 4, 150, 5634, {6370,3820,3372}, {2,1,1} }, -- Recipe: Free Action Potion - [5643] = { 4, 175, 5633, {5637,3356,3372}, {1,1,1} }, -- Recipe: Great Rage Potion - [5771] = { 8, 70, 5762, {2996,2321,2604}, {4,1,1} }, -- Pattern: Red Linen Bag - [5772] = { 8, 115, 5763, {2997,2604,2321}, {4,1,1} }, -- Pattern: Red Woolen Bag - [5773] = { 8, 150, 5770, {4305,2321,3182}, {4,2,2} }, -- Pattern: Robes of Arcana - [5774] = { 8, 175, 5764, {4305,4234,2321,2605}, {4,3,3,1} }, -- Pattern: Green Silk Pack - [5775] = { 8, 185, 5765, {4305,2325,2321}, {5,1,4} }, -- Pattern: Black Silk Pack - [5786] = { 3, 90, 5780, {5784,2318,2321}, {8,6,1} }, -- Pattern: Murloc Scale Belt - [5787] = { 3, 95, 5781, {5784,4231,2318,2321}, {12,1,8,1} }, -- Pattern: Murloc Scale Breastplate - [5788] = { 3, 170, 5782, {5785,4236,4234,2321}, {12,1,10,3} }, -- Pattern: Thick Murloc Armor - [5789] = { 3, 190, 5783, {5785,4236,4234,4291}, {16,1,14,1} }, -- Pattern: Murloc Scale Bracers - [5972] = { 3, 105, 5958, {2319,2997,2321}, {8,1,1} }, -- Pattern: Fine Leather Pants - [5973] = { 3, 170, 5963, {4234,2321,1206}, {10,2,1} }, -- Pattern: Barbaric Leggings - [5974] = { 3, 185, 5965, {4234,4305,4291}, {14,2,2} }, -- Pattern: Guardian Cloak - [6039] = { 6, 175, 6038, {4655,2692}, {1,1} }, -- Recipe: Giant Clam Scorcho - [6044] = { 2, 150, 6042, {3575,3478}, {6,4} }, -- Plans: Iron Shield Spike - [6045] = { 2, 165, 6043, {3575,3478,1705}, {4,2,1} }, -- Plans: Iron Counterweight - [6046] = { 2, 190, 6041, {3859,3486,4234}, {8,2,4} }, -- Plans: Steel Weapon Chain - [6047] = { 2, 190, 3837, {3859,3577,3486}, {8,2,2} }, -- Plans: Golden Scale Coif - [6053] = { 4, 100, 6051, {2453,2452,3371}, {1,1,1} }, -- Recipe: Holy Protection Potion - [6054] = { 4, 135, 6048, {3369,3356,3372}, {1,1,1} }, -- Recipe: Shadow Protection Potion - [6055] = { 4, 165, 6049, {4402,6371,3372}, {1,1,1} }, -- Recipe: Fire Protection Potion - [6056] = { 4, 190, 6050, {3819,3821,3372}, {1,1,1} }, -- Recipe: Frost Protection Potion - [6057] = { 4, 190, 6052, {3357,3820,3372}, {1,1,1} }, -- Recipe: Nature Protection Potion - [6068] = { 4, 165, 3824, {3818,3369,3372}, {4,4,1} }, -- Recipe: Shadow Oil - [6211] = { 4, 150, 3391, {2449,3356,3372}, {1,1,1} }, -- Recipe: Elixir of Ogre's Strength - [6222] = { 10, 60, nil, {765}, {2} }, -- Formula: Imbue Chest - Minor Spirit - [6270] = { 8, 55, 6240, {2996,2320,6260}, {3,1,1} }, -- Pattern: Blue Linen Vest - [6271] = { 8, 55, 6239, {2996,2320,2604}, {3,1,1} }, -- Pattern: Red Linen Vest - [6272] = { 8, 70, 6242, {2996,2320,6260}, {4,2,2} }, -- Pattern: Blue Linen Robe - [6273] = { 8, 90, 6243, {2997,2321,2605}, {3,2,1} }, -- Pattern: Green Woolen Robe - [6274] = { 8, 100, 6263, {2997,2321,6260}, {4,2,2} }, -- Pattern: Blue Overalls - [6275] = { 8, 115, 6264, {2997,2321,2604}, {5,3,3} }, -- Pattern: Greater Adept's Robe - [6325] = { 6, 1, 6290, {6291}, {1} }, -- Recipe: Brilliant Smallfish - [6326] = { 6, 1, 787, {6303}, {1} }, -- Recipe: Slitherskin Mackerel - [6328] = { 6, 50, 4592, {6289}, {1} }, -- Recipe: Longjaw Mud Snapper - [6329] = { 6, 50, 6316, {6317,2678}, {1,1} }, -- Recipe: Loch Frenzy Delight - [6330] = { 6, 100, 4593, {6308}, {1} }, -- Recipe: Bristle Whisker Catfish - [6342] = { 10, 20, nil, {10938}, {1} }, -- Formula: Enchant Chest - Minor Mana - [6343] = { 10, 60, nil, {765}, {2} }, -- Formula: Imbue Chest - Spirit - [6344] = { 10, 60, nil, {10938}, {2} }, -- Formula: Enchant Bracer - Minor Spirit - [6345] = { 10, 90, nil, {10940,10939}, {3,1} }, -- Formula: Imbue Cloak - Protection - [6346] = { 10, 80, nil, {10939,10938}, {1,1} }, -- Formula: Enchant Chest - Lesser Mana - [6347] = { 10, 80, nil, {10940}, {5} }, -- Formula: Enchant Bracer - Minor Strength - [6348] = { 10, 90, nil, {10940,10939}, {4,2} }, -- Formula: Enchant Weapon - Minor Beastslayer - [6349] = { 10, 100, nil, {10939}, {3} }, -- Formula: Enchant 2H Weapon - Lesser Intellect - [6368] = { 6, 50, 5095, {6361}, {1} }, -- Recipe: Rainbow Fin Albacore - [6369] = { 6, 175, 4594, {6362}, {1} }, -- Recipe: Rockscale Cod - [6375] = { 10, 120, nil, {10998}, {2} }, -- Formula: Enchant Bracer - Lesser Spirit - [6376] = { 10, 125, nil, {10940}, {8} }, -- Formula: Enchant Boots - Minor Stamina - [6377] = { 10, 125, nil, {10940,10998}, {6,2} }, -- Formula: Enchant Boots - Minor Agility - [6390] = { 8, 120, 6384, {2997,6260,4340,2321}, {4,2,1,1} }, -- Pattern: Stylish Blue Shirt - [6391] = { 8, 120, 6385, {2997,2605,4340,2321}, {4,2,1,1} }, -- Pattern: Stylish Green Shirt - [6401] = { 8, 155, 4333, {4305,4340,2321}, {2,2,1} }, -- Pattern: Dark Silk Shirt - [6454] = { 1, 130, 6453, {1288}, {1} }, -- Manual: Strong Anti-Venom - [6474] = { 3, 90, 6466, {6470,4231,2321}, {8,1,1} }, -- Pattern: Deviate Scale Cloak - [6475] = { 3, 105, 6467, {6471,6470,2321}, {2,6,2} }, -- Pattern: Deviate Scale Gloves - [6476] = { 3, 115, 6468, {6471,6470,2321}, {10,10,2} }, -- Pattern: Deviate Scale Belt - [6661] = { 6, 85, 6657, {6522,2678}, {1,1} }, -- Recipe: Savory Deviate Delight - [6663] = { 4, 90, 6662, {6522,2449,3371}, {1,1,1} }, -- Recipe: Elixir of Giant Growth - [6672] = { 9, 185, 4852, {4611,4377,4306}, {1,1,1} }, -- Schematic: Flash Bomb - [6710] = { 3, 90, 6709, {2318,4231,2320,5498}, {6,1,4,1} }, -- Pattern: Moonglow Vest - [6716] = { 9, 100, 6714, {4364,2592}, {4,1} }, -- Schematic: EZ-Thro Dynamite - [6734] = { 2, 70, 6730, {2840,774,3470}, {12,2,2} }, -- Plans: Ironforge Chain - [6735] = { 2, 100, 6731, {2840,818,3470}, {16,2,3} }, -- Plans: Ironforge Breastplate - [6736] = { 2, 140, 6733, {2841,1210,3478}, {8,3,4} }, -- Plans: Ironforge Gauntlets - [6891] = { 6, 1, 6888, {6889,2678}, {1,1} }, -- Recipe: Herb Baked Egg - [6892] = { 6, 40, 6890, {3173}, {1} }, -- Recipe: Smoked Bear Meat - [7084] = { 8, 190, 7059, {4305,6371,2604,4291}, {5,2,2,2} }, -- Pattern: Crimson Silk Shoulders - [7085] = { 8, 190, 7060, {4305,7072,6260,4291}, {6,2,2,2} }, -- Pattern: Azure Shoulders - [7086] = { 8, 195, 7061, {4305,7067,4234,7071,4291}, {5,4,4,1,2} }, -- Pattern: Earthen Silk Belt - [7087] = { 8, 180, 7056, {4305,2604,6371,4291}, {5,2,2,1} }, -- Pattern: Crimson Silk Cloak - [7088] = { 8, 205, 7063, {4305,7068,3827,2604,4291}, {8,4,2,4,1} }, -- Pattern: Crimson Silk Robe - [7089] = { 8, 175, 7053, {4305,6260,2321}, {3,2,2} }, -- Pattern: Azure Silk Cloak - [7090] = { 8, 165, 7065, {4305,2605,4291}, {5,2,1} }, -- Pattern: Green Silk Armor - [7091] = { 8, 150, 7049, {4305,4234,929,2321}, {3,2,4,1} }, -- Pattern: Truefaith Gloves - [7092] = { 8, 145, 7047, {4305,4234,6048,2321}, {3,2,2,2} }, -- Pattern: Hands of Darkness - [7093] = { 8, 140, 7027, {4305,2319,6048,2321}, {3,2,1,2} }, -- Pattern: Boots of Darkness - [7114] = { 8, 145, 4319, {4305,4234,6260,2321}, {3,2,2,2} }, -- Pattern: Azure Silk Gloves - [7192] = { 9, 130, 7189, {10026,10559,4234,9061,10560}, {1,2,4,2,1} }, -- Schematic: Goblin Rocket Boots - [7288] = { 3, 35, 7280, {2318,2320}, {5,5} }, -- Pattern: Rugged Leather Pants - [7289] = { 3, 100, 7283, {7286,2319,2321}, {12,4,1} }, -- Pattern: Black Whelp Cloak - [7290] = { 3, 120, 7284, {7287,2319,2321}, {6,4,1} }, -- Pattern: Red Whelp Gloves - [7360] = { 3, 120, 4248, {2312,4233,2321,4340}, {1,1,1,1} }, -- Pattern: Dark Leather Gloves - [7361] = { 3, 135, 7349, {2319,3356,2321}, {8,4,2} }, -- Pattern: Herbalist's Gloves - [7362] = { 3, 135, 7352, {2319,7067,2321}, {6,1,2} }, -- Pattern: Earthen Leather Shoulders - [7363] = { 3, 140, 7358, {2319,5373,2321}, {10,2,2} }, -- Pattern: Pilferer's Gloves - [7364] = { 3, 145, 7359, {2319,7067,2997,2321}, {12,2,2,2} }, -- Pattern: Heavy Earthen Gloves - [7449] = { 3, 165, 7373, {4234,2325,2321}, {10,1,2} }, -- Pattern: Dusky Leather Leggings - [7450] = { 3, 175, 7375, {7392,4234,2321}, {4,10,2} }, -- Pattern: Green Whelp Armor - [7451] = { 3, 190, 7386, {7392,4234,4291}, {6,8,2} }, -- Pattern: Green Whelp Bracers - [7452] = { 3, 200, 7390, {4234,7428,3824,4291}, {8,2,1,2} }, -- Pattern: Dusky Boots - [7453] = { 3, 200, 7391, {4234,2459,4337,4291}, {10,2,2,1} }, -- Pattern: Swift Boots - [7560] = { 9, 125, 7506, {2841,4375,814,818,774}, {6,1,2,1,1} }, -- Schematic: Gnomish Universal Remote - [7561] = { 9, 165, 7148, {3575,4375,814,4306,1210,7191}, {6,2,2,2,2,1} }, -- Schematic: Goblin Jumper Cables - [7613] = { 3, 155, 4255, {4234,2605,2321}, {9,2,4} }, -- Pattern: Green Leather Armor - [7678] = { 6, 60, 7676, {2452,159}, {1,1} }, -- Recipe: Thistle Tea - [7742] = { 9, 200, 4397, {4389,1529,1705,3864,7191}, {4,2,2,2,1} }, -- Schematic: Gnomish Cloaking Device - [7975] = { 2, 210, 7921, {3860,1705}, {10,2} }, -- Plans: Heavy Mithril Pants - [7976] = { 2, 215, 7967, {3860,6037,7966}, {4,2,4} }, -- Plans: Mithril Shield Spike - [7977] = { 2, 220, 7925, {3860,4234,4338}, {8,6,4} }, -- Plans: Mithril Scale Gloves - [7978] = { 2, 160, 7913, {3575,5635,1210,3486}, {8,4,2,2} }, -- Plans: Barbaric Iron Shoulders - [7979] = { 2, 160, 7914, {3575,3486}, {20,4} }, -- Plans: Barbaric Iron Breastplate - [7980] = { 2, 175, 7915, {3575,5637,5635}, {10,2,2} }, -- Plans: Barbaric Iron Helm - [7981] = { 2, 180, 7916, {3575,5637,818,3486}, {12,4,4,2} }, -- Plans: Barbaric Iron Boots - [7982] = { 2, 185, 7917, {3575,3486,5637}, {14,3,2} }, -- Plans: Barbaric Iron Gloves - [7983] = { 2, 220, 7926, {3860,6037,7966,7909}, {12,1,1,1} }, -- Plans: Ornate Mithril Pants - [7984] = { 2, 220, 7927, {3860,4338,6037,7966}, {10,6,1,1} }, -- Plans: Ornate Mithril Gloves - [7985] = { 2, 225, 7928, {3860,6037,4304}, {12,1,6} }, -- Plans: Ornate Mithril Shoulder - [7986] = { 2, 240, 7935, {3860,6037,7077,7966}, {16,6,1,1} }, -- Plans: Ornate Mithril Breastplate - [7987] = { 2, 245, 7937, {3860,6037,7971,7966}, {16,2,1,1} }, -- Plans: Ornate Mithril Helm - [7988] = { 2, 245, 7936, {3860,6037,4304,7966,7909}, {14,2,4,1,1} }, -- Plans: Ornate Mithril Boots - [7989] = { 2, 235, 7969, {3860,7966}, {4,3} }, -- Plans: Mithril Spurs - [7990] = { 2, 245, 7934, {3860,7909}, {14,1} }, -- Plans: Heavy Mithril Helm - [7991] = { 2, 235, 7932, {3860,4304,3864}, {14,4,4} }, -- Plans: Mithril Scale Shoulders - [7992] = { 2, 220, 7942, {3860,7909,7966,4304}, {16,2,1,4} }, -- Plans: Blue Glittering Axe - [7993] = { 2, 240, 7944, {3860,7909,1705,1206,7966,4338}, {14,1,2,2,1,2} }, -- Plans: Dazzling Mithril Rapier - [7994] = { 2, 230, 7929, {3860,7067}, {12,1} }, -- Plans: Orcish War Leggings - [7995] = { 2, 215, 7924, {3860,3864}, {8,2} }, -- Plans: Mithril Scale Bracers - [8028] = { 2, 245, 7946, {3860,7075,7966,4304}, {18,2,1,4} }, -- Plans: Runed Mithril Hammer - [8029] = { 2, 225, 7943, {3860,6037,7966,4304}, {14,4,1,2} }, -- Plans: Wicked Mithril Blade - [8030] = { 2, 255, 7947, {3860,6037,7910,7966,4304}, {12,6,2,1,2} }, -- Plans: Ebon Shiv - [8384] = { 3, 200, 8174, {4234,4236,4291}, {12,2,2} }, -- Pattern: Comfortable Leather Hat - [8385] = { 3, 205, 8187, {4304,8167,8343}, {6,8,1} }, -- Pattern: Turtle Scale Gloves - [8386] = { 3, 215, 8200, {4304,8151,8343}, {10,4,1} }, -- Pattern: Big Voodoo Robe - [8387] = { 3, 220, 8201, {4304,8151,8343}, {8,6,1} }, -- Pattern: Big Voodoo Mask - [8388] = { 3, 230, 8195, {4304,4291}, {12,4} }, -- Pattern: Nightscape Cloak - [8389] = { 3, 240, 8202, {4304,8152,8343}, {10,6,2} }, -- Pattern: Big Voodoo Pants - [8390] = { 3, 240, 8216, {4304,8152,8343}, {14,4,2} }, -- Pattern: Big Voodoo Cloak - [8395] = { 3, 220, 8203, {4304,8154,4291}, {12,12,4} }, -- Pattern: Tough Scorpid Breastplate - [8397] = { 3, 220, 8205, {4304,8154,4291}, {10,4,2} }, -- Pattern: Tough Scorpid Bracers - [8398] = { 3, 225, 8204, {4304,8154,4291}, {6,8,2} }, -- Pattern: Tough Scorpid Gloves - [8399] = { 3, 235, 8209, {4304,8154,4291}, {12,12,6} }, -- Pattern: Tough Scorpid Boots - [8400] = { 3, 240, 8207, {4304,8154,8343}, {12,16,2} }, -- Pattern: Tough Scorpid Shoulders - [8401] = { 3, 245, 8206, {4304,8154,8343}, {14,8,2} }, -- Pattern: Tough Scorpid Leggings - [8402] = { 3, 250, 8208, {4304,8154,8343}, {10,20,2} }, -- Pattern: Tough Scorpid Helm - [8403] = { 3, 220, 8210, {4304,8153,8172}, {10,1,1} }, -- Pattern: Wild Leather Shoulders - [8404] = { 3, 225, 8211, {4304,8153,8172}, {12,2,1} }, -- Pattern: Wild Leather Vest - [8405] = { 3, 225, 8214, {4304,8153,8172}, {10,2,1} }, -- Pattern: Wild Leather Helmet - [8406] = { 3, 245, 8213, {4304,8153,8172}, {14,4,2} }, -- Pattern: Wild Leather Boots - [8407] = { 3, 250, 8212, {4304,8153,8172}, {16,6,2} }, -- Pattern: Wild Leather Leggings - [8408] = { 3, 250, 8215, {4304,8153,8172}, {16,6,2} }, -- Pattern: Wild Leather Cloak - [8409] = { 3, 210, 8192, {4304,4338,4291}, {8,6,3} }, -- Pattern: Nightscape Shoulders - [8547] = { 1, 250, 8546, {8150}, {4} }, -- Formula: Powerful Smelling Salts - [9293] = { 4, 210, 9036, {3358,8831,8925}, {1,1,1} }, -- Recipe: Magic Resistance Potion - [9294] = { 4, 225, 9144, {8153,8831,8925}, {1,1,1} }, -- Recipe: Wildvine Potion - [9295] = { 4, 235, 9172, {8845,8838,8925}, {1,1,1} }, -- Recipe: Invisibility Potion - [9296] = { 4, 240, 9088, {8836,8839,8925}, {1,1,1} }, -- Recipe: Gift of Arthas - [9297] = { 4, 240, 9197, {8831,8925}, {3,1} }, -- Recipe: Elixir of Dream Vision - [9298] = { 4, 245, 9206, {8838,8846,8925}, {1,1,1} }, -- Recipe: Elixir of Giants - [9300] = { 4, 250, 9224, {8846,8845,8925}, {1,1,1} }, -- Recipe: Elixir of Demonslaying - [9301] = { 4, 250, 9264, {8845,8925}, {3,1} }, -- Recipe: Elixir of Shadow Power - [9302] = { 4, 245, 9210, {8845,4342,8925}, {2,1,1} }, -- Recipe: Ghost Dye - [9303] = { 4, 225, 9149, {3575,9262,8831,4625}, {4,1,4,4} }, -- Recipe: Philosopher's Stone - [9304] = { 4, 225, 3577, {3575}, {1} }, -- Recipe: Transmute Iron to Gold - [9305] = { 4, 225, 6037, {3860}, {1} }, -- Recipe: Transmute Mithril to Truesilver - [9367] = { 2, 205, 9366, {3859,3577,3486,3864}, {10,4,4,1} }, -- Plans: Golden Scale Gauntlets - [10300] = { 8, 215, 10007, {4339,2604,8343}, {3,2,1} }, -- Pattern: Red Mageweave Vest - [10301] = { 8, 215, 10008, {4339,2324,8343}, {1,1,1} }, -- Pattern: White Bandit Mask - [10302] = { 8, 215, 10009, {4339,2604,8343}, {3,2,1} }, -- Pattern: Red Mageweave Pants - [10303] = { 8, 220, 10010, {4339,7079,8343}, {4,2,2} }, -- Pattern: Stormcloth Pants - [10304] = { 8, 220, 10011, {4339,7079,8343}, {3,2,2} }, -- Pattern: Stormcloth Gloves - [10311] = { 8, 220, 10052, {4339,6261,8343}, {2,2,1} }, -- Pattern: Orange Martial Shirt - [10312] = { 8, 225, 10018, {4339,2604,8343}, {3,2,2} }, -- Pattern: Red Mageweave Gloves - [10313] = { 8, 225, 10020, {4339,7079,8343}, {5,3,2} }, -- Pattern: Stormcloth Vest - [10314] = { 8, 230, 10054, {4339,4342,8343}, {2,2,2} }, -- Pattern: Lavender Mageweave Shirt - [10315] = { 8, 235, 10029, {4339,2604,8343}, {4,2,3} }, -- Pattern: Red Mageweave Shoulders - [10316] = { 8, 120, 10048, {2997,2604,2321}, {5,3,1} }, -- Pattern: Colorful Kilt - [10317] = { 8, 235, 10055, {4339,10290,8343}, {3,1,1} }, -- Pattern: Pink Mageweave Shirt - [10318] = { 8, 240, 10030, {4339,4589,8343}, {3,6,2} }, -- Pattern: Admiral's Hat - [10319] = { 8, 240, 10032, {4339,7079,8343}, {4,4,2} }, -- Pattern: Stormcloth Headband - [10320] = { 8, 240, 10033, {4339,2604,8343}, {4,2,2} }, -- Pattern: Red Mageweave Headband - [10321] = { 8, 240, 10034, {4339,8343}, {4,2} }, -- Pattern: Tuxedo Shirt - [10322] = { 8, 245, 10038, {4339,7079,8343}, {5,6,3} }, -- Pattern: Stormcloth Shoulders - [10323] = { 8, 245, 10035, {4339,8343}, {4,3} }, -- Pattern: Tuxedo Pants - [10324] = { 8, 250, 10039, {4339,7079,8343,4304}, {6,6,3,2} }, -- Pattern: Stormcloth Boots - [10325] = { 8, 250, 10040, {4339,8343}, {5,3} }, -- Pattern: White Wedding Dress - [10326] = { 8, 250, 10036, {4339,8343}, {5,3} }, -- Pattern: Tuxedo Jacket - [10424] = { 2, 155, 10423, {2841,2842,3478}, {12,4,2} }, -- Plans: Silvered Bronze Leggings - [10463] = { 8, 245, 10025, {4339,10285,8343}, {2,8,2} }, -- Pattern: Shadoweave Mask - [10601] = { 9, 175, 10499, {4234,3864}, {6,2} }, -- Schematic: Bright-Eye Goggles - [10602] = { 9, 210, 10546, {10559,7909,4304}, {1,2,2} }, -- Schematic: Deadly Scope - [10603] = { 9, 220, 10501, {4304,7909,10592}, {4,2,1} }, -- Schematic: Catseye Ultra Goggles - [10604] = { 9, 220, 10510, {10559,10560,4400,3860,3864}, {2,1,1,6,2} }, -- Schematic: Mithril Heavy-bore Rifle - [10605] = { 9, 225, 10502, {4304,7910}, {4,2} }, -- Schematic: Spellpower Goggles Xtreme - [10606] = { 9, 225, 10518, {4339,10285,10560,10505}, {4,2,1,4} }, -- Schematic: Parachute Cloak - [10607] = { 9, 230, 10506, {3860,10561,6037,818,774}, {8,1,1,4,4} }, -- Schematic: Deepdive Helmet - [10608] = { 9, 240, 10548, {10559,7910,6037}, {1,1,2} }, -- Schematic: Sniper Scope - [10609] = { 9, 250, 10576, {3860,7077,6037,9060,9061,7910}, {14,4,4,2,2,2} }, -- Schematic: Mithril Mechanical Dragonling - [10644] = { 4, 210, 9061, {4625,9260,3372}, {1,1,1} }, -- Recipe: Goblin Rocket Fuel - [10713] = { 2, 200, 9060, {3860,3577,6037}, {5,1,1} }, -- Plans: Inlaid Mithril Cylinder - [10728] = { 8, 200, 4336, {4305,2325,4291}, {5,1,1} }, -- Pattern: Black Swashbuckler's Shirt - [10858] = { 2, 155, 3851, {3575,3466,3486,2842,4234}, {8,2,1,4,2} }, -- Plans: Solid Iron Maul - [11038] = { 10, 110, nil, {10998,10940}, {1,6} }, -- Formula: Enchant 2H Weapon - Lesser Spirit - [11039] = { 10, 110, nil, {10998}, {1} }, -- Formula: Enchant Cloak - Minor Agility - [11081] = { 10, 115, nil, {10998,10940,10978}, {1,1,1} }, -- Formula: Enchant Shield - Lesser Protection - [11098] = { 10, 135, nil, {11082,6048}, {1,1} }, -- Formula: Enchant Cloak - Lesser Shadow Resistance - [11101] = { 10, 140, nil, {11083}, {2} }, -- Formula: Enchant Bracer - Lesser Strength - [11150] = { 10, 145, nil, {11083,2772}, {1,3} }, -- Formula: Enchant Gloves - Mining - [11151] = { 10, 145, nil, {11083,3356}, {1,3} }, -- Formula: Enchant Gloves - Herbalism - [11152] = { 10, 145, nil, {11083,6370}, {1,3} }, -- Formula: Enchant Gloves - Fishing - [11163] = { 10, 170, nil, {11134,11083}, {1,2} }, -- Formula: Enchant Bracer - Lesser Deflection - [11164] = { 10, 175, nil, {11134,5637,11138}, {1,2,1} }, -- Formula: Enchant Weapon - Lesser Beastslayer - [11165] = { 10, 175, nil, {11134,7067,11138}, {1,1,1} }, -- Formula: Enchant Weapon - Lesser Elemental Slayer - [11166] = { 10, 200, nil, {11137,7392}, {1,3} }, -- Formula: Enchant Gloves - Skinning - [11167] = { 10, 190, nil, {11135,11134}, {1,2} }, -- Formula: Enchant Boots - Lesser Spirit - [11168] = { 10, 195, nil, {11135,11137,11139}, {2,2,1} }, -- Formula: Enchant Shield - Lesser Block - [11202] = { 10, 210, nil, {11137}, {5} }, -- Formula: Enchant Shield - Stamina - [11203] = { 10, 215, nil, {11137,6037}, {3,3} }, -- Formula: Enchant Gloves - Advanced Mining - [11204] = { 10, 220, nil, {11174,11137}, {3,1} }, -- Formula: Enchant Bracer - Greater Spirit - [11205] = { 10, 225, nil, {11137,8838}, {3,3} }, -- Formula: Enchant Gloves - Advanced Herbalism - [11206] = { 10, 225, nil, {11174}, {2} }, -- Formula: Enchant Cloak - Lesser Agility - [11207] = { 10, 265, nil, {11177,7078}, {4,1} }, -- Formula: Enchant Weapon - Fiery Weapon - [11208] = { 10, 230, nil, {11177,11176,9224}, {1,2,1} }, -- Formula: Enchant Weapon - Demonslaying - [11223] = { 10, 235, nil, {11175,11176}, {1,2} }, -- Formula: Enchant Bracer - Deflection - [11224] = { 10, 235, nil, {11178,3829}, {1,1} }, -- Formula: Enchant Shield - Frost Resistance - [11225] = { 10, 245, nil, {11176}, {5} }, -- Formula: Enchant Bracer - Greater Stamina - [11226] = { 10, 250, nil, {11178,11176}, {2,3} }, -- Formula: Enchant Gloves - Riding Skill - [11610] = { 2, 265, 11608, {11371,7077}, {18,4} }, -- Plans: Dark Iron Pulverizer - [11611] = { 2, 275, 11607, {11371,7077}, {26,4} }, -- Plans: Dark Iron Sunderer - [11612] = { 2, 285, 11604, {11371,7077}, {20,8} }, -- Plans: Dark Iron Plate - [11614] = { 2, 270, 11606, {11371,7077}, {10,2} }, -- Plans: Dark Iron Mail - [11615] = { 2, 280, 11605, {11371,7077}, {6,1} }, -- Plans: Dark Iron Shoulders - [11813] = { 10, 265, 11811, {11382,7078,14343}, {1,1,3} }, -- Formula: Smoking Heart of the Mountain - [11827] = { 9, 205, 11826, {7075,4389,7191,3860,6037}, {1,2,1,2,1} }, -- Schematic: Lil' Smoky - [11828] = { 9, 205, 11825, {4394,7077,7191,3860}, {1,1,1,6} }, -- Schematic: Pet Bombling - [12162] = { 2, 160, 3849, {3575,3466,3486,1705,4234}, {6,2,1,2,3} }, -- Plans: Hardened Iron Shortsword - [12163] = { 2, 180, 3853, {3859,3466,3486,1705,4234}, {8,2,2,3,3} }, -- Plans: Moonsteel Broadsword - [12164] = { 2, 185, 3855, {3575,3466,3486,3577,4234}, {14,2,2,4,2} }, -- Plans: Massive Iron Axe - [12226] = { 6, 1, 12224, {12223,2678}, {1,1} }, -- Recipe: Crispy Bat Wing - [12227] = { 6, 125, 12209, {1015,2678}, {1,1} }, -- Recipe: Lean Wolf Steak - [12228] = { 6, 175, 12210, {12184,2692}, {1,1} }, -- Recipe: Roast Raptor - [12229] = { 6, 175, 13851, {12203,2692}, {1,1} }, -- Recipe: Hot Wolf Ribs - [12231] = { 6, 175, 12212, {12202,159,4536}, {1,1,2} }, -- Recipe: Jungle Stew - [12232] = { 6, 175, 12213, {12037,2692}, {1,1} }, -- Recipe: Carrion Surprise - [12233] = { 6, 175, 12214, {12037,2596}, {1,1} }, -- Recipe: Mystery Stew - [12239] = { 6, 200, 12217, {12037,4402,2692}, {1,1,1} }, -- Recipe: Dragonbreath Chili - [12240] = { 6, 200, 12215, {12204,3713,159}, {2,1,1} }, -- Recipe: Heavy Kodo Stew - [12261] = { 2, 190, 12260, {3859,3577,7068,4234}, {10,4,2,2} }, -- Plans: Searing Golden Blade - [12682] = { 2, 250, 12405, {12359,12361,11188}, {16,1,4} }, -- Plans: Thorium Armor - [12683] = { 2, 250, 12406, {12359,11186}, {12,4} }, -- Plans: Thorium Belt - [12684] = { 2, 255, 12408, {12359,11184}, {12,4} }, -- Plans: Thorium Bracers - [12685] = { 2, 260, 12416, {12359,7077}, {10,2} }, -- Plans: Radiant Belt - [12687] = { 2, 265, 12428, {12359,8170,3864}, {24,6,2} }, -- Plans: Imperial Plate Shoulders - [12688] = { 2, 265, 12424, {12359,8170,7909}, {22,6,1} }, -- Plans: Imperial Plate Belt - [12689] = { 2, 270, 12415, {12359,7077,7910}, {18,2,1} }, -- Plans: Radiant Breastplate - [12690] = { 2, 270, 12425, {12359,7910}, {20,1} }, -- Plans: Imperial Plate Bracers - [12691] = { 2, 270, 12624, {12359,12655,12803,8153,12364}, {40,2,4,4,1} }, -- Plans: Wildthorn Mail - [12692] = { 2, 275, 12645, {12359,12644,7076}, {4,4,2} }, -- Plans: Thorium Shield Spike - [12693] = { 2, 280, 12409, {12359,8170,11185}, {20,8,4} }, -- Plans: Thorium Boots - [12694] = { 2, 280, 12410, {12359,7910,11188}, {24,1,4} }, -- Plans: Thorium Helm - [12695] = { 2, 285, 12418, {12359,7077}, {18,4} }, -- Plans: Radiant Gloves - [12696] = { 2, 285, 12628, {12359,12662,12361,7910}, {40,10,4,4} }, -- Plans: Demon Forged Breastplate - [12697] = { 2, 290, 12419, {12359,7077}, {14,4} }, -- Plans: Radiant Boots - [12698] = { 2, 290, 12625, {12359,12360,12364,7080}, {20,4,2,2} }, -- Plans: Dawnbringer Shoulders - [12699] = { 2, 290, 12631, {12359,12655,7078,7910}, {20,6,2,4} }, -- Plans: Fiery Plate Gauntlets - [12700] = { 2, 295, 12426, {12359,7910,7909}, {34,1,1} }, -- Plans: Imperial Plate Boots - [12701] = { 2, 295, 12427, {12359,7910}, {34,2} }, -- Plans: Imperial Plate Helm - [12702] = { 2, 295, 12417, {12359,7077}, {18,4} }, -- Plans: Radiant Circlet - [12703] = { 2, 295, 12632, {12359,12655,7080,12361}, {20,4,4,4} }, -- Plans: Storm Gauntlets - [12704] = { 2, 300, 12414, {12359,11186}, {26,4} }, -- Plans: Thorium Leggings - [12705] = { 2, 300, 12422, {12359,7910}, {40,2} }, -- Plans: Imperial Plate Chest - [12706] = { 2, 300, 12610, {12359,12360,3577}, {20,2,6} }, -- Plans: Runic Plate Shoulders - [12707] = { 2, 300, 12611, {12359,12360,2842}, {20,2,10} }, -- Plans: Runic Plate Boots - [12711] = { 2, 300, 12633, {12359,12655,6037,3577,12800}, {20,4,6,6,2} }, -- Plans: Whitesoul Helm - [12713] = { 2, 300, 12420, {12359,7077}, {20,4} }, -- Plans: Radiant Leggings - [12714] = { 2, 300, 12612, {12359,12360,6037,12364}, {30,2,2,1} }, -- Plans: Runic Plate Helm - [12715] = { 2, 300, 12429, {12359,7910}, {44,2} }, -- Plans: Imperial Plate Leggings - [12716] = { 2, 300, 12636, {12359,12655,8168,12799,12364}, {40,4,60,6,2} }, -- Plans: Helm of the Great Chief - [12717] = { 2, 300, 12640, {12359,12360,8146,12361,12800}, {80,12,40,10,4} }, -- Plans: Lionheart Helm - [12718] = { 2, 300, 12613, {12359,12360,7910}, {40,2,1} }, -- Plans: Runic Breastplate - [12719] = { 2, 300, 12614, {12359,12360,7910}, {40,2,1} }, -- Plans: Runic Plate Leggings - [12720] = { 2, 300, 12639, {12360,12655,7076,12361,12799}, {15,20,10,4,4} }, -- Plans: Stronghold Gauntlets - [12725] = { 2, 300, 12620, {12360,12655,7076,12799,12800}, {6,16,6,2,1} }, -- Plans: Enchanted Thorium Helm - [12726] = { 2, 300, 12619, {12360,12655,7080,12361,12364}, {10,20,6,2,1} }, -- Plans: Enchanted Thorium Leggings - [12727] = { 2, 300, 12618, {12360,12655,7076,7080,12364,12800}, {8,24,4,4,2,2} }, -- Plans: Enchanted Thorium Breastplate - [12728] = { 2, 300, 12641, {12360,12655,12364,12800}, {30,30,6,6} }, -- Plans: Invulnerable Mail - [12816] = { 2, 260, 12764, {12359,12644,8170}, {16,2,4} }, -- Plans: Thorium Greatsword - [12817] = { 2, 270, 12769, {12359,12803,8153,12799,12644,8170}, {30,6,6,6,2,8} }, -- Plans: Bleakwood Hew - [12818] = { 2, 270, 12772, {12359,3577,6037,12361,8170}, {30,4,2,2,4} }, -- Plans: Inlaid Thorium Hammer - [12819] = { 2, 275, 12773, {12359,12799,12644,8170}, {20,2,2,4} }, -- Plans: Ornate Thorium Handaxe - [12821] = { 2, 275, 12774, {12359,12655,7910,12361,12644,8170}, {30,4,4,4,2,4} }, -- Plans: Dawn's Edge - [12823] = { 2, 280, 12775, {12359,12644,8170}, {40,6,6} }, -- Plans: Huge Thorium Battleaxe - [12824] = { 2, 280, 12776, {12359,12655,12364,12804,8170}, {20,6,2,4,4} }, -- Plans: Enchanted Battlehammer - [12825] = { 2, 280, 12777, {12655,7078,7077,12800,12644}, {10,4,4,2,2} }, -- Plans: Blazing Rapier - [12826] = { 2, 285, 12779, {12359,12799,12644,8170}, {30,2,2,4} }, -- Plans: Rune Edge - [12827] = { 2, 285, 12781, {12655,12360,12804,12799,12361,12364}, {6,2,4,2,2,1} }, -- Plans: Serenity - [12828] = { 2, 290, 12792, {12359,7077,7910,8170}, {30,4,4,4} }, -- Plans: Volcanic Hammer - [12830] = { 2, 290, 12782, {12359,12360,12662,12808,12361,12644,8170}, {40,2,16,8,2,2,4} }, -- Plans: Corruption - [12831] = { 2, 300, 12795, {12655,12360,12662,7910,12644}, {10,10,8,10,2} }, -- Plans: Blood Talon - [12832] = { 2, 300, 12802, {12655,12804,12364,12800,12644}, {20,20,2,2,2} }, -- Plans: Darkspear - [12833] = { 2, 300, 12796, {12359,12360,12809,12810,7076}, {50,15,4,6,10} }, -- Plans: Hammer of the Titans - [12834] = { 2, 300, 12790, {12360,12800,12811,12799,12810,12644}, {15,8,1,4,8,2} }, -- Plans: Arcanite Champion - [12835] = { 2, 300, 12798, {12359,12360,12808,12364,12644,12810}, {40,12,10,8,2,4} }, -- Plans: Annihilator - [12836] = { 2, 300, 12797, {12360,12361,12800,7080,12644,12810}, {18,8,8,4,2,4} }, -- Plans: Frostguard - [12837] = { 2, 300, 12794, {12655,12364,12799,7076,12810}, {20,8,8,6,4} }, -- Plans: Masterwork Stormhammer - [12838] = { 2, 300, 12784, {12360,12810,12644}, {20,6,2} }, -- Plans: Arcanite Reaper - [12839] = { 2, 300, 12783, {12360,12655,12810,7910,12800,12799,12644}, {10,10,2,6,6,6,4} }, -- Plans: Heartseeker - [12958] = { 4, 275, 12360, {12359,12363}, {1,1} }, -- Recipe: Transmute Arcanite - [13287] = { 3, 165, 4455, {4461,4234,2321}, {6,4,2} }, -- Pattern: Raptor Hide Harness - [13288] = { 3, 165, 4456, {4461,4234,2321}, {4,4,2} }, -- Pattern: Raptor Hide Belt - [13308] = { 9, 155, 4386, {4375,3829}, {1,1} }, -- Schematic: Ice Deflector - [13309] = { 9, 120, 4372, {4371,4359,4400,1206}, {2,2,1,3} }, -- Schematic: Lovingly Crafted Boomstick - [13310] = { 9, 180, 4407, {4371,1529,3864}, {1,1,1} }, -- Schematic: Accurate Scope - [13311] = { 9, 200, 4396, {4382,4387,4389,3864,7191}, {1,4,4,2,1} }, -- Schematic: Mechanical Dragonling - [13476] = { 4, 255, 13442, {8846,8925}, {3,1} }, -- Recipe: Mighty Rage Potion - [13477] = { 4, 260, 13443, {8838,8839,8925}, {2,2,1} }, -- Recipe: Superior Mana Potion - [13478] = { 4, 265, 13445, {13423,8838,8925}, {2,1,1} }, -- Recipe: Elixir of Superior Defense - [13479] = { 4, 270, 13447, {13463,13466,8925}, {1,2,1} }, -- Recipe: Elixir of the Sages - [13480] = { 4, 275, 13446, {13464,13465,8925}, {2,1,1} }, -- Recipe: Major Healing Potion - [13481] = { 4, 275, 13453, {8846,13466,8925}, {2,2,1} }, -- Recipe: Elixir of Brute Force - [13482] = { 4, 275, 7078, {7082}, {1} }, -- Recipe: Transmute Air to Fire - [13483] = { 4, 275, 7076, {7078}, {1} }, -- Recipe: Transmute Fire to Earth - [13484] = { 4, 275, 7080, {7076}, {1} }, -- Recipe: Transmute Earth to Water - [13485] = { 4, 275, 7082, {7080}, {1} }, -- Recipe: Transmute Water to Air - [13486] = { 4, 275, 7080, {12808}, {1} }, -- Recipe: Transmute Undeath to Water - [13487] = { 4, 275, 12808, {7080}, {1} }, -- Recipe: Transmute Water to Undeath - [13488] = { 4, 275, 7076, {12803}, {1} }, -- Recipe: Transmute Life to Earth - [13489] = { 4, 275, 12803, {7076}, {1} }, -- Recipe: Transmute Earth to Life - [13490] = { 4, 280, 13455, {13423,10620,8925}, {3,1,1} }, -- Recipe: Greater Stoneshield Potion - [13491] = { 4, 280, 13452, {13465,13466,8925}, {2,2,1} }, -- Recipe: Elixir of the Mongoose - [13492] = { 4, 285, 13462, {13467,13466,8925}, {2,2,1} }, -- Recipe: Purification Potion - [13493] = { 4, 285, 13454, {13463,13465,8925}, {3,1,1} }, -- Recipe: Greater Arcane Elixir - [13494] = { 4, 290, 13457, {7068,13463,8925}, {1,1,1} }, -- Recipe: Greater Fire Protection Potion - [13495] = { 4, 290, 13456, {7070,13463,8925}, {1,1,1} }, -- Recipe: Greater Frost Protection Potion - [13496] = { 4, 290, 13458, {7067,13463,8925}, {1,1,1} }, -- Recipe: Greater Nature Protection Potion - [13497] = { 4, 290, 13461, {11176,13463,8925}, {1,1,1} }, -- Recipe: Greater Arcane Protection Potion - [13499] = { 4, 290, 13459, {3824,13463,8925}, {1,1,1} }, -- Recipe: Greater Shadow Protection Potion - [13500] = { 4, 290, 13460, {7069,13463,8925}, {1,1,1} }, -- Recipe: Greater Holy Protection Potion - [13501] = { 4, 295, 13444, {13463,13467,8925}, {3,2,1} }, -- Recipe: Major Mana Potion - [13517] = { 4, 300, 13503, {7078,7076,7082,7080,12803,9262,13468}, {8,8,8,8,8,2,4} }, -- Recipe: Alchemists' Stone - [13518] = { 4, 300, 13506, {13423,13465,13468,8925}, {30,10,1,1} }, -- Recipe: Flask of Petrification - [13519] = { 4, 300, 13510, {8846,13423,13468,8925}, {30,10,1,1} }, -- Recipe: Flask of the Titans - [13520] = { 4, 300, 13511, {13463,13467,13468,8925}, {30,10,1,1} }, -- Recipe: Flask of Distilled Wisdom - [13521] = { 4, 300, 13512, {13463,13465,13468,8925}, {30,10,1,1} }, -- Recipe: Flask of Supreme Power - [13522] = { 4, 300, 13513, {13467,13465,13468,8925}, {30,10,1,1} }, -- Recipe: Flask of Chromatic Resistance - [13939] = { 6, 225, 6887, {4603}, {1} }, -- Recipe: Spotted Yellowtail - [13940] = { 6, 225, 13927, {13754,3713}, {1,1} }, -- Recipe: Cooked Glossy Mightfish - [13941] = { 6, 225, 13930, {13758}, {1} }, -- Recipe: Filet of Redgill - [13942] = { 6, 240, 13928, {13755,3713}, {1,1} }, -- Recipe: Grilled Squid - [13943] = { 6, 240, 13929, {13756,2692}, {1,2} }, -- Recipe: Hot Smoked Bass - [13945] = { 6, 250, 13931, {13759,159}, {1,1} }, -- Recipe: Nightfin Soup - [13946] = { 6, 250, 13932, {13760}, {1} }, -- Recipe: Poached Sunscale Salmon - [13947] = { 6, 275, 13933, {13888,159}, {1,1} }, -- Recipe: Lobster Stew - [13948] = { 6, 275, 13934, {13893,2692,3713}, {1,1,1} }, -- Recipe: Mightfish Steak - [13949] = { 6, 275, 13935, {13889,3713}, {1,1} }, -- Recipe: Baked Salmon - [14466] = { 8, 255, 13869, {14048,7079,14341}, {5,2,1} }, -- Pattern: Frostweave Tunic - [14467] = { 8, 255, 13868, {14048,7079,14341}, {5,2,1} }, -- Pattern: Frostweave Robe - [14468] = { 8, 260, 14046, {14048,8170,14341}, {5,2,1} }, -- Pattern: Runecloth Bag - [14469] = { 8, 260, 13858, {14048,14227,14341}, {5,1,1} }, -- Pattern: Runecloth Robe - [14470] = { 8, 260, 13857, {14048,14227,14341}, {5,1,1} }, -- Pattern: Runecloth Tunic - [14471] = { 8, 260, 14042, {14048,7077,14341}, {5,3,1} }, -- Pattern: Cindercloth Vest - [14472] = { 8, 265, 13860, {14048,14227,14341}, {4,1,1} }, -- Pattern: Runecloth Cloak - [14473] = { 8, 265, 14143, {14048,9210,14227,14341}, {3,2,1,1} }, -- Pattern: Ghostweave Belt - [14474] = { 8, 265, 13870, {14048,7080,14341}, {3,1,1} }, -- Pattern: Frostweave Gloves - [14476] = { 8, 270, 14043, {14048,7077,14341}, {4,3,1} }, -- Pattern: Cindercloth Gloves - [14477] = { 8, 270, 14142, {14048,9210,14227,14341}, {4,2,1,1} }, -- Pattern: Ghostweave Gloves - [14478] = { 8, 270, 14100, {14048,3577,14341}, {5,2,1} }, -- Pattern: Brightcloth Robe - [14479] = { 8, 270, 14101, {14048,3577,14341}, {4,2,1} }, -- Pattern: Brightcloth Gloves - [14480] = { 8, 275, 14141, {14048,9210,14227,14341}, {6,4,1,1} }, -- Pattern: Ghostweave Vest - [14481] = { 8, 275, 13863, {14048,8170,14341}, {4,4,1} }, -- Pattern: Runecloth Gloves - [14482] = { 8, 275, 14044, {14048,7078,14341}, {5,1,1} }, -- Pattern: Cindercloth Cloak - [14483] = { 8, 275, 14107, {14048,14256,14341}, {5,4,1} }, -- Pattern: Felcloth Pants - [14484] = { 8, 275, 14103, {14048,3577,14341}, {4,2,1} }, -- Pattern: Brightcloth Cloak - [14485] = { 8, 275, 14132, {14048,11176,14341}, {6,1,1} }, -- Pattern: Wizardweave Leggings - [14486] = { 8, 275, 14134, {14048,7078,7077,7068,14341}, {6,4,4,4,1} }, -- Pattern: Cloak of Fire - [14488] = { 8, 280, 13864, {14048,14227,8170,14341}, {4,2,4,1} }, -- Pattern: Runecloth Boots - [14489] = { 8, 280, 13871, {14048,7080,14341}, {6,1,1} }, -- Pattern: Frostweave Pants - [14490] = { 8, 280, 14045, {14048,7078,14341}, {6,1,1} }, -- Pattern: Cindercloth Pants - [14491] = { 8, 285, 13865, {14048,14227,14341}, {6,2,1} }, -- Pattern: Runecloth Pants - [14492] = { 8, 285, 14108, {14048,14256,8170,14341}, {6,4,4,1} }, -- Pattern: Felcloth Boots - [14493] = { 8, 285, 14136, {14048,14256,12808,7080,14341}, {10,12,4,4,1} }, -- Pattern: Robe of Winter Night - [14494] = { 8, 290, 14104, {14048,3577,14227,14341}, {6,4,1,1} }, -- Pattern: Brightcloth Pants - [14495] = { 8, 290, 14144, {14048,9210,14341}, {6,4,1} }, -- Pattern: Ghostweave Pants - [14496] = { 8, 290, 14111, {14048,14256,14341}, {5,4,1} }, -- Pattern: Felcloth Hood - [14497] = { 8, 290, 14137, {14048,14342,14341}, {6,4,1} }, -- Pattern: Mooncloth Leggings - [14498] = { 8, 295, 13866, {14048,14227,14341}, {4,2,1} }, -- Pattern: Runecloth Headband - [14499] = { 8, 300, 14155, {14048,14342,14341}, {4,1,1} }, -- Pattern: Mooncloth Bag - [14500] = { 8, 300, 14128, {14048,11176,14341}, {8,2,1} }, -- Pattern: Wizardweave Robe - [14501] = { 8, 300, 14138, {14048,14342,14341}, {6,4,1} }, -- Pattern: Mooncloth Vest - [14504] = { 8, 300, 13867, {14048,14227,8170,14341}, {7,2,4,1} }, -- Pattern: Runecloth Shoulders - [14505] = { 8, 300, 14130, {14048,11176,7910,14341}, {6,4,1,1} }, -- Pattern: Wizardweave Turban - [14506] = { 8, 300, 14106, {14048,14256,12662,14341}, {8,8,4,2} }, -- Pattern: Felcloth Robe - [14507] = { 8, 300, 14139, {14048,14342,14341}, {5,5,1} }, -- Pattern: Mooncloth Shoulders - [14508] = { 8, 300, 14112, {14048,14256,12662,8170,14341}, {7,6,4,4,2} }, -- Pattern: Felcloth Shoulders - [14509] = { 8, 300, 14140, {14048,14342,12800,12810,14341}, {4,6,1,2,2} }, -- Pattern: Mooncloth Circlet - [14510] = { 8, 300, 14156, {14048,14342,14344,17012,14341}, {8,12,2,2,2} }, -- Pattern: Bottomless Bag - [14511] = { 8, 300, 14146, {14048,14342,9210,13926,12364,12810,14341}, {10,10,10,6,6,8,2} }, -- Pattern: Gloves of Spell Mastery - [14512] = { 8, 300, 14154, {14048,14342,12811,13926,9210,14341}, {12,10,4,4,10,2} }, -- Pattern: Truefaith Vestments - [14513] = { 8, 300, 14152, {14048,7078,7082,7076,7080,14341}, {12,10,10,10,10,2} }, -- Pattern: Robe of the Archmage - [14514] = { 8, 300, 14153, {14048,12662,14256,7078,12808,14341}, {12,20,40,12,12,2} }, -- Pattern: Robe of the Void - [14526] = { 8, 250, 14342, {14256}, {2} }, -- Pattern: Mooncloth - [14627] = { 8, 135, 4332, {4305,4341,2321}, {1,1,1} }, -- Pattern: Bright Yellow Shirt - [14630] = { 8, 165, 4322, {4305,2321,4337}, {3,2,2} }, -- Pattern: Enchanter's Cowl - [14634] = { 4, 200, 3829, {3358,3819,3372}, {4,2,1} }, -- Recipe: Frost Oil - [14635] = { 3, 185, 4262, {4236,5500,1529,3864,2321}, {4,2,2,1,1} }, -- Pattern: Gem-studded Leather Belt - [14639] = { 9, 140, 4381, {4371,4375,2319,1206}, {1,2,2,1} }, -- Schematic: Minor Recombobulator - [15724] = { 3, 255, 15077, {8170,15408,14341}, {4,4,1} }, -- Pattern: Heavy Scorpid Bracers - [15725] = { 3, 260, 15083, {8170,2325,14341}, {8,1,1} }, -- Pattern: Wicked Leather Gauntlets - [15726] = { 3, 260, 15045, {8170,15412,14341}, {20,25,2} }, -- Pattern: Green Dragonscale Breastplate - [15727] = { 3, 265, 15076, {8170,15408,14341}, {6,6,1} }, -- Pattern: Heavy Scorpid Vest - [15728] = { 3, 265, 15084, {8170,2325,14341}, {8,1,1} }, -- Pattern: Wicked Leather Bracers - [15729] = { 3, 265, 15074, {8170,15423,14341}, {6,6,1} }, -- Pattern: Chimeric Gloves - [15730] = { 3, 300, 15047, {8170,15414,14341}, {40,30,1} }, -- Pattern: Red Dragonscale Breastplate - [15731] = { 3, 270, 15091, {8170,14047,14341}, {10,6,1} }, -- Pattern: Runic Leather Gauntlets - [15732] = { 3, 270, 15054, {8170,7078,7075,14341}, {6,1,1,1} }, -- Pattern: Volcanic Leggings - [15733] = { 3, 270, 15046, {8170,15412,14341}, {20,25,1} }, -- Pattern: Green Dragonscale Leggings - [15734] = { 3, 270, 15061, {8170,12803,14341}, {12,4,1} }, -- Pattern: Living Shoulders - [15735] = { 3, 270, 15067, {8170,15420,1529,14341}, {24,80,2,1} }, -- Pattern: Ironfeather Shoulders - [15737] = { 3, 275, 15073, {8170,15423,14341}, {4,8,1} }, -- Pattern: Chimeric Boots - [15738] = { 3, 275, 15078, {8170,15408,14341}, {6,8,1} }, -- Pattern: Heavy Scorpid Gauntlets - [15739] = { 3, 275, 15092, {8170,7971,14047,14341}, {6,1,6,1} }, -- Pattern: Runic Leather Bracers - [15740] = { 3, 275, 15071, {8170,15422,14341}, {4,6,1} }, -- Pattern: Frostsaber Boots - [15741] = { 3, 275, 15057, {8170,7080,7082,14341}, {16,2,2,1} }, -- Pattern: Stormshroud Pants - [15742] = { 3, 275, 15064, {8170,15419,14341}, {28,12,1} }, -- Pattern: Warbear Harness - [15743] = { 3, 280, 15082, {8170,15408,14341}, {6,8,1} }, -- Pattern: Heavy Scorpid Belt - [15744] = { 3, 280, 15086, {8170,2325,14341}, {12,1,1} }, -- Pattern: Wicked Leather Headband - [15745] = { 3, 280, 15093, {8170,14047,14341}, {12,10,1} }, -- Pattern: Runic Leather Belt - [15746] = { 3, 280, 15072, {8170,15423,14341}, {8,8,1} }, -- Pattern: Chimeric Leggings - [15747] = { 3, 285, 15069, {8170,15422,14341}, {6,8,1} }, -- Pattern: Frostsaber Leggings - [15748] = { 3, 285, 15079, {8170,15408,14341}, {8,12,1} }, -- Pattern: Heavy Scorpid Leggings - [15749] = { 3, 285, 15053, {8170,7078,7076,14341}, {8,1,1,1} }, -- Pattern: Volcanic Breastplate - [15751] = { 3, 285, 15048, {8170,15415,15407,14341}, {28,30,1,1} }, -- Pattern: Blue Dragonscale Breastplate - [15752] = { 3, 285, 15060, {8170,12803,15407,14341}, {16,6,1,1} }, -- Pattern: Living Leggings - [15753] = { 3, 285, 15056, {8170,7080,7082,15407,14341}, {16,3,3,1,1} }, -- Pattern: Stormshroud Armor - [15754] = { 3, 285, 15065, {8170,15419,14341}, {24,14,1} }, -- Pattern: Warbear Woolies - [15755] = { 3, 290, 15075, {8170,15423,14341}, {10,10,1} }, -- Pattern: Chimeric Vest - [15756] = { 3, 290, 15094, {8170,14047,14341}, {14,10,1} }, -- Pattern: Runic Leather Headband - [15757] = { 3, 290, 15087, {8170,15407,2325,14341}, {16,1,3,1} }, -- Pattern: Wicked Leather Pants - [15758] = { 3, 290, 15063, {8170,15417,14341}, {30,8,1} }, -- Pattern: Devilsaur Gauntlets - [15759] = { 3, 290, 15050, {8170,15416,15407,14341}, {40,60,1,2} }, -- Pattern: Black Dragonscale Breastplate - [15760] = { 3, 290, 15066, {8170,15420,1529,15407,14341}, {40,120,1,1,1} }, -- Pattern: Ironfeather Breastplate - [15761] = { 3, 295, 15070, {8170,15422,14341}, {6,10,1} }, -- Pattern: Frostsaber Gloves - [15762] = { 3, 295, 15080, {8170,15408,15407,14341}, {8,12,1,1} }, -- Pattern: Heavy Scorpid Helm - [15763] = { 3, 295, 15049, {8170,15415,12810,15407,14341}, {28,30,2,1,1} }, -- Pattern: Blue Dragonscale Shoulders - [15764] = { 3, 295, 15058, {8170,7080,7082,12810,14341}, {12,3,3,2,1} }, -- Pattern: Stormshroud Shoulders - [15765] = { 3, 300, 15095, {8170,14047,12810,14341}, {18,12,2,1} }, -- Pattern: Runic Leather Pants - [15768] = { 3, 300, 15088, {8170,2325,14341}, {14,2,2} }, -- Pattern: Wicked Leather Belt - [15769] = { 3, 300, 15138, {15410,14044,14341}, {1,1,1} }, -- Pattern: Onyxia Scale Cloak - [15770] = { 3, 300, 15051, {8170,15416,12810,15407,14341}, {44,45,2,1,1} }, -- Pattern: Black Dragonscale Shoulders - [15771] = { 3, 300, 15059, {8170,12803,14342,15407,14341}, {16,8,2,1,2} }, -- Pattern: Living Breastplate - [15772] = { 3, 300, 15062, {8170,15417,15407,14341}, {30,14,1,1} }, -- Pattern: Devilsaur Leggings - [15773] = { 3, 300, 15085, {8170,15407,14256,2325,14341}, {20,2,6,4,2} }, -- Pattern: Wicked Leather Armor - [15774] = { 3, 300, 15081, {8170,15408,15407,14341}, {14,14,1,2} }, -- Pattern: Heavy Scorpid Shoulders - [15775] = { 3, 300, 15055, {8170,7078,7076,14341}, {10,1,1,2} }, -- Pattern: Volcanic Shoulders - [15776] = { 3, 300, 15090, {8170,12810,14047,15407,14341}, {22,4,16,1,2} }, -- Pattern: Runic Leather Armor - [15777] = { 3, 300, 15096, {8170,12810,14047,15407,14341}, {16,4,18,1,2} }, -- Pattern: Runic Leather Shoulders - [15779] = { 3, 300, 15068, {8170,15422,15407,14341}, {12,12,1,2} }, -- Pattern: Frostsaber Tunic - [15780] = { 3, 300, 15141, {8170,15410,15416,14341}, {40,12,60,2} }, -- Pattern: Onyxia Scale Breastplate - [15781] = { 3, 300, 15052, {8170,15416,12810,15407,14341}, {40,60,4,1,2} }, -- Pattern: Black Dragonscale Leggings - [16041] = { 9, 260, 15993, {15994,12359,15992,14047}, {1,3,3,3} }, -- Schematic: Thorium Grenade - [16042] = { 9, 260, 15994, {12359,14047}, {3,1} }, -- Schematic: Thorium Widget - [16043] = { 9, 260, 15995, {10559,10561,15994,12359,10546}, {2,2,2,4,1} }, -- Schematic: Thorium Rifle - [16044] = { 9, 265, 15996, {12803,15994,10558,8170}, {1,4,1,1} }, -- Schematic: Lifelike Mechanical Toad - [16045] = { 9, 270, 15999, {10502,7910,12810,14047}, {1,4,2,8} }, -- Schematic: Spellpower Goggles Xtreme Plus - [16046] = { 9, 275, 16023, {10561,16000,15994,6037,8170,14047}, {1,1,2,1,2,4} }, -- Schematic: Masterwork Target Dummy - [16047] = { 9, 275, 16000, {12359}, {6} }, -- Schematic: Thorium Tube - [16048] = { 9, 275, 16004, {16000,11371,10546,12361,12799,8170}, {2,6,2,2,2,4} }, -- Schematic: Dark Iron Rifle - [16049] = { 9, 285, 16005, {15994,11371,15992,14047}, {2,1,3,3} }, -- Schematic: Dark Iron Bomb - [16050] = { 9, 285, 16006, {12360,14227}, {1,1} }, -- Schematic: Delicate Arcanite Converter - [16051] = { 9, 285, 15997, {12359,15992}, {2,1} }, -- Schematic: Thorium Shells - [16052] = { 9, 290, 16009, {16006,10558,15994,12799}, {2,1,1,1} }, -- Schematic: Voice Amplification Modulator - [16053] = { 9, 290, 16008, {10500,12364,12810}, {1,2,4} }, -- Schematic: Master Engineer's Goggles - [16054] = { 9, 300, 16022, {10576,16006,12655,15994,10558,12810}, {1,8,10,6,4,6} }, -- Schematic: Arcanite Dragonling - [16055] = { 9, 300, 16040, {16006,12359,14047}, {1,3,1} }, -- Schematic: Arcane Bomb - [16056] = { 9, 300, 16007, {12360,16000,7078,7076,12800,12810}, {10,2,2,2,2,2} }, -- Schematic: Flawless Arcanite Rifle - [16110] = { 6, 225, 12218, {12207,3713}, {1,2} }, -- Recipe: Monster Omelet - [16111] = { 6, 225, 12216, {12206,2692}, {1,2} }, -- Recipe: Spiced Chili Crab - [16112] = { 1, 180, 6451, {4306}, {2} }, -- Manual: Heavy Silk Bandage - [16113] = { 1, 210, 8544, {4338}, {1} }, -- Manual: Mageweave Bandage - [16214] = { 10, 255, nil, {16202}, {3} }, -- Formula: Enchant Bracer - Greater Intellect - [16215] = { 10, 260, nil, {11176}, {10} }, -- Formula: Enchant Boots - Greater Stamina - [16216] = { 10, 265, nil, {16202,7077,7075,7079,7081,7972}, {2,1,1,1,1,1} }, -- Formula: Enchant Cloak - Greater Resistance - [16217] = { 10, 265, nil, {11176}, {10} }, -- Formula: Enchant Shield - Greater Stamina - [16218] = { 10, 270, nil, {16202,11176}, {3,10} }, -- Formula: Enchant Bracer - Superior Spirit - [16219] = { 10, 270, nil, {16202,16204}, {3,3} }, -- Formula: Enchant Gloves - Greater Agility - [16220] = { 10, 275, nil, {16203,16202}, {2,1} }, -- Formula: Enchant Boots - Spirit - [16221] = { 10, 275, nil, {16204,14343}, {6,1} }, -- Formula: Enchant Chest - Major Health - [16222] = { 10, 280, nil, {16203,16204}, {2,4} }, -- Formula: Enchant Shield - Superior Spirit - [16223] = { 10, 285, nil, {14343,7080,7082,13467}, {4,1,1,1} }, -- Formula: Enchant Weapon - Icy Chill - [16224] = { 10, 285, nil, {16204}, {8} }, -- Formula: Enchant Cloak - Superior Defense - [16242] = { 10, 290, nil, {16203,14343}, {3,1} }, -- Formula: Enchant Chest - Major Mana - [16243] = { 10, 290, 16207, {16206,13926,16204,16203,14343,14344}, {1,1,10,4,4,2} }, -- Formula: Runed Arcanite Rod - [16244] = { 10, 295, nil, {16203,16204}, {4,4} }, -- Formula: Enchant Gloves - Greater Strength - [16245] = { 10, 295, nil, {16203}, {8} }, -- Formula: Enchant Boots - Greater Agility - [16246] = { 10, 295, nil, {16204,16203}, {6,6} }, -- Formula: Enchant Bracer - Superior Strength - [16247] = { 10, 295, nil, {14344,16204}, {4,10} }, -- Formula: Enchant 2H Weapon - Superior Impact - [16248] = { 10, 295, nil, {14344,12808}, {4,4} }, -- Formula: Enchant Weapon - Unholy - [16249] = { 10, 300, nil, {16203,14344}, {12,2} }, -- Formula: Enchant 2H Weapon - Major Intellect - [16250] = { 10, 300, nil, {14344,16203}, {2,10} }, -- Formula: Enchant Weapon - Superior Striking - [16251] = { 10, 300, nil, {16204}, {15} }, -- Formula: Enchant Bracer - Superior Stamina - [16252] = { 10, 300, nil, {14344,12811}, {4,2} }, -- Formula: Enchant Weapon - Crusader - [16253] = { 10, 300, nil, {14344,16204,16203}, {4,15,10} }, -- Formula: Enchant Chest - Greater Stats - [16254] = { 10, 300, nil, {14344,12808,12803}, {6,6,6} }, -- Formula: Enchant Weapon - Lifestealing - [16255] = { 10, 300, nil, {16203,14344}, {12,2} }, -- Formula: Enchant 2H Weapon - Major Spirit - [16767] = { 6, 225, 16766, {7974,2692,1179}, {2,1,1} }, -- Recipe: Undermine Clam Chowder - [17017] = { 8, 300, 16980, {14048,17010,17011,12810,14341}, {12,4,4,6,2} }, -- Pattern: Flarecore Mantle - [17018] = { 8, 300, 16979, {14048,17010,7078,12810,14341}, {8,6,4,2,2} }, -- Pattern: Flarecore Gloves - [17022] = { 3, 295, 16982, {17012,17010,17011,14341}, {20,6,2,2} }, -- Pattern: Corehound Boots - [17023] = { 3, 300, 16983, {17012,17010,17011,14341}, {15,3,6,2} }, -- Pattern: Molten Helm - [17025] = { 3, 300, 16984, {12810,15416,17010,17011,14341}, {6,30,4,3,2} }, -- Pattern: Black Dragonscale Boots - [17049] = { 2, 295, 16989, {11371,17010,17011}, {6,3,3} }, -- Plans: Fiery Chain Girdle - [17051] = { 2, 295, 17014, {11371,17010,17011}, {4,2,2} }, -- Plans: Dark Iron Bracers - [17052] = { 2, 300, 17013, {11371,17010,17011}, {16,4,6} }, -- Plans: Dark Iron Leggings - [17053] = { 2, 300, 16988, {11371,17010,17011}, {16,4,5} }, -- Plans: Fiery Chain Shoulders - [17059] = { 2, 300, 17015, {11371,17010,11382,12810}, {16,12,2,2} }, -- Plans: Dark Iron Reaver - [17060] = { 2, 300, 17016, {11371,17011,11382,12810}, {18,12,2,2} }, -- Plans: Dark Iron Destroyer - [17062] = { 6, 175, 8364, {8365}, {1} }, -- Recipe: Mithril Head Trout - [17200] = { 6, 1, 17197, {6889,17194}, {1,1} }, -- Recipe: Gingerbread Cookie - [17201] = { 6, 35, 17198, {6889,1179,17196,17194}, {1,1,1,1} }, -- Recipe: Egg Nog - [17706] = { 2, 190, 17704, {3859,3829,7070,7069,4234}, {10,1,2,2,2} }, -- Plans: Edge of Winter - [17709] = { 4, 190, 17708, {3819,3358,3372}, {2,1,1} }, -- Recipe: Elixir of Frost Power - [17720] = { 9, 190, 17716, {3860,4389,17202,3829}, {8,4,4,1} }, -- Schematic: Snowmaster 9000 - [17722] = { 3, 190, 17721, {4234,7067,4291}, {8,4,1} }, -- Pattern: Gloves of the Greatfather - [17724] = { 8, 190, 17723, {4305,2605,4291}, {5,4,1} }, -- Pattern: Green Holiday Shirt - [17725] = { 10, 190, nil, {11135,11137,11139,3819}, {3,3,1,2} }, -- Formula: Enchant Weapon - Winter's Might - [18046] = { 6, 225, 18045, {12208,3713}, {1,1} }, -- Recipe: Tender Wolf Steak - [18160] = { 6, 60, 7676, {2452,159}, {1,1} }, -- Recipe: Thistle Tea - [18235] = { 9, 300, 18232, {12359,8170,7191,7067,7068}, {12,4,1,2,1} }, -- Schematic: Field Repair Bot 74A - [18239] = { 3, 200, 18238, {4304,7428,7971,4236,1210,8343}, {6,8,2,2,4,1} }, -- Pattern: Shadowskin Gloves - [18252] = { 3, 300, 18251, {17012,14341}, {3,2} }, -- Pattern: Core Armor Kit - [18257] = { 4, 300, 18253, {10286,13464,13463,18256}, {1,4,4,1} }, -- Recipe: Major Rejuvenation Potion - [18259] = { 10, 300, nil, {14344,16203,7078,7080,7082,13926}, {4,12,4,4,4,2} }, -- Formula: Enchant Weapon - Spell Power - [18260] = { 10, 300, nil, {14344,16203,12803,7080,12811}, {4,8,6,6,1} }, -- Formula: Enchant Weapon - Healing Power - [18264] = { 2, 300, 18262, {7067,12365}, {2,3} }, -- Plans: Elemental Sharpening Stone - [18265] = { 8, 300, 18263, {14342,17010,7078,12810,14341}, {6,8,2,6,4} }, -- Pattern: Flarecore Wraps - [18267] = { 6, 275, 18254, {18255,3713}, {1,1} }, -- Recipe: Runn Tum Tuber Surprise - [18290] = { 9, 300, 18283, {17011,7076,16006,11371,16000}, {2,2,4,6,1} }, -- Schematic: Biznicks 247x128 Accurascope - [18291] = { 9, 300, 18168, {12360,16006,7082,12803,7076}, {6,2,8,12,8} }, -- Schematic: Force Reactive Disk - [18292] = { 9, 300, 18282, {17010,17011,12360,16006,16000}, {4,2,6,2,2} }, -- Schematic: Core Marksman Rifle - [18414] = { 8, 300, 18405, {14048,9210,14342,7080,7078,14344,14341}, {16,10,10,12,12,6,6} }, -- Pattern: Belt of the Archmage - [18415] = { 8, 300, 18407, {14048,14256,12662,12808,14341}, {12,20,6,8,2} }, -- Pattern: Felcloth Gloves - [18416] = { 8, 300, 18408, {14048,7078,7910,14341}, {12,10,2,2} }, -- Pattern: Inferno Gloves - [18417] = { 8, 300, 18409, {14048,14342,13926,14341}, {12,6,2,2} }, -- Pattern: Mooncloth Gloves - [18418] = { 8, 300, 18413, {14048,12809,12360,14341}, {12,4,1,2} }, -- Pattern: Cloak of Warding - [18487] = { 8, 300, 18486, {14048,14342,13926,14341}, {6,4,2,2} }, -- Pattern: Mooncloth Robe - [18514] = { 3, 300, 18504, {8170,12804,15407,14341}, {12,12,2,4} }, -- Pattern: Girdle of Insight - [18515] = { 3, 300, 18506, {8170,7082,11754,15407,14341}, {12,6,4,2,4} }, -- Pattern: Mongoose Boots - [18516] = { 3, 300, 18508, {8170,18512,15420,15407,14341}, {12,8,60,4,4} }, -- Pattern: Swift Flight Bracers - [18517] = { 3, 300, 18509, {8170,12607,15416,15414,15407,14341}, {30,12,30,30,5,8} }, -- Pattern: Chromatic Cloak - [18518] = { 3, 300, 18510, {8170,12803,7080,18512,15407,14341}, {30,12,10,8,3,8} }, -- Pattern: Hide of the Wild - [18519] = { 3, 300, 18511, {8170,7082,12753,12809,15407,14341}, {30,12,4,8,4,8} }, -- Pattern: Shifting Cloak - [18592] = { 2, 300, 17193, {17203,11371,12360,7078,11382,17011,17010}, {8,20,50,25,10,10,10} }, -- Plans: Sulfuron Hammer - [18647] = { 9, 150, 9318, {4377,4234}, {1,1} }, -- Schematic: Red Firework - [18648] = { 9, 150, 9313, {4377,4234}, {1,1} }, -- Schematic: Green Firework - [18649] = { 9, 150, 9312, {4377,4234}, {1,1} }, -- Schematic: Blue Firework - [18650] = { 9, 200, 18588, {10505,4338}, {1,2} }, -- Schematic: EZ-Thro Dynamite II - [18651] = { 9, 260, 18631, {6037,7067,7069}, {2,2,1} }, -- Schematic: Truesilver Transformer - [18652] = { 9, 260, 18634, {15994,18631,12361,7078,3829,13467}, {6,2,2,4,2,4} }, -- Schematic: Gyrofreeze Ice Reflector - [18653] = { 9, 265, 18587, {15994,18631,7191,14227,7910}, {2,2,2,2,2} }, -- Schematic: Goblin Jumper Cables XL - [18654] = { 9, 265, 18645, {12359,15994,8170,7910,7191}, {4,2,4,1,1} }, -- Schematic: Gnomish Alarm-O-Bot - [18655] = { 9, 275, 18637, {16000,18631,14047}, {2,1,2} }, -- Schematic: Major Recombobulator - [18656] = { 9, 275, 18594, {15994,15992,8170,159}, {2,3,2,1} }, -- Schematic: Powerful Seaforium Charge - [18657] = { 9, 290, 18638, {11371,18631,7080,7910,12800}, {4,3,6,4,2} }, -- Schematic: Hyper-Radiant Flame Reflector - [18658] = { 9, 300, 18639, {11371,18631,12803,12808,12800,12799}, {8,4,6,4,2,2} }, -- Schematic: Ultra-Flash Shadow Reflector - [18661] = { 9, 260, 18660, {10561,15994,10558,10560,3864}, {1,2,1,1,1} }, -- Schematic: World Enlarger - [18731] = { 3, 150, 18662, {4234,2321}, {2,1} }, -- Pattern: Heavy Leather Ball - [18949] = { 3, 155, 18948, {4234,4236,5498,4461,5637}, {8,2,4,1,4} }, -- Pattern: Barbaric Bracers - [19027] = { 9, 250, 19026, {15992,14047,8150}, {2,2,1} }, -- Schematic: Snake Burst Firework - [19202] = { 2, 290, 19043, {12359,7076,12803}, {12,3,3} }, -- Plans: Heavy Timbermaw Belt - [19203] = { 2, 290, 19051, {12359,6037,12811}, {8,6,1} }, -- Plans: Girdle of the Dawn - [19204] = { 2, 300, 19048, {12360,7076,12803}, {4,6,6} }, -- Plans: Heavy Timbermaw Boots - [19205] = { 2, 300, 19057, {12360,6037,12811}, {2,10,1} }, -- Plans: Gloves of the Dawn - [19206] = { 2, 300, 19148, {17011,17010,11371}, {4,2,4} }, -- Plans: Dark Iron Helm - [19207] = { 2, 300, 19164, {17011,17010,17012,11371,11382}, {3,5,4,4,2} }, -- Plans: Dark Iron Gauntlets - [19208] = { 2, 300, 19166, {17011,17010,12360,11382,11371}, {3,6,12,1,4} }, -- Plans: Black Amnesty - [19209] = { 2, 300, 19167, {17011,17010,12360,11371}, {5,2,16,6} }, -- Plans: Blackfury - [19210] = { 2, 300, 19170, {17011,17010,12360,11371,12800}, {4,7,12,8,4} }, -- Plans: Ebon Hand - [19211] = { 2, 300, 19168, {17011,17010,12360,11371,12809}, {6,6,10,6,12} }, -- Plans: Blackguard - [19212] = { 2, 300, 19169, {17011,17010,12360,11371,12364}, {8,5,10,12,4} }, -- Plans: Nightfall - [19215] = { 8, 290, 19047, {14048,7076,12803,14227}, {8,3,3,2} }, -- Pattern: Wisdom of the Timbermaw - [19216] = { 8, 290, 19056, {14048,12810,13926,12809,14227}, {6,4,2,2,2} }, -- Pattern: Argent Boots - [19217] = { 8, 300, 19059, {14342,12809,14227}, {5,2,2} }, -- Pattern: Argent Shoulders - [19218] = { 8, 300, 19050, {14342,7076,12803,14227}, {5,5,5,2} }, -- Pattern: Mantle of the Timbermaw - [19219] = { 8, 300, 19156, {14342,17010,17011,7078,14227}, {10,2,3,6,4} }, -- Pattern: Flarecore Robe - [19220] = { 8, 300, 19165, {14342,17010,17011,7078,14227}, {8,5,3,10,4} }, -- Pattern: Flarecore Leggings - [19326] = { 3, 290, 19044, {8170,12804,12803,15407,14341}, {30,2,4,2,2} }, -- Pattern: Might of the Timbermaw - [19327] = { 3, 300, 19049, {12810,12804,12803,15407,14227}, {8,6,6,2,2} }, -- Pattern: Timbermaw Brawlers - [19328] = { 3, 290, 19052, {8170,12809,7080,15407,14341}, {30,2,4,2,2} }, -- Pattern: Dawn Treaders - [19329] = { 3, 300, 19058, {12810,12803,12809,15407,14341}, {8,4,4,2,2} }, -- Pattern: Golden Mantle of the Dawn - [19330] = { 3, 300, 19149, {17011,15407,14227}, {5,4,4} }, -- Pattern: Lava Belt - [19331] = { 3, 300, 19157, {17010,17011,17012,12607,15407,14227}, {5,2,4,4,4,4} }, -- Pattern: Chromatic Gauntlets - [19332] = { 3, 300, 19162, {17010,17012,12810,15407,14227}, {8,12,10,4,4} }, -- Pattern: Corehound Belt - [19333] = { 3, 300, 19163, {17010,17011,7076,15407,14227}, {2,7,6,4,4} }, -- Pattern: Molten Belt - [19442] = { 1, 300, 19440, {19441}, {1} }, -- Formula: Powerful Anti-Venom - [19444] = { 10, 290, nil, {14344,16203,16204,7076}, {6,6,4,2} }, -- Formula: Enchant Weapon - Strength - [19445] = { 10, 290, nil, {14344,16203,16204,7082}, {6,6,4,2} }, -- Formula: Enchant Weapon - Agility - [19446] = { 10, 290, nil, {16204,16203,7080}, {16,4,2} }, -- Formula: Enchant Bracer - Mana Regeneration - [19447] = { 10, 300, nil, {14344,16204,16203,12803}, {2,20,4,6} }, -- Formula: Enchant Bracer - Healing - [19448] = { 10, 300, nil, {14344,16203,16204}, {10,8,15} }, -- Formula: Enchant Weapon - Mighty Spirit - [19449] = { 10, 300, nil, {14344,16203,16204}, {15,12,20} }, -- Formula: Enchant Weapon - Mighty Intellect - [19764] = { 8, 300, 19682, {14342,19726,12804,14048,14227}, {3,5,4,4,2} }, -- Pattern: Bloodvine Vest - [19765] = { 8, 300, 19683, {14342,19726,12804,14048,14227}, {4,4,4,4,2} }, -- Pattern: Bloodvine Leggings - [19766] = { 8, 300, 19684, {14342,19726,12810,14048,14227}, {3,3,4,4,4} }, -- Pattern: Bloodvine Boots - [19769] = { 3, 300, 19685, {19767,15407,12803,14341}, {14,5,4,4} }, -- Pattern: Primal Batskin Jerkin - [19770] = { 3, 300, 19686, {19767,15407,12803,14341}, {10,4,4,3} }, -- Pattern: Primal Batskin Gloves - [19771] = { 3, 300, 19687, {19767,15407,12803,14341}, {8,3,4,3} }, -- Pattern: Primal Batskin Bracers - [19772] = { 3, 300, 19688, {19768,19726,15407,14341}, {35,2,3,3} }, -- Pattern: Blood Tiger Breastplate - [19773] = { 3, 300, 19689, {19768,19726,15407,14341}, {25,2,3,3} }, -- Pattern: Blood Tiger Shoulders - [19776] = { 2, 300, 19690, {12359,19774,19726,7910}, {20,10,2,2} }, -- Plans: Bloodsoul Breastplate - [19777] = { 2, 300, 19691, {12359,19774,19726,7910}, {16,8,2,1} }, -- Plans: Bloodsoul Shoulders - [19778] = { 2, 300, 19692, {12359,19774,19726,12810}, {12,6,2,4} }, -- Plans: Bloodsoul Gauntlets - [19779] = { 2, 300, 19693, {12359,19774,12799}, {20,14,2} }, -- Plans: Darksoul Breastplate - [19780] = { 2, 300, 19694, {12359,19774,12799}, {18,12,2} }, -- Plans: Darksoul Leggings - [19781] = { 2, 300, 19695, {12359,19774,12799}, {16,10,1} }, -- Plans: Darksoul Shoulders - [20000] = { 9, 300, 19999, {19726,19774,16006,12804,12810}, {4,5,2,8,4} }, -- Schematic: Bloodvine Goggles - [20001] = { 9, 300, 19998, {19726,19774,16006,12804,12810}, {5,5,1,8,4} }, -- Schematic: Bloodvine Lens - [20011] = { 4, 275, 20007, {13463,13466,8925}, {1,2,1} }, -- Recipe: Mageblood Potion - [20012] = { 4, 275, 20002, {13463,13464,8925}, {2,1,1} }, -- Recipe: Greater Dreamless Sleep - [20013] = { 4, 285, 20008, {13467,13465,10286,8925}, {2,2,2,1} }, -- Recipe: Living Action Potion - [20014] = { 4, 290, 20004, {8846,13466,8925}, {1,2,1} }, -- Recipe: Major Troll's Blood Potion - [20040] = { 2, 300, 20039, {17011,17010,17012,11371}, {3,3,4,6} }, -- Plans: Dark Iron Boots - [20075] = { 6, 150, 20074, {3667,3713}, {2,1} }, -- Recipe: Heavy Crocolisk Stew - [20253] = { 3, 275, 15064, {8170,15419,14341}, {28,12,1} }, -- Pattern: Warbear Harness - [20254] = { 3, 285, 15065, {8170,15419,14341}, {24,14,1} }, -- Pattern: Warbear Woolies - [20382] = { 3, 300, 20380, {12810,20381,12803,15407,14227}, {12,6,4,4,6} }, -- Pattern: Dreamscale Breastplate - [20506] = { 3, 300, 20481, {20500,20498,7078}, {1,20,2} }, -- Pattern: Spitfire Bracers - [20507] = { 3, 300, 20480, {20500,20498,7078,15407}, {2,30,2,1} }, -- Pattern: Spitfire Gauntlets - [20508] = { 3, 300, 20479, {20500,20498,7078,15407}, {3,40,2,2} }, -- Pattern: Spitfire Breastplate - [20509] = { 3, 300, 20476, {20501,20498,18512}, {1,20,2} }, -- Pattern: Sandstalker Bracers - [20510] = { 3, 300, 20477, {20501,20498,18512,15407}, {2,30,2,1} }, -- Pattern: Sandstalker Gauntlets - [20511] = { 3, 300, 20478, {20501,20498,18512,15407}, {3,40,2,2} }, -- Pattern: Sandstalker Breastplate - [20546] = { 8, 300, 20538, {14048,20520,14256,14227}, {6,8,6,2} }, -- Pattern: Runed Stygian Leggings - [20547] = { 8, 300, 20537, {14048,20520,14256,12810,14227}, {4,6,4,2,2} }, -- Pattern: Runed Stygian Boots - [20548] = { 8, 300, 20539, {14048,20520,14256,12810,14227}, {2,6,2,2,2} }, -- Pattern: Runed Stygian Belt - [20553] = { 2, 300, 20549, {12359,20520,6037,12810}, {12,6,6,2} }, -- Plans: Darkrune Gauntlets - [20554] = { 2, 300, 20550, {12359,20520,6037}, {20,10,10} }, -- Plans: Darkrune Breastplate - [20555] = { 2, 300, 20551, {12359,20520,6037,11754}, {16,8,8,1} }, -- Plans: Darkrune Helm - [20576] = { 3, 100, 20575, {2319,7286,4231,2321}, {8,8,1,2} }, -- Pattern: Black Whelp Tunic - [20726] = { 10, 300, nil, {20725,14344,18512}, {4,6,8} }, -- Formula: Enchant Gloves - Threat - [20727] = { 10, 300, nil, {20725,14344,12808}, {3,10,6} }, -- Formula: Enchant Gloves - Shadow Power - [20728] = { 10, 300, nil, {20725,14344,7080}, {3,10,4} }, -- Formula: Enchant Gloves - Frost Power - [20729] = { 10, 300, nil, {20725,14344,7078}, {2,10,4} }, -- Formula: Enchant Gloves - Fire Power - [20730] = { 10, 300, nil, {20725,14344,12811}, {3,8,1} }, -- Formula: Enchant Gloves - Healing Power - [20731] = { 10, 300, nil, {20725,14344,7082}, {3,8,4} }, -- Formula: Enchant Gloves - Superior Agility - [20732] = { 10, 300, nil, {20725,14344,7078}, {3,8,4} }, -- Formula: Enchant Cloak - Greater Fire Resistance - [20733] = { 10, 300, nil, {20725,14344,12803}, {2,8,4} }, -- Formula: Enchant Cloak - Greater Nature Resistance - [20734] = { 10, 300, nil, {20725,14344,13468}, {3,8,2} }, -- Formula: Enchant Cloak - Stealth - [20735] = { 10, 300, nil, {20725,14344,11754}, {4,6,2} }, -- Formula: Enchant Cloak - Subtlety - [20736] = { 10, 300, nil, {20725,14344,12809}, {3,8,8} }, -- Formula: Enchant Cloak - Dodge - [20752] = { 10, 150, 20745, {11083,17034,3372}, {3,2,1} }, -- Formula: Minor Mana Oil - [20753] = { 10, 200, 20746, {11137,17035,3372}, {3,2,1} }, -- Formula: Lesser Wizard Oil - [20754] = { 10, 250, 20747, {11176,8831,8925}, {3,2,1} }, -- Formula: Lesser Mana Oil - [20755] = { 10, 275, 20750, {16204,4625,8925}, {3,2,1} }, -- Formula: Wizard Oil - [20756] = { 10, 300, 20749, {14344,4625,18256}, {2,3,1} }, -- Formula: Brilliant Wizard Oil - [20757] = { 10, 300, 20748, {14344,8831,18256}, {2,3,1} }, -- Formula: Brilliant Mana Oil - [20758] = { 10, 45, 20744, {10940,17034,3371}, {2,1,1} }, -- Formula: Minor Wizard Oil - [20761] = { 4, 300, 7068, {7077}, {1} }, -- Recipe: Transmute Elemental Fire - [21025] = { 6, 300, 21023, {2692,9061,8150,21024}, {1,1,1,1} }, -- Recipe: Dirge's Kickin' Chimaerok Chops - [21099] = { 6, 80, 21072, {21071,2678}, {1,1} }, -- Recipe: Smoked Sagefish - [21219] = { 6, 175, 21217, {21153,2692}, {1,1} }, -- Recipe: Sagefish Delight - [21358] = { 8, 260, 21340, {14048,8170,7972,14341}, {6,4,2,1} }, -- Pattern: Soul Pouch - [21369] = { 8, 285, 21341, {14256,12810,20520,14227}, {12,6,2,4} }, -- Pattern: Felcloth Bag - [21371] = { 8, 300, 21342, {14256,17012,19726,7078,14227}, {20,16,8,4,4} }, -- Pattern: Core Felcloth Bag - [21547] = { 4, 250, 21546, {6371,4625,8925}, {3,3,1} }, -- Recipe: Elixir of Greater Firepower - [21548] = { 3, 300, 21278, {12810,7080,7082,15407,14227}, {6,4,4,2,2} }, -- Pattern: Stormshroud Gloves - [21722] = { 8, 250, 21154, {14048,4625,2604,14341}, {4,2,2,1} }, -- Pattern: Festival Dress - [21723] = { 8, 250, 21542, {14048,4625,2604,14341}, {4,2,2,1} }, -- Pattern: Festival Suit - [21724] = { 9, 125, 21558, {4364,2319}, {1,1} }, -- Schematic: Small Blue Rocket - [21725] = { 9, 125, 21559, {4364,2319}, {1,1} }, -- Schematic: Small Green Rocket - [21726] = { 9, 125, 21557, {4364,2319}, {1,1} }, -- Schematic: Small Red Rocket - [21727] = { 9, 175, 21589, {4377,4234}, {1,1} }, -- Schematic: Large Blue Rocket - [21728] = { 9, 175, 21590, {4377,4234}, {1,1} }, -- Schematic: Large Green Rocket - [21729] = { 9, 175, 21592, {4377,4234}, {1,1} }, -- Schematic: Large Red Rocket - [21730] = { 9, 225, 21571, {10505,4304}, {1,1} }, -- Schematic: Blue Rocket Cluster - [21731] = { 9, 225, 21574, {10505,4304}, {1,1} }, -- Schematic: Green Rocket Cluster - [21732] = { 9, 225, 21576, {10505,4304}, {1,1} }, -- Schematic: Red Rocket Cluster - [21733] = { 9, 275, 21714, {15992,8170}, {1,1} }, -- Schematic: Large Blue Rocket Cluster - [21734] = { 9, 275, 21716, {15992,8170}, {1,1} }, -- Schematic: Large Green Rocket Cluster - [21735] = { 9, 275, 21718, {15992,8170}, {1,1} }, -- Schematic: Large Red Rocket Cluster - [21737] = { 9, 275, 21570, {9060,9061,18631,10561}, {4,4,2,1} }, -- Schematic: Cluster Launcher - [21738] = { 9, 225, 21569, {9060,9061,10560,10561}, {1,1,1,1} }, -- Schematic: Firework Launcher - [22209] = { 2, 300, 22197, {22202,12655,7076}, {14,4,2} }, -- Plans: Heavy Obsidian Belt - [22214] = { 2, 300, 22195, {22202,12810}, {14,4} }, -- Plans: Light Obsidian Belt - [22219] = { 2, 300, 22198, {22203,22202,12655,7076}, {8,24,8,4} }, -- Plans: Jagged Obsidian Shield - [22220] = { 2, 300, 22194, {22203,22202,12810,13512}, {8,24,8,1} }, -- Plans: Black Grasp of the Destroyer - [22221] = { 2, 300, 22191, {22203,22202,12810,12809,12800}, {15,36,12,10,4} }, -- Plans: Obsidian Mail Tunic - [22222] = { 2, 300, 22196, {22203,22202,12655,7076,12364}, {18,40,12,10,4} }, -- Plans: Thick Obsidian Breastplate - [22307] = { 8, 225, 22246, {4339,11137,8343}, {4,4,2} }, -- Pattern: Enchanted Mageweave Pouch - [22308] = { 8, 275, 22248, {14048,16203,14341}, {5,2,2} }, -- Pattern: Enchanted Runecloth Bag - [22309] = { 8, 300, 22249, {14048,14344,12810,14227}, {6,4,4,4} }, -- Pattern: Big Bag of Enchantment - [22310] = { 8, 275, 22251, {14048,8831,11040,14341}, {5,10,8,2} }, -- Pattern: Cenarion Herb Bag - [22312] = { 8, 300, 22252, {14048,14342,13468,14227}, {6,2,1,4} }, -- Pattern: Satchel of Cenarius - [22388] = { 2, 300, 22385, {12360,12655,7076,13510}, {12,20,10,2} }, -- Plans: Titanic Leggings - [22389] = { 2, 300, 22383, {12360,20725,13512,12810}, {12,2,2,4} }, -- Plans: Sageblade - [22390] = { 2, 300, 22384, {12360,11371,12808,20520,15417,12753}, {15,10,20,20,10,2} }, -- Plans: Persuader - [22392] = { 10, 290, nil, {14344,16203,16204,7082}, {10,6,14,4} }, -- Formula: Enchant 2H Weapon - Agility - [22683] = { 8, 300, 22660, {19726,14342,12803,14227}, {1,2,4,4} }, -- Pattern: Gaea's Embrace - [22684] = { 8, 300, 22654, {22682,14048,7080,14227}, {5,4,4,4} }, -- Pattern: Glacial Gloves - [22685] = { 8, 300, 22658, {22682,14048,7080,14227}, {5,4,2,4} }, -- Pattern: Glacial Cloak - [22686] = { 8, 300, 22652, {22682,14048,7080,14227}, {7,8,6,8} }, -- Pattern: Glacial Vest - [22687] = { 8, 300, 22655, {22682,14048,7080,14227}, {4,2,2,4} }, -- Pattern: Glacial Wrists - [22692] = { 3, 300, 22661, {22682,12810,7080,15407,14227}, {7,16,2,4,4} }, -- Pattern: Polar Tunic - [22694] = { 3, 300, 22662, {22682,12810,7080,15407,14227}, {5,12,2,3,4} }, -- Pattern: Polar Gloves - [22695] = { 3, 300, 22663, {22682,12810,7080,15407,14227}, {4,12,2,2,4} }, -- Pattern: Polar Bracers - [22696] = { 3, 300, 22664, {22682,15408,7080,15407,14227}, {7,24,2,4,4} }, -- Pattern: Icy Scale Breastplate - [22697] = { 3, 300, 22666, {22682,15408,7080,15407,14227}, {5,16,2,3,4} }, -- Pattern: Icy Scale Gauntlets - [22698] = { 3, 300, 22665, {22682,15408,7080,15407,14227}, {4,16,2,2,4} }, -- Pattern: Icy Scale Bracers - [22703] = { 2, 300, 22669, {22682,12359,12360,7080}, {7,16,2,4} }, -- Plans: Icebane Breastplate - [22704] = { 2, 300, 22670, {22682,12359,12360,7080}, {5,12,2,2} }, -- Plans: Icebane Gauntlets - [22705] = { 2, 300, 22671, {22682,12359,12360,7080}, {4,12,2,2} }, -- Plans: Icebane Bracers - [22729] = { 9, 275, 22728, {15994,10561,10558}, {2,1,1} }, -- Schematic: Steam Tonk Controller - [22766] = { 2, 300, 22762, {12655,19726,12360,12803}, {12,2,2,2} }, -- Plans: Ironvine Breastplate - [22767] = { 2, 300, 22763, {12655,19726,12803}, {8,1,2} }, -- Plans: Ironvine Gloves - [22768] = { 2, 300, 22764, {12655,12803}, {6,2} }, -- Plans: Ironvine Belt - [22769] = { 3, 300, 22761, {12810,12803,15407}, {4,2,1} }, -- Pattern: Bramblewood Belt - [22770] = { 3, 300, 22760, {12810,18512,12803,15407}, {6,2,2,2} }, -- Pattern: Bramblewood Boots - [22771] = { 3, 300, 22759, {12810,19726,12803,15407}, {12,2,2,2} }, -- Pattern: Bramblewood Helm - [22772] = { 8, 300, 22758, {14048,12803,14227}, {2,4,2} }, -- Pattern: Sylvan Shoulders - [22773] = { 8, 300, 22757, {14048,14342,12803,14227}, {4,2,2,2} }, -- Pattern: Sylvan Crown - [22774] = { 8, 300, 22756, {14048,19726,12803,14227}, {4,2,2,2} }, -- Pattern: Sylvan Vest - [23689] = { 1, 300, 23684, {23567,14047}, {1,10} }, -- Manual: Crystal Infused Bandage - [23690] = { 6, 300, 23683, {23567,8150}, {1,1} }, -- Recipe: Crystal Flake Throat Lozenge + -- [itemID] = { profession, profRank, creationSpell } + [728] = { 6, 75, 2543 }, -- Recipe: Westfall Stew + [2404] = { 3, 30, 2156 }, -- Deprecated Pattern: Light Winter Cloak + [2405] = { 3, 35, 2157 }, -- Deprecated Pattern: Light Winter Boots + [2406] = { 3, 90, 2158 }, -- Pattern: Fine Leather Boots + [2407] = { 3, 60, 2163 }, -- Pattern: White Leather Jerkin + [2408] = { 3, 75, 2164 }, -- Pattern: Fine Leather Gloves + [2409] = { 3, 100, 2169 }, -- Pattern: Dark Leather Tunic + [2553] = { 4, 50, 3230 }, -- Recipe: Elixir of Minor Agility + [2554] = { 4, 50, 2334 }, -- Deprecated Recipe: Elixir of Fortitude + [2555] = { 4, 60, 2335 }, -- Recipe: Swiftness Potion + [2556] = { 4, 70, 2336 }, -- Recipe: Elixir of Tongues + [2598] = { 8, 40, 2389 }, -- Pattern: Red Linen Robe + [2601] = { 8, 105, 2403 }, -- Pattern: Gray Woolen Robe + [2697] = { 6, 50, 2542 }, -- Recipe: Goretusk Liver Pie + [2698] = { 6, 85, 2545 }, -- Recipe: Cooked Crab Claw + [2699] = { 6, 100, 2547 }, -- Recipe: Redridge Goulash + [2700] = { 6, 110, 2548 }, -- Recipe: Succulent Pork Ribs + [2701] = { 6, 100, 2549 }, -- Recipe: Seasoned Wolf Kabob + [2881] = { 2, 80, 2667 }, -- Plans: Runed Copper Breastplate + [2882] = { 2, 125, 3330 }, -- Plans: Silvered Bronze Shoulders + [2883] = { 2, 125, 3295 }, -- Plans: Deadly Bronze Poniard + [2889] = { 6, 25, 2795 }, -- Recipe: Beer Basted Boar Ribs + [3393] = { 4, 110, 3172 }, -- Recipe: Minor Magic Resistance Potion + [3394] = { 4, 120, 3174 }, -- Recipe: Elixir of Poison Resistance + [3395] = { 4, 250, 3175 }, -- Recipe: Limited Invulnerability Potion + [3396] = { 4, 140, 2333 }, -- Recipe: Elixir of Lesser Agility + [3608] = { 2, 145, 3297 }, -- Plans: Mighty Iron Hammer + [3609] = { 2, 35, 3321 }, -- Plans: Copper Chain Vest + [3610] = { 2, 60, 3325 }, -- Plans: Gemmed Copper Gauntlets + [3611] = { 2, 145, 3334 }, -- Plans: Green Iron Boots + [3612] = { 2, 150, 3336 }, -- Plans: Green Iron Gauntlets + [3678] = { 6, 80, 3370 }, -- Recipe: Crocolisk Steak + [3679] = { 6, 60, 3371 }, -- Recipe: Blood Sausage + [3680] = { 6, 90, 3372 }, -- Recipe: Murloc Fin Soup + [3681] = { 6, 120, 3373 }, -- Recipe: Crocolisk Gumbo + [3682] = { 6, 130, 3376 }, -- Recipe: Curiously Tasty Omelet + [3683] = { 6, 110, 3377 }, -- Recipe: Gooey Spider Cake + [3734] = { 6, 110, 3397 }, -- Recipe: Big Bear Steak + [3735] = { 6, 125, 3398 }, -- Recipe: Hot Lion Chops + [3736] = { 6, 150, 3399 }, -- Recipe: Tasty Lion Steak + [3737] = { 6, 175, 3400 }, -- Recipe: Soothing Turtle Bisque + [3830] = { 4, 175, 3450 }, -- Recipe: Elixir of Fortitude + [3831] = { 4, 180, 3451 }, -- Recipe: Mighty Troll's Blood Potion + [3832] = { 4, 195, 3453 }, -- Recipe: Elixir of Detect Lesser Invisibility + [3866] = { 2, 175, 3493 }, -- Plans: Jade Serpentblade + [3867] = { 2, 170, 3495 }, -- Plans: Golden Iron Destroyer + [3868] = { 2, 200, 3497 }, -- Plans: Frost Tiger Blade + [3869] = { 2, 200, 3500 }, -- Plans: Shadow Crescent Axe + [3870] = { 2, 160, 3504 }, -- Plans: Green Iron Shoulders + [3871] = { 2, 175, 3505 }, -- Plans: Golden Scale Shoulders + [3872] = { 2, 170, 3507 }, -- Plans: Golden Scale Leggings + [3873] = { 2, 195, 3511 }, -- Plans: Golden Scale Cuirass + [3874] = { 2, 185, 3513 }, -- Plans: Polished Steel Boots + [3875] = { 2, 200, 3515 }, -- Plans: Golden Scale Boots + [4292] = { 8, 95, 3758 }, -- Pattern: Green Woolen Bag + [4293] = { 3, 100, 3762 }, -- Pattern: Hillman's Leather Vest + [4294] = { 3, 120, 3767 }, -- Pattern: Hillman's Belt + [4295] = { 3, 125, 7153 }, -- Pattern: Double-stitched Leather Gloves OLD + [4296] = { 3, 140, 3769 }, -- Pattern: Dark Leather Shoulders + [4297] = { 3, 150, 3771 }, -- Pattern: Barbaric Gloves + [4298] = { 3, 170, 3775 }, -- Pattern: Guardian Belt + [4299] = { 3, 175, 3773 }, -- Pattern: Guardian Armor + [4300] = { 3, 195, 3777 }, -- Pattern: Guardian Leather Bracers + [4301] = { 3, 200, 3779 }, -- Pattern: Barbaric Belt + [4345] = { 8, 95, 3847 }, -- Pattern: Red Woolen Boots + [4346] = { 8, 100, 3844 }, -- Pattern: Heavy Woolen Cloak + [4347] = { 8, 120, 3849 }, -- Pattern: Reinforced Woolen Shoulders + [4348] = { 8, 125, 3868 }, -- Pattern: Phoenix Gloves + [4349] = { 8, 125, 3851 }, -- Pattern: Phoenix Pants + [4350] = { 8, 140, 3856 }, -- Pattern: Spider Silk Slippers + [4351] = { 8, 170, 3858 }, -- Pattern: Shadow Hood + [4352] = { 8, 175, 3860 }, -- Pattern: Boots of the Enchanter + [4353] = { 8, 180, 3863 }, -- Pattern: Spider Belt + [4354] = { 8, 185, 3872 }, -- Pattern: Rich Purple Silk Shirt + [4355] = { 8, 200, 3862 }, -- Pattern: Icy Cloak + [4356] = { 8, 200, 3864 }, -- Pattern: Star Belt + [4408] = { 9, 75, 3928 }, -- Schematic: Mechanical Squirrel + [4409] = { 9, 100, 3933 }, -- Schematic: Small Seaforium Charge + [4410] = { 9, 120, 3940 }, -- Schematic: Shadow Goggles + [4411] = { 9, 125, 3944 }, -- Schematic: Flame Deflector + [4412] = { 9, 145, 3954 }, -- Schematic: Moonsight Rifle + [4413] = { 9, 160, 3959 }, -- Schematic: Discombobulator Ray + [4414] = { 9, 165, 3960 }, -- Schematic: Portable Bronze Mortar + [4415] = { 9, 185, 3966 }, -- Schematic: Craftsman's Monocle + [4416] = { 9, 195, 3968 }, -- Schematic: Goblin Land Mine + [4417] = { 9, 200, 3972 }, -- Schematic: Large Seaforium Charge + [4597] = { 4, 50, 4508 }, -- Recipe: Discolored Healing Potion + [4609] = { 6, 175, 4094 }, -- Recipe: Barbecued Buzzard Wing + [4624] = { 4, 215, 4942 }, -- Recipe: Lesser Stoneshield Potion + [5083] = { 3, 40, 5244 }, -- Pattern: Kodo Hide Bag + [5482] = { 6, 10, 6412 }, -- Recipe: Kaldorei Spider Kabob + [5483] = { 6, 20, 6413 }, -- Recipe: Scorpid Surprise + [5484] = { 6, 35, 6414 }, -- Recipe: Roasted Kodo Meat + [5485] = { 6, 50, 6415 }, -- Recipe: Fillet of Frenzy + [5486] = { 6, 50, 6416 }, -- Recipe: Strider Stew + [5487] = { 6, 90, 6417 }, -- Recipe: Dig Rat Stew + [5488] = { 6, 100, 6418 }, -- Recipe: Crispy Lizard Tail + [5489] = { 6, 110, 6419 }, -- Recipe: Lean Venison + [5528] = { 6, 90, 6501 }, -- Recipe: Clam Chowder + [5543] = { 2, 140, 6518 }, -- Plans: Iridescent Hammer + [5577] = { 2, 100, 2671 }, -- Plans: Rough Bronze Bracers + [5578] = { 2, 130, 2673 }, -- Plans: Silvered Bronze Breastplate + [5640] = { 4, 60, 6617 }, -- Recipe: Rage Potion + [5641] = { 4, 125, 6619 }, -- Recipe: Cowardly Flight Potion + [5642] = { 4, 150, 6624 }, -- Recipe: Free Action Potion + [5643] = { 4, 175, 6618 }, -- Recipe: Great Rage Potion + [5771] = { 8, 70, 6686 }, -- Pattern: Red Linen Bag + [5772] = { 8, 115, 6688 }, -- Pattern: Red Woolen Bag + [5773] = { 8, 150, 6692 }, -- Pattern: Robes of Arcana + [5774] = { 8, 175, 6693 }, -- Pattern: Green Silk Pack + [5775] = { 8, 185, 6695 }, -- Pattern: Black Silk Pack + [5786] = { 3, 90, 6702 }, -- Pattern: Murloc Scale Belt + [5787] = { 3, 95, 6703 }, -- Pattern: Murloc Scale Breastplate + [5788] = { 3, 170, 6704 }, -- Pattern: Thick Murloc Armor + [5789] = { 3, 190, 6705 }, -- Pattern: Murloc Scale Bracers + [5972] = { 3, 105, 7133 }, -- Pattern: Fine Leather Pants + [5973] = { 3, 170, 7149 }, -- Pattern: Barbaric Leggings + [5974] = { 3, 185, 7153 }, -- Pattern: Guardian Cloak + [6039] = { 6, 175, 7213 }, -- Recipe: Giant Clam Scorcho + [6044] = { 2, 150, 7221 }, -- Plans: Iron Shield Spike + [6045] = { 2, 165, 7222 }, -- Plans: Iron Counterweight + [6046] = { 2, 190, 7224 }, -- Plans: Steel Weapon Chain + [6047] = { 2, 190, 3503 }, -- Plans: Golden Scale Coif + [6053] = { 4, 100, 7255 }, -- Recipe: Holy Protection Potion + [6054] = { 4, 135, 7256 }, -- Recipe: Shadow Protection Potion + [6055] = { 4, 165, 7257 }, -- Recipe: Fire Protection Potion + [6056] = { 4, 190, 7258 }, -- Recipe: Frost Protection Potion + [6057] = { 4, 190, 7259 }, -- Recipe: Nature Protection Potion + [6068] = { 4, 165, 3449 }, -- Recipe: Shadow Oil + [6211] = { 4, 150, 3188 }, -- Recipe: Elixir of Ogre's Strength + [6222] = { 10, 60, 7451 }, -- Formula: Imbue Chest - Minor Spirit + [6270] = { 8, 55, 7630 }, -- Pattern: Blue Linen Vest + [6271] = { 8, 55, 7629 }, -- Pattern: Red Linen Vest + [6272] = { 8, 70, 7633 }, -- Pattern: Blue Linen Robe + [6273] = { 8, 90, 7636 }, -- Pattern: Green Woolen Robe + [6274] = { 8, 100, 7639 }, -- Pattern: Blue Overalls + [6275] = { 8, 115, 7643 }, -- Pattern: Greater Adept's Robe + [6325] = { 6, 1, 7751 }, -- Recipe: Brilliant Smallfish + [6326] = { 6, 1, 7752 }, -- Recipe: Slitherskin Mackerel + [6328] = { 6, 50, 7753 }, -- Recipe: Longjaw Mud Snapper + [6329] = { 6, 50, 7754 }, -- Recipe: Loch Frenzy Delight + [6330] = { 6, 100, 7755 }, -- Recipe: Bristle Whisker Catfish + [6342] = { 10, 20, 7443 }, -- Formula: Enchant Chest - Minor Mana + [6343] = { 10, 60, 7451 }, -- Formula: Imbue Chest - Spirit + [6344] = { 10, 60, 7766 }, -- Formula: Enchant Bracer - Minor Spirit + [6345] = { 10, 90, 7771 }, -- Formula: Imbue Cloak - Protection + [6346] = { 10, 80, 7776 }, -- Formula: Enchant Chest - Lesser Mana + [6347] = { 10, 80, 7782 }, -- Formula: Enchant Bracer - Minor Strength + [6348] = { 10, 90, 7786 }, -- Formula: Enchant Weapon - Minor Beastslayer + [6349] = { 10, 100, 7793 }, -- Formula: Enchant 2H Weapon - Lesser Intellect + [6368] = { 6, 50, 7827 }, -- Recipe: Rainbow Fin Albacore + [6369] = { 6, 175, 7828 }, -- Recipe: Rockscale Cod + [6375] = { 10, 120, 7859 }, -- Formula: Enchant Bracer - Lesser Spirit + [6376] = { 10, 125, 7863 }, -- Formula: Enchant Boots - Minor Stamina + [6377] = { 10, 125, 7867 }, -- Formula: Enchant Boots - Minor Agility + [6390] = { 8, 120, 7892 }, -- Pattern: Stylish Blue Shirt + [6391] = { 8, 120, 7893 }, -- Pattern: Stylish Green Shirt + [6401] = { 8, 155, 3870 }, -- Pattern: Dark Silk Shirt + [6454] = { 1, 130, 7935 }, -- Manual: Strong Anti-Venom + [6474] = { 3, 90, 7953 }, -- Pattern: Deviate Scale Cloak + [6475] = { 3, 105, 7954 }, -- Pattern: Deviate Scale Gloves + [6476] = { 3, 115, 7955 }, -- Pattern: Deviate Scale Belt + [6661] = { 6, 85, 8238 }, -- Recipe: Savory Deviate Delight + [6663] = { 4, 90, 8240 }, -- Recipe: Elixir of Giant Growth + [6672] = { 9, 185, 8243 }, -- Schematic: Flash Bomb + [6710] = { 3, 90, 8322 }, -- Pattern: Moonglow Vest + [6716] = { 9, 100, 8339 }, -- Schematic: EZ-Thro Dynamite + [6734] = { 2, 70, 8366 }, -- Plans: Ironforge Chain + [6735] = { 2, 100, 8367 }, -- Plans: Ironforge Breastplate + [6736] = { 2, 140, 8368 }, -- Plans: Ironforge Gauntlets + [6891] = { 6, 1, 8604 }, -- Recipe: Herb Baked Egg + [6892] = { 6, 40, 8607 }, -- Recipe: Smoked Bear Meat + [7084] = { 8, 190, 8793 }, -- Pattern: Crimson Silk Shoulders + [7085] = { 8, 190, 8795 }, -- Pattern: Azure Shoulders + [7086] = { 8, 195, 8797 }, -- Pattern: Earthen Silk Belt + [7087] = { 8, 180, 8789 }, -- Pattern: Crimson Silk Cloak + [7088] = { 8, 205, 8802 }, -- Pattern: Crimson Silk Robe + [7089] = { 8, 175, 8786 }, -- Pattern: Azure Silk Cloak + [7090] = { 8, 165, 8784 }, -- Pattern: Green Silk Armor + [7091] = { 8, 150, 8782 }, -- Pattern: Truefaith Gloves + [7092] = { 8, 145, 8780 }, -- Pattern: Hands of Darkness + [7093] = { 8, 140, 8778 }, -- Pattern: Boots of Darkness + [7114] = { 8, 145, 3854 }, -- Pattern: Azure Silk Gloves + [7192] = { 9, 130, 8895 }, -- Schematic: Goblin Rocket Boots + [7288] = { 3, 35, 9064 }, -- Pattern: Rugged Leather Pants + [7289] = { 3, 100, 9070 }, -- Pattern: Black Whelp Cloak + [7290] = { 3, 120, 9072 }, -- Pattern: Red Whelp Gloves + [7360] = { 3, 120, 3765 }, -- Pattern: Dark Leather Gloves + [7361] = { 3, 135, 9146 }, -- Pattern: Herbalist's Gloves + [7362] = { 3, 135, 9147 }, -- Pattern: Earthen Leather Shoulders + [7363] = { 3, 140, 9148 }, -- Pattern: Pilferer's Gloves + [7364] = { 3, 145, 9149 }, -- Pattern: Heavy Earthen Gloves + [7449] = { 3, 165, 9195 }, -- Pattern: Dusky Leather Leggings + [7450] = { 3, 175, 9197 }, -- Pattern: Green Whelp Armor + [7451] = { 3, 190, 9202 }, -- Pattern: Green Whelp Bracers + [7452] = { 3, 200, 9207 }, -- Pattern: Dusky Boots + [7453] = { 3, 200, 9208 }, -- Pattern: Swift Boots + [7560] = { 9, 125, 9269 }, -- Schematic: Gnomish Universal Remote + [7561] = { 9, 165, 9273 }, -- Schematic: Goblin Jumper Cables + [7613] = { 3, 155, 3772 }, -- Pattern: Green Leather Armor + [7678] = { 6, 60, 9513 }, -- Recipe: Thistle Tea + [7742] = { 9, 200, 3971 }, -- Schematic: Gnomish Cloaking Device + [7975] = { 2, 210, 9933 }, -- Plans: Heavy Mithril Pants + [7976] = { 2, 215, 9939 }, -- Plans: Mithril Shield Spike + [7977] = { 2, 220, 9942 }, -- Plans: Mithril Scale Gloves + [7978] = { 2, 160, 9811 }, -- Plans: Barbaric Iron Shoulders + [7979] = { 2, 160, 9813 }, -- Plans: Barbaric Iron Breastplate + [7980] = { 2, 175, 9814 }, -- Plans: Barbaric Iron Helm + [7981] = { 2, 180, 9818 }, -- Plans: Barbaric Iron Boots + [7982] = { 2, 185, 9820 }, -- Plans: Barbaric Iron Gloves + [7983] = { 2, 220, 9945 }, -- Plans: Ornate Mithril Pants + [7984] = { 2, 220, 9950 }, -- Plans: Ornate Mithril Gloves + [7985] = { 2, 225, 9952 }, -- Plans: Ornate Mithril Shoulder + [7986] = { 2, 240, 9972 }, -- Plans: Ornate Mithril Breastplate + [7987] = { 2, 245, 9980 }, -- Plans: Ornate Mithril Helm + [7988] = { 2, 245, 9979 }, -- Plans: Ornate Mithril Boots + [7989] = { 2, 235, 9964 }, -- Plans: Mithril Spurs + [7990] = { 2, 245, 9970 }, -- Plans: Heavy Mithril Helm + [7991] = { 2, 235, 9966 }, -- Plans: Mithril Scale Shoulders + [7992] = { 2, 220, 9995 }, -- Plans: Blue Glittering Axe + [7993] = { 2, 240, 10005 }, -- Plans: Dazzling Mithril Rapier + [7994] = { 2, 230, 9957 }, -- Plans: Orcish War Leggings + [7995] = { 2, 215, 9937 }, -- Plans: Mithril Scale Bracers + [8028] = { 2, 245, 10009 }, -- Plans: Runed Mithril Hammer + [8029] = { 2, 225, 9997 }, -- Plans: Wicked Mithril Blade + [8030] = { 2, 255, 10013 }, -- Plans: Ebon Shiv + [8384] = { 3, 200, 10490 }, -- Pattern: Comfortable Leather Hat + [8385] = { 3, 205, 10509 }, -- Pattern: Turtle Scale Gloves + [8386] = { 3, 215, 10520 }, -- Pattern: Big Voodoo Robe + [8387] = { 3, 220, 10531 }, -- Pattern: Big Voodoo Mask + [8388] = { 3, 230, 10550 }, -- Pattern: Nightscape Cloak + [8389] = { 3, 240, 10560 }, -- Pattern: Big Voodoo Pants + [8390] = { 3, 240, 10562 }, -- Pattern: Big Voodoo Cloak + [8395] = { 3, 220, 10525 }, -- Pattern: Tough Scorpid Breastplate + [8397] = { 3, 220, 10533 }, -- Pattern: Tough Scorpid Bracers + [8398] = { 3, 225, 10542 }, -- Pattern: Tough Scorpid Gloves + [8399] = { 3, 235, 10554 }, -- Pattern: Tough Scorpid Boots + [8400] = { 3, 240, 10564 }, -- Pattern: Tough Scorpid Shoulders + [8401] = { 3, 245, 10568 }, -- Pattern: Tough Scorpid Leggings + [8402] = { 3, 250, 10570 }, -- Pattern: Tough Scorpid Helm + [8403] = { 3, 220, 10529 }, -- Pattern: Wild Leather Shoulders + [8404] = { 3, 225, 10544 }, -- Pattern: Wild Leather Vest + [8405] = { 3, 225, 10546 }, -- Pattern: Wild Leather Helmet + [8406] = { 3, 245, 10566 }, -- Pattern: Wild Leather Boots + [8407] = { 3, 250, 10572 }, -- Pattern: Wild Leather Leggings + [8408] = { 3, 250, 10574 }, -- Pattern: Wild Leather Cloak + [8409] = { 3, 210, 10516 }, -- Pattern: Nightscape Shoulders + [8547] = { 1, 250, 10844 }, -- Formula: Powerful Smelling Salts + [9293] = { 4, 210, 11453 }, -- Recipe: Magic Resistance Potion + [9294] = { 4, 225, 11458 }, -- Recipe: Wildvine Potion + [9295] = { 4, 235, 11464 }, -- Recipe: Invisibility Potion + [9296] = { 4, 240, 11466 }, -- Recipe: Gift of Arthas + [9297] = { 4, 240, 11468 }, -- Recipe: Elixir of Dream Vision + [9298] = { 4, 245, 11472 }, -- Recipe: Elixir of Giants + [9300] = { 4, 250, 11477 }, -- Recipe: Elixir of Demonslaying + [9301] = { 4, 250, 11476 }, -- Recipe: Elixir of Shadow Power + [9302] = { 4, 245, 11473 }, -- Recipe: Ghost Dye + [9303] = { 4, 225, 11459 }, -- Recipe: Philosopher's Stone + [9304] = { 4, 225, 11479 }, -- Recipe: Transmute Iron to Gold + [9305] = { 4, 225, 11480 }, -- Recipe: Transmute Mithril to Truesilver + [9367] = { 2, 205, 11643 }, -- Plans: Golden Scale Gauntlets + [10300] = { 8, 215, 12056 }, -- Pattern: Red Mageweave Vest + [10301] = { 8, 215, 12059 }, -- Pattern: White Bandit Mask + [10302] = { 8, 215, 12060 }, -- Pattern: Red Mageweave Pants + [10303] = { 8, 220, 12062 }, -- Pattern: Stormcloth Pants + [10304] = { 8, 220, 12063 }, -- Pattern: Stormcloth Gloves + [10311] = { 8, 220, 12064 }, -- Pattern: Orange Martial Shirt + [10312] = { 8, 225, 12066 }, -- Pattern: Red Mageweave Gloves + [10313] = { 8, 225, 12068 }, -- Pattern: Stormcloth Vest + [10314] = { 8, 230, 12075 }, -- Pattern: Lavender Mageweave Shirt + [10315] = { 8, 235, 12078 }, -- Pattern: Red Mageweave Shoulders + [10316] = { 8, 120, 12047 }, -- Pattern: Colorful Kilt + [10317] = { 8, 235, 12080 }, -- Pattern: Pink Mageweave Shirt + [10318] = { 8, 240, 12081 }, -- Pattern: Admiral's Hat + [10319] = { 8, 240, 12083 }, -- Pattern: Stormcloth Headband + [10320] = { 8, 240, 12084 }, -- Pattern: Red Mageweave Headband + [10321] = { 8, 240, 12085 }, -- Pattern: Tuxedo Shirt + [10322] = { 8, 245, 12087 }, -- Pattern: Stormcloth Shoulders + [10323] = { 8, 245, 12089 }, -- Pattern: Tuxedo Pants + [10324] = { 8, 250, 12090 }, -- Pattern: Stormcloth Boots + [10325] = { 8, 250, 12091 }, -- Pattern: White Wedding Dress + [10326] = { 8, 250, 12093 }, -- Pattern: Tuxedo Jacket + [10424] = { 2, 155, 12259 }, -- Plans: Silvered Bronze Leggings + [10463] = { 8, 245, 12086 }, -- Pattern: Shadoweave Mask + [10601] = { 9, 175, 12587 }, -- Schematic: Bright-Eye Goggles + [10602] = { 9, 210, 12597 }, -- Schematic: Deadly Scope + [10603] = { 9, 220, 12607 }, -- Schematic: Catseye Ultra Goggles + [10604] = { 9, 220, 12614 }, -- Schematic: Mithril Heavy-bore Rifle + [10605] = { 9, 225, 12615 }, -- Schematic: Spellpower Goggles Xtreme + [10606] = { 9, 225, 12616 }, -- Schematic: Parachute Cloak + [10607] = { 9, 230, 12617 }, -- Schematic: Deepdive Helmet + [10608] = { 9, 240, 12620 }, -- Schematic: Sniper Scope + [10609] = { 9, 250, 12624 }, -- Schematic: Mithril Mechanical Dragonling + [10644] = { 4, 210, 11456 }, -- Recipe: Goblin Rocket Fuel + [10713] = { 2, 200, 11454 }, -- Plans: Inlaid Mithril Cylinder + [10728] = { 8, 200, 3873 }, -- Pattern: Black Swashbuckler's Shirt + [10858] = { 2, 155, 3494 }, -- Plans: Solid Iron Maul + [11038] = { 10, 110, 13380 }, -- Formula: Enchant 2H Weapon - Lesser Spirit + [11039] = { 10, 110, 13419 }, -- Formula: Enchant Cloak - Minor Agility + [11081] = { 10, 115, 13464 }, -- Formula: Enchant Shield - Lesser Protection + [11098] = { 10, 135, 13522 }, -- Formula: Enchant Cloak - Lesser Shadow Resistance + [11101] = { 10, 140, 13536 }, -- Formula: Enchant Bracer - Lesser Strength + [11150] = { 10, 145, 13612 }, -- Formula: Enchant Gloves - Mining + [11151] = { 10, 145, 13617 }, -- Formula: Enchant Gloves - Herbalism + [11152] = { 10, 145, 13620 }, -- Formula: Enchant Gloves - Fishing + [11163] = { 10, 170, 13646 }, -- Formula: Enchant Bracer - Lesser Deflection + [11164] = { 10, 175, 13653 }, -- Formula: Enchant Weapon - Lesser Beastslayer + [11165] = { 10, 175, 13655 }, -- Formula: Enchant Weapon - Lesser Elemental Slayer + [11166] = { 10, 200, 13698 }, -- Formula: Enchant Gloves - Skinning + [11167] = { 10, 190, 13687 }, -- Formula: Enchant Boots - Lesser Spirit + [11168] = { 10, 195, 13689 }, -- Formula: Enchant Shield - Lesser Block + [11202] = { 10, 210, 13817 }, -- Formula: Enchant Shield - Stamina + [11203] = { 10, 215, 13841 }, -- Formula: Enchant Gloves - Advanced Mining + [11204] = { 10, 220, 13846 }, -- Formula: Enchant Bracer - Greater Spirit + [11205] = { 10, 225, 13868 }, -- Formula: Enchant Gloves - Advanced Herbalism + [11206] = { 10, 225, 13882 }, -- Formula: Enchant Cloak - Lesser Agility + [11207] = { 10, 265, 13898 }, -- Formula: Enchant Weapon - Fiery Weapon + [11208] = { 10, 230, 13915 }, -- Formula: Enchant Weapon - Demonslaying + [11223] = { 10, 235, 13931 }, -- Formula: Enchant Bracer - Deflection + [11224] = { 10, 235, 13933 }, -- Formula: Enchant Shield - Frost Resistance + [11225] = { 10, 245, 13945 }, -- Formula: Enchant Bracer - Greater Stamina + [11226] = { 10, 250, 13947 }, -- Formula: Enchant Gloves - Riding Skill + [11610] = { 2, 265, 15292 }, -- Plans: Dark Iron Pulverizer + [11611] = { 2, 275, 15294 }, -- Plans: Dark Iron Sunderer + [11612] = { 2, 285, 15296 }, -- Plans: Dark Iron Plate + [11614] = { 2, 270, 15293 }, -- Plans: Dark Iron Mail + [11615] = { 2, 280, 15295 }, -- Plans: Dark Iron Shoulders + [11813] = { 10, 265, 15596 }, -- Formula: Smoking Heart of the Mountain + [11827] = { 9, 205, 15633 }, -- Schematic: Lil' Smoky + [11828] = { 9, 205, 15628 }, -- Schematic: Pet Bombling + [12162] = { 2, 160, 3492 }, -- Plans: Hardened Iron Shortsword + [12163] = { 2, 180, 3496 }, -- Plans: Moonsteel Broadsword + [12164] = { 2, 185, 3498 }, -- Plans: Massive Iron Axe + [12226] = { 6, 1, 15935 }, -- Recipe: Crispy Bat Wing + [12227] = { 6, 125, 15853 }, -- Recipe: Lean Wolf Steak + [12228] = { 6, 175, 15855 }, -- Recipe: Roast Raptor + [12229] = { 6, 175, 15856 }, -- Recipe: Hot Wolf Ribs + [12231] = { 6, 175, 15861 }, -- Recipe: Jungle Stew + [12232] = { 6, 175, 15863 }, -- Recipe: Carrion Surprise + [12233] = { 6, 175, 15865 }, -- Recipe: Mystery Stew + [12239] = { 6, 200, 15906 }, -- Recipe: Dragonbreath Chili + [12240] = { 6, 200, 15910 }, -- Recipe: Heavy Kodo Stew + [12261] = { 2, 190, 15973 }, -- Plans: Searing Golden Blade + [12682] = { 2, 250, 16642 }, -- Plans: Thorium Armor + [12683] = { 2, 250, 16643 }, -- Plans: Thorium Belt + [12684] = { 2, 255, 16644 }, -- Plans: Thorium Bracers + [12685] = { 2, 260, 16645 }, -- Plans: Radiant Belt + [12687] = { 2, 265, 16646 }, -- Plans: Imperial Plate Shoulders + [12688] = { 2, 265, 16647 }, -- Plans: Imperial Plate Belt + [12689] = { 2, 270, 16648 }, -- Plans: Radiant Breastplate + [12690] = { 2, 270, 16649 }, -- Plans: Imperial Plate Bracers + [12691] = { 2, 270, 16650 }, -- Plans: Wildthorn Mail + [12692] = { 2, 275, 16651 }, -- Plans: Thorium Shield Spike + [12693] = { 2, 280, 16652 }, -- Plans: Thorium Boots + [12694] = { 2, 280, 16653 }, -- Plans: Thorium Helm + [12695] = { 2, 285, 16654 }, -- Plans: Radiant Gloves + [12696] = { 2, 285, 16667 }, -- Plans: Demon Forged Breastplate + [12697] = { 2, 290, 16656 }, -- Plans: Radiant Boots + [12698] = { 2, 290, 16660 }, -- Plans: Dawnbringer Shoulders + [12699] = { 2, 290, 16655 }, -- Plans: Fiery Plate Gauntlets + [12700] = { 2, 295, 16657 }, -- Plans: Imperial Plate Boots + [12701] = { 2, 295, 16658 }, -- Plans: Imperial Plate Helm + [12702] = { 2, 295, 16659 }, -- Plans: Radiant Circlet + [12703] = { 2, 295, 16661 }, -- Plans: Storm Gauntlets + [12704] = { 2, 300, 16662 }, -- Plans: Thorium Leggings + [12705] = { 2, 300, 16663 }, -- Plans: Imperial Plate Chest + [12706] = { 2, 300, 16664 }, -- Plans: Runic Plate Shoulders + [12707] = { 2, 300, 16665 }, -- Plans: Runic Plate Boots + [12711] = { 2, 300, 16724 }, -- Plans: Whitesoul Helm + [12713] = { 2, 300, 16725 }, -- Plans: Radiant Leggings + [12714] = { 2, 300, 16726 }, -- Plans: Runic Plate Helm + [12715] = { 2, 300, 16730 }, -- Plans: Imperial Plate Leggings + [12716] = { 2, 300, 16728 }, -- Plans: Helm of the Great Chief + [12717] = { 2, 300, 16729 }, -- Plans: Lionheart Helm + [12718] = { 2, 300, 16731 }, -- Plans: Runic Breastplate + [12719] = { 2, 300, 16732 }, -- Plans: Runic Plate Leggings + [12720] = { 2, 300, 16741 }, -- Plans: Stronghold Gauntlets + [12725] = { 2, 300, 16742 }, -- Plans: Enchanted Thorium Helm + [12726] = { 2, 300, 16744 }, -- Plans: Enchanted Thorium Leggings + [12727] = { 2, 300, 16745 }, -- Plans: Enchanted Thorium Breastplate + [12728] = { 2, 300, 16746 }, -- Plans: Invulnerable Mail + [12816] = { 2, 260, 16960 }, -- Plans: Thorium Greatsword + [12817] = { 2, 270, 16965 }, -- Plans: Bleakwood Hew + [12818] = { 2, 270, 16967 }, -- Plans: Inlaid Thorium Hammer + [12819] = { 2, 275, 16969 }, -- Plans: Ornate Thorium Handaxe + [12821] = { 2, 275, 16970 }, -- Plans: Dawn's Edge + [12823] = { 2, 280, 16971 }, -- Plans: Huge Thorium Battleaxe + [12824] = { 2, 280, 16973 }, -- Plans: Enchanted Battlehammer + [12825] = { 2, 280, 16978 }, -- Plans: Blazing Rapier + [12826] = { 2, 285, 16980 }, -- Plans: Rune Edge + [12827] = { 2, 285, 16983 }, -- Plans: Serenity + [12828] = { 2, 290, 16984 }, -- Plans: Volcanic Hammer + [12830] = { 2, 290, 16985 }, -- Plans: Corruption + [12831] = { 2, 300, 16986 }, -- Plans: Blood Talon + [12832] = { 2, 300, 16987 }, -- Plans: Darkspear + [12833] = { 2, 300, 16988 }, -- Plans: Hammer of the Titans + [12834] = { 2, 300, 16990 }, -- Plans: Arcanite Champion + [12835] = { 2, 300, 16991 }, -- Plans: Annihilator + [12836] = { 2, 300, 16992 }, -- Plans: Frostguard + [12837] = { 2, 300, 16993 }, -- Plans: Masterwork Stormhammer + [12838] = { 2, 300, 16994 }, -- Plans: Arcanite Reaper + [12839] = { 2, 300, 16995 }, -- Plans: Heartseeker + [12958] = { 4, 275, 17187 }, -- Recipe: Transmute Arcanite + [13287] = { 3, 165, 4096 }, -- Pattern: Raptor Hide Harness + [13288] = { 3, 165, 4097 }, -- Pattern: Raptor Hide Belt + [13308] = { 9, 155, 3957 }, -- Schematic: Ice Deflector + [13309] = { 9, 120, 3939 }, -- Schematic: Lovingly Crafted Boomstick + [13310] = { 9, 180, 3979 }, -- Schematic: Accurate Scope + [13311] = { 9, 200, 3969 }, -- Schematic: Mechanical Dragonling + [13476] = { 4, 255, 17552 }, -- Recipe: Mighty Rage Potion + [13477] = { 4, 260, 17553 }, -- Recipe: Superior Mana Potion + [13478] = { 4, 265, 17554 }, -- Recipe: Elixir of Superior Defense + [13479] = { 4, 270, 17555 }, -- Recipe: Elixir of the Sages + [13480] = { 4, 275, 17556 }, -- Recipe: Major Healing Potion + [13481] = { 4, 275, 17557 }, -- Recipe: Elixir of Brute Force + [13482] = { 4, 275, 17559 }, -- Recipe: Transmute Air to Fire + [13483] = { 4, 275, 17560 }, -- Recipe: Transmute Fire to Earth + [13484] = { 4, 275, 17561 }, -- Recipe: Transmute Earth to Water + [13485] = { 4, 275, 17562 }, -- Recipe: Transmute Water to Air + [13486] = { 4, 275, 17563 }, -- Recipe: Transmute Undeath to Water + [13487] = { 4, 275, 17564 }, -- Recipe: Transmute Water to Undeath + [13488] = { 4, 275, 17565 }, -- Recipe: Transmute Life to Earth + [13489] = { 4, 275, 17566 }, -- Recipe: Transmute Earth to Life + [13490] = { 4, 280, 17570 }, -- Recipe: Greater Stoneshield Potion + [13491] = { 4, 280, 17571 }, -- Recipe: Elixir of the Mongoose + [13492] = { 4, 285, 17572 }, -- Recipe: Purification Potion + [13493] = { 4, 285, 17573 }, -- Recipe: Greater Arcane Elixir + [13494] = { 4, 290, 17574 }, -- Recipe: Greater Fire Protection Potion + [13495] = { 4, 290, 17575 }, -- Recipe: Greater Frost Protection Potion + [13496] = { 4, 290, 17576 }, -- Recipe: Greater Nature Protection Potion + [13497] = { 4, 290, 17577 }, -- Recipe: Greater Arcane Protection Potion + [13499] = { 4, 290, 17578 }, -- Recipe: Greater Shadow Protection Potion + [13500] = { 4, 290, 17579 }, -- Recipe: Greater Holy Protection Potion + [13501] = { 4, 295, 17580 }, -- Recipe: Major Mana Potion + [13517] = { 4, 300, 17632 }, -- Recipe: Alchemists' Stone + [13518] = { 4, 300, 17634 }, -- Recipe: Flask of Petrification + [13519] = { 4, 300, 17635 }, -- Recipe: Flask of the Titans + [13520] = { 4, 300, 17636 }, -- Recipe: Flask of Distilled Wisdom + [13521] = { 4, 300, 17637 }, -- Recipe: Flask of Supreme Power + [13522] = { 4, 300, 17638 }, -- Recipe: Flask of Chromatic Resistance + [13939] = { 6, 225, 18238 }, -- Recipe: Spotted Yellowtail + [13940] = { 6, 225, 18239 }, -- Recipe: Cooked Glossy Mightfish + [13941] = { 6, 225, 18241 }, -- Recipe: Filet of Redgill + [13942] = { 6, 240, 18240 }, -- Recipe: Grilled Squid + [13943] = { 6, 240, 18242 }, -- Recipe: Hot Smoked Bass + [13945] = { 6, 250, 18243 }, -- Recipe: Nightfin Soup + [13946] = { 6, 250, 18244 }, -- Recipe: Poached Sunscale Salmon + [13947] = { 6, 275, 18245 }, -- Recipe: Lobster Stew + [13948] = { 6, 275, 18246 }, -- Recipe: Mightfish Steak + [13949] = { 6, 275, 18247 }, -- Recipe: Baked Salmon + [14466] = { 8, 255, 18403 }, -- Pattern: Frostweave Tunic + [14467] = { 8, 255, 18404 }, -- Pattern: Frostweave Robe + [14468] = { 8, 260, 18405 }, -- Pattern: Runecloth Bag + [14469] = { 8, 260, 18406 }, -- Pattern: Runecloth Robe + [14470] = { 8, 260, 18407 }, -- Pattern: Runecloth Tunic + [14471] = { 8, 260, 18408 }, -- Pattern: Cindercloth Vest + [14472] = { 8, 265, 18409 }, -- Pattern: Runecloth Cloak + [14473] = { 8, 265, 18410 }, -- Pattern: Ghostweave Belt + [14474] = { 8, 265, 18411 }, -- Pattern: Frostweave Gloves + [14476] = { 8, 270, 18412 }, -- Pattern: Cindercloth Gloves + [14477] = { 8, 270, 18413 }, -- Pattern: Ghostweave Gloves + [14478] = { 8, 270, 18414 }, -- Pattern: Brightcloth Robe + [14479] = { 8, 270, 18415 }, -- Pattern: Brightcloth Gloves + [14480] = { 8, 275, 18416 }, -- Pattern: Ghostweave Vest + [14481] = { 8, 275, 18417 }, -- Pattern: Runecloth Gloves + [14482] = { 8, 275, 18418 }, -- Pattern: Cindercloth Cloak + [14483] = { 8, 275, 18419 }, -- Pattern: Felcloth Pants + [14484] = { 8, 275, 18420 }, -- Pattern: Brightcloth Cloak + [14485] = { 8, 275, 18421 }, -- Pattern: Wizardweave Leggings + [14486] = { 8, 275, 18422 }, -- Pattern: Cloak of Fire + [14488] = { 8, 280, 18423 }, -- Pattern: Runecloth Boots + [14489] = { 8, 280, 18424 }, -- Pattern: Frostweave Pants + [14490] = { 8, 280, 18434 }, -- Pattern: Cindercloth Pants + [14491] = { 8, 285, 18438 }, -- Pattern: Runecloth Pants + [14492] = { 8, 285, 18437 }, -- Pattern: Felcloth Boots + [14493] = { 8, 285, 18436 }, -- Pattern: Robe of Winter Night + [14494] = { 8, 290, 18439 }, -- Pattern: Brightcloth Pants + [14495] = { 8, 290, 18441 }, -- Pattern: Ghostweave Pants + [14496] = { 8, 290, 18442 }, -- Pattern: Felcloth Hood + [14497] = { 8, 290, 18440 }, -- Pattern: Mooncloth Leggings + [14498] = { 8, 295, 18444 }, -- Pattern: Runecloth Headband + [14499] = { 8, 300, 18445 }, -- Pattern: Mooncloth Bag + [14500] = { 8, 300, 18446 }, -- Pattern: Wizardweave Robe + [14501] = { 8, 300, 18447 }, -- Pattern: Mooncloth Vest + [14504] = { 8, 300, 18449 }, -- Pattern: Runecloth Shoulders + [14505] = { 8, 300, 18450 }, -- Pattern: Wizardweave Turban + [14506] = { 8, 300, 18451 }, -- Pattern: Felcloth Robe + [14507] = { 8, 300, 18448 }, -- Pattern: Mooncloth Shoulders + [14508] = { 8, 300, 18453 }, -- Pattern: Felcloth Shoulders + [14509] = { 8, 300, 18452 }, -- Pattern: Mooncloth Circlet + [14510] = { 8, 300, 18455 }, -- Pattern: Bottomless Bag + [14511] = { 8, 300, 18454 }, -- Pattern: Gloves of Spell Mastery + [14512] = { 8, 300, 18456 }, -- Pattern: Truefaith Vestments + [14513] = { 8, 300, 18457 }, -- Pattern: Robe of the Archmage + [14514] = { 8, 300, 18458 }, -- Pattern: Robe of the Void + [14526] = { 8, 250, 18560 }, -- Pattern: Mooncloth + [14627] = { 8, 135, 3869 }, -- Pattern: Bright Yellow Shirt + [14630] = { 8, 165, 3857 }, -- Pattern: Enchanter's Cowl + [14634] = { 4, 200, 3454 }, -- Recipe: Frost Oil + [14635] = { 3, 185, 3778 }, -- Pattern: Gem-studded Leather Belt + [14639] = { 9, 140, 3952 }, -- Schematic: Minor Recombobulator + [15724] = { 3, 255, 19048 }, -- Pattern: Heavy Scorpid Bracers + [15725] = { 3, 260, 19049 }, -- Pattern: Wicked Leather Gauntlets + [15726] = { 3, 260, 19050 }, -- Pattern: Green Dragonscale Breastplate + [15727] = { 3, 265, 19051 }, -- Pattern: Heavy Scorpid Vest + [15728] = { 3, 265, 19052 }, -- Pattern: Wicked Leather Bracers + [15729] = { 3, 265, 19053 }, -- Pattern: Chimeric Gloves + [15730] = { 3, 300, 19054 }, -- Pattern: Red Dragonscale Breastplate + [15731] = { 3, 270, 19055 }, -- Pattern: Runic Leather Gauntlets + [15732] = { 3, 270, 19059 }, -- Pattern: Volcanic Leggings + [15733] = { 3, 270, 19060 }, -- Pattern: Green Dragonscale Leggings + [15734] = { 3, 270, 19061 }, -- Pattern: Living Shoulders + [15735] = { 3, 270, 19062 }, -- Pattern: Ironfeather Shoulders + [15737] = { 3, 275, 19063 }, -- Pattern: Chimeric Boots + [15738] = { 3, 275, 19064 }, -- Pattern: Heavy Scorpid Gauntlets + [15739] = { 3, 275, 19065 }, -- Pattern: Runic Leather Bracers + [15740] = { 3, 275, 19066 }, -- Pattern: Frostsaber Boots + [15741] = { 3, 275, 19067 }, -- Pattern: Stormshroud Pants + [15742] = { 3, 275, 19068 }, -- Pattern: Warbear Harness + [15743] = { 3, 280, 19070 }, -- Pattern: Heavy Scorpid Belt + [15744] = { 3, 280, 19071 }, -- Pattern: Wicked Leather Headband + [15745] = { 3, 280, 19072 }, -- Pattern: Runic Leather Belt + [15746] = { 3, 280, 19073 }, -- Pattern: Chimeric Leggings + [15747] = { 3, 285, 19074 }, -- Pattern: Frostsaber Leggings + [15748] = { 3, 285, 19075 }, -- Pattern: Heavy Scorpid Leggings + [15749] = { 3, 285, 19076 }, -- Pattern: Volcanic Breastplate + [15751] = { 3, 285, 19077 }, -- Pattern: Blue Dragonscale Breastplate + [15752] = { 3, 285, 19078 }, -- Pattern: Living Leggings + [15753] = { 3, 285, 19079 }, -- Pattern: Stormshroud Armor + [15754] = { 3, 285, 19080 }, -- Pattern: Warbear Woolies + [15755] = { 3, 290, 19081 }, -- Pattern: Chimeric Vest + [15756] = { 3, 290, 19082 }, -- Pattern: Runic Leather Headband + [15757] = { 3, 290, 19083 }, -- Pattern: Wicked Leather Pants + [15758] = { 3, 290, 19084 }, -- Pattern: Devilsaur Gauntlets + [15759] = { 3, 290, 19085 }, -- Pattern: Black Dragonscale Breastplate + [15760] = { 3, 290, 19086 }, -- Pattern: Ironfeather Breastplate + [15761] = { 3, 295, 19087 }, -- Pattern: Frostsaber Gloves + [15762] = { 3, 295, 19088 }, -- Pattern: Heavy Scorpid Helm + [15763] = { 3, 295, 19089 }, -- Pattern: Blue Dragonscale Shoulders + [15764] = { 3, 295, 19090 }, -- Pattern: Stormshroud Shoulders + [15765] = { 3, 300, 19091 }, -- Pattern: Runic Leather Pants + [15768] = { 3, 300, 19092 }, -- Pattern: Wicked Leather Belt + [15769] = { 3, 300, 19093 }, -- Pattern: Onyxia Scale Cloak + [15770] = { 3, 300, 19094 }, -- Pattern: Black Dragonscale Shoulders + [15771] = { 3, 300, 19095 }, -- Pattern: Living Breastplate + [15772] = { 3, 300, 19097 }, -- Pattern: Devilsaur Leggings + [15773] = { 3, 300, 19098 }, -- Pattern: Wicked Leather Armor + [15774] = { 3, 300, 19100 }, -- Pattern: Heavy Scorpid Shoulders + [15775] = { 3, 300, 19101 }, -- Pattern: Volcanic Shoulders + [15776] = { 3, 300, 19102 }, -- Pattern: Runic Leather Armor + [15777] = { 3, 300, 19103 }, -- Pattern: Runic Leather Shoulders + [15779] = { 3, 300, 19104 }, -- Pattern: Frostsaber Tunic + [15780] = { 3, 300, 19106 }, -- Pattern: Onyxia Scale Breastplate + [15781] = { 3, 300, 19107 }, -- Pattern: Black Dragonscale Leggings + [16041] = { 9, 260, 19790 }, -- Schematic: Thorium Grenade + [16042] = { 9, 260, 19791 }, -- Schematic: Thorium Widget + [16043] = { 9, 260, 19792 }, -- Schematic: Thorium Rifle + [16044] = { 9, 265, 19793 }, -- Schematic: Lifelike Mechanical Toad + [16045] = { 9, 270, 19794 }, -- Schematic: Spellpower Goggles Xtreme Plus + [16046] = { 9, 275, 19814 }, -- Schematic: Masterwork Target Dummy + [16047] = { 9, 275, 19795 }, -- Schematic: Thorium Tube + [16048] = { 9, 275, 19796 }, -- Schematic: Dark Iron Rifle + [16049] = { 9, 285, 19799 }, -- Schematic: Dark Iron Bomb + [16050] = { 9, 285, 19815 }, -- Schematic: Delicate Arcanite Converter + [16051] = { 9, 285, 19800 }, -- Schematic: Thorium Shells + [16052] = { 9, 290, 19819 }, -- Schematic: Voice Amplification Modulator + [16053] = { 9, 290, 19825 }, -- Schematic: Master Engineer's Goggles + [16054] = { 9, 300, 19830 }, -- Schematic: Arcanite Dragonling + [16055] = { 9, 300, 19831 }, -- Schematic: Arcane Bomb + [16056] = { 9, 300, 19833 }, -- Schematic: Flawless Arcanite Rifle + [16110] = { 6, 225, 15933 }, -- Recipe: Monster Omelet + [16111] = { 6, 225, 15915 }, -- Recipe: Spiced Chili Crab + [16112] = { 1, 180, 7929 }, -- Manual: Heavy Silk Bandage + [16113] = { 1, 210, 10840 }, -- Manual: Mageweave Bandage + [16214] = { 10, 255, 20008 }, -- Formula: Enchant Bracer - Greater Intellect + [16215] = { 10, 260, 20020 }, -- Formula: Enchant Boots - Greater Stamina + [16216] = { 10, 265, 20014 }, -- Formula: Enchant Cloak - Greater Resistance + [16217] = { 10, 265, 20017 }, -- Formula: Enchant Shield - Greater Stamina + [16218] = { 10, 270, 20009 }, -- Formula: Enchant Bracer - Superior Spirit + [16219] = { 10, 270, 20012 }, -- Formula: Enchant Gloves - Greater Agility + [16220] = { 10, 275, 20024 }, -- Formula: Enchant Boots - Spirit + [16221] = { 10, 275, 20026 }, -- Formula: Enchant Chest - Major Health + [16222] = { 10, 280, 20016 }, -- Formula: Enchant Shield - Superior Spirit + [16223] = { 10, 285, 20029 }, -- Formula: Enchant Weapon - Icy Chill + [16224] = { 10, 285, 20015 }, -- Formula: Enchant Cloak - Superior Defense + [16242] = { 10, 290, 20028 }, -- Formula: Enchant Chest - Major Mana + [16243] = { 10, 290, 20051 }, -- Formula: Runed Arcanite Rod + [16244] = { 10, 295, 20013 }, -- Formula: Enchant Gloves - Greater Strength + [16245] = { 10, 295, 20023 }, -- Formula: Enchant Boots - Greater Agility + [16246] = { 10, 295, 20010 }, -- Formula: Enchant Bracer - Superior Strength + [16247] = { 10, 295, 20030 }, -- Formula: Enchant 2H Weapon - Superior Impact + [16248] = { 10, 295, 20033 }, -- Formula: Enchant Weapon - Unholy + [16249] = { 10, 300, 20036 }, -- Formula: Enchant 2H Weapon - Major Intellect + [16250] = { 10, 300, 20031 }, -- Formula: Enchant Weapon - Superior Striking + [16251] = { 10, 300, 20011 }, -- Formula: Enchant Bracer - Superior Stamina + [16252] = { 10, 300, 20034 }, -- Formula: Enchant Weapon - Crusader + [16253] = { 10, 300, 20025 }, -- Formula: Enchant Chest - Greater Stats + [16254] = { 10, 300, 20032 }, -- Formula: Enchant Weapon - Lifestealing + [16255] = { 10, 300, 20035 }, -- Formula: Enchant 2H Weapon - Major Spirit + [16767] = { 6, 225, 20626 }, -- Recipe: Undermine Clam Chowder + [17017] = { 8, 300, 20848 }, -- Pattern: Flarecore Mantle + [17018] = { 8, 300, 20849 }, -- Pattern: Flarecore Gloves + [17022] = { 3, 295, 20853 }, -- Pattern: Corehound Boots + [17023] = { 3, 300, 20854 }, -- Pattern: Molten Helm + [17025] = { 3, 300, 20855 }, -- Pattern: Black Dragonscale Boots + [17049] = { 2, 295, 20872 }, -- Plans: Fiery Chain Girdle + [17051] = { 2, 295, 20874 }, -- Plans: Dark Iron Bracers + [17052] = { 2, 300, 20876 }, -- Plans: Dark Iron Leggings + [17053] = { 2, 300, 20873 }, -- Plans: Fiery Chain Shoulders + [17059] = { 2, 300, 20890 }, -- Plans: Dark Iron Reaver + [17060] = { 2, 300, 20897 }, -- Plans: Dark Iron Destroyer + [17062] = { 6, 175, 20916 }, -- Recipe: Mithril Head Trout + [17200] = { 6, 1, 21143 }, -- Recipe: Gingerbread Cookie + [17201] = { 6, 35, 21144 }, -- Recipe: Egg Nog + [17706] = { 2, 190, 21913 }, -- Plans: Edge of Winter + [17709] = { 4, 190, 21923 }, -- Recipe: Elixir of Frost Power + [17720] = { 9, 190, 21940 }, -- Schematic: Snowmaster 9000 + [17722] = { 3, 190, 21943 }, -- Pattern: Gloves of the Greatfather + [17724] = { 8, 190, 21945 }, -- Pattern: Green Holiday Shirt + [17725] = { 10, 190, 21931 }, -- Formula: Enchant Weapon - Winter's Might + [18046] = { 6, 225, 22480 }, -- Recipe: Tender Wolf Steak + [18160] = { 6, 60, 9513 }, -- Recipe: Thistle Tea + [18235] = { 9, 300, 22704 }, -- Schematic: Field Repair Bot 74A + [18239] = { 3, 200, 22711 }, -- Pattern: Shadowskin Gloves + [18252] = { 3, 300, 22727 }, -- Pattern: Core Armor Kit + [18257] = { 4, 300, 22732 }, -- Recipe: Major Rejuvenation Potion + [18259] = { 10, 300, 22749 }, -- Formula: Enchant Weapon - Spell Power + [18260] = { 10, 300, 22750 }, -- Formula: Enchant Weapon - Healing Power + [18264] = { 2, 300, 22757 }, -- Plans: Elemental Sharpening Stone + [18265] = { 8, 300, 22759 }, -- Pattern: Flarecore Wraps + [18267] = { 6, 275, 22761 }, -- Recipe: Runn Tum Tuber Surprise + [18290] = { 9, 300, 22793 }, -- Schematic: Biznicks 247x128 Accurascope + [18291] = { 9, 300, 22797 }, -- Schematic: Force Reactive Disk + [18292] = { 9, 300, 22795 }, -- Schematic: Core Marksman Rifle + [18414] = { 8, 300, 22866 }, -- Pattern: Belt of the Archmage + [18415] = { 8, 300, 22867 }, -- Pattern: Felcloth Gloves + [18416] = { 8, 300, 22868 }, -- Pattern: Inferno Gloves + [18417] = { 8, 300, 22869 }, -- Pattern: Mooncloth Gloves + [18418] = { 8, 300, 22870 }, -- Pattern: Cloak of Warding + [18487] = { 8, 300, 22902 }, -- Pattern: Mooncloth Robe + [18514] = { 3, 300, 22921 }, -- Pattern: Girdle of Insight + [18515] = { 3, 300, 22922 }, -- Pattern: Mongoose Boots + [18516] = { 3, 300, 22923 }, -- Pattern: Swift Flight Bracers + [18517] = { 3, 300, 22926 }, -- Pattern: Chromatic Cloak + [18518] = { 3, 300, 22927 }, -- Pattern: Hide of the Wild + [18519] = { 3, 300, 22928 }, -- Pattern: Shifting Cloak + [18592] = { 2, 300, 21161 }, -- Plans: Sulfuron Hammer + [18647] = { 9, 150, 23066 }, -- Schematic: Red Firework + [18648] = { 9, 150, 23068 }, -- Schematic: Green Firework + [18649] = { 9, 150, 23067 }, -- Schematic: Blue Firework + [18650] = { 9, 200, 23069 }, -- Schematic: EZ-Thro Dynamite II + [18651] = { 9, 260, 23071 }, -- Schematic: Truesilver Transformer + [18652] = { 9, 260, 23077 }, -- Schematic: Gyrofreeze Ice Reflector + [18653] = { 9, 265, 23078 }, -- Schematic: Goblin Jumper Cables XL + [18654] = { 9, 265, 23096 }, -- Schematic: Gnomish Alarm-O-Bot + [18655] = { 9, 275, 23079 }, -- Schematic: Major Recombobulator + [18656] = { 9, 275, 23080 }, -- Schematic: Powerful Seaforium Charge + [18657] = { 9, 290, 23081 }, -- Schematic: Hyper-Radiant Flame Reflector + [18658] = { 9, 300, 23082 }, -- Schematic: Ultra-Flash Shadow Reflector + [18661] = { 9, 260, 23129 }, -- Schematic: World Enlarger + [18731] = { 3, 150, 23190 }, -- Pattern: Heavy Leather Ball + [18949] = { 3, 155, 23399 }, -- Pattern: Barbaric Bracers + [19027] = { 9, 250, 23507 }, -- Schematic: Snake Burst Firework + [19202] = { 2, 290, 23628 }, -- Plans: Heavy Timbermaw Belt + [19203] = { 2, 290, 23632 }, -- Plans: Girdle of the Dawn + [19204] = { 2, 300, 23629 }, -- Plans: Heavy Timbermaw Boots + [19205] = { 2, 300, 23633 }, -- Plans: Gloves of the Dawn + [19206] = { 2, 300, 23636 }, -- Plans: Dark Iron Helm + [19207] = { 2, 300, 23637 }, -- Plans: Dark Iron Gauntlets + [19208] = { 2, 300, 23638 }, -- Plans: Black Amnesty + [19209] = { 2, 300, 23639 }, -- Plans: Blackfury + [19210] = { 2, 300, 23650 }, -- Plans: Ebon Hand + [19211] = { 2, 300, 23652 }, -- Plans: Blackguard + [19212] = { 2, 300, 23653 }, -- Plans: Nightfall + [19215] = { 8, 290, 23662 }, -- Pattern: Wisdom of the Timbermaw + [19216] = { 8, 290, 23664 }, -- Pattern: Argent Boots + [19217] = { 8, 300, 23665 }, -- Pattern: Argent Shoulders + [19218] = { 8, 300, 23663 }, -- Pattern: Mantle of the Timbermaw + [19219] = { 8, 300, 23666 }, -- Pattern: Flarecore Robe + [19220] = { 8, 300, 23667 }, -- Pattern: Flarecore Leggings + [19326] = { 3, 290, 23703 }, -- Pattern: Might of the Timbermaw + [19327] = { 3, 300, 23704 }, -- Pattern: Timbermaw Brawlers + [19328] = { 3, 290, 23705 }, -- Pattern: Dawn Treaders + [19329] = { 3, 300, 23706 }, -- Pattern: Golden Mantle of the Dawn + [19330] = { 3, 300, 23707 }, -- Pattern: Lava Belt + [19331] = { 3, 300, 23708 }, -- Pattern: Chromatic Gauntlets + [19332] = { 3, 300, 23709 }, -- Pattern: Corehound Belt + [19333] = { 3, 300, 23710 }, -- Pattern: Molten Belt + [19442] = { 1, 300, 23787 }, -- Formula: Powerful Anti-Venom + [19444] = { 10, 290, 23799 }, -- Formula: Enchant Weapon - Strength + [19445] = { 10, 290, 23800 }, -- Formula: Enchant Weapon - Agility + [19446] = { 10, 290, 23801 }, -- Formula: Enchant Bracer - Mana Regeneration + [19447] = { 10, 300, 23802 }, -- Formula: Enchant Bracer - Healing + [19448] = { 10, 300, 23803 }, -- Formula: Enchant Weapon - Mighty Spirit + [19449] = { 10, 300, 23804 }, -- Formula: Enchant Weapon - Mighty Intellect + [19764] = { 8, 300, 24091 }, -- Pattern: Bloodvine Vest + [19765] = { 8, 300, 24092 }, -- Pattern: Bloodvine Leggings + [19766] = { 8, 300, 24093 }, -- Pattern: Bloodvine Boots + [19769] = { 3, 300, 24121 }, -- Pattern: Primal Batskin Jerkin + [19770] = { 3, 300, 24122 }, -- Pattern: Primal Batskin Gloves + [19771] = { 3, 300, 24123 }, -- Pattern: Primal Batskin Bracers + [19772] = { 3, 300, 24124 }, -- Pattern: Blood Tiger Breastplate + [19773] = { 3, 300, 24125 }, -- Pattern: Blood Tiger Shoulders + [19776] = { 2, 300, 24136 }, -- Plans: Bloodsoul Breastplate + [19777] = { 2, 300, 24137 }, -- Plans: Bloodsoul Shoulders + [19778] = { 2, 300, 24138 }, -- Plans: Bloodsoul Gauntlets + [19779] = { 2, 300, 24139 }, -- Plans: Darksoul Breastplate + [19780] = { 2, 300, 24140 }, -- Plans: Darksoul Leggings + [19781] = { 2, 300, 24141 }, -- Plans: Darksoul Shoulders + [20000] = { 9, 300, 24356 }, -- Schematic: Bloodvine Goggles + [20001] = { 9, 300, 24357 }, -- Schematic: Bloodvine Lens + [20011] = { 4, 275, 24365 }, -- Recipe: Mageblood Potion + [20012] = { 4, 275, 24366 }, -- Recipe: Greater Dreamless Sleep + [20013] = { 4, 285, 24367 }, -- Recipe: Living Action Potion + [20014] = { 4, 290, 24368 }, -- Recipe: Major Troll's Blood Potion + [20040] = { 2, 300, 24399 }, -- Plans: Dark Iron Boots + [20075] = { 6, 150, 24418 }, -- Recipe: Heavy Crocolisk Stew + [20253] = { 3, 275, 19068 }, -- Pattern: Warbear Harness + [20254] = { 3, 285, 19080 }, -- Pattern: Warbear Woolies + [20382] = { 3, 300, 24703 }, -- Pattern: Dreamscale Breastplate + [20506] = { 3, 300, 24846 }, -- Pattern: Spitfire Bracers + [20507] = { 3, 300, 24847 }, -- Pattern: Spitfire Gauntlets + [20508] = { 3, 300, 24848 }, -- Pattern: Spitfire Breastplate + [20509] = { 3, 300, 24849 }, -- Pattern: Sandstalker Bracers + [20510] = { 3, 300, 24850 }, -- Pattern: Sandstalker Gauntlets + [20511] = { 3, 300, 24851 }, -- Pattern: Sandstalker Breastplate + [20546] = { 8, 300, 24901 }, -- Pattern: Runed Stygian Leggings + [20547] = { 8, 300, 24903 }, -- Pattern: Runed Stygian Boots + [20548] = { 8, 300, 24902 }, -- Pattern: Runed Stygian Belt + [20553] = { 2, 300, 24912 }, -- Plans: Darkrune Gauntlets + [20554] = { 2, 300, 24914 }, -- Plans: Darkrune Breastplate + [20555] = { 2, 300, 24913 }, -- Plans: Darkrune Helm + [20576] = { 3, 100, 24940 }, -- Pattern: Black Whelp Tunic + [20726] = { 10, 300, 25072 }, -- Formula: Enchant Gloves - Threat + [20727] = { 10, 300, 25073 }, -- Formula: Enchant Gloves - Shadow Power + [20728] = { 10, 300, 25074 }, -- Formula: Enchant Gloves - Frost Power + [20729] = { 10, 300, 25078 }, -- Formula: Enchant Gloves - Fire Power + [20730] = { 10, 300, 25079 }, -- Formula: Enchant Gloves - Healing Power + [20731] = { 10, 300, 25080 }, -- Formula: Enchant Gloves - Superior Agility + [20732] = { 10, 300, 25081 }, -- Formula: Enchant Cloak - Greater Fire Resistance + [20733] = { 10, 300, 25082 }, -- Formula: Enchant Cloak - Greater Nature Resistance + [20734] = { 10, 300, 25083 }, -- Formula: Enchant Cloak - Stealth + [20735] = { 10, 300, 25084 }, -- Formula: Enchant Cloak - Subtlety + [20736] = { 10, 300, 25086 }, -- Formula: Enchant Cloak - Dodge + [20752] = { 10, 150, 25125 }, -- Formula: Minor Mana Oil + [20753] = { 10, 200, 25126 }, -- Formula: Lesser Wizard Oil + [20754] = { 10, 250, 25127 }, -- Formula: Lesser Mana Oil + [20755] = { 10, 275, 25128 }, -- Formula: Wizard Oil + [20756] = { 10, 300, 25129 }, -- Formula: Brilliant Wizard Oil + [20757] = { 10, 300, 25130 }, -- Formula: Brilliant Mana Oil + [20758] = { 10, 45, 25124 }, -- Formula: Minor Wizard Oil + [20761] = { 4, 300, 25146 }, -- Recipe: Transmute Elemental Fire + [21025] = { 6, 300, 25659 }, -- Recipe: Dirge's Kickin' Chimaerok Chops + [21099] = { 6, 80, 25704 }, -- Recipe: Smoked Sagefish + [21219] = { 6, 175, 25954 }, -- Recipe: Sagefish Delight + [21358] = { 8, 260, 26085 }, -- Pattern: Soul Pouch + [21369] = { 8, 285, 26086 }, -- Pattern: Felcloth Bag + [21371] = { 8, 300, 26087 }, -- Pattern: Core Felcloth Bag + [21547] = { 4, 250, 26277 }, -- Recipe: Elixir of Greater Firepower + [21548] = { 3, 300, 26279 }, -- Pattern: Stormshroud Gloves + [21722] = { 8, 250, 26403 }, -- Pattern: Festival Dress + [21723] = { 8, 250, 26407 }, -- Pattern: Festival Suit + [21724] = { 9, 125, 26416 }, -- Schematic: Small Blue Rocket + [21725] = { 9, 125, 26417 }, -- Schematic: Small Green Rocket + [21726] = { 9, 125, 26418 }, -- Schematic: Small Red Rocket + [21727] = { 9, 175, 26420 }, -- Schematic: Large Blue Rocket + [21728] = { 9, 175, 26421 }, -- Schematic: Large Green Rocket + [21729] = { 9, 175, 26422 }, -- Schematic: Large Red Rocket + [21730] = { 9, 225, 26423 }, -- Schematic: Blue Rocket Cluster + [21731] = { 9, 225, 26424 }, -- Schematic: Green Rocket Cluster + [21732] = { 9, 225, 26425 }, -- Schematic: Red Rocket Cluster + [21733] = { 9, 275, 26426 }, -- Schematic: Large Blue Rocket Cluster + [21734] = { 9, 275, 26427 }, -- Schematic: Large Green Rocket Cluster + [21735] = { 9, 275, 26428 }, -- Schematic: Large Red Rocket Cluster + [21737] = { 9, 275, 26443 }, -- Schematic: Cluster Launcher + [21738] = { 9, 225, 26442 }, -- Schematic: Firework Launcher + [22209] = { 2, 300, 27585 }, -- Plans: Heavy Obsidian Belt + [22214] = { 2, 300, 27588 }, -- Plans: Light Obsidian Belt + [22219] = { 2, 300, 27586 }, -- Plans: Jagged Obsidian Shield + [22220] = { 2, 300, 27589 }, -- Plans: Black Grasp of the Destroyer + [22221] = { 2, 300, 27590 }, -- Plans: Obsidian Mail Tunic + [22222] = { 2, 300, 27587 }, -- Plans: Thick Obsidian Breastplate + [22307] = { 8, 225, 27658 }, -- Pattern: Enchanted Mageweave Pouch + [22308] = { 8, 275, 27659 }, -- Pattern: Enchanted Runecloth Bag + [22309] = { 8, 300, 27660 }, -- Pattern: Big Bag of Enchantment + [22310] = { 8, 275, 27724 }, -- Pattern: Cenarion Herb Bag + [22312] = { 8, 300, 27725 }, -- Pattern: Satchel of Cenarius + [22388] = { 2, 300, 27829 }, -- Plans: Titanic Leggings + [22389] = { 2, 300, 27832 }, -- Plans: Sageblade + [22390] = { 2, 300, 27830 }, -- Plans: Persuader + [22392] = { 10, 290, 27837 }, -- Formula: Enchant 2H Weapon - Agility + [22683] = { 8, 300, 28210 }, -- Pattern: Gaea's Embrace + [22684] = { 8, 300, 28205 }, -- Pattern: Glacial Gloves + [22685] = { 8, 300, 28208 }, -- Pattern: Glacial Cloak + [22686] = { 8, 300, 28207 }, -- Pattern: Glacial Vest + [22687] = { 8, 300, 28209 }, -- Pattern: Glacial Wrists + [22692] = { 3, 300, 28219 }, -- Pattern: Polar Tunic + [22694] = { 3, 300, 28220 }, -- Pattern: Polar Gloves + [22695] = { 3, 300, 28221 }, -- Pattern: Polar Bracers + [22696] = { 3, 300, 28222 }, -- Pattern: Icy Scale Breastplate + [22697] = { 3, 300, 28223 }, -- Pattern: Icy Scale Gauntlets + [22698] = { 3, 300, 28224 }, -- Pattern: Icy Scale Bracers + [22703] = { 2, 300, 28242 }, -- Plans: Icebane Breastplate + [22704] = { 2, 300, 28243 }, -- Plans: Icebane Gauntlets + [22705] = { 2, 300, 28244 }, -- Plans: Icebane Bracers + [22729] = { 9, 275, 28327 }, -- Schematic: Steam Tonk Controller + [22766] = { 2, 300, 28461 }, -- Plans: Ironvine Breastplate + [22767] = { 2, 300, 28462 }, -- Plans: Ironvine Gloves + [22768] = { 2, 300, 28463 }, -- Plans: Ironvine Belt + [22769] = { 3, 300, 28474 }, -- Pattern: Bramblewood Belt + [22770] = { 3, 300, 28473 }, -- Pattern: Bramblewood Boots + [22771] = { 3, 300, 28472 }, -- Pattern: Bramblewood Helm + [22772] = { 8, 300, 28482 }, -- Pattern: Sylvan Shoulders + [22773] = { 8, 300, 28481 }, -- Pattern: Sylvan Crown + [22774] = { 8, 300, 28480 }, -- Pattern: Sylvan Vest + [23689] = { 1, 300, 30021 }, -- Manual: Crystal Infused Bandage + [23690] = { 6, 300, 30047 }, -- Recipe: Crystal Flake Throat Lozenge } -- maybe weak table? @@ -861,20 +847,7 @@ end function Recipe.GetRecipeDataForExtraFrame(itemID) local recipe = Recipe.GetRecipeData(itemID) if not itemID then return end - if not RecipeCache[itemID] then - local ret - if recipe[3] then - ret = { recipe[3], 0 } - else - ret = {} - end - for i = 1, #recipe[4] do - ret[#ret+1] = {recipe[4][i], recipe[5][i]} - end - - RecipeCache[itemID] = ret - end - return RecipeCache[itemID] + return Profession.GetDataForExtraFrame(recipe[3]) end function Recipe.GetCreatedItemID(itemID) diff --git a/AtlasLootClassic/Documentation/Release_Notes.txt b/AtlasLootClassic/Documentation/Release_Notes.txt index addb4a92..686e52b3 100644 --- a/AtlasLootClassic/Documentation/Release_Notes.txt +++ b/AtlasLootClassic/Documentation/Release_Notes.txt @@ -8,6 +8,7 @@ Patch Notes v1.0.0-beta3 (Jul. XX, 2019) ======================== - Add Recipe database +- Add Profession database - Fix order of some Tokens with added multiline support - Remove double entries that are no longer needed with recipe db diff --git a/AtlasLootClassic/Init.lua b/AtlasLootClassic/Init.lua index a9851f1d..6774f566 100644 --- a/AtlasLootClassic/Init.lua +++ b/AtlasLootClassic/Init.lua @@ -10,7 +10,7 @@ local tonumber = _G.tonumber local addonname = ... _G.AtlasLoot = { - __addonrevision = tonumber(("$Rev: 4772 $"):match("%d+")) or 0 + __addonrevision = tonumber(("$Rev: 4773 $"):match("%d+")) or 0 } local AddonNameVersion = string.format("%s-%d", addonname, _G.AtlasLoot.__addonrevision) diff --git a/AtlasLootClassic/Libs/ALDB-1.0/ALDB-1.0.lua b/AtlasLootClassic/Libs/ALDB-1.0/ALDB-1.0.lua index 420564b0..ba2a8c20 100644 --- a/AtlasLootClassic/Libs/ALDB-1.0/ALDB-1.0.lua +++ b/AtlasLootClassic/Libs/ALDB-1.0/ALDB-1.0.lua @@ -148,9 +148,7 @@ function ALDB:Register(savedVariablesBase, savedVariablesSec, defaults) savedVariablesBase = savedVariablesBase, savedVariablesSec = savedVariablesSec, } - ALDB:SetDefaults(db, defaults) - return db end diff --git a/AtlasLootClassic/db.lua b/AtlasLootClassic/db.lua index 2e5e82bf..202c5f51 100644 --- a/AtlasLootClassic/db.lua +++ b/AtlasLootClassic/db.lua @@ -71,33 +71,6 @@ AtlasLoot.AtlasLootDBDefaults = { }, }, }, - SetViewFrame = { - point = {"CENTER"}, - currentContentType = "stats", - mainFrame = { - bgColor = {0, 0, 0, 1}, - bgColorModel = {1, 1, 1, 1}, - scale = 1, - title = { - bgColor = { 0, 0.86, 1, 1 }, - textColor = {1, 1, 1, 1}, - size = 12, - font = "Friz Quadrata TT", - }, - }, - contentTopBottom = { - bgColor = {0, 0.86, 1, 1}, - textColor = {1, 1, 1, 1}, - textFont = "Friz Quadrata TT", - textSize = 12, - }, - content = { - bgColor = {1, 1, 1, 1}, - textColor = {1, 0.82, 0, 1}, - textFont = "Friz Quadrata TT", - textSize = 12, - }, - }, --[[ MiniMapButton = { point = false, diff --git a/AtlasLootClassic_Crafting/data.lua b/AtlasLootClassic_Crafting/data.lua index 0de43e83..8c2215bb 100644 --- a/AtlasLootClassic_Crafting/data.lua +++ b/AtlasLootClassic_Crafting/data.lua @@ -23,6 +23,7 @@ local RAID20_DIFF = data:AddDifficulty(AL["20 Raid"], "r20", 9) local RAID40_DIFF = data:AddDifficulty(AL["40 Raid"], "r40", 9) local NORMAL_ITTYPE = data:AddItemTableType("Item", "Item") +local PROF_ITTYPE = data:AddItemTableType("Profession", "Item") local QUEST_EXTRA_ITTYPE = data:AddExtraItemTableType("Quest") local PRICE_EXTRA_ITTYPE = data:AddExtraItemTableType("Price") @@ -32,14 +33,22 @@ local RAID20_CONTENT = data:AddContentType(AL["20 Raids"], ATLASLOOT_RAID20_COLO local RAID40_CONTENT = data:AddContentType(AL["40 Raids"], ATLASLOOT_RAID40_COLOR) data["DUMMY"] = { - name = "DUMMY", + name = "Test", ContentType = DUNGEON_CONTENT, LoadDifficulty = NORMAL_DIFF, + TableType = PROF_ITTYPE, items = { { - name = "DUMMY", + name = "TestBoss", [NORMAL_DIFF] = { - { 1, 19318 }, -- Bottled Alterac Spring Water + { 1, 17634 }, + { 2, 17564 }, + + { 4, 25073 }, + { 5, 25129 }, + + { 16, 18629 }, + { 17, 7934 }, }, }, }, diff --git a/AtlasLootClassic_DungeonsAndRaids/data.lua b/AtlasLootClassic_DungeonsAndRaids/data.lua index 11f93802..da9a2b04 100644 --- a/AtlasLootClassic_DungeonsAndRaids/data.lua +++ b/AtlasLootClassic_DungeonsAndRaids/data.lua @@ -3473,7 +3473,7 @@ data["Scholomance"] = { DisplayIDs = {{11070}}, [NORMAL_DIFF] = { { 1, 13937 }, -- Headmaster's Charge - { 2, 14514, 14153 }, -- Pattern: Robe of the Void + { 2, 14514 }, -- Pattern: Robe of the Void { 4, 16693 }, -- Devout Crown { 5, 16686 }, -- Magister's Crown { 6, 16698 }, -- Dreadmist Mask