diff --git a/Core/AtlasLoot.lua b/Core/AtlasLoot.lua index 0ad6b85..07c01a6 100644 --- a/Core/AtlasLoot.lua +++ b/Core/AtlasLoot.lua @@ -5,6 +5,8 @@ Loot browser associating loot with instance bosses Can be integrated with Atlas (http://www.atlasmod.com) ]] +local _G = _G or getfenv(0) + --Bindings BINDING_HEADER_ATLASLOOT_TITLE = "AtlasLoot Bindings" BINDING_NAME_ATLASLOOT_TOGGLE = "Toggle AtlasLoot" @@ -1116,7 +1118,7 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) --Iterate through each item object and set its properties for i = 1, 30, 1 do --Check for a valid object (that it exists, and that it has a name) - if(dataSource[dataID][i] ~= nil and dataSource[dataID][i][3] ~= "") then + if (dataSource[dataID][i] ~= nil and dataSource[dataID][i][3] ~= "") then if string.sub(dataSource[dataID][i][1], 1, 1) == "s" then isItem = false; isEnchant = false; @@ -1132,10 +1134,11 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) end local quantityFrame if isItem then - local itemName, _, itemQuality = GetItemInfo(dataSource[dataID][i][1]); + local itemID = dataSource[dataID][i][1] + local itemName, _, itemQuality = GetItemInfo(itemID); --If the client has the name of the item in cache, use that instead. --This is poor man's localisation, English is replaced be whatever is needed - if(GetItemInfo(dataSource[dataID][i][1])) then + if (GetItemInfo(itemID)) then local _, _, _, itemColor = GetItemQualityColor(itemQuality); text = itemColor..itemName; else @@ -1145,7 +1148,8 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) quantityFrame = getglobal("AtlasLootItem_"..i.."_Quantity"); quantityFrame:SetText("") elseif isEnchant then - spellName = GetSpellInfoAtlasLootDB["enchants"][tonumber(string.sub(dataSource[dataID][i][1], 2))]["name"] + local spellID = tonumber(string.sub(dataSource[dataID][i][1], 2)) + spellName = GetSpellInfoAtlasLootDB["enchants"][spellID]["name"] spellIcon = dataSource[dataID][i][2] text = AtlasLoot_FixText(string.sub(dataSource[dataID][i][3], 1, 4)..spellName) quantityFrame = getglobal("AtlasLootItem_"..i.."_Quantity"); @@ -1153,9 +1157,10 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) elseif isSpell then spellName = dataSource[dataID][i][3] spellIcon = dataSource[dataID][i][2] + local spellID = tonumber(string.sub(dataSource[dataID][i][1], 2)) text = AtlasLoot_FixText(spellName) - local qtyMin = GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(dataSource[dataID][i][1], 2))]["craftQuantityMin"]; - local qtyMax = GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(dataSource[dataID][i][1], 2))]["craftQuantityMax"]; + local qtyMin = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftQuantityMin"]; + local qtyMax = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftQuantityMax"]; if qtyMin and qtyMin ~= "" then if qtyMax and qtyMax ~= "" then quantityFrame = getglobal("AtlasLootItem_"..i.."_Quantity"); @@ -1359,45 +1364,49 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) itemButton.itemIDName = dataSource[dataID][i][3]; itemButton.itemIDExtra = dataSource[dataID][i][4]; itemButton.container = dataSource[dataID][i][16] - border:Hide() if itemButton.container then border:Show() + else + border:Hide() end local spellID if isItem then itemButton.dressingroomID = dataSource[dataID][i][1]; elseif isEnchant then spellID = tonumber(string.sub(dataSource[dataID][i][1], 2)); - if GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] and GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] ~= nil and GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] ~= "" then - itemButton.dressingroomID = GetSpellInfoAtlasLootDB["enchants"][spellID]["item"]; + local craftItem = GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] + if craftItem and craftItem ~= "" then + itemButton.dressingroomID = craftItem; + if not GetItemInfo(craftItem) then + GameTooltip:SetHyperlink("item:"..craftItem..":0:0:0"); + end else itemButton.dressingroomID = spellID; end - if GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] ~= nil and GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] ~= "" then - if not GetItemInfo(GetSpellInfoAtlasLootDB["enchants"][spellID]["item"]) then - GameTooltip:SetHyperlink("item:"..GetSpellInfoAtlasLootDB["enchants"][spellID]["item"]..":0:0:0"); - end - end elseif isSpell then spellID = tonumber(string.sub(dataSource[dataID][i][1], 2)); - itemButton.dressingroomID = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"]; - if GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"] ~= "" then - if not GetItemInfo(GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"]) then - GameTooltip:SetHyperlink("item:"..GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"]..":0:0:0"); + local craftItem = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"] + itemButton.dressingroomID = craftItem; + if craftItem and craftItem ~= "" then + if not GetItemInfo(craftItem) then + GameTooltip:SetHyperlink("item:"..craftItem..":0:0:0"); end end - if GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"] ~= "" then - for i = 1, table.getn(GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"]) do - local reagent = GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"][i] + local reagents = GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"] + if type(reagents) == "table" then + for j = 1, table.getn(reagents) do + local reagent = GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"][j] if not GetItemInfo(reagent[1]) then GameTooltip:SetHyperlink("item:"..reagent[1]..":0:0:0"); end end end - if GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"] ~= "" then - for i = 1, table.getn(GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"]) do - if not GetItemInfo(GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"][i]) then - GameTooltip:SetHyperlink("item:"..GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"][i]..":0:0:0"); + local tools = GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"] + if type(tools) == "table" then + for j = 1, table.getn(tools) do + local tool = GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"][j] + if not GetItemInfo(tool) then + GameTooltip:SetHyperlink("item:"..tool..":0:0:0"); end end end @@ -1407,7 +1416,9 @@ function AtlasLoot_ShowItemsFrame(dataID, dataSource, boss, pFrame) itemButton.sourcePage = dataSource[dataID][i][5]; else local droprate = dataSource[dataID][i][5]; - if droprate and string.find(droprate, "%%") then itemButton.droprate = droprate end + if droprate and string.find(droprate, "%%") then + itemButton.droprate = droprate + end end itemButton:Show(); if GetMouseFocus() == itemButton then @@ -2976,7 +2987,7 @@ AtlasLoot_HewdropDown_SubTables = { local messageShown = false function AtlasLootItem_OnEnter() local isItem, isEnchant, isSpell; - local id = this:GetID() + local buttonID = this:GetID() AtlasLootTooltip:ClearLines(); for i=1, 30, 1 do if (getglobal("AtlasLootTooltipTextRight"..i) ~= nil) then @@ -2998,12 +3009,12 @@ function AtlasLootItem_OnEnter() isSpell = false; end if isItem then - local color = strsub(getglobal("AtlasLootItem_"..this:GetID().."_Name"):GetText(), 3, 10); - local name = strsub(getglobal("AtlasLootItem_"..this:GetID().."_Name"):GetText(), 11); + local color = strsub(getglobal("AtlasLootItem_"..buttonID.."_Name"):GetText(), 3, 10); + local name = strsub(getglobal("AtlasLootItem_"..buttonID.."_Name"):GetText(), 11); --Lootlink tooltips - if( AtlasLootCharDB.LootlinkTT ) then + if ( AtlasLootCharDB.LootlinkTT ) then --If we have seen the item, use the game tooltip to minimise same name item problems - if(GetItemInfo(this.itemID) ~= nil) then + if (GetItemInfo(this.itemID) ~= nil) then getglobal(this:GetName().."_Unsafe"):Hide(); AtlasLootTooltip:SetOwner(this, "ANCHOR_RIGHT", -(this:GetWidth() / 2), 24); AtlasLootTooltip:SetHyperlink("item:"..this.itemID..":0:0:0"); @@ -3022,7 +3033,7 @@ function AtlasLootItem_OnEnter() if (LootLink_Database and LootLink_Database[this.itemID]) then LootLink_SetTooltip(AtlasLootTooltip, LootLink_Database[this.itemID][1], 1); else - LootLink_SetTooltip(AtlasLootTooltip,strsub(getglobal("AtlasLootItem_"..this:GetID().."_Name"):GetText(), 11), 1); + LootLink_SetTooltip(AtlasLootTooltip,strsub(getglobal("AtlasLootItem_"..buttonID.."_Name"):GetText(), 11), 1); end if ( AtlasLootCharDB.ItemIDs ) then AtlasLootTooltip:AddLine(AL["ItemID:"].." "..this.itemID, nil, nil, nil, 1); @@ -3035,21 +3046,21 @@ function AtlasLootItem_OnEnter() AtlasLootTooltip:Show(); end --Item Sync tooltips - elseif( AtlasLootCharDB.ItemSyncTT ) then - if(GetItemInfo(this.itemID) ~= nil) then + elseif ( AtlasLootCharDB.ItemSyncTT ) then + if (GetItemInfo(this.itemID) ~= nil) then getglobal(this:GetName().."_Unsafe"):Hide(); end ItemSync:ButtonEnter(); if ( AtlasLootCharDB.ItemIDs ) then GameTooltip:AddLine(AL["ItemID:"].." "..this.itemID, nil, nil, nil, 1); end - if( this.droprate ~= nil) then + if ( this.droprate ~= nil) then GameTooltip:AddLine(AL["Drop Rate: "]..this.droprate, 1, 1, 0); end GameTooltip:Show(); --Default game tooltips else - if(this.itemID ~= nil) then + if (this.itemID ~= nil) then if(GetItemInfo(this.itemID) ~= nil) then getglobal(this:GetName().."_Unsafe"):Hide(); AtlasLootTooltip:SetOwner(this, "ANCHOR_RIGHT", -(this:GetWidth() / 2), 24); @@ -3057,12 +3068,12 @@ function AtlasLootItem_OnEnter() if ( AtlasLootCharDB.ItemIDs ) then AtlasLootTooltip:AddLine(AL["ItemID:"].." "..this.itemID, nil, nil, nil, 1); end - if( this.droprate ~= nil) then + if ( this.droprate ~= nil) then AtlasLootTooltip:AddLine(AL["Drop Rate: "]..this.droprate, 1, 1, 0); end else AtlasLoot_QueryLootPage() - getglobal("AtlasLootItem_"..id.."_Unsafe"):Hide(); + getglobal("AtlasLootItem_"..buttonID.."_Unsafe"):Hide(); end AtlasLootTooltip:Show(); end @@ -3081,24 +3092,38 @@ function AtlasLootItem_OnEnter() messageShown = true end end + local _, _, longCooldown = strfind(AtlasLootTooltipTextRight2:GetText() or "", gsub(SPELL_RECAST_TIME_MIN, "%%%.3g", "(.+)")) + if longCooldown and strfind(longCooldown, "e%+") then + longCooldown = tonumber(longCooldown) / 60 / 24 + if longCooldown > 1 then + longCooldown = format(AL.DAYS_COOLDOWN, longCooldown) + else + longCooldown = format(AL.DAYS_COOLDOWN_1, longCooldown) + end + AtlasLootTooltipTextRight2:SetText(longCooldown) + end if ( AtlasLootCharDB.ItemIDs ) then AtlasLootTooltip:AddLine(AL["SpellID:"].." "..spellID, nil, nil, nil, 1); end AtlasLootTooltip:Show(); - if GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] and GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] ~= nil and GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] ~= "" then + local item = GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] + local extra = GetSpellInfoAtlasLootDB["enchants"][spellID]["extra"] + if item and item ~= "" then AtlasLootTooltip2:SetOwner(this, "ANCHOR_NONE"); AtlasLootTooltip2:SetPoint("TOPLEFT", AtlasLootTooltip, "BOTTOMLEFT", 0, 0) AtlasLootTooltip2:ClearLines(); - AtlasLootTooltip2:SetHyperlink("item:"..GetSpellInfoAtlasLootDB["enchants"][spellID]["item"]..":0:0:0"); - if GetSpellInfoAtlasLootDB["enchants"][spellID]["extra"] and GetSpellInfoAtlasLootDB["enchants"][spellID]["extra"] ~= nil and GetSpellInfoAtlasLootDB["enchants"][spellID]["extra"] ~= "" then - AtlasLootTooltip2:AddLine(GetSpellInfoAtlasLootDB["enchants"][spellID]["extra"], nil, nil, nil, 1); + AtlasLootTooltip2:SetHyperlink("item:"..item..":0:0:0"); + if extra and extra ~= "" then + AtlasLootTooltip2:AddLine(extra, nil, nil, nil, 1); end if ( AtlasLootCharDB.ItemIDs ) then - AtlasLootTooltip2:AddLine(AL["ItemID:"].." "..GetSpellInfoAtlasLootDB["enchants"][spellID]["item"], nil, nil, nil, 1); + AtlasLootTooltip2:AddLine(AL["ItemID:"].." "..item, nil, nil, nil, 1); end AtlasLootTooltip2:Show(); -- Reposition if tooltips overlap - if AtlasLootTooltip:GetBottom() < AtlasLootTooltip2:GetTop() then + local bottom = AtlasLootTooltip:GetBottom() + local top = AtlasLootTooltip2:GetTop() + if (top and bottom) and (bottom < top) then AtlasLootTooltip2:ClearAllPoints() AtlasLootTooltip2:SetPoint("TOPLEFT", this, "TOPRIGHT", -(this:GetWidth() / 2), 24) AtlasLootTooltip:ClearAllPoints() @@ -3107,68 +3132,44 @@ function AtlasLootItem_OnEnter() end elseif isSpell then local spellID = tonumber(string.sub(this.itemID, 2)); - local TooltipTools, TooltipReagents = "", ""; - if GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"] ~= "" then - for i = 1, table.getn(GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"]) do - AtlasLoot_CheckBagsForItems(GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"][i]) - TooltipTools = TooltipTools..AtlasLoot_CheckBagsForItems(GetSpellInfoAtlasLootDB["craftspells"][spellID]["tools"][i])..WHITE..", " - end - TooltipTools = string.sub(TooltipTools, 1, -3) - end - if GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"] ~= "" then - for i = 1, table.getn(GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"]) do - local reagent = GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"][i] - TooltipReagents = TooltipReagents..AtlasLoot_CheckBagsForItems(reagent[1], reagent[2])..WHITE..", " - end - TooltipReagents = string.sub(TooltipReagents, 1, -3) - end AtlasLootTooltip:SetOwner(this, "ANCHOR_NONE"); AtlasLootTooltip:SetPoint("BOTTOMLEFT", this, "TOPRIGHT", -(this:GetWidth() / 2), 24) AtlasLootTooltip:ClearLines(); - AtlasLootTooltip:AddLine(GetSpellInfoAtlasLootDB["craftspells"][spellID]["name"]); - AtlasLootTooltip:AddLine(WHITE..GetSpellInfoAtlasLootDB["craftspells"][spellID]["castTime"].." sec cast"); - if GetSpellInfoAtlasLootDB["craftspells"][spellID]["requires"] ~= "" then - AtlasLootTooltip:AddLine(WHITE.."Requires: "..GetSpellInfoAtlasLootDB["craftspells"][spellID]["requires"]); - end - if TooltipTools ~= "" then - AtlasLootTooltip:AddLine(WHITE.."Tools: "..TooltipTools, nil, nil, nil, 1); - end - if TooltipReagents ~= "" then - AtlasLootTooltip:AddLine(WHITE.."Reagents: "..TooltipReagents, nil, nil, nil, 1); - end - if GetSpellInfoAtlasLootDB["craftspells"][spellID]["text"] ~= "" then - AtlasLootTooltip:AddLine(GetSpellInfoAtlasLootDB["craftspells"][spellID]["text"], nil, nil, nil, 1); - end - if ( AtlasLootCharDB.ItemIDs ) then - if spellID < 100000 then - AtlasLootTooltip:AddLine(AL["SpellID:"].." "..spellID, nil, nil, nil, 1); - -- Mining spells HACK - elseif spellID >= 100000 and spellID <= 100005 then - AtlasLootTooltip:AddLine(AL["SpellID:"].." 2575", nil, nil, nil, 1); - elseif spellID >= 100006 and spellID <= 100007 then - AtlasLootTooltip:AddLine(AL["SpellID:"].." 2576", nil, nil, nil, 1); - elseif spellID >= 100008 and spellID <= 100011 then - AtlasLootTooltip:AddLine(AL["SpellID:"].." 3564", nil, nil, nil, 1); - elseif spellID >= 100012 and spellID <= 100024 then - AtlasLootTooltip:AddLine(AL["SpellID:"].." 10248", nil, nil, nil, 1); + if spellID < 100000 then + AtlasLootTooltip:SetHyperlink("enchant:"..spellID) + local _, _, longCooldown = strfind(AtlasLootTooltipTextRight2:GetText() or "", gsub(SPELL_RECAST_TIME_MIN, "%%%.3g", "(.+)")) + if longCooldown and strfind(longCooldown, "e%+") then + longCooldown = tonumber(longCooldown) / 60 / 24 + if longCooldown > 1 then + longCooldown = format(AL.DAYS_COOLDOWN, longCooldown) + else + longCooldown = format(AL.DAYS_COOLDOWN_1, longCooldown) + end + AtlasLootTooltipTextRight2:SetText(longCooldown) end end + if ( AtlasLootCharDB.ItemIDs ) then + AtlasLootTooltip:AddLine(AL["SpellID:"].." "..spellID, nil, nil, nil, 1); + end AtlasLootTooltip:Show(); - local craftitem2 = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"] - if craftitem2 ~= nil and craftitem2 ~= "" then + local craftItem = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"] + local extra = GetSpellInfoAtlasLootDB["craftspells"][spellID]["extra"] + if craftItem and craftItem ~= "" then AtlasLootTooltip2:SetOwner(this, "ANCHOR_NONE"); AtlasLootTooltip2:SetPoint("TOPLEFT", AtlasLootTooltip, "BOTTOMLEFT", 0, 0) AtlasLootTooltip2:ClearLines(); - AtlasLootTooltip2:SetHyperlink("item:"..GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"]..":0:0:0"); - if GetSpellInfoAtlasLootDB["craftspells"][spellID]["extra"] and GetSpellInfoAtlasLootDB["craftspells"][spellID]["extra"] ~= nil then - AtlasLootTooltip2:AddLine(GetSpellInfoAtlasLootDB["craftspells"][spellID]["extra"], nil, nil, nil, 1); + AtlasLootTooltip2:SetHyperlink("item:"..craftItem); + if extra then + AtlasLootTooltip2:AddLine(extra, nil, nil, nil, 1); end if ( AtlasLootCharDB.ItemIDs ) then - AtlasLootTooltip2:AddLine(AL["ItemID:"].." "..GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"], nil, nil, nil, 1); + AtlasLootTooltip2:AddLine(AL["ItemID:"].." "..craftItem, nil, nil, nil, 1); end AtlasLootTooltip2:Show(); -- Reposition if tooltips overlap - if (AtlasLootTooltip:GetBottom() and AtlasLootTooltip2:GetTop()) and (AtlasLootTooltip:GetBottom() < AtlasLootTooltip2:GetTop()) then + local bottom = AtlasLootTooltip:GetBottom() + local top = AtlasLootTooltip2:GetTop() + if (bottom and top) and (bottom < top) then AtlasLootTooltip2:ClearAllPoints() AtlasLootTooltip2:SetPoint("TOPLEFT", this, "TOPRIGHT", -(this:GetWidth() / 2), 24) AtlasLootTooltip:ClearAllPoints() @@ -3324,19 +3325,18 @@ function AtlasLootItem_OnClick(arg1) end elseif isSpell then if IsShiftKeyDown() then - if tonumber(string.sub(this.itemID, 2)) < 100000 then + local spellID = tonumber(string.sub(this.itemID, 2)) + local craftitem = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"] + local craftname = GetItemInfo(craftitem or 0) + if spellID < 100000 then if WIM_EditBoxInFocus then - local craftitem = GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(this.itemID, 2))]["craftItem"] - if craftitem ~= nil and craftitem ~= "" then - local craftname = GetItemInfo(craftitem) + if craftitem and craftitem ~= "" then WIM_EditBoxInFocus:Insert("|"..string.sub(color, 2).."|Hitem:"..craftitem.."|h["..craftname.."]|h|r"); else WIM_EditBoxInFocus:Insert(name); end elseif ChatFrameEditBox:IsVisible() then - local craftitem = GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(this.itemID, 2))]["craftItem"] - if craftitem ~= nil and craftitem ~= "" then - local craftname = GetItemInfo(craftitem) + if craftitem and craftitem ~= "" then ChatFrameEditBox:Insert("|"..string.sub(color, 2).."|Hitem:"..craftitem..":0:0:0|h["..craftname.."]|h|r"); -- Fix for Gurky's discord chat bot else ChatFrameEditBox:Insert(name); @@ -3346,16 +3346,14 @@ function AtlasLootItem_OnClick(arg1) end else if WIM_EditBoxInFocus then - local craftitem = GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(this.itemID, 2))]["craftItem"] - if craftitem ~= nil and craftitem ~= "" then - WIM_EditBoxInFocus:Insert(AtlasLoot_GetChatLink(GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(this.itemID, 2))]["craftItem"])); + if craftitem and craftitem ~= "" then + WIM_EditBoxInFocus:Insert(AtlasLoot_GetChatLink(craftItem)); else WIM_EditBoxInFocus:Insert(name); end elseif ChatFrameEditBox:IsVisible() then - local craftitem = GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(this.itemID, 2))]["craftItem"] - if craftitem ~= nil and craftitem ~= "" then - ChatFrameEditBox:Insert(AtlasLoot_GetChatLink(GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(this.itemID, 2))]["craftItem"])); + if craftitem and craftitem ~= "" then + ChatFrameEditBox:Insert(AtlasLoot_GetChatLink(craftItem)); else ChatFrameEditBox:Insert(name); end @@ -3366,10 +3364,10 @@ function AtlasLootItem_OnClick(arg1) elseif channel == "CHANNEL" then chatnumber = ChatFrameEditBox.channelTarget end - SendChatMessage(AtlasLoot_GetChatLink(GetSpellInfoAtlasLootDB["craftspells"][tonumber(string.sub(this.itemID, 2))]["craftItem"]),channel,nil,chatnumber); + SendChatMessage(AtlasLoot_GetChatLink(craftItem), channel, nil, chatnumber); end end - elseif(IsAltKeyDown() and (this.itemID ~= 0)) then + elseif (IsAltKeyDown() and (this.itemID ~= 0)) then if dataID == "WishList" then AtlasLoot_DeleteFromWishList(this.itemID); elseif dataID == "SearchResult" then @@ -3377,11 +3375,11 @@ function AtlasLootItem_OnClick(arg1) else AtlasLoot_AddToWishlist(this.itemID, texture, this.itemIDName, this.itemIDExtra, dataID.."|"..dataSource); end - elseif(IsControlKeyDown()) then + elseif (IsControlKeyDown()) then DressUpItemLink("item:"..this.dressingroomID..":0:0:0"); - elseif((dataID == "SearchResult" or dataID == "WishList") and this.sourcePage) then + elseif ((dataID == "SearchResult" or dataID == "WishList") and this.sourcePage) then local _, _, dataID, dataSource = strfind(this.sourcePage, "(.+)|(.+)"); - if(dataID and dataSource and AtlasLoot_IsLootTableAvailable(dataID)) then + if (dataID and dataSource and AtlasLoot_IsLootTableAvailable(dataID)) then AtlasLoot_ShowItemsFrame(dataID, dataSource, bossName, framePoint); end end @@ -3633,13 +3631,13 @@ function AtlasLoot_SayItemReagents(id, color, name, safe) chatnumber = ChatFrameEditBox.channelTarget end end - if string.sub( id, 1, 1 ) == "s" then - local spellid = string.sub( id, 2 ) - local craftitem = GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["craftItem"] - if craftitem ~= nil and craftitem ~= "" then + if string.sub(id, 1, 1) == "s" then + local spellID = tonumber(string.sub(id, 2)) + local craftItem = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftItem"] + if craftItem and craftItem ~= "" then local craftnumber = ""; - local qtyMin = GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["craftQuantityMin"]; - local qtyMax = GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["craftQuantityMax"]; + local qtyMin = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftQuantityMin"]; + local qtyMax = GetSpellInfoAtlasLootDB["craftspells"][spellID]["craftQuantityMax"]; if qtyMin and qtyMin ~= "" then if qtyMax and qtyMax ~= "" then craftnumber = craftnumber..qtyMin.. "-"..qtyMax.."x" @@ -3647,63 +3645,70 @@ function AtlasLoot_SayItemReagents(id, color, name, safe) craftnumber = craftnumber..qtyMin.."x" end end - SendChatMessage(AL["To craft "]..craftnumber..AtlasLoot_GetChatLink(craftitem)..AL[" the following reagents are needed:"],channel,nil,chatnumber); - for j = 1, table.getn(GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["reagents"]) do - local tempnumber = GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["reagents"][j][2] - if not tempnumber or tempnumber == nil or tempnumber == "" then - tempnumber = 1; - end - chatline = chatline..tempnumber.."x"..AtlasLoot_GetChatLink(GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["reagents"][j][1]).." "; - itemCount = itemCount + 1; - if itemCount == 4 then - SendChatMessage(chatline, channel, nil, chatnumber); - chatline = ""; - itemCount = 0; + SendChatMessage(AL["To craft "]..craftnumber..AtlasLoot_GetChatLink(craftItem)..AL[" the following reagents are needed:"], channel, nil, chatnumber); + local reagents = GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"] + if type(reagents) == "table" then + for j = 1, table.getn(reagents) do + local tempnumber = reagents[j][2] + if not tempnumber or tempnumber == nil or tempnumber == "" then + tempnumber = 1; + end + chatline = chatline..tempnumber.."x"..AtlasLoot_GetChatLink(reagents[j][1]).." "; + itemCount = itemCount + 1; + if itemCount == 4 then + SendChatMessage(chatline, channel, nil, chatnumber); + chatline = ""; + itemCount = 0; + end end end if itemCount > 0 then SendChatMessage(chatline, channel, nil, chatnumber); end else - SendChatMessage(AL["To cast "]..GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["name"]..AL[" the following items are needed:"],channel,nil,chatnumber); - for j = 1, table.getn(GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["reagents"]) do - local tempnumber = GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["reagents"][j][2] - if not tempnumber or tempnumber == nil or tempnumber == "" then - tempnumber = 1; - end - chatline = chatline..tempnumber.."x"..AtlasLoot_GetChatLink(GetSpellInfoAtlasLootDB["craftspells"][tonumber(spellid)]["reagents"][j][1]).." "; - itemCount = itemCount + 1; - if itemCount == 4 then - SendChatMessage(chatline, channel, nil, chatnumber); - chatline = ""; - itemCount = 0; + local name = GetSpellInfoAtlasLootDB["craftspells"][spellID]["name"] + local reagents = GetSpellInfoAtlasLootDB["craftspells"][spellID]["reagents"] + SendChatMessage(AL["To cast "]..name..AL[" the following items are needed:"], channel, nil, chatnumber); + if type(reagents) == "table" then + for j = 1, table.getn(reagents) do + local tempnumber = reagents[j][2] + if not tempnumber or tempnumber == nil or tempnumber == "" then + tempnumber = 1; + end + chatline = chatline..tempnumber.."x"..AtlasLoot_GetChatLink(reagents[j][1]).." "; + itemCount = itemCount + 1; + if itemCount == 4 then + SendChatMessage(chatline, channel, nil, chatnumber); + chatline = ""; + itemCount = 0; + end end end if itemCount > 0 then SendChatMessage(chatline, channel, nil, chatnumber); end end - elseif string.sub( id,1 ,1 ) == "e" then - local spellid = string.sub( id, 2 ) - local name = GetSpellInfoAtlasLootDB["enchants"][tonumber(spellid)]["name"] + elseif string.sub(id, 1, 1) == "e" then + local spellID = tonumber(string.sub(id, 2)) + local name = GetSpellInfoAtlasLootDB["enchants"][spellID]["name"] + local item = GetSpellInfoAtlasLootDB["enchants"][spellID]["item"] if tListActivity[1] and WIM_Windows[tListActivity[1]].is_visible then - if not GetSpellInfoAtlasLootDB["enchants"][tonumber(spellid)]["item"] then - SendChatMessage("|cffFFd200|Henchant:"..spellid..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); + if not item then + SendChatMessage("|cffFFd200|Henchant:"..spellID..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); else - SendChatMessage(AL["To craft "]..AtlasLoot_GetChatLink(GetSpellInfoAtlasLootDB["enchants"][tonumber(spellid)]["item"])..AL[" you need this: "].."|cffFFd200|Henchant:"..spellid..":0:0:0|h["..name.."]|h|r",channel,nil,chatnumber); + SendChatMessage(AL["To craft "]..AtlasLoot_GetChatLink(item)..AL[" you need this: "].."|cffFFd200|Henchant:"..spellID..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); end - elseif ChatFrameEditBox:IsVisible() then - if not GetSpellInfoAtlasLootDB["enchants"][tonumber(spellid)]["item"] then - ChatFrameEditBox:Insert("|cffFFd200|Henchant:"..spellid..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); + if not item then + ChatFrameEditBox:Insert("|cffFFd200|Henchant:"..spellID..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); else - ChatFrameEditBox:Insert(AL["To craft "]..AtlasLoot_GetChatLink(GetSpellInfoAtlasLootDB["enchants"][tonumber(spellid)]["item"])..AL[" you need this: "].."|cffFFd200|Henchant:"..spellid..":0:0:0|h["..name.."]|h|r",channel,nil,chatnumber); + ChatFrameEditBox:Insert(AL["To craft "]..AtlasLoot_GetChatLink(item)..AL[" you need this: "].."|cffFFd200|Henchant:"..spellID..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); end else - if not GetSpellInfoAtlasLootDB["enchants"][tonumber(spellid)]["item"] then - SendChatMessage("|cffFFd200|Henchant:"..spellid..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); + if not item then + SendChatMessage("|cffFFd200|Henchant:"..spellID..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); else - SendChatMessage(AL["To craft "]..AtlasLoot_GetChatLink(GetSpellInfoAtlasLootDB["enchants"][tonumber(spellid)]["item"])..AL[" you need this: "].."|cffFFd200|Henchant:"..spellid..":0:0:0|h["..name.."]|h|r",channel,nil,chatnumber); + SendChatMessage(AL["To craft "]..AtlasLoot_GetChatLink(item)..AL[" you need this: "].."|cffFFd200|Henchant:"..spellID..":0:0:0|h["..name.."]|h|r", channel, nil, chatnumber); end end else diff --git a/Core/Spells.lua b/Core/Spells.lua index 6348606..107f46f 100644 --- a/Core/Spells.lua +++ b/Core/Spells.lua @@ -600,43 +600,43 @@ GetSpellInfoAtlasLootDB = { ["name"] = "Minor Wizard Oil", ["icon"] = "Interface\\Icons\\INV_Poison_MindNumbing", ["item"] = 20744, - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), }, [25125] = { ["name"] = "Minor Mana Oil", ["icon"] = "Interface\\Icons\\INV_Potion_98", ["item"] = 20745, - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), }, [25126] = { ["name"] = "Lesser Wizard Oil", ["icon"] = "Interface\\Icons\\INV_Potion_103", ["item"] = 20746, - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), }, [25127] = { ["name"] = "Lesser Mana Oil", ["icon"] = "Interface\\Icons\\INV_Potion_99", ["item"] = 20747, - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), }, [25128] = { ["name"] = "Wizard Oil", ["icon"] = "Interface\\Icons\\INV_Potion_104", ["item"] = 20750, - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), }, [25129] = { ["name"] = "Brilliant Wizard Oil", ["icon"] = "Interface\\Icons\\INV_Potion_105", ["item"] = 20749, - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), }, [25130] = { ["name"] = "Brilliant Mana Oil", ["icon"] = "Interface\\Icons\\INV_Potion_100", ["item"] = 20748, - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), }, [27837] = { ["name"] = "Enchant 2H Weapon - Agility", @@ -702,26 +702,15 @@ GetSpellInfoAtlasLootDB = { ["craftspells"] = { [6510] = { ["name"] = "Poisons: Blinding Powder", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Create the reagent for the Blind ability.", ["craftItem"] = 5530, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3818}, }, }, [8681] = { ["name"] = "Poisons: Instant Poison", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy which instantly inflicts 19 to 25 Nature damage. 40 charges.", ["craftItem"] = 6947, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2928}, [2] = {3371}, @@ -729,13 +718,7 @@ GetSpellInfoAtlasLootDB = { }, [8687] = { ["name"] = "Poisons: Instant Poison II", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy which instantly inflicts 30 to 38 Nature damage. 55 charges.", ["craftItem"] = 6949, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2928, 3}, [2] = {3372}, @@ -743,13 +726,7 @@ GetSpellInfoAtlasLootDB = { }, [8691] = { ["name"] = "Poisons: Instant Poison III", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy which instantly inflicts 44 to 56 Nature damage. 70 charges.", ["craftItem"] = 6950, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8924}, [2] = {3372}, @@ -757,13 +734,7 @@ GetSpellInfoAtlasLootDB = { }, [11341] = { ["name"] = "Poisons: Instant Poison IV", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy which instantly inflicts 67 to 85 Nature damage. 85 charges.", ["craftItem"] = 8926, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8924, 2}, [2] = {8925}, @@ -771,13 +742,7 @@ GetSpellInfoAtlasLootDB = { }, [11342] = { ["name"] = "Poisons: Instant Poison V", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy which instantly inflicts 92 to 118 Nature damage. 100 charges.", ["craftItem"] = 8927, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8924, 3}, [2] = {8925}, @@ -785,55 +750,59 @@ GetSpellInfoAtlasLootDB = { }, [11343] = { ["name"] = "Poisons: Instant Poison VI", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy which instantly inflicts 112 to 148 Nature damage. 115 charges.", ["craftItem"] = 8928, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8924, 4}, [2] = {8925}, }, }, - [65032] = { + [45611] = { ["name"] = "Poisons: Agitating Poison I", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy which instantly inflicts 67 to 86 Nature damage, and causes additional threat. 115 charges.", ["craftItem"] = 65032, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2931, 2}, [2] = {3372}, }, }, - [46068] = { - ["name"] = "Survival: Cleaning Cloth", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Cleans a weapon, removing any temporary enhancement that has been applied to it.", - ["craftItem"] = 60001, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", + [51924] = { + ["name"] = "Poisons: Corrosive Poison", + ["craftItem"] = 47408, ["reagents"] = { - [1] = {4306, 2}, - [2] = {9260}, + [1] = {8924, 3}, + [2] = {5173, 3}, + [3] = {8925}, + }, + }, + [52576] = { + ["name"] = "Poisons: Corrosive Poison II", + ["craftItem"] = 47409, + ["reagents"] = { + [1] = {8924, 3}, + [2] = {5173, 3}, + [3] = {8925}, + }, + }, + [45878] = { + ["name"] = "Poisons: Dissolvent Poison", + ["craftItem"] = 54009, + ["reagents"] = { + [1] = {8924, 2}, + [2] = {2931, 3}, + [3] = {8925}, + }, + }, + [45882] = { + ["name"] = "Poisons: Dissolvent Poison II", + ["craftItem"] = 54010, + ["reagents"] = { + [1] = {8924, 3}, + [2] = {5173, 4}, + [3] = {8925}, }, }, [3420] = { ["name"] = "Poisons: Crippling Poison", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy, slowing their movement speed by 50% for 12 sec.", ["craftItem"] = 3775, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2930}, [2] = {3371}, @@ -841,13 +810,7 @@ GetSpellInfoAtlasLootDB = { }, [3421] = { ["name"] = "Poisons: Crippling Poison II", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy, slowing their movement speed by 70% for 12 sec.", ["craftItem"] = 3776, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8923, 3}, [2] = {8925}, @@ -855,13 +818,7 @@ GetSpellInfoAtlasLootDB = { }, [5763] = { ["name"] = "Poisons: Mind-numbing Poison", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy, increasing their casting time by 40% for 10 sec. 50 charges.", ["craftItem"] = 5237, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2928}, [2] = {2930}, @@ -870,13 +827,7 @@ GetSpellInfoAtlasLootDB = { }, [8694] = { ["name"] = "Poisons: Mind-numbing Poison II", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy, increasing their casting time by 50% for 12 sec. 75 charges.", ["craftItem"] = 6951, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2928, 4}, [2] = {2930, 4}, @@ -885,13 +836,7 @@ GetSpellInfoAtlasLootDB = { }, [11400] = { ["name"] = "Poisons: Mind-numbing Poison III", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 20% chance of poisoning the enemy, increasing their casting time by 60% for 14 sec. 100 charges.", ["craftItem"] = 9186, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8924, 2}, [2] = {8923, 2}, @@ -900,13 +845,7 @@ GetSpellInfoAtlasLootDB = { }, [2835] = { ["name"] = "Poisons: Deadly Poison", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy for 36 Nature damage over 12 sec. Stacks up to 5 times on a single target. 60 charges.", ["craftItem"] = 2892, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5173}, [2] = {3372}, @@ -914,13 +853,7 @@ GetSpellInfoAtlasLootDB = { }, [2837] = { ["name"] = "Poisons: Deadly Poison II", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy for 52 Nature damage over 12 sec. Stacks up to 5 times on a single target. 75 charges.", ["craftItem"] = 2893, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5173, 2}, [2] = {3372}, @@ -928,13 +861,7 @@ GetSpellInfoAtlasLootDB = { }, [11357] = { ["name"] = "Poisons: Deadly Poison III", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy for 80 Nature damage over 12 sec. Stacks up to 5 times on a single target. 90 charges.", ["craftItem"] = 8984, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5173, 3}, [2] = {8925}, @@ -942,13 +869,7 @@ GetSpellInfoAtlasLootDB = { }, [11358] = { ["name"] = "Poisons: Deadly Poison IV", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy for 108 Nature damage over 12 sec. Stacks up to 5 times on a single target. 105 charges.", ["craftItem"] = 8985, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5173, 5}, [2] = {8925}, @@ -956,13 +877,7 @@ GetSpellInfoAtlasLootDB = { }, [25347] = { ["name"] = "Poisons: Deadly Poison V", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy for 136 Nature damage over 12 sec. Stacks up to 5 times on a single target. 120 charges.", ["craftItem"] = 20844, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5173, 7}, [2] = {8925}, @@ -970,13 +885,7 @@ GetSpellInfoAtlasLootDB = { }, [13220] = { ["name"] = "Poisons: Wound Poison", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy, reducing all healing effects used on them by 55 for 15 sec. Stacks up to 5 times on a single target. 60 charges.", ["craftItem"] = 10918, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2930}, [2] = {5173}, @@ -985,13 +894,7 @@ GetSpellInfoAtlasLootDB = { }, [13228] = { ["name"] = "Poisons: Wound Poison II", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy, reducing all healing effects used on them by 75 for 15 sec. Stacks up to 5 times on a single target. 75 charges.", ["craftItem"] = 10920, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2930}, [2] = {5173, 2}, @@ -1000,13 +903,7 @@ GetSpellInfoAtlasLootDB = { }, [13229] = { ["name"] = "Poisons: Wound Poison III", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy, reducing all healing effects used on them by 105 for 15 sec. Stacks up to 5 times on a single target. 90 charges.", ["craftItem"] = 10921, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8923}, [2] = {5173, 2}, @@ -1015,13 +912,7 @@ GetSpellInfoAtlasLootDB = { }, [13230] = { ["name"] = "Poisons: Wound Poison IV", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Coats a weapon with poison that lasts for 30 minutes.\nEach strike has a 30% chance of poisoning the enemy, reducing all healing effects used on them by 135 for 15 sec. Stacks up to 5 times on a single target. 105 charges.", ["craftItem"] = 10922, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8923, 2}, [2] = {5173, 2}, @@ -1030,182 +921,100 @@ GetSpellInfoAtlasLootDB = { }, [3275] = { ["name"] = "First Aid: Linen Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 1251, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2589}, }, }, [3276] = { ["name"] = "First Aid: Heavy Linen Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2581, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2589, 2}, }, }, [7934] = { ["name"] = "First Aid: Anti-Venom", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Creates 3 Vials of Anti-Venom.", ["craftItem"] = 6452, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1475}, }, }, [3277] = { ["name"] = "First Aid: Wool Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3530, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2592}, }, }, [3278] = { ["name"] = "First Aid: Heavy Wool Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3531, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2592, 2}, }, }, [7935] = { ["name"] = "First Aid: Strong Anti-Venom", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Creates 3 Vials of Strong Anti-Venom.", ["craftItem"] = 6453, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1288}, }, }, [7928] = { ["name"] = "First Aid: Silk Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6450, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4306}, }, }, [7929] = { ["name"] = "First Aid: Heavy Silk Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6451, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4306, 2}, }, }, [10840] = { ["name"] = "First Aid: Mageweave Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 8544, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4338}, }, }, [10841] = { ["name"] = "First Aid: Heavy Mageweave Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 8545, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4338, 2}, }, }, [18629] = { ["name"] = "First Aid: Runecloth Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 14529, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14047}, }, }, [18630] = { ["name"] = "First Aid: Heavy Runecloth Bandage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 14530, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14047, 2}, }, }, [23787] = { ["name"] = "First Aid: Powerful Anti-Venom", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Creates a Vial of Powerful Anti-Venom.", ["craftItem"] = 19440, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19441}, }, }, [10844] = { ["name"] = "First Aid: Powerful Anti-Venom", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Creates a Vial of Powerful Anti-Venom.", ["craftItem"] = 8546, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8150, 4}, [2] = {7078, 2}, @@ -1214,39 +1023,20 @@ GetSpellInfoAtlasLootDB = { }, [818] = { ["name"] = "Basic Campfire", - ["requires"] = "", - ["tools"] = {4471}, - ["castTime"] = 10, - ["text"] = "Builds a campfire that increases the spirits of those nearby by 4 and allows cooking.", - ["craftItem"] = "", - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4470}, }, }, [46064] = { ["name"] = "Survival: Dim Torch", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 2, - ["text"] = "", ["craftItem"] = 6182, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6183}, }, }, [46066] = { ["name"] = "Survival: Murloc's Flippers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 2, - ["text"] = "", ["craftItem"] = 65028, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5785, 16}, [2] = {4234, 8}, @@ -1257,13 +1047,7 @@ GetSpellInfoAtlasLootDB = { }, [46072] = { ["name"] = "Survival: Traveler's Tent", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 51283, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4470, 5}, [2] = {2589, 10}, @@ -1272,13 +1056,7 @@ GetSpellInfoAtlasLootDB = { }, [46073] = { ["name"] = "Survival: Fishing Boat", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 20, - ["text"] = "", ["craftItem"] = 51282, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4470, 20}, [2] = {4359, 10}, @@ -1287,13 +1065,7 @@ GetSpellInfoAtlasLootDB = { }, [46074] = { ["name"] = "Survival: Simple Wooden Planter", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 51705, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4470, 10}, [2] = {4359, 4}, @@ -1301,13 +1073,7 @@ GetSpellInfoAtlasLootDB = { }, [46075] = { ["name"] = "Survival: Iron Lantern", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 2, - ["text"] = "", ["craftItem"] = 2714, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 2}, [2] = {814, 4}, @@ -1316,13 +1082,7 @@ GetSpellInfoAtlasLootDB = { }, [46077] = { ["name"] = "Survival: Repaired Electro-Lantern", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5, - ["text"] = "", ["craftItem"] = 65030, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1630, 5}, [2] = {10561}, @@ -1334,52 +1094,28 @@ GetSpellInfoAtlasLootDB = { }, [7752] = { ["name"] = "Cooking: Slitherskin Mackerel", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 787, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6303}, }, }, [2538] = { ["name"] = "Cooking: Charred Wolf Meat", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2679, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2672}, }, }, [7751] = { ["name"] = "Cooking: Brilliant Smallfish", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6290, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6291}, }, }, [15935] = { ["name"] = "Cooking: Crispy Bat Wing", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12224, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12223}, [2] = {2678}, @@ -1387,13 +1123,7 @@ GetSpellInfoAtlasLootDB = { }, [21143] = { ["name"] = "Cooking: Gingerbread Cookie", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 17197, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6889}, [2] = {17194}, @@ -1401,13 +1131,7 @@ GetSpellInfoAtlasLootDB = { }, [8604] = { ["name"] = "Cooking: Herb Baked Egg", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6888, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6889}, [2] = {2678}, @@ -1415,39 +1139,21 @@ GetSpellInfoAtlasLootDB = { }, [2540] = { ["name"] = "Cooking: Roasted Boar Meat", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2681, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {769}, }, }, [6412] = { ["name"] = "Cooking: Kaldorei Spider Kabob", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5472, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5465}, }, }, [2539] = { ["name"] = "Cooking: Spiced Wolf Meat", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2680, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2672}, [2] = {2678}, @@ -1455,26 +1161,14 @@ GetSpellInfoAtlasLootDB = { }, [6413] = { ["name"] = "Cooking: Scorpid Surprise", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5473, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5466}, }, }, [2795] = { ["name"] = "Cooking: Beer Basted Boar Ribs", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2888, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2886}, [2] = {2894}, @@ -1482,13 +1176,7 @@ GetSpellInfoAtlasLootDB = { }, [21144] = { ["name"] = "Cooking: Egg Nog", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 17198, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6889}, [2] = {1179}, @@ -1498,13 +1186,7 @@ GetSpellInfoAtlasLootDB = { }, [45054] = { ["name"] = "Cooking: Maritime Gumbo", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 30818, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2674}, [2] = {159}, @@ -1512,13 +1194,8 @@ GetSpellInfoAtlasLootDB = { }, [6414] = { ["name"] = "Cooking: Roasted Kodo Meat", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5474, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5467}, [2] = {2678}, @@ -1526,26 +1203,14 @@ GetSpellInfoAtlasLootDB = { }, [8607] = { ["name"] = "Cooking: Smoked Bear Meat", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6890, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3173}, }, }, [6499] = { ["name"] = "Cooking: Boiled Clams", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5525, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5503}, [2] = {159}, @@ -1553,26 +1218,15 @@ GetSpellInfoAtlasLootDB = { }, [2541] = { ["name"] = "Cooking: Coyote Steak", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2684, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2673}, }, }, [6415] = { ["name"] = "Cooking: Fillet of Frenzy", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5476, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5468}, [2] = {2678}, @@ -1580,13 +1234,7 @@ GetSpellInfoAtlasLootDB = { }, [2542] = { ["name"] = "Cooking: Goretusk Liver Pie", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 724, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {723}, [2] = {2678}, @@ -1594,13 +1242,7 @@ GetSpellInfoAtlasLootDB = { }, [7754] = { ["name"] = "Cooking: Loch Frenzy Delight", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6316, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6317}, [2] = {2678}, @@ -1608,39 +1250,22 @@ GetSpellInfoAtlasLootDB = { }, [7753] = { ["name"] = "Cooking: Longjaw Mud Snapper", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 4592, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6289}, }, }, [7827] = { ["name"] = "Cooking: Rainbow Fin Albacore", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5095, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6361}, }, }, [6416] = { ["name"] = "Cooking: Strider Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5477, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5469}, [2] = {4536}, @@ -1648,13 +1273,8 @@ GetSpellInfoAtlasLootDB = { }, [3371] = { ["name"] = "Cooking: Blood Sausage", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3220, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3173}, [2] = {3172}, @@ -1663,13 +1283,7 @@ GetSpellInfoAtlasLootDB = { }, [9513] = { ["name"] = "Cooking: Thistle Tea", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 7676, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2452}, [2] = {159}, @@ -1677,13 +1291,7 @@ GetSpellInfoAtlasLootDB = { }, [2544] = { ["name"] = "Cooking: Crab Cake", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2683, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2674}, [2] = {2678}, @@ -1691,13 +1299,7 @@ GetSpellInfoAtlasLootDB = { }, [2543] = { ["name"] = "Cooking: Westfall Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 733, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {729}, [2] = {730}, @@ -1706,13 +1308,7 @@ GetSpellInfoAtlasLootDB = { }, [3370] = { ["name"] = "Cooking: Crocolisk Steak", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3662, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2924}, [2] = {2678}, @@ -1720,13 +1316,7 @@ GetSpellInfoAtlasLootDB = { }, [2546] = { ["name"] = "Cooking: Dry Pork Ribs", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2687, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2677}, [2] = {2678}, @@ -1734,13 +1324,7 @@ GetSpellInfoAtlasLootDB = { }, [25704] = { ["name"] = "Cooking: Smoked Sagefish", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 21072, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {21071}, [2] = {2678}, @@ -1748,13 +1332,7 @@ GetSpellInfoAtlasLootDB = { }, [2545] = { ["name"] = "Cooking: Cooked Crab Claw", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2682, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2675}, [2] = {2678}, @@ -1762,13 +1340,7 @@ GetSpellInfoAtlasLootDB = { }, [8238] = { ["name"] = "Cooking: Savory Deviate Delight", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6657, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6522}, [2] = {2678}, @@ -1776,13 +1348,7 @@ GetSpellInfoAtlasLootDB = { }, [6501] = { ["name"] = "Cooking: Clam Chowder", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5526, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5503}, [2] = {1179}, @@ -1791,26 +1357,15 @@ GetSpellInfoAtlasLootDB = { }, [6417] = { ["name"] = "Cooking: Dig Rat Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5478, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5051}, }, }, [3372] = { ["name"] = "Cooking: Murloc Fin Soup", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3663, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1468, 2}, [2] = {2692}, @@ -1818,13 +1373,7 @@ GetSpellInfoAtlasLootDB = { }, [2547] = { ["name"] = "Cooking: Redridge Goulash", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 1082, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1081}, [2] = {1080}, @@ -1832,26 +1381,15 @@ GetSpellInfoAtlasLootDB = { }, [7755] = { ["name"] = "Cooking: Bristle Whisker Catfish", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 4593, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6308}, }, }, [6418] = { ["name"] = "Cooking: Crispy Lizard Tail", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5479, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5470}, [2] = {2692}, @@ -1859,13 +1397,8 @@ GetSpellInfoAtlasLootDB = { }, [2549] = { ["name"] = "Cooking: Seasoned Wolf Kabob", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 1017, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1015, 2}, [2] = {2665}, @@ -1873,13 +1406,7 @@ GetSpellInfoAtlasLootDB = { }, [2548] = { ["name"] = "Cooking: Succulent Pork Ribs", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2685, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2677}, [2] = {2692}, @@ -1887,13 +1414,7 @@ GetSpellInfoAtlasLootDB = { }, [3397] = { ["name"] = "Cooking: Big Bear Steak", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3726, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3730}, [2] = {2692}, @@ -1901,13 +1422,7 @@ GetSpellInfoAtlasLootDB = { }, [3377] = { ["name"] = "Cooking: Gooey Spider Cake", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3666, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2251, 2}, [2] = {2692}, @@ -1915,13 +1430,8 @@ GetSpellInfoAtlasLootDB = { }, [6419] = { ["name"] = "Cooking: Lean Venison", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5480, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5471}, [2] = {2678, 4}, @@ -1929,13 +1439,7 @@ GetSpellInfoAtlasLootDB = { }, [3373] = { ["name"] = "Cooking: Crocolisk Gumbo", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3664, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3667}, [2] = {2692}, @@ -1943,13 +1447,7 @@ GetSpellInfoAtlasLootDB = { }, [6500] = { ["name"] = "Cooking: Goblin Deviled Clams", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5527, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5504}, [2] = {2692}, @@ -1957,13 +1455,7 @@ GetSpellInfoAtlasLootDB = { }, [15853] = { ["name"] = "Cooking: Lean Wolf Steak", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12209, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1015}, [2] = {2678}, @@ -1971,13 +1463,7 @@ GetSpellInfoAtlasLootDB = { }, [3398] = { ["name"] = "Cooking: Hot Lion Chops", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3727, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3731}, [2] = {2692}, @@ -1985,13 +1471,7 @@ GetSpellInfoAtlasLootDB = { }, [3376] = { ["name"] = "Cooking: Curiously Tasty Omelet", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3665, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3685}, [2] = {2692}, @@ -1999,13 +1479,7 @@ GetSpellInfoAtlasLootDB = { }, [24418] = { ["name"] = "Cooking: Heavy Crocolisk Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 20074, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3667, 2}, [2] = {3713}, @@ -2013,13 +1487,7 @@ GetSpellInfoAtlasLootDB = { }, [3399] = { ["name"] = "Cooking: Tasty Lion Steak", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3728, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3731, 2}, [2] = {3713}, @@ -2027,13 +1495,7 @@ GetSpellInfoAtlasLootDB = { }, [57178] = { ["name"] = "Blacksmithing: Arcanite Belt Buckle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 61784, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 2}, [2] = {7071}, @@ -2044,13 +1506,7 @@ GetSpellInfoAtlasLootDB = { }, [57166] = { ["name"] = "Blacksmithing: Bronze Belt Buckle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 61780, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 8}, [2] = {2880}, @@ -2059,13 +1515,7 @@ GetSpellInfoAtlasLootDB = { }, [57163] = { ["name"] = "Blacksmithing: Copper Belt Buckle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 61779, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, [2] = {2880}, @@ -2074,13 +1524,7 @@ GetSpellInfoAtlasLootDB = { }, [57169] = { ["name"] = "Blacksmithing: Iron Belt Buckle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 61781, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 8}, [2] = {7071}, @@ -2089,13 +1533,7 @@ GetSpellInfoAtlasLootDB = { }, [57172] = { ["name"] = "Blacksmithing: Mithril Belt Buckle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 61782, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {7071}, @@ -2105,13 +1543,7 @@ GetSpellInfoAtlasLootDB = { }, [57175] = { ["name"] = "Blacksmithing: Thorium Belt Buckle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 61783, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 8}, [2] = {7071}, @@ -2121,13 +1553,7 @@ GetSpellInfoAtlasLootDB = { }, [57189] = { ["name"] = "Blacksmithing: Towerforge Breastplate", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60008, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 12}, [2] = {12360, 12}, @@ -2138,13 +1564,7 @@ GetSpellInfoAtlasLootDB = { }, [57187] = { ["name"] = "Blacksmithing: Towerforge Crown", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60007, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 12}, [2] = {12360, 14}, @@ -2155,13 +1575,7 @@ GetSpellInfoAtlasLootDB = { }, [57193] = { ["name"] = "Blacksmithing: Towerforge Demolisher", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60010, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 12}, [2] = {12360, 14}, @@ -2173,13 +1587,7 @@ GetSpellInfoAtlasLootDB = { }, [57191] = { ["name"] = "Blacksmithing: Towerforge Pauldrons", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60009, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 10}, [2] = {12360, 10}, @@ -2190,13 +1598,7 @@ GetSpellInfoAtlasLootDB = { }, [54005] = { ["name"] = "Blacksmithing: Pauldrons of the Timbermaw", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61649, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 12}, [2] = {12360, 2}, @@ -2206,13 +1608,7 @@ GetSpellInfoAtlasLootDB = { }, [54003] = { ["name"] = "Blacksmithing: Fury of the Timbermaw", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61648, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 16}, [2] = {7076, 3}, @@ -2221,13 +1617,7 @@ GetSpellInfoAtlasLootDB = { }, [45487] = { ["name"] = "Blacksmithing: Dawnstone Hammer", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 61185, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 16}, [2] = {12811, 6}, @@ -2239,13 +1629,7 @@ GetSpellInfoAtlasLootDB = { }, [21161] = { ["name"] = "Blacksmithing: Sulfuron Hammer", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 17193, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17203, 8}, [2] = {11371, 20}, @@ -2258,13 +1642,7 @@ GetSpellInfoAtlasLootDB = { }, [46626] = { ["name"] = "Blacksmithing: Steel Plate Boots", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83410, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 14}, [2] = {7966, 2}, @@ -2272,13 +1650,7 @@ GetSpellInfoAtlasLootDB = { }, [46627] = { ["name"] = "Blacksmithing: Steel Plate Gauntlets", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83411, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 16}, [2] = {7966, 4}, @@ -2286,13 +1658,7 @@ GetSpellInfoAtlasLootDB = { }, [46628] = { ["name"] = "Blacksmithing: Steel Plate Legguards", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83412, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 18}, [2] = {7966, 2}, @@ -2301,13 +1667,7 @@ GetSpellInfoAtlasLootDB = { }, [46629] = { ["name"] = "Blacksmithing: Steel Plate Armor", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83413, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 20}, [2] = {7966, 4}, @@ -2317,13 +1677,7 @@ GetSpellInfoAtlasLootDB = { }, [46630] = { ["name"] = "Blacksmithing: Steel Plate Pauldrons", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83414, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 20}, [2] = {7966, 3}, @@ -2333,13 +1687,7 @@ GetSpellInfoAtlasLootDB = { }, [46631] = { ["name"] = "Blacksmithing: Steel Plate Barbute", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83415, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 10}, [2] = {6037, 8}, @@ -2351,13 +1699,8 @@ GetSpellInfoAtlasLootDB = { }, [13028] = { ["name"] = "Cooking: Goldthorn Tea", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 10841, ["craftQuantityMin"] = 4, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3821}, [2] = {159}, @@ -2365,26 +1708,14 @@ GetSpellInfoAtlasLootDB = { }, [7828] = { ["name"] = "Cooking: Rockscale Cod", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 4594, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6362}, }, }, [4094] = { ["name"] = "Cooking: Barbecued Buzzard Wing", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 4457, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3404}, [2] = {2692}, @@ -2392,13 +1723,7 @@ GetSpellInfoAtlasLootDB = { }, [15863] = { ["name"] = "Cooking: Carrion Surprise", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12213, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12037}, [2] = {2692}, @@ -2406,13 +1731,7 @@ GetSpellInfoAtlasLootDB = { }, [7213] = { ["name"] = "Cooking: Giant Clam Scorcho", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6038, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4655}, [2] = {2692}, @@ -2420,13 +1739,7 @@ GetSpellInfoAtlasLootDB = { }, [15856] = { ["name"] = "Cooking: Hot Wolf Ribs", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13851, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12203}, [2] = {2692}, @@ -2434,13 +1747,8 @@ GetSpellInfoAtlasLootDB = { }, [15861] = { ["name"] = "Cooking: Jungle Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12212, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12202}, [2] = {159}, @@ -2449,26 +1757,14 @@ GetSpellInfoAtlasLootDB = { }, [20916] = { ["name"] = "Cooking: Mithril Headed Trout", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 8364, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8365}, }, }, [15865] = { ["name"] = "Cooking: Mystery Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12214, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12037}, [2] = {2596}, @@ -2476,13 +1772,7 @@ GetSpellInfoAtlasLootDB = { }, [15855] = { ["name"] = "Cooking: Roast Raptor", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12210, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12184}, [2] = {2692}, @@ -2490,13 +1780,7 @@ GetSpellInfoAtlasLootDB = { }, [25954] = { ["name"] = "Cooking: Sagefish Delight", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 21217, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {21153}, [2] = {2692}, @@ -2504,13 +1788,7 @@ GetSpellInfoAtlasLootDB = { }, [3400] = { ["name"] = "Cooking: Soothing Turtle Bisque", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3729, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3712}, [2] = {3713}, @@ -2518,13 +1796,7 @@ GetSpellInfoAtlasLootDB = { }, [15906] = { ["name"] = "Cooking: Dragonbreath Chili", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12217, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12037}, [2] = {4402}, @@ -2533,13 +1805,7 @@ GetSpellInfoAtlasLootDB = { }, [45627] = { ["name"] = "Cooking: Gilneas Hot Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 84041, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12203}, [2] = {12205}, @@ -2548,13 +1814,8 @@ GetSpellInfoAtlasLootDB = { }, [15910] = { ["name"] = "Cooking: Heavy Kodo Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12215, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12204, 2}, [2] = {3713}, @@ -2563,26 +1824,14 @@ GetSpellInfoAtlasLootDB = { }, [21175] = { ["name"] = "Cooking: Spider Sausage", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 17222, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12205, 2}, }, }, [18239] = { ["name"] = "Cooking: Cooked Glossy Mightfish", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13927, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13754}, [2] = {3713}, @@ -2590,26 +1839,14 @@ GetSpellInfoAtlasLootDB = { }, [18241] = { ["name"] = "Cooking: Filet of Redgill", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13930, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13758}, }, }, [15933] = { ["name"] = "Cooking: Monster Omelet", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12218, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12207}, [2] = {3713, 2}, @@ -2617,13 +1854,7 @@ GetSpellInfoAtlasLootDB = { }, [15915] = { ["name"] = "Cooking: Spiced Chili Crab", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12216, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12206}, [2] = {2692, 2}, @@ -2631,26 +1862,14 @@ GetSpellInfoAtlasLootDB = { }, [18238] = { ["name"] = "Cooking: Spotted Yellowtail", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6887, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4603}, }, }, [22480] = { ["name"] = "Cooking: Tender Wolf Steak", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 18045, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12208}, [2] = {3713}, @@ -2658,13 +1877,8 @@ GetSpellInfoAtlasLootDB = { }, [20626] = { ["name"] = "Cooking: Undermine Clam Chowder", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 16766, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7974, 2}, [2] = {2692}, @@ -2673,13 +1887,7 @@ GetSpellInfoAtlasLootDB = { }, [18240] = { ["name"] = "Cooking: Grilled Squid", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13928, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13755}, [2] = {3713}, @@ -2687,13 +1895,7 @@ GetSpellInfoAtlasLootDB = { }, [18242] = { ["name"] = "Cooking: Hot Smoked Bass", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13929, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13756}, [2] = {2692, 2}, @@ -2701,13 +1903,7 @@ GetSpellInfoAtlasLootDB = { }, [18243] = { ["name"] = "Cooking: Nightfin Soup", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13931, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13759}, [2] = {159}, @@ -2715,26 +1911,14 @@ GetSpellInfoAtlasLootDB = { }, [18244] = { ["name"] = "Cooking: Poached Sunscale Salmon", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13932, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13760}, }, }, [18247] = { ["name"] = "Cooking: Baked Salmon", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13935, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13889}, [2] = {3713}, @@ -2742,13 +1926,7 @@ GetSpellInfoAtlasLootDB = { }, [18245] = { ["name"] = "Cooking: Lobster Stew", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13933, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13888}, [2] = {159}, @@ -2756,13 +1934,7 @@ GetSpellInfoAtlasLootDB = { }, [18246] = { ["name"] = "Cooking: Mightfish Steak", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13934, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13893}, [2] = {2692}, @@ -2771,13 +1943,7 @@ GetSpellInfoAtlasLootDB = { }, [22761] = { ["name"] = "Cooking: Runn Tum Tuber Surprise", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 18254, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {18255}, [2] = {3713}, @@ -2785,13 +1951,7 @@ GetSpellInfoAtlasLootDB = { }, [24801] = { ["name"] = "Cooking: Smoked Desert Dumplings", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 20452, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {20424}, [2] = {3713}, @@ -2799,13 +1959,8 @@ GetSpellInfoAtlasLootDB = { }, [25659] = { ["name"] = "Cooking: Dirge's Kickin' Chimaerok Chops", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 21023, ["craftQuantityMin"] = 5, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2692}, [2] = {9061}, @@ -2813,45 +1968,27 @@ GetSpellInfoAtlasLootDB = { [4] = {21024}, }, }, - [57031] = { + [57047] = { ["name"] = "Cooking: Danonzo's Tel'Abim Surprise", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 60976, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {60955}, [2] = {3713}, [3] = {10286}, }, }, - [57032] = { + [57051] = { ["name"] = "Cooking: Danonzo's Tel'abim Medley", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 60978, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {60955}, [2] = {3713}, [3] = {13464, 2}, }, }, - [57033] = { + [57049] = { ["name"] = "Cooking: Danonzo's Tel'abim Delight", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 60977, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {60955}, [2] = {3713}, @@ -2860,13 +1997,7 @@ GetSpellInfoAtlasLootDB = { }, [46085] = { ["name"] = "Cooking: Gurubashi Gumbo", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 53015, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3667}, [2] = {12202}, @@ -2878,13 +2009,7 @@ GetSpellInfoAtlasLootDB = { }, [45625] = { ["name"] = "Cooking: Le Fishe Au Chocolat", - ["requires"] = AL["Cooking Fire"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 84040, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13889}, [2] = {3713}, @@ -2894,13 +2019,7 @@ GetSpellInfoAtlasLootDB = { }, [7630] = { ["name"] = "Tailoring: Blue Linen Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6240, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2320}, @@ -2909,13 +2028,7 @@ GetSpellInfoAtlasLootDB = { }, [7629] = { ["name"] = "Tailoring: Red Linen Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6239, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2320}, @@ -2924,13 +2037,7 @@ GetSpellInfoAtlasLootDB = { }, [3841] = { ["name"] = "Tailoring: Green Linen Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4308, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2320, 2}, @@ -2939,13 +2046,7 @@ GetSpellInfoAtlasLootDB = { }, [2397] = { ["name"] = "Tailoring: Reinforced Linen Cape", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2580, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 2}, [2] = {2320, 3}, @@ -2953,13 +2054,7 @@ GetSpellInfoAtlasLootDB = { }, [2386] = { ["name"] = "Tailoring: Linen Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2569, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2320}, @@ -2968,13 +2063,7 @@ GetSpellInfoAtlasLootDB = { }, [2395] = { ["name"] = "Tailoring: Barbaric Linen Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2578, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 4}, [2] = {2318}, @@ -2983,13 +2072,7 @@ GetSpellInfoAtlasLootDB = { }, [7633] = { ["name"] = "Tailoring: Blue Linen Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6242, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 4}, [2] = {2320, 2}, @@ -2998,13 +2081,7 @@ GetSpellInfoAtlasLootDB = { }, [3842] = { ["name"] = "Tailoring: Handstitched Linen Britches", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4309, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 4}, [2] = {2321, 2}, @@ -3012,13 +2089,7 @@ GetSpellInfoAtlasLootDB = { }, [2396] = { ["name"] = "Tailoring: Green Linen Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2579, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2321}, @@ -3027,13 +2098,7 @@ GetSpellInfoAtlasLootDB = { }, [6686] = { ["name"] = "Tailoring: Red Linen Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 5762, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 4}, [2] = {2321}, @@ -3042,26 +2107,14 @@ GetSpellInfoAtlasLootDB = { }, [2964] = { ["name"] = "Tailoring: Bolt of Woolen Cloth", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2997, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2592, 3}, }, }, [12046] = { ["name"] = "Tailoring: Simple Kilt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 10047, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 4}, [2] = {2321}, @@ -3069,13 +2122,7 @@ GetSpellInfoAtlasLootDB = { }, [2402] = { ["name"] = "Tailoring: Woolen Cape", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2584, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997}, [2] = {2321}, @@ -3083,13 +2130,7 @@ GetSpellInfoAtlasLootDB = { }, [45066] = { ["name"] = "Tailoring: Gloves of Manathirst", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 51256, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2321, 2}, @@ -3098,13 +2139,7 @@ GetSpellInfoAtlasLootDB = { }, [3845] = { ["name"] = "Tailoring: Soft-soled Linen Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4312, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 5}, [2] = {2318, 2}, @@ -3113,13 +2148,7 @@ GetSpellInfoAtlasLootDB = { }, [3757] = { ["name"] = "Tailoring: Woolen Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4240, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 3}, [2] = {2321}, @@ -3127,13 +2156,7 @@ GetSpellInfoAtlasLootDB = { }, [3843] = { ["name"] = "Tailoring: Heavy Woolen Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4310, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 3}, [2] = {2321}, @@ -3141,13 +2164,7 @@ GetSpellInfoAtlasLootDB = { }, [2399] = { ["name"] = "Tailoring: Green Woolen Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2582, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 2}, [2] = {2321, 2}, @@ -3156,13 +2173,7 @@ GetSpellInfoAtlasLootDB = { }, [6521] = { ["name"] = "Tailoring: Pearl-clasped Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 5542, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 3}, [2] = {2321, 2}, @@ -3171,13 +2182,7 @@ GetSpellInfoAtlasLootDB = { }, [3847] = { ["name"] = "Tailoring: Red Woolen Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4313, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 3}, [2] = {2318, 2}, @@ -3187,13 +2192,7 @@ GetSpellInfoAtlasLootDB = { }, [2401] = { ["name"] = "Tailoring: Woolen Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2583, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {2321, 2}, @@ -3202,13 +2201,7 @@ GetSpellInfoAtlasLootDB = { }, [3758] = { ["name"] = "Tailoring: Green Woolen Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4241, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {2605}, @@ -3217,13 +2210,7 @@ GetSpellInfoAtlasLootDB = { }, [2406] = { ["name"] = "Tailoring: Gray Woolen Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2587, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 2}, [2] = {2321}, @@ -3232,13 +2219,7 @@ GetSpellInfoAtlasLootDB = { }, [7639] = { ["name"] = "Tailoring: Blue Overalls", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 6263, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {2321, 2}, @@ -3247,13 +2228,7 @@ GetSpellInfoAtlasLootDB = { }, [3844] = { ["name"] = "Tailoring: Heavy Woolen Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4311, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 3}, [2] = {2321, 2}, @@ -3262,13 +2237,7 @@ GetSpellInfoAtlasLootDB = { }, [2403] = { ["name"] = "Tailoring: Gray Woolen Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2585, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {2321, 3}, @@ -3277,13 +2246,7 @@ GetSpellInfoAtlasLootDB = { }, [3850] = { ["name"] = "Tailoring: Heavy Woolen Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4316, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 5}, [2] = {2321, 4}, @@ -3291,13 +2254,7 @@ GetSpellInfoAtlasLootDB = { }, [3848] = { ["name"] = "Tailoring: Double-stitched Woolen Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4314, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 3}, [2] = {2321, 2}, @@ -3305,13 +2262,7 @@ GetSpellInfoAtlasLootDB = { }, [3866] = { ["name"] = "Tailoring: Stylish Red Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4330, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 3}, [2] = {2604, 2}, @@ -3320,13 +2271,7 @@ GetSpellInfoAtlasLootDB = { }, [8467] = { ["name"] = "Tailoring: White Woolen Dress", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6787, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 3}, [2] = {2324, 4}, @@ -3335,13 +2280,7 @@ GetSpellInfoAtlasLootDB = { }, [7643] = { ["name"] = "Tailoring: Greater Adept's Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6264, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 5}, [2] = {2321, 3}, @@ -3350,13 +2289,7 @@ GetSpellInfoAtlasLootDB = { }, [6688] = { ["name"] = "Tailoring: Red Woolen Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 5763, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {2604}, @@ -3365,13 +2298,7 @@ GetSpellInfoAtlasLootDB = { }, [12047] = { ["name"] = "Tailoring: Colorful Kilt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 10048, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 5}, [2] = {2604, 3}, @@ -3380,13 +2307,7 @@ GetSpellInfoAtlasLootDB = { }, [3849] = { ["name"] = "Tailoring: Reinforced Woolen Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4315, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 6}, [2] = {2319, 2}, @@ -3395,13 +2316,7 @@ GetSpellInfoAtlasLootDB = { }, [7892] = { ["name"] = "Tailoring: Stylish Blue Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6384, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {6260, 2}, @@ -3411,13 +2326,7 @@ GetSpellInfoAtlasLootDB = { }, [7893] = { ["name"] = "Tailoring: Stylish Green Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6385, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {2605, 2}, @@ -3427,26 +2336,14 @@ GetSpellInfoAtlasLootDB = { }, [3839] = { ["name"] = "Tailoring: Bolt of Silk Cloth", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4305, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4306, 4}, }, }, [3855] = { ["name"] = "Tailoring: Spidersilk Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4320, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 2}, [2] = {2319, 4}, @@ -3456,14 +2353,8 @@ GetSpellInfoAtlasLootDB = { }, [3868] = { ["name"] = "Tailoring: Phoenix Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, ["icon"] = "Interface\\Icons\\inv_gauntlets_19", - ["text"] = "", ["craftItem"] = 4331, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {5500}, @@ -3473,13 +2364,7 @@ GetSpellInfoAtlasLootDB = { }, [3851] = { ["name"] = "Tailoring: Phoenix Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4317, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 6}, [2] = {5500}, @@ -3488,13 +2373,7 @@ GetSpellInfoAtlasLootDB = { }, [3852] = { ["name"] = "Tailoring: Gloves of Meditation", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4318, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2997, 4}, [2] = {2321, 3}, @@ -3503,13 +2382,7 @@ GetSpellInfoAtlasLootDB = { }, [3869] = { ["name"] = "Tailoring: Bright Yellow Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4332, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305}, [2] = {4341}, @@ -3518,13 +2391,7 @@ GetSpellInfoAtlasLootDB = { }, [6690] = { ["name"] = "Tailoring: Lesser Wizard's Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 5766, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 2}, [2] = {2321, 2}, @@ -3533,13 +2400,7 @@ GetSpellInfoAtlasLootDB = { }, [8758] = { ["name"] = "Tailoring: Azure Silk Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7046, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {6260, 2}, @@ -3548,13 +2409,7 @@ GetSpellInfoAtlasLootDB = { }, [3856] = { ["name"] = "Tailoring: Spider Silk Slippers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4321, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {3182}, @@ -3563,13 +2418,7 @@ GetSpellInfoAtlasLootDB = { }, [8778] = { ["name"] = "Tailoring: Boots of Darkness", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7027, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {2319, 2}, @@ -3579,13 +2428,7 @@ GetSpellInfoAtlasLootDB = { }, [8760] = { ["name"] = "Tailoring: Azure Silk Hood", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7048, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {3182}, @@ -3594,13 +2437,7 @@ GetSpellInfoAtlasLootDB = { }, [3854] = { ["name"] = "Tailoring: Azure Silk Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4319, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {4234, 2}, @@ -3610,13 +2447,7 @@ GetSpellInfoAtlasLootDB = { }, [8780] = { ["name"] = "Tailoring: Hands of Darkness", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7047, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {4234, 2}, @@ -3626,13 +2457,7 @@ GetSpellInfoAtlasLootDB = { }, [3859] = { ["name"] = "Tailoring: Azure Silk Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4324, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {6260, 4}, @@ -3640,13 +2465,7 @@ GetSpellInfoAtlasLootDB = { }, [6692] = { ["name"] = "Tailoring: Robes of Arcana", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 5770, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {2321, 2}, @@ -3655,13 +2474,7 @@ GetSpellInfoAtlasLootDB = { }, [8782] = { ["name"] = "Tailoring: Truefaith Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7049, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {4234, 2}, @@ -3671,13 +2484,7 @@ GetSpellInfoAtlasLootDB = { }, [3813] = { ["name"] = "Tailoring: Small Silk Pack", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4245, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {4234, 2}, @@ -3686,13 +2493,7 @@ GetSpellInfoAtlasLootDB = { }, [3870] = { ["name"] = "Tailoring: Dark Silk Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4333, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 2}, [2] = {4340, 2}, @@ -3701,13 +2502,7 @@ GetSpellInfoAtlasLootDB = { }, [8762] = { ["name"] = "Tailoring: Silk Headband", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7050, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {2321, 2}, @@ -3715,13 +2510,7 @@ GetSpellInfoAtlasLootDB = { }, [8483] = { ["name"] = "Tailoring: White Swashbuckler's Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6795, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {2324, 2}, @@ -3730,13 +2519,7 @@ GetSpellInfoAtlasLootDB = { }, [3857] = { ["name"] = "Tailoring: Enchanter's Cowl", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4322, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {2321, 2}, @@ -3745,13 +2528,7 @@ GetSpellInfoAtlasLootDB = { }, [8784] = { ["name"] = "Tailoring: Green Silk Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7065, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {2605, 2}, @@ -3760,13 +2537,7 @@ GetSpellInfoAtlasLootDB = { }, [3871] = { ["name"] = "Tailoring: Formal White Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4334, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {2324, 2}, @@ -3775,13 +2546,7 @@ GetSpellInfoAtlasLootDB = { }, [8764] = { ["name"] = "Tailoring: Earthen Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7051, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {7067}, @@ -3790,13 +2555,7 @@ GetSpellInfoAtlasLootDB = { }, [3858] = { ["name"] = "Tailoring: Shadow Hood", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4323, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {4291}, @@ -3805,26 +2564,14 @@ GetSpellInfoAtlasLootDB = { }, [3865] = { ["name"] = "Tailoring: Bolt of Mageweave", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4339, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4338, 5}, }, }, [8489] = { ["name"] = "Tailoring: Red Swashbuckler's Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6796, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {2604, 2}, @@ -3833,13 +2580,7 @@ GetSpellInfoAtlasLootDB = { }, [8766] = { ["name"] = "Tailoring: Azure Silk Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7052, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {7070}, @@ -3850,13 +2591,7 @@ GetSpellInfoAtlasLootDB = { }, [8786] = { ["name"] = "Tailoring: Azure Silk Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7053, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 3}, [2] = {6260, 2}, @@ -3865,13 +2600,7 @@ GetSpellInfoAtlasLootDB = { }, [3860] = { ["name"] = "Tailoring: Boots of the Enchanter", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4325, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {4291}, @@ -3880,13 +2609,7 @@ GetSpellInfoAtlasLootDB = { }, [8772] = { ["name"] = "Tailoring: Crimson Silk Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7055, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {7071}, @@ -3896,13 +2619,7 @@ GetSpellInfoAtlasLootDB = { }, [6693] = { ["name"] = "Tailoring: Green Silk Pack", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 5764, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {4234, 3}, @@ -3912,13 +2629,7 @@ GetSpellInfoAtlasLootDB = { }, [8789] = { ["name"] = "Tailoring: Crimson Silk Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7056, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {2604, 2}, @@ -3928,13 +2639,7 @@ GetSpellInfoAtlasLootDB = { }, [8774] = { ["name"] = "Tailoring: Green Silken Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7057, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {4291, 2}, @@ -3942,13 +2647,7 @@ GetSpellInfoAtlasLootDB = { }, [3863] = { ["name"] = "Tailoring: Spider Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4328, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {4337, 2}, @@ -3957,13 +2656,7 @@ GetSpellInfoAtlasLootDB = { }, [3872] = { ["name"] = "Tailoring: Rich Purple Silk Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4335, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {4342}, @@ -3972,13 +2665,7 @@ GetSpellInfoAtlasLootDB = { }, [8791] = { ["name"] = "Tailoring: Crimson Silk Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7058, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {2604, 2}, @@ -3987,13 +2674,7 @@ GetSpellInfoAtlasLootDB = { }, [3861] = { ["name"] = "Tailoring: Long Silken Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4326, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {3827}, @@ -4002,13 +2683,7 @@ GetSpellInfoAtlasLootDB = { }, [6695] = { ["name"] = "Tailoring: Black Silk Pack", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 5765, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {2325}, @@ -4017,13 +2692,7 @@ GetSpellInfoAtlasLootDB = { }, [21945] = { ["name"] = "Tailoring: Green Holiday Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 17723, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {2605, 4}, @@ -4032,13 +2701,7 @@ GetSpellInfoAtlasLootDB = { }, [8770] = { ["name"] = "Tailoring: Robe of Power", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7054, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 2}, [2] = {7067, 2}, @@ -4050,13 +2713,7 @@ GetSpellInfoAtlasLootDB = { }, [8795] = { ["name"] = "Tailoring: Azure Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7060, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 6}, [2] = {7072, 2}, @@ -4066,13 +2723,7 @@ GetSpellInfoAtlasLootDB = { }, [8793] = { ["name"] = "Tailoring: Crimson Silk Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7059, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {6271, 2}, @@ -4082,13 +2733,7 @@ GetSpellInfoAtlasLootDB = { }, [8799] = { ["name"] = "Tailoring: Crimson Silk Pantaloons", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7062, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 4}, [2] = {2604, 2}, @@ -4097,13 +2742,7 @@ GetSpellInfoAtlasLootDB = { }, [8797] = { ["name"] = "Tailoring: Earthen Silk Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7061, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {7067, 4}, @@ -4114,13 +2753,7 @@ GetSpellInfoAtlasLootDB = { }, [3873] = { ["name"] = "Tailoring: Black Swashbuckler's Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4336, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 5}, [2] = {2325}, @@ -4129,13 +2762,7 @@ GetSpellInfoAtlasLootDB = { }, [3862] = { ["name"] = "Tailoring: Icy Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4327, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {4291, 2}, @@ -4143,15 +2770,9 @@ GetSpellInfoAtlasLootDB = { [4] = {4337, 2}, }, }, - [69420] = { + [46644] = { ["name"] = "Tailoring: Augerer's Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83288, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 2}, [2] = {8343}, @@ -4160,15 +2781,9 @@ GetSpellInfoAtlasLootDB = { [5] = {4234, 3}, }, }, - [69421] = { + [46643] = { ["name"] = "Tailoring: Augerer's Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83289, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343, 2}, @@ -4177,15 +2792,9 @@ GetSpellInfoAtlasLootDB = { [5] = {9036}, }, }, - [69422] = { + [46642] = { ["name"] = "Tailoring: Augerer's Mantle", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83290, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343}, @@ -4194,15 +2803,9 @@ GetSpellInfoAtlasLootDB = { [5] = {6149, 2}, }, }, - [69423] = { + [46641] = { ["name"] = "Tailoring: Augerer's Trousers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83291, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {8343}, @@ -4211,15 +2814,9 @@ GetSpellInfoAtlasLootDB = { [5] = {3827, 2}, }, }, - [69424] = { + [46639] = { ["name"] = "Tailoring: Augerer's Hat", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83286, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343}, @@ -4228,15 +2825,9 @@ GetSpellInfoAtlasLootDB = { [5] = {3827, 2}, }, }, - [69425] = { + [46640] = { ["name"] = "Tailoring: Augerer's Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83287, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 6}, [2] = {8343}, @@ -4246,15 +2837,9 @@ GetSpellInfoAtlasLootDB = { [6] = {20746}, }, }, - [69426] = { + [46636] = { ["name"] = "Tailoring: Diviner's Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83283, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343, 3}, @@ -4262,15 +2847,9 @@ GetSpellInfoAtlasLootDB = { [4] = {4304, 2}, }, }, - [69427] = { + [46637] = { ["name"] = "Tailoring: Diviner's Mitts", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83284, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343, 2}, @@ -4278,15 +2857,9 @@ GetSpellInfoAtlasLootDB = { [4] = {6048}, }, }, - [69428] = { + [46638] = { ["name"] = "Tailoring: Diviner's Epaulets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83285, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 6}, [2] = {8343, 2}, @@ -4295,15 +2868,9 @@ GetSpellInfoAtlasLootDB = { [5] = {2324}, }, }, - [69429] = { + [46633] = { ["name"] = "Tailoring: Diviner's Pantaloons", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83280, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {8343, 2}, @@ -4311,15 +2878,9 @@ GetSpellInfoAtlasLootDB = { [4] = {2324}, }, }, - [69430] = { + [46635] = { ["name"] = "Tailoring: Diviner's Cowl", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83282, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {8343}, @@ -4327,15 +2888,9 @@ GetSpellInfoAtlasLootDB = { [4] = {2324}, }, }, - [69431] = { + [46634] = { ["name"] = "Tailoring: Diviner's Robes", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83281, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 10}, [2] = {8343, 4}, @@ -4345,15 +2900,9 @@ GetSpellInfoAtlasLootDB = { [6] = {5500}, }, }, - [69432] = { + [46649] = { ["name"] = "Tailoring: Pillager's Shoes", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83296, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 2}, [2] = {8170, 2}, @@ -4361,30 +2910,18 @@ GetSpellInfoAtlasLootDB = { [4] = {6371}, }, }, - [69433] = { + [46648] = { ["name"] = "Tailoring: Pillager's Grips", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83295, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 2}, [2] = {7077, 4}, [3] = {14341}, }, }, - [69434] = { + [46646] = { ["name"] = "Tailoring: Pillager's Amice", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83293, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {7068}, @@ -4392,15 +2929,9 @@ GetSpellInfoAtlasLootDB = { [4] = {4625}, }, }, - [69435] = { + [46650] = { ["name"] = "Tailoring: Pillager's Pantaloons", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83297, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {7077, 4}, @@ -4408,30 +2939,18 @@ GetSpellInfoAtlasLootDB = { [4] = {4625}, }, }, - [69436] = { + [46645] = { ["name"] = "Tailoring: Pillager's Hood", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83292, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {7068, 2}, [3] = {14341}, }, }, - [69437] = { + [46647] = { ["name"] = "Tailoring: Pillager's Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 83294, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 8}, [2] = {7068, 3}, @@ -4443,13 +2962,7 @@ GetSpellInfoAtlasLootDB = { }, [3864] = { ["name"] = "Tailoring: Star Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4329, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {4234, 4}, @@ -4460,13 +2973,7 @@ GetSpellInfoAtlasLootDB = { }, [12049] = { ["name"] = "Tailoring: Black Mageweave Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 9999, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 2}, [2] = {4291, 3}, @@ -4474,13 +2981,7 @@ GetSpellInfoAtlasLootDB = { }, [12048] = { ["name"] = "Tailoring: Black Mageweave Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 9998, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 2}, [2] = {4291, 3}, @@ -4488,13 +2989,7 @@ GetSpellInfoAtlasLootDB = { }, [8802] = { ["name"] = "Tailoring: Crimson Silk Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7063, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 8}, [2] = {7068, 4}, @@ -4505,13 +3000,7 @@ GetSpellInfoAtlasLootDB = { }, [12050] = { ["name"] = "Tailoring: Black Mageweave Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10001, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343}, @@ -4519,13 +3008,7 @@ GetSpellInfoAtlasLootDB = { }, [8804] = { ["name"] = "Tailoring: Crimson Silk Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7064, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4305, 6}, [2] = {7068, 2}, @@ -4537,13 +3020,7 @@ GetSpellInfoAtlasLootDB = { }, [12052] = { ["name"] = "Tailoring: Shadoweave Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10002, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {10285, 2}, @@ -4552,13 +3029,7 @@ GetSpellInfoAtlasLootDB = { }, [12059] = { ["name"] = "Tailoring: White Bandit Mask", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10008, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339}, [2] = {2324}, @@ -4567,13 +3038,7 @@ GetSpellInfoAtlasLootDB = { }, [12061] = { ["name"] = "Tailoring: Orange Mageweave Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10056, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339}, [2] = {6261}, @@ -4582,13 +3047,7 @@ GetSpellInfoAtlasLootDB = { }, [12053] = { ["name"] = "Tailoring: Black Mageweave Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10003, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 2}, [2] = {8343, 2}, @@ -4596,13 +3055,7 @@ GetSpellInfoAtlasLootDB = { }, [12060] = { ["name"] = "Tailoring: Red Mageweave Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10009, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {2604, 2}, @@ -4611,13 +3064,7 @@ GetSpellInfoAtlasLootDB = { }, [12056] = { ["name"] = "Tailoring: Red Mageweave Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10007, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {2604, 2}, @@ -4626,13 +3073,7 @@ GetSpellInfoAtlasLootDB = { }, [12055] = { ["name"] = "Tailoring: Shadoweave Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10004, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {10285, 2}, @@ -4641,13 +3082,7 @@ GetSpellInfoAtlasLootDB = { }, [12064] = { ["name"] = "Tailoring: Orange Martial Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10052, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 2}, [2] = {6261, 2}, @@ -4656,13 +3091,7 @@ GetSpellInfoAtlasLootDB = { }, [12067] = { ["name"] = "Tailoring: Dreamweave Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10019, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {8153, 4}, @@ -4672,13 +3101,7 @@ GetSpellInfoAtlasLootDB = { }, [12070] = { ["name"] = "Tailoring: Dreamweave Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10021, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 6}, [2] = {8153, 6}, @@ -4688,13 +3111,7 @@ GetSpellInfoAtlasLootDB = { }, [12069] = { ["name"] = "Tailoring: Cindercloth Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10042, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 5}, [2] = {7077, 2}, @@ -4703,13 +3120,7 @@ GetSpellInfoAtlasLootDB = { }, [27658] = { ["name"] = "Tailoring: Enchanted Mageweave Pouch", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 22246, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {11137, 4}, @@ -4718,13 +3129,7 @@ GetSpellInfoAtlasLootDB = { }, [12066] = { ["name"] = "Tailoring: Red Mageweave Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10018, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {2604, 2}, @@ -4733,13 +3138,7 @@ GetSpellInfoAtlasLootDB = { }, [12071] = { ["name"] = "Tailoring: Shadoweave Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10023, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 5}, [2] = {10285, 5}, @@ -4748,13 +3147,7 @@ GetSpellInfoAtlasLootDB = { }, [12065] = { ["name"] = "Tailoring: Mageweave Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10050, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {4291, 2}, @@ -4762,13 +3155,7 @@ GetSpellInfoAtlasLootDB = { }, [12075] = { ["name"] = "Tailoring: Lavender Mageweave Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10054, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 2}, [2] = {4342, 2}, @@ -4777,13 +3164,7 @@ GetSpellInfoAtlasLootDB = { }, [12073] = { ["name"] = "Tailoring: Black Mageweave Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10026, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343, 2}, @@ -4792,13 +3173,7 @@ GetSpellInfoAtlasLootDB = { }, [12072] = { ["name"] = "Tailoring: Black Mageweave Headband", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10024, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343, 2}, @@ -4806,13 +3181,7 @@ GetSpellInfoAtlasLootDB = { }, [12074] = { ["name"] = "Tailoring: Black Mageweave Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10027, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {8343, 2}, @@ -4820,13 +3189,7 @@ GetSpellInfoAtlasLootDB = { }, [12080] = { ["name"] = "Tailoring: Pink Mageweave Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10055, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {10290}, @@ -4835,13 +3198,7 @@ GetSpellInfoAtlasLootDB = { }, [12077] = { ["name"] = "Tailoring: Simple Black Dress", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10053, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {2325}, @@ -4851,13 +3208,7 @@ GetSpellInfoAtlasLootDB = { }, [12078] = { ["name"] = "Tailoring: Red Mageweave Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10029, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {2604}, @@ -4866,13 +3217,7 @@ GetSpellInfoAtlasLootDB = { }, [12076] = { ["name"] = "Tailoring: Shadoweave Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10028, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 5}, [2] = {10285, 4}, @@ -4881,13 +3226,7 @@ GetSpellInfoAtlasLootDB = { }, [12079] = { ["name"] = "Tailoring: Red Mageweave Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10051, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {2604, 2}, @@ -4896,13 +3235,7 @@ GetSpellInfoAtlasLootDB = { }, [12085] = { ["name"] = "Tailoring: Tuxedo Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10034, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {2604, 2}, @@ -4911,13 +3244,7 @@ GetSpellInfoAtlasLootDB = { }, [12081] = { ["name"] = "Tailoring: Admiral's Hat", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10030, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 3}, [2] = {4589, 6}, @@ -4926,13 +3253,7 @@ GetSpellInfoAtlasLootDB = { }, [12084] = { ["name"] = "Tailoring: Red Mageweave Headband", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10033, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {2604, 2}, @@ -4941,13 +3262,7 @@ GetSpellInfoAtlasLootDB = { }, [12082] = { ["name"] = "Tailoring: Shadoweave Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10031, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 6}, [2] = {10285, 6}, @@ -4957,13 +3272,7 @@ GetSpellInfoAtlasLootDB = { }, [12089] = { ["name"] = "Tailoring: Tuxedo Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10035, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {8343, 3}, @@ -4971,13 +3280,7 @@ GetSpellInfoAtlasLootDB = { }, [12088] = { ["name"] = "Tailoring: Cindercloth Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10044, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 5}, [2] = {7077}, @@ -4987,13 +3290,7 @@ GetSpellInfoAtlasLootDB = { }, [12086] = { ["name"] = "Tailoring: Shadoweave Mask", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10025, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 2}, [2] = {10285, 8}, @@ -5002,26 +3299,14 @@ GetSpellInfoAtlasLootDB = { }, [18401] = { ["name"] = "Tailoring: Bolt of Runecloth", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 14048, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14047, 5}, }, }, [12091] = { ["name"] = "Tailoring: White Wedding Dress", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10040, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 5}, [2] = {8343, 3}, @@ -5030,13 +3315,7 @@ GetSpellInfoAtlasLootDB = { }, [12092] = { ["name"] = "Tailoring: Dreamweave Circlet", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 10041, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 8}, [2] = {8153, 4}, @@ -5048,13 +3327,7 @@ GetSpellInfoAtlasLootDB = { }, [26403] = { ["name"] = "Tailoring: Festival Dress", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 21154, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {4625, 2}, @@ -5064,13 +3337,7 @@ GetSpellInfoAtlasLootDB = { }, [26407] = { ["name"] = "Tailoring: Festive Red Pant Suit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 21542, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {4625, 2}, @@ -5080,13 +3347,7 @@ GetSpellInfoAtlasLootDB = { }, [12093] = { ["name"] = "Tailoring: Tuxedo Jacket", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10036, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 5}, [2] = {8343, 3}, @@ -5094,26 +3355,14 @@ GetSpellInfoAtlasLootDB = { }, [18560] = { ["name"] = "Tailoring: Mooncloth", - ["requires"] = AL["Moonwell"], - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "The purification of tainted Felcloth into Mooncloth can only be done at a moonwell, and only ocassionally will the waters permit themselves to be used in such a way.", ["craftItem"] = 14342, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14256, 2}, }, }, [18404] = { ["name"] = "Tailoring: Frostweave Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13868, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {7079, 2}, @@ -5122,13 +3371,7 @@ GetSpellInfoAtlasLootDB = { }, [18403] = { ["name"] = "Tailoring: Frostweave Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13869, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {7079, 2}, @@ -5137,13 +3380,7 @@ GetSpellInfoAtlasLootDB = { }, [18402] = { ["name"] = "Tailoring: Runecloth Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13856, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 3}, [2] = {14341}, @@ -5151,13 +3388,7 @@ GetSpellInfoAtlasLootDB = { }, [18408] = { ["name"] = "Tailoring: Cindercloth Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14042, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {7077, 3}, @@ -5166,13 +3397,7 @@ GetSpellInfoAtlasLootDB = { }, [18406] = { ["name"] = "Tailoring: Runecloth Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13858, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {14227}, @@ -5181,13 +3406,7 @@ GetSpellInfoAtlasLootDB = { }, [18407] = { ["name"] = "Tailoring: Runecloth Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13857, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {14227}, @@ -5196,13 +3415,7 @@ GetSpellInfoAtlasLootDB = { }, [26085] = { ["name"] = "Tailoring: Soul Pouch", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 21340, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {8170, 4}, @@ -5212,13 +3425,7 @@ GetSpellInfoAtlasLootDB = { }, [18405] = { ["name"] = "Tailoring: Runecloth Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14046, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {8170, 2}, @@ -5227,13 +3434,7 @@ GetSpellInfoAtlasLootDB = { }, [18411] = { ["name"] = "Tailoring: Frostweave Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13870, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 3}, [2] = {7080}, @@ -5242,13 +3443,7 @@ GetSpellInfoAtlasLootDB = { }, [18410] = { ["name"] = "Tailoring: Ghostweave Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14143, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 3}, [2] = {9210, 2}, @@ -5258,13 +3453,7 @@ GetSpellInfoAtlasLootDB = { }, [18409] = { ["name"] = "Tailoring: Runecloth Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13860, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {14227}, @@ -5273,13 +3462,7 @@ GetSpellInfoAtlasLootDB = { }, [18415] = { ["name"] = "Tailoring: Brightcloth Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14101, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {3577, 2}, @@ -5288,13 +3471,7 @@ GetSpellInfoAtlasLootDB = { }, [18414] = { ["name"] = "Tailoring: Brightcloth Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14100, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {3577, 2}, @@ -5303,13 +3480,7 @@ GetSpellInfoAtlasLootDB = { }, [18412] = { ["name"] = "Tailoring: Cindercloth Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14043, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {7077, 3}, @@ -5318,13 +3489,7 @@ GetSpellInfoAtlasLootDB = { }, [18413] = { ["name"] = "Tailoring: Ghostweave Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14142, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {9210, 2}, @@ -5334,13 +3499,7 @@ GetSpellInfoAtlasLootDB = { }, [22813] = { ["name"] = "Tailoring: Gordok Ogre Suit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18258, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 2}, [2] = {8170, 4}, @@ -5350,13 +3509,7 @@ GetSpellInfoAtlasLootDB = { }, [18422] = { ["name"] = "Tailoring: Cloak of Fire", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14134, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {7078, 4}, @@ -5367,13 +3520,7 @@ GetSpellInfoAtlasLootDB = { }, [18420] = { ["name"] = "Tailoring: Brightcloth Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14103, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {3577, 2}, @@ -5382,13 +3529,7 @@ GetSpellInfoAtlasLootDB = { }, [27724] = { ["name"] = "Tailoring: Cenarion Herb Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22251, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {8831, 10}, @@ -5398,13 +3539,7 @@ GetSpellInfoAtlasLootDB = { }, [18418] = { ["name"] = "Tailoring: Cindercloth Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14044, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {7078}, @@ -5413,13 +3548,7 @@ GetSpellInfoAtlasLootDB = { }, [27659] = { ["name"] = "Tailoring: Enchanted Runecloth Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22248, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {16203, 2}, @@ -5428,13 +3557,7 @@ GetSpellInfoAtlasLootDB = { }, [18419] = { ["name"] = "Tailoring: Felcloth Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14107, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {14256, 4}, @@ -5443,13 +3566,7 @@ GetSpellInfoAtlasLootDB = { }, [18416] = { ["name"] = "Tailoring: Ghostweave Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14141, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {9210, 4}, @@ -5459,13 +3576,7 @@ GetSpellInfoAtlasLootDB = { }, [18417] = { ["name"] = "Tailoring: Runecloth Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13863, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {8170, 4}, @@ -5474,13 +3585,7 @@ GetSpellInfoAtlasLootDB = { }, [18421] = { ["name"] = "Tailoring: Wizardweave Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14132, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {11176}, @@ -5489,13 +3594,7 @@ GetSpellInfoAtlasLootDB = { }, [18434] = { ["name"] = "Tailoring: Cindercloth Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14045, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {7078}, @@ -5504,13 +3603,7 @@ GetSpellInfoAtlasLootDB = { }, [18424] = { ["name"] = "Tailoring: Frostweave Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13871, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {7080}, @@ -5519,13 +3612,7 @@ GetSpellInfoAtlasLootDB = { }, [18423] = { ["name"] = "Tailoring: Runecloth Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13864, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {14227, 2}, @@ -5535,13 +3622,7 @@ GetSpellInfoAtlasLootDB = { }, [26086] = { ["name"] = "Tailoring: Felcloth Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 21341, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14256, 12}, [2] = {12810, 6}, @@ -5551,13 +3632,7 @@ GetSpellInfoAtlasLootDB = { }, [18436] = { ["name"] = "Tailoring: Robe of Winter Night", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14136, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 10}, [2] = {14256, 12}, @@ -5568,13 +3643,7 @@ GetSpellInfoAtlasLootDB = { }, [18437] = { ["name"] = "Tailoring: Felcloth Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14108, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {14256, 4}, @@ -5584,13 +3653,7 @@ GetSpellInfoAtlasLootDB = { }, [18438] = { ["name"] = "Tailoring: Runecloth Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13865, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {14227, 2}, @@ -5599,13 +3662,7 @@ GetSpellInfoAtlasLootDB = { }, [19435] = { ["name"] = "Tailoring: Mooncloth Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15802, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {14342, 4}, @@ -5615,13 +3672,7 @@ GetSpellInfoAtlasLootDB = { }, [23664] = { ["name"] = "Tailoring: Argent Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19056, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {12810, 4}, @@ -5632,13 +3683,7 @@ GetSpellInfoAtlasLootDB = { }, [18440] = { ["name"] = "Tailoring: Mooncloth Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14137, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {14342, 4}, @@ -5647,13 +3692,7 @@ GetSpellInfoAtlasLootDB = { }, [23662] = { ["name"] = "Tailoring: Wisdom of the Timbermaw", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19047, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 8}, [2] = {7076, 3}, @@ -5663,13 +3702,7 @@ GetSpellInfoAtlasLootDB = { }, [18439] = { ["name"] = "Tailoring: Brightcloth Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14104, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {2577, 4}, @@ -5679,13 +3712,7 @@ GetSpellInfoAtlasLootDB = { }, [18442] = { ["name"] = "Tailoring: Felcloth Hood", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14111, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {14256, 4}, @@ -5694,13 +3721,7 @@ GetSpellInfoAtlasLootDB = { }, [18441] = { ["name"] = "Tailoring: Ghostweave Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14144, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {9210, 4}, @@ -5709,13 +3730,7 @@ GetSpellInfoAtlasLootDB = { }, [18444] = { ["name"] = "Tailoring: Runecloth Headband", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13866, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {14227, 2}, @@ -5724,13 +3739,7 @@ GetSpellInfoAtlasLootDB = { }, [22866] = { ["name"] = "Tailoring: Belt of the Archmage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18405, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 16}, [2] = {9210, 10}, @@ -5743,13 +3752,7 @@ GetSpellInfoAtlasLootDB = { }, [26087] = { ["name"] = "Tailoring: Core Felcloth Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 21342, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14256, 20}, [2] = {17012, 16}, @@ -5758,15 +3761,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14227, 4}, }, }, - [20849] = { + [20849] = { ["name"] = "Tailoring: Flarecore Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16979, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 4}, [2] = {17010, 6}, @@ -5775,15 +3772,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14341, 2}, }, }, - [23667] = { + [23667] = { ["name"] = "Tailoring: Flarecore Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19165, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 8}, [2] = {17010, 5}, @@ -5792,15 +3783,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14227, 4}, }, }, - [20848] = { + [20848] = { ["name"] = "Tailoring: Flarecore Mantle", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16980, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 6}, [2] = {17010, 4}, @@ -5809,15 +3794,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14341, 2}, }, }, - [23666] = { + [23666] = { ["name"] = "Tailoring: Flarecore Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19156, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 10}, [2] = {17010, 2}, @@ -5826,15 +3805,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14227, 4}, }, }, - [28208] = { + [28208] = { ["name"] = "Tailoring: Glacial Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22658, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 5}, [2] = {14048, 4}, @@ -5842,15 +3815,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 4}, }, }, - [28205] = { + [28205] = { ["name"] = "Tailoring: Glacial Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22654, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 5}, [2] = {14048, 4}, @@ -5858,15 +3825,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 4}, }, }, - [28207] = { + [28207] = { ["name"] = "Tailoring: Glacial Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22652, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 7}, [2] = {14048, 8}, @@ -5874,15 +3835,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 8}, }, }, - [28209] = { + [28209] = { ["name"] = "Tailoring: Glacial Wrists", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22655, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 4}, [2] = {14048, 2}, @@ -5890,15 +3845,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 4}, }, }, - [18454] = { + [18454] = { ["name"] = "Tailoring: Gloves of Spell Mastery", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14146, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 10}, [2] = {14342, 10}, @@ -5909,15 +3858,9 @@ GetSpellInfoAtlasLootDB = { [7] = {14341, 2}, }, }, - [18457] = { + [18457] = { ["name"] = "Tailoring: Robe of the Archmage", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14152, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 12}, [2] = {7078, 10}, @@ -5927,15 +3870,9 @@ GetSpellInfoAtlasLootDB = { [6] = {14341, 2}, }, }, - [18458] = { + [18458] = { ["name"] = "Tailoring: Robe of the Void", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14153, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 12}, [2] = {12662, 20}, @@ -5947,13 +3884,7 @@ GetSpellInfoAtlasLootDB = { }, [18456] = { ["name"] = "Tailoring: Truefaith Vestments", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14154, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 12}, [2] = {14342, 10}, @@ -5965,32 +3896,20 @@ GetSpellInfoAtlasLootDB = { }, [46656] = { ["name"] = "Tailoring: Robe of Sacrifice", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65003, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 12}, [2] = {14256, 20}, [3] = {12662, 20}, [4] = {10285, 8}, [5] = {7971, 4}, - [6] = {14341, 1}, + [6] = {14341}, [7] = {20520, 10}, }, }, [54011] = { ["name"] = "Tailoring: Flarecore Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65035, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 6}, [2] = {17010, 5}, @@ -6001,13 +3920,7 @@ GetSpellInfoAtlasLootDB = { }, [45485] = { ["name"] = "Tailoring: Gloves of Unwinding Mystery", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61186, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 14}, [2] = {9210, 10}, @@ -6018,13 +3931,7 @@ GetSpellInfoAtlasLootDB = { }, [45459] = { ["name"] = "Tailoring: Dreamthread Kilt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61361, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61230, 14}, [2] = {14342, 4}, @@ -6036,13 +3943,7 @@ GetSpellInfoAtlasLootDB = { }, [45461] = { ["name"] = "Tailoring: Dreamthread Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61362, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61230, 8}, [2] = {14342, 2}, @@ -6052,13 +3953,7 @@ GetSpellInfoAtlasLootDB = { }, [45463] = { ["name"] = "Tailoring: Dreamthread Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61363, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61230, 8}, [2] = {14342, 4}, @@ -6069,13 +3964,7 @@ GetSpellInfoAtlasLootDB = { }, [45457] = { ["name"] = "Tailoring: Dreamthread Mantle", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61360, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61230, 20}, [2] = {14342, 6}, @@ -6087,28 +3976,16 @@ GetSpellInfoAtlasLootDB = { }, [23665] = { ["name"] = "Tailoring: Argent Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19059, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 5}, [2] = {12809, 2}, [3] = {14227, 2}, }, }, - [24093] = { + [24093] = { ["name"] = "Tailoring: Bloodvine Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19684, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 3}, [2] = {19726, 3}, @@ -6117,15 +3994,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14227, 4}, }, }, - [24092] = { + [24092] = { ["name"] = "Tailoring: Bloodvine Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19683, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 4}, [2] = {19726, 4}, @@ -6134,15 +4005,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14227, 2}, }, }, - [24091] = { + [24091] = { ["name"] = "Tailoring: Bloodvine Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19682, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 3}, [2] = {19726, 5}, @@ -6151,15 +4016,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14227, 2}, }, }, - [18455] = { + [18455] = { ["name"] = "Tailoring: Bottomless Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14156, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 8}, [2] = {14342, 12}, @@ -6168,15 +4027,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14341, 2}, }, }, - [22870] = { + [22870] = { ["name"] = "Tailoring: Cloak of Warding", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18413, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 12}, [2] = {12809, 4}, @@ -6184,15 +4037,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14341, 2}, }, }, - [22867] = { + [22867] = { ["name"] = "Tailoring: Felcloth Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18407, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 12}, [2] = {14256, 20}, @@ -6201,15 +4048,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14341, 2}, }, }, - [28210] = { + [28210] = { ["name"] = "Tailoring: Gaea's Embrace", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22660, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19726}, [2] = {14342, 2}, @@ -6217,15 +4058,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 4}, }, }, - [22868] = { + [22868] = { ["name"] = "Tailoring: Inferno Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18408, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 12}, [2] = {7078, 10}, @@ -6235,13 +4070,7 @@ GetSpellInfoAtlasLootDB = { }, [57024] = { ["name"] = "Tailoring: Windbinder Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60907, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 10}, [2] = {14344, 2}, @@ -6251,13 +4080,7 @@ GetSpellInfoAtlasLootDB = { }, [57020] = { ["name"] = "Tailoring: Dustguider Sash", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60909, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 10}, [2] = {12810, 6}, @@ -6265,15 +4088,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14344}, }, }, - [23663] = { + [23663] = { ["name"] = "Tailoring: Mantle of the Timbermaw", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19050, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 5}, [2] = {7076, 5}, @@ -6281,15 +4098,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 2}, }, }, - [18452] = { + [18452] = { ["name"] = "Tailoring: Mooncloth Circlet", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14140, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {14342, 6}, @@ -6298,15 +4109,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14341, 2}, }, }, - [22869] = { + [22869] = { ["name"] = "Tailoring: Mooncloth Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18409, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 12}, [2] = {14342, 6}, @@ -6314,15 +4119,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14341, 2}, }, }, - [22902] = { + [22902] = { ["name"] = "Tailoring: Mooncloth Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18486, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {14342, 4}, @@ -6330,45 +4129,27 @@ GetSpellInfoAtlasLootDB = { [4] = {14341, 2}, }, }, - [18448] = { + [18448] = { ["name"] = "Tailoring: Mooncloth Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14139, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 5}, [2] = {14342, 5}, [3] = {14341}, }, }, - [18447] = { + [18447] = { ["name"] = "Tailoring: Mooncloth Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14138, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {14342, 4}, [3] = {14341}, }, }, - [24902] = { + [24902] = { ["name"] = "Tailoring: Runed Stygian Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20539, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 2}, [2] = {20520, 6}, @@ -6377,15 +4158,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14227, 2}, }, }, - [24903] = { + [24903] = { ["name"] = "Tailoring: Runed Stygian Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20537, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {20520, 6}, @@ -6394,15 +4169,9 @@ GetSpellInfoAtlasLootDB = { [5] = {14227, 2}, }, }, - [24901] = { + [24901] = { ["name"] = "Tailoring: Runed Stygian Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20538, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {20520, 8}, @@ -6410,15 +4179,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 2}, }, }, - [28481] = { + [28481] = { ["name"] = "Tailoring: Sylvan Crown", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22757, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {14342, 2}, @@ -6426,30 +4189,18 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 2}, }, }, - [28482] = { + [28482] = { ["name"] = "Tailoring: Sylvan Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22758, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 2}, [2] = {12803, 4}, [3] = {14227, 2}, }, }, - [28480] = { + [28480] = { ["name"] = "Tailoring: Sylvan Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22756, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {19726, 2}, @@ -6457,15 +4208,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 2}, }, }, - [55518] = { + [57601] = { ["name"] = "Tailoring: Cosmic Headdress", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 55518, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 5}, [2] = {14342, 2}, @@ -6473,15 +4218,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 3}, }, }, - [55519] = { + [57603] = { ["name"] = "Tailoring: Cosmic Mantle", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 55519, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 4}, [2] = {14342, 2}, @@ -6489,15 +4228,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 4}, }, }, - [55520] = { + [57605] = { ["name"] = "Tailoring: Cosmic Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 55520, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 7}, [2] = {14342, 3}, @@ -6505,15 +4238,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 2}, }, }, - [55521] = { + [57607] = { ["name"] = "Tailoring: Cosmic Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 55521, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 7}, [2] = {14342, 3}, @@ -6521,32 +4248,20 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 2}, }, }, - [55534] = { + [57633] = { ["name"] = "Tailoring: Ley-Kissed Drape", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 55534, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 4}, [2] = {14342, 2}, [3] = {14048, 6}, [4] = {14227, 4}, - [5] = {13926, 1}, + [5] = {13926}, }, }, - [27660] = { + [27660] = { ["name"] = "Tailoring: Big Bag of Enchantment", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22249, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {14344, 4}, @@ -6554,15 +4269,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 4}, }, }, - [18451] = { + [18451] = { ["name"] = "Tailoring: Felcloth Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14106, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 8}, [2] = {14256, 8}, @@ -6570,15 +4279,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14341, 2}, }, }, - [18453] = { + [18453] = { ["name"] = "Tailoring: Felcloth Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14112, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 7}, [2] = {14256, 6}, @@ -6587,30 +4290,18 @@ GetSpellInfoAtlasLootDB = { [5] = {14341, 2}, }, }, - [18445] = { + [18445] = { ["name"] = "Tailoring: Mooncloth Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14155, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 4}, [2] = {14342}, [3] = {14341}, }, }, - [18449] = { + [18449] = { ["name"] = "Tailoring: Runecloth Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 13867, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 7}, [2] = {14227, 2}, @@ -6618,15 +4309,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14341}, }, }, - [27725] = { + [27725] = { ["name"] = "Tailoring: Satchel of Cenarius", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22252, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {14342, 2}, @@ -6634,30 +4319,18 @@ GetSpellInfoAtlasLootDB = { [4] = {14227, 4}, }, }, - [18446] = { + [18446] = { ["name"] = "Tailoring: Wizardweave Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14128, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 8}, [2] = {11176, 2}, [3] = {14341}, }, }, - [18450] = { + [18450] = { ["name"] = "Tailoring: Wizardweave Turban", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 14130, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14048, 6}, [2] = {11176, 4}, @@ -6665,15 +4338,9 @@ GetSpellInfoAtlasLootDB = { [4] = {14341}, }, }, - [22759] = { + [22759] = { ["name"] = "Tailoring: Flarecore Wraps", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18263, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14342, 6}, [2] = {17010, 8}, @@ -6684,26 +4351,14 @@ GetSpellInfoAtlasLootDB = { }, [2963] = { ["name"] = "Tailoring: Bolt of Linen Cloth", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2996, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2589, 2}, }, }, [3915] = { ["name"] = "Tailoring: Brown Linen Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4344, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996}, [2] = {2320}, @@ -6711,13 +4366,7 @@ GetSpellInfoAtlasLootDB = { }, [2387] = { ["name"] = "Tailoring: Linen Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2570, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996}, [2] = {2320}, @@ -6725,13 +4374,7 @@ GetSpellInfoAtlasLootDB = { }, [12044] = { ["name"] = "Tailoring: Simple Linen Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 10045, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996}, [2] = {2320}, @@ -6739,13 +4382,7 @@ GetSpellInfoAtlasLootDB = { }, [2393] = { ["name"] = "Tailoring: White Linen Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2576, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996}, [2] = {2320}, @@ -6754,13 +4391,7 @@ GetSpellInfoAtlasLootDB = { }, [2385] = { ["name"] = "Tailoring: Brown Linen Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2568, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996}, [2] = {2320}, @@ -6768,13 +4399,7 @@ GetSpellInfoAtlasLootDB = { }, [8776] = { ["name"] = "Tailoring: Linen Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7026, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996}, [2] = {2320}, @@ -6782,13 +4407,7 @@ GetSpellInfoAtlasLootDB = { }, [12045] = { ["name"] = "Tailoring: Simple Linen Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 10046, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 2}, [2] = {2318}, @@ -6797,13 +4416,7 @@ GetSpellInfoAtlasLootDB = { }, [7623] = { ["name"] = "Tailoring: Brown Linen Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 6238, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2320}, @@ -6811,13 +4424,7 @@ GetSpellInfoAtlasLootDB = { }, [7624] = { ["name"] = "Tailoring: White Linen Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 6241, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2320}, @@ -6826,13 +4433,7 @@ GetSpellInfoAtlasLootDB = { }, [3914] = { ["name"] = "Tailoring: Brown Linen Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4343, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 2}, [2] = {2320}, @@ -6840,13 +4441,7 @@ GetSpellInfoAtlasLootDB = { }, [3840] = { ["name"] = "Tailoring: Heavy Linen Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4307, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 2}, [2] = {2320}, @@ -6854,13 +4449,7 @@ GetSpellInfoAtlasLootDB = { }, [2389] = { ["name"] = "Tailoring: Red Linen Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2572, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 2}, [2] = {2320, 2}, @@ -6869,13 +4458,7 @@ GetSpellInfoAtlasLootDB = { }, [2394] = { ["name"] = "Tailoring: Blue Linen Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2577, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 2}, [2] = {2320}, @@ -6884,13 +4467,7 @@ GetSpellInfoAtlasLootDB = { }, [2392] = { ["name"] = "Tailoring: Red Linen Shirt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2575, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 2}, [2] = {2320}, @@ -6899,13 +4476,7 @@ GetSpellInfoAtlasLootDB = { }, [8465] = { ["name"] = "Tailoring: Simple Dress", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 6786, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 2}, [2] = {2320}, @@ -6915,13 +4486,7 @@ GetSpellInfoAtlasLootDB = { }, [3755] = { ["name"] = "Tailoring: Linen Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4238, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2996, 3}, [2] = {2320, 3}, @@ -6929,39 +4494,23 @@ GetSpellInfoAtlasLootDB = { }, [57557] = { ["name"] = "Transmute: Elemental Water", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 43, - ["text"] = "Transmutes a Globe of Water into three Elemental Water.", ["craftItem"] = 7070, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7079}, }, }, [57555] = { ["name"] = "Transmute: Elemental Earth", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 43, - ["text"] = "Transmutes a Core of Earth into three Elemental Earth.", ["craftItem"] = 7067, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7075}, }, }, [2329] = { ["name"] = "Alchemy: Elixir of Lion's Strength", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2454, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2449}, [2] = {765}, @@ -6970,13 +4519,7 @@ GetSpellInfoAtlasLootDB = { }, [7183] = { ["name"] = "Alchemy: Elixir of Minor Defense", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5997, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {765, 2}, [2] = {3371}, @@ -6984,13 +4527,7 @@ GetSpellInfoAtlasLootDB = { }, [2330] = { ["name"] = "Alchemy: Minor Healing Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 118, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2447}, [2] = {765}, @@ -6999,13 +4536,7 @@ GetSpellInfoAtlasLootDB = { }, [3170] = { ["name"] = "Alchemy: Weak Troll's Blood Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3382, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2447}, [2] = {2449, 2}, @@ -7014,13 +4545,7 @@ GetSpellInfoAtlasLootDB = { }, [2331] = { ["name"] = "Alchemy: Minor Mana Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2455, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {785}, [2] = {765}, @@ -7029,13 +4554,7 @@ GetSpellInfoAtlasLootDB = { }, [2332] = { ["name"] = "Alchemy: Minor Rejuvenation Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2456, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {785, 2}, [2] = {2447}, @@ -7044,13 +4563,7 @@ GetSpellInfoAtlasLootDB = { }, [4508] = { ["name"] = "Alchemy: Discolored Healing Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 4596, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3164}, [2] = {2447}, @@ -7059,13 +4572,7 @@ GetSpellInfoAtlasLootDB = { }, [3230] = { ["name"] = "Alchemy: Elixir of Minor Agility", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "With Swiftthistle for speed and crushed Silverleaf for enhancement, a potion to enchance one's natural agility is brewed.", ["craftItem"] = 2457, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2452}, [2] = {765}, @@ -7074,13 +4581,7 @@ GetSpellInfoAtlasLootDB = { }, [2334] = { ["name"] = "Alchemy: Elixir of Minor Fortitude", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2458, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2449, 2}, [2] = {2447}, @@ -7089,13 +4590,7 @@ GetSpellInfoAtlasLootDB = { }, [2337] = { ["name"] = "Alchemy: Lesser Healing Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 858, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {118}, [2] = {2450}, @@ -7103,13 +4598,7 @@ GetSpellInfoAtlasLootDB = { }, [6617] = { ["name"] = "Alchemy: Rage Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5631, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5635}, [2] = {2450}, @@ -7118,13 +4607,7 @@ GetSpellInfoAtlasLootDB = { }, [2335] = { ["name"] = "Alchemy: Swiftness Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 2459, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2452}, [2] = {2450}, @@ -7133,13 +4616,7 @@ GetSpellInfoAtlasLootDB = { }, [7836] = { ["name"] = "Alchemy: Blackmouth Oil", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5, - ["text"] = "", ["craftItem"] = 6370, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6358, 2}, [2] = {3371}, @@ -7147,13 +4624,7 @@ GetSpellInfoAtlasLootDB = { }, [8240] = { ["name"] = "Alchemy: Elixir of Giant Growth", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6662, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6522}, [2] = {2449}, @@ -7162,13 +4633,7 @@ GetSpellInfoAtlasLootDB = { }, [7179] = { ["name"] = "Alchemy: Elixir of Water Breathing", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5996, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3820}, [2] = {6370, 2}, @@ -7177,13 +4642,7 @@ GetSpellInfoAtlasLootDB = { }, [3171] = { ["name"] = "Alchemy: Elixir of Wisdom", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3383, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {785}, [2] = {2450, 2}, @@ -7192,13 +4651,7 @@ GetSpellInfoAtlasLootDB = { }, [7255] = { ["name"] = "Alchemy: Holy Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6051, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2453}, [2] = {2452}, @@ -7207,13 +4660,7 @@ GetSpellInfoAtlasLootDB = { }, [7841] = { ["name"] = "Alchemy: Swim Speed Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6372, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2452}, [2] = {6370}, @@ -7222,13 +4669,7 @@ GetSpellInfoAtlasLootDB = { }, [3447] = { ["name"] = "Alchemy: Healing Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 929, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2453}, [2] = {2450}, @@ -7237,13 +4678,7 @@ GetSpellInfoAtlasLootDB = { }, [3172] = { ["name"] = "Alchemy: Minor Magic Resistance Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3384, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {785, 3}, [2] = {3355}, @@ -7252,13 +4687,7 @@ GetSpellInfoAtlasLootDB = { }, [3173] = { ["name"] = "Alchemy: Lesser Mana Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3385, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {785}, [2] = {3820}, @@ -7267,13 +4696,7 @@ GetSpellInfoAtlasLootDB = { }, [3174] = { ["name"] = "Alchemy: Elixir of Poison Resistance", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3386, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1288}, [2] = {2453}, @@ -7282,13 +4705,7 @@ GetSpellInfoAtlasLootDB = { }, [3176] = { ["name"] = "Alchemy: Strong Troll's Blood Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3388, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2453, 2}, [2] = {2450, 2}, @@ -7297,13 +4714,7 @@ GetSpellInfoAtlasLootDB = { }, [7837] = { ["name"] = "Alchemy: Fire Oil", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5, - ["text"] = "", ["craftItem"] = 6371, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6359, 2}, [2] = {3371}, @@ -7311,13 +4722,7 @@ GetSpellInfoAtlasLootDB = { }, [3177] = { ["name"] = "Alchemy: Elixir of Defense", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3389, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3355}, [2] = {3820}, @@ -7326,13 +4731,7 @@ GetSpellInfoAtlasLootDB = { }, [7256] = { ["name"] = "Alchemy: Shadow Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6048, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3369}, [2] = {3356}, @@ -7341,13 +4740,7 @@ GetSpellInfoAtlasLootDB = { }, [7845] = { ["name"] = "Alchemy: Elixir of Firepower", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6373, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6371, 2}, [2] = {3356}, @@ -7356,13 +4749,7 @@ GetSpellInfoAtlasLootDB = { }, [2333] = { ["name"] = "Alchemy: Elixir of Lesser Agility", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3390, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3355}, [2] = {2452}, @@ -7371,13 +4758,7 @@ GetSpellInfoAtlasLootDB = { }, [3188] = { ["name"] = "Alchemy: Elixir of Ogre's Strength", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3391, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2449}, [2] = {3356}, @@ -7386,13 +4767,7 @@ GetSpellInfoAtlasLootDB = { }, [6624] = { ["name"] = "Alchemy: Free Action Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5634, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6370, 2}, [2] = {3820}, @@ -7401,13 +4776,7 @@ GetSpellInfoAtlasLootDB = { }, [7181] = { ["name"] = "Alchemy: Greater Healing Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 1710, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3357}, [2] = {3356}, @@ -7416,13 +4785,7 @@ GetSpellInfoAtlasLootDB = { }, [3452] = { ["name"] = "Alchemy: Mana Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3827, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3820}, [2] = {3356}, @@ -7431,13 +4794,7 @@ GetSpellInfoAtlasLootDB = { }, [3448] = { ["name"] = "Alchemy: Lesser Invisibility Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3823, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3818}, [2] = {3355}, @@ -7446,13 +4803,7 @@ GetSpellInfoAtlasLootDB = { }, [3449] = { ["name"] = "Alchemy: Shadow Oil", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3824, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3818, 4}, [2] = {3369, 2}, @@ -7461,13 +4812,7 @@ GetSpellInfoAtlasLootDB = { }, [7257] = { ["name"] = "Alchemy: Fire Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6049, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4402}, [2] = {6371}, @@ -7476,13 +4821,7 @@ GetSpellInfoAtlasLootDB = { }, [3450] = { ["name"] = "Alchemy: Elixir of Fortitude", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3825, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3355}, [2] = {3821}, @@ -7491,13 +4830,7 @@ GetSpellInfoAtlasLootDB = { }, [6618] = { ["name"] = "Alchemy: Great Rage Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 5633, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5637}, [2] = {3356}, @@ -7506,13 +4839,7 @@ GetSpellInfoAtlasLootDB = { }, [3451] = { ["name"] = "Alchemy: Mighty Troll's Blood Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3826, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3357}, [2] = {2453}, @@ -7521,13 +4848,7 @@ GetSpellInfoAtlasLootDB = { }, [11449] = { ["name"] = "Alchemy: Elixir of Agility", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 8949, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3820}, [2] = {3821}, @@ -7536,13 +4857,7 @@ GetSpellInfoAtlasLootDB = { }, [7258] = { ["name"] = "Alchemy: Frost Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6050, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3819}, [2] = {3821}, @@ -7551,13 +4866,7 @@ GetSpellInfoAtlasLootDB = { }, [21923] = { ["name"] = "Alchemy: Elixir of Frost Power", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 17708, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3819, 2}, [2] = {3358}, @@ -7566,13 +4875,7 @@ GetSpellInfoAtlasLootDB = { }, [7259] = { ["name"] = "Alchemy: Nature Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6052, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3357}, [2] = {3820}, @@ -7581,13 +4884,7 @@ GetSpellInfoAtlasLootDB = { }, [3453] = { ["name"] = "Alchemy: Elixir of Detect Lesser Invisibility", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3828, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3358}, [2] = {3818}, @@ -7596,13 +4893,7 @@ GetSpellInfoAtlasLootDB = { }, [11450] = { ["name"] = "Alchemy: Elixir of Greater Defense", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 8951, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3355}, [2] = {3821}, @@ -7611,13 +4902,7 @@ GetSpellInfoAtlasLootDB = { }, [12609] = { ["name"] = "Alchemy: Catseye Elixir", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 10592, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3821}, [2] = {3818}, @@ -7626,13 +4911,7 @@ GetSpellInfoAtlasLootDB = { }, [3454] = { ["name"] = "Alchemy: Frost Oil", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5, - ["text"] = "", ["craftItem"] = 3829, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3358, 4}, [2] = {3819, 2}, @@ -7641,13 +4920,7 @@ GetSpellInfoAtlasLootDB = { }, [11459] = { ["name"] = "Alchemy: Philosopher's Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 30, - ["text"] = "", ["craftItem"] = 9149, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 4}, [2] = {9262}, @@ -7657,13 +4930,7 @@ GetSpellInfoAtlasLootDB = { }, [11448] = { ["name"] = "Alchemy: Greater Mana Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 6149, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3358}, [2] = {3821}, @@ -7672,13 +4939,7 @@ GetSpellInfoAtlasLootDB = { }, [11451] = { ["name"] = "Alchemy: Oil of Immolation", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 8956, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4625}, [2] = {3821}, @@ -7687,13 +4948,7 @@ GetSpellInfoAtlasLootDB = { }, [11456] = { ["name"] = "Alchemy: Goblin Rocket Fuel", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9061, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4625}, [2] = {9260}, @@ -7702,13 +4957,7 @@ GetSpellInfoAtlasLootDB = { }, [11453] = { ["name"] = "Alchemy: Magic Resistance Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9036, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3358}, [2] = {8831}, @@ -7717,13 +4966,7 @@ GetSpellInfoAtlasLootDB = { }, [11452] = { ["name"] = "Alchemy: Restorative Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9030, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7067}, [2] = {3821}, @@ -7732,13 +4975,7 @@ GetSpellInfoAtlasLootDB = { }, [22808] = { ["name"] = "Alchemy: Elixir of Greater Water Breathing", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 18294, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7972}, [2] = {8831, 2}, @@ -7747,13 +4984,7 @@ GetSpellInfoAtlasLootDB = { }, [4942] = { ["name"] = "Alchemy: Lesser Stoneshield Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 4623, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3858}, [2] = {3821}, @@ -7762,13 +4993,7 @@ GetSpellInfoAtlasLootDB = { }, [11457] = { ["name"] = "Alchemy: Superior Healing Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3928, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8838}, [2] = {3358}, @@ -7777,39 +5002,21 @@ GetSpellInfoAtlasLootDB = { }, [11479] = { ["name"] = "Alchemy: Transmute: Iron to Gold", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Turns a bar of Iron into a bar of Gold.", ["craftItem"] = 3577, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575}, }, }, [11480] = { ["name"] = "Alchemy: Transmute: Mithril to Truesilver", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Turns a bar of Mithril into a bar of Truesilver.", ["craftItem"] = 6037, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860}, }, }, [11458] = { ["name"] = "Alchemy: Wildvine Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9144, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8153}, [2] = {8831}, @@ -7818,13 +5025,7 @@ GetSpellInfoAtlasLootDB = { }, [15833] = { ["name"] = "Alchemy: Dreamless Sleep Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 12190, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8831, 3}, [2] = {8925}, @@ -7832,13 +5033,7 @@ GetSpellInfoAtlasLootDB = { }, [11460] = { ["name"] = "Alchemy: Elixir of Detect Undead", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9154, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8836}, [2] = {8925}, @@ -7846,13 +5041,7 @@ GetSpellInfoAtlasLootDB = { }, [11461] = { ["name"] = "Alchemy: Arcane Elixir", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9155, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8839}, [2] = {3821}, @@ -7861,13 +5050,7 @@ GetSpellInfoAtlasLootDB = { }, [11465] = { ["name"] = "Alchemy: Elixir of Greater Intellect", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9179, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8839}, [2] = {3358}, @@ -7876,13 +5059,7 @@ GetSpellInfoAtlasLootDB = { }, [11464] = { ["name"] = "Alchemy: Invisibility Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9172, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8845}, [2] = {8838}, @@ -7891,13 +5068,7 @@ GetSpellInfoAtlasLootDB = { }, [11468] = { ["name"] = "Alchemy: Elixir of Dream Vision", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9197, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8831, 3}, [2] = {8925}, @@ -7905,13 +5076,7 @@ GetSpellInfoAtlasLootDB = { }, [11467] = { ["name"] = "Alchemy: Elixir of Greater Agility", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9187, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8838}, [2] = {3821}, @@ -7920,13 +5085,7 @@ GetSpellInfoAtlasLootDB = { }, [11466] = { ["name"] = "Alchemy: Gift of Arthas", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9088, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8836}, [2] = {8839}, @@ -7935,13 +5094,7 @@ GetSpellInfoAtlasLootDB = { }, [11473] = { ["name"] = "Alchemy: Ghost Dye", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9210, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8845, 2}, [2] = {4342}, @@ -7950,13 +5103,7 @@ GetSpellInfoAtlasLootDB = { }, [11472] = { ["name"] = "Alchemy: Elixir of Giants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9206, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8838}, [2] = {8846}, @@ -7965,13 +5112,7 @@ GetSpellInfoAtlasLootDB = { }, [11477] = { ["name"] = "Alchemy: Elixir of Demonslaying", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9224, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8846}, [2] = {8845}, @@ -7980,13 +5121,7 @@ GetSpellInfoAtlasLootDB = { }, [11478] = { ["name"] = "Alchemy: Elixir of Detect Demon", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9233, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8846, 2}, [2] = {8925}, @@ -7994,13 +5129,7 @@ GetSpellInfoAtlasLootDB = { }, [26277] = { ["name"] = "Alchemy: Elixir of Greater Firepower", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 21546, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6371, 3}, [2] = {4625, 3}, @@ -8009,13 +5138,7 @@ GetSpellInfoAtlasLootDB = { }, [11476] = { ["name"] = "Alchemy: Elixir of Shadow Power", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9264, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8845, 3}, [2] = {8925}, @@ -8023,13 +5146,7 @@ GetSpellInfoAtlasLootDB = { }, [17551] = { ["name"] = "Alchemy: Stonescale Oil", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13423, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13422}, [2] = {3372}, @@ -8037,13 +5154,7 @@ GetSpellInfoAtlasLootDB = { }, [3175] = { ["name"] = "Alchemy: Limited Invulnerability Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 3387, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8839, 2}, [2] = {8845}, @@ -8052,13 +5163,7 @@ GetSpellInfoAtlasLootDB = { }, [17552] = { ["name"] = "Alchemy: Mighty Rage Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13442, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8846, 3}, [2] = {8925}, @@ -8066,13 +5171,7 @@ GetSpellInfoAtlasLootDB = { }, [17553] = { ["name"] = "Alchemy: Superior Mana Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13443, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8838, 2}, [2] = {8839, 2}, @@ -8081,13 +5180,7 @@ GetSpellInfoAtlasLootDB = { }, [17554] = { ["name"] = "Alchemy: Elixir of Superior Defense", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13445, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13423, 2}, [2] = {8838}, @@ -8096,13 +5189,7 @@ GetSpellInfoAtlasLootDB = { }, [17555] = { ["name"] = "Alchemy: Elixir of the Sages", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13447, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13463}, [2] = {13466, 2}, @@ -8111,13 +5198,7 @@ GetSpellInfoAtlasLootDB = { }, [17187] = { ["name"] = "Alchemy: Transmute: Arcanite", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Turns a bar of Thorium and an Arcane Crystal into Arcanite.", ["craftItem"] = 12360, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359}, [2] = {12363}, @@ -8125,117 +5206,63 @@ GetSpellInfoAtlasLootDB = { }, [17559] = { ["name"] = "Alchemy: Transmute: Air to Fire", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Transmutes Air into Fire.", ["craftItem"] = 7078, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7082}, }, }, [17566] = { ["name"] = "Alchemy: Transmute: Earth to Life", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Transmutes Earth to Living Essence.", ["craftItem"] = 12803, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7076}, }, }, [17561] = { ["name"] = "Alchemy: Transmute: Earth to Water", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Transmutes Earth into Water.", ["craftItem"] = 7080, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7076}, }, }, [17560] = { ["name"] = "Alchemy: Transmute: Fire to Earth", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Transmutes Fire into Earth.", ["craftItem"] = 7076, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7078}, }, }, [17565] = { ["name"] = "Alchemy: Transmute: Life to Earth", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Transmutes Living Essence into Earth.", ["craftItem"] = 7076, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12803}, }, }, [17563] = { ["name"] = "Alchemy: Transmute: Undeath to Water", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Purifies Essence of Undeath turning it into Water.", ["craftItem"] = 7080, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12808}, }, }, [17562] = { ["name"] = "Alchemy: Transmute: Water to Air", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Transmutes Water into Air.", ["craftItem"] = 7082, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7080}, }, }, [17564] = { ["name"] = "Alchemy: Transmute: Water to Undeath", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Taints Essence of Water turning it into Undeath.", ["craftItem"] = 12808, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7080}, }, }, [17557] = { ["name"] = "Alchemy: Elixir of Brute Force", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13453, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8846, 2}, [2] = {13466, 2}, @@ -8244,13 +5271,7 @@ GetSpellInfoAtlasLootDB = { }, [24366] = { ["name"] = "Alchemy: Greater Dreamless Sleep Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 20002, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13463, 2}, [2] = {13464}, @@ -8259,13 +5280,7 @@ GetSpellInfoAtlasLootDB = { }, [24365] = { ["name"] = "Alchemy: Mageblood Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 20007, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13463}, [2] = {13466, 2}, @@ -8274,13 +5289,7 @@ GetSpellInfoAtlasLootDB = { }, [17556] = { ["name"] = "Alchemy: Major Healing Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13446, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13464, 2}, [2] = {13465}, @@ -8289,13 +5298,7 @@ GetSpellInfoAtlasLootDB = { }, [17571] = { ["name"] = "Alchemy: Elixir of the Mongoose", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13452, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13465, 2}, [2] = {13466, 2}, @@ -8304,13 +5307,7 @@ GetSpellInfoAtlasLootDB = { }, [17570] = { ["name"] = "Alchemy: Greater Stoneshield Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13455, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13423, 3}, [2] = {10620}, @@ -8319,13 +5316,7 @@ GetSpellInfoAtlasLootDB = { }, [17573] = { ["name"] = "Alchemy: Greater Arcane Elixir", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13454, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13463, 3}, [2] = {13465}, @@ -8334,13 +5325,7 @@ GetSpellInfoAtlasLootDB = { }, [24367] = { ["name"] = "Alchemy: Living Action Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 20008, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13467, 2}, [2] = {13465, 2}, @@ -8350,13 +5335,7 @@ GetSpellInfoAtlasLootDB = { }, [17572] = { ["name"] = "Alchemy: Purification Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13462, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13467, 2}, [2] = {13466, 2}, @@ -8365,13 +5344,7 @@ GetSpellInfoAtlasLootDB = { }, [17577] = { ["name"] = "Alchemy: Greater Arcane Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13461, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11176}, [2] = {13463}, @@ -8380,13 +5353,7 @@ GetSpellInfoAtlasLootDB = { }, [17574] = { ["name"] = "Alchemy: Greater Fire Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13457, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7068}, [2] = {4625}, @@ -8395,13 +5362,7 @@ GetSpellInfoAtlasLootDB = { }, [17575] = { ["name"] = "Alchemy: Greater Frost Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13456, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7070}, [2] = {13467}, @@ -8410,13 +5371,7 @@ GetSpellInfoAtlasLootDB = { }, [17576] = { ["name"] = "Alchemy: Greater Nature Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13458, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7067}, [2] = {13463}, @@ -8425,13 +5380,7 @@ GetSpellInfoAtlasLootDB = { }, [17578] = { ["name"] = "Alchemy: Greater Shadow Protection Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13459, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3824}, [2] = {8836, 2}, @@ -8440,13 +5389,7 @@ GetSpellInfoAtlasLootDB = { }, [24368] = { ["name"] = "Alchemy: Major Troll's Blood Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 20004, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8846}, [2] = {13466, 2}, @@ -8455,13 +5398,7 @@ GetSpellInfoAtlasLootDB = { }, [17580] = { ["name"] = "Alchemy: Major Mana Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 13444, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13463, 2}, [2] = {13467, 2}, @@ -8470,26 +5407,15 @@ GetSpellInfoAtlasLootDB = { }, [25146] = { ["name"] = "Alchemy: Transmute: Elemental Fire", - ["requires"] = "", - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "Transmutes a Heart of Fire into three Elemental Fires.", ["craftItem"] = 7068, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7077}, }, }, [22732] = { ["name"] = "Alchemy: Major Rejuvenation Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 18253, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10286}, [2] = {13464, 4}, @@ -8499,13 +5425,8 @@ GetSpellInfoAtlasLootDB = { }, [24266] = { ["name"] = "Alchemy: Gurubashi Mojo Madness", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 19931, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12938}, [2] = {19943}, @@ -8515,13 +5436,7 @@ GetSpellInfoAtlasLootDB = { }, [17638] = { ["name"] = "Alchemy: Flask of Chromatic Resistance", - ["requires"] = AL["Alchemy Lab"], - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 13513, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13467, 30}, [2] = {13465, 10}, @@ -8531,13 +5446,7 @@ GetSpellInfoAtlasLootDB = { }, [17636] = { ["name"] = "Alchemy: Flask of Distilled Wisdom", - ["requires"] = AL["Alchemy Lab"], - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 13511, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13463, 30}, [2] = {13467, 10}, @@ -8547,13 +5456,7 @@ GetSpellInfoAtlasLootDB = { }, [17634] = { ["name"] = "Alchemy: Flask of Petrification", - ["requires"] = AL["Alchemy Lab"], - ["tools"] = {9149}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 13506, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13423, 30}, [2] = {13465, 10}, @@ -8563,13 +5466,7 @@ GetSpellInfoAtlasLootDB = { }, [17637] = { ["name"] = "Alchemy: Flask of Supreme Power", - ["requires"] = AL["Alchemy Lab"], - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 13512, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {13463, 30}, [2] = {13465, 10}, @@ -8579,13 +5476,7 @@ GetSpellInfoAtlasLootDB = { }, [17635] = { ["name"] = "Alchemy: Flask of the Titans", - ["requires"] = AL["Alchemy Lab"], - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 13510, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8846, 30}, [2] = {13423, 10}, @@ -8595,13 +5486,7 @@ GetSpellInfoAtlasLootDB = { }, [57131] = { ["name"] = "Alchemy: Dreamshard Elixir", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 61224, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61198}, [2] = {11176}, @@ -8610,13 +5495,7 @@ GetSpellInfoAtlasLootDB = { }, [57129] = { ["name"] = "Alchemy: Lucidity Potion", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 61225, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {730}, [2] = {13463}, @@ -8626,13 +5505,7 @@ GetSpellInfoAtlasLootDB = { }, [45989] = { ["name"] = "Alchemy: Elixir of Greater Nature Power", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 50237, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10286, 3}, [2] = {13464}, @@ -8642,13 +5515,7 @@ GetSpellInfoAtlasLootDB = { }, [57111] = { ["name"] = "Alchemy: Potion of Quickness", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 61181, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8846}, [2] = {13465, 2}, @@ -8658,39 +5525,22 @@ GetSpellInfoAtlasLootDB = { }, [2657] = { ["name"] = "Smelting: Smelt Copper", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of copper ore into a copper bar. Smelting copper requires a forge.", ["craftItem"] = 2840, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2770}, }, }, [3304] = { ["name"] = "Smelting: Smelt Tin", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of tin ore into a tin bar. Smelting tin requires a forge.", ["craftItem"] = 3576, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2771}, }, }, [2659] = { ["name"] = "Smelting: Smelt Bronze", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a tin bar and a copper bar together into two bronze bars. Smelting bronze requires a forge.", ["craftItem"] = 2841, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840}, [2] = {3576}, @@ -8698,52 +5548,28 @@ GetSpellInfoAtlasLootDB = { }, [2658] = { ["name"] = "Smelting: Smelt Silver", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of silver ore into a silver bar. Smelting silver requires a forge.", ["craftItem"] = 2842, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2775}, }, }, [3307] = { ["name"] = "Smelting: Smelt Iron", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of iron ore into an iron bar. Smelting iron requires a forge.", ["craftItem"] = 3575, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2772}, }, }, [3308] = { ["name"] = "Smelting: Smelt Gold", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of gold ore into a gold bar. Smelting gold requires a forge.", ["craftItem"] = 3577, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2776}, }, }, [3569] = { ["name"] = "Smelting: Smelt Steel", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of iron ore and a lump of coal together into a steel bar. Smelting steel requires a forge.", ["craftItem"] = 3859, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575}, [2] = {3857}, @@ -8751,65 +5577,35 @@ GetSpellInfoAtlasLootDB = { }, [10097] = { ["name"] = "Smelting: Smelt Mithril", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of mithril ore into a mithril bar. Smelting mithril requires a forge.", ["craftItem"] = 3860, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3858}, }, }, [10098] = { ["name"] = "Smelting: Smelt Truesilver", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of truesilver ore into a truesilver bar. Smelting truesilver requires a forge.", ["craftItem"] = 6037, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7911}, }, }, [14891] = { ["name"] = "Smelting: Smelt Dark Iron", - ["requires"] = AL["Black Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt chunks of dark iron ore into a dark iron bar. Smelting dark iron can only be done at the Black Forge in Blackrock Depths.", ["craftItem"] = 11371, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11370, 8}, }, }, [16153] = { ["name"] = "Smelting: Smelt Thorium", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 3, - ["text"] = "Allows the miner to smelt a chunk of thorium ore into a thorium bar. Smelting thorium requires a forge.", ["craftItem"] = 12359, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10620}, }, }, [45451] = { ["name"] = "Smelting: Smelt Dreamsteel", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 5, - ["text"] = "Allows the miner to smelt a bright dream shard into a dreamsteel bar. Smelting dreamsteel requires a forge.", ["craftItem"] = 61216, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61198}, [2] = {3859}, @@ -8818,13 +5614,7 @@ GetSpellInfoAtlasLootDB = { }, [22967] = { ["name"] = "Smelting: Smelt Elementium", - ["requires"] = AL["Forge"], - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "Allows the miner to smelt a chunk of elementium ore, ten arcanite bars, a fiery core and three elemental fluxes into an elementium bar. Smelting elementium requires a forge.", ["craftItem"] = 17771, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {18562}, [2] = {12360, 10}, @@ -8832,303 +5622,18 @@ GetSpellInfoAtlasLootDB = { [4] = {18567, 3}, }, }, - [100000] = { - ["name"] = "Mining: Copper Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 2770, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100001] = { - ["name"] = "Mining: Incendicite Mineral Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 3340, - ["craftQuantityMin"] = 1, - ["craftQuantityMax"] = 2, - ["reagents"] = "", - }, - [100002] = { - ["name"] = "Mining: Tin Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 2771, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100003] = { - ["name"] = "Mining: Silver Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 2775, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100004] = { - ["name"] = "Mining: Ooze Covered Silver Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 2775, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100005] = { - ["name"] = "Mining: Lesser Bloodstone Deposit", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 4278, - ["craftQuantityMin"] = 1, - ["craftQuantityMax"] = 3, - ["reagents"] = "", - }, - [100006] = { - ["name"] = "Mining: Iron Deposit", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 2772, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100007] = { - ["name"] = "Mining: Indurium Mineral Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 5833, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["reagents"] = "", - }, - [100008] = { - ["name"] = "Mining: Gold Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 2776, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100009] = { - ["name"] = "Mining: Ooze Covered Gold Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 2776, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100010] = { - ["name"] = "Mining: Mithril Deposit", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 3858, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100011] = { - ["name"] = "Mining: Ooze Covered Mithril Deposit", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 3858, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100012] = { - ["name"] = "Mining: Truesilver Deposit", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 7911, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100013] = { - ["name"] = "Mining: Ooze Covered Truesilver Deposit", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 7911, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100014] = { - ["name"] = "Mining: Dark Iron Deposit", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 11370, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 4, - ["reagents"] = "", - }, - [100015] = { - ["name"] = "Mining: Small Thorium Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 10620, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 3, - ["reagents"] = "", - }, - [100016] = { - ["name"] = "Mining: Ooze Covered Thorium Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 10620, - ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = 3, - ["reagents"] = "", - }, - [100017] = { - ["name"] = "Mining: Rich Thorium Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 10620, - ["craftQuantityMin"] = 4, - ["craftQuantityMax"] = 5, - ["reagents"] = "", - }, - [100018] = { - ["name"] = "Mining: Ooze Covered Rich Thorium Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 10620, - ["craftQuantityMin"] = 4, - ["craftQuantityMax"] = 5, - ["reagents"] = "", - }, - [100019] = { - ["name"] = "Mining: Hakkari Thorium Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 10620, - ["craftQuantityMin"] = 4, - ["craftQuantityMax"] = 5, - ["reagents"] = "", - }, - [100020] = { - ["name"] = "Mining: Hakkari Thorium Vein", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 19774, - ["craftQuantityMin"] = 1, - ["craftQuantityMax"] = 2, - ["reagents"] = "", - }, - [100021] = { - ["name"] = "Mining: Small Obsidian Chunk", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 22202, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["reagents"] = "", - }, - [100022] = { - ["name"] = "Mining: Small Obsidian Chunk", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 22203, - ["craftQuantityMin"] = 0, - ["craftQuantityMax"] = 1, - ["reagents"] = "", - }, - [100023] = { - ["name"] = "Mining: Large Obsidian Chunk", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 22202, - ["craftQuantityMin"] = 1, - ["craftQuantityMax"] = 3, - ["reagents"] = "", - }, - [100024] = { - ["name"] = "Mining: Large Obsidian Chunk", - ["requires"] = "", - ["tools"] = {2901}, - ["castTime"] = 3.2, - ["text"] = "", - ["craftItem"] = 22203, - ["craftQuantityMin"] = 0, - ["craftQuantityMax"] = 1, - ["reagents"] = "", }, [3918] = { ["name"] = "Engineering: Rough Blasting Powder", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4357, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2835}, }, }, [3920] = { ["name"] = "Engineering: Crafted Light Shot", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 8067, ["craftQuantityMin"] = 200, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4357}, [2] = {2840}, @@ -9136,13 +5641,8 @@ GetSpellInfoAtlasLootDB = { }, [3919] = { ["name"] = "Engineering: Rough Dynamite", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4358, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4357, 2}, [2] = {2589}, @@ -9150,26 +5650,15 @@ GetSpellInfoAtlasLootDB = { }, [3922] = { ["name"] = "Engineering: Handful of Copper Bolts", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4359, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840}, }, }, [3923] = { ["name"] = "Engineering: Rough Copper Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4360, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840}, [2] = {4359}, @@ -9179,26 +5668,14 @@ GetSpellInfoAtlasLootDB = { }, [7430] = { ["name"] = "Engineering: Arclight Spanner", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 6219, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, }, }, [3925] = { ["name"] = "Engineering: Rough Boomstick", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4362, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4361}, [2] = {4359}, @@ -9207,13 +5684,7 @@ GetSpellInfoAtlasLootDB = { }, [3924] = { ["name"] = "Engineering: Copper Tube", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4361, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 2}, [2] = {2880}, @@ -9221,13 +5692,7 @@ GetSpellInfoAtlasLootDB = { }, [3977] = { ["name"] = "Engineering: Crude Scope", - ["requires"] = "", - ["tools"] = {6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4405, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4361}, [2] = {774}, @@ -9236,13 +5701,7 @@ GetSpellInfoAtlasLootDB = { }, [3926] = { ["name"] = "Engineering: Copper Modulator", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4363, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4359, 2}, [2] = {2840}, @@ -9251,26 +5710,15 @@ GetSpellInfoAtlasLootDB = { }, [3929] = { ["name"] = "Engineering: Coarse Blasting Powder", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4364, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2836}, }, }, [3930] = { ["name"] = "Engineering: Crafted Heavy Shot", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 8068, ["craftQuantityMin"] = 200, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4364}, [2] = {2840}, @@ -9278,10 +5726,6 @@ GetSpellInfoAtlasLootDB = { }, [3931] = { ["name"] = "Engineering: Coarse Dynamite", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4365, ["craftQuantityMin"] = 1, ["craftQuantityMax"] = 3, @@ -9292,10 +5736,6 @@ GetSpellInfoAtlasLootDB = { }, [45057] = { ["name"] = "Engineering: Unstable Mining Dynamite", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 51268, ["craftQuantityMin"] = 1, ["craftQuantityMax"] = 3, @@ -9307,13 +5747,7 @@ GetSpellInfoAtlasLootDB = { }, [3928] = { ["name"] = "Engineering: Mechanical Squirrel", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4401, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4363}, [2] = {4359}, @@ -9323,13 +5757,7 @@ GetSpellInfoAtlasLootDB = { }, [3932] = { ["name"] = "Engineering: Target Dummy", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4366, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4363}, [2] = {4359, 2}, @@ -9339,23 +5767,14 @@ GetSpellInfoAtlasLootDB = { }, [3973] = { ["name"] = "Engineering: Silver Contact", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4404, ["craftQuantityMin"] = 5, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842}, }, }, [8339] = { ["name"] = "Engineering: Ez-Thro Dynamite", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 6714, ["craftQuantityMin"] = 1, ["craftQuantityMax"] = 3, @@ -9366,13 +5785,7 @@ GetSpellInfoAtlasLootDB = { }, [8334] = { ["name"] = "Engineering: Practice Lock", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 6712, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841}, [2] = {4359, 2}, @@ -9381,13 +5794,7 @@ GetSpellInfoAtlasLootDB = { }, [3933] = { ["name"] = "Engineering: Small Seaforium Charge", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4367, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4364, 2}, [2] = {4363}, @@ -9397,13 +5804,7 @@ GetSpellInfoAtlasLootDB = { }, [3934] = { ["name"] = "Engineering: Flying Tiger Goggles", - ["requires"] = "", - ["tools"] = {6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4368, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 6}, [2] = {818, 2}, @@ -9411,13 +5812,7 @@ GetSpellInfoAtlasLootDB = { }, [3938] = { ["name"] = "Engineering: Bronze Tube", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4371, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 2}, [2] = {2880}, @@ -9425,10 +5820,6 @@ GetSpellInfoAtlasLootDB = { }, [3937] = { ["name"] = "Engineering: Large Copper Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4370, ["craftQuantityMin"] = 2, ["craftQuantityMax"] = 4, @@ -9440,13 +5831,7 @@ GetSpellInfoAtlasLootDB = { }, [3936] = { ["name"] = "Engineering: Deadly Blunderbuss", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4369, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4361, 2}, [2] = {4359, 4}, @@ -9456,13 +5841,7 @@ GetSpellInfoAtlasLootDB = { }, [3978] = { ["name"] = "Engineering: Standard Scope", - ["requires"] = "", - ["tools"] = {6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4406, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4371}, [2] = {1206}, @@ -9470,10 +5849,6 @@ GetSpellInfoAtlasLootDB = { }, [3941] = { ["name"] = "Engineering: Small Bronze Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4374, ["craftQuantityMin"] = 1, ["craftQuantityMax"] = 3, @@ -9486,13 +5861,7 @@ GetSpellInfoAtlasLootDB = { }, [3939] = { ["name"] = "Engineering: Lovingly Crafted Boomstick", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4372, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4371, 2}, [2] = {4359, 2}, @@ -9502,13 +5871,7 @@ GetSpellInfoAtlasLootDB = { }, [3940] = { ["name"] = "Engineering: Shadow Goggles", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4373, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 4}, [2] = {1210, 2}, @@ -9516,13 +5879,7 @@ GetSpellInfoAtlasLootDB = { }, [47027] = { ["name"] = "Engineering: Portable Wormhole Generator - Stormwind", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 51312, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1206}, [2] = {4375, 2}, @@ -9532,13 +5889,7 @@ GetSpellInfoAtlasLootDB = { }, [47028] = { ["name"] = "Engineering: Portable Wormhole Generator - Orgrimmar", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 51313, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {1206}, [2] = {4375, 2}, @@ -9548,13 +5899,8 @@ GetSpellInfoAtlasLootDB = { }, [3947] = { ["name"] = "Engineering: Crafted Solid Shot", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 8069, ["craftQuantityMin"] = 200, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4377}, [2] = {2841}, @@ -9562,23 +5908,13 @@ GetSpellInfoAtlasLootDB = { }, [3945] = { ["name"] = "Engineering: Heavy Blasting Powder", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4377, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2838}, }, }, [3946] = { ["name"] = "Engineering: Heavy Dynamite", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4378, ["craftQuantityMin"] = 1, ["craftQuantityMax"] = 5, @@ -9589,13 +5925,8 @@ GetSpellInfoAtlasLootDB = { }, [26416] = { ["name"] = "Engineering: Small Blue Rocket", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21558, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4364}, [2] = {2319}, @@ -9603,13 +5934,8 @@ GetSpellInfoAtlasLootDB = { }, [26417] = { ["name"] = "Engineering: Small Green Rocket", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21559, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4364}, [2] = {2319}, @@ -9617,13 +5943,8 @@ GetSpellInfoAtlasLootDB = { }, [26418] = { ["name"] = "Engineering: Small Red Rocket", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21557, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4364}, [2] = {2319}, @@ -9631,14 +5952,8 @@ GetSpellInfoAtlasLootDB = { }, [3944] = { ["name"] = "Engineering: Flame Deflector", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4376, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), ["reagents"] = { [1] = {4375}, [2] = {4402}, @@ -9646,13 +5961,7 @@ GetSpellInfoAtlasLootDB = { }, [3942] = { ["name"] = "Engineering: Whirring Bronze Gizmo", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4375, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 2}, [2] = {2592}, @@ -9660,13 +5969,7 @@ GetSpellInfoAtlasLootDB = { }, [9269] = { ["name"] = "Engineering: Gnomish Universal Remote", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7506, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {4375}, @@ -9677,13 +5980,7 @@ GetSpellInfoAtlasLootDB = { }, [3949] = { ["name"] = "Engineering: Silver-plated Shotgun", - ["requires"] = AL["Anvil"], - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4379, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4371, 2}, [2] = {4375, 2}, @@ -9693,13 +5990,7 @@ GetSpellInfoAtlasLootDB = { }, [6458] = { ["name"] = "Engineering: Ornate Spyglass", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 5507, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4371, 2}, [2] = {4375, 2}, @@ -9709,10 +6000,6 @@ GetSpellInfoAtlasLootDB = { }, [3950] = { ["name"] = "Engineering: Big Bronze Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4380, ["craftQuantityMin"] = 2, ["craftQuantityMax"] = 4, @@ -9724,14 +6011,8 @@ GetSpellInfoAtlasLootDB = { }, [3952] = { ["name"] = "Engineering: Minor Recombobulator", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4381, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cffffffff10 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 10), ["reagents"] = { [1] = {4371}, [2] = {4375, 2}, @@ -9741,13 +6022,7 @@ GetSpellInfoAtlasLootDB = { }, [3953] = { ["name"] = "Engineering: Bronze Framework", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4382, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 2}, [2] = {2319}, @@ -9756,13 +6031,7 @@ GetSpellInfoAtlasLootDB = { }, [3954] = { ["name"] = "Engineering: Moonsight Rifle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4383, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4371, 3}, [2] = {4375, 3}, @@ -9772,13 +6041,8 @@ GetSpellInfoAtlasLootDB = { }, [9271] = { ["name"] = "Engineering: Aquadynamic Fish Attractor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 6533, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 2}, [2] = {6530}, @@ -9787,13 +6051,8 @@ GetSpellInfoAtlasLootDB = { }, [23067] = { ["name"] = "Engineering: Blue Firework", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 9312, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4377}, [2] = {4234}, @@ -9801,13 +6060,8 @@ GetSpellInfoAtlasLootDB = { }, [23068] = { ["name"] = "Engineering: Green Firework", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 9313, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4377}, [2] = {4234}, @@ -9815,13 +6069,8 @@ GetSpellInfoAtlasLootDB = { }, [23066] = { ["name"] = "Engineering: Red Firework", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 9318, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4377}, [2] = {4234}, @@ -9829,26 +6078,15 @@ GetSpellInfoAtlasLootDB = { }, [12584] = { ["name"] = "Engineering: Gold Power Core", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10558, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577}, }, }, [3956] = { ["name"] = "Engineering: Green Tinted Goggles", - ["requires"] = "", - ["tools"] = {6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4385, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 4}, [2] = {1206, 2}, @@ -9857,13 +6095,7 @@ GetSpellInfoAtlasLootDB = { }, [3955] = { ["name"] = "Engineering: Explosive Sheep", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4384, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4382}, [2] = {4375}, @@ -9873,13 +6105,7 @@ GetSpellInfoAtlasLootDB = { }, [12895] = { ["name"] = "Engineering: Inlaid Mithril Cylinder Plans", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10713, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10648}, [2] = {10647}, @@ -9887,13 +6113,7 @@ GetSpellInfoAtlasLootDB = { }, [15633] = { ["name"] = "Engineering: Lil' Smoky", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 11826, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7075}, [2] = {4389, 3}, @@ -9904,13 +6124,7 @@ GetSpellInfoAtlasLootDB = { }, [12899] = { ["name"] = "Engineering: Gnomish Shrink Ray", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10716, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559}, [2] = {10560}, @@ -9921,13 +6135,7 @@ GetSpellInfoAtlasLootDB = { }, [12897] = { ["name"] = "Engineering: Gnomish Goggles", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10545, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10500}, [2] = {10559}, @@ -9938,13 +6146,7 @@ GetSpellInfoAtlasLootDB = { }, [12902] = { ["name"] = "Engineering: Gnomish Net-o-Matic Projector", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10720, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559}, [2] = {10285, 2}, @@ -9955,13 +6157,7 @@ GetSpellInfoAtlasLootDB = { }, [12903] = { ["name"] = "Engineering: Gnomish Harm Prevention Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10721, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7387}, [2] = {3860, 4}, @@ -9972,13 +6168,7 @@ GetSpellInfoAtlasLootDB = { }, [12905] = { ["name"] = "Engineering: Gnomish Rocket Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 10724, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10026}, [2] = {10559, 2}, @@ -9989,13 +6179,7 @@ GetSpellInfoAtlasLootDB = { }, [12906] = { ["name"] = "Engineering: Gnomish Battle Chicken", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10725, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10561}, [2] = {6037, 6}, @@ -10007,13 +6191,7 @@ GetSpellInfoAtlasLootDB = { }, [12907] = { ["name"] = "Engineering: Gnomish Mind Control Cap", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10726, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 10}, [2] = {6037, 4}, @@ -10024,13 +6202,7 @@ GetSpellInfoAtlasLootDB = { }, [12759] = { ["name"] = "Engineering: Gnomish Death Ray", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 10645, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559, 2}, [2] = {10560}, @@ -10041,13 +6213,7 @@ GetSpellInfoAtlasLootDB = { }, [23129] = { ["name"] = "Engineering: World Enlarger", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 18660, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10561}, [2] = {15994, 2}, @@ -10058,13 +6224,7 @@ GetSpellInfoAtlasLootDB = { }, [23489] = { ["name"] = "Engineering: Ultrasafe Transporter - Gadgetzan", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 18986, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {18631, 2}, @@ -10076,13 +6236,7 @@ GetSpellInfoAtlasLootDB = { }, [23096] = { ["name"] = "Engineering: Alarm-O-Bot", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 18645, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 4}, [2] = {15994, 2}, @@ -10093,14 +6247,8 @@ GetSpellInfoAtlasLootDB = { }, [13240] = { ["name"] = "Engineering: The Mortar: Reloaded", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "Reloads an empty Goblin mortar.", ["craftItem"] = 10577, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cffffffff6 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 6), ["reagents"] = { [1] = {10577}, [2] = {3860}, @@ -10109,14 +6257,8 @@ GetSpellInfoAtlasLootDB = { }, [12716] = { ["name"] = "Engineering: Goblin Mortar", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10577, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cffffffff6 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 6), ["reagents"] = { [1] = {10559, 2}, [2] = {3860, 4}, @@ -10127,13 +6269,7 @@ GetSpellInfoAtlasLootDB = { }, [12715] = { ["name"] = "Engineering: Goblin Rocket Fuel Recipe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10644, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10648}, [2] = {10647}, @@ -10141,13 +6277,7 @@ GetSpellInfoAtlasLootDB = { }, [15628] = { ["name"] = "Engineering: Pet Bombling", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 11825, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4394}, [2] = {7077}, @@ -10157,13 +6287,7 @@ GetSpellInfoAtlasLootDB = { }, [12760] = { ["name"] = "Engineering: Goblin Sapper Charge", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10646, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4338}, [2] = {10505, 3}, @@ -10172,13 +6296,7 @@ GetSpellInfoAtlasLootDB = { }, [12718] = { ["name"] = "Engineering: Goblin Construction Helmet", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10543, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {3864}, @@ -10187,13 +6305,7 @@ GetSpellInfoAtlasLootDB = { }, [12717] = { ["name"] = "Engineering: Goblin Mining Helmet", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10542, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {3864}, @@ -10202,13 +6314,7 @@ GetSpellInfoAtlasLootDB = { }, [8895] = { ["name"] = "Engineering: Goblin Rocket Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7189, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10026}, [2] = {10559, 2}, @@ -10219,13 +6325,7 @@ GetSpellInfoAtlasLootDB = { }, [12755] = { ["name"] = "Engineering: Goblin Bomb Dispenser", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 10587, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10561, 2}, [2] = {10505, 4}, @@ -10236,13 +6336,8 @@ GetSpellInfoAtlasLootDB = { }, [12754] = { ["name"] = "Engineering: The Big One", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 10586, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10561}, [2] = {9061}, @@ -10252,13 +6347,7 @@ GetSpellInfoAtlasLootDB = { }, [12908] = { ["name"] = "Engineering: Goblin Dragon Gun", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10727, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559, 2}, [2] = {9061, 4}, @@ -10269,13 +6358,7 @@ GetSpellInfoAtlasLootDB = { }, [12758] = { ["name"] = "Engineering: Goblin Rocket Helmet", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 10588, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10543}, [2] = {9061, 4}, @@ -10285,13 +6368,7 @@ GetSpellInfoAtlasLootDB = { }, [23486] = { ["name"] = "Engineering: Dimensional Ripper - Everlook", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 18984, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 10}, [2] = {18631}, @@ -10302,13 +6379,7 @@ GetSpellInfoAtlasLootDB = { }, [23078] = { ["name"] = "Engineering: Goblin Jumper Cables XL", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 18587, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15994, 2}, [2] = {18631, 2}, @@ -10319,14 +6390,8 @@ GetSpellInfoAtlasLootDB = { }, [3957] = { ["name"] = "Engineering: Ice Deflector", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4386, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), ["reagents"] = { [1] = {4375}, [2] = {3829}, @@ -10334,27 +6399,15 @@ GetSpellInfoAtlasLootDB = { }, [3958] = { ["name"] = "Engineering: Iron Strut", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4387, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 2}, }, }, [3959] = { ["name"] = "Engineering: Discombobulator Ray", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4388, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cffffffff5 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 5), ["reagents"] = { [1] = {4375, 3}, [2] = {4306, 2}, @@ -10364,13 +6417,7 @@ GetSpellInfoAtlasLootDB = { }, [9273] = { ["name"] = "Engineering: Goblin Jumper Cables", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7148, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 6}, [2] = {4375, 2}, @@ -10382,14 +6429,8 @@ GetSpellInfoAtlasLootDB = { }, [3960] = { ["name"] = "Engineering: Portable Bronze Mortar", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4403, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cffffffff8 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 8), ["reagents"] = { [1] = {4371, 4}, [2] = {4387}, @@ -10399,13 +6440,7 @@ GetSpellInfoAtlasLootDB = { }, [3961] = { ["name"] = "Engineering: Gyrochronatom", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4389, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575}, [2] = {10558}, @@ -10413,26 +6448,15 @@ GetSpellInfoAtlasLootDB = { }, [12585] = { ["name"] = "Engineering: Solid Blasting Powder", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10505, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7912, 2}, }, }, [12586] = { ["name"] = "Engineering: Solid Dynamite", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10507, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10505}, [2] = {4306}, @@ -10440,13 +6464,8 @@ GetSpellInfoAtlasLootDB = { }, [26420] = { ["name"] = "Engineering: Large Blue Rocket", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21589, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4377}, [2] = {4234}, @@ -10454,13 +6473,8 @@ GetSpellInfoAtlasLootDB = { }, [26421] = { ["name"] = "Engineering: Large Green Rocket", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21590, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4377}, [2] = {4234}, @@ -10468,13 +6482,8 @@ GetSpellInfoAtlasLootDB = { }, [26422] = { ["name"] = "Engineering: Large Red Rocket", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21592, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4377}, [2] = {4234}, @@ -10482,13 +6491,7 @@ GetSpellInfoAtlasLootDB = { }, [3963] = { ["name"] = "Engineering: Compact Harvest Reaper Kit", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4391, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4387, 2}, [2] = {4382}, @@ -10498,23 +6501,13 @@ GetSpellInfoAtlasLootDB = { }, [12590] = { ["name"] = "Engineering: Gyromatic Micro-Adjustor", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10498, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 4}, }, }, [3962] = { ["name"] = "Engineering: Iron Grenade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4390, ["craftQuantityMin"] = 2, ["craftQuantityMax"] = 4, @@ -10526,13 +6519,7 @@ GetSpellInfoAtlasLootDB = { }, [12587] = { ["name"] = "Engineering: Bright-Eye Goggles", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10499, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 6}, [2] = {3864, 2}, @@ -10540,13 +6527,7 @@ GetSpellInfoAtlasLootDB = { }, [3979] = { ["name"] = "Engineering: Accurate Scope", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4407, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4371}, [2] = {1529}, @@ -10555,13 +6536,7 @@ GetSpellInfoAtlasLootDB = { }, [3965] = { ["name"] = "Engineering: Advanced Target Dummy", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4392, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4387}, [2] = {4382}, @@ -10571,13 +6546,7 @@ GetSpellInfoAtlasLootDB = { }, [8243] = { ["name"] = "Engineering: Flash Bomb", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4852, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4611}, [2] = {4377}, @@ -10586,13 +6555,7 @@ GetSpellInfoAtlasLootDB = { }, [3966] = { ["name"] = "Engineering: Craftsman's Monocle", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4393, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 6}, [2] = {3864, 2}, @@ -10600,13 +6563,8 @@ GetSpellInfoAtlasLootDB = { }, [3967] = { ["name"] = "Engineering: Big Iron Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4394, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 3}, [2] = {4377, 3}, @@ -10615,13 +6573,7 @@ GetSpellInfoAtlasLootDB = { }, [21940] = { ["name"] = "Engineering: Snowmaster 9000", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 17716, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {4389, 4}, @@ -10631,26 +6583,14 @@ GetSpellInfoAtlasLootDB = { }, [12589] = { ["name"] = "Engineering: Mithril Tube", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10559, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 3}, }, }, [3968] = { ["name"] = "Engineering: Goblin Land Mine", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4395, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4377, 3}, [2] = {3575, 2}, @@ -10659,13 +6599,7 @@ GetSpellInfoAtlasLootDB = { }, [23069] = { ["name"] = "Engineering: EZ-Thro Dynamite II", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 18588, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10505}, [2] = {4338, 2}, @@ -10673,13 +6607,7 @@ GetSpellInfoAtlasLootDB = { }, [3972] = { ["name"] = "Engineering: Large Seaforium Charge", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4398, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10505, 2}, [2] = {4234, 2}, @@ -10688,13 +6616,7 @@ GetSpellInfoAtlasLootDB = { }, [15255] = { ["name"] = "Engineering: Mechanical Repair Kit", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 11590, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860}, [2] = {4338}, @@ -10703,13 +6625,7 @@ GetSpellInfoAtlasLootDB = { }, [12591] = { ["name"] = "Engineering: Unstable Trigger", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10560, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860}, [2] = {4338}, @@ -10718,13 +6634,7 @@ GetSpellInfoAtlasLootDB = { }, [3971] = { ["name"] = "Engineering: Gnomish Cloaking Device", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4397, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4389, 4}, [2] = {1529, 2}, @@ -10735,13 +6645,7 @@ GetSpellInfoAtlasLootDB = { }, [3969] = { ["name"] = "Engineering: Mechanical Dragonling", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4396, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4382}, [2] = {4387, 4}, @@ -10752,13 +6656,7 @@ GetSpellInfoAtlasLootDB = { }, [12594] = { ["name"] = "Engineering: Fire Goggles", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10500, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4385}, [2] = {3864, 2}, @@ -10768,13 +6666,7 @@ GetSpellInfoAtlasLootDB = { }, [12595] = { ["name"] = "Engineering: Mithril Blunderbuss", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10508, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559}, [2] = {10560}, @@ -10785,13 +6677,8 @@ GetSpellInfoAtlasLootDB = { }, [12596] = { ["name"] = "Engineering: Hi-Impact Mithril Slugs", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10512, ["craftQuantityMin"] = 200, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860}, [2] = {10505}, @@ -10799,13 +6686,7 @@ GetSpellInfoAtlasLootDB = { }, [12597] = { ["name"] = "Engineering: Deadly Scope", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10546, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559}, [2] = {7909, 2}, @@ -10814,26 +6695,15 @@ GetSpellInfoAtlasLootDB = { }, [12599] = { ["name"] = "Engineering: Mithril Casing", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10561, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 3}, }, }, [12603] = { ["name"] = "Engineering: Mithril Frag Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10514, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10561}, [2] = {10560}, @@ -10842,13 +6712,7 @@ GetSpellInfoAtlasLootDB = { }, [12607] = { ["name"] = "Engineering: Catseye Ultra Goggles", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10501, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 4}, [2] = {7909, 2}, @@ -10857,13 +6721,7 @@ GetSpellInfoAtlasLootDB = { }, [12614] = { ["name"] = "Engineering: Mithril Heavy-bore Rifle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10510, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559, 2}, [2] = {10560}, @@ -10874,13 +6732,8 @@ GetSpellInfoAtlasLootDB = { }, [26423] = { ["name"] = "Engineering: Blue Rocket Cluster", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21571, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10505}, [2] = {4304}, @@ -10888,13 +6741,8 @@ GetSpellInfoAtlasLootDB = { }, [26424] = { ["name"] = "Engineering: Green Rocket Cluster", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21574, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10505}, [2] = {4304}, @@ -10902,13 +6750,8 @@ GetSpellInfoAtlasLootDB = { }, [26425] = { ["name"] = "Engineering: Red Rocket Cluster", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21576, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10505}, [2] = {4304}, @@ -10916,13 +6759,7 @@ GetSpellInfoAtlasLootDB = { }, [12616] = { ["name"] = "Engineering: Parachute Cloak", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10518, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4339, 4}, [2] = {10285, 2}, @@ -10932,13 +6769,7 @@ GetSpellInfoAtlasLootDB = { }, [12615] = { ["name"] = "Engineering: Spellpower Goggles Xtreme", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10502, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 4}, [2] = {7910, 2}, @@ -10946,13 +6777,7 @@ GetSpellInfoAtlasLootDB = { }, [26442] = { ["name"] = "Engineering: Firework Launcher", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 21569, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {9060}, [2] = {9061}, @@ -10962,13 +6787,7 @@ GetSpellInfoAtlasLootDB = { }, [12617] = { ["name"] = "Engineering: Deepdive Helmet", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10506, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {10561}, @@ -10979,13 +6798,7 @@ GetSpellInfoAtlasLootDB = { }, [12618] = { ["name"] = "Engineering: Rose Colored Goggles", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10503, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 6}, [2] = {7910, 2}, @@ -10993,13 +6806,8 @@ GetSpellInfoAtlasLootDB = { }, [12619] = { ["name"] = "Engineering: Hi-Explosive Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10562, ["craftQuantityMin"] = 4, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10561, 2}, [2] = {10560}, @@ -11008,13 +6816,7 @@ GetSpellInfoAtlasLootDB = { }, [12620] = { ["name"] = "Engineering: Sniper Scope", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10548, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559}, [2] = {7910}, @@ -11023,13 +6825,8 @@ GetSpellInfoAtlasLootDB = { }, [12621] = { ["name"] = "Engineering: Mithril Gyro-Shot", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 10513, ["craftQuantityMin"] = 200, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 2}, [2] = {10505, 2}, @@ -11037,14 +6834,8 @@ GetSpellInfoAtlasLootDB = { }, [12622] = { ["name"] = "Engineering: Green Lens", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10504, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {4304, 8}, [2] = {1529, 3}, @@ -11055,26 +6846,15 @@ GetSpellInfoAtlasLootDB = { }, [19788] = { ["name"] = "Engineering: Dense Blasting Powder", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 15992, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12365, 2}, }, }, [23070] = { ["name"] = "Engineering: Dense Dynamite", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 18641, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15992, 2}, [2] = {14047, 3}, @@ -11082,13 +6862,8 @@ GetSpellInfoAtlasLootDB = { }, [23507] = { ["name"] = "Engineering: Snake Burst Firework", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 19026, ["craftQuantityMin"] = 4, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15992, 2}, [2] = {14047, 2}, @@ -11097,13 +6872,7 @@ GetSpellInfoAtlasLootDB = { }, [12624] = { ["name"] = "Engineering: Mithril Mechanical Dragonling", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 10576, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 14}, [2] = {7077, 4}, @@ -11115,13 +6884,7 @@ GetSpellInfoAtlasLootDB = { }, [19567] = { ["name"] = "Engineering: Salt Shaker", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 15846, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10561}, [2] = {12359, 6}, @@ -11131,13 +6894,7 @@ GetSpellInfoAtlasLootDB = { }, [46610] = { ["name"] = "Engineering: Battery-Powered Crowd Pummeler", - ["requires"] = "", - ["tools"] = {5956, 10498}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 60099, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {9449}, [2] = {60098, 5}, @@ -11150,13 +6907,7 @@ GetSpellInfoAtlasLootDB = { }, [26011] = { ["name"] = "Engineering: Tranquil Mechanical Yeti", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 21277, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15407}, [2] = {15994, 4}, @@ -11167,13 +6918,7 @@ GetSpellInfoAtlasLootDB = { }, [23071] = { ["name"] = "Engineering: Truesilver Transformer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 18631, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6037, 2}, [2] = {7067, 2}, @@ -11182,13 +6927,7 @@ GetSpellInfoAtlasLootDB = { }, [23077] = { ["name"] = "Engineering: Gyrofreeze Ice Reflector", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 18634, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15994, 6}, [2] = {18631, 2}, @@ -11200,13 +6939,7 @@ GetSpellInfoAtlasLootDB = { }, [19792] = { ["name"] = "Engineering: Thorium Rifle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 15995, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10559, 2}, [2] = {10561, 2}, @@ -11217,13 +6950,8 @@ GetSpellInfoAtlasLootDB = { }, [19790] = { ["name"] = "Engineering: Thorium Grenade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 15993, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15994}, [2] = {12359, 3}, @@ -11233,13 +6961,7 @@ GetSpellInfoAtlasLootDB = { }, [19791] = { ["name"] = "Engineering: Thorium Widget", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 15994, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 3}, [2] = {14047}, @@ -11247,13 +6969,7 @@ GetSpellInfoAtlasLootDB = { }, [19793] = { ["name"] = "Engineering: Lifelike Mechanical Toad", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 15996, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12803}, [2] = {15994, 4}, @@ -11263,13 +6979,7 @@ GetSpellInfoAtlasLootDB = { }, [19794] = { ["name"] = "Engineering: Spellpower Goggles Xtreme Plus", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 15999, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10502}, [2] = {7910, 4}, @@ -11279,13 +6989,8 @@ GetSpellInfoAtlasLootDB = { }, [26426] = { ["name"] = "Engineering: Large Blue Rocket Cluster", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21714, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15992}, [2] = {8170}, @@ -11293,13 +6998,8 @@ GetSpellInfoAtlasLootDB = { }, [26427] = { ["name"] = "Engineering: Large Green Rocket Cluster", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21716, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15992}, [2] = {8170}, @@ -11307,13 +7007,8 @@ GetSpellInfoAtlasLootDB = { }, [26428] = { ["name"] = "Engineering: Large Red Rocket Cluster", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 21718, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15992}, [2] = {8170}, @@ -11321,13 +7016,7 @@ GetSpellInfoAtlasLootDB = { }, [23080] = { ["name"] = "Engineering: Powerful Seaforium Charge", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 18594, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15994, 2}, [2] = {15992, 3}, @@ -11337,14 +7026,8 @@ GetSpellInfoAtlasLootDB = { }, [23079] = { ["name"] = "Engineering: Major Recombobulator", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 18637, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cffffffff10 Charges", + ["extra"] = HIGHLIGHT_FONT_COLOR_CODE..format(AL.CHARGES, 10), ["reagents"] = { [1] = {16000, 2}, [2] = {18631}, @@ -11353,13 +7036,7 @@ GetSpellInfoAtlasLootDB = { }, [19796] = { ["name"] = "Engineering: Dark Iron Rifle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 16004, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {16000, 2}, [2] = {11371, 6}, @@ -11371,13 +7048,7 @@ GetSpellInfoAtlasLootDB = { }, [19814] = { ["name"] = "Engineering: Masterwork Target Dummy", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 16023, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10561}, [2] = {16000}, @@ -11389,26 +7060,15 @@ GetSpellInfoAtlasLootDB = { }, [19795] = { ["name"] = "Engineering: Thorium Tube", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 16000, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 6}, }, }, [19799] = { ["name"] = "Engineering: Dark Iron Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 16005, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15994, 2}, [2] = {11371}, @@ -11418,13 +7078,8 @@ GetSpellInfoAtlasLootDB = { }, [19800] = { ["name"] = "Engineering: Thorium Shells", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 15997, ["craftQuantityMin"] = 200, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 2}, [2] = {15992}, @@ -11432,13 +7087,7 @@ GetSpellInfoAtlasLootDB = { }, [19815] = { ["name"] = "Engineering: Delicate Arcanite Converter", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 16006, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360}, [2] = {14227}, @@ -11446,13 +7095,7 @@ GetSpellInfoAtlasLootDB = { }, [23081] = { ["name"] = "Engineering: Hyper-Radiant Flame Reflector", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 18638, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 4}, [2] = {18631, 3}, @@ -11463,13 +7106,7 @@ GetSpellInfoAtlasLootDB = { }, [19825] = { ["name"] = "Engineering: Master Engineer's Goggles", - ["requires"] = "", - ["tools"] = {6219, 10498}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16008, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10500}, [2] = {12364, 2}, @@ -11478,13 +7115,7 @@ GetSpellInfoAtlasLootDB = { }, [19819] = { ["name"] = "Engineering: Voice Amplification Modulator", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 16009, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {16006, 2}, [2] = {10558}, @@ -11494,13 +7125,7 @@ GetSpellInfoAtlasLootDB = { }, [22793] = { ["name"] = "Engineering: Biznicks 247x128 Accurascope", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 18283, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 2}, [2] = {7076, 2}, @@ -11511,13 +7136,7 @@ GetSpellInfoAtlasLootDB = { }, [24356] = { ["name"] = "Engineering: Bloodvine Goggles", - ["requires"] = "", - ["tools"] = {10498, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19999, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19726, 4}, [2] = {19774, 5}, @@ -11528,13 +7147,7 @@ GetSpellInfoAtlasLootDB = { }, [24357] = { ["name"] = "Engineering: Bloodvine Lens", - ["requires"] = "", - ["tools"] = {10498, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19998, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19726, 5}, [2] = {19774, 5}, @@ -11545,13 +7158,7 @@ GetSpellInfoAtlasLootDB = { }, [19833] = { ["name"] = "Engineering: Flawless Arcanite Rifle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16007, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 10}, [2] = {16000, 2}, @@ -11563,13 +7170,7 @@ GetSpellInfoAtlasLootDB = { }, [23082] = { ["name"] = "Engineering: Ultra-Flash Shadow Reflector", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 18639, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 8}, [2] = {18631, 4}, @@ -11581,13 +7182,8 @@ GetSpellInfoAtlasLootDB = { }, [19831] = { ["name"] = "Engineering: Arcane Bomb", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 16040, ["craftQuantityMin"] = 3, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {16006}, [2] = {12359, 3}, @@ -11596,13 +7192,7 @@ GetSpellInfoAtlasLootDB = { }, [22704] = { ["name"] = "Engineering: Field Repair Bot 74A", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18232, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {8170, 4}, @@ -11613,13 +7203,7 @@ GetSpellInfoAtlasLootDB = { }, [19830] = { ["name"] = "Engineering: Arcanite Dragonling", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16022, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10576}, [2] = {16006, 8}, @@ -11631,13 +7215,7 @@ GetSpellInfoAtlasLootDB = { }, [22795] = { ["name"] = "Engineering: Core Marksman Rifle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18282, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17010, 4}, [2] = {17011, 2}, @@ -11648,13 +7226,7 @@ GetSpellInfoAtlasLootDB = { }, [22797] = { ["name"] = "Engineering: Force Reactive Disk", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18168, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 6}, [2] = {16006, 2}, @@ -11665,13 +7237,7 @@ GetSpellInfoAtlasLootDB = { }, [45481] = { ["name"] = "Engineering: Intricate Gyroscope Goggles", - ["requires"] = AL["Anvil"], - ["tools"] = {5956, 6219}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61187, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {16006, 8}, [2] = {12810, 10}, @@ -11683,13 +7249,7 @@ GetSpellInfoAtlasLootDB = { }, [16978] = { ["name"] = "Blacksmithing: Blazing Rapier", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12777, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 10}, [2] = {7078, 4}, @@ -11700,13 +7260,7 @@ GetSpellInfoAtlasLootDB = { }, [16985] = { ["name"] = "Blacksmithing: Corruption", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12782, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12360, 2}, @@ -11719,13 +7273,7 @@ GetSpellInfoAtlasLootDB = { }, [16992] = { ["name"] = "Blacksmithing: Frostguard", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12797, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 18}, [2] = {12361, 8}, @@ -11737,13 +7285,7 @@ GetSpellInfoAtlasLootDB = { }, [20890] = { ["name"] = "Blacksmithing: Dark Iron Reaver", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 17015, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 16}, [2] = {17010, 12}, @@ -11753,13 +7295,7 @@ GetSpellInfoAtlasLootDB = { }, [16990] = { ["name"] = "Blacksmithing: Arcanite Champion", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12790, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 15}, [2] = {12800, 8}, @@ -11771,13 +7307,7 @@ GetSpellInfoAtlasLootDB = { }, [27832] = { ["name"] = "Blacksmithing: Sageblade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22383, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 12}, [2] = {20725, 2}, @@ -11787,13 +7317,7 @@ GetSpellInfoAtlasLootDB = { }, [46661] = { ["name"] = "Blacksmithing: Dream's Herald", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65008, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 14}, [2] = {20002, 10}, @@ -11805,13 +7329,7 @@ GetSpellInfoAtlasLootDB = { }, [23652] = { ["name"] = "Blacksmithing: Blackguard", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19168, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 6}, [2] = {17010, 6}, @@ -11822,13 +7340,7 @@ GetSpellInfoAtlasLootDB = { }, [16973] = { ["name"] = "Blacksmithing: Enchanted Battlehammer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12776, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12655, 6}, @@ -11839,13 +7351,7 @@ GetSpellInfoAtlasLootDB = { }, [16983] = { ["name"] = "Blacksmithing: Serenity", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12781, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 6}, [2] = {12360, 2}, @@ -11857,13 +7363,7 @@ GetSpellInfoAtlasLootDB = { }, [16988] = { ["name"] = "Blacksmithing: Hammer of the Titans", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12796, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 50}, [2] = {12360, 15}, @@ -11874,13 +7374,7 @@ GetSpellInfoAtlasLootDB = { }, [16993] = { ["name"] = "Blacksmithing: Masterwork Stormhammer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12794, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 20}, [2] = {12364, 8}, @@ -11891,13 +7385,7 @@ GetSpellInfoAtlasLootDB = { }, [23650] = { ["name"] = "Blacksmithing: Ebon Hand", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19170, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 4}, [2] = {17010, 7}, @@ -11908,13 +7396,7 @@ GetSpellInfoAtlasLootDB = { }, [27830] = { ["name"] = "Blacksmithing: Persuader", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22384, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 15}, [2] = {11371, 10}, @@ -11926,13 +7408,7 @@ GetSpellInfoAtlasLootDB = { }, [16970] = { ["name"] = "Blacksmithing: Dawn's Edge", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12774, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 30}, [2] = {12655, 4}, @@ -11944,13 +7420,7 @@ GetSpellInfoAtlasLootDB = { }, [16991] = { ["name"] = "Blacksmithing: Annihilator", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12798, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12360, 12}, @@ -11962,13 +7432,7 @@ GetSpellInfoAtlasLootDB = { }, [16994] = { ["name"] = "Blacksmithing: Arcanite Reaper", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12784, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 20}, [2] = {12810, 6}, @@ -11977,13 +7441,7 @@ GetSpellInfoAtlasLootDB = { }, [20897] = { ["name"] = "Blacksmithing: Dark Iron Destroyer", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 17016, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 18}, [2] = {17011, 12}, @@ -11993,13 +7451,7 @@ GetSpellInfoAtlasLootDB = { }, [23653] = { ["name"] = "Blacksmithing: Nightfall", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19169, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 8}, [2] = {17010, 5}, @@ -12010,39 +7462,21 @@ GetSpellInfoAtlasLootDB = { }, [12260] = { ["name"] = "Blacksmithing: Rough Copper Vest", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 10421, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 4}, }, }, [2660] = { ["name"] = "Blacksmithing: Rough Sharpening Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2862, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2835}, }, }, [3115] = { ["name"] = "Blacksmithing: Rough Weightstone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 3239, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2835}, [2] = {2589}, @@ -12050,39 +7484,21 @@ GetSpellInfoAtlasLootDB = { }, [2663] = { ["name"] = "Blacksmithing: Copper Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2853, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 2}, }, }, [2662] = { ["name"] = "Blacksmithing: Copper Chain Pants", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2852, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 4}, }, }, [2737] = { ["name"] = "Blacksmithing: Copper Mace", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2844, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, [2] = {2880}, @@ -12091,13 +7507,7 @@ GetSpellInfoAtlasLootDB = { }, [2738] = { ["name"] = "Blacksmithing: Copper Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2845, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, [2] = {2880}, @@ -12106,39 +7516,21 @@ GetSpellInfoAtlasLootDB = { }, [3319] = { ["name"] = "Blacksmithing: Copper Chain Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 3469, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, }, }, [3320] = { ["name"] = "Blacksmithing: Rough Grinding Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 3470, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2835, 2}, }, }, [2739] = { ["name"] = "Blacksmithing: Copper Shortsword", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2847, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, [2] = {2880}, @@ -12147,13 +7539,7 @@ GetSpellInfoAtlasLootDB = { }, [9983] = { ["name"] = "Blacksmithing: Copper Claymore", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 7955, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 10}, [2] = {2880, 2}, @@ -12163,13 +7549,7 @@ GetSpellInfoAtlasLootDB = { }, [8880] = { ["name"] = "Blacksmithing: Copper Dagger", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 7166, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, [2] = {2880}, @@ -12179,26 +7559,14 @@ GetSpellInfoAtlasLootDB = { }, [2661] = { ["name"] = "Blacksmithing: Copper Chain Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2851, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, }, }, [3293] = { ["name"] = "Blacksmithing: Copper Battle Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 3488, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 12}, [2] = {2880, 2}, @@ -12209,13 +7577,7 @@ GetSpellInfoAtlasLootDB = { }, [3321] = { ["name"] = "Blacksmithing: Copper Chain Vest", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 3471, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, [2] = {774}, @@ -12224,13 +7586,7 @@ GetSpellInfoAtlasLootDB = { }, [3323] = { ["name"] = "Blacksmithing: Runed Copper Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 3472, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, [2] = {3470, 2}, @@ -12238,13 +7594,7 @@ GetSpellInfoAtlasLootDB = { }, [3324] = { ["name"] = "Blacksmithing: Runed Copper Pants", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 3473, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, [2] = {2321, 2}, @@ -12253,14 +7603,8 @@ GetSpellInfoAtlasLootDB = { }, [3325] = { ["name"] = "Blacksmithing: Gemmed Copper Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 3474, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {2840, 8}, [2] = {818}, @@ -12269,26 +7613,14 @@ GetSpellInfoAtlasLootDB = { }, [2665] = { ["name"] = "Blacksmithing: Coarse Sharpening Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2863, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2836}, }, }, [3116] = { ["name"] = "Blacksmithing: Coarse Weightstone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 3240, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2836}, [2] = {2592}, @@ -12296,13 +7628,7 @@ GetSpellInfoAtlasLootDB = { }, [7408] = { ["name"] = "Blacksmithing: Heavy Copper Maul", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6214, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 12}, [2] = {2880, 2}, @@ -12311,26 +7637,14 @@ GetSpellInfoAtlasLootDB = { }, [2666] = { ["name"] = "Blacksmithing: Runed Copper Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2857, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 10}, }, }, [3294] = { ["name"] = "Blacksmithing: Thick War Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 3489, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 10}, [2] = {2880, 2}, @@ -12341,26 +7655,14 @@ GetSpellInfoAtlasLootDB = { }, [3326] = { ["name"] = "Blacksmithing: Coarse Grinding Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 3478, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2836, 2}, }, }, [46664] = { ["name"] = "Blacksmithing: Sharpened Claw", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 65011, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, [2] = {3470, 4}, @@ -12369,13 +7671,7 @@ GetSpellInfoAtlasLootDB = { }, [46663] = { ["name"] = "Blacksmithing: Copper Knuckles", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 65010, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, [2] = {3470, 2}, @@ -12383,13 +7679,7 @@ GetSpellInfoAtlasLootDB = { }, [46665] = { ["name"] = "Blacksmithing: Bronze Bruiser", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 65012, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {1705, 2}, @@ -12400,13 +7690,7 @@ GetSpellInfoAtlasLootDB = { }, [2667] = { ["name"] = "Blacksmithing: Runed Copper Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2864, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 12}, [2] = {1210}, @@ -12415,13 +7699,7 @@ GetSpellInfoAtlasLootDB = { }, [2664] = { ["name"] = "Blacksmithing: Runed Copper Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2854, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 10}, [2] = {3470, 3}, @@ -12429,13 +7707,7 @@ GetSpellInfoAtlasLootDB = { }, [7817] = { ["name"] = "Blacksmithing: Rough Bronze Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 6350, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {3470, 6}, @@ -12443,13 +7715,7 @@ GetSpellInfoAtlasLootDB = { }, [3292] = { ["name"] = "Blacksmithing: Heavy Copper Broadsword", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 3487, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 14}, [2] = {2880, 2}, @@ -12459,13 +7725,7 @@ GetSpellInfoAtlasLootDB = { }, [7818] = { ["name"] = "Blacksmithing: Silver Rod", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 6338, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842}, [2] = {3470, 2}, @@ -12473,13 +7733,8 @@ GetSpellInfoAtlasLootDB = { }, [19666] = { ["name"] = "Blacksmithing: Silver Skeleton Key", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 15869, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842}, [2] = {3470}, @@ -12487,13 +7742,7 @@ GetSpellInfoAtlasLootDB = { }, [8367] = { ["name"] = "Blacksmithing: Ironforge Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6731, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 16}, [2] = {818, 2}, @@ -12502,26 +7751,14 @@ GetSpellInfoAtlasLootDB = { }, [2671] = { ["name"] = "Blacksmithing: Rough Bronze Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2867, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 4}, }, }, [3491] = { ["name"] = "Blacksmithing: Big Bronze Knife", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3848, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {2880, 4}, @@ -12532,39 +7769,21 @@ GetSpellInfoAtlasLootDB = { }, [2668] = { ["name"] = "Blacksmithing: Rough Bronze Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2865, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, }, }, [2670] = { ["name"] = "Blacksmithing: Rough Bronze Cuirass", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2866, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 7}, }, }, [2740] = { ["name"] = "Blacksmithing: Bronze Mace", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2848, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {2880, 4}, @@ -12573,13 +7792,7 @@ GetSpellInfoAtlasLootDB = { }, [3328] = { ["name"] = "Blacksmithing: Rough Bronze Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 3480, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 5}, [2] = {1210}, @@ -12588,13 +7801,7 @@ GetSpellInfoAtlasLootDB = { }, [6517] = { ["name"] = "Blacksmithing: Pearl-handled Dagger", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 5540, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {3466}, @@ -12604,13 +7811,7 @@ GetSpellInfoAtlasLootDB = { }, [2741] = { ["name"] = "Blacksmithing: Bronze Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2849, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 7}, [2] = {2880, 4}, @@ -12619,13 +7820,7 @@ GetSpellInfoAtlasLootDB = { }, [2742] = { ["name"] = "Blacksmithing: Bronze Shortsword", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2850, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 5}, [2] = {2880, 4}, @@ -12634,13 +7829,7 @@ GetSpellInfoAtlasLootDB = { }, [2672] = { ["name"] = "Blacksmithing: Patterned Bronze Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2868, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 5}, [2] = {3478, 2}, @@ -12648,26 +7837,14 @@ GetSpellInfoAtlasLootDB = { }, [2674] = { ["name"] = "Blacksmithing: Heavy Sharpening Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2871, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2838}, }, }, [3117] = { ["name"] = "Blacksmithing: Heavy Weightstone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 3241, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2838}, [2] = {2592}, @@ -12675,26 +7852,14 @@ GetSpellInfoAtlasLootDB = { }, [3337] = { ["name"] = "Blacksmithing: Heavy Grinding Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 3486, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2838, 3}, }, }, [9985] = { ["name"] = "Blacksmithing: Bronze Warhammer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7956, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 8}, [2] = {3466}, @@ -12703,13 +7868,7 @@ GetSpellInfoAtlasLootDB = { }, [3295] = { ["name"] = "Blacksmithing: Deadly Bronze Poniard", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3490, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 4}, [2] = {3466}, @@ -12721,13 +7880,7 @@ GetSpellInfoAtlasLootDB = { }, [3330] = { ["name"] = "Blacksmithing: Silvered Bronze Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3481, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 8}, [2] = {2842, 2}, @@ -12736,13 +7889,7 @@ GetSpellInfoAtlasLootDB = { }, [9986] = { ["name"] = "Blacksmithing: Bronze Greatsword", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7957, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 12}, [2] = {3466, 2}, @@ -12751,13 +7898,7 @@ GetSpellInfoAtlasLootDB = { }, [3296] = { ["name"] = "Blacksmithing: Heavy Bronze Mace", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3491, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 8}, [2] = {3466}, @@ -12769,13 +7910,7 @@ GetSpellInfoAtlasLootDB = { }, [3331] = { ["name"] = "Blacksmithing: Silvered Bronze Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3482, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {2842}, @@ -12784,13 +7919,7 @@ GetSpellInfoAtlasLootDB = { }, [2673] = { ["name"] = "Blacksmithing: Silvered Bronze Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 2869, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 10}, [2] = {2842, 2}, @@ -12800,13 +7929,7 @@ GetSpellInfoAtlasLootDB = { }, [9987] = { ["name"] = "Blacksmithing: Bronze Battle Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7958, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 14}, [2] = {3466}, @@ -12815,13 +7938,7 @@ GetSpellInfoAtlasLootDB = { }, [3333] = { ["name"] = "Blacksmithing: Silvered Bronze Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3483, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 8}, [2] = {2842}, @@ -12830,13 +7947,7 @@ GetSpellInfoAtlasLootDB = { }, [6518] = { ["name"] = "Blacksmithing: Iridescent Hammer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 5541, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 10}, [2] = {3466}, @@ -12847,13 +7958,7 @@ GetSpellInfoAtlasLootDB = { }, [3334] = { ["name"] = "Blacksmithing: Green Iron Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3484, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 4}, [2] = {1705, 2}, @@ -12863,13 +7968,7 @@ GetSpellInfoAtlasLootDB = { }, [3297] = { ["name"] = "Blacksmithing: Mighty Iron Hammer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3492, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 6}, [2] = {3466, 2}, @@ -12881,13 +7980,7 @@ GetSpellInfoAtlasLootDB = { }, [2675] = { ["name"] = "Blacksmithing: Shining Silver Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 2870, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 20}, [2] = {1206, 2}, @@ -12898,26 +7991,16 @@ GetSpellInfoAtlasLootDB = { }, [8768] = { ["name"] = "Blacksmithing: Iron Buckle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7071, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575}, }, }, [19667] = { ["name"] = "Blacksmithing: Golden Skeleton Key", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 15870, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577}, [2] = {3486}, @@ -12925,13 +8008,7 @@ GetSpellInfoAtlasLootDB = { }, [14379] = { ["name"] = "Blacksmithing: Golden Rod", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 11128, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577}, [2] = {3478, 2}, @@ -12939,13 +8016,7 @@ GetSpellInfoAtlasLootDB = { }, [7221] = { ["name"] = "Blacksmithing: Iron Shield Spike", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6042, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 6}, [2] = {3478, 4}, @@ -12953,13 +8024,7 @@ GetSpellInfoAtlasLootDB = { }, [3336] = { ["name"] = "Blacksmithing: Green Iron Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3485, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 4}, [2] = {5498, 2}, @@ -12969,13 +8034,7 @@ GetSpellInfoAtlasLootDB = { }, [10003] = { ["name"] = "Blacksmithing: The Shatterer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7954, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 24}, [2] = {7075, 4}, @@ -12988,13 +8047,7 @@ GetSpellInfoAtlasLootDB = { }, [10007] = { ["name"] = "Blacksmithing: Phantom Blade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7961, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 28}, [2] = {7081, 6}, @@ -13007,13 +8060,7 @@ GetSpellInfoAtlasLootDB = { }, [10011] = { ["name"] = "Blacksmithing: Blight", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7959, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 28}, [2] = {7972, 10}, @@ -13024,13 +8071,7 @@ GetSpellInfoAtlasLootDB = { }, [10015] = { ["name"] = "Blacksmithing: Truesilver Champion", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7960, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 30}, [2] = {6037, 16}, @@ -13042,13 +8083,7 @@ GetSpellInfoAtlasLootDB = { }, [15292] = { ["name"] = "Blacksmithing: Dark Iron Pulverizer", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 11608, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 18}, [2] = {7077, 4}, @@ -13056,13 +8091,7 @@ GetSpellInfoAtlasLootDB = { }, [15294] = { ["name"] = "Blacksmithing: Dark Iron Sunderer", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 11607, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 26}, [2] = {7077, 4}, @@ -13070,13 +8099,7 @@ GetSpellInfoAtlasLootDB = { }, [16995] = { ["name"] = "Blacksmithing: Heartseeker", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12783, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 10}, [2] = {12655, 10}, @@ -13089,13 +8112,7 @@ GetSpellInfoAtlasLootDB = { }, [23638] = { ["name"] = "Blacksmithing: Black Amnesty", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19166, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 3}, [2] = {17010, 6}, @@ -13106,13 +8123,7 @@ GetSpellInfoAtlasLootDB = { }, [23639] = { ["name"] = "Blacksmithing: Blackfury", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19167, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 5}, [2] = {17010, 2}, @@ -13122,13 +8133,7 @@ GetSpellInfoAtlasLootDB = { }, [9954] = { ["name"] = "Blacksmithing: Truesilver Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7938, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 10}, [2] = {6037, 8}, @@ -13140,13 +8145,7 @@ GetSpellInfoAtlasLootDB = { }, [9974] = { ["name"] = "Blacksmithing: Truesilver Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7939, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {6037, 24}, @@ -13157,13 +8156,7 @@ GetSpellInfoAtlasLootDB = { }, [16650] = { ["name"] = "Blacksmithing: Wildthorn Mail", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12624, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12655, 2}, @@ -13174,13 +8167,7 @@ GetSpellInfoAtlasLootDB = { }, [16667] = { ["name"] = "Blacksmithing: Demon Forged Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12628, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12662, 10}, @@ -13190,13 +8177,7 @@ GetSpellInfoAtlasLootDB = { }, [46652] = { ["name"] = "Blacksmithing: Untempered Runeblade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60293, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 25}, [2] = {12808, 10}, @@ -13208,13 +8189,7 @@ GetSpellInfoAtlasLootDB = { }, [47021] = { ["name"] = "Blacksmithing: Rune-Etched Greaves", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60288, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12655, 2}, @@ -13225,13 +8200,7 @@ GetSpellInfoAtlasLootDB = { }, [47022] = { ["name"] = "Blacksmithing: Rune-Etched Legplates", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60289, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 24}, [2] = {12655, 6}, @@ -13242,13 +8211,7 @@ GetSpellInfoAtlasLootDB = { }, [47023] = { ["name"] = "Blacksmithing: Rune-Etched Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60290, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 24}, [2] = {12655, 4}, @@ -13260,13 +8223,7 @@ GetSpellInfoAtlasLootDB = { }, [47024] = { ["name"] = "Blacksmithing: Rune-Etched Crown", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60291, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 16}, [2] = {12655, 2}, @@ -13276,13 +8233,7 @@ GetSpellInfoAtlasLootDB = { }, [47025] = { ["name"] = "Blacksmithing: Rune-Etched Mantle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60292, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 14}, [2] = {12655, 2}, @@ -13293,13 +8244,7 @@ GetSpellInfoAtlasLootDB = { }, [47026] = { ["name"] = "Blacksmithing: Rune-Etched Grips", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60287, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {12655, 2}, @@ -13309,77 +8254,47 @@ GetSpellInfoAtlasLootDB = { }, [57617] = { ["name"] = "Blacksmithing: Otherworldly Coif", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55526, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {15407, 1}, - [2] = {12360, 1}, + [1] = {15407}, + [2] = {12360}, [3] = {61673, 6}, - [4] = {12607, 1}, + [4] = {12607}, }, }, [57619] = { ["name"] = "Blacksmithing: Otherworldly Spaulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55527, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {15407, 1}, - [2] = {12360, 1}, + [1] = {15407}, + [2] = {12360}, [3] = {61673, 6}, [4] = {12607, 3}, }, }, [57621] = { ["name"] = "Blacksmithing: Otherworldly Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55528, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15407, 2}, - [2] = {12360, 1}, + [2] = {12360}, [3] = {61673, 6}, [4] = {12607, 2}, }, }, [57623] = { ["name"] = "Blacksmithing: Otherworldly Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55529, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15407, 2}, - [2] = {12360, 1}, + [2] = {12360}, [3] = {61673, 7}, [4] = {12607, 2}, }, }, [57625] = { ["name"] = "Blacksmithing: Reflective Helmet", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55530, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 2}, [2] = {12655, 7}, @@ -13388,13 +8303,7 @@ GetSpellInfoAtlasLootDB = { }, [57627] = { ["name"] = "Blacksmithing: Reflective Pauldrons", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55531, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 2}, [2] = {12655, 9}, @@ -13403,13 +8312,7 @@ GetSpellInfoAtlasLootDB = { }, [57629] = { ["name"] = "Blacksmithing: Reflective Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55532, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 2}, [2] = {12655, 10}, @@ -13418,13 +8321,7 @@ GetSpellInfoAtlasLootDB = { }, [57631] = { ["name"] = "Blacksmithing: Reflective Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55533, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 2}, [2] = {12655, 12}, @@ -13433,13 +8330,7 @@ GetSpellInfoAtlasLootDB = { }, [15296] = { ["name"] = "Blacksmithing: Dark Iron Plate", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 11604, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 20}, [2] = {7077, 8}, @@ -13447,13 +8338,7 @@ GetSpellInfoAtlasLootDB = { }, [16655] = { ["name"] = "Blacksmithing: Fiery Plate Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12631, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12655, 6}, @@ -13463,13 +8348,7 @@ GetSpellInfoAtlasLootDB = { }, [16661] = { ["name"] = "Blacksmithing: Storm Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12632, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12655, 4}, @@ -13479,13 +8358,7 @@ GetSpellInfoAtlasLootDB = { }, [20874] = { ["name"] = "Blacksmithing: Dark Iron Bracers", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 17014, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 4}, [2] = {17010, 2}, @@ -13494,13 +8367,7 @@ GetSpellInfoAtlasLootDB = { }, [20872] = { ["name"] = "Blacksmithing: Fiery Chain Girdle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16989, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 6}, [2] = {17010, 3}, @@ -13509,13 +8376,7 @@ GetSpellInfoAtlasLootDB = { }, [16745] = { ["name"] = "Blacksmithing: Enchanted Thorium Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12618, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 8}, [2] = {12655, 24}, @@ -13527,13 +8388,7 @@ GetSpellInfoAtlasLootDB = { }, [16742] = { ["name"] = "Blacksmithing: Enchanted Thorium Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12620, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 6}, [2] = {12655, 16}, @@ -13544,13 +8399,7 @@ GetSpellInfoAtlasLootDB = { }, [16744] = { ["name"] = "Blacksmithing: Enchanted Thorium Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12619, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 10}, [2] = {12655, 20}, @@ -13561,13 +8410,7 @@ GetSpellInfoAtlasLootDB = { }, [16728] = { ["name"] = "Blacksmithing: Helm of the Great Chief", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12636, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12655, 4}, @@ -13578,13 +8421,7 @@ GetSpellInfoAtlasLootDB = { }, [16724] = { ["name"] = "Blacksmithing: Whitesoul Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12633, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12655, 4}, @@ -13595,14 +8432,8 @@ GetSpellInfoAtlasLootDB = { }, [24399] = { ["name"] = "Blacksmithing: Dark Iron Boots", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20039, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {17011, 3}, [2] = {17010, 3}, @@ -13612,13 +8443,7 @@ GetSpellInfoAtlasLootDB = { }, [23637] = { ["name"] = "Blacksmithing: Dark Iron Gauntlets", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19164, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 3}, [2] = {17010, 5}, @@ -13629,13 +8454,7 @@ GetSpellInfoAtlasLootDB = { }, [23636] = { ["name"] = "Blacksmithing: Dark Iron Helm", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19148, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 4}, [2] = {17010, 2}, @@ -13644,13 +8463,7 @@ GetSpellInfoAtlasLootDB = { }, [20876] = { ["name"] = "Blacksmithing: Dark Iron Leggings", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 17013, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 16}, [2] = {17010, 4}, @@ -13659,13 +8472,7 @@ GetSpellInfoAtlasLootDB = { }, [20873] = { ["name"] = "Blacksmithing: Fiery Chain Shoulders", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16988, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 16}, [2] = {17010, 4}, @@ -13674,13 +8481,7 @@ GetSpellInfoAtlasLootDB = { }, [16746] = { ["name"] = "Blacksmithing: Invulnerable Mail", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12641, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 30}, [2] = {12655, 30}, @@ -13690,13 +8491,7 @@ GetSpellInfoAtlasLootDB = { }, [16729] = { ["name"] = "Blacksmithing: Lionheart Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12640, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 80}, [2] = {12360, 12}, @@ -13707,13 +8502,7 @@ GetSpellInfoAtlasLootDB = { }, [16741] = { ["name"] = "Blacksmithing: Stronghold Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12639, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 15}, [2] = {12655, 20}, @@ -13724,13 +8513,7 @@ GetSpellInfoAtlasLootDB = { }, [27829] = { ["name"] = "Blacksmithing: Titanic Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22385, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 12}, [2] = {12655, 20}, @@ -13740,13 +8523,7 @@ GetSpellInfoAtlasLootDB = { }, [3506] = { ["name"] = "Blacksmithing: Green Iron Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3842, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 8}, [2] = {3486}, @@ -13755,13 +8532,7 @@ GetSpellInfoAtlasLootDB = { }, [12259] = { ["name"] = "Blacksmithing: Silvered Bronze Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 10423, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 12}, [2] = {2842, 4}, @@ -13770,13 +8541,7 @@ GetSpellInfoAtlasLootDB = { }, [3494] = { ["name"] = "Blacksmithing: Solid Iron Maul", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3851, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 8}, [2] = {3466, 2}, @@ -13787,13 +8552,7 @@ GetSpellInfoAtlasLootDB = { }, [9813] = { ["name"] = "Blacksmithing: Barbaric Iron Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7914, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 20}, [2] = {3486, 4}, @@ -13801,13 +8560,7 @@ GetSpellInfoAtlasLootDB = { }, [9811] = { ["name"] = "Blacksmithing: Barbaric Iron Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7913, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 8}, [2] = {5635, 4}, @@ -13817,13 +8570,7 @@ GetSpellInfoAtlasLootDB = { }, [3504] = { ["name"] = "Blacksmithing: Green Iron Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3840, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 7}, [2] = {3486}, @@ -13832,13 +8579,7 @@ GetSpellInfoAtlasLootDB = { }, [3492] = { ["name"] = "Blacksmithing: Hardened Iron Shortsword", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3849, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 6}, [2] = {3466, 2}, @@ -13849,13 +8590,7 @@ GetSpellInfoAtlasLootDB = { }, [3501] = { ["name"] = "Blacksmithing: Green Iron Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3835, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 6}, [2] = {2605}, @@ -13863,13 +8598,7 @@ GetSpellInfoAtlasLootDB = { }, [7222] = { ["name"] = "Blacksmithing: Iron Counterweight", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6043, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 4}, [2] = {3478, 2}, @@ -13878,13 +8607,7 @@ GetSpellInfoAtlasLootDB = { }, [3495] = { ["name"] = "Blacksmithing: Golden Iron Destroyer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3852, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 10}, [2] = {3577, 4}, @@ -13896,13 +8619,7 @@ GetSpellInfoAtlasLootDB = { }, [3507] = { ["name"] = "Blacksmithing: Golden Scale Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3843, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 10}, [2] = {3577, 2}, @@ -13911,13 +8628,7 @@ GetSpellInfoAtlasLootDB = { }, [3502] = { ["name"] = "Blacksmithing: Green Iron Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3836, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 12}, [2] = {3864}, @@ -13926,13 +8637,7 @@ GetSpellInfoAtlasLootDB = { }, [9814] = { ["name"] = "Blacksmithing: Barbaric Iron Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7915, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 10}, [2] = {5637, 2}, @@ -13941,13 +8646,7 @@ GetSpellInfoAtlasLootDB = { }, [3505] = { ["name"] = "Blacksmithing: Golden Scale Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3841, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 6}, [2] = {3577, 2}, @@ -13956,13 +8655,7 @@ GetSpellInfoAtlasLootDB = { }, [3493] = { ["name"] = "Blacksmithing: Jade Serpentblade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3850, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 8}, [2] = {3466, 2}, @@ -13973,13 +8666,7 @@ GetSpellInfoAtlasLootDB = { }, [3508] = { ["name"] = "Blacksmithing: Green Iron Hauberk", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 3844, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 20}, [2] = {3486, 4}, @@ -13990,13 +8677,7 @@ GetSpellInfoAtlasLootDB = { }, [9818] = { ["name"] = "Blacksmithing: Barbaric Iron Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7916, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 12}, [2] = {5637, 4}, @@ -14006,13 +8687,7 @@ GetSpellInfoAtlasLootDB = { }, [15972] = { ["name"] = "Blacksmithing: Glinting Steel Dagger", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 12259, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 10}, [2] = {3466, 2}, @@ -14023,13 +8698,7 @@ GetSpellInfoAtlasLootDB = { }, [3496] = { ["name"] = "Blacksmithing: Moonsteel Broadsword", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3853, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 8}, [2] = {3466, 2}, @@ -14040,13 +8709,7 @@ GetSpellInfoAtlasLootDB = { }, [9820] = { ["name"] = "Blacksmithing: Barbaric Iron Gloves", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7917, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 14}, [2] = {3486, 3}, @@ -14055,13 +8718,7 @@ GetSpellInfoAtlasLootDB = { }, [3498] = { ["name"] = "Blacksmithing: Massive Iron Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3855, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 14}, [2] = {3466, 2}, @@ -14072,13 +8729,7 @@ GetSpellInfoAtlasLootDB = { }, [3513] = { ["name"] = "Blacksmithing: Polished Steel Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3846, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 8}, [2] = {3864}, @@ -14088,13 +8739,7 @@ GetSpellInfoAtlasLootDB = { }, [7223] = { ["name"] = "Blacksmithing: Golden Scale Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6040, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 5}, [2] = {3486, 2}, @@ -14102,13 +8747,7 @@ GetSpellInfoAtlasLootDB = { }, [7224] = { ["name"] = "Blacksmithing: Steel Weapon Chain", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6041, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 8}, [2] = {3486, 2}, @@ -14117,13 +8756,7 @@ GetSpellInfoAtlasLootDB = { }, [21913] = { ["name"] = "Blacksmithing: Edge of Winter", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 17704, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 10}, [2] = {3829}, @@ -14134,13 +8767,7 @@ GetSpellInfoAtlasLootDB = { }, [3503] = { ["name"] = "Blacksmithing: Golden Scale Coif", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3837, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 8}, [2] = {3577, 2}, @@ -14149,13 +8776,7 @@ GetSpellInfoAtlasLootDB = { }, [15973] = { ["name"] = "Blacksmithing: Searing Golden Blade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 12260, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 10}, [2] = {3577, 4}, @@ -14165,13 +8786,7 @@ GetSpellInfoAtlasLootDB = { }, [3511] = { ["name"] = "Blacksmithing: Golden Scale Cuirass", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 3845, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 12}, [2] = {3577, 2}, @@ -14181,39 +8796,21 @@ GetSpellInfoAtlasLootDB = { }, [9920] = { ["name"] = "Blacksmithing: Solid Grinding Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 7966, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7912, 4}, }, }, [9918] = { ["name"] = "Blacksmithing: Solid Sharpening Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7964, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7912}, }, }, [9921] = { ["name"] = "Blacksmithing: Solid Weightstone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", - ["craftItem"] = 7964, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", + ["craftItem"] = 7965, ["reagents"] = { [1] = {7912}, [2] = {4306}, @@ -14221,13 +8818,8 @@ GetSpellInfoAtlasLootDB = { }, [19668] = { ["name"] = "Blacksmithing: Truesilver Skeleton Key", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 15871, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6037}, [2] = {7966}, @@ -14235,13 +8827,7 @@ GetSpellInfoAtlasLootDB = { }, [14380] = { ["name"] = "Blacksmithing: Truesilver Rod", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 11144, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6037}, [2] = {3486}, @@ -14249,13 +8835,7 @@ GetSpellInfoAtlasLootDB = { }, [3497] = { ["name"] = "Blacksmithing: Frost Tiger Blade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3854, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 8}, [2] = {3466, 2}, @@ -14267,13 +8847,7 @@ GetSpellInfoAtlasLootDB = { }, [3515] = { ["name"] = "Blacksmithing: Golden Scale Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3847, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 10}, [2] = {3577, 4}, @@ -14283,13 +8857,7 @@ GetSpellInfoAtlasLootDB = { }, [3500] = { ["name"] = "Blacksmithing: Shadow Crescent Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 3856, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 10}, [2] = {3466, 2}, @@ -14301,13 +8869,7 @@ GetSpellInfoAtlasLootDB = { }, [9916] = { ["name"] = "Blacksmithing: Steel Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7963, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 16}, [2] = {3486, 3}, @@ -14315,13 +8877,7 @@ GetSpellInfoAtlasLootDB = { }, [11454] = { ["name"] = "Blacksmithing: Inlaid Mithril Cylinder", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 3, - ["text"] = "", ["craftItem"] = 9060, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 5}, [2] = {3577}, @@ -14330,13 +8886,7 @@ GetSpellInfoAtlasLootDB = { }, [11643] = { ["name"] = "Blacksmithing: Golden Scale Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 9366, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 10}, [2] = {3577, 4}, @@ -14346,13 +8896,7 @@ GetSpellInfoAtlasLootDB = { }, [9928] = { ["name"] = "Blacksmithing: Heavy Mithril Gauntlet", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7919, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 6}, [2] = {4338, 4}, @@ -14360,13 +8904,7 @@ GetSpellInfoAtlasLootDB = { }, [9926] = { ["name"] = "Blacksmithing: Heavy Mithril Shoulder", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7918, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {4234, 6}, @@ -14374,26 +8912,14 @@ GetSpellInfoAtlasLootDB = { }, [9959] = { ["name"] = "Blacksmithing: Heavy Mithril Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7930, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 16}, }, }, [9933] = { ["name"] = "Blacksmithing: Heavy Mithril Pants", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7921, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 10}, [2] = {1705, 2}, @@ -14401,26 +8927,14 @@ GetSpellInfoAtlasLootDB = { }, [9931] = { ["name"] = "Blacksmithing: Mithril Scale Pants", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7920, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, }, }, [9993] = { ["name"] = "Blacksmithing: Heavy Mithril Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7941, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {3864, 2}, @@ -14430,13 +8944,7 @@ GetSpellInfoAtlasLootDB = { }, [9937] = { ["name"] = "Blacksmithing: Mithril Scale Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7924, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {3864, 2}, @@ -14444,13 +8952,7 @@ GetSpellInfoAtlasLootDB = { }, [9939] = { ["name"] = "Blacksmithing: Mithril Shield Spike", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7967, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 4}, [2] = {6037, 2}, @@ -14459,13 +8961,7 @@ GetSpellInfoAtlasLootDB = { }, [9935] = { ["name"] = "Blacksmithing: Steel Plate Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7922, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 14}, [2] = {7966}, @@ -14473,13 +8969,7 @@ GetSpellInfoAtlasLootDB = { }, [9950] = { ["name"] = "Blacksmithing: Ornate Mithril Gloves", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7927, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 10}, [2] = {4338, 6}, @@ -14489,13 +8979,7 @@ GetSpellInfoAtlasLootDB = { }, [9945] = { ["name"] = "Blacksmithing: Ornate Mithril Pants", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7926, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {6037}, @@ -14505,13 +8989,7 @@ GetSpellInfoAtlasLootDB = { }, [9995] = { ["name"] = "Blacksmithing: Blue Glittering Axe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7942, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 16}, [2] = {7909, 2}, @@ -14521,13 +8999,7 @@ GetSpellInfoAtlasLootDB = { }, [9952] = { ["name"] = "Blacksmithing: Ornate Mithril Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7928, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {6037}, @@ -14536,13 +9008,7 @@ GetSpellInfoAtlasLootDB = { }, [9942] = { ["name"] = "Blacksmithing: Mithril Scale Gloves", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7925, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {4234, 6}, @@ -14551,13 +9017,7 @@ GetSpellInfoAtlasLootDB = { }, [9997] = { ["name"] = "Blacksmithing: Wicked Mithril Blade", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7943, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 14}, [2] = {6037, 4}, @@ -14567,13 +9027,7 @@ GetSpellInfoAtlasLootDB = { }, [9972] = { ["name"] = "Blacksmithing: Ornate Mithril Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7935, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 16}, [2] = {6037, 6}, @@ -14583,13 +9037,7 @@ GetSpellInfoAtlasLootDB = { }, [9979] = { ["name"] = "Blacksmithing: Ornate Mithril Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7936, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 14}, [2] = {6037, 2}, @@ -14600,13 +9048,7 @@ GetSpellInfoAtlasLootDB = { }, [9980] = { ["name"] = "Blacksmithing: Ornate Mithril Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7937, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 16}, [2] = {6037, 2}, @@ -14616,13 +9058,7 @@ GetSpellInfoAtlasLootDB = { }, [9961] = { ["name"] = "Blacksmithing: Mithril Coif", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7931, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 10}, [2] = {4338, 6}, @@ -14630,13 +9066,7 @@ GetSpellInfoAtlasLootDB = { }, [10001] = { ["name"] = "Blacksmithing: Big Black Mace", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7945, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 16}, [2] = {7971}, @@ -14647,13 +9077,7 @@ GetSpellInfoAtlasLootDB = { }, [9968] = { ["name"] = "Blacksmithing: Heavy Mithril Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7933, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 14}, [2] = {4304, 4}, @@ -14661,13 +9085,7 @@ GetSpellInfoAtlasLootDB = { }, [9966] = { ["name"] = "Blacksmithing: Mithril Scale Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7932, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 14}, [2] = {4304, 4}, @@ -14676,13 +9094,7 @@ GetSpellInfoAtlasLootDB = { }, [9964] = { ["name"] = "Blacksmithing: Mithril Spurs", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7969, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 4}, [2] = {7966, 3}, @@ -14690,13 +9102,7 @@ GetSpellInfoAtlasLootDB = { }, [10005] = { ["name"] = "Blacksmithing: Dazzling Mithril Rapier", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7944, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 14}, [2] = {7909}, @@ -14708,13 +9114,7 @@ GetSpellInfoAtlasLootDB = { }, [9970] = { ["name"] = "Blacksmithing: Heavy Mithril Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7934, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 14}, [2] = {7909}, @@ -14722,13 +9122,7 @@ GetSpellInfoAtlasLootDB = { }, [10009] = { ["name"] = "Blacksmithing: Runed Mithril Hammer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7946, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 18}, [2] = {7075, 2}, @@ -14738,39 +9132,21 @@ GetSpellInfoAtlasLootDB = { }, [16639] = { ["name"] = "Blacksmithing: Dense Grinding Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 12644, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12365, 4}, }, }, [16641] = { ["name"] = "Blacksmithing: Dense Sharpening Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 12404, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12365}, }, }, [16640] = { ["name"] = "Blacksmithing: Dense Weightstone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 12643, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12365}, [2] = {14047}, @@ -14778,13 +9154,7 @@ GetSpellInfoAtlasLootDB = { }, [16642] = { ["name"] = "Blacksmithing: Thorium Armor", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12405, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 16}, [2] = {12361}, @@ -14793,13 +9163,7 @@ GetSpellInfoAtlasLootDB = { }, [16643] = { ["name"] = "Blacksmithing: Thorium Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12406, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {11186, 4}, @@ -14807,13 +9171,7 @@ GetSpellInfoAtlasLootDB = { }, [16644] = { ["name"] = "Blacksmithing: Thorium Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12408, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {11184, 4}, @@ -14821,13 +9179,7 @@ GetSpellInfoAtlasLootDB = { }, [10013] = { ["name"] = "Blacksmithing: Ebon Shiv", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7947, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {6037, 6}, @@ -14838,13 +9190,7 @@ GetSpellInfoAtlasLootDB = { }, [16645] = { ["name"] = "Blacksmithing: Radiant Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12416, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 10}, [2] = {7077, 2}, @@ -14852,13 +9198,7 @@ GetSpellInfoAtlasLootDB = { }, [16647] = { ["name"] = "Blacksmithing: Imperial Plate Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12424, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 22}, [2] = {8170, 6}, @@ -14867,13 +9207,7 @@ GetSpellInfoAtlasLootDB = { }, [16646] = { ["name"] = "Blacksmithing: Imperial Plate Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12428, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 24}, [2] = {8170, 6}, @@ -14882,13 +9216,7 @@ GetSpellInfoAtlasLootDB = { }, [15293] = { ["name"] = "Blacksmithing: Dark Iron Mail", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 11606, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 10}, [2] = {7077, 2}, @@ -14896,13 +9224,7 @@ GetSpellInfoAtlasLootDB = { }, [16649] = { ["name"] = "Blacksmithing: Imperial Plate Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12425, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {7910}, @@ -14910,13 +9232,7 @@ GetSpellInfoAtlasLootDB = { }, [16648] = { ["name"] = "Blacksmithing: Radiant Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12415, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 18}, [2] = {7077, 2}, @@ -14925,13 +9241,7 @@ GetSpellInfoAtlasLootDB = { }, [16965] = { ["name"] = "Blacksmithing: Bleakwood Hew", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12769, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 30}, [2] = {12803, 6}, @@ -14943,13 +9253,7 @@ GetSpellInfoAtlasLootDB = { }, [16986] = { ["name"] = "Blacksmithing: Blood Talon", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12795, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 10}, [2] = {12360, 10}, @@ -14961,13 +9265,7 @@ GetSpellInfoAtlasLootDB = { }, [47032] = { ["name"] = "Blacksmithing: Hateforge Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60576, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {7078, 2}, @@ -14977,13 +9275,7 @@ GetSpellInfoAtlasLootDB = { }, [47034] = { ["name"] = "Blacksmithing: Hateforge Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60578, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {7077, 7}, @@ -14994,13 +9286,7 @@ GetSpellInfoAtlasLootDB = { }, [57113] = { ["name"] = "Blacksmithing: Thorium Spurs", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61182, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7081}, [2] = {12359, 8}, @@ -15010,13 +9296,7 @@ GetSpellInfoAtlasLootDB = { }, [47030] = { ["name"] = "Blacksmithing: Hateforge Cuirass", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60574, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 24}, [2] = {11371}, @@ -15028,13 +9308,7 @@ GetSpellInfoAtlasLootDB = { }, [47033] = { ["name"] = "Blacksmithing: Hateforge Grips", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60577, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {11371, 8}, @@ -15045,13 +9319,7 @@ GetSpellInfoAtlasLootDB = { }, [47029] = { ["name"] = "Blacksmithing: Hateforge Helmet", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60573, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 16}, [2] = {11371}, @@ -15061,13 +9329,7 @@ GetSpellInfoAtlasLootDB = { }, [47031] = { ["name"] = "Blacksmithing: Hateforge Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60575, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 16}, [2] = {11371}, @@ -15078,13 +9340,7 @@ GetSpellInfoAtlasLootDB = { }, [20201] = { ["name"] = "Blacksmithing: Arcanite Rod", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 16206, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 3}, [2] = {12644}, @@ -15092,13 +9348,8 @@ GetSpellInfoAtlasLootDB = { }, [19669] = { ["name"] = "Blacksmithing: Arcanite Skeleton Key", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 15872, ["craftQuantityMin"] = 2, - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360}, [2] = {12644}, @@ -15106,13 +9357,7 @@ GetSpellInfoAtlasLootDB = { }, [16651] = { ["name"] = "Blacksmithing: Thorium Shield Spike", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12645, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 4}, [2] = {12644, 4}, @@ -15121,13 +9366,7 @@ GetSpellInfoAtlasLootDB = { }, [16969] = { ["name"] = "Blacksmithing: Ornate Thorium Handaxe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12773, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12799, 2}, @@ -15137,13 +9376,7 @@ GetSpellInfoAtlasLootDB = { }, [15295] = { ["name"] = "Blacksmithing: Dark Iron Shoulders", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 11605, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 6}, [2] = {7077}, @@ -15151,13 +9384,7 @@ GetSpellInfoAtlasLootDB = { }, [16652] = { ["name"] = "Blacksmithing: Thorium Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12409, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {8170, 8}, @@ -15166,13 +9393,7 @@ GetSpellInfoAtlasLootDB = { }, [16653] = { ["name"] = "Blacksmithing: Thorium Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12410, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 24}, [2] = {7910}, @@ -15181,13 +9402,7 @@ GetSpellInfoAtlasLootDB = { }, [16971] = { ["name"] = "Blacksmithing: Huge Thorium Battleaxe", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12775, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12644, 6}, @@ -15196,13 +9411,7 @@ GetSpellInfoAtlasLootDB = { }, [23629] = { ["name"] = "Blacksmithing: Heavy Timbermaw Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19048, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 4}, [2] = {7076, 6}, @@ -15211,13 +9420,7 @@ GetSpellInfoAtlasLootDB = { }, [28463] = { ["name"] = "Blacksmithing: Ironvine Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22764, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 6}, [2] = {12803, 2}, @@ -15225,13 +9428,7 @@ GetSpellInfoAtlasLootDB = { }, [28461] = { ["name"] = "Blacksmithing: Ironvine Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22762, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 12}, [2] = {19726, 2}, @@ -15241,13 +9438,7 @@ GetSpellInfoAtlasLootDB = { }, [28462] = { ["name"] = "Blacksmithing: Ironvine Gloves", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22763, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 8}, [2] = {19726}, @@ -15256,13 +9447,7 @@ GetSpellInfoAtlasLootDB = { }, [27588] = { ["name"] = "Blacksmithing: Light Obsidian Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22195, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22202, 14}, [2] = {12810, 4}, @@ -15270,13 +9455,7 @@ GetSpellInfoAtlasLootDB = { }, [57026] = { ["name"] = "Blacksmithing: Mantle of Centaur Authority", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60908, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12810, 6}, @@ -15287,13 +9466,7 @@ GetSpellInfoAtlasLootDB = { }, [27589] = { ["name"] = "Blacksmithing: Black Grasp of the Destroyer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22194, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22203, 8}, [2] = {22202, 24}, @@ -15303,13 +9476,7 @@ GetSpellInfoAtlasLootDB = { }, [28244] = { ["name"] = "Blacksmithing: Icebane Bracers", - ["requires"] = AL["Icebellow Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22671, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 4}, [2] = {12359, 12}, @@ -15319,13 +9486,7 @@ GetSpellInfoAtlasLootDB = { }, [28242] = { ["name"] = "Blacksmithing: Icebane Breastplate", - ["requires"] = AL["Icebellow Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22669, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 7}, [2] = {12359, 16}, @@ -15335,13 +9496,7 @@ GetSpellInfoAtlasLootDB = { }, [28243] = { ["name"] = "Blacksmithing: Icebane Gauntlets", - ["requires"] = AL["Icebellow Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22670, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 5}, [2] = {12359, 12}, @@ -15351,13 +9506,7 @@ GetSpellInfoAtlasLootDB = { }, [27586] = { ["name"] = "Blacksmithing: Jagged Obsidian Shield", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22198, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22203, 8}, [2] = {22202, 24}, @@ -15367,13 +9516,7 @@ GetSpellInfoAtlasLootDB = { }, [27590] = { ["name"] = "Blacksmithing: Obsidian Mail Tunic", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22191, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22203, 15}, [2] = {22202, 36}, @@ -15384,13 +9527,7 @@ GetSpellInfoAtlasLootDB = { }, [27587] = { ["name"] = "Blacksmithing: Thick Obsidian Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22196, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22203, 18}, [2] = {22202, 40}, @@ -15401,13 +9538,7 @@ GetSpellInfoAtlasLootDB = { }, [54009] = { ["name"] = "Blacksmithing: Fiery Chain Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65039, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 14}, [2] = {17010, 6}, @@ -15416,13 +9547,7 @@ GetSpellInfoAtlasLootDB = { }, [57181] = { ["name"] = "Blacksmithing: Dreamsteel Belt Buckle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61785, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61216, 2}, [2] = {12644, 2}, @@ -15432,13 +9557,7 @@ GetSpellInfoAtlasLootDB = { }, [45471] = { ["name"] = "Blacksmithing: Dreamsteel Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61367, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61216, 8}, [2] = {12810, 8}, @@ -15449,13 +9568,7 @@ GetSpellInfoAtlasLootDB = { }, [45469] = { ["name"] = "Blacksmithing: Dreamsteel Bracers", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61366, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61216, 8}, [2] = {12810, 4}, @@ -15465,13 +9578,7 @@ GetSpellInfoAtlasLootDB = { }, [45467] = { ["name"] = "Blacksmithing: Dreamsteel Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61365, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61216, 14}, [2] = {12810, 8}, @@ -15481,13 +9588,7 @@ GetSpellInfoAtlasLootDB = { }, [45465] = { ["name"] = "Blacksmithing: Dreamsteel Mantle", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61364, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61216, 20}, [2] = {12810, 12}, @@ -15499,13 +9600,7 @@ GetSpellInfoAtlasLootDB = { }, [16654] = { ["name"] = "Blacksmithing: Radiant Gloves", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12418, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 18}, [2] = {7077, 4}, @@ -15513,13 +9608,7 @@ GetSpellInfoAtlasLootDB = { }, [16656] = { ["name"] = "Blacksmithing: Radiant Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12419, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 14}, [2] = {7077, 4}, @@ -15527,13 +9616,7 @@ GetSpellInfoAtlasLootDB = { }, [16660] = { ["name"] = "Blacksmithing: Dawnbringer Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12625, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12360, 4}, @@ -15543,13 +9626,7 @@ GetSpellInfoAtlasLootDB = { }, [23632] = { ["name"] = "Blacksmithing: Girdle of the Dawn", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19051, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 8}, [2] = {6037, 6}, @@ -15558,13 +9635,7 @@ GetSpellInfoAtlasLootDB = { }, [23628] = { ["name"] = "Blacksmithing: Heavy Timbermaw Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19043, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {7076, 3}, @@ -15573,13 +9644,7 @@ GetSpellInfoAtlasLootDB = { }, [16984] = { ["name"] = "Blacksmithing: Volcanic Hammer", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12792, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 30}, [2] = {7077, 4}, @@ -15589,13 +9654,7 @@ GetSpellInfoAtlasLootDB = { }, [16657] = { ["name"] = "Blacksmithing: Imperial Plate Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12426, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 34}, [2] = {7910}, @@ -15604,13 +9663,7 @@ GetSpellInfoAtlasLootDB = { }, [16658] = { ["name"] = "Blacksmithing: Imperial Plate Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12427, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 34}, [2] = {7910, 2}, @@ -15618,13 +9671,7 @@ GetSpellInfoAtlasLootDB = { }, [16659] = { ["name"] = "Blacksmithing: Radiant Circlet", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12417, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 18}, [2] = {7910, 4}, @@ -15632,13 +9679,7 @@ GetSpellInfoAtlasLootDB = { }, [22757] = { ["name"] = "Blacksmithing: Elemental Sharpening Stone", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 18262, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7067, 2}, [2] = {12365, 3}, @@ -15646,13 +9687,7 @@ GetSpellInfoAtlasLootDB = { }, [16663] = { ["name"] = "Blacksmithing: Imperial Plate Chest", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12422, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {7910, 2}, @@ -15660,13 +9695,7 @@ GetSpellInfoAtlasLootDB = { }, [16730] = { ["name"] = "Blacksmithing: Imperial Plate Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12429, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 44}, [2] = {7910, 2}, @@ -15674,13 +9703,7 @@ GetSpellInfoAtlasLootDB = { }, [16725] = { ["name"] = "Blacksmithing: Radiant Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12420, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {7077, 4}, @@ -15688,13 +9711,7 @@ GetSpellInfoAtlasLootDB = { }, [16731] = { ["name"] = "Blacksmithing: Runic Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12613, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12360, 2}, @@ -15703,13 +9720,7 @@ GetSpellInfoAtlasLootDB = { }, [16665] = { ["name"] = "Blacksmithing: Runic Plate Boots", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12611, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12360, 2}, @@ -15718,13 +9729,7 @@ GetSpellInfoAtlasLootDB = { }, [16726] = { ["name"] = "Blacksmithing: Runic Plate Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12612, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 30}, [2] = {12360, 2}, @@ -15734,13 +9739,7 @@ GetSpellInfoAtlasLootDB = { }, [16732] = { ["name"] = "Blacksmithing: Runic Plate Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12614, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 40}, [2] = {12360, 2}, @@ -15749,13 +9748,7 @@ GetSpellInfoAtlasLootDB = { }, [16664] = { ["name"] = "Blacksmithing: Runic Plate Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12610, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {12360, 2}, @@ -15764,13 +9757,7 @@ GetSpellInfoAtlasLootDB = { }, [16662] = { ["name"] = "Blacksmithing: Thorium Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12414, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 26}, [2] = {11186, 4}, @@ -15778,13 +9765,7 @@ GetSpellInfoAtlasLootDB = { }, [24136] = { ["name"] = "Blacksmithing: Bloodsoul Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19690, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {19774, 10}, @@ -15794,13 +9775,7 @@ GetSpellInfoAtlasLootDB = { }, [24137] = { ["name"] = "Blacksmithing: Bloodsoul Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19691, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 16}, [2] = {19774, 8}, @@ -15810,13 +9785,7 @@ GetSpellInfoAtlasLootDB = { }, [24138] = { ["name"] = "Blacksmithing: Bloodsoul Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", - ["craftItem"] = 19691, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", + ["craftItem"] = 19692, ["reagents"] = { [1] = {12359, 12}, [2] = {19774, 6}, @@ -15826,13 +9795,7 @@ GetSpellInfoAtlasLootDB = { }, [24914] = { ["name"] = "Blacksmithing: Darkrune Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20550, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {20520, 10}, @@ -15841,13 +9804,7 @@ GetSpellInfoAtlasLootDB = { }, [24912] = { ["name"] = "Blacksmithing: Darkrune Gauntlets", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20549, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {20520, 6}, @@ -15857,13 +9814,7 @@ GetSpellInfoAtlasLootDB = { }, [24913] = { ["name"] = "Blacksmithing: Darkrune Helm", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20551, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 16}, [2] = {20520, 8}, @@ -15873,13 +9824,7 @@ GetSpellInfoAtlasLootDB = { }, [24139] = { ["name"] = "Blacksmithing: Darksoul Breastplate", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19693, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {19774, 14}, @@ -15888,13 +9833,7 @@ GetSpellInfoAtlasLootDB = { }, [24140] = { ["name"] = "Blacksmithing: Darksoul Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19694, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 18}, [2] = {19774, 12}, @@ -15903,13 +9842,7 @@ GetSpellInfoAtlasLootDB = { }, [24141] = { ["name"] = "Blacksmithing: Darksoul Shoulders", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19695, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 16}, [2] = {19774, 10}, @@ -15918,13 +9851,7 @@ GetSpellInfoAtlasLootDB = { }, [23633] = { ["name"] = "Blacksmithing: Gloves of the Dawn", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19057, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 2}, [2] = {6037, 10}, @@ -15933,13 +9860,7 @@ GetSpellInfoAtlasLootDB = { }, [16987] = { ["name"] = "Blacksmithing: Darkspear", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 12802, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 20}, [2] = {12804, 20}, @@ -15950,13 +9871,7 @@ GetSpellInfoAtlasLootDB = { }, [27585] = { ["name"] = "Blacksmithing: Heavy Obsidian Belt", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22197, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22202, 14}, [2] = {12655, 4}, @@ -15965,13 +9880,7 @@ GetSpellInfoAtlasLootDB = { }, [9957] = { ["name"] = "Blacksmithing: Orcish War Leggings", - ["requires"] = AL["Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 7929, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {7067}, @@ -15979,13 +9888,7 @@ GetSpellInfoAtlasLootDB = { }, [45455] = { ["name"] = "Leatherworking: Dreamhide", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 61229, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61198}, [2] = {8170}, @@ -15994,13 +9897,7 @@ GetSpellInfoAtlasLootDB = { }, [45453] = { ["name"] = "Tailoring: Dreamthread", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 61230, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61198}, [2] = {14341}, @@ -16009,39 +9906,21 @@ GetSpellInfoAtlasLootDB = { }, [2881] = { ["name"] = "Leatherworking: Light Leather", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2318, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2934, 3}, }, }, [2152] = { ["name"] = "Leatherworking: Light Armor Kit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2304, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318}, }, }, [2149] = { ["name"] = "Leatherworking: Handstitched Leather Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2302, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 2}, [2] = {2320}, @@ -16049,13 +9928,7 @@ GetSpellInfoAtlasLootDB = { }, [9059] = { ["name"] = "Leatherworking: Handstitched Leather Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7277, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 2}, [2] = {2320, 3}, @@ -16063,13 +9936,7 @@ GetSpellInfoAtlasLootDB = { }, [9058] = { ["name"] = "Leatherworking: Handstitched Leather Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7276, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 2}, [2] = {2320}, @@ -16077,13 +9944,7 @@ GetSpellInfoAtlasLootDB = { }, [7126] = { ["name"] = "Leatherworking: Handstitched Leather Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 5957, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 3}, [2] = {2320}, @@ -16091,13 +9952,7 @@ GetSpellInfoAtlasLootDB = { }, [2153] = { ["name"] = "Leatherworking: Handstitched Leather Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2303, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 4}, [2] = {2320}, @@ -16105,13 +9960,7 @@ GetSpellInfoAtlasLootDB = { }, [3753] = { ["name"] = "Leatherworking: Handstitched Leather Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4237, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 6}, [2] = {2320}, @@ -16119,13 +9968,7 @@ GetSpellInfoAtlasLootDB = { }, [9060] = { ["name"] = "Leatherworking: Light Leather Quiver", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7278, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 4}, [2] = {2320, 2}, @@ -16133,13 +9976,7 @@ GetSpellInfoAtlasLootDB = { }, [9062] = { ["name"] = "Leatherworking: Small Leather Ammo Pouch", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7279, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 3}, [2] = {2320, 4}, @@ -16147,13 +9984,7 @@ GetSpellInfoAtlasLootDB = { }, [3816] = { ["name"] = "Leatherworking: Cured Light Hide", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4231, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {783}, [2] = {4289}, @@ -16161,13 +9992,7 @@ GetSpellInfoAtlasLootDB = { }, [9064] = { ["name"] = "Leatherworking: Rugged Leather Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7280, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 5}, [2] = {2320, 5}, @@ -16175,13 +10000,7 @@ GetSpellInfoAtlasLootDB = { }, [2160] = { ["name"] = "Leatherworking: Embossed Leather Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2300, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 8}, [2] = {2320, 4}, @@ -16189,13 +10008,7 @@ GetSpellInfoAtlasLootDB = { }, [5244] = { ["name"] = "Leatherworking: Kodo Hide Bag", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 5081, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5082, 3}, [2] = {2318, 4}, @@ -16204,13 +10017,7 @@ GetSpellInfoAtlasLootDB = { }, [2161] = { ["name"] = "Leatherworking: Embossed Leather Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2309, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 8}, [2] = {2320, 5}, @@ -16218,13 +10025,7 @@ GetSpellInfoAtlasLootDB = { }, [3756] = { ["name"] = "Leatherworking: Embossed Leather Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4239, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 3}, [2] = {2320, 2}, @@ -16232,13 +10033,7 @@ GetSpellInfoAtlasLootDB = { }, [2162] = { ["name"] = "Leatherworking: Embossed Leather Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2310, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 5}, [2] = {2320, 2}, @@ -16246,13 +10041,7 @@ GetSpellInfoAtlasLootDB = { }, [2163] = { ["name"] = "Leatherworking: White Leather Jerkin", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2311, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 8}, [2] = {2320, 2}, @@ -16261,13 +10050,7 @@ GetSpellInfoAtlasLootDB = { }, [9065] = { ["name"] = "Leatherworking: Light Leather Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7281, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 6}, [2] = {2320, 4}, @@ -16275,13 +10058,7 @@ GetSpellInfoAtlasLootDB = { }, [3759] = { ["name"] = "Leatherworking: Embossed Leather Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4242, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4231}, [2] = {2318, 6}, @@ -16290,13 +10067,7 @@ GetSpellInfoAtlasLootDB = { }, [2164] = { ["name"] = "Leatherworking: Fine Leather Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2312, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4231}, [2] = {2318, 4}, @@ -16305,13 +10076,7 @@ GetSpellInfoAtlasLootDB = { }, [45069] = { ["name"] = "Leatherworking: Lynxstep Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 51284, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 8}, [2] = {2321, 2}, @@ -16321,13 +10086,7 @@ GetSpellInfoAtlasLootDB = { }, [3763] = { ["name"] = "Leatherworking: Fine Leather Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4246, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 6}, [2] = {2320, 2}, @@ -16335,13 +10094,7 @@ GetSpellInfoAtlasLootDB = { }, [2159] = { ["name"] = "Leatherworking: Fine Leather Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2308, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 10}, [2] = {2320, 2}, @@ -16349,13 +10102,7 @@ GetSpellInfoAtlasLootDB = { }, [3761] = { ["name"] = "Leatherworking: Fine Leather Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4243, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4231, 3}, [2] = {2318, 6}, @@ -16364,13 +10111,7 @@ GetSpellInfoAtlasLootDB = { }, [8322] = { ["name"] = "Leatherworking: Moonglow Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6709, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 6}, [2] = {4231}, @@ -16380,13 +10121,7 @@ GetSpellInfoAtlasLootDB = { }, [7953] = { ["name"] = "Leatherworking: Deviate Scale Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 6466, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6470, 8}, [2] = {4231}, @@ -16395,13 +10130,7 @@ GetSpellInfoAtlasLootDB = { }, [6702] = { ["name"] = "Leatherworking: Murloc Scale Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 5780, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5784, 8}, [2] = {2318, 6}, @@ -16410,13 +10139,7 @@ GetSpellInfoAtlasLootDB = { }, [2158] = { ["name"] = "Leatherworking: Fine Leather Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2307, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 7}, [2] = {2320, 2}, @@ -16424,13 +10147,7 @@ GetSpellInfoAtlasLootDB = { }, [9068] = { ["name"] = "Leatherworking: Light Leather Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 7282, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 10}, [2] = {4231}, @@ -16439,13 +10156,7 @@ GetSpellInfoAtlasLootDB = { }, [6703] = { ["name"] = "Leatherworking: Murloc Scale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 5781, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5784, 12}, [2] = {4231}, @@ -16455,26 +10166,14 @@ GetSpellInfoAtlasLootDB = { }, [20648] = { ["name"] = "Leatherworking: Medium Leather", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2319, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2318, 4}, }, }, [3817] = { ["name"] = "Leatherworking: Cured Medium Hide", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4233, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4232}, [2] = {4289}, @@ -16482,13 +10181,7 @@ GetSpellInfoAtlasLootDB = { }, [2165] = { ["name"] = "Leatherworking: Medium Armor Kit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 2313, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 4}, [2] = {2320}, @@ -16496,13 +10189,7 @@ GetSpellInfoAtlasLootDB = { }, [9070] = { ["name"] = "Leatherworking: Black Whelp Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7283, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7286, 12}, [2] = {2319, 4}, @@ -16511,13 +10198,7 @@ GetSpellInfoAtlasLootDB = { }, [24940] = { ["name"] = "Leatherworking: Black Whelp Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 20575, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 8}, [2] = {7286, 8}, @@ -16527,13 +10208,7 @@ GetSpellInfoAtlasLootDB = { }, [2169] = { ["name"] = "Leatherworking: Dark Leather Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2317, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 6}, [2] = {2321}, @@ -16542,13 +10217,7 @@ GetSpellInfoAtlasLootDB = { }, [3762] = { ["name"] = "Leatherworking: Hillman's Leather Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4244, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4243}, [2] = {4231, 2}, @@ -16557,13 +10226,7 @@ GetSpellInfoAtlasLootDB = { }, [2167] = { ["name"] = "Leatherworking: Dark Leather Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 2315, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 4}, [2] = {2321, 2}, @@ -16572,13 +10235,7 @@ GetSpellInfoAtlasLootDB = { }, [7954] = { ["name"] = "Leatherworking: Deviate Scale Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6467, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6471, 2}, [2] = {6470, 6}, @@ -16587,13 +10244,7 @@ GetSpellInfoAtlasLootDB = { }, [7133] = { ["name"] = "Leatherworking: Fine Leather Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 5958, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 8}, [2] = {2997}, @@ -16602,13 +10253,7 @@ GetSpellInfoAtlasLootDB = { }, [2168] = { ["name"] = "Leatherworking: Dark Leather Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2316, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 8}, [2] = {2321}, @@ -16617,13 +10262,7 @@ GetSpellInfoAtlasLootDB = { }, [7955] = { ["name"] = "Leatherworking: Deviate Scale Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 6468, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6471, 10}, [2] = {6470, 10}, @@ -16632,13 +10271,7 @@ GetSpellInfoAtlasLootDB = { }, [7135] = { ["name"] = "Leatherworking: Dark Leather Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 5961, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 12}, [2] = {4340}, @@ -16647,13 +10280,7 @@ GetSpellInfoAtlasLootDB = { }, [3767] = { ["name"] = "Leatherworking: Hillman's Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4250, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 8}, [2] = {3383}, @@ -16662,13 +10289,7 @@ GetSpellInfoAtlasLootDB = { }, [9074] = { ["name"] = "Leatherworking: Nimble Leather Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 7285, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2457}, [2] = {2319, 6}, @@ -16677,13 +10298,7 @@ GetSpellInfoAtlasLootDB = { }, [9072] = { ["name"] = "Leatherworking: Red Whelp Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7284, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7287, 6}, [2] = {2319, 4}, @@ -16692,13 +10307,7 @@ GetSpellInfoAtlasLootDB = { }, [2166] = { ["name"] = "Leatherworking: Toughened Leather Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 2314, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 10}, [2] = {4231, 2}, @@ -16707,13 +10316,7 @@ GetSpellInfoAtlasLootDB = { }, [3765] = { ["name"] = "Leatherworking: Dark Leather Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4248, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2312}, [2] = {4233}, @@ -16723,13 +10326,7 @@ GetSpellInfoAtlasLootDB = { }, [3766] = { ["name"] = "Leatherworking: Dark Leather Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4249, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2312}, [2] = {4233}, @@ -16739,13 +10336,7 @@ GetSpellInfoAtlasLootDB = { }, [9145] = { ["name"] = "Leatherworking: Fletcher's Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7348, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 8}, [2] = {5116, 4}, @@ -16754,13 +10345,7 @@ GetSpellInfoAtlasLootDB = { }, [3768] = { ["name"] = "Leatherworking: Hillman's Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4251, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4233}, [2] = {2319, 4}, @@ -16769,13 +10354,7 @@ GetSpellInfoAtlasLootDB = { }, [3770] = { ["name"] = "Leatherworking: Toughened Leather Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4253, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 4}, [2] = {4233, 2}, @@ -16786,13 +10365,7 @@ GetSpellInfoAtlasLootDB = { }, [9147] = { ["name"] = "Leatherworking: Earthen Leather Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7352, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 6}, [2] = {7067}, @@ -16801,13 +10374,7 @@ GetSpellInfoAtlasLootDB = { }, [9146] = { ["name"] = "Leatherworking: Herbalist's Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7349, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 8}, [2] = {3356, 4}, @@ -16816,13 +10383,7 @@ GetSpellInfoAtlasLootDB = { }, [3769] = { ["name"] = "Leatherworking: Dark Leather Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4252, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 12}, [2] = {3390}, @@ -16832,13 +10393,7 @@ GetSpellInfoAtlasLootDB = { }, [9148] = { ["name"] = "Leatherworking: Pilferer's Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7358, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 10}, [2] = {5373, 2}, @@ -16847,13 +10402,7 @@ GetSpellInfoAtlasLootDB = { }, [9149] = { ["name"] = "Leatherworking: Heavy Earthen Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7359, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 12}, [2] = {7067, 2}, @@ -16863,13 +10412,7 @@ GetSpellInfoAtlasLootDB = { }, [3764] = { ["name"] = "Leatherworking: Hillman's Leather Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4247, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 14}, [2] = {2321, 4}, @@ -16877,26 +10420,14 @@ GetSpellInfoAtlasLootDB = { }, [20649] = { ["name"] = "Leatherworking: Heavy Leather", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4234, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2319, 5}, }, }, [23190] = { ["name"] = "Leatherworking: Heavy Leather Ball", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 18662, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 2}, [2] = {2321}, @@ -16904,13 +10435,7 @@ GetSpellInfoAtlasLootDB = { }, [3818] = { ["name"] = "Leatherworking: Cured Heavy Hide", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 4236, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4235}, [2] = {4289, 3}, @@ -16918,13 +10443,7 @@ GetSpellInfoAtlasLootDB = { }, [3771] = { ["name"] = "Leatherworking: Barbaric Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 4254, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 6}, [2] = {5637, 2}, @@ -16933,13 +10452,7 @@ GetSpellInfoAtlasLootDB = { }, [9194] = { ["name"] = "Leatherworking: Heavy Leather Ammo Pouch", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7372, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 8}, [2] = {2321, 2}, @@ -16947,13 +10460,7 @@ GetSpellInfoAtlasLootDB = { }, [9193] = { ["name"] = "Leatherworking: Heavy Quiver", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 7371, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 8}, [2] = {2321, 2}, @@ -16961,13 +10468,7 @@ GetSpellInfoAtlasLootDB = { }, [3780] = { ["name"] = "Leatherworking: Heavy Armor Kit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 4265, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 5}, [2] = {2321}, @@ -16975,13 +10476,7 @@ GetSpellInfoAtlasLootDB = { }, [3760] = { ["name"] = "Leatherworking: Hillman's Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 3719, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 5}, [2] = {2321, 2}, @@ -16989,13 +10484,7 @@ GetSpellInfoAtlasLootDB = { }, [23399] = { ["name"] = "Leatherworking: Barbaric Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 18948, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 8}, [2] = {4236, 2}, @@ -17006,13 +10495,7 @@ GetSpellInfoAtlasLootDB = { }, [3772] = { ["name"] = "Leatherworking: Green Leather Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4255, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 9}, [2] = {2605, 2}, @@ -17021,13 +10504,7 @@ GetSpellInfoAtlasLootDB = { }, [3774] = { ["name"] = "Leatherworking: Green Leather Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4257, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4236}, [2] = {4234, 5}, @@ -17038,13 +10515,7 @@ GetSpellInfoAtlasLootDB = { }, [7147] = { ["name"] = "Leatherworking: Guardian Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 5962, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 12}, [2] = {4305, 2}, @@ -17053,13 +10524,7 @@ GetSpellInfoAtlasLootDB = { }, [9195] = { ["name"] = "Leatherworking: Dusky Leather Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 7373, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 10}, [2] = {2325}, @@ -17068,13 +10533,7 @@ GetSpellInfoAtlasLootDB = { }, [4097] = { ["name"] = "Leatherworking: Raptor Hide Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4456, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4461, 4}, [2] = {4234, 4}, @@ -17083,13 +10542,7 @@ GetSpellInfoAtlasLootDB = { }, [4096] = { ["name"] = "Leatherworking: Raptor Hide Harness", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4455, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4461, 6}, [2] = {4234, 4}, @@ -17098,13 +10551,7 @@ GetSpellInfoAtlasLootDB = { }, [7149] = { ["name"] = "Leatherworking: Barbaric Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 5963, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 10}, [2] = {2321, 2}, @@ -17113,13 +10560,7 @@ GetSpellInfoAtlasLootDB = { }, [3775] = { ["name"] = "Leatherworking: Guardian Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4258, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4236, 2}, [2] = {4234, 4}, @@ -17129,13 +10570,7 @@ GetSpellInfoAtlasLootDB = { }, [6704] = { ["name"] = "Leatherworking: Thick Murloc Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 5782, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5785, 12}, [2] = {4236}, @@ -17145,13 +10580,7 @@ GetSpellInfoAtlasLootDB = { }, [7151] = { ["name"] = "Leatherworking: Barbaric Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 5964, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 8}, [2] = {4236}, @@ -17160,13 +10589,7 @@ GetSpellInfoAtlasLootDB = { }, [9196] = { ["name"] = "Leatherworking: Dusky Leather Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7374, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 10}, [2] = {3824}, @@ -17175,13 +10598,7 @@ GetSpellInfoAtlasLootDB = { }, [9197] = { ["name"] = "Leatherworking: Green Whelp Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7375, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7392, 4}, [2] = {4234, 10}, @@ -17190,13 +10607,7 @@ GetSpellInfoAtlasLootDB = { }, [3773] = { ["name"] = "Leatherworking: Guardian Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4256, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4236, 2}, [2] = {4234, 12}, @@ -17206,13 +10617,7 @@ GetSpellInfoAtlasLootDB = { }, [9198] = { ["name"] = "Leatherworking: Frost Leather Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7377, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4236, 2}, [2] = {4234, 12}, @@ -17222,13 +10627,7 @@ GetSpellInfoAtlasLootDB = { }, [3776] = { ["name"] = "Leatherworking: Green Leather Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4259, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4236, 2}, [2] = {4234, 6}, @@ -17238,13 +10637,7 @@ GetSpellInfoAtlasLootDB = { }, [3778] = { ["name"] = "Leatherworking: Gem-studded Leather Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 4262, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4236, 4}, [2] = {5500, 2}, @@ -17255,13 +10648,7 @@ GetSpellInfoAtlasLootDB = { }, [9201] = { ["name"] = "Leatherworking: Dusky Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7378, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 16}, [2] = {2325}, @@ -17270,13 +10657,7 @@ GetSpellInfoAtlasLootDB = { }, [7153] = { ["name"] = "Leatherworking: Guardian Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 5965, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 14}, [2] = {4305, 2}, @@ -17285,13 +10666,7 @@ GetSpellInfoAtlasLootDB = { }, [21943] = { ["name"] = "Leatherworking: Gloves of the Greatfather", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 17721, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 8}, [2] = {7067, 4}, @@ -17300,13 +10675,7 @@ GetSpellInfoAtlasLootDB = { }, [9202] = { ["name"] = "Leatherworking: Green Whelp Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7386, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7392, 6}, [2] = {4234, 8}, @@ -17315,13 +10684,7 @@ GetSpellInfoAtlasLootDB = { }, [6705] = { ["name"] = "Leatherworking: Murloc Scale Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 5783, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {5785, 16}, [2] = {4236}, @@ -17331,13 +10694,7 @@ GetSpellInfoAtlasLootDB = { }, [6661] = { ["name"] = "Leatherworking: Barbaric Harness", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 5739, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 14}, [2] = {2321, 2}, @@ -17346,13 +10703,7 @@ GetSpellInfoAtlasLootDB = { }, [7156] = { ["name"] = "Leatherworking: Guardian Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 5966, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 4}, [2] = {4236}, @@ -17361,13 +10712,7 @@ GetSpellInfoAtlasLootDB = { }, [9206] = { ["name"] = "Leatherworking: Dusky Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7387, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 10}, [2] = {4305, 2}, @@ -17377,13 +10722,7 @@ GetSpellInfoAtlasLootDB = { }, [3777] = { ["name"] = "Leatherworking: Guardian Leather Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4260, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 6}, [2] = {4236, 2}, @@ -17392,13 +10731,7 @@ GetSpellInfoAtlasLootDB = { }, [10482] = { ["name"] = "Leatherworking: Cured Thick Hide", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 8172, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8169}, [2] = {8150}, @@ -17406,26 +10739,14 @@ GetSpellInfoAtlasLootDB = { }, [20650] = { ["name"] = "Leatherworking: Thick Leather", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 4304, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 6}, }, }, [22711] = { ["name"] = "Leatherworking: Shadowskin Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 18238, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 6}, [2] = {7428, 8}, @@ -17437,13 +10758,7 @@ GetSpellInfoAtlasLootDB = { }, [3779] = { ["name"] = "Leatherworking: Barbaric Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 4264, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 6}, [2] = {4236, 2}, @@ -17455,13 +10770,7 @@ GetSpellInfoAtlasLootDB = { }, [46620] = { ["name"] = "Leatherworking: Grifter's Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83405, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 7}, [2] = {4291, 3}, @@ -17469,13 +10778,7 @@ GetSpellInfoAtlasLootDB = { }, [46621] = { ["name"] = "Leatherworking: Grifter's Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83404, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 6}, [2] = {4291, 2}, @@ -17483,13 +10786,7 @@ GetSpellInfoAtlasLootDB = { }, [46622] = { ["name"] = "Leatherworking: Grifter's Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83403, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 10}, [2] = {4291}, @@ -17498,13 +10795,7 @@ GetSpellInfoAtlasLootDB = { }, [46623] = { ["name"] = "Leatherworking: Grifter's Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83402, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 10}, [2] = {4234, 2}, @@ -17514,13 +10805,7 @@ GetSpellInfoAtlasLootDB = { }, [46624] = { ["name"] = "Leatherworking: Grifter's Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83401, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 12}, [2] = {3575, 2}, @@ -17530,13 +10815,7 @@ GetSpellInfoAtlasLootDB = { }, [46625] = { ["name"] = "Leatherworking: Grifter's Cover", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 83400, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 8}, [2] = {4338, 4}, @@ -17546,13 +10825,7 @@ GetSpellInfoAtlasLootDB = { }, [10490] = { ["name"] = "Leatherworking: Comfortable Leather Hat", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 8174, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 12}, [2] = {4236, 2}, @@ -17561,13 +10834,7 @@ GetSpellInfoAtlasLootDB = { }, [47015] = { ["name"] = "Leatherworking: Primalist's Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 81061, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {14047, 4}, @@ -17576,13 +10843,7 @@ GetSpellInfoAtlasLootDB = { }, [47016] = { ["name"] = "Leatherworking: Primalist's Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 81062, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {12803}, @@ -17591,13 +10852,7 @@ GetSpellInfoAtlasLootDB = { }, [47017] = { ["name"] = "Leatherworking: Primalist's Headdress", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 81063, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 10}, [2] = {7080}, @@ -17607,13 +10862,7 @@ GetSpellInfoAtlasLootDB = { }, [47018] = { ["name"] = "Leatherworking: Primalist's Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 81064, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {8343, 2}, @@ -17622,13 +10871,7 @@ GetSpellInfoAtlasLootDB = { }, [47019] = { ["name"] = "Leatherworking: Primalist's Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 81066, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 24}, [2] = {12803, 4}, @@ -17638,13 +10881,7 @@ GetSpellInfoAtlasLootDB = { }, [47020] = { ["name"] = "Leatherworking: Primalist's Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 81065, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 8}, [2] = {14047, 4}, @@ -17653,13 +10890,7 @@ GetSpellInfoAtlasLootDB = { }, [9207] = { ["name"] = "Leatherworking: Dusky Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7390, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 8}, [2] = {7428, 2}, @@ -17669,13 +10900,7 @@ GetSpellInfoAtlasLootDB = { }, [9208] = { ["name"] = "Leatherworking: Swift Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 7391, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4234, 10}, [2] = {2359, 2}, @@ -17685,13 +10910,7 @@ GetSpellInfoAtlasLootDB = { }, [10487] = { ["name"] = "Leatherworking: Thick Armor Kit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 8173, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 5}, [2] = {4291}, @@ -17699,13 +10918,7 @@ GetSpellInfoAtlasLootDB = { }, [10507] = { ["name"] = "Leatherworking: Nightscape Headband", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8176, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 5}, [2] = {4291, 2}, @@ -17713,13 +10926,7 @@ GetSpellInfoAtlasLootDB = { }, [10499] = { ["name"] = "Leatherworking: Nightscape Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8175, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 7}, [2] = {4291, 2}, @@ -17727,13 +10934,7 @@ GetSpellInfoAtlasLootDB = { }, [10509] = { ["name"] = "Leatherworking: Turtle Scale Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 8187, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 6}, [2] = {8167, 8}, @@ -17742,13 +10943,7 @@ GetSpellInfoAtlasLootDB = { }, [10516] = { ["name"] = "Leatherworking: Nightscape Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 45, - ["text"] = "", ["craftItem"] = 8192, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 8}, [2] = {4338, 6}, @@ -17757,13 +10952,7 @@ GetSpellInfoAtlasLootDB = { }, [10518] = { ["name"] = "Leatherworking: Turtle Scale Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8198, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 8}, [2] = {8167, 12}, @@ -17772,13 +10961,7 @@ GetSpellInfoAtlasLootDB = { }, [10511] = { ["name"] = "Leatherworking: Turtle Scale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8189, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 6}, [2] = {8167, 12}, @@ -17787,13 +10970,7 @@ GetSpellInfoAtlasLootDB = { }, [10520] = { ["name"] = "Leatherworking: Big Voodoo Robe", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8200, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 10}, [2] = {8151, 4}, @@ -17802,13 +10979,7 @@ GetSpellInfoAtlasLootDB = { }, [10531] = { ["name"] = "Leatherworking: Big Voodoo Mask", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8201, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 8}, [2] = {8151, 6}, @@ -17817,13 +10988,7 @@ GetSpellInfoAtlasLootDB = { }, [10533] = { ["name"] = "Leatherworking: Tough Scorpid Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8205, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 10}, [2] = {8151, 4}, @@ -17832,13 +10997,7 @@ GetSpellInfoAtlasLootDB = { }, [10525] = { ["name"] = "Leatherworking: Tough Scorpid Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8203, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 12}, [2] = {8151, 12}, @@ -17847,14 +11006,8 @@ GetSpellInfoAtlasLootDB = { }, [10529] = { ["name"] = "Leatherworking: Wild Leather Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8210, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {4304, 10}, [2] = {8153}, @@ -17863,13 +11016,7 @@ GetSpellInfoAtlasLootDB = { }, [14930] = { ["name"] = "Leatherworking: Quickdraw Quiver", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 8217, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 12}, [2] = {8172}, @@ -17879,13 +11026,7 @@ GetSpellInfoAtlasLootDB = { }, [14932] = { ["name"] = "Leatherworking: Thick Leather Ammo Pouch", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 8218, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 10}, [2] = {8172}, @@ -17895,13 +11036,7 @@ GetSpellInfoAtlasLootDB = { }, [10542] = { ["name"] = "Leatherworking: Tough Scorpid Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8204, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 6}, [2] = {8154, 8}, @@ -17910,14 +11045,8 @@ GetSpellInfoAtlasLootDB = { }, [10546] = { ["name"] = "Leatherworking: Wild Leather Helmet", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8214, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {4304, 10}, [2] = {8153, 2}, @@ -17926,14 +11055,8 @@ GetSpellInfoAtlasLootDB = { }, [10544] = { ["name"] = "Leatherworking: Wild Leather Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8211, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {4304, 12}, [2] = {8153, 2}, @@ -17942,13 +11065,7 @@ GetSpellInfoAtlasLootDB = { }, [10548] = { ["name"] = "Leatherworking: Nightscape Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8193, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 14}, [2] = {4291, 4}, @@ -17956,13 +11073,7 @@ GetSpellInfoAtlasLootDB = { }, [10550] = { ["name"] = "Leatherworking: Nightscape Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8195, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 12}, [2] = {4291, 4}, @@ -17970,13 +11081,7 @@ GetSpellInfoAtlasLootDB = { }, [10552] = { ["name"] = "Leatherworking: Turtle Scale Helm", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8191, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 14}, [2] = {8167, 24}, @@ -17985,13 +11090,7 @@ GetSpellInfoAtlasLootDB = { }, [10558] = { ["name"] = "Leatherworking: Nightscape Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8197, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 16}, [2] = {8343, 2}, @@ -17999,13 +11098,7 @@ GetSpellInfoAtlasLootDB = { }, [10554] = { ["name"] = "Leatherworking: Tough Scorpid Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8209, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 12}, [2] = {8154, 12}, @@ -18014,13 +11107,7 @@ GetSpellInfoAtlasLootDB = { }, [10556] = { ["name"] = "Leatherworking: Turtle Scale Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8185, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 14}, [2] = {8167, 28}, @@ -18029,13 +11116,7 @@ GetSpellInfoAtlasLootDB = { }, [10562] = { ["name"] = "Leatherworking: Big Voodoo Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8216, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 14}, [2] = {8152, 4}, @@ -18044,13 +11125,7 @@ GetSpellInfoAtlasLootDB = { }, [10560] = { ["name"] = "Leatherworking: Big Voodoo Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8202, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 10}, [2] = {8152, 6}, @@ -18059,13 +11134,7 @@ GetSpellInfoAtlasLootDB = { }, [10564] = { ["name"] = "Leatherworking: Tough Scorpid Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8207, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 12}, [2] = {8154, 16}, @@ -18074,13 +11143,7 @@ GetSpellInfoAtlasLootDB = { }, [10568] = { ["name"] = "Leatherworking: Tough Scorpid Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8206, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 14}, [2] = {8154, 8}, @@ -18089,14 +11152,8 @@ GetSpellInfoAtlasLootDB = { }, [10566] = { ["name"] = "Leatherworking: Wild Leather Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8213, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {4304, 14}, [2] = {8153, 4}, @@ -18105,26 +11162,14 @@ GetSpellInfoAtlasLootDB = { }, [22331] = { ["name"] = "Leatherworking: Rugged Leather", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 8, - ["text"] = "", ["craftItem"] = 8170, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 6}, }, }, [19047] = { ["name"] = "Leatherworking: Cured Rugged Hide", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 12.5, - ["text"] = "", ["craftItem"] = 15407, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8171}, [2] = {15409}, @@ -18132,26 +11177,14 @@ GetSpellInfoAtlasLootDB = { }, [19058] = { ["name"] = "Leatherworking: Rugged Armor Kit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15564, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 5}, }, }, [10570] = { ["name"] = "Leatherworking: Tough Scorpid Helm", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8208, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 10}, [2] = {8154, 20}, @@ -18160,14 +11193,8 @@ GetSpellInfoAtlasLootDB = { }, [10574] = { ["name"] = "Leatherworking: Wild Leather Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8215, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {4304, 16}, [2] = {8153, 6}, @@ -18176,14 +11203,8 @@ GetSpellInfoAtlasLootDB = { }, [10572] = { ["name"] = "Leatherworking: Wild Leather Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8212, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", - ["extra"] = "|cff00ff00", + ["extra"] = GREEN_FONT_COLOR_CODE..ITEM_RANDOM_ENCHANT, ["reagents"] = { [1] = {4304, 16}, [2] = {8153, 6}, @@ -18192,13 +11213,7 @@ GetSpellInfoAtlasLootDB = { }, [19048] = { ["name"] = "Leatherworking: Heavy Scorpid Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15077, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 4}, [2] = {15408, 4}, @@ -18207,13 +11222,7 @@ GetSpellInfoAtlasLootDB = { }, [19049] = { ["name"] = "Leatherworking: Wicked Leather Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15083, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 8}, [2] = {2325}, @@ -18222,13 +11231,7 @@ GetSpellInfoAtlasLootDB = { }, [19051] = { ["name"] = "Leatherworking: Heavy Scorpid Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15076, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {15408, 6}, @@ -18237,13 +11240,7 @@ GetSpellInfoAtlasLootDB = { }, [19052] = { ["name"] = "Leatherworking: Wicked Leather Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15084, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 8}, [2] = {2325}, @@ -18252,13 +11249,7 @@ GetSpellInfoAtlasLootDB = { }, [57008] = { ["name"] = "Leatherworking: Breastplate of the Earth", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65022, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 40}, [2] = {7075, 12}, @@ -18268,13 +11259,7 @@ GetSpellInfoAtlasLootDB = { }, [19055] = { ["name"] = "Leatherworking: Runic Leather Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15091, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 10}, [2] = {14047, 6}, @@ -18283,13 +11268,7 @@ GetSpellInfoAtlasLootDB = { }, [22815] = { ["name"] = "Leatherworking: Gordok Ogre Suit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18258, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 4}, [2] = {14048, 2}, @@ -18299,13 +11278,7 @@ GetSpellInfoAtlasLootDB = { }, [19064] = { ["name"] = "Leatherworking: Heavy Scorpid Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15078, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {15408, 8}, @@ -18314,13 +11287,7 @@ GetSpellInfoAtlasLootDB = { }, [19065] = { ["name"] = "Leatherworking: Runic Leather Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15092, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {7971}, @@ -18330,13 +11297,7 @@ GetSpellInfoAtlasLootDB = { }, [19070] = { ["name"] = "Leatherworking: Heavy Scorpid Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15082, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {15408, 8}, @@ -18345,13 +11306,7 @@ GetSpellInfoAtlasLootDB = { }, [19072] = { ["name"] = "Leatherworking: Runic Leather Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15093, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {14047, 10}, @@ -18360,13 +11315,7 @@ GetSpellInfoAtlasLootDB = { }, [19071] = { ["name"] = "Leatherworking: Wicked Leather Headband", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15086, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {2325}, @@ -18375,13 +11324,7 @@ GetSpellInfoAtlasLootDB = { }, [19075] = { ["name"] = "Leatherworking: Heavy Scorpid Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15079, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 8}, [2] = {15408, 12}, @@ -18390,13 +11333,7 @@ GetSpellInfoAtlasLootDB = { }, [23705] = { ["name"] = "Leatherworking: Dawn Treaders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19052, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {12809, 2}, @@ -18407,13 +11344,7 @@ GetSpellInfoAtlasLootDB = { }, [23703] = { ["name"] = "Leatherworking: Might of the Timbermaw", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19044, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {12804, 2}, @@ -18424,13 +11355,7 @@ GetSpellInfoAtlasLootDB = { }, [19082] = { ["name"] = "Leatherworking: Runic Leather Headband", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15094, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 14}, [2] = {14047, 10}, @@ -18439,13 +11364,7 @@ GetSpellInfoAtlasLootDB = { }, [19083] = { ["name"] = "Leatherworking: Wicked Leather Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15087, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 16}, [2] = {15407, 10}, @@ -18455,13 +11374,7 @@ GetSpellInfoAtlasLootDB = { }, [19088] = { ["name"] = "Leatherworking: Heavy Scorpid Helm", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15080, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 8}, [2] = {15408, 12}, @@ -18471,13 +11384,7 @@ GetSpellInfoAtlasLootDB = { }, [28224] = { ["name"] = "Leatherworking: Icy Scale Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22665, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 4}, [2] = {15408, 16}, @@ -18488,13 +11395,7 @@ GetSpellInfoAtlasLootDB = { }, [28222] = { ["name"] = "Leatherworking: Icy Scale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22664, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 7}, [2] = {15408, 24}, @@ -18505,13 +11406,7 @@ GetSpellInfoAtlasLootDB = { }, [28223] = { ["name"] = "Leatherworking: Icy Scale Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22666, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 5}, [2] = {15408, 16}, @@ -18522,13 +11417,7 @@ GetSpellInfoAtlasLootDB = { }, [23707] = { ["name"] = "Leatherworking: Lava Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19149, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 5}, [2] = {15407, 4}, @@ -18537,13 +11426,7 @@ GetSpellInfoAtlasLootDB = { }, [28221] = { ["name"] = "Leatherworking: Polar Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22663, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 4}, [2] = {12810, 12}, @@ -18554,13 +11437,7 @@ GetSpellInfoAtlasLootDB = { }, [28220] = { ["name"] = "Leatherworking: Polar Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22662, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 5}, [2] = {12810, 12}, @@ -18571,13 +11448,7 @@ GetSpellInfoAtlasLootDB = { }, [28219] = { ["name"] = "Leatherworking: Polar Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22661, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {22682, 7}, [2] = {12810, 16}, @@ -18588,13 +11459,7 @@ GetSpellInfoAtlasLootDB = { }, [57115] = { ["name"] = "Leatherworking: Enchanted Armor Kit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 61183, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 3}, [2] = {61673, 3}, @@ -18603,13 +11468,7 @@ GetSpellInfoAtlasLootDB = { }, [45483] = { ["name"] = "Leatherworking: Inscribed Runic Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61188, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 12}, [2] = {15407, 4}, @@ -18620,13 +11479,7 @@ GetSpellInfoAtlasLootDB = { }, [45473] = { ["name"] = "Leatherworking: Dreamhide Mantle", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61356, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61229, 22}, [2] = {12810, 20}, @@ -18636,13 +11489,7 @@ GetSpellInfoAtlasLootDB = { }, [45475] = { ["name"] = "Leatherworking: Dreamhide Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61357, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61229, 8}, [2] = {12810, 6}, @@ -18652,13 +11499,7 @@ GetSpellInfoAtlasLootDB = { }, [45477] = { ["name"] = "Leatherworking: Dreamhide Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61358, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61229, 12}, [2] = {12810, 12}, @@ -18669,13 +11510,7 @@ GetSpellInfoAtlasLootDB = { }, [45479] = { ["name"] = "Leatherworking: Dreamhide Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61359, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61229, 8}, [2] = {12810, 12}, @@ -18686,13 +11521,7 @@ GetSpellInfoAtlasLootDB = { }, [54013] = { ["name"] = "Leatherworking: Chromatic Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65036, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17012, 6}, [2] = {17010, 5}, @@ -18704,13 +11533,7 @@ GetSpellInfoAtlasLootDB = { }, [54015] = { ["name"] = "Leatherworking: Chromatic Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65037, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17011, 6}, [2] = {17010, 3}, @@ -18722,13 +11545,7 @@ GetSpellInfoAtlasLootDB = { }, [54007] = { ["name"] = "Leatherworking: Corehound Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65038, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17010, 9}, [2] = {17012, 12}, @@ -18740,13 +11557,7 @@ GetSpellInfoAtlasLootDB = { }, [24124] = { ["name"] = "Leatherworking: Blood Tiger Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19688, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19768, 35}, [2] = {19726, 2}, @@ -18756,13 +11567,7 @@ GetSpellInfoAtlasLootDB = { }, [24125] = { ["name"] = "Leatherworking: Blood Tiger Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19689, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19768, 25}, [2] = {19726, 2}, @@ -18772,13 +11577,7 @@ GetSpellInfoAtlasLootDB = { }, [28474] = { ["name"] = "Leatherworking: Bramblewood Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22761, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 4}, [2] = {12803, 2}, @@ -18787,13 +11586,7 @@ GetSpellInfoAtlasLootDB = { }, [28473] = { ["name"] = "Leatherworking: Bramblewood Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22760, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 6}, [2] = {18512, 2}, @@ -18803,13 +11596,7 @@ GetSpellInfoAtlasLootDB = { }, [28472] = { ["name"] = "Leatherworking: Bramblewood Helm", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 22759, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 12}, [2] = {19726, 2}, @@ -18819,13 +11606,7 @@ GetSpellInfoAtlasLootDB = { }, [22727] = { ["name"] = "Leatherworking: Core Armor Kit", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 25, - ["text"] = "", ["craftItem"] = 18251, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17012, 3}, [2] = {14341, 2}, @@ -18833,13 +11614,7 @@ GetSpellInfoAtlasLootDB = { }, [22921] = { ["name"] = "Leatherworking: Girdle of Insight", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18504, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {12804, 12}, @@ -18849,13 +11624,7 @@ GetSpellInfoAtlasLootDB = { }, [23706] = { ["name"] = "Leatherworking: Golden Mantle of the Dawn", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19058, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 8}, [2] = {12803, 4}, @@ -18866,13 +11635,7 @@ GetSpellInfoAtlasLootDB = { }, [22922] = { ["name"] = "Leatherworking: Mongoose Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18506, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {7082, 6}, @@ -18883,13 +11646,7 @@ GetSpellInfoAtlasLootDB = { }, [19093] = { ["name"] = "Leatherworking: Onyxia Scale Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15138, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {15410}, [2] = {14044}, @@ -18898,13 +11655,7 @@ GetSpellInfoAtlasLootDB = { }, [24123] = { ["name"] = "Leatherworking: Primal Batskin Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19687, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19767, 8}, [2] = {15407, 3}, @@ -18914,13 +11665,7 @@ GetSpellInfoAtlasLootDB = { }, [24122] = { ["name"] = "Leatherworking: Primal Batskin Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19686, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19767, 10}, [2] = {15407, 4}, @@ -18930,13 +11675,7 @@ GetSpellInfoAtlasLootDB = { }, [24121] = { ["name"] = "Leatherworking: Primal Batskin Jerkin", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19685, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {19767, 14}, [2] = {15407, 5}, @@ -18946,13 +11685,7 @@ GetSpellInfoAtlasLootDB = { }, [24849] = { ["name"] = "Leatherworking: Sandstalker Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20476, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {20501}, [2] = {20498, 20}, @@ -18961,13 +11694,7 @@ GetSpellInfoAtlasLootDB = { }, [24851] = { ["name"] = "Leatherworking: Sandstalker Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20478, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {20501, 3}, [2] = {20498, 40}, @@ -18977,13 +11704,7 @@ GetSpellInfoAtlasLootDB = { }, [57022] = { ["name"] = "Leatherworking: Centaur Battle Harness", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 60910, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 20}, [2] = {12810, 8}, @@ -18993,13 +11714,7 @@ GetSpellInfoAtlasLootDB = { }, [24850] = { ["name"] = "Leatherworking: Sandstalker Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20477, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {20501, 2}, [2] = {20498, 30}, @@ -19009,13 +11724,7 @@ GetSpellInfoAtlasLootDB = { }, [24846] = { ["name"] = "Leatherworking: Spitfire Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20481, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {20500}, [2] = {20498, 20}, @@ -19024,13 +11733,7 @@ GetSpellInfoAtlasLootDB = { }, [24848] = { ["name"] = "Leatherworking: Spitfire Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20479, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {20500, 3}, [2] = {20498, 40}, @@ -19040,13 +11743,7 @@ GetSpellInfoAtlasLootDB = { }, [24847] = { ["name"] = "Leatherworking: Spitfire Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20480, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {20500, 2}, [2] = {20498, 30}, @@ -19056,29 +11753,17 @@ GetSpellInfoAtlasLootDB = { }, [57609] = { ["name"] = "Leatherworking: Ethereal Helmet", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55522, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 5}, [2] = {15407, 2}, [3] = {12810, 8}, - [4] = {14227, 1}, + [4] = {14227}, }, }, [57611] = { ["name"] = "Leatherworking: Ethereal Shoulder Pads", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55523, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 4}, [2] = {15407, 2}, @@ -19088,29 +11773,17 @@ GetSpellInfoAtlasLootDB = { }, [57613] = { ["name"] = "Leatherworking: Ethereal Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55524, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 8}, [2] = {15407, 4}, [3] = {12810, 12}, - [4] = {14227, 1}, + [4] = {14227}, }, }, [57615] = { ["name"] = "Leatherworking: Ethereal Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 5.125, - ["text"] = "", ["craftItem"] = 55525, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {61673, 6}, [2] = {15407, 3}, @@ -19120,13 +11793,7 @@ GetSpellInfoAtlasLootDB = { }, [22923] = { ["name"] = "Leatherworking: Swift Flight Bracers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18508, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {18512, 8}, @@ -19137,13 +11804,7 @@ GetSpellInfoAtlasLootDB = { }, [23704] = { ["name"] = "Leatherworking: Timbermaw Brawlers", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19049, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 8}, [2] = {12804, 6}, @@ -19154,13 +11815,7 @@ GetSpellInfoAtlasLootDB = { }, [19100] = { ["name"] = "Leatherworking: Heavy Scorpid Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15081, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 14}, [2] = {15408, 14}, @@ -19170,13 +11825,7 @@ GetSpellInfoAtlasLootDB = { }, [19102] = { ["name"] = "Leatherworking: Runic Leather Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15090, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 22}, [2] = {12810, 4}, @@ -19187,13 +11836,7 @@ GetSpellInfoAtlasLootDB = { }, [19091] = { ["name"] = "Leatherworking: Runic Leather Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15095, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 18}, [2] = {14047, 12}, @@ -19203,13 +11846,7 @@ GetSpellInfoAtlasLootDB = { }, [19103] = { ["name"] = "Leatherworking: Runic Leather Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15096, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 16}, [2] = {12810, 4}, @@ -19220,13 +11857,7 @@ GetSpellInfoAtlasLootDB = { }, [19098] = { ["name"] = "Leatherworking: Wicked Leather Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15085, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 20}, [2] = {15407, 2}, @@ -19237,13 +11868,7 @@ GetSpellInfoAtlasLootDB = { }, [19092] = { ["name"] = "Leatherworking: Wicked Leather Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15088, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 14}, [2] = {2325, 2}, @@ -19252,13 +11877,7 @@ GetSpellInfoAtlasLootDB = { }, [10619] = { ["name"] = "Leatherworking: Dragonscale Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8347, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 24}, [2] = {8165, 12}, @@ -19268,13 +11887,7 @@ GetSpellInfoAtlasLootDB = { }, [10650] = { ["name"] = "Leatherworking: Dragonscale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8367, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 40}, [2] = {8165, 30}, @@ -19284,13 +11897,7 @@ GetSpellInfoAtlasLootDB = { }, [19050] = { ["name"] = "Leatherworking: Green Dragonscale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15045, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 20}, [2] = {15412, 25}, @@ -19299,13 +11906,7 @@ GetSpellInfoAtlasLootDB = { }, [19060] = { ["name"] = "Leatherworking: Green Dragonscale Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15046, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 20}, [2] = {15412, 25}, @@ -19314,13 +11915,7 @@ GetSpellInfoAtlasLootDB = { }, [24655] = { ["name"] = "Leatherworking: Green Dragonscale Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20296, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 20}, [2] = {15412, 30}, @@ -19330,13 +11925,7 @@ GetSpellInfoAtlasLootDB = { }, [19077] = { ["name"] = "Leatherworking: Blue Dragonscale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15048, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 28}, [2] = {15415, 30}, @@ -19346,13 +11935,7 @@ GetSpellInfoAtlasLootDB = { }, [19085] = { ["name"] = "Leatherworking: Black Dragonscale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15050, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 40}, [2] = {15415, 60}, @@ -19362,13 +11945,7 @@ GetSpellInfoAtlasLootDB = { }, [19089] = { ["name"] = "Leatherworking: Blue Dragonscale Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15049, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 28}, [2] = {15415, 30}, @@ -19379,13 +11956,7 @@ GetSpellInfoAtlasLootDB = { }, [46655] = { ["name"] = "Leatherworking: Red Dragonscale Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65002, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {15414, 25}, @@ -19396,13 +11967,7 @@ GetSpellInfoAtlasLootDB = { }, [46659] = { ["name"] = "Leatherworking: Stormscale Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65006, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {12810, 16}, @@ -19414,13 +11979,7 @@ GetSpellInfoAtlasLootDB = { }, [46695] = { ["name"] = "Leatherworking: Dragonscale Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 65019, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 30}, [2] = {8165, 25}, @@ -19430,13 +11989,7 @@ GetSpellInfoAtlasLootDB = { }, [47035] = { ["name"] = "Leatherworking: Verdant Dreamer's Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 10, - ["text"] = "", ["craftItem"] = 65021, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8211}, [2] = {12810, 16}, @@ -19448,30 +12001,18 @@ GetSpellInfoAtlasLootDB = { }, [46654] = { ["name"] = "Leatherworking: Red Dragonscale Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65001, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {15414, 30}, [3] = {12810, 3}, [4] = {12803, 4}, - [5] = {14341, 1}, + [5] = {14341}, }, }, [46653] = { ["name"] = "Leatherworking: Red Dragonscale Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65000, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 35}, [2] = {15414, 40}, @@ -19482,13 +12023,7 @@ GetSpellInfoAtlasLootDB = { }, [24654] = { ["name"] = "Leatherworking: Blue Dragonscale Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20295, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 28}, [2] = {15415, 36}, @@ -19498,13 +12033,7 @@ GetSpellInfoAtlasLootDB = { }, [19107] = { ["name"] = "Leatherworking: Black Dragonscale Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15052, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 40}, [2] = {15416, 60}, @@ -19515,13 +12044,7 @@ GetSpellInfoAtlasLootDB = { }, [19094] = { ["name"] = "Leatherworking: Black Dragonscale Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15051, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 44}, [2] = {15416, 45}, @@ -19532,13 +12055,7 @@ GetSpellInfoAtlasLootDB = { }, [19054] = { ["name"] = "Leatherworking: Red Dragonscale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15047, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 40}, [2] = {15414, 30}, @@ -19547,13 +12064,7 @@ GetSpellInfoAtlasLootDB = { }, [20855] = { ["name"] = "Leatherworking: Black Dragonscale Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16984, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 6}, [2] = {15416, 30}, @@ -19564,13 +12075,7 @@ GetSpellInfoAtlasLootDB = { }, [22926] = { ["name"] = "Leatherworking: Chromatic Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18509, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {12607, 12}, @@ -19582,13 +12087,7 @@ GetSpellInfoAtlasLootDB = { }, [23708] = { ["name"] = "Leatherworking: Chromatic Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19157, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17010, 5}, [2] = {17011, 2}, @@ -19600,13 +12099,7 @@ GetSpellInfoAtlasLootDB = { }, [24703] = { ["name"] = "Leatherworking: Dreamscale Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 20380, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 12}, [2] = {20381, 6}, @@ -19617,13 +12110,7 @@ GetSpellInfoAtlasLootDB = { }, [10630] = { ["name"] = "Leatherworking: Gauntlets of the Sea", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8346, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 20}, [2] = {7079, 8}, @@ -19634,13 +12121,7 @@ GetSpellInfoAtlasLootDB = { }, [10632] = { ["name"] = "Leatherworking: Helm of Fire", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8348, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 40}, [2] = {7077, 8}, @@ -19651,13 +12132,7 @@ GetSpellInfoAtlasLootDB = { }, [57010] = { ["name"] = "Leatherworking: Boots of the Wind", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65023, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 20}, [2] = {7081, 10}, @@ -19667,13 +12142,7 @@ GetSpellInfoAtlasLootDB = { }, [19059] = { ["name"] = "Leatherworking: Volcanic Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15054, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {7078}, @@ -19683,13 +12152,7 @@ GetSpellInfoAtlasLootDB = { }, [19061] = { ["name"] = "Leatherworking: Living Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15061, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {12803, 4}, @@ -19698,13 +12161,7 @@ GetSpellInfoAtlasLootDB = { }, [19067] = { ["name"] = "Leatherworking: Stormshroud Pants", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15057, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 16}, [2] = {7080, 2}, @@ -19714,13 +12171,7 @@ GetSpellInfoAtlasLootDB = { }, [19078] = { ["name"] = "Leatherworking: Living Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15060, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 16}, [2] = {12803, 6}, @@ -19730,13 +12181,7 @@ GetSpellInfoAtlasLootDB = { }, [19076] = { ["name"] = "Leatherworking: Volcanic Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15053, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 8}, [2] = {7078}, @@ -19746,13 +12191,7 @@ GetSpellInfoAtlasLootDB = { }, [19079] = { ["name"] = "Leatherworking: Stormshroud Armor", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15056, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 16}, [2] = {7080, 3}, @@ -19763,13 +12202,7 @@ GetSpellInfoAtlasLootDB = { }, [19090] = { ["name"] = "Leatherworking: Stormshroud Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15058, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {7080, 3}, @@ -19780,13 +12213,7 @@ GetSpellInfoAtlasLootDB = { }, [26279] = { ["name"] = "Leatherworking: Stormshroud Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 21278, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12810, 6}, [2] = {7080, 4}, @@ -19797,13 +12224,7 @@ GetSpellInfoAtlasLootDB = { }, [19101] = { ["name"] = "Leatherworking: Volcanic Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15055, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 10}, [2] = {7078}, @@ -19813,13 +12234,7 @@ GetSpellInfoAtlasLootDB = { }, [19095] = { ["name"] = "Leatherworking: Living Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15059, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 16}, [2] = {12803, 8}, @@ -19830,13 +12245,7 @@ GetSpellInfoAtlasLootDB = { }, [23710] = { ["name"] = "Leatherworking: Molten Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19163, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17010, 2}, [2] = {17011, 7}, @@ -19847,13 +12256,7 @@ GetSpellInfoAtlasLootDB = { }, [20854] = { ["name"] = "Leatherworking: Molten Helm", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16983, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17012, 15}, [2] = {17010, 3}, @@ -19863,13 +12266,7 @@ GetSpellInfoAtlasLootDB = { }, [22928] = { ["name"] = "Leatherworking: Shifting Cloak", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18511, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {7082, 12}, @@ -19881,13 +12278,7 @@ GetSpellInfoAtlasLootDB = { }, [57012] = { ["name"] = "Leatherworking: Earthguard Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65024, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 20}, [2] = {15419, 20}, @@ -19900,13 +12291,7 @@ GetSpellInfoAtlasLootDB = { }, [57016] = { ["name"] = "Leatherworking: Depthstalker Helm", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65026, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 15}, [2] = {15422, 20}, @@ -19919,13 +12304,7 @@ GetSpellInfoAtlasLootDB = { }, [57014] = { ["name"] = "Leatherworking: Flamewrath Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65025, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 20}, [2] = {15417, 15}, @@ -19938,13 +12317,7 @@ GetSpellInfoAtlasLootDB = { }, [57018] = { ["name"] = "Leatherworking: Windwalker Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65027, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 10}, [2] = {15423, 20}, @@ -19957,13 +12330,7 @@ GetSpellInfoAtlasLootDB = { }, [10621] = { ["name"] = "Leatherworking: Wolfshead Helm", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8345, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 18}, [2] = {8368, 2}, @@ -19974,13 +12341,7 @@ GetSpellInfoAtlasLootDB = { }, [10647] = { ["name"] = "Leatherworking: Feathered Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 8349, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4304, 40}, [2] = {8168, 40}, @@ -19991,13 +12352,7 @@ GetSpellInfoAtlasLootDB = { }, [19053] = { ["name"] = "Leatherworking: Chimeric Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15074, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {15423, 6}, @@ -20006,13 +12361,7 @@ GetSpellInfoAtlasLootDB = { }, [19062] = { ["name"] = "Leatherworking: Ironfeather Shoulders", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15067, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 24}, [2] = {15420, 80}, @@ -20022,13 +12371,7 @@ GetSpellInfoAtlasLootDB = { }, [19068] = { ["name"] = "Leatherworking: Warbear Harness", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15064, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 28}, [2] = {15419, 12}, @@ -20037,13 +12380,7 @@ GetSpellInfoAtlasLootDB = { }, [19063] = { ["name"] = "Leatherworking: Chimeric Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15073, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 4}, [2] = {15423, 8}, @@ -20052,13 +12389,7 @@ GetSpellInfoAtlasLootDB = { }, [19066] = { ["name"] = "Leatherworking: Frostsaber Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15071, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 4}, [2] = {15422, 6}, @@ -20067,13 +12398,7 @@ GetSpellInfoAtlasLootDB = { }, [19073] = { ["name"] = "Leatherworking: Chimeric Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15072, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 8}, [2] = {15423, 8}, @@ -20082,13 +12407,7 @@ GetSpellInfoAtlasLootDB = { }, [19080] = { ["name"] = "Leatherworking: Warbear Woolies", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15065, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 24}, [2] = {15419, 14}, @@ -20097,13 +12416,7 @@ GetSpellInfoAtlasLootDB = { }, [19074] = { ["name"] = "Leatherworking: Frostsaber Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15069, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {15422, 8}, @@ -20112,13 +12425,7 @@ GetSpellInfoAtlasLootDB = { }, [19086] = { ["name"] = "Leatherworking: Ironfeather Breastplate", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15066, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 40}, [2] = {15420, 120}, @@ -20129,13 +12436,7 @@ GetSpellInfoAtlasLootDB = { }, [19081] = { ["name"] = "Leatherworking: Chimeric Vest", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15075, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 10}, [2] = {12803}, @@ -20144,13 +12445,7 @@ GetSpellInfoAtlasLootDB = { }, [19084] = { ["name"] = "Leatherworking: Devilsaur Gauntlets", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15063, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {15417, 8}, @@ -20159,13 +12454,7 @@ GetSpellInfoAtlasLootDB = { }, [19087] = { ["name"] = "Leatherworking: Frostsaber Gloves", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15070, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 6}, [2] = {15422, 10}, @@ -20174,13 +12463,7 @@ GetSpellInfoAtlasLootDB = { }, [20853] = { ["name"] = "Leatherworking: Corehound Boots", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 16982, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17012, 20}, [2] = {17010, 6}, @@ -20190,13 +12473,7 @@ GetSpellInfoAtlasLootDB = { }, [19097] = { ["name"] = "Leatherworking: Devilsaur Leggings", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15062, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {15417, 14}, @@ -20206,13 +12483,7 @@ GetSpellInfoAtlasLootDB = { }, [19104] = { ["name"] = "Leatherworking: Frostsaber Tunic", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 15068, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {15422, 12}, @@ -20222,13 +12493,7 @@ GetSpellInfoAtlasLootDB = { }, [23709] = { ["name"] = "Leatherworking: Corehound Belt", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 19162, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {17010, 8}, [2] = {17012, 12}, @@ -20239,13 +12504,7 @@ GetSpellInfoAtlasLootDB = { }, [22927] = { ["name"] = "Leatherworking: Hide of the Wild", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 18510, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 30}, [2] = {12803, 12}, @@ -20257,13 +12516,7 @@ GetSpellInfoAtlasLootDB = { }, [57196] = { ["name"] = "Bloody Belt Buckle", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 61810, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 10}, [2] = {19933, 6}, @@ -20272,13 +12525,7 @@ GetSpellInfoAtlasLootDB = { }, [46657] = { ["name"] = "Ornate Bloodstone Dagger", - ["requires"] = AL["Black Anvil"], - ["tools"] = {5956}, - ["castTime"] = 60, - ["text"] = "", ["craftItem"] = 65004, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 14}, [2] = {3577, 6}, @@ -20292,231 +12539,135 @@ GetSpellInfoAtlasLootDB = { }, [29728] = { ["name"] = "Jewelcrafting: Rough Gritted Paper", - ["requires"] = "", - ["tools"] = "", - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55150, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {2589, 1}, - [2] = {2835, 1}, + [1] = {2589}, + [2] = {2835}, }, }, [29730] = { ["name"] = "Jewelcrafting: Rough Copper Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55156, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 2}, }, }, [29732] = { ["name"] = "Jewelcrafting: Copper Bangle", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55157, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 4}, }, }, [41001] = { ["name"] = "Jewelcrafting: Bright Copper Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55158, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {55245, 1}, + [1] = {55156}, + [2] = {55245}, }, }, [41003] = { ["name"] = "Jewelcrafting: Malachite Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 81030, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {774, 1}, - [3] = {55150, 1}, + [1] = {55156}, + [2] = {774}, + [3] = {55150}, }, }, [41577] = { ["name"] = "Jewelcrafting: Malachite Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 81030, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {774, 1}, + [1] = {55156}, + [2] = {774}, }, }, [41249] = { ["name"] = "Jewelcrafting: Bulky Copper Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 81093, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {2880, 1}, - [3] = {55245, 1}, + [1] = {55156}, + [2] = {2880}, + [3] = {55245}, }, }, [41005] = { ["name"] = "Jewelcrafting: Sturdy Copper Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55159, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {2840, 1}, + [1] = {55156}, + [2] = {2840}, [3] = {55150, 2}, }, }, [41031] = { ["name"] = "Jewelcrafting: Rough Gemstone Cluster", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 81032, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55150, 1}, - [2] = {2770, 1}, + [1] = {55150}, + [2] = {2770}, }, }, [41007] = { ["name"] = "Jewelcrafting: Inlaid Copper Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55160, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {55245, 1}, + [1] = {55156}, + [2] = {55245}, [3] = {55150, 4}, - [4] = {818, 1}, + [4] = {818}, }, }, [41009] = { ["name"] = "Jewelcrafting: Copper Staff", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 81092, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 4}, - [2] = {55245, 1}, + [2] = {55245}, }, }, [41011] = { ["name"] = "Jewelcrafting: Encrusted Copper Bangle", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55161, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 4}, [2] = {55245, 2}, - [3] = {774, 1}, + [3] = {774}, }, }, [41013] = { ["name"] = "Jewelcrafting: Lesser Fortification Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55162, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {5997, 1}, - [3] = {774, 1}, + [1] = {55156}, + [2] = {5997}, + [3] = {774}, }, }, [41015] = { ["name"] = "Jewelcrafting: Tigercrest Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55163, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {55150, 1}, - [3] = {55245, 1}, - [4] = {818, 1}, + [1] = {55156}, + [2] = {55150}, + [3] = {55245}, + [4] = {818}, }, }, [41231] = { ["name"] = "Jewelcrafting: Minor Trollblood Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55164, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {3382, 1}, - [3] = {55245, 1}, + [1] = {55156}, + [2] = {3382}, + [3] = {55245}, }, }, [41017] = { ["name"] = "Jewelcrafting: Small Pearlstone Staff", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55165, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 10}, [2] = {55150, 4}, @@ -20525,91 +12676,55 @@ GetSpellInfoAtlasLootDB = { }, [41019] = { ["name"] = "Jewelcrafting: Amber Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55166, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {55150, 1}, - [3] = {81094, 1}, + [1] = {55156}, + [2] = {55150}, + [3] = {81094}, }, }, [41021] = { ["name"] = "Jewelcrafting: Azure Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55167, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {55245, 1}, - [3] = {1210, 1}, + [1] = {55156}, + [2] = {55245}, + [3] = {1210}, [4] = {159, 5}, }, }, [41023] = { ["name"] = "Jewelcrafting: Bright Copper Necklace", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 81031, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, [2] = {774, 2}, - [3] = {55245, 1}, + [3] = {55245}, }, }, [41025] = { ["name"] = "Jewelcrafting: Softglow Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55168, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {774, 1}, - [3] = {2880, 1}, - [4] = {818, 1}, + [1] = {55156}, + [2] = {774}, + [3] = {2880}, + [4] = {818}, }, }, [41027] = { ["name"] = "Jewelcrafting: Topaz Studded Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55170, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, + [1] = {55156}, [2] = {81094, 2}, - [3] = {2880, 1}, - [4] = {55150, 1}, + [3] = {2880}, + [4] = {55150}, }, }, [41029] = { ["name"] = "Jewelcrafting: Coarse Gritted Paper", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55151, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2592, 2}, [2] = {2836, 2}, @@ -20617,45 +12732,27 @@ GetSpellInfoAtlasLootDB = { }, [41560] = { ["name"] = "Jewelcrafting: Ebon Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55316, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, + [1] = {55156}, [2] = {2880, 3}, [3] = {55150, 2}, }, }, [41033] = { ["name"] = "Jewelcrafting: Lavish Gemmed Necklace", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55171, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, - [2] = {81094, 1}, - [3] = {818, 1}, - [4] = {2880, 1}, - [5] = {1210, 1}, + [2] = {81094}, + [3] = {818}, + [4] = {2880}, + [5] = {1210}, }, }, [41321] = { ["name"] = "Jewelcrafting: Gleaming Chain", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56037, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 5}, [2] = {55245, 2}, @@ -20664,76 +12761,46 @@ GetSpellInfoAtlasLootDB = { }, [41035] = { ["name"] = "Jewelcrafting: Amberstone Pendant", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55172, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, [2] = {81094, 3}, - [3] = {55245, 1}, + [3] = {55245}, [4] = {55150, 4}, }, }, [41587] = { ["name"] = "Jewelcrafting: Gloomweed Bindings", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55329, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 6}, [2] = {2447, 2}, - [3] = {55245, 1}, + [3] = {55245}, }, }, [41037] = { ["name"] = "Jewelcrafting: Deepmist Choker", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55173, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 8}, - [2] = {5498, 1}, - [3] = {818, 1}, - [4] = {2880, 1}, + [2] = {5498}, + [3] = {818}, + [4] = {2880}, [5] = {55150, 2}, }, }, [41562] = { ["name"] = "Jewelcrafting: The King's Conviction", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55317, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55156, 1}, - [2] = {2880, 1}, + [1] = {55156}, + [2] = {2880}, [3] = {2447, 4}, }, }, [41732] = { ["name"] = "Jewelcrafting: Shadowmoon Orb", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55333, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 5}, [2] = {81094, 2}, @@ -20742,94 +12809,58 @@ GetSpellInfoAtlasLootDB = { }, [41746] = { ["name"] = "Jewelcrafting: Shadowforged Eye", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55340, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2840, 2}, - [2] = {774, 1}, - [3] = {818, 1}, - [4] = {81094, 1}, - [5] = {1210, 1}, + [2] = {774}, + [3] = {818}, + [4] = {81094}, + [5] = {1210}, }, }, [41039] = { ["name"] = "Jewelcrafting: Rough Bronze Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55174, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 2}, }, }, [41041] = { ["name"] = "Jewelcrafting: Shimmering Bronze Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41308, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, - [2] = {55246, 1}, + [1] = {55174}, + [2] = {55246}, [3] = {2880, 2}, [4] = {55151, 2}, }, }, [41043] = { ["name"] = "Jewelcrafting: Amber Orb", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41309, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 2}, [2] = {81094, 3}, [3] = {55150, 4}, - [4] = {55245, 1}, + [4] = {55245}, }, }, [41045] = { ["name"] = "Jewelcrafting: Encrusted Bronze Staff", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55175, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 8}, - [2] = {1210, 1}, - [3] = {81094, 1}, + [2] = {1210}, + [3] = {81094}, [4] = {55151, 4}, [5] = {55245, 2}, }, }, [41047] = { ["name"] = "Jewelcrafting: Earthrock Loop", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55176, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, + [1] = {55174}, [2] = {2449, 3}, [3] = {2836, 6}, [4] = {2880, 4}, @@ -20837,29 +12868,17 @@ GetSpellInfoAtlasLootDB = { }, [41564] = { ["name"] = "Jewelcrafting: Shadowfall Jewel", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55318, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, - [2] = {1210, 1}, - [3] = {81094, 1}, - [4] = {55150, 1}, + [1] = {55174}, + [2] = {1210}, + [3] = {81094}, + [4] = {55150}, }, }, [41581] = { ["name"] = "Jewelcrafting: Serpent's Coil Staff", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55326, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 10}, [2] = {1210, 2}, @@ -20868,13 +12887,7 @@ GetSpellInfoAtlasLootDB = { }, [41323] = { ["name"] = "Jewelcrafting: Talisman of Stone", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56038, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 8}, [2] = {2836, 4}, @@ -20883,13 +12896,7 @@ GetSpellInfoAtlasLootDB = { }, [41049] = { ["name"] = "Jewelcrafting: Bronze Cuffed Bangles", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41310, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {2880, 2}, @@ -20898,28 +12905,16 @@ GetSpellInfoAtlasLootDB = { }, [41051] = { ["name"] = "Jewelcrafting: Shadowgem Band", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41311, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, + [1] = {55174}, [2] = {1210, 2}, - [3] = {55246, 1}, + [3] = {55246}, }, }, [41726] = { ["name"] = "Jewelcrafting: Hydrathorn Bracers", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55330, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3576, 8}, [2] = {2450, 2}, @@ -20928,135 +12923,81 @@ GetSpellInfoAtlasLootDB = { }, [41740] = { ["name"] = "Jewelcrafting: Mistwood Tiara", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55337, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 10}, [2] = {1206, 2}, - [3] = {55245, 1}, + [3] = {55245}, }, }, [41053] = { ["name"] = "Jewelcrafting: Bronze Scepter", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41313, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, - [2] = {55246, 1}, + [2] = {55246}, [3] = {55151, 4}, }, }, [41325] = { ["name"] = "Jewelcrafting: Medallion of Flame", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56039, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, - [2] = {2880, 1}, - [3] = {10940, 1}, + [2] = {2880}, + [3] = {10940}, }, }, [41566] = { ["name"] = "Jewelcrafting: Ocean's Wrath", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55319, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, - [2] = {5498, 1}, - [3] = {2880, 1}, + [1] = {55174}, + [2] = {5498}, + [3] = {2880}, }, }, [41337] = { ["name"] = "Jewelcrafting: Dawnbright Cuffs", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56045, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 5}, [2] = {81094, 2}, - [3] = {55245, 1}, + [3] = {55245}, }, }, [41734] = { ["name"] = "Jewelcrafting: Fangclaw Relic", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55334, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842, 4}, [2] = {1206, 4}, [3] = {55246, 2}, [4] = {55151, 2}, - [5] = {3390, 1}, + [5] = {3390}, [6] = {5635, 8}, }, }, [41055] = { ["name"] = "Jewelcrafting: Pendant of Midnight", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41312, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, [2] = {1210, 3}, - [3] = {785, 1}, - [4] = {55246, 1}, + [3] = {785}, + [4] = {55246}, }, }, [41067] = { ["name"] = "Jewelcrafting: Rough Silver Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41319, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842, 2}, }, }, [41065] = { ["name"] = "Jewelcrafting: Coarse Gemstone Cluster", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41320, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2771, 2}, [2] = {55151, 2}, @@ -21064,139 +13005,85 @@ GetSpellInfoAtlasLootDB = { }, [41057] = { ["name"] = "Jewelcrafting: Agatestone Crown", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41314, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, - [2] = {1206, 1}, + [2] = {1206}, [3] = {3466, 2}, [4] = {55151, 2}, }, }, [41061] = { ["name"] = "Jewelcrafting: Binding Signet", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41316, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, + [1] = {55174}, [2] = {1705, 2}, - [3] = {3385, 1}, + [3] = {3385}, }, }, [41063] = { ["name"] = "Jewelcrafting: Enchanted Bracelets", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41318, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842, 3}, - [2] = {10998, 1}, - [3] = {1210, 1}, + [2] = {10998}, + [3] = {1210}, }, }, [41776] = { ["name"] = "Jewelcrafting: Ring of Midnight", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56091, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, + [1] = {55174}, [2] = {1210, 2}, - [3] = {785, 1}, - [4] = {55246, 1}, + [3] = {785}, + [4] = {55246}, }, }, [41059] = { ["name"] = "Jewelcrafting: Moonlight Staff", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41315, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 8}, [2] = {1705, 3}, - [3] = {3466, 1}, - [4] = {55246, 1}, + [3] = {3466}, + [4] = {55246}, }, }, [41568] = { ["name"] = "Jewelcrafting: Dazzling Moonstone Band", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55320, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, + [1] = {55174}, [2] = {1705, 3}, - [3] = {55245, 1}, + [3] = {55245}, }, }, [41760] = { ["name"] = "Jewelcrafting: Graceful Agate Gemstone", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56074, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {1206, 1}, + [1] = {1206}, [2] = {55151, 2}, [3] = {55246, 2}, }, }, [41069] = { ["name"] = "Jewelcrafting: Silver Medallion", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41325, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842, 5}, - [2] = {3466, 1}, + [2] = {3466}, [3] = {55246, 2}, [4] = {55151, 2}, }, }, [41071] = { ["name"] = "Jewelcrafting: Ring of Purified Silver", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41329, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41319, 1}, + [1] = {41319}, [2] = {3466, 2}, [3] = {55246, 4}, [4] = {55151, 8}, @@ -21206,45 +13093,27 @@ GetSpellInfoAtlasLootDB = { }, [41327] = { ["name"] = "Jewelcrafting: Gleaming Silver Necklace", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56040, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842, 4}, - [2] = {55249, 1}, + [2] = {55249}, [3] = {55246, 2}, [4] = {55245, 2}, }, }, [41339] = { ["name"] = "Jewelcrafting: Circlet of Dampening", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56046, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 4}, [2] = {2842, 2}, - [3] = {3384, 1}, + [3] = {3384}, [4] = {55151, 3}, }, }, [41748] = { ["name"] = "Jewelcrafting: Totem of Self Preservation", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55341, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2842, 2}, [2] = {5498, 2}, @@ -21255,13 +13124,7 @@ GetSpellInfoAtlasLootDB = { }, [41583] = { ["name"] = "Jewelcrafting: Farraki Ceremony Totem", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55327, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 12}, [2] = {3575, 6}, @@ -21273,45 +13136,27 @@ GetSpellInfoAtlasLootDB = { }, [41728] = { ["name"] = "Jewelcrafting: Blackrock Ironclamps", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55331, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 10}, [2] = {1210, 2}, - [3] = {5500, 1}, + [3] = {5500}, [4] = {5635, 8}, [5] = {3466, 2}, }, }, [41570] = { ["name"] = "Jewelcrafting: Harpy Talon Ring", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55321, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55174, 1}, + [1] = {55174}, [2] = {5635, 4}, [3] = {55151, 2}, }, }, [41742] = { ["name"] = "Jewelcrafting: Venomspire Diadem", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55338, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 10}, [2] = {1529, 2}, @@ -21322,13 +13167,7 @@ GetSpellInfoAtlasLootDB = { }, [41201] = { ["name"] = "Jewelcrafting: Heavy Gritted Paper", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55152, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4306, 3}, [2] = {2838, 3}, @@ -21336,13 +13175,7 @@ GetSpellInfoAtlasLootDB = { }, [41203] = { ["name"] = "Jewelcrafting: Heavy Gemstone Cluster", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41344, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2772, 3}, [2] = {55152, 3}, @@ -21350,150 +13183,90 @@ GetSpellInfoAtlasLootDB = { }, [41627] = { ["name"] = "Jewelcrafting: Pristine Crystal Gemstone", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56000, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55249, 1}, - [2] = {55151, 1}, - [3] = {55247, 1}, + [1] = {55249}, + [2] = {55151}, + [3] = {55247}, }, }, [41607] = { ["name"] = "Jewelcrafting: Shimmering Aqua Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56003, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {7909, 1}, - [2] = {55152, 1}, + [1] = {7909}, + [2] = {55152}, [3] = {55246, 2}, - [4] = {55247, 1}, + [4] = {55247}, }, }, [41081] = { ["name"] = "Jewelcrafting: Rough Iron Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41332, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 2}, }, }, [41083] = { ["name"] = "Jewelcrafting: Rough Gold Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41331, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 2}, }, }, [41205] = { ["name"] = "Jewelcrafting: Goldfire Crystal Bracelet", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55144, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {2841, 6}, - [2] = {3577, 1}, - [3] = {55249, 1}, - [4] = {2880, 1}, + [2] = {3577}, + [3] = {55249}, + [4] = {2880}, }, }, [41207] = { ["name"] = "Jewelcrafting: Quartz Halo", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55142, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41332, 1}, + [1] = {41332}, [2] = {55249, 2}, [3] = {55151, 2}, - [4] = {55246, 1}, + [4] = {55246}, }, }, [41275] = { ["name"] = "Jewelcrafting: Gemmed Citrine Pendant", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55202, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 6}, - [2] = {3577, 1}, + [2] = {3577}, [3] = {55249, 2}, [4] = {3864, 2}, }, }, [41572] = { ["name"] = "Jewelcrafting: Centaur Hoof Circlet", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55322, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41332, 1}, - [2] = {7067, 1}, - [3] = {3466, 1}, + [1] = {41332}, + [2] = {7067}, + [3] = {3466}, [4] = {55151, 2}, }, }, [41331] = { ["name"] = "Jewelcrafting: Gem Encrusted Choker", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56042, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 5}, - [2] = {1206, 1}, - [3] = {55249, 1}, - [4] = {1705, 1}, + [2] = {1206}, + [3] = {55249}, + [4] = {1705}, }, }, [41736] = { ["name"] = "Jewelcrafting: Netherbane Rod", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55335, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 6}, [2] = {3864, 4}, @@ -21502,28 +13275,16 @@ GetSpellInfoAtlasLootDB = { }, [41329] = { ["name"] = "Jewelcrafting: Ring of The Turtle", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56041, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41331, 1}, + [1] = {41331}, [2] = {1206, 2}, - [3] = {3389, 1}, + [3] = {3389}, }, }, [41283] = { ["name"] = "Jewelcrafting: Astral Amulet", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55195, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 6}, [2] = {3864, 2}, @@ -21533,45 +13294,27 @@ GetSpellInfoAtlasLootDB = { }, [41209] = { ["name"] = "Jewelcrafting: Staff of Blossomed Jade", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55148, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 12}, [2] = {1529, 2}, [3] = {1705, 2}, [4] = {3357, 2}, - [5] = {55247, 1}, + [5] = {55247}, }, }, [41333] = { ["name"] = "Jewelcrafting: Goldcrest Amulet", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56043, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 8}, - [2] = {3466, 1}, + [2] = {3466}, [3] = {55152, 2}, }, }, [41730] = { ["name"] = "Jewelcrafting: Monastery Emberbrace", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55332, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 6}, [2] = {4306, 2}, @@ -21580,29 +13323,17 @@ GetSpellInfoAtlasLootDB = { }, [41211] = { ["name"] = "Jewelcrafting: Jade Harmony Circlet", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55143, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41331, 1}, - [2] = {1529, 1}, + [1] = {41331}, + [2] = {1529}, [3] = {55246, 2}, [4] = {55152, 2}, }, }, [41585] = { ["name"] = "Jewelcrafting: Sphinx's Wisdom Staff", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55328, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 18}, [2] = {2838, 2}, @@ -21611,73 +13342,43 @@ GetSpellInfoAtlasLootDB = { }, [41574] = { ["name"] = "Jewelcrafting: Ogre Bone Band", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55323, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41332, 1}, + [1] = {41332}, [2] = {55249, 4}, [3] = {3864, 4}, - [4] = {3391, 1}, + [4] = {3391}, [5] = {3466, 2}, }, }, [41219] = { ["name"] = "Jewelcrafting: Rough Mithril Ring", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41322, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 2}, }, }, [41629] = { ["name"] = "Jewelcrafting: Gleaming Jade Gemstone", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56001, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {1529, 1}, - [2] = {11135, 1}, - [3] = {55247, 1}, + [1] = {1529}, + [2] = {11135}, + [3] = {55247}, }, }, [41623] = { ["name"] = "Jewelcrafting: Pure Shining Moonstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56058, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55251, 1}, + [1] = {55251}, [2] = {55152, 5}, - [3] = {55247, 1}, + [3] = {55247}, }, }, [41752] = { ["name"] = "Jewelcrafting: Obsidian Brooch", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55211, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 4}, [2] = {1529, 2}, @@ -21686,13 +13387,7 @@ GetSpellInfoAtlasLootDB = { }, [41213] = { ["name"] = "Jewelcrafting: Goldenshade Quartz Crown", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55145, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 8}, [2] = {3577, 2}, @@ -21701,47 +13396,29 @@ GetSpellInfoAtlasLootDB = { }, [41215] = { ["name"] = "Jewelcrafting: The Golden Goblet", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55146, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 5}, [2] = {4234, 2}, [3] = {3466, 2}, - [4] = {3825, 1}, + [4] = {3825}, }, }, [41217] = { ["name"] = "Jewelcrafting: Powerful Citrine Pendant", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55147, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 12}, [2] = {3577, 4}, [3] = {3864, 4}, [4] = {1206, 2}, - [5] = {55247, 1}, - [6] = {11135, 1}, + [5] = {55247}, + [6] = {11135}, }, }, [41556] = { ["name"] = "Jewelcrafting: Delicate Mithril Amulet", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56054, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 10}, [2] = {3466, 2}, @@ -21750,29 +13427,17 @@ GetSpellInfoAtlasLootDB = { }, [41221] = { ["name"] = "Jewelcrafting: Ironsun Citrine Ring", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55141, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41332, 1}, + [1] = {41332}, [2] = {3577, 2}, [3] = {3864, 4}, - [4] = {55246, 1}, + [4] = {55246}, }, }, [41750] = { ["name"] = "Jewelcrafting: Facetted Moonstone Brooch", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55210, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 3}, [2] = {1705, 2}, @@ -21781,13 +13446,7 @@ GetSpellInfoAtlasLootDB = { }, [41589] = { ["name"] = "Jewelcrafting: Crystal Earring", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56047, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3575, 4}, [2] = {55249, 5}, @@ -21797,15 +13456,9 @@ GetSpellInfoAtlasLootDB = { }, [41263] = { ["name"] = "Jewelcrafting: Ocean's Gaze", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56023, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41322, 1}, + [1] = {41322}, [2] = {7909, 3}, [3] = {6372, 3}, [4] = {55152, 3}, @@ -21813,13 +13466,7 @@ GetSpellInfoAtlasLootDB = { }, [41223] = { ["name"] = "Jewelcrafting: Shimmering Gold Necklace", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41340, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 8}, [2] = {55246, 3}, @@ -21828,32 +13475,20 @@ GetSpellInfoAtlasLootDB = { }, [41225] = { ["name"] = "Jewelcrafting: Ironbloom Ring", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41342, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41332, 1}, + [1] = {41332}, [2] = {3575, 2}, [3] = {2838, 6}, - [4] = {3355, 1}, + [4] = {3355}, [5] = {55152, 2}, }, }, [41541] = { ["name"] = "Jewelcrafting: Dazzling Aquamarine Loop", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56048, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41322, 1}, + [1] = {41322}, [2] = {7909, 4}, [3] = {55246, 2}, [4] = {55152, 2}, @@ -21861,29 +13496,17 @@ GetSpellInfoAtlasLootDB = { }, [41579] = { ["name"] = "Jewelcrafting: Marine's Demise", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55325, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41322, 1}, + [1] = {41322}, [2] = {7909, 2}, [3] = {1210, 2}, - [4] = {55246, 1}, + [4] = {55246}, }, }, [41285] = { ["name"] = "Jewelcrafting: Shimmering Moonstone Tablet", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56034, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {55251, 2}, [2] = {1705, 8}, @@ -21893,13 +13516,7 @@ GetSpellInfoAtlasLootDB = { }, [41229] = { ["name"] = "Jewelcrafting: Solid Gritted Paper", - ["requires"] = "", - ["tools"] = {41328}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55153, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {4338, 3}, [2] = {7912, 3}, @@ -21907,13 +13524,7 @@ GetSpellInfoAtlasLootDB = { }, [41233] = { ["name"] = "Jewelcrafting: Rough Truesilver Ring", - ["requires"] = "", - ["tools"] = {41328}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41341, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {7911, 2}, [2] = {6037 ,2} @@ -21921,13 +13532,7 @@ GetSpellInfoAtlasLootDB = { }, [41237] = { ["name"] = "Jewelcrafting: Solid Gemstone Cluster", - ["requires"] = "", - ["tools"] = {41328}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56020, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3858, 3}, [2] = {55153, 3}, @@ -21935,75 +13540,45 @@ GetSpellInfoAtlasLootDB = { }, [41601] = { ["name"] = "Jewelcrafting: Sharpened Citrine Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56002, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {3864, 1}, + [1] = {3864}, [2] = {55152, 4}, - [3] = {55247, 1}, + [3] = {55247}, }, }, [41603] = { ["name"] = "Jewelcrafting: Radiant Ember Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56004, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55250, 1}, + [1] = {55250}, [2] = {55152, 4}, - [3] = {55247, 1}, + [3] = {55247}, }, }, [41605] = { ["name"] = "Jewelcrafting: Glowing Ruby Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56006, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {7910, 1}, - [2] = {55152, 1}, - [3] = {11134, 1}, - [4] = {55247, 1}, + [1] = {7910}, + [2] = {55152}, + [3] = {11134}, + [4] = {55247}, }, }, [41631] = { ["name"] = "Jewelcrafting: Illuminated Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56005, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55251, 1}, - [2] = {11082, 1}, - [3] = {55247, 1}, - [4] = {55152, 1}, + [1] = {55251}, + [2] = {11082}, + [3] = {55247}, + [4] = {55152}, }, }, [41738] = { ["name"] = "Jewelcrafting: Marine Root", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55336, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 2}, [2] = {3357, 2}, @@ -22012,13 +13587,7 @@ GetSpellInfoAtlasLootDB = { }, [41227] = { ["name"] = "Jewelcrafting: Ornate Mithril Scepter", - ["requires"] = "", - ["tools"] = {41328}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41343, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {4234, 2}, @@ -22027,13 +13596,7 @@ GetSpellInfoAtlasLootDB = { }, [41546] = { ["name"] = "Jewelcrafting: Alluring Citrine Choker", - ["requires"] = "", - ["tools"] = {41328, 55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56049, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {3864, 2}, @@ -22041,13 +13604,7 @@ GetSpellInfoAtlasLootDB = { }, [41548] = { ["name"] = "Jewelcrafting: Elaborate Golden Bracelets", - ["requires"] = "", - ["tools"] = {41326, 55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56050, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 10}, [2] = {4234, 4}, @@ -22056,29 +13613,17 @@ GetSpellInfoAtlasLootDB = { }, [41550] = { ["name"] = "Jewelcrafting: Heart of the Sea", - ["requires"] = "", - ["tools"] = {41326, 55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56051, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 4}, [2] = {7070, 4}, - [3] = {7909, 1}, - [4] = {55246, 1}, + [3] = {7909}, + [4] = {55246}, }, }, [41744] = { ["name"] = "Jewelcrafting: Bloodfire Circlet", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55339, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3859, 7}, [2] = {55250, 2}, @@ -22087,13 +13632,7 @@ GetSpellInfoAtlasLootDB = { }, [41754] = { ["name"] = "Jewelcrafting: Smoldering Brooch", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55212, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 3}, [2] = {55250, 2}, @@ -22102,13 +13641,7 @@ GetSpellInfoAtlasLootDB = { }, [41552] = { ["name"] = "Jewelcrafting: Staff of Gallitrea", - ["requires"] = "", - ["tools"] = {41326, 55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56052, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 18}, [2] = {55249, 3}, @@ -22118,28 +13651,16 @@ GetSpellInfoAtlasLootDB = { }, [41558] = { ["name"] = "Jewelcrafting: Draenethyst Baton", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56055, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 4}, - [2] = {10593, 1}, - [3] = {55246, 1}, + [2] = {10593}, + [3] = {55246}, }, }, [41718] = { ["name"] = "Jewelcrafting: Ornate Mithril Bracelets", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56070, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {3466, 6}, @@ -22150,13 +13671,7 @@ GetSpellInfoAtlasLootDB = { }, [41756] = { ["name"] = "Jewelcrafting: Vitriol Brooch", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55213, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 3}, [2] = {9262, 2}, @@ -22165,48 +13680,30 @@ GetSpellInfoAtlasLootDB = { }, [41239] = { ["name"] = "Jewelcrafting: Greater Binding Signet", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41346, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41322, 1}, - [2] = {55251, 1}, - [3] = {7909, 1}, + [1] = {41322}, + [2] = {55251}, + [3] = {7909}, [4] = {6149, 2}, - [5] = {55247, 1}, + [5] = {55247}, }, }, [41786] = { ["name"] = "Jewelcrafting: Ornate Mithril Crown", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56089, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 16}, [2] = {55152, 4}, - [3] = {3466, 1}, + [3] = {3466}, [4] = {55246, 4}, }, }, [41554] = { ["name"] = "Jewelcrafting: Golden Jade Ring", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56053, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41331, 1}, + [1] = {41331}, [2] = {3577, 2}, [3] = {1529, 6}, [4] = {3821, 6}, @@ -22215,13 +13712,7 @@ GetSpellInfoAtlasLootDB = { }, [41352] = { ["name"] = "Jewelcrafting: Opaline Illuminator", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55242, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 24}, [2] = {3864, 6}, @@ -22232,13 +13723,7 @@ GetSpellInfoAtlasLootDB = { }, [41307] = { ["name"] = "Jewelcrafting: Gemkeeper's Folio", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55243, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 18}, [2] = {55249, 3}, @@ -22249,13 +13734,7 @@ GetSpellInfoAtlasLootDB = { }, [41235] = { ["name"] = "Jewelcrafting: Aquamarine Pendant", - ["requires"] = "", - ["tools"] = {41328, 3 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55196, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, [2] = {7909, 2}, @@ -22264,13 +13743,7 @@ GetSpellInfoAtlasLootDB = { }, [41241] = { ["name"] = "Jewelcrafting: Royal Gemstone Staff", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41345, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 14}, [2] = {3577, 4}, @@ -22281,13 +13754,7 @@ GetSpellInfoAtlasLootDB = { }, [41277] = { ["name"] = "Jewelcrafting: Starforge Amulet", - ["requires"] = "", - ["tools"] = {55155, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55197, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 6}, [2] = {7910, 2}, @@ -22297,76 +13764,46 @@ GetSpellInfoAtlasLootDB = { }, [41243] = { ["name"] = "Jewelcrafting: Emberstone Idol", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41349, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {55250, 5}, [2] = {6371, 3}, - [3] = {7077, 1}, - [4] = {7068, 1}, + [3] = {7077}, + [4] = {7068}, }, }, [41245] = { ["name"] = "Jewelcrafting: Runed Truesilver Ring", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41347, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41341, 1}, - [2] = {7067, 1}, - [3] = {7075, 1}, + [1] = {41341}, + [2] = {7067}, + [3] = {7075}, [4] = {55153, 2}, }, }, [41633] = { ["name"] = "Jewelcrafting: Burning Star Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56056, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {7910, 1}, + [1] = {7910}, [2] = {7068, 2}, - [3] = {55247, 1}, + [3] = {55247}, }, }, [41085] = { ["name"] = "Jewelcrafting: Emberstone Studded Ring", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41323, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41322, 1}, - [2] = {7077, 1}, + [1] = {41322}, + [2] = {7077}, [3] = {55250, 4}, [4] = {55247, 2}, }, }, [41281] = { ["name"] = "Jewelcrafting: Runebound Amulet", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55204, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6037, 12}, [2] = {7075, 4}, @@ -22377,13 +13814,7 @@ GetSpellInfoAtlasLootDB = { }, [41716] = { ["name"] = "Jewelcrafting: Crown of Elegance", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56069, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 20}, [2] = {7971, 2}, @@ -22394,15 +13825,9 @@ GetSpellInfoAtlasLootDB = { }, [41784] = { ["name"] = "Jewelcrafting: Mana Binding Signet", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56095, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41341, 1}, + [1] = {41341}, [2] = {55251, 8}, [3] = {7079, 8}, [4] = {7070, 12}, @@ -22412,13 +13837,7 @@ GetSpellInfoAtlasLootDB = { }, [41305] = { ["name"] = "Jewelcrafting: Golden Scepter of Authority", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56036, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 8}, [2] = {3860, 2}, @@ -22428,28 +13847,16 @@ GetSpellInfoAtlasLootDB = { }, [41635] = { ["name"] = "Jewelcrafting: Brilliant Opal Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56008, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12799, 2}, - [2] = {55153, 1}, - [3] = {55247, 1}, + [2] = {55153}, + [3] = {55247}, }, }, [41770] = { ["name"] = "Jewelcrafting: Dense Gemstone Cluster", - ["requires"] = "", - ["tools"] = {41328}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56019, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {10620, 3}, [2] = {55154, 3}, @@ -22457,26 +13864,14 @@ GetSpellInfoAtlasLootDB = { }, [41087] = { ["name"] = "Jewelcrafting: Rough Thorium Ring", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41321, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 2}, }, }, [41720] = { ["name"] = "Jewelcrafting: Regal Twilight Staff", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56071, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {6037, 8}, @@ -22488,13 +13883,7 @@ GetSpellInfoAtlasLootDB = { }, [41724] = { ["name"] = "Jewelcrafting: Ornament of Restraint", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56073, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 8}, [2] = {7971, 2}, @@ -22505,29 +13894,17 @@ GetSpellInfoAtlasLootDB = { }, [41089] = { ["name"] = "Jewelcrafting: Mithril Blackstone Necklace", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41324, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 10}, [2] = {7971, 3}, - [3] = {7909, 1}, - [4] = {55247, 1}, + [3] = {7909}, + [4] = {55247}, }, }, [41261] = { ["name"] = "Jewelcrafting: Sunburst Tiara", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55266, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 20}, [2] = {7910, 2}, @@ -22538,29 +13915,17 @@ GetSpellInfoAtlasLootDB = { }, [41621] = { ["name"] = "Jewelcrafting: Enchanted Emerald Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56018, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12364, 1}, + [1] = {12364}, [2] = {7081, 3}, - [3] = {55152, 1}, - [4] = {55247, 1}, + [3] = {55152}, + [4] = {55247}, }, }, [41091] = { ["name"] = "Jewelcrafting: Dense Gritted Paper", - ["requires"] = "", - ["tools"] = {41328}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55154, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {14047, 3}, [2] = {12365, 3}, @@ -22568,62 +13933,38 @@ GetSpellInfoAtlasLootDB = { }, [41714] = { ["name"] = "Jewelcrafting: Opal Guided Bangles", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56068, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 8}, [2] = {12799, 4}, [3] = {7081, 6}, - [4] = {9187, 1}, + [4] = {9187}, [5] = {55153, 4}, }, }, [41637] = { ["name"] = "Jewelcrafting: Elegant Emerald Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56009, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12364, 1}, + [1] = {12364}, [2] = {55153, 2}, [3] = {55247, 2}, }, }, [41639] = { ["name"] = "Jewelcrafting: Shining Sapphire Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56007, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12361, 1}, - [2] = {16203, 1}, - [3] = {55247, 1}, + [1] = {12361}, + [2] = {16203}, + [3] = {55247}, }, }, [41093] = { ["name"] = "Jewelcrafting: Radiant Thorium Twilight", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55256, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, + [1] = {41321}, [2] = {3466, 2}, [3] = {55251, 3}, [4] = {55153, 3}, @@ -22631,13 +13972,7 @@ GetSpellInfoAtlasLootDB = { }, [41348] = { ["name"] = "Jewelcrafting: Crystalfire Armlets", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55180, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 8}, [2] = {55249, 4}, @@ -22647,141 +13982,87 @@ GetSpellInfoAtlasLootDB = { }, [41265] = { ["name"] = "Jewelcrafting: Starry Thorium Band", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55260, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, + [1] = {41321}, [2] = {7910, 2}, [3] = {55246, 4}, - [4] = {55247, 1}, + [4] = {55247}, }, }, [41611] = { ["name"] = "Jewelcrafting: Gloomy Diamond Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56012, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {11754, 1}, + [1] = {11754}, [2] = {55153, 5}, - [3] = {55247, 1}, + [3] = {55247}, }, }, [41095] = { ["name"] = "Jewelcrafting: Glyph Codex", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55269, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 8}, [2] = {55251, 5}, - [3] = {55247, 1}, + [3] = {55247}, }, }, [41350] = { ["name"] = "Jewelcrafting: Cinderfall Band", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55228, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, - [2] = {55250, 1}, - [3] = {7910, 1}, - [4] = {7077, 1}, - [5] = {55247, 1}, + [1] = {41321}, + [2] = {55250}, + [3] = {7910}, + [4] = {7077}, + [5] = {55247}, }, }, [41251] = { ["name"] = "Jewelcrafting: Blue Starfire", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55258, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, - [2] = {12361, 1}, - [3] = {55251, 1}, - [4] = {55247, 1}, + [1] = {41321}, + [2] = {12361}, + [3] = {55251}, + [4] = {55247}, }, }, [41273] = { ["name"] = "Jewelcrafting: Prism Amulet", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55199, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 8}, [2] = {12799, 2}, [3] = {55154, 2}, - [4] = {55247, 1}, + [4] = {55247}, }, }, [41774] = { ["name"] = "Jewelcrafting: Spellweaver Pendant", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56090, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 6}, [2] = {6037, 3}, - [3] = {7910, 1}, - [4] = {7909, 1}, + [3] = {7910}, + [4] = {7909}, }, }, [41097] = { ["name"] = "Jewelcrafting: Spellweaver Rod", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55271, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {6037, 6}, [3] = {7910, 3}, [4] = {7909, 3}, - [5] = {3466, 1}, + [5] = {3466}, }, }, [41099] = { ["name"] = "Jewelcrafting: Quicksilver Whirl", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55268, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {6037, 4}, [2] = {12361, 2}, @@ -22791,89 +14072,53 @@ GetSpellInfoAtlasLootDB = { }, [41762] = { ["name"] = "Jewelcrafting: Dreary Opal Gemstone", - ["requires"] = "", - ["tools"] = {41327, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56075, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12799, 1}, - [2] = {13466, 1}, + [1] = {12799}, + [2] = {13466}, [3] = {55247, 2}, }, }, [41625] = { ["name"] = "Jewelcrafting: Beautiful Diamond Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56010, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12800, 2}, [2] = {55152, 2}, - [3] = {55247, 1}, + [3] = {55247}, }, }, [41311] = { ["name"] = "Jewelcrafting: Stellar Gemguards", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55178, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 8}, - [2] = {55249, 1}, - [3] = {55251, 1}, - [4] = {55250, 1}, + [2] = {55249}, + [3] = {55251}, + [4] = {55250}, }, }, [41315] = { ["name"] = "Jewelcrafting: Moonlit Charm", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55198, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3860, 12}, [2] = {55251, 4}, - [3] = {55247, 1}, + [3] = {55247}, }, }, [41641] = { ["name"] = "Jewelcrafting: Unstable Arcane Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56011, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12363, 1}, - [2] = {61673, 1}, - [3] = {55247, 1}, + [1] = {12363}, + [2] = {61673}, + [3] = {55247}, }, }, [41356] = { ["name"] = "Jewelcrafting: Gemstone Compendium", - ["requires"] = "", - ["tools"] = {55155}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55244, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {8170, 12}, [2] = {10648, 20}, @@ -22884,48 +14129,30 @@ GetSpellInfoAtlasLootDB = { }, [41609] = { ["name"] = "Jewelcrafting: Azerothian Ruby Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56015, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12800, 1}, - [2] = {7910, 1}, - [3] = {16203, 1}, + [1] = {12800}, + [2] = {7910}, + [3] = {16203}, [4] = {55154, 2}, - [5] = {55247, 1}, + [5] = {55247}, }, }, [41617] = { ["name"] = "Jewelcrafting: Tempered Azerothian Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56017, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12800, 2}, - [2] = {55154, 1}, - [3] = {55247, 1}, + [2] = {55154}, + [3] = {55247}, }, }, [41279] = { ["name"] = "Jewelcrafting: Voidheart Charm", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55200, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 5}, - [2] = {12655, 1}, + [2] = {12655}, [3] = {55249, 4}, [4] = {12808, 2}, [5] = {55154, 2}, @@ -22933,60 +14160,36 @@ GetSpellInfoAtlasLootDB = { }, [41101] = { ["name"] = "Jewelcrafting: Crystalweft Bracers", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55273, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 14}, [2] = {55154, 4}, [3] = {3864, 3}, - [4] = {55246, 1}, + [4] = {55246}, }, }, [41103] = { ["name"] = "Jewelcrafting: Ethereal Frostspark Crown", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55267, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 12}, [2] = {55154, 6}, - [3] = {12361, 1}, - [4] = {3829, 1}, + [3] = {12361}, + [4] = {3829}, }, }, [41105] = { ["name"] = "Jewelcrafting: Pendant of Arcane Radiance", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 41330, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 6}, - [2] = {13454, 1}, - [3] = {12363, 1}, + [2] = {13454}, + [3] = {12363}, }, }, [41313] = { ["name"] = "Jewelcrafting: Garnet Guardian Staff", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55241, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 24}, [2] = {12800, 2}, @@ -22997,63 +14200,39 @@ GetSpellInfoAtlasLootDB = { }, [41643] = { ["name"] = "Jewelcrafting: Glittering Sapphire Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56057, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12361, 1}, + [1] = {12361}, [2] = {3819, 4}, - [3] = {7070, 1}, - [4] = {55247, 1}, + [3] = {7070}, + [4] = {55247}, }, }, [41309] = { ["name"] = "Jewelcrafting: Stellar Ruby Ring", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55261, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, + [1] = {41321}, [2] = {7910, 5}, [3] = {55154, 3}, - [4] = {55247, 1}, + [4] = {55247}, }, }, [41613] = { ["name"] = "Jewelcrafting: Flawless Black Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56013, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {18335, 1}, - [2] = {16202, 1}, + [1] = {18335}, + [2] = {16202}, [3] = {55154, 2}, - [4] = {55248, 1}, + [4] = {55248}, }, }, [41782] = { ["name"] = "Jewelcrafting: Golden Runed Ring", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56094, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {56033, 1}, + [1] = {56033}, [2] = {12360, 2}, [3] = {12655, 6}, [4] = {20520, 12}, @@ -23063,13 +14242,7 @@ GetSpellInfoAtlasLootDB = { }, [41287] = { ["name"] = "Jewelcrafting: Stormcloud Sigil", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56035, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 3}, [2] = {7082, 3}, @@ -23079,15 +14252,9 @@ GetSpellInfoAtlasLootDB = { }, [41780] = { ["name"] = "Jewelcrafting: Stormcloud Signet", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56093, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, + [1] = {41321}, [2] = {12655, 6}, [3] = {7082, 3}, [4] = {7081, 6}, @@ -23097,15 +14264,9 @@ GetSpellInfoAtlasLootDB = { }, [41708] = { ["name"] = "Jewelcrafting: Opalstone Circle", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56065, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, + [1] = {41321}, [2] = {12799, 6}, [3] = {7076, 6}, [4] = {3356, 6}, @@ -23115,29 +14276,17 @@ GetSpellInfoAtlasLootDB = { }, [41710] = { ["name"] = "Jewelcrafting: Deep Sapphire Circlet", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56066, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {56033, 1}, + [1] = {56033}, [2] = {12361, 5}, [3] = {7080, 2}, - [4] = {55247, 1}, + [4] = {55247}, }, }, [41712] = { ["name"] = "Jewelcrafting: Dark Iron Signet Ring", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56067, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {11371, 4}, [2] = {7077, 8}, @@ -23146,16 +14295,10 @@ GetSpellInfoAtlasLootDB = { }, [41790] = { ["name"] = "Jewelcrafting: Ring of Unleashed Potential", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55360, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {56033, 1}, - [2] = {55252, 1}, + [1] = {56033}, + [2] = {55252}, [3] = {12803, 16}, [4] = {18335, 4}, [5] = {12799, 6}, @@ -23164,30 +14307,18 @@ GetSpellInfoAtlasLootDB = { }, [41615] = { ["name"] = "Jewelcrafting: Arcane Emerald Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56016, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {12363, 1}, - [2] = {12364, 1}, - [3] = {14344, 1}, + [1] = {12363}, + [2] = {12364}, + [3] = {14344}, [4] = {55154, 2}, - [5] = {55248, 1}, + [5] = {55248}, }, }, [41722] = { ["name"] = "Jewelcrafting: Pendant of Instability", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56072, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 12}, [2] = {12363, 4}, @@ -23198,85 +14329,55 @@ GetSpellInfoAtlasLootDB = { }, [41619] = { ["name"] = "Jewelcrafting: Stunning Imperial Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56014, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55252, 1}, - [2] = {14344, 1}, + [1] = {55252}, + [2] = {14344}, [3] = {8831, 4}, - [4] = {7075, 1}, - [5] = {55248, 1}, + [4] = {7075}, + [5] = {55248}, }, }, [41253] = { ["name"] = "Jewelcrafting: Emerald Monarch's Glow", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55265, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, + [1] = {41321}, [2] = {12655, 4}, [3] = {12364, 2}, [4] = {55154, 2}, - [5] = {55247, 1}, + [5] = {55247}, }, }, [41255] = { ["name"] = "Jewelcrafting: Sapphire Luminescence", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55259, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41341, 1}, + [1] = {41341}, [2] = {12655, 5}, [3] = {12361, 5}, - [4] = {7076, 1}, + [4] = {7076}, [5] = {55154, 8}, [6] = {55247, 3}, }, }, [41257] = { ["name"] = "Jewelcrafting: Arcanum Baton", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55272, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41341, 1}, + [1] = {41341}, [2] = {12655, 5}, [3] = {12361, 5}, - [4] = {7076, 1}, + [4] = {7076}, [5] = {55150, 8}, [6] = {55247, 3}, }, }, [41696] = { ["name"] = "Jewelcrafting: Shimmering Diamond Band", - ["requires"] = "", - ["tools"] = {41326, 41328}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56059, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {56033, 1}, + [1] = {56033}, [2] = {6037, 8}, [3] = {12800, 10}, [4] = {3466, 6}, @@ -23286,13 +14387,7 @@ GetSpellInfoAtlasLootDB = { }, [41698] = { ["name"] = "Jewelcrafting: Crown of Molten Ascension", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56060, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 8}, [2] = {55250, 12}, @@ -23304,13 +14399,7 @@ GetSpellInfoAtlasLootDB = { }, [41700] = { ["name"] = "Jewelcrafting: Embergem Cuffs", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56061, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 4}, [2] = {12655, 12}, @@ -23322,13 +14411,7 @@ GetSpellInfoAtlasLootDB = { }, [41702] = { ["name"] = "Jewelcrafting: Blackwing Signet of Command", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56062, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 6}, [2] = {3577, 28}, @@ -23340,13 +14423,7 @@ GetSpellInfoAtlasLootDB = { }, [41704] = { ["name"] = "Jewelcrafting: Talisman of Hinderance", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56063, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 20}, [2] = {7082, 8}, @@ -23358,13 +14435,7 @@ GetSpellInfoAtlasLootDB = { }, [41706] = { ["name"] = "Jewelcrafting: Mastercrafted Diamond Crown", - ["requires"] = "", - ["tools"] = {41326, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56064, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 8}, [2] = {6037, 8}, @@ -23376,46 +14447,28 @@ GetSpellInfoAtlasLootDB = { }, [41764] = { ["name"] = "Jewelcrafting: Resurged Topaz Gemstone", - ["requires"] = "", - ["tools"] = {41327, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56077, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55252, 1}, + [1] = {55252}, [2] = {61673, 3}, [3] = {55248, 3}, }, }, [41768] = { ["name"] = "Jewelcrafting: Resilient Arcane Gemstone", - ["requires"] = "", - ["tools"] = {41327, 41328 }, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56076, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {55252, 1}, - [2] = {12363, 1}, + [1] = {55252}, + [2] = {12363}, [3] = {7076, 2}, - [4] = {55248, 1}, + [4] = {55248}, }, }, [41788] = { ["name"] = "Jewelcrafting: Blazefury Circlet", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55359, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {56033, 1}, + [1] = {56033}, [2] = {55252, 2}, [3] = {12364, 8}, [4] = {12799, 10}, @@ -23425,13 +14478,7 @@ GetSpellInfoAtlasLootDB = { }, [41798] = { ["name"] = "Jewelcrafting: Guardbreaker Charm", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55364, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 32}, [2] = {7082, 8}, @@ -23442,16 +14489,10 @@ GetSpellInfoAtlasLootDB = { }, [41804] = { ["name"] = "Jewelcrafting: Bindings of Luminance", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55367, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 26}, - [2] = {55252, 1}, + [2] = {55252}, [3] = {17011, 2}, [4] = {12799, 8}, [5] = {55248, 2}, @@ -23459,16 +14500,10 @@ GetSpellInfoAtlasLootDB = { }, [41806] = { ["name"] = "Jewelcrafting: Crown of the Illustrious Queen", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55368, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 32}, - [2] = {55252, 1}, + [2] = {55252}, [3] = {12364, 6}, [4] = {12800, 8}, [5] = {3466, 6}, @@ -23477,13 +14512,7 @@ GetSpellInfoAtlasLootDB = { }, [41802] = { ["name"] = "Jewelcrafting: Spire of Channeled Power", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55366, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 18}, [2] = {12360, 2}, @@ -23495,13 +14524,7 @@ GetSpellInfoAtlasLootDB = { }, [41808] = { ["name"] = "Jewelcrafting: Mastercrafted Diamond Bangles", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56096, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 6}, [2] = {6037, 6}, @@ -23513,15 +14536,9 @@ GetSpellInfoAtlasLootDB = { }, [41267] = { ["name"] = "Jewelcrafting: Ruby Ring of Ruin", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56032, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {56033, 1}, + [1] = {56033}, [2] = {7910, 12}, [3] = {55250, 12}, [4] = {7078, 8}, @@ -23531,16 +14548,10 @@ GetSpellInfoAtlasLootDB = { }, [41269] = { ["name"] = "Jewelcrafting: Encrusted Gemstone Ring", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56031, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {56033, 1}, - [2] = {55252, 1}, + [1] = {56033}, + [2] = {55252}, [3] = {12364, 5}, [4] = {7910, 5}, [5] = {12361, 5}, @@ -23549,17 +14560,11 @@ GetSpellInfoAtlasLootDB = { }, [41792] = { ["name"] = "Jewelcrafting: Empowered Domination Rod", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55361, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12360, 6}, [2] = {12359, 12}, - [3] = {55252, 1}, + [3] = {55252}, [4] = {13926, 4}, [5] = {12800, 8}, [6] = {55248, 2}, @@ -23567,16 +14572,10 @@ GetSpellInfoAtlasLootDB = { }, [41796] = { ["name"] = "Jewelcrafting: Grail of Forgotten Memories", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55363, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 24}, - [2] = {55252, 1}, + [2] = {55252}, [3] = {7080, 8}, [4] = {7076, 8}, [5] = {12800, 6}, @@ -23585,82 +14584,52 @@ GetSpellInfoAtlasLootDB = { }, [41800] = { ["name"] = "Jewelcrafting: Rudeus' Focusing Cane", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55365, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12359, 28}, [2] = {55252, 2}, [3] = {12364, 12}, [4] = {7077, 8}, [5] = {61673, 8}, - [6] = {18567, 1}, + [6] = {18567}, [7] = {55248, 6}, }, }, [41821] = { ["name"] = "Jewelcrafting: Gorgeous Mountain Gemstone", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 61818, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {11382, 1}, + [1] = {11382}, [2] = {7077, 6}, - [3] = {55248, 1}, + [3] = {55248}, [4] = {55154, 2}, }, }, [41778] = { ["name"] = "Jewelcrafting: Stormcloud Shackles", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56092, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {12655, 2}, - [2] = {7082, 1}, + [2] = {7082}, [3] = {7081, 3}, [4] = {55154, 3}, }, }, [41303] = { ["name"] = "Jewelcrafting: Massive Jewel Circlet", - ["requires"] = "", - ["tools"] = {41328, 41327}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55264, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {41321, 1}, - [2] = {12364, 1}, + [1] = {41321}, + [2] = {12364}, [3] = {55154, 3}, - [4] = {55247, 1}, + [4] = {55247}, }, }, [41317] = { ["name"] = "Jewelcrafting: Twilight Opal Cascade", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 55263, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { - [1] = {56033, 1}, + [1] = {56033}, [2] = {12799, 3}, [3] = {20520, 3}, [4] = {55248, 2}, @@ -23668,13 +14637,7 @@ GetSpellInfoAtlasLootDB = { }, [41271] = { ["name"] = "Jewelcrafting: Pure Gold Ring", - ["requires"] = "", - ["tools"] = {41328, 41326}, - ["castTime"] = "??", - ["text"] = "", ["craftItem"] = 56033, - ["craftQuantityMin"] = "", - ["craftQuantityMax"] = "", ["reagents"] = { [1] = {3577, 8}, [2] = {12360, 2}, diff --git a/Locale/locale.en.lua b/Locale/locale.en.lua index 171ad50..ad552bd 100644 --- a/Locale/locale.en.lua +++ b/Locale/locale.en.lua @@ -26,6 +26,10 @@ local ORANGE = "|cffFF8400"; local DEFAULT = "|cffFFd200"; AL:RegisterTranslations("enUS", function() return { + DAYS_COOLDOWN = "%d days cooldown", + DAYS_COOLDOWN_1 = "%d day cooldown", + CHARGES = "%d Charges", + CHARGES_1 = "%d Charge", [" added to the WishList."] = true, [" already in the WishList!"] = true, [" could not be accessed, the following module may be out of date: "] = true,